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
20,230
pandas_datareader.yahoo.components
_get_data
Returns DataFrame containing list of component information for index represented in idx_sym from yahoo. Includes component symbol (ticker), exchange, and name. Parameters ---------- idx_sym : str Stock index symbol Examples: '^DJI' (Dow Jones Industrial Average) '^NYA' (NYSE Composite) '^IXIC' (NASDAQ Composite) See: http://finance.yahoo.com/indices for other index symbols Returns ------- idx_df : DataFrame
def _get_data(idx_sym): # pragma: no cover """ Returns DataFrame containing list of component information for index represented in idx_sym from yahoo. Includes component symbol (ticker), exchange, and name. Parameters ---------- idx_sym : str Stock index symbol Examples: '^DJI' (Dow Jones Industrial Average) '^NYA' (NYSE Composite) '^IXIC' (NASDAQ Composite) See: http://finance.yahoo.com/indices for other index symbols Returns ------- idx_df : DataFrame """ raise ImmediateDeprecationError(DEP_ERROR_MSG.format("Yahoo Components")) stats = "snx" # URL of form: # http://download.finance.yahoo.com/d/quotes.csv?s=@%5EIXIC&f=snxl1d1t1c1ohgv url = _URL + "s={0}&f={1}&e=.csv&h={2}" idx_mod = idx_sym.replace("^", "@%5E") url_str = url.format(idx_mod, stats, 1) idx_df = DataFrame() mask = [True] comp_idx = 1 # LOOP across component index structure, # break when no new components are found while True in mask: url_str = url.format(idx_mod, stats, comp_idx) with urlopen(url_str) as resp: raw = resp.read() lines = raw.decode("utf-8").strip().strip('"').split('"\r\n"') lines = [line.strip().split('","') for line in lines] temp_df = DataFrame(lines, columns=["ticker", "name", "exchange"]) temp_df = temp_df.drop_duplicates() temp_df = temp_df.set_index("ticker") mask = ~temp_df.index.isin(idx_df.index) comp_idx = comp_idx + 50 idx_df = idx_df.append(temp_df[mask]) return idx_df
(idx_sym)
[ 0.01143132708966732, -0.06643326580524445, -0.06029333919286728, 0.01887742057442665, 0.027725020423531532, 0.017723800614476204, -0.028811901807785034, 0.027553407475352287, 0.042598139494657516, -0.049462657421827316, 0.05472545325756073, -0.03523785248398781, -0.030375486239790916, -0.0295936930924654, -0.027095772325992584, -0.03935656324028969, 0.03371240198612213, 0.05609835684299469, -0.013242796994745731, -0.0197164174169302, -0.030299212783575058, -0.02230967953801155, -0.045343946665525436, 0.00483138021081686, -0.01425340585410595, 0.06017892807722092, 0.01514007244259119, 0.02534150704741478, 0.015063799917697906, -0.05453477054834366, 0.017018280923366547, -0.017561722546815872, 0.027248317375779152, 0.01713269017636776, -0.032930612564086914, -0.01657971367239952, 0.029078854247927666, -0.06658580899238586, 0.019001362845301628, 0.02320588007569313, 0.08214538544416428, -0.10281520336866379, 0.07539527118206024, -0.06132301315665245, -0.06090351566672325, 0.02768688276410103, -0.08359456062316895, 0.026485593989491463, 0.028277995064854622, -0.023396560922265053, -0.017857277765870094, 0.017094552516937256, -0.027705952525138855, 0.025379642844200134, 0.04126337170600891, 0.0007525941473431885, -0.015426094643771648, 0.09099297970533371, 0.03232043236494064, 0.04622107744216919, -0.01061139814555645, -0.0032820969354361296, 0.01610301248729229, 0.04297950118780136, -0.027000432834029198, 0.009562652558088303, 0.028468675911426544, -0.04042437672615051, -0.03870824724435806, -0.02402580715715885, 0.04351340979337692, 0.027305521070957184, -0.027572475373744965, 0.004645466338843107, -0.06223828345537186, -0.05255168676376343, 0.018229104578495026, -0.03392215445637703, 0.00266000023111701, -0.007651075720787048, -0.036629822105169296, -0.021470682695508003, -0.012356129474937916, 0.03262552246451378, -0.022424086928367615, 0.050377923995256424, 0.07673004269599915, 0.0535813644528389, 0.0021892564836889505, 0.0591873861849308, -0.014396416954696178, -0.013376273214817047, -0.019230181351304054, -0.030394554138183594, 0.005610788706690073, -0.07856057584285736, 0.009772402234375477, 0.023263083770871162, 0.01853419467806816, 0.024464374408125877, -0.02541777864098549, 0.027038568630814552, -0.08939126133918762, 0.0428650937974453, -0.072001151740551, -0.029917851090431213, 0.0070694987662136555, -0.036019645631313324, -0.025360574945807457, -0.0379645898938179, -0.037392545491456985, 0.024845736101269722, 0.050911832600831985, -0.032511115074157715, 0.00897630862891674, -0.004943405278027058, -0.01866767182946205, 0.04347527027130127, -0.026542797684669495, -0.022290611639618874, 0.013500216417014599, 0.03762136399745941, -0.05632717162370682, 0.035466667264699936, 0.005491613410413265, 0.018067026510834694, 0.03136702626943588, -0.03117634542286396, 0.048089753836393356, 0.015673980116844177, 0.051750827580690384, 0.02148975059390068, 0.0291741956025362, 0.0244453065097332, 0.021928315982222557, -0.025093622505664825, 0.001314507215283811, -0.0012918638531118631, -0.06936975568532944, -0.005710896570235491, -0.008304158225655556, -0.047975342720746994, -0.04008115082979202, 0.021794840693473816, -0.0027458067052066326, 0.04050064831972122, -0.018314911052584648, -0.013995986431837082, -0.04248373210430145, -0.010697204619646072, -0.008008603006601334, 0.03550480678677559, -0.0647934079170227, -0.05060674250125885, 0.005200824700295925, -0.041034553200006485, -0.006430717185139656, 0.035542942583560944, 0.041911687701940536, 0.004566810559481382, -0.008623548783361912, -0.04313204437494278, -0.03571455553174019, -0.05857720971107483, -0.06490781903266907, 0.038975201547145844, -0.03321663290262222, -0.08313692361116409, -0.022195270285010338, -0.0015349822351709008, 0.0013168908189982176, 0.1029677465558052, -0.011812688782811165, -0.01760939136147499, -0.04271254688501358, -0.007417491637170315, -0.021375341340899467, -0.029765306040644646, 0.020955843850970268, -0.06227641925215721, -0.03884172439575195, -0.008127778768539429, -0.06879770755767822, -0.010220502503216267, -0.014920789748430252, 0.03569548577070236, 0.025036416947841644, -0.015302151441574097, 0.05720430612564087, 0.03291154280304909, -0.06326796114444733, -0.0099630830809474, 0.003763566492125392, -0.029364876449108124, 0.0203838013112545, -0.009867742657661438, -0.017285233363509178, 0.09404388070106506, -0.058958571404218674, 0.02389233186841011, 0.020688889548182487, 0.00532000046223402, 0.026390252634882927, -0.035256918519735336, -0.0031224016565829515, -0.03481835499405861, -0.010134696029126644, -0.03308315575122833, -0.06792058050632477, 0.009524516761302948, 0.005858674179762602, -0.024197420105338097, -0.03346451744437218, 0.008318459615111351, -0.024674123153090477, 0.07955212146043777, 0.02190924808382988, -0.034780219197273254, 0.07451814413070679, -0.0315195731818676, 0.025646597146987915, -0.052361007779836655, 0.022214338183403015, 0.0246550552546978, -0.007369821425527334, -0.03908960893750191, 0.04358968138694763, 0.04519139975309372, 0.01882021687924862, -0.05560258403420448, -0.0364200733602047, -0.0210130475461483, 0.04187355190515518, -0.02541777864098549, 0.00645455252379179, 0.004500071983784437, 0.03424631059169769, 0.050721149891614914, 0.061971329152584076, 0.007503298111259937, -0.003425107803195715, -0.012661219574511051, 0.035943370312452316, 0.012680287472903728, -0.04168286919593811, -0.03312129154801369, 0.05068301409482956, 0.027991972863674164, -0.047403302043676376, -0.03678236901760101, -0.01887742057442665, 0.02040286920964718, 0.01493985764682293, -0.016989678144454956, 0.019125305116176605, -0.0874844491481781, -0.07604359090328217, 0.00502921175211668, -0.02568473294377327, -0.08298438042402267, -0.03908960893750191, 0.003994767088443041, 0.0005595295806415379, -0.02286265417933464, -0.03434165194630623, -0.004972007591277361, 0.02883096970617771, -0.025227097794413567, 0.00542487483471632, 0.06200946494936943, 0.033826813101768494, 0.00660709710791707, -0.0003459072904661298, 0.020174050703644753, 0.0003155175072606653, 0.01984989456832409, 0.050911832600831985, -0.049538929015398026, -0.03321663290262222, 0.032587386667728424, -0.02046007290482521, -0.018648603931069374, -0.001260878168977797, -0.007436559535562992, 0.020498208701610565, -0.016141148284077644, 0.000007755726983305067, -0.027095772325992584, 0.006487921811640263, -0.006692903582006693, -0.05354322865605354, 0.007179140113294125, 0.009667527861893177, 0.03186279907822609, 0.004037670325487852, 0.035600144416093826, -0.009548352099955082, -0.010487455874681473, 0.012337061576545238, 0.024006739258766174, -0.04271254688501358, 0.03950910642743111, 0.015016130171716213, 0.05121692270040512, 0.0016088710399344563, -0.049615200608968735, -0.01470150612294674, 0.01710408739745617, -0.013547886162996292, -0.05461104214191437, 0.046716850250959396, 0.06929348409175873, 0.05525935813784599, -0.024674123153090477, -0.008494839072227478, -0.06189505755901337, -0.0806199312210083, -0.004368979018181562, 0.03939469903707504, 0.049615200608968735, -0.03123355098068714, 0.02148975059390068, -0.0019556721672415733, -0.053047459572553635, 0.052780505269765854, 0.06921721249818802, 0.009009677916765213, -0.011145305819809437, -0.02726738527417183, -0.017561722546815872, -0.026733478531241417, 0.023320287466049194, 0.018782079219818115, -0.008161147125065327, 0.04442867636680603, -0.04767025262117386, -0.0048766671679914, -0.04423799738287926, 0.02568473294377327, 0.007674911059439182, -0.029002582654356956, -0.04179728031158447, -0.029631830751895905, -0.020441005006432533, -0.00448815431445837, -0.09450151026248932, 0.025856345891952515, -0.03743068501353264, -0.024006739258766174, 0.0162841584533453, 0.015016130171716213, -0.016188818961381912, -0.023320287466049194, 0.03447512909770012, 0.08855226635932922, 0.0527423694729805, -0.028792833909392357, -0.018867885693907738, -0.012174982577562332, -0.0315195731818676, 0.028106382116675377, 0.02177577279508114, -0.004762258380651474, -0.0121177788823843, -0.03487555682659149, -0.049462657421827316, 0.014472689479589462, -0.0009748567244969308, -0.022710109129548073, 0.020707959309220314, -0.05144573748111725, 0.036286596208810806, 0.03950910642743111, 0.020097779110074043, -0.0351615808904171, 0.004497688263654709, -0.010220502503216267, -0.03146236762404442, -0.011269248090684414, -0.1038067489862442, 0.014196201227605343, -0.0293839443475008, 0.017275700345635414, 0.0257419366389513, 0.06124674156308174, -0.046106670051813126, -0.0023298836313188076, 0.009152689017355442, 0.04305577278137207, 0.0031676883809268475, 0.001127997413277626, -0.04080573841929436, -0.0010904570808634162, 0.04908129200339317, 0.005634624045342207, -0.03548573702573776, 0.04538208246231079, -0.00443571712821722, -0.03483742102980614, 0.0025241400580853224, -0.014873119071125984, -0.0069121867418289185, 0.05846279859542847, -0.008842832408845425, -0.03014666959643364, 0.005076881963759661, 0.059568747878074646, -0.06353491544723511, -0.04511512815952301, 0.006278172601014376, -0.04400917887687683, 0.029898783192038536, 0.015025664120912552, -0.0031867565121501684, -0.015454696491360664, 0.051674555987119675, 0.04065319150686264, 0.02169949933886528, 0.036629822105169296, 0.08908616751432419, -0.0017316220328211784, -0.0849674642086029, -0.004910035990178585, 0.017123155295848846, -0.043627817183732986, 0.04145405441522598, -0.025989823043346405, 0.0012006944743916392, -0.0364200733602047, 0.02196645364165306, -0.0043308427557349205, -0.0063687460497021675, -0.05979756638407707, -0.017571255564689636, 0.016617851331830025, -0.051407601684331894, 0.026123298332095146, -0.01829584315419197, -0.013404875062406063, 0.04999656230211258, -0.028964446857571602, 0.02541777864098549, 0.030051328241825104, 0.042750682681798935, 0.015340288169682026, -0.028754698112607002, 0.02349190041422844, 0.024941077455878258, 0.007131469901651144, -0.03415096923708916, 0.00863308273255825, 0.01926831714808941, 0.04908129200339317, -0.009572187438607216, -0.04599226266145706, -0.006969391368329525, 0.0458778515458107, 0.011869893409311771, 0.001496845972724259, 0.05632717162370682, 0.017218496650457382, 0.016913406550884247, 0.021680431440472603, -0.01129784993827343, -0.029498353600502014, 0.06181878596544266, 0.023587241768836975, -0.0767681747674942, -0.005763333756476641, -0.020154982805252075, -0.007450860925018787, 0.0022190504241734743, -0.022767312824726105, -0.05564071983098984, -0.027095772325992584, -0.030165737494826317, -0.03205347806215286, 0.04717448353767395, 0.01290910504758358, -0.05720430612564087, -0.09023025631904602, -0.01964014396071434, -0.006650000344961882, 0.02610423043370247, -0.02040286920964718, 0.0016732258955016732, 0.053810182958841324, -0.02986064739525318, -0.004047204740345478, -0.0371255949139595, 0.0025122223887592554, -0.0013466846430674195, 0.00922419410198927, 0.014224804006516933, 0.05121692270040512, 0.06151369586586952, 0.02753433957695961, 0.02822079136967659, 0.03048989363014698, -0.03346451744437218, 0.01765706203877926, -0.03912774473428726, -0.015607241541147232, 0.00022524195082951337, 0.003935179673135281, -0.053466957062482834, -0.009710431098937988, 0.008146846666932106, -0.014339212328195572, -0.07146724313497543, -0.02740086242556572, -0.0015445161843672395, -0.004042437765747309, -0.004461935721337795, 0.046602439135313034, 0.02993691898882389, -0.030852189287543297, -0.03565734997391701, -0.005181756801903248, 0.025169894099235535, 0.020441005006432533, 0.031767457723617554, 0.030718712136149406, 0.006244803313165903, 0.016455771401524544, 0.02211899869143963, 0.012136846780776978, 0.042598139494657516, -0.019544804468750954, -0.013681363314390182, -0.05258982256054878, -0.018152832984924316, 0.01898229494690895, 0.008232653141021729, 0.030928460881114006, -0.031347960233688354, 0.03743068501353264, -0.010230036452412605, -0.019287385046482086, 0.020307527855038643, -0.006244803313165903, 0.016379499807953835, 0.02993691898882389, -0.11623914539813995, -0.010868817567825317, -0.0024359500966966152, -0.0212227962911129, 0.0210130475461483, 0.03693491220474243, -0.011335986666381359, 0.02457878366112709, 0.03535225987434387, 0.08351828157901764, -0.06143742427229881, 0.03226322680711746, 0.003897043177857995, -0.022290611639618874, -0.022290611639618874, -0.05300932377576828, -0.025227097794413567, 0.043856631964445114, 0.0019413711270317435, 0.01562630943953991, -0.03680143505334854, 0.004082957282662392, -0.0020927242003381252, 0.08161147683858871, -0.026733478531241417, 0.002282213419675827, -0.04896688461303711, -0.06670022010803223, -0.039032403379678726, 0.056555990129709244, 0.018867885693907738, 0.05396272614598274, -0.010649534873664379, 0.03634380176663399, -0.08717936277389526, 0.03323570266366005, -0.05156014859676361, 0.0750139132142067, 0.015635842457413673, 0.0009504256886430085, 0.00042009411845356226, 0.015797922387719154, 0.013843441382050514, -0.012155914679169655, 0.010020287707448006, 0.09534050524234772, -0.05075928568840027, 0.009019211865961552, -0.018801148980855942, 0.012632617726922035, 0.012422868050634861, 0.030528031289577484, 0.061704378575086594, -0.13591742515563965, 0.002091532340273261, 0.011869893409311771, -0.010153763927519321, -0.006597563158720732, 0.03748788684606552, -0.03701118379831314, -0.040271829813718796, 0.03312129154801369, -0.024083012714982033, 0.03075684793293476, -0.02383512631058693, 0.008294624276459217, -0.02032659575343132, 0.07173419743776321, 0.017409177497029305, -0.005434408783912659, 0.013872044160962105, 0.004576344508677721, -0.027591543272137642, 0.03367426618933678, -0.020955843850970268, -0.004221200942993164, 0.02877376601099968, -0.023873263970017433, 0.02526523545384407, 0.02396860346198082, 0.01911577209830284, -0.045763444155454636, -0.02066982164978981, 0.08283183723688126, 0.013986452482640743, -0.03253018110990524, 0.005710896570235491, 0.0023608694318681955, -0.002974623814225197, 0.04984401911497116, 0.03403656184673309, -0.02225247398018837, 0.0012394265504553914, 0.027286453172564507, 0.0028697492089122534, -0.00002163782664865721, 0.06494595110416412, 0.02734365686774254, -0.011898495256900787, 0.010582796297967434, 0.011869893409311771, -0.042331185191869736, -0.012251255102455616, 0.025932617485523224, -0.04263627529144287, 0.003930412232875824, -0.00813254527747631, 0.020498208701610565, -0.06826380640268326, 0.0147968465462327, 0.024883871898055077, -0.005887276493012905, 0.03544760122895241, -0.01765706203877926, -0.010859283618628979, 0.08962007611989975, 0.0005717450985684991, 0.05129319429397583, -0.020612617954611778, 0.05144573748111725, -0.00700276019051671, 0.031424231827259064, 0.01424387190490961, 0.054763589054346085, -0.002533674007281661, -0.0004865345254074782, 0.020441005006432533, 0.028945378959178925, 0.025436848402023315, -0.037259072065353394, 0.01277562789618969, 0.01153620146214962, 0.027991972863674164, -0.031061938032507896, 0.015340288169682026, 0.010754409246146679, 0.03273992985486984, 0.011974767781794071, 0.038002725690603256, 0.020631685853004456, 0.02869749255478382, -0.03455140069127083, 0.05468731373548508, 0.047975342720746994, -0.06364932656288147, 0.02610423043370247, -0.11334079504013062, -0.00824695359915495, 0.011622007936239243, -0.008490072563290596, -0.006225735414773226, -0.032167889177799225, -0.04042437672615051, 0.012403800152242184, -0.010230036452412605, -0.013995986431837082, 0.016675055027008057, 0.006630932446569204, 0.004395197611302137, 0.08443355560302734, 0.050377923995256424, 0.04648803174495697, 0.0021809141617268324, -0.019363656640052795, -0.02143254689872265, -0.05422968044877052, -0.010582796297967434, 0.011974767781794071, -0.026047026738524437, -0.011736416257917881, 0.05686108022928238, 0.019659213721752167, 0.04149219021201134, -0.02822079136967659, -0.00542487483471632, -0.013080717995762825, 0.0737554207444191, 0.06982738524675369, 0.012756559997797012, 0.020707959309220314, 0.06742480397224426, -0.023587241768836975, 0.008747491985559464, 0.0005848544533364475, 0.04786093533039093, 0.011917563155293465, 0.0023680198937654495, 0.0033726703841239214, 0.005648924969136715, 0.000636397919151932, 0.019277850165963173, 0.023816058412194252, -0.07486137002706528, 0.03127168491482735, 0.0040138354524970055, 0.009991684928536415, 0.0488906130194664, -0.021508818492293358, 0.00031790099455974996, -0.03647727891802788, 0.023720718920230865, 0.00753666739910841, 0.03239670395851135, 0.030585234984755516, 0.008885735645890236, 0.010897420346736908, -0.018457923084497452, 0.02354910597205162, -0.010087025351822376, -0.05361950024962425, 0.03089032508432865, -0.015445162542164326, 0.016722725704312325, -0.004030520096421242, 0.037316273897886276, -0.05266609787940979, -0.025036416947841644, 0.06300100684165955, 0.04641176015138626, 0.016980145126581192, 0.05258982256054878, -0.04667871445417404, -0.03434165194630623, 0.009386273100972176, -0.007927563041448593 ]
20,231
pandas_datareader.data
get_dailysummary_iex
Returns a summary of daily market volume statistics. Without parameters, this will return the most recent trading session by default. Parameters ---------- start : string, int, date, datetime, Timestamp The beginning of the date range. end : string, int, date, datetime, Timestamp The end of the date range. Reference: https://www.iextrading.com/developer/docs/#historical-daily :return: DataFrame
def get_dailysummary_iex(*args, **kwargs): """ Returns a summary of daily market volume statistics. Without parameters, this will return the most recent trading session by default. Parameters ---------- start : string, int, date, datetime, Timestamp The beginning of the date range. end : string, int, date, datetime, Timestamp The end of the date range. Reference: https://www.iextrading.com/developer/docs/#historical-daily :return: DataFrame """ from pandas_datareader.iex.stats import DailySummaryReader return DailySummaryReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.04605482146143913, -0.05028766766190529, 0.07597417384386063, -0.032216668128967285, 0.057704195380210876, 0.014751652255654335, -0.019753286615014076, -0.03507474437355995, -0.011242369189858437, -0.0015997538575902581, 0.019861821085214615, 0.0268442090600729, -0.04323292523622513, 0.011097656562924385, -0.02975655347108841, 0.0220686886459589, -0.012861343100667, 0.04952792823314667, -0.007466271985322237, -0.009487727656960487, -0.02973846346139908, 0.002674924209713936, -0.04037484899163246, 0.002081375801935792, 0.00019940394849982113, 0.024890586733818054, 0.036883652210235596, -0.04120694473385811, 0.0043368590995669365, -0.0034617995843291283, 0.008483783341944218, 0.022991232573986053, -0.0006574253784492612, 0.03250609338283539, -0.012472427450120449, 0.016904253512620926, -0.002482727635651827, -0.02472778595983982, -0.05947692692279816, 0.08140090107917786, -0.06584428995847702, -0.04178579896688461, 0.11620431393384933, 0.014010000042617321, -0.045693039894104004, -0.008085822686553001, 0.02545134909451008, -0.06779790669679642, 0.04648895934224129, -0.008967665955424309, 0.017790619283914566, 0.04185815528035164, 0.05292867496609688, -0.013593951240181923, -0.00916664581745863, -0.006426149047911167, -0.040049243718385696, 0.006964299362152815, 0.01495063304901123, 0.05209657922387123, -0.024637339636683464, 0.0045426227152347565, 0.04439062625169754, -0.009175690822303295, -0.05028766766190529, 0.045837752521038055, -0.053001031279563904, -0.023353014141321182, -0.04504183307290077, -0.021037612110376358, 0.012119689956307411, 0.011459438130259514, 0.005128256976604462, 0.02570459619164467, -0.031854886561632156, -0.005123734474182129, -0.076191246509552, -0.02456498332321644, -0.04591010883450508, -0.03834886848926544, -0.022629451006650925, 0.015574706718325615, 0.016379671171307564, 0.06895560771226883, 0.03355526179075241, -0.003034444758668542, 0.02271989732980728, 0.039542749524116516, 0.036196269094944, 0.025559883564710617, -0.00058280787197873, 0.016859032213687897, -0.011712685227394104, 0.027585862204432487, 0.02044067159295082, -0.02409466728568077, -0.038927722722291946, 0.05723388120532036, -0.009912821464240551, -0.018812652677297592, -0.026030199602246284, 0.001979624852538109, 0.02510765567421913, -0.0107177859172225, -0.09862171858549118, -0.039651285856962204, 0.03114941343665123, -0.016732407733798027, 0.014127579517662525, 0.01431751437485218, -0.028671206906437874, 0.006928121205419302, 0.027567772194743156, -0.009641485288739204, -0.014028089120984077, -0.013458282686769962, 0.03371806442737579, 0.0311313234269619, -0.036883652210235596, -0.041279301047325134, -0.05538879334926605, 0.021001433953642845, -0.031077057123184204, 0.022014422342181206, 0.05502701178193092, -0.01757355034351349, -0.013639173470437527, -0.040049243718385696, 0.06692963093519211, 0.015366681851446629, 0.03393513336777687, -0.06005577743053436, 0.011712685227394104, 0.0038348869420588017, 0.030823808163404465, -0.00365625717677176, 0.11584252864122391, 0.01236389297991991, -0.009704796597361565, 0.05980253219604492, 0.013340704143047333, 0.005028767045587301, -0.04073663055896759, 0.03364570811390877, -0.04051956161856651, 0.010003266856074333, 0.013657262548804283, 0.029919354245066643, 0.023172123357653618, -0.017618773505091667, 0.03254227340221405, -0.021996332332491875, -0.09500390291213989, -0.03881918638944626, 0.04055573791265488, -0.0698600634932518, -0.00661608437076211, 0.01687712036073208, -0.012336758896708488, -0.001460694009438157, -0.026283446699380875, 0.033121123909950256, 0.013711529783904552, -0.035617418587207794, -0.061611440032720566, 0.028653118759393692, -0.05625706911087036, 0.012852298095822334, -0.0008371857111342251, -0.003715046914294362, -0.03024495765566826, 0.029231969267129898, -0.0027631083503365517, -0.03704645484685898, -0.01361204031854868, -0.006995955482125282, -0.0013261564308777452, 0.03558123856782913, -0.04616335779428482, 0.007421049289405346, -0.010753964073956013, -0.03695600852370262, -0.10180539637804031, -0.0027789364103227854, -0.01531241461634636, -0.020476849749684334, 0.0018496094271540642, -0.01694043166935444, 0.006389970891177654, 0.004551667254418135, 0.013639173470437527, 0.017266036942601204, -0.027061278000473976, -0.034984298050403595, -0.012544783763587475, -0.020368315279483795, -0.03719116747379303, 0.047465771436691284, -0.017853932455182076, 0.02825515903532505, -0.0008004422415979207, 0.08378866314888, 0.0524221807718277, -0.05448433756828308, 0.02774866297841072, 0.011613195762038231, -0.04648895934224129, -0.046452783048152924, -0.10325252264738083, 0.00879582017660141, -0.01260809600353241, -0.014751652255654335, -0.041930511593818665, -0.010319825261831284, -0.006417104508727789, 0.050106778740882874, 0.02863502874970436, -0.03100469894707203, 0.016370626166462898, 0.02621109038591385, 0.04388413205742836, -0.04931085929274559, -0.0001715637044981122, -0.0061548128724098206, 0.04048338159918785, -0.022484738379716873, 0.0676170140504837, -0.013702485710382462, 0.007475316524505615, -0.04410120099782944, -0.008144612424075603, -0.042039044201374054, 0.04048338159918785, 0.013394971378147602, 0.014498405158519745, 0.030317313969135284, -0.01784488745033741, 0.012544783763587475, 0.03254227340221405, 0.019988443702459335, -0.034387361258268356, 0.006602517794817686, 0.024384092539548874, 0.021363215520977974, -0.04858729615807533, -0.06446951627731323, -0.010446449741721153, 0.0764806717634201, -0.06649549305438995, -0.020386403426527977, 0.06602517515420914, -0.022358115762472153, 0.03389895334839821, 0.0001837173185776919, 0.048225514590740204, 0.008311936631798744, -0.010419315658509731, -0.0018970932578667998, 0.02080245316028595, -0.10448258370161057, 0.039398036897182465, -0.025650329887866974, -0.018595583736896515, 0.01917443424463272, 0.002344798296689987, 0.04844258353114128, 0.01600884459912777, -0.02519810199737549, 0.040302492678165436, -0.005282014142721891, -0.032614629715681076, 0.05448433756828308, 0.039398036897182465, -0.021435571834445, 0.01738361455500126, -0.05763183906674385, 0.018251892179250717, -0.059730175882577896, -0.05556968227028847, 0.01367535162717104, -0.026138734072446823, 0.013006055727601051, -0.04543979465961456, 0.00683767581358552, 0.033971309661865234, -0.05520790070295334, 0.027151724323630333, -0.02751350589096546, 0.0012741502141579986, 0.01770017482340336, 0.013277391903102398, 0.002507600001990795, -0.08342688530683517, -0.047719020396471024, -0.048840541392564774, 0.06063462793827057, -0.012743763625621796, -0.05097505450248718, -0.00624073576182127, 0.05752330645918846, -0.011658417992293835, -0.011712685227394104, -0.004072306212037802, -0.0030073111411184072, -0.044824764132499695, 0.016397759318351746, -0.012752808630466461, -0.0070864008739590645, -0.02597593329846859, -0.08161797374486923, 0.020368315279483795, 0.04844258353114128, -0.0004748385981656611, -0.03758912906050682, -0.062117934226989746, -0.07532297074794769, -0.04931085929274559, 0.033464815467596054, 0.017284125089645386, 0.045837752521038055, -0.04902143403887749, 0.04782755300402641, 0.024004222825169563, -0.03540034964680672, 0.04927467927336693, 0.06667638570070267, -0.032343290746212006, 0.034477803856134415, 0.06219029054045677, 0.0004171796317677945, 0.008800341747701168, -0.012997010722756386, 0.05828304588794708, 0.03371806442737579, -0.03482149913907051, -0.04214758053421974, 0.01978946477174759, -0.022285759449005127, 0.0158822201192379, 0.017157502472400665, -0.01141421590000391, -0.017618773505091667, 0.017790619283914566, 0.029213879257440567, 0.023262569680809975, -0.08328217267990112, 0.056437961757183075, -0.10057533532381058, 0.03672085329890251, 0.03026304766535759, 0.020115068182349205, 0.054158736020326614, -0.017555462196469307, 0.02054920606315136, 0.062117934226989746, 0.06692963093519211, 0.007348692510277033, 0.029231969267129898, -0.016506293788552284, -0.06573574990034103, 0.001251538866199553, -0.015936488285660744, -0.011007211171090603, 0.02407657913863659, -0.059078965336084366, -0.01323216874152422, -0.0005833731265738606, 0.016497250646352768, 0.03212622180581093, 0.07036656141281128, -0.03795091062784195, -0.03453207388520241, -0.023750975728034973, 0.04656131565570831, -0.06186468526721001, -0.007904931902885437, -0.03266889601945877, -0.05108359083533287, -0.030299225822091103, 0.012183002196252346, 0.014606939628720284, -0.001721855252981186, -0.032090045511722565, 0.020766275003552437, 0.053652241826057434, -0.00022272192290984094, 0.0004378125013317913, 0.013150768354535103, -0.0018009949708357453, -0.024384092539548874, -0.014634073711931705, -0.023117857053875923, 0.01594553329050541, -0.005802075378596783, -0.027622040361166, -0.06779790669679642, 0.053652241826057434, -0.006408059969544411, -0.042545538395643234, -0.0023289702367037535, -0.011595106683671474, -0.020006533712148666, 0.05079416558146477, -0.026880387216806412, -0.002204607706516981, -0.04880436509847641, -0.004689596593379974, -0.15788157284259796, 0.019988443702459335, -0.039795998483896255, 0.056040000170469284, -0.03881918638944626, -0.06996859610080719, 0.05155390501022339, 0.00035160669358447194, 0.019608573988080025, 0.023154035210609436, -0.023497726768255234, -0.0049428436905145645, 0.013684396632015705, 0.006127679254859686, -0.006295003462582827, -0.02612064592540264, 0.03657614067196846, -0.014199935831129551, -0.027061278000473976, -0.017428837716579437, -0.010898676700890064, 0.00847021583467722, 0.03138457238674164, -0.01751023903489113, -0.01763686165213585, -0.09514861553907394, 0.04815315827727318, 0.005738763604313135, -0.03194533288478851, -0.03514710068702698, -0.009523905813694, 0.01828807033598423, 0.046669851988554, -0.03440544754266739, 0.012318669818341732, 0.0705474466085434, 0.019120167940855026, -0.02167072892189026, -0.021254681050777435, -0.023750975728034973, 0.030715273693203926, 0.027658218517899513, 0.010120845399796963, 0.03178253024816513, -0.03514710068702698, 0.03748059272766113, -0.007999899797141552, -0.02120041288435459, -0.06627842783927917, 0.04297967627644539, 0.047719020396471024, 0.01147752720862627, -0.014380826614797115, 0.03558123856782913, 0.006638695951551199, -0.07080069929361343, -0.05097505450248718, 0.026030199602246284, -0.017220813781023026, -0.047646664083004, -0.046597495675086975, -0.006787931080907583, -0.01545712724328041, 0.031854886561632156, 0.06266060471534729, -0.017193680629134178, -0.02785719744861126, 0.020386403426527977, 0.027766752988100052, -0.017157502472400665, 0.019608573988080025, 0.021109968423843384, -0.0050378115847706795, -0.015746552497148514, -0.027947643771767616, 0.0479360893368721, 0.033971309661865234, -0.010003266856074333, 0.006575384177267551, 0.010256513953208923, -0.013458282686769962, 0.010256513953208923, -0.027585862204432487, 0.05564203858375549, 0.04088134318590164, 0.0064125824719667435, 0.04037484899163246, 0.03250609338283539, -0.013141723349690437, 0.05911514535546303, -0.017872020602226257, 0.02054920606315136, 0.009985177777707577, 0.018423737958073616, -0.01222822442650795, 0.05079416558146477, 0.041568730026483536, 0.01267140731215477, 0.013801975175738335, 0.026934655383229256, 0.0003951335675083101, 0.024438360705971718, -0.06877472251653671, 0.033844687044620514, 0.04297967627644539, -0.026808030903339386, 0.010826320387423038, 0.0004932103329338133, -0.021978244185447693, -0.004825264681130648, 0.03594302013516426, -0.004524533636868, -0.024782052263617516, 0.07130718976259232, 0.040917519479990005, -0.004345903638750315, 0.05039620399475098, -0.01291561033576727, -0.010247468948364258, -0.00804512295871973, 0.013349748216569424, -0.002613873453810811, 0.056582674384117126, -0.007425571326166391, 0.01668718457221985, 0.01738361455500126, -0.06077934056520462, 0.003464060602709651, -0.04699545353651047, -0.000032645155442878604, -0.016886165365576744, 0.0021492100786417723, -0.012409115210175514, 0.03482149913907051, 0.02295505441725254, -0.0054900385439395905, -0.04095369949936867, 0.04732105880975723, 0.016397759318351746, 0.002688491018489003, 0.032958321273326874, 0.0698600634932518, 0.005729719065129757, -0.008922443725168705, -0.02861694060266018, 0.041532550007104874, -0.019120167940855026, 0.009125946089625359, 0.06754466146230698, -0.022756075486540794, 0.047465771436691284, -0.05676356330513954, -0.014760697260499, 0.027314525097608566, -0.009207346476614475, 0.03871065378189087, 0.04587393254041672, -0.03603346645832062, 0.016632918268442154, 0.06454186886548996, -0.009858554229140282, -0.0349300317466259, -0.023353014141321182, -0.08588699996471405, 0.016777630895376205, 0.03606964647769928, 0.02271989732980728, 0.03431500494480133, 0.000834359263535589, -0.022611362859606743, -0.04171344265341759, 0.03659422695636749, -0.0718136876821518, 0.0009344145655632019, -0.057052988559007645, 0.05072180926799774, -0.08747883886098862, -0.0009270658483728766, 0.03540034964680672, -0.026500515639781952, -0.0073079923167824745, 0.017428837716579437, 0.009994221851229668, 0.031040877103805542, -0.06258825212717056, -0.02610255591571331, 0.03581639751791954, 0.02774866297841072, 0.009460593573749065, -0.00040615658508613706, -0.04051956161856651, -0.02194206602871418, 0.005435771308839321, -0.060345202684402466, 0.0790131464600563, -0.0022226970177143812, -0.01751023903489113, 0.02384142018854618, 0.017193680629134178, 0.03947039321064949, 0.013195990584790707, -0.020856721326708794, -0.03986835479736328, 0.04486094415187836, 0.021290859207510948, 0.011956888251006603, 0.07582946121692657, 0.017790619283914566, 0.0013103284873068333, 0.04952792823314667, -0.006543728057295084, -0.012300580739974976, 0.008316459134221077, -0.006756274960935116, 0.027133634313941002, -0.03679320961236954, -0.025541795417666435, 0.009786197915673256, 0.04377559572458267, 0.05231364816427231, 0.05774037539958954, 0.026554783806204796, -0.05007059872150421, -0.0027811976615339518, 0.042183756828308105, -0.0011667462531477213, -0.009641485288739204, 0.020006533712148666, -0.005196091253310442, 0.05021531134843826, 0.031836796551942825, -0.09348441660404205, 0.017220813781023026, 0.01342210453003645, 0.04909379035234451, 0.015420949086546898, 0.008357159793376923, -0.0012741502141579986, 0.0005223224870860577, -0.03189106658101082, -0.025270458310842514, 0.016651006415486336, -0.03863829746842384, 0.02246665023267269, -0.03389895334839821, 0.034984298050403595, 0.01902972161769867, -0.00539054861292243, 0.041279301047325134, 0.005159912630915642, -0.00958721712231636, 0.02849031612277031, -0.04616335779428482, -0.0008524483419023454, -0.003534155897796154, -0.0182699803262949, 0.0062226466834545135, 0.06768937408924103, -0.0024849886540323496, -0.03896389901638031, 0.014290381222963333, -0.0043368590995669365, -0.018993543460965157, 0.03719116747379303, 0.040266312658786774, 0.045729219913482666, 0.03181871026754379, 0.013765797019004822, 0.022267669439315796, -0.019481949508190155, -0.005363414995372295, 0.007475316524505615, 0.041930511593818665, -0.015909355133771896, 0.004716730210930109, 0.02861694060266018, -0.01116096880286932, -0.05054091662168503, 0.03053438290953636, -0.0416049063205719, -0.07604653388261795, -0.014742608182132244, -0.08103912323713303, -0.009008366614580154, -0.06468658149242401, -0.006801497656852007, -0.023045500740408897, 0.06266060471534729, -0.0736587718129158, -0.06421627104282379, 0.07850664854049683, 0.02141748182475567, -0.021724997088313103, -0.025523705407977104, 0.04978117346763611, 0.09391855448484421, 0.07488883286714554, 0.06660402566194534, -0.026301536709070206, -0.047719020396471024, 0.025795042514801025, -0.010853453539311886, -0.009677663445472717, 0.03227093443274498, -0.007629073690623045, -0.017347436398267746, 0.07192222028970718, 0.05108359083533287, -0.004761952906847, -0.001951360609382391, 0.018505139276385307, -0.07391201704740524, 0.013268346898257732, 0.04594628885388374, -0.03845740482211113, -0.054918475449085236, 0.022502828389406204, -0.03364570811390877, 0.02659096196293831, -0.045837752521038055, 0.044824764132499695, 0.008538050577044487, 0.01185739878565073, -0.0003207986883353442, 0.012933699414134026, 0.010356004349887371, 0.014353692531585693, 0.00646232720464468, 0.001845087157562375, -0.03480340912938118, 0.03507474437355995, 0.02158028446137905, -0.04468005150556564, -0.0287435632199049, 0.002299575600773096, -0.011540839448571205, 0.005585006438195705, 0.01668718457221985, -0.01008466724306345, 0.026012111455202103, -0.011839309707283974, 0.003692435333505273, -0.01575559750199318, 0.010518806055188179, 0.01141421590000391, -0.026808030903339386, 0.04417355731129646, 0.008515438996255398, -0.0017331609269604087, -0.006168379448354244, -0.006914554629474878, 0.03393513336777687, -0.013657262548804283, 0.0539778433740139, -0.06077934056520462, 0.024926764890551567, -0.0009248047135770321, -0.01520388014614582, 0.0043210312724113464, -0.009361104108393192, -0.0015613145660609007 ]
20,232
pandas_datareader.data
get_data_alphavantage
null
def get_data_alphavantage(*args, **kwargs): return AVTimeSeriesReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.030929425731301308, -0.04270962253212929, -0.02682601846754551, -0.017200112342834473, 0.04414581507444382, 0.02951033040881157, -0.060593634843826294, 0.04011079668998718, 0.08931747823953629, 0.004415436182171106, 0.008608604781329632, -0.025971142575144768, -0.020961567759513855, -0.015969090163707733, -0.0011134764645248652, 0.010403844527900219, -0.028569966554641724, 0.08008481562137604, -0.02253453992307186, 0.00307328044436872, -0.0014607699122279882, -0.05081385001540184, -0.09403639286756516, -0.030279720202088356, 0.019525375217199326, 0.06931336969137192, -0.028416089713573456, -0.005133532453328371, -0.05556696280837059, 0.00979688297957182, 0.038093287497758865, -0.031032010912895203, -0.04000821337103844, 0.06196143478155136, -0.010831283405423164, 0.006180755794048309, -0.02603953331708908, -0.07283546030521393, -0.08343593031167984, 0.06756942719221115, 0.013678020797669888, -0.0816577896475792, 0.08897552639245987, 0.01083983201533556, -0.055874716490507126, -0.04390644654631615, -0.033528249710798264, -0.03424634411931038, 0.034588295966386795, -0.03781972825527191, 0.03433183208107948, 0.0004952939925715327, 0.04349610581994057, -0.0021724544931203127, -0.015430517494678497, 0.015122761949896812, -0.01755915954709053, 0.05717412754893303, 0.03463958948850632, 0.04671044275164604, -0.005001026671379805, -0.039734650403261185, 0.04681302607059479, -0.0018828650936484337, -0.004539393354207277, -0.012472645379602909, 0.008420531637966633, -0.01218198798596859, -0.01776432991027832, -0.023492000997066498, 0.011916976422071457, 0.01613151654601097, -0.0053087822161614895, -0.016832515597343445, -0.06565450131893158, 0.03163042291998863, -0.0698946863412857, 0.02518465742468834, -0.04876214638352394, 0.016601698473095894, -0.01072869822382927, 0.022568734362721443, -0.035220906138420105, 0.0661674290895462, -0.0017012038733810186, -0.011711806058883667, -0.02639858052134514, -0.006522706244140863, 0.013695118948817253, 0.05532759428024292, 0.003130984492599964, -0.008984750136733055, -0.032964032143354416, 0.041444405913352966, 0.010737246833741665, -0.07570784538984299, 0.013147997669875622, 0.037101633846759796, 0.028792234137654305, 0.025680484250187874, -0.05043770372867584, -0.023081660270690918, 0.04462454468011856, 0.018431134521961212, -0.010010601952672005, -0.05289974808692932, -0.010993709787726402, -0.012729108333587646, 0.04024757817387581, -0.008193989284336567, -0.05631925165653229, -0.0037293978966772556, 0.028843527659773827, -0.03463958948850632, -0.024466561153531075, 0.03566544130444527, 0.048830535262823105, 0.022431954741477966, -0.05881549045443535, -0.02024347148835659, -0.0053472514264285564, 0.030638767406344414, 0.03327178582549095, 0.023902341723442078, 0.016037479043006897, 0.010044796392321587, 0.018260158598423004, -0.05177130922675133, 0.0002195963606936857, -0.00006050921365385875, 0.03696485236287117, 0.03058747574687004, 0.026313092559576035, -0.027509920299053192, 0.023218441754579544, -0.015866504982113838, 0.15127891302108765, -0.004398338496685028, -0.03929011523723602, -0.004389789886772633, -0.0033639383036643267, 0.01395158190280199, 0.03443441912531853, -0.012977022677659988, -0.039324309676885605, -0.03330598026514053, 0.023406513035297394, -0.04913829267024994, -0.01237860880792141, -0.005005300976336002, 0.06148270517587662, 0.03966626152396202, -0.09567775577306747, -0.043667081743478775, 0.05478047579526901, -0.06514157354831696, -0.06541513651609421, -0.004184619523584843, 0.01755915954709053, 0.026313092559576035, -0.03549446538090706, 0.0486595593392849, -0.06982629746198654, -0.01920052245259285, -0.02827930822968483, 0.03864040970802307, -0.018072085455060005, 0.022825198248028755, 0.025509510189294815, -0.021320614963769913, 0.06230338662862778, 0.008561586029827595, -0.013216388411819935, 0.0064201210625469685, 0.0034216425847262144, -0.038503628224134445, -0.00307328044436872, 0.03713582828640938, 0.08473534137010574, 0.010703051462769508, -0.019097937270998955, -0.000856479222420603, -0.09253181517124176, -0.03717002272605896, 0.042265087366104126, -0.06568869948387146, 0.04500069096684456, 0.023902341723442078, -0.002331675263121724, 0.025355631485581398, 0.030672961845993996, -0.012617974542081356, 0.0059157442301511765, -0.018243061378598213, -0.00258386367931962, -0.06900561600923538, -0.02393653802573681, 0.02186773717403412, -0.04537683725357056, 0.03617836534976959, 0.018755987286567688, 0.015755370259284973, 0.03115169331431389, -0.06168787553906441, 0.017815623432397842, 0.000980436336249113, 0.02145739644765854, -0.05023253336548805, -0.10846670717000961, -0.026142118498682976, -0.0030818290542811155, -0.060183294117450714, 0.0023060289677232504, -0.03154493495821953, -0.021748052909970284, 0.01095096580684185, 0.004462454468011856, -0.023013271391391754, 0.037033241242170334, 0.016558954492211342, 0.022637125104665756, -0.008967652916908264, -0.021320614963769913, 0.025560801848769188, 0.09950760751962662, -0.031237181276082993, 0.0682191327214241, 0.023013271391391754, -0.0801532045006752, -0.009224115870893002, -0.006103816907852888, 0.013413009233772755, 0.006244871765375137, -0.028142528608441353, 0.032245934009552, 0.0594651959836483, 0.02723635919392109, 0.0251675583422184, -0.05272877216339111, 0.004530844744294882, 0.06968951970338821, 0.02250034548342228, 0.04565039649605751, 0.010583369061350822, -0.06685132533311844, -0.049035705626010895, 0.02150868810713291, 0.041991524398326874, -0.014575641602277756, -0.018037891015410423, 0.020927373319864273, 0.020140886306762695, 0.032946933060884476, 0.046368490904569626, -0.05474628135561943, -0.039153337478637695, 0.023389415815472603, -0.03277595713734627, 0.015430517494678497, -0.05283135548233986, -0.02374846488237381, 0.06250856071710587, -0.018037891015410423, 0.05727671459317207, -0.00655690161511302, 0.04236767068505287, 0.047189172357320786, -0.045137468725442886, 0.018499523401260376, 0.02728765271604061, -0.1120229959487915, 0.021354811266064644, -0.0035263649187982082, -0.029407745227217674, 0.0024299859069287777, -0.008830872364342213, 0.06298729032278061, -0.0698946863412857, -0.010762892663478851, 0.02624470368027687, -0.05973875895142555, 0.033323079347610474, -0.02352619729936123, -0.011395501904189587, 0.0018059262074530125, -0.05334428325295448, 0.03144235163927078, -0.03737519308924675, 0.026945702731609344, -0.013071059249341488, 0.047804683446884155, 0.004231637809425592, -0.012250377796590328, -0.020807689055800438, 0.03713582828640938, 0.004261558409780264, -0.006061073392629623, -0.04889892414212227, 0.05077965557575226, 0.013883191160857677, 0.02205580845475197, -0.016199907287955284, 0.08186295628547668, 0.028638357296586037, -0.07803311198949814, -0.008822323754429817, -0.020192177966237068, 0.02226097881793976, -0.0312200840562582, -0.07167283445596695, -0.00793752633035183, 0.02253453992307186, -0.02686021476984024, -0.011780195869505405, -0.08521407097578049, -0.025714680552482605, -0.011215977370738983, 0.061414316296577454, 0.06257694959640503, 0.014703872613608837, -0.017285598441958427, 0.00815124623477459, 0.042025718837976456, -0.05594310536980629, 0.03277595713734627, 0.040589526295661926, -0.004547941964119673, -0.0022953429725021124, 0.03349405527114868, -0.0387771911919117, -0.003007027553394437, 0.007069827057421207, -0.026586653664708138, 0.04041855409741402, -0.033152103424072266, 0.017918208613991737, -0.04171796515583992, 0.00023188520572148263, 0.03445151448249817, 0.03535768389701843, -0.040350161492824554, -0.005535324104130268, 0.015336480922996998, -0.0005652869585901499, 0.009095883928239346, -0.0241417083889246, 0.061003975570201874, -0.060183294117450714, 0.025047875940799713, -0.014720970764756203, -0.00048647806397639215, 0.0018924825126305223, 0.016593148931860924, 0.08439338952302933, 0.017217209562659264, 0.0064201210625469685, 0.010241418145596981, 0.010685954242944717, -0.03655451163649559, -0.0181746706366539, -0.020688006654381752, 0.018824376165866852, -0.020140886306762695, 0.04999316856265068, -0.049651216715574265, -0.018961157649755478, 0.023047465831041336, -0.02226097881793976, -0.023372318595647812, 0.018328549340367317, -0.028330601751804352, 0.027338944375514984, 0.05207906663417816, 0.031903985887765884, 0.0001536105846753344, -0.04291479289531708, 0.02600533701479435, -0.02538982778787613, 0.0339214913547039, 0.047154977917671204, 0.03443441912531853, 0.01735398918390274, -0.02600533701479435, -0.006432944443076849, 0.04770210012793541, 0.0057105738669633865, -0.04134181886911392, 0.0009072375250980258, -0.004505198448896408, -0.006578273139894009, -0.019508277997374535, -0.01572117581963539, -0.007099748123437166, -0.039358507841825485, -0.014208044856786728, -0.04763370752334595, -0.012532486580312252, -0.008518842980265617, 0.018533719703555107, -0.0064201210625469685, -0.030023256316781044, -0.0034707977902144194, -0.00754000898450613, -0.024483658373355865, -0.03120298683643341, -0.0011295053409412503, 0.04127342998981476, -0.05242101475596428, -0.036007389426231384, -0.02624470368027687, -0.009343798272311687, 0.02995486743748188, -0.02932225726544857, 0.05539598688483238, 0.041649576276540756, 0.05802900344133377, -0.009933662600815296, -0.015763919800519943, -0.040760502219200134, 0.07338258624076843, 0.023474903777241707, 0.007484442088752985, -0.0577896386384964, 0.015592943876981735, 0.08111066371202469, 0.0102072237059474, -0.05146355554461479, 0.027338944375514984, -0.008023014292120934, -0.017849817872047424, 0.010968063026666641, -0.05327589437365532, -0.03373342007398605, -0.046607855707407, -0.025919850915670395, 0.05036931484937668, -0.03260498493909836, -0.051531944423913956, 0.03939270228147507, 0.018824376165866852, 0.03901655599474907, -0.014926141127943993, 0.03679387643933296, 0.023372318595647812, -0.0747503861784935, -0.022431954741477966, 0.011147587560117245, 0.039974018931388855, 0.05142936110496521, -0.05659281462430954, 0.003624675562605262, 0.050677068531513214, 0.01981603354215622, -0.02622760646045208, 0.01630249246954918, 0.003643910400569439, -0.0017428791616111994, -0.020140886306762695, -0.0025325710885226727, 0.013968679122626781, 0.023081660270690918, -0.004731740336865187, -0.005924292840063572, -0.10367940366268158, 0.05382301285862923, 0.03696485236287117, -0.01136130653321743, -0.02911708690226078, -0.056866373866796494, -0.021337714046239853, 0.011840037070214748, -0.00423591211438179, 0.0035114046186208725, -0.04524005576968193, 0.031237181276082993, 0.02150868810713291, -0.03469088301062584, -0.02992067113518715, 0.0274928230792284, -0.03713582828640938, -0.009762687608599663, -0.035836417227983475, 0.011002258397638798, 0.02831350453197956, 0.004770210012793541, 0.06774040311574936, 0.010574820451438427, 0.0023615958634763956, -0.007339113391935825, -0.04937765747308731, 0.02333812415599823, 0.09184791147708893, 0.01837984099984169, 0.046163320541381836, 0.04127342998981476, 0.029185477644205093, 0.08794967830181122, 0.007480167783796787, 0.03525510057806969, 0.0734509751200676, -0.030501987785100937, -0.019679253920912743, -0.056285057216882706, -0.04011079668998718, 0.003849080763757229, -0.009001847356557846, -0.016447819769382477, -0.009036042727530003, 0.0016445682849735022, -0.02044864185154438, -0.007458795793354511, 0.012635071761906147, 0.022979075089097023, -0.010472235269844532, 0.009326701052486897, -0.0022504618391394615, -0.0317843034863472, 0.03679387643933296, -0.03795650973916054, 0.04937765747308731, 0.012874437496066093, 0.02540692500770092, -0.00371443759649992, -0.011737451888620853, -0.023235538974404335, -0.0200383011251688, -0.04421420395374298, 0.0032271582167595625, -0.006308987271040678, 0.026073727756738663, 0.005043770186603069, -0.007510088384151459, 0.004458180163055658, 0.04370127618312836, -0.02226097881793976, -0.05105321481823921, -0.006155109498649836, 0.03515251353383064, 0.05614827573299408, -0.002404339611530304, 0.022961977869272232, 0.0006796266534365714, 0.007142491638660431, -0.028433186933398247, 0.021320614963769913, -0.07864861935377121, -0.01134420931339264, 0.04582137241959572, 0.05437013506889343, 0.05259199067950249, 0.004428259562700987, -0.05348106473684311, 0.05478047579526901, 0.03445151448249817, -0.016122967004776, 0.012429901398718357, -0.006249146070331335, -0.011438244953751564, -0.03528929501771927, -0.05437013506889343, 0.05990973487496376, 0.026586653664708138, -0.028228016570210457, 0.003951665945351124, -0.048830535262823105, 0.003406682051718235, 0.03607578203082085, 0.04886472970247269, -0.01796950027346611, -0.042880598455667496, 0.0034024077467620373, -0.0099251139909029, -0.010053345933556557, -0.004293616395443678, -0.037443581968545914, 0.03405827283859253, -0.020944470539689064, -0.04859117045998573, 0.007138217333704233, -0.016242649406194687, 0.03532348945736885, -0.03470797836780548, -0.029903573915362358, -0.037888117134571075, 0.015191152691841125, 0.014584190212190151, 0.0350499302148819, 0.03303242102265358, 0.04486390948295593, -0.009754138998687267, -0.015011628158390522, -0.043872252106666565, 0.020824788138270378, 0.001315440982580185, 0.005150629673153162, 0.0035562855191528797, -0.016217004507780075, 0.003417368046939373, -0.010053345933556557, -0.023492000997066498, -0.04072630777955055, 0.04893312230706215, -0.030878132209181786, -0.02952742762863636, -0.01587505266070366, 0.0017770741833373904, 0.0046548014506697655, -0.012865888886153698, -0.0204144474118948, -0.021166738122701645, 0.008724013343453407, 0.027971552684903145, -0.02932225726544857, -0.00979688297957182, 0.05122419074177742, 0.02894611284136772, 0.01031835749745369, -0.018721790984272957, 0.026364386081695557, 0.018704693764448166, 0.027937358245253563, -0.016678636893630028, -0.011814391240477562, 0.03799070417881012, -0.005501129198819399, -0.034160859882831573, 0.08001642674207687, -0.006539803929626942, -0.017037685960531235, -0.04048694297671318, 0.05580632761120796, -0.012959925457835197, -0.011874232441186905, 0.0200383011251688, -0.014139654114842415, -0.021953223273158073, 0.0002639430749695748, 0.0173796359449625, -0.00857868418097496, -0.0014981707790866494, -0.020311862230300903, 0.05823417380452156, -0.008736835792660713, 0.004302165005356073, 0.037922315299510956, 0.009882370010018349, -0.06903981417417526, 0.007787923328578472, 0.026791824027895927, -0.00712539441883564, 0.01921761967241764, -0.07057859003543854, -0.04568459093570709, 0.05286555364727974, -0.03034810908138752, 0.03246820345520973, 0.060832999646663666, 0.030057452619075775, 0.024107512086629868, -0.017448026686906815, -0.031476546078920364, 0.036622900515794754, -0.012429901398718357, 0.0029215398244559765, 0.019303107634186745, -0.060627829283475876, -0.04011079668998718, -0.006266243290156126, 0.02976679429411888, 0.06391055136919022, -0.03472507745027542, 0.05012994632124901, 0.0016990667209029198, 0.04606073722243309, 0.07304063439369202, -0.008706915192306042, 0.008753933943808079, -0.0070527298375964165, 0.07782793790102005, 0.03905075043439865, -0.015507456846535206, 0.056456033140420914, 0.06572289019823074, 0.006539803929626942, -0.07290385663509369, -0.016798319295048714, -0.00970284640789032, 0.032126251608133316, 0.02026056870818138, -0.07242511957883835, -0.029578721150755882, 0.02622760646045208, -0.02680892124772072, -0.035597048699855804, 0.010762892663478851, -0.06032007187604904, -0.012857340276241302, -0.014840653166174889, -0.0037422210443764925, 0.017866915091872215, -0.028193822130560875, 0.031698815524578094, 0.020106691867113113, 0.021235128864645958, 0.03175010532140732, -0.04746273532509804, -0.0021745916455984116, -0.002494101645424962, -0.05074545741081238, -0.02915128320455551, 0.007651143241673708, -0.014601287432014942, -0.034793466329574585, 0.06849268823862076, 0.04524005576968193, 0.022397760301828384, -0.048830535262823105, 0.03535768389701843, 0.0038533550687134266, 0.06551772356033325, -0.0156100420281291, 0.02704828791320324, 0.008728287182748318, 0.04229928180575371, -0.02169676125049591, 0.022038711234927177, -0.056866373866796494, 0.03887977451086044, -0.01488339714705944, -0.0015580120962113142, 0.023492000997066498, -0.039358507841825485, 0.025936948135495186, 0.022585833445191383, 0.006796266883611679, 0.0018721792148426175, -0.044487763196229935, -0.0024663181975483894, 0.12132404744625092, 0.0036524590104818344, -0.06155109405517578, 0.06555191427469254, -0.030655864626169205, -0.0005321605131030083, 0.04257284104824066, -0.0002544592716731131, 0.015951992943882942, -0.028398992493748665, 0.007142491638660431, -0.008753933943808079, -0.01858501136302948, 0.005026672966778278, -0.006612468510866165, 0.03740938752889633, 0.028193822130560875, 0.03279305621981621, -0.0074758934788405895, 0.010087540373206139, 0.0070313578471541405, -0.04971960559487343, -0.03816168010234833, 0.020927373319864273, -0.016011834144592285, 0.03304952010512352, -0.030245523899793625, -0.01496888417750597, 0.012874437496066093, 0.02311585657298565 ]
20,233
pandas_datareader.data
get_data_enigma
null
def get_data_enigma(*args, **kwargs): return EnigmaReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.026346126571297646, -0.04875645041465759, 0.0016869240207597613, 0.017575394362211227, 0.04563495144248009, 0.03325074538588524, -0.013817720115184784, -0.03041764535009861, 0.11936338990926743, 0.023903215304017067, 0.03647403046488762, 0.01141722034662962, -0.06449966132640839, 0.022936228662729263, -0.000020758521714014933, -0.007850399240851402, -0.04543137550354004, 0.037356194108724594, -0.004122413694858551, 0.01274894643574953, -0.02268175780773163, -0.005153017118573189, -0.04424384981393814, -0.018678097054362297, -0.019950447604060173, 0.02578629180788994, 0.014123084023594856, -0.051742229610681534, -0.011883748695254326, 0.011951607652008533, 0.0025319764390587807, -0.031130162999033928, -0.012579299509525299, 0.08143039792776108, -0.007680752780288458, -0.006081832572817802, -0.03077390417456627, -0.025650575757026672, -0.10755598545074463, 0.028992613777518272, -0.054999448359012604, -0.06297284364700317, 0.1104060485959053, 0.008066698908805847, -0.060767434537410736, -0.024547871202230453, -0.020730821415781975, -0.04040983319282532, -0.03470970690250397, 0.01084890402853489, 0.044617071747779846, 0.010501128621399403, 0.032402511686086655, -0.0056661986745893955, -0.007498382590711117, 0.040613409131765366, -0.04868859052658081, 0.03465881198644638, 0.021986206993460655, 0.0479421466588974, -0.018084334209561348, -0.021053150296211243, 0.06212460622191429, -0.020544210448861122, -0.04295453429222107, 0.048043932765722275, 0.021171903237700462, 0.0014356349129229784, 0.010526575148105621, 0.014411483891308308, -0.002228732919320464, 0.002879752079024911, -0.05537267029285431, 0.013817720115184784, 0.015064623206853867, -0.00723118893802166, -0.04298846423625946, 0.017694147303700447, -0.01255385298281908, 0.07430523633956909, 0.022071029990911484, 0.026430949568748474, -0.01799951121211052, 0.04064733907580376, 0.021002257242798805, -0.03582937642931938, 0.007727405522018671, 0.006060626823455095, -0.009237260557711124, -0.010560504160821438, 0.009720753878355026, 0.007803746499121189, -0.036440104246139526, 0.07383022457361221, -0.03197839483618736, -0.07837675511837006, -0.02334338054060936, 0.06646756082773209, 0.010518092662096024, 0.0011451150057837367, -0.04305632412433624, 0.07980179041624069, 0.06860511004924774, 0.0024089824873954058, -0.0024301884695887566, -0.06236211210489273, 0.001986986491829157, -0.0017494811909273267, 0.05642447993159294, -0.014386036433279514, -0.019034355878829956, -0.024853235110640526, -0.004118172451853752, 0.02346213348209858, -0.04661890119314194, -0.009890399873256683, -0.0014568406622856855, 0.045329589396715164, -0.048349298536777496, -0.020662963390350342, -0.03174088895320892, 0.037356194108724594, -0.009652894921600819, 0.010187282226979733, 0.007477176375687122, 0.02498895302414894, -0.015743210911750793, -0.03817049786448479, 0.019594188779592514, -0.0640585795044899, 0.031808748841285706, 0.023156769573688507, 0.025684503838419914, 0.03559187054634094, -0.011943125165998936, -0.005657716188579798, 0.12825287878513336, -0.007434764876961708, 0.011697136797010899, 0.07410166412591934, 0.0016317887930199504, 0.02923011966049671, 0.03057032823562622, -0.012706534937024117, -0.05883346125483513, -0.022529076784849167, 0.07986965030431747, -0.05805308744311333, -0.0015798344975337386, -0.025158599019050598, 0.03722047805786133, 0.025633610785007477, -0.04305632412433624, 0.02263086475431919, 0.07511954009532928, -0.04946896433830261, -0.007282082922756672, 0.006268444005399942, -0.06110672652721405, 0.04824750870466232, -0.03382754325866699, 0.06236211210489273, -0.0169052891433239, -0.002837340347468853, 0.015429363586008549, 0.03701690211892128, 0.025141635909676552, -0.022613899782299995, 0.05913882702589035, -0.02695685438811779, -0.01010245829820633, -0.023207662627100945, -0.08312686532735825, -0.021714773029088974, 0.022020136937499046, -0.010051564313471317, -0.024530906230211258, 0.03308109939098358, 0.024276437237858772, 0.022885333746671677, -0.05645840987563133, -0.01772807538509369, -0.04624567925930023, 0.0040948460809886456, 0.035863302648067474, -0.0257353987544775, 0.04298846423625946, 0.005123329348862171, 0.026905959472060204, -0.08903056383132935, 0.03817049786448479, -0.021358514204621315, -0.03701690211892128, 0.004856135696172714, -0.002854305086657405, -0.055474456399679184, -0.00844840332865715, 0.004614389035850763, -0.03211411461234093, 0.005823121406137943, 0.0009070794912986457, -0.021324586123228073, 0.019458472728729248, -0.035863302648067474, -0.04298846423625946, -0.007566241081804037, 0.02605772763490677, 0.002710105385631323, -0.07559455186128616, 0.024259472265839577, 0.003117257496342063, -0.03136766701936722, 0.027177395299077034, 0.012002501636743546, 0.037152618169784546, -0.005623786710202694, -0.032996274530887604, -0.011289984919130802, 0.009864953346550465, 0.019831694662570953, 0.01592133939266205, 0.019984375685453415, -0.010170317254960537, 0.023835355415940285, 0.025022882968187332, -0.03725440800189972, 0.0017060092650353909, 0.002572267549112439, -0.05371013283729553, 0.011739549227058887, -0.0012818925315514207, 0.026159515604376793, -0.04224201664328575, 0.016769573092460632, 0.015183376148343086, 0.0660264790058136, 0.024649659171700478, -0.012562335468828678, -0.030315857380628586, 0.008796179667115211, 0.024734482169151306, -0.021426374092698097, -0.0062642027623951435, 0.04784035682678223, -0.005678921937942505, -0.04624567925930023, 0.04268309846520424, 0.03725440800189972, -0.017346370965242386, -0.010297552682459354, 0.036406174302101135, 0.032080184668302536, 0.019916517660021782, 0.06667114049196243, -0.005424452014267445, 0.019441507756710052, 0.013995849527418613, -0.041156280785799026, 0.05615304410457611, -0.0577816516160965, 0.049061812460422516, -0.027448829263448715, -0.004644077271223068, 0.026617560535669327, 0.012944039888679981, 0.02239335887134075, -0.0021131611429154873, -0.03414987400174141, 0.02247818186879158, -0.05092792585492134, -0.09113418310880661, 0.07226947695016861, -0.009576554410159588, -0.03823835775256157, 0.025888079777359962, -0.009067613631486893, 0.0825161337852478, -0.001425031921826303, 0.01210428960621357, 0.06823188811540604, -0.02641398459672928, 0.03915444761514664, -0.004987611901015043, -0.052013665437698364, 0.010119423270225525, -0.037356194108724594, 0.0020718099549412727, -0.021087080240249634, 0.020459387451410294, -0.02668542042374611, 0.014453895390033722, 0.027720265090465546, -0.04390455409884453, -0.04000268131494522, 0.05011362209916115, -0.018084334209561348, -0.059749554842710495, -0.02149423211812973, 0.04522779956459999, -0.01016183476895094, 0.037356194108724594, -0.03387843817472458, 0.043090250343084335, -0.008571397513151169, -0.06592468917369843, -0.016328491270542145, 0.014878012239933014, -0.032198935747146606, -0.01408915501087904, -0.050554703921079636, -0.011247573420405388, 0.03555794060230255, 0.016167325899004936, 0.020103128626942635, -0.07722315937280655, -0.009966741316020489, 0.05340476706624031, 0.09914150834083557, 0.06578897684812546, 0.004048193339258432, 0.05812094733119011, -0.0038955113850533962, 0.05506730452179909, -0.027991699054837227, 0.08794482797384262, 0.009262708015739918, -0.0040948460809886456, 0.003959129098802805, 0.08102324604988098, -0.0022944710217416286, -0.03823835775256157, -0.009415389969944954, -0.0165066197514534, 0.011764995753765106, -0.049299318343400955, 0.00576798664405942, -0.004389607347548008, -0.024310367181897163, 0.012367241084575653, -0.02086653932929039, 0.003967611119151115, -0.05622090399265289, -0.003513806499540806, -0.008104869164526463, 0.04495636373758316, 0.024649659171700478, 0.07423737645149231, -0.07932677865028381, 0.04936717823147774, 0.05689949169754982, -0.020612068474292755, -0.007188777439296246, 0.041325926780700684, 0.014708365313708782, 0.013011898845434189, -0.00538204051554203, -0.002237215405330062, 0.01210428960621357, -0.04040983319282532, 0.008605326525866985, -0.0028479432221502066, 0.023326415568590164, -0.005352352280169725, 0.028246168047189713, -0.05238688737154007, -0.05561017617583275, -0.030163176357746124, 0.04909574240446091, 0.055474456399679184, 0.08163397014141083, 0.0023792944848537445, 0.023156769573688507, -0.036168668419122696, 0.03175785392522812, 0.02943369559943676, -0.05337084084749222, -0.05021541193127632, -0.030383717268705368, -0.016803501173853874, 0.028110451996326447, -0.04020625725388527, 0.04390455409884453, -0.04617781937122345, -0.018678097054362297, 0.04824750870466232, 0.017812900245189667, -0.0326230525970459, 0.044549211859703064, 0.005148776341229677, -0.00845264457166195, -0.03148642182350159, -0.015751691535115242, 0.050283271819353104, 0.0018321839161217213, -0.027126500383019447, -0.028398850932717323, -0.01796558126807213, 0.010424787178635597, -0.019712941721081734, -0.01567535102367401, -0.06629791855812073, 0.03194446489214897, -0.06466930359601974, 0.0009335867944173515, -0.02844974584877491, -0.030044423416256905, 0.009924329817295074, -0.046042103320360184, 0.03336949646472931, -0.041597362607717514, -0.005000335164368153, 0.03677939623594284, 0.025837186723947525, -0.007858881726861, 0.0447867177426815, 0.014301213435828686, -0.00011225837806705385, -0.04889216646552086, -0.03089265711605549, 0.02660059556365013, -0.006658631376922131, 0.0330132395029068, -0.02086653932929039, 0.005432934500277042, 0.032521266490221024, 0.004529566038399935, -0.07640885561704636, 0.0049536824226379395, -0.02035759948194027, -0.00042252620914950967, -0.030706046149134636, -0.0353543646633625, -0.01117971446365118, -0.0695551335811615, -0.023903215304017067, 0.0271095372736454, -0.07145517319440842, -0.03630438446998596, 0.015259716659784317, 0.00017534573271404952, 0.027635440230369568, -0.0006626822869293392, 0.029806917533278465, 0.024344295263290405, -0.0038000852800905704, -0.04427777975797653, -0.033064134418964386, 0.07084444910287857, 0.034879352897405624, -0.054015494883060455, 0.007905534468591213, 0.03769548609852791, 0.021002257242798805, -0.06975870579481125, 0.041359856724739075, -0.020934397354722023, 0.0247514471411705, -0.006595014128834009, -0.007214224431663752, -0.009271189570426941, -0.003920958377420902, -0.028229204937815666, -0.017117347568273544, -0.07980179041624069, 0.08923414349555969, 0.04305632412433624, -0.007986116223037243, 0.007697717286646366, -0.06232818216085434, -0.022817475721240044, 0.011069444939494133, 0.015073105692863464, 0.018440591171383858, -0.06103886663913727, 0.041834864765405655, 0.015624457038939, -0.03470970690250397, -0.006616219878196716, -0.02471751905977726, -0.030502470210194588, 0.023784462362527847, -0.08794482797384262, 0.0440063439309597, 0.043633121997117996, -0.05788344144821167, 0.020934397354722023, 0.01324092224240303, 0.014665953814983368, 0.012596264481544495, -0.018762920051813126, 0.004618630278855562, 0.10172013938426971, 0.008478092029690742, 0.045058153569698334, 0.025922009721398354, 0.03319985046982765, 0.04987611994147301, -0.01823701523244381, 0.001967901363968849, 0.023903215304017067, -0.020340634509921074, -0.03477756679058075, 0.03465881198644638, -0.057001277804374695, -0.021392444148659706, -0.01149356085807085, -0.05615304410457611, 0.013978884555399418, 0.05611911416053772, -0.0034374655224382877, -0.030943550169467926, 0.006963995285332203, 0.03146945685148239, -0.028314027935266495, 0.0011642002500593662, 0.043327756226062775, -0.026159515604376793, 0.03952767327427864, -0.07226947695016861, 0.037899065762758255, 0.011629278771579266, 0.046076033264398575, 0.006064868066459894, -0.004406571853905916, -0.01510703470557928, 0.02325855754315853, -0.06259961426258087, -0.014309695921838284, -0.023665709421038628, 0.05238688737154007, -0.0008477031369693577, -0.022257640957832336, 0.012324829585850239, 0.023513026535511017, -0.05276011303067207, -0.0222067479044199, 0.0035244093742221594, 0.016565997153520584, 0.040104471147060394, 0.008562915027141571, -0.012231524102389812, -0.022800510749220848, -0.008596844971179962, 0.003819170407950878, 0.0025998351629823446, -0.01626911386847496, 0.023513026535511017, 0.07057300955057144, 0.05706913769245148, -0.00870287325233221, -0.04515993967652321, -0.0715230330824852, 0.022291570901870728, -0.019475435838103294, 0.004474430810660124, -0.013359674252569675, -0.01173106674104929, -0.023665709421038628, -0.040884844958782196, -0.05818880349397659, 0.046788547188043594, 0.020255811512470245, -0.05038505792617798, 0.016642337664961815, -0.029772989451885223, 0.007133642211556435, -0.012961004860699177, 0.03107926808297634, -0.06707829236984253, -0.050792209804058075, 0.005437175277620554, 0.00836782157421112, 0.014674436300992966, -0.005458381492644548, -0.002166175749152899, 0.04420991986989975, 0.0055347224697470665, -0.03107926808297634, 0.020374564453959465, -0.04319204017519951, 0.055270880460739136, -0.035116858780384064, -0.03162213787436485, -0.03189357370138168, -0.0003151716955471784, -0.01815219223499298, 0.025599680840969086, 0.015081588178873062, -0.0023326415102928877, 0.05014755204319954, 0.017897723242640495, -0.020255811512470245, -0.005496551748365164, -0.0002759408962447196, 0.05846023932099342, 0.007608652580529451, 0.028619391843676567, 0.007019130513072014, -0.009288154542446136, -0.056526266038417816, -0.04967254400253296, 0.002381415106356144, -0.04451528191566467, 0.016761090606451035, -0.03627045452594757, -0.010263622738420963, 0.00723118893802166, -0.004166946280747652, 0.0357615165412426, 0.010093976743519306, -0.01940757781267166, -0.01540391705930233, -0.05014755204319954, -0.022698722779750824, 0.02821223996579647, 0.034319519996643066, 0.0010470380075275898, -0.0459742434322834, 0.02510770596563816, 0.05340476706624031, 0.04499029368162155, -0.012731981463730335, -0.048043932765722275, -0.003346280427649617, 0.027686335146427155, -0.006510190665721893, 0.0014939509565010667, 0.006811313331127167, -0.010899798013269901, -0.0479421466588974, 0.031808748841285706, 0.019034355878829956, 0.047059983015060425, 0.019950447604060173, 0.03469274193048477, 0.02782205305993557, -0.0040948460809886456, 0.01772807538509369, -0.042140230536460876, 0.011052479967474937, -0.005924909841269255, 0.03474363684654236, -0.0644318014383316, -0.016769573092460632, -0.013961920514702797, 0.010153352282941341, -0.01045023463666439, 0.00021298608044162393, 0.014869529753923416, -0.02877207286655903, 0.007214224431663752, 0.016090985387563705, 0.023207662627100945, 0.014996765181422234, -0.0028691492043435574, -0.01534454058855772, 0.09649501740932465, 0.022172817960381508, -0.019831694662570953, -0.015293646603822708, -0.014665953814983368, 0.034285590052604675, 0.020103128626942635, -0.028500638902187347, 0.042581312358379364, -0.04621174931526184, -0.037084758281707764, 0.029569413512945175, 0.06253176182508469, 0.027177395299077034, -0.01674412563443184, 0.0593424029648304, 0.04298846423625946, -0.011875266209244728, 0.05282796919345856, -0.0007724224706180394, 0.028466708958148956, -0.08360187709331512, 0.0923556387424469, 0.09486640989780426, -0.016633855178952217, 0.03905266150832176, 0.019916517660021782, 0.021935313940048218, -0.059274543076753616, 0.004542289301753044, 0.015666868537664413, 0.007455970626324415, -0.000004315718342695618, -0.05533874034881592, -0.0011493561323732138, -0.045838527381420135, -0.005517757497727871, -0.07009799778461456, 0.002389897359535098, -0.01092524453997612, 0.007078506983816624, -0.0031914778519421816, -0.0239710733294487, 0.017244582995772362, -0.025514857843518257, -0.019119178876280785, 0.037424053996801376, -0.023326415568590164, -0.008897967636585236, -0.05561017617583275, -0.012562335468828678, 0.032317690551280975, -0.07240519672632217, -0.014632024802267551, 0.016752608120441437, 0.01779593527317047, 0.016065537929534912, 0.0143436249345541, 0.05717092379927635, 0.02719436027109623, -0.09269493818283081, 0.09846292436122894, -0.031028375029563904, 0.026651490479707718, -0.03484542295336723, 0.04040983319282532, 0.03844193369150162, 0.021154938265681267, -0.06266747415065765, 0.03296234458684921, -0.08794482797384262, -0.006200585514307022, 0.046313539147377014, -0.010585951618850231, 0.032521266490221024, -0.021596020087599754, 0.020493317395448685, 0.012367241084575653, -0.04851894453167915, -0.02648184448480606, -0.028398850932717323, -0.007248153444379568, 0.03408201411366463, -0.037390124052762985, -0.03599902242422104, 0.07043728977441788, -0.014173978939652443, 0.04787428677082062, 0.040884844958782196, 0.017778970301151276, 0.01642179675400257, -0.003721623681485653, -0.00006106617365730926, 0.019322754815220833, 0.02546396292746067, 0.016201255843043327, -0.011086408980190754, 0.02821223996579647, -0.007269359193742275, -0.002211768412962556, 0.006098797544836998, -0.030824799090623856, 0.014241836965084076, -0.027092572301626205, -0.021680843085050583, 0.011578384786844254, -0.00817272812128067, 0.011781960725784302, -0.05557624623179436, 0.006446572951972485, 0.009042167104780674, -0.011205161921679974 ]
20,234
pandas_datareader.data
get_data_famafrench
null
def get_data_famafrench(*args, **kwargs): return FamaFrenchReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.016014141961932182, -0.042546793818473816, 0.026726815849542618, -0.028178811073303223, 0.005069315433502197, 0.029715221375226974, 0.0014171713264659047, 0.01157374121248722, 0.07746218144893646, -0.016790788620710373, 0.021729256957769394, 0.007032040040940046, -0.06172662228345871, 0.028955457732081413, 0.024582592770457268, 0.03751546889543533, -0.08867292106151581, 0.04318837448954582, -0.005136850290000439, 0.0557498075067997, -0.010662023909389973, -0.039440203458070755, -0.07091132551431656, -0.009919144213199615, 0.0249202661216259, 0.006369356531649828, 0.008998984470963478, -0.027368394657969475, 0.0011596956755965948, 0.05301465839147568, 0.023653991520404816, -0.006052788347005844, -0.04143247380852699, 0.08732223510742188, -0.033581577241420746, -0.015262818895280361, -0.022944878786802292, -0.009598354808986187, -0.09441336244344711, 0.02743593044579029, -0.0253254733979702, -0.0557498075067997, 0.04615989699959755, 0.040183085948228836, -0.07064118981361389, -0.051697734743356705, -0.007758036721497774, -0.03385171666741371, -0.021914975717663765, 0.050110671669244766, 0.020918840542435646, -0.00711223715916276, 0.007255748379975557, 0.04106103628873825, -0.008268767036497593, -0.004096395336091518, -0.08320262283086777, 0.03155554085969925, 0.01645311526954174, 0.04845607280731201, 0.017626529559493065, -0.04379618540406227, 0.07104639708995819, -0.025595612823963165, -0.03839341923594475, 0.007766478694975376, 0.05726933851838112, 0.001201904728077352, -0.007276852615177631, 0.012890665791928768, -0.03385171666741371, 0.09123923629522324, -0.01637713983654976, 0.011168533936142921, 0.04423515871167183, 0.020192844793200493, -0.013532244600355625, -0.0031867886427789927, -0.04089219868183136, 0.054230280220508575, 0.0596330501139164, 0.012814689427614212, -0.028702203184366226, 0.019027872011065483, -0.02843206562101841, -0.04193898290395737, 0.05767454579472542, -0.0007507947739213705, 0.04710537940263748, -0.0037333969958126545, -0.009134054183959961, -0.022657856345176697, -0.013895243406295776, 0.04629496484994888, -0.027317743748426437, -0.08164932578802109, -0.01730574108660221, 0.06891905516386032, 0.0020872410386800766, 0.014739425852894783, -0.03977787867188454, 0.038866158574819565, 0.037279095500707626, -0.009015868417918682, 0.0206318199634552, -0.021948743611574173, 0.020209727808833122, -0.024430640041828156, 0.05139382928609848, -0.005985253490507603, -0.05713426694273949, -0.03636737912893295, 0.041567545384168625, 0.08218960464000702, -0.04396502301096916, 0.013110153377056122, 0.007293736562132835, 0.02939443290233612, -0.03317636996507645, -0.00100615993142128, -0.004227243829518557, 0.033564694225788116, -0.013515360653400421, -0.031285401433706284, 0.011362696066498756, 0.05466925725340843, 0.02551119402050972, -0.04842230677604675, 0.11980637162923813, 0.001216677948832512, 0.053453631699085236, 0.015161517076194286, 0.005474523175507784, -0.0334971584379673, 0.016942741349339485, -0.026000820100307465, 0.09096910059452057, 0.0015860077692195773, -0.00011937267845496535, 0.04416762664914131, -0.01966945081949234, 0.015338795259594917, 0.03565826639533043, -0.019179824739694595, -0.06550855934619904, -0.018436944112181664, 0.05666152760386467, -0.044674135744571686, -0.04521441087126732, -0.02296176180243492, 0.06608260422945023, 0.03994671255350113, -0.07219448685646057, 0.005103082861751318, 0.04538324847817421, -0.05244061350822449, -0.04551831632852554, -0.020378563553094864, -0.01774471439421177, 0.04886128008365631, -0.024076083675026894, 0.04784826189279556, -0.023248784244060516, 0.03889992833137512, 0.01480695977807045, 0.024768313392996788, 0.02826322801411152, -0.03829211741685867, 0.009328216314315796, 0.025781331583857536, -0.000007996650310815312, -0.026152772828936577, -0.04970546439290047, 0.014781634323298931, -0.01481540221720934, -0.017390158027410507, 0.007943756878376007, -0.02064870297908783, 0.056188784539699554, 0.021509768441319466, -0.05723556876182556, -0.021087678149342537, -0.034577712416648865, -0.058721330016851425, 0.034949153661727905, -0.013954335823655128, 0.0028638888616114855, -0.0014087294694036245, 0.0739503800868988, -0.03317636996507645, 0.020412331447005272, -0.015718678012490273, -0.020699353888630867, -0.012384156696498394, -0.022472137585282326, -0.0947510376572609, -0.020412331447005272, -0.008184349164366722, -0.015684910118579865, -0.04301953688263893, -0.03602970764040947, 0.044707901775836945, 0.019973356276750565, -0.01593816466629505, -0.07624655961990356, 0.04612613096833229, 0.013473152182996273, 0.013177688233554363, -0.08225713670253754, 0.004322214052081108, -0.002294065896421671, -0.01732262410223484, -0.03873109072446823, 0.011860763654112816, 0.03158930689096451, -0.04193898290395737, -0.02432933822274208, -0.006234287284314632, 0.020294146612286568, 0.06307731568813324, 0.025156637653708458, -0.03829211741685867, -0.01928112655878067, 0.024278687313199043, 0.01828499138355255, -0.03744793310761452, -0.004115389660000801, -0.014156939461827278, -0.04967169463634491, -0.007500560954213142, -0.030441218987107277, 0.01440175250172615, -0.005533616058528423, -0.019720101729035378, 0.02571379765868187, 0.021138329058885574, 0.04882751405239105, 0.018048621714115143, -0.035320594906806946, 0.0318763293325901, 0.03353092819452286, -0.04578845575451851, 0.026152772828936577, 0.03974410891532898, 0.01671481318771839, -0.021965626627206802, 0.05510823056101799, -0.001074749743565917, -0.035523198544979095, -0.03116721659898758, -0.010341235436499119, 0.0347127839922905, 0.004385527689009905, 0.055783577263355255, 0.009480169042944908, -0.044302694499492645, -0.022624090313911438, -0.007749594748020172, 0.028161926195025444, -0.054027676582336426, 0.02568002976477146, -0.027942439541220665, 0.01013018935918808, 0.0518665686249733, -0.027807369828224182, 0.0056433598510921, -0.03704272583127022, -0.0214422345161438, 0.006052788347005844, -0.051900338381528854, -0.03272051364183426, 0.04582222178578377, -0.009319773875176907, -0.027402162551879883, -0.004043634049594402, -0.02902299351990223, 0.04376241937279701, -0.03076200932264328, 0.02218511514365673, 0.0001610541803529486, -0.046767707914114, 0.0005745716625824571, -0.009961352683603764, -0.010087979957461357, 0.018031736835837364, -0.018183689564466476, 0.020091542974114418, -0.021763022989034653, 0.002528326353058219, -0.015651142224669456, 0.04342474415898323, -0.02164483815431595, -0.052474379539489746, -0.013219897635281086, 0.009716539643704891, 0.0033239684998989105, 0.014536822214722633, -0.007403479889035225, 0.029073644429445267, -0.05240684747695923, -0.02976587414741516, -0.060072023421525955, 0.07563874870538712, 0.005491406656801701, -0.05750570818781853, -0.062435735017061234, -0.03461148217320442, -0.01853824593126774, -0.018943455070257187, -0.009674331173300743, 0.018149923533201218, -0.019804520532488823, 0.02335008606314659, -0.021509768441319466, -0.07219448685646057, 0.014460845850408077, 0.015853745862841606, 0.05369000509381294, 0.08489098399877548, -0.03538812696933746, 0.02610212191939354, -0.02745281346142292, 0.046463802456855774, 0.01332119945436716, 0.02123963087797165, 0.027554115280508995, 0.003893791465088725, -0.012173110619187355, 0.05824859067797661, 0.009260681457817554, -0.00352657213807106, -0.005335233174264431, -0.001596560119651258, 0.021898092702031136, -0.06365136057138443, 0.08347275853157043, -0.0010098532075062394, -0.012814689427614212, 0.05568227544426918, -0.018572013825178146, 0.0029736326541751623, -0.012595201842486858, -0.014773192815482616, 0.0031952306162565947, 0.02684500254690647, 0.0743555873632431, 0.017440808936953545, -0.016984950751066208, 0.06094997376203537, -0.0006611003773286939, -0.008720404468476772, -0.07347764074802399, 0.022860459983348846, 0.02591640129685402, -0.015777770429849625, 0.023079948499798775, -0.013464709743857384, 0.019010988995432854, -0.009480169042944908, 0.03889992833137512, -0.01928112655878067, -0.002431245520710945, -0.036536216735839844, 0.019399313256144524, -0.031656842678785324, -0.03640114888548851, -0.014747867360711098, 0.0915093794465065, 0.01081397756934166, 0.015482306480407715, 0.01726353168487549, 0.06257080286741257, 0.033395856618881226, -0.0005007057334296405, 0.0025219949893653393, -0.045450784265995026, 0.022691624239087105, -0.002597971586510539, -0.03704272583127022, 0.03930513560771942, -0.021712372079491615, 0.0025726461317390203, -0.08435071259737015, -0.0011480881366878748, 0.01333808246999979, 0.009226914495229721, -0.07455819100141525, 0.02373841032385826, 0.004077401012182236, 0.007504782173782587, 0.008289871737360954, -0.009716539643704891, 0.026406027376651764, -0.02277604304254055, -0.035725802183151245, 0.0036848564632236958, 0.0014720431063324213, -0.00574044045060873, 0.012924433685839176, -0.005094640888273716, -0.02846583165228367, -0.011421788483858109, -0.07070872187614441, -0.0237890612334013, -0.05294712260365486, 0.04268186539411545, 0.019179824739694595, -0.0390012301504612, -0.000657934695482254, 0.008399615064263344, 0.05419651418924332, 0.033193252980709076, 0.017373275011777878, 0.010653582401573658, -0.0001131732133217156, 0.084148108959198, -0.04163507744669914, -0.009817841462790966, -0.0005993695231154561, 0.010383443906903267, -0.009530819952487946, 0.021847441792488098, -0.059329140931367874, 0.0005967314937151968, 0.028921691700816154, 0.0073612709529697895, -0.06621766835451126, 0.04366111755371094, 0.004550143610686064, 0.02593328431248665, 0.010754884220659733, -0.07651669532060623, -0.010003562085330486, -0.06591376662254333, -0.017390158027410507, 0.03829211741685867, -0.06476567685604095, -0.05206917226314545, -0.005326791200786829, 0.003150911070406437, 0.06783850491046906, -0.03643491491675377, 0.045450784265995026, 0.02259032242000103, -0.1164296418428421, -0.0545341856777668, -0.03292311728000641, 0.020159076899290085, -0.023417621850967407, -0.029293131083250046, -0.0013791830278933048, 0.007217759732156992, -0.0340205542743206, -0.013667314313352108, 0.04690277576446533, -0.023670876398682594, -0.010982813313603401, -0.011708810925483704, 0.018436944112181664, 0.03545566275715828, 0.02100325934588909, 0.0026908316649496555, -0.006825215183198452, -0.061827924102544785, 0.058316122740507126, 0.011843879707157612, -0.0018234341405332088, -0.009226914495229721, -0.035354360938072205, -0.05338609963655472, -0.030306149274110794, 0.005601150449365377, -0.021678606048226357, -0.07624655961990356, 0.03253479301929474, 0.03055940568447113, -0.05311596021056175, -0.02998536080121994, -0.0490301176905632, -0.024464407935738564, 0.00793953612446785, -0.0463625006377697, 0.023299435153603554, 0.024464407935738564, -0.015338795259594917, -0.0361647754907608, 0.03521929308772087, -0.00019825097115244716, -0.01750834472477436, 0.006259612739086151, 0.01890968717634678, 0.04339097812771797, 0.01667260378599167, 0.02743593044579029, 0.053453631699085236, 0.028009973466396332, 0.08327015489339828, 0.015355679206550121, -0.002275071805343032, 0.023687759414315224, -0.02787490375339985, -0.008306755684316158, -0.0723295509815216, 0.007952198386192322, -0.04359358176589012, -0.02220199815928936, -0.0015828420873731375, -0.020159076899290085, 0.03987918049097061, -0.00005612494351225905, -0.010450978763401508, -0.0253254733979702, 0.010881511494517326, -0.006344031076878309, -0.012426366098225117, 0.0049848975613713264, -0.020598052069544792, 0.018386293202638626, -0.084148108959198, 0.04443776607513428, 0.004997560288757086, 0.05369000509381294, -0.019939590245485306, 0.0004263121518306434, -0.018960338085889816, 0.012882224284112453, 0.00823500007390976, 0.012291296385228634, -0.005086199380457401, -0.023991664871573448, -0.010982813313603401, -0.029056759551167488, 0.02665928192436695, 0.00681677320972085, 0.006740796845406294, -0.04180391505360603, -0.0005189083749428391, 0.024042315781116486, 0.02335008606314659, 0.0013148142024874687, -0.013675755821168423, 0.007433026563376188, -0.04842230677604675, -0.0052086059004068375, 0.013869917951524258, -0.10940604656934738, 0.04173637926578522, 0.011168533936142921, 0.09522377699613571, 0.010754884220659733, -0.038460951298475266, -0.062233131378889084, 0.022708507254719734, 0.01623362861573696, 0.011463997885584831, 0.03954150527715683, -0.05156266316771507, 0.018251225352287292, 0.0020935724023729563, -0.08428317308425903, 0.028330763801932335, 0.0170102771371603, -0.017423925921320915, 0.05257568135857582, -0.026794351637363434, 0.020547401160001755, 0.031437356024980545, 0.03521929308772087, -0.04406632483005524, -0.037886910140514374, 0.009488610550761223, 0.031099680811166763, -0.01364198885858059, 0.05223800987005234, 0.0002841201494447887, -0.01730574108660221, 0.014232915826141834, -0.05764077603816986, 0.06250327080488205, -0.010906836949288845, -0.006631053052842617, -0.01715378649532795, -0.05865379795432091, -0.009784074500203133, 0.011751019395887852, 0.05770831182599068, 0.018977221101522446, 0.04305330663919449, 0.015110866166651249, 0.0035772230476140976, 0.008175906725227833, -0.04146624356508255, 0.019382428377866745, -0.02649044618010521, 0.015482306480407715, -0.003435822669416666, 0.020361680537462234, 0.003036946291103959, -0.015220609493553638, -0.012299737893044949, -0.06712938845157623, 0.018268108367919922, -0.05706673488020897, -0.04345851391553879, -0.012671178206801414, -0.005077757406979799, -0.03334520757198334, 0.03734663128852844, 0.011269835755228996, 0.06540725380182266, -0.021087678149342537, -0.0036721937358379364, -0.014933587983250618, 0.005069315433502197, 0.02495403401553631, 0.0028259006794542074, 0.034375108778476715, -0.06091620400547981, 0.005119966343045235, 0.060679834336042404, -0.006390461232513189, -0.013203013688325882, -0.01430889219045639, 0.04967169463634491, 0.024430640041828156, 0.025595612823963165, 0.0036109904758632183, -0.01811615563929081, -0.033193252980709076, -0.026422910392284393, -0.0011670822277665138, 0.018420061096549034, 0.020496750250458717, 0.03094772808253765, 0.015203725546598434, 0.014823843725025654, 0.004904699977487326, 0.04163507744669914, -0.03994671255350113, -0.03207893297076225, -0.06081490218639374, 0.03744793310761452, 0.0032374397851526737, -0.015305028297007084, -0.023417621850967407, -0.051292527467012405, 0.0001515571348136291, -0.02667616493999958, 0.050347041338682175, -0.03131916746497154, -0.04494427517056465, 0.03636737912893295, -0.01440175250172615, 0.0686151459813118, 0.04980676621198654, 0.011185417883098125, 0.06696055084466934, 0.027993090450763702, -0.000729690189473331, -0.012434807606041431, -0.026017703115940094, 0.008146360516548157, 0.02670993283390999, -0.012198436073958874, -0.008315197192132473, -0.0344257615506649, 0.003435822669416666, 0.02177990786731243, -0.017491459846496582, 0.014536822214722633, -0.06219936162233353, 0.13783811032772064, 0.04278316721320152, -0.03037368506193161, 0.048962581902742386, 0.05068471282720566, 0.01402187068015337, -0.014452403411269188, 0.06530595570802689, 0.08441824465990067, 0.030643822625279427, 0.0451468788087368, 0.007070028223097324, 0.04612613096833229, -0.01966945081949234, 0.07226201891899109, -0.056796595454216, 0.03758300095796585, -0.0146043561398983, -0.020344797521829605, 0.03290623053908348, -0.03332832455635071, 0.018791500478982925, -0.06098373979330063, 0.021138329058885574, 0.01593816466629505, -0.01671481318771839, 0.015305028297007084, -0.03057628870010376, 0.050110671669244766, -0.01537256222218275, -0.008880799636244774, 0.026625514030456543, -0.030289266258478165, -0.02007465809583664, -0.04747682064771652, -0.02885415591299534, 0.053656235337257385, -0.1017071008682251, 0.035962171852588654, 0.0180823877453804, 0.01793043501675129, -0.026946304365992546, 0.050954852253198624, 0.00048566871555522084, 0.01730574108660221, -0.05254191532731056, 0.053082194179296494, -0.03037368506193161, 0.004317993298172951, 0.005575824994593859, 0.04386372119188309, 0.03775183856487274, 0.05834989249706268, -0.01539788767695427, -0.00046746604493819177, -0.051731500774621964, -0.0006283883121795952, -0.016605067998170853, -0.025646263733506203, 0.07901547849178314, -0.0006568794487975538, -0.021324047818779945, 0.02821257710456848, -0.023299435153603554, -0.0264566782861948, 0.03623231127858162, -0.002741482574492693, -0.005090420134365559, -0.011227626353502274, -0.013473152182996273, 0.05723556876182556, -0.024869615212082863, 0.05726933851838112, 0.0036616413854062557, 0.028094392269849777, 0.030863311141729355, -0.021948743611574173, -0.06439423561096191, 0.039980482310056686, 0.009015868417918682, 0.003720734268426895, 0.0006399957928806543, 0.09596665948629379, 0.01081397756934166, -0.012780922465026379, -0.002760476665571332, -0.027351511642336845, 0.0073232827708125114, -0.04382995143532753, -0.013945894315838814, 0.04852360859513283, -0.014840727671980858, 0.025038450956344604, -0.018588896840810776, -0.023468272760510445, 0.0050439899787306786, 0.01430889219045639 ]
20,235
pandas_datareader.data
get_data_fred
null
def get_data_fred(*args, **kwargs): return FredReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.01351924054324627, -0.06849305331707001, -0.016724662855267525, 0.0030850109178572893, 0.035209815949201584, 0.048197586089372635, -0.0058129411190748215, 0.018152983859181404, 0.09300705790519714, -0.050954580307006836, 0.02703848108649254, 0.02770281583070755, -0.06072032079100609, 0.009508310817182064, 0.0377010740339756, 0.005688378121703863, -0.0712832659482956, 0.08324131369590759, -0.008777541108429432, 0.031987786293029785, -0.03501051291823387, 0.016666533425450325, -0.01800350844860077, -0.013178767636418343, -0.0023023399990051985, 0.02531120553612709, 0.017638124525547028, -0.035508766770362854, 0.02076050452888012, 0.03853149712085724, 0.01056294422596693, -0.03776750713586807, -0.0496591255068779, 0.09008397907018661, -0.03296767920255661, -0.0046586571261286736, -0.030177468433976173, 0.02979547530412674, -0.06583570688962936, 0.029845301061868668, -0.05852801352739334, -0.055438850075006485, 0.06301227957010269, -0.008835670538246632, -0.04062415286898613, -0.012971162796020508, 0.0033507454209029675, -0.055438850075006485, -0.03298429027199745, 0.016085239127278328, 0.04776576906442642, 0.045440591871738434, -0.03250264376401901, 0.0025099448394030333, 0.03220369294285774, -0.006651665549725294, -0.03733569011092186, 0.052382905036211014, 0.016375886276364326, 0.047666117548942566, 0.003242790699005127, -0.028201067820191383, 0.05487416312098503, -0.031971175223588943, -0.0531136728823185, -0.007876534946262836, 0.032037608325481415, -0.0032926159910857677, -0.00831665750592947, 0.013959363102912903, -0.01351924054324627, 0.06703151762485504, -0.008308353833854198, -0.00861976109445095, 0.023384632542729378, 0.00416040513664484, 0.008885495364665985, -0.04593884199857712, 0.0046669612638652325, 0.03992659971117973, 0.020810328423976898, 0.01489773765206337, -0.022537603974342346, 0.01999651826918125, -0.04361366853117943, -0.03414687514305115, 0.024364527314901352, -0.00019125614198856056, 0.005364514421671629, 0.026058584451675415, -0.013245201669633389, 0.031506139785051346, -0.06510493904352188, 0.003290539840236306, -0.0159772839397192, -0.09280775487422943, -0.03643883764743805, 0.07938816398382187, -0.009225968271493912, 0.05371157452464104, -0.024447569623589516, 0.031854916363954544, 0.02477973699569702, 0.03147292509675026, -0.0021071911323815584, -0.047234296798706055, -0.004239295143634081, 0.010330426506698132, 0.014017492532730103, -0.012946249917149544, -0.041620656847953796, -0.029662607237696648, 0.03989338502287865, 0.046636395156383514, -0.02698865532875061, 0.0008449525339528918, 0.00035734017728827894, 0.01866784505546093, -0.01944844052195549, -0.050589196383953094, -0.006830205675214529, 0.035209815949201584, -0.0003153001598548144, -0.0003189332492183894, 0.008860583417117596, 0.056568220257759094, -0.01591085083782673, -0.04756646603345871, 0.07639865577220917, -0.020013125613331795, 0.06457347422838211, 0.03560841456055641, 0.004093971569091082, 0.014681828208267689, 0.035276249051094055, 0.0025203251279890537, 0.07327627390623093, 0.019913475960493088, -0.0017843652749434114, 0.028400368988513947, 0.04002625122666359, 0.00519012613222003, 0.02393270842730999, -0.017023613676428795, -0.08330775052309036, 0.0059831771068274975, 0.052150387316942215, -0.03786715865135193, -0.022886378690600395, 0.004803980700671673, 0.05876053124666214, 0.017422214150428772, -0.02597554214298725, -0.001525897067040205, 0.055139899253845215, -0.01621810533106327, -0.028848797082901, -0.04650352895259857, -0.023235155269503593, 0.008441220968961716, -0.031007889658212662, 0.011260497383773327, -0.0007401119801215827, -0.013618890196084976, 0.025576941668987274, 0.06072032079100609, -0.005127844400703907, -0.06786193698644638, 0.005974872969090939, 0.028765754774212837, 0.017555082216858864, 0.006464820820838213, -0.006680730264633894, 0.021673966199159622, 0.02404896728694439, -0.004430291708558798, -0.020611029118299484, -0.013618890196084976, 0.01322859339416027, 0.048264019191265106, -0.05258220434188843, -0.05640213564038277, -0.014681828208267689, -0.0060080899856984615, 0.04783220216631889, -0.0035209814086556435, -0.0029002423398196697, -0.0190830547362566, 0.0689580887556076, -0.0029666759073734283, 0.028632886707782745, -0.023899491876363754, -0.04374653473496437, -0.0080177066847682, 0.0014335127780213952, -0.10476581007242203, -0.04740038141608238, 0.008586544543504715, 0.01358567364513874, 0.0156866367906332, -0.040358420461416245, 0.0489615723490715, -0.010363643988966942, -0.01164249051362276, -0.07227977365255356, 0.04052450507879257, 0.00998995453119278, 0.012913033366203308, -0.07945460081100464, 0.017521865665912628, 0.006680730264633894, -0.017937075346708298, -0.025643374770879745, 0.017272738739848137, 0.049326956272125244, -0.02411540225148201, -0.023052463307976723, -0.02464687079191208, -0.011742141097784042, 0.017305955290794373, 0.04211891070008278, -0.01034703478217125, 0.0014106762828305364, 0.03316698223352432, 0.009740828536450863, -0.029579566791653633, 0.015944067388772964, -0.023069072514772415, -0.03989338502287865, -0.030924847349524498, -0.023135505616664886, 0.008943624794483185, 0.06397557258605957, -0.0023293285630643368, 0.028632886707782745, 0.00039367107092402875, 0.03308393806219101, 0.014515744522213936, -0.027536733075976372, 0.029164355248212814, 0.011958050541579723, -0.016832616180181503, 0.040889889001846313, 0.002686409279704094, -0.005347905680537224, -0.031389880925416946, 0.043115414679050446, 0.05401052534580231, -0.021806834265589714, -0.001526935026049614, 0.01340298168361187, 0.03487764671444893, -0.0023189482744783163, 0.06603500992059708, -0.011227280832827091, -0.04444408789277077, -0.0039216591976583, -0.04916087165474892, 0.04779898375272751, -0.039461564272642136, 0.01669974997639656, -0.037966810166835785, 0.03809967637062073, 0.06337766349315643, -0.04301576316356659, -0.009607961401343346, -0.028948446735739708, -0.07447207719087601, 0.0020978490356355906, -0.02506208047270775, -0.005057258997112513, 0.04567310959100723, 0.009707611985504627, -0.0462045781314373, -0.028350545093417168, -0.06327801942825317, 0.0459720604121685, -0.019465047866106033, 0.05487416312098503, -0.008694498799741268, -0.03351575881242752, -0.003743118839338422, -0.014515744522213936, -0.01938200742006302, 0.011891616508364677, -0.030974671244621277, 0.023351414129137993, 0.0203452929854393, -0.004891174845397472, -0.02315211482346058, 0.03809967637062073, -0.006033002398908138, -0.0469021312892437, -0.04703499749302864, 0.03511016443371773, 0.0019110044231638312, -0.03032694384455681, -0.05138640105724335, 0.03325002267956734, -0.005862766411155462, -0.035575199872255325, -0.0758671835064888, 0.04776576906442642, 0.0037597273476421833, -0.03922904655337334, -0.04846332222223282, 0.030825195834040642, -0.04444408789277077, -0.09506650269031525, -0.018584802746772766, 0.02082693763077259, 0.01926574856042862, -0.041687093675136566, -0.0050323461182415485, -0.0689580887556076, -0.027387257665395737, -0.023733407258987427, 0.09280775487422943, 0.07626578956842422, -0.008192094974219799, -0.017305955290794373, -0.024430960416793823, 0.04607171192765236, -0.001799935707822442, 0.04593884199857712, 0.02878236211836338, -0.026075193658471107, 0.05115388333797455, 0.025527115911245346, 0.058727312833070755, -0.012929641641676426, -0.009475094266235828, 0.02459704503417015, 0.04530772566795349, -0.012066004797816277, 0.031755268573760986, 0.01800350844860077, -0.054708078503608704, 0.02494582161307335, -0.02818446047604084, 0.013278418220579624, -0.041188839823007584, 0.01136845164000988, -0.007594192400574684, 0.009549831971526146, 0.043115414679050446, 0.08410495519638062, -0.03537590056657791, 0.10536371171474457, -0.006120196543633938, 0.02087676338851452, -0.05377800762653351, 0.010156038217246532, 0.028699319809675217, 0.02190648391842842, 0.03441261127591133, -0.034910865128040314, 0.01800350844860077, -0.00314936856739223, 0.0050198896788060665, -0.019000012427568436, -0.01627623476088047, 0.006593536119908094, 0.029579566791653633, -0.05128674954175949, -0.02458043582737446, -0.02776925079524517, 0.05151926726102829, 0.005721594672650099, 0.03926226496696472, -0.03308393806219101, 0.03349914774298668, 0.005651009269058704, -0.0026822572108358145, 0.012805079109966755, -0.05929199978709221, 0.012722036801278591, -0.03995981812477112, -0.016135063022375107, 0.04487590491771698, -0.07553501427173615, 0.0326521210372448, -0.044842690229415894, -0.009375443682074547, 0.010878504253923893, -0.0030580221209675074, -0.10064692050218582, 0.016483839601278305, 0.00729939341545105, 0.0030933150555938482, -0.012796774506568909, -0.012713732197880745, 0.05683395639061928, 0.00006104885687818751, -0.06015563756227493, -0.03064250387251377, 0.007652321830391884, -0.02411540225148201, -0.00918444711714983, 0.010222472250461578, -0.02991173416376114, -0.008935321122407913, -0.033715058118104935, 0.012472910806536674, -0.017737774178385735, 0.007033658679574728, 0.02149127423763275, -0.058195844292640686, -0.010637681931257248, -0.006435756105929613, 0.021690575405955315, 0.00987369567155838, -0.0024019903503358364, 0.0187342781573534, 0.028018375858664513, 0.05377800762653351, -0.02584267593920231, 0.0029126987792551517, 0.03567485138773918, 0.046403877437114716, -0.004945151973515749, 0.0017251978861168027, -0.03052624501287937, 0.024032359942793846, 0.0034981449134647846, -0.008760932832956314, -0.017073437571525574, 0.06311193108558655, 0.026639878749847412, 0.05294758826494217, -0.014125446788966656, -0.03032694384455681, -0.03021068498492241, -0.04889513924717903, -0.021441448479890823, 0.01836889423429966, -0.05719934031367302, -0.026656487956643105, 0.031805090606212616, 0.009284097701311111, 0.027320822700858116, 0.0026552684139460325, 0.058428362011909485, -0.0030206532683223486, -0.08284271508455276, -0.05620283633470535, -0.00292515498585999, 0.06012241914868355, 0.013868016190826893, -0.07028676569461823, 0.01125219278037548, 0.007888991385698318, -0.0173557810485363, -0.010878504253923893, 0.008428764529526234, -0.022653862833976746, 0.009001754224300385, 0.00610358826816082, -0.0022670470643788576, 0.01921592280268669, 0.012904729694128036, -0.009657786227762699, -0.012439694255590439, -0.08915390819311142, 0.03369845077395439, -0.029347049072384834, 0.011351843364536762, 0.007739515975117683, -0.06756298243999481, -0.05254898592829704, 0.021142497658729553, 0.010778853669762611, -0.02159092389047146, -0.039826951920986176, 0.03843184560537338, 0.05606997013092041, -0.03763464093208313, -0.014665219932794571, -0.02052798680961132, -0.05009094253182411, 0.0015892165247350931, -0.05062241107225418, 0.027138130739331245, 0.02243795245885849, -0.04779898375272751, -0.02345106564462185, 0.042750030755996704, 0.016732966527342796, 0.03657170385122299, -0.00191411841660738, 0.025643374770879745, 0.07467138022184372, 0.01573646254837513, -0.03339949995279312, 0.026041977107524872, 0.04799828678369522, 0.08237767964601517, 0.02087676338851452, 0.011086109094321728, 0.04995807632803917, -0.025759633630514145, -0.03338288888335228, -0.022836554795503616, 0.0018175821751356125, -0.03776750713586807, -0.04308219626545906, 0.009267489425837994, 0.019963299855589867, 0.04351401701569557, -0.010463293641805649, 0.0046545048244297504, 0.00585030997171998, 0.04892835393548012, 0.01026399340480566, -0.00843291636556387, -0.017139872536063194, -0.0011781585635617375, 0.06337766349315643, -0.1209091767668724, 0.03597380220890045, 0.019714174792170525, 0.06656648218631744, -0.011708924546837807, -0.016890745609998703, -0.030791979283094406, -0.010305514559149742, -0.006643361411988735, 0.03261890262365341, -0.009649482555687428, 0.0001762047759257257, -0.003736890619620681, -0.034744780510663986, 0.006473124958574772, -0.03590736910700798, -0.024447569623589516, -0.030708936974406242, -0.006265520118176937, 0.015379381366074085, -0.005148604977875948, -0.028948446735739708, 0.022089175879955292, 0.010745637118816376, 0.013834799639880657, -0.005368666257709265, 0.002277427352964878, -0.08702803403139114, 0.020860154181718826, -0.00285664526745677, 0.10682524740695953, -0.020262252539396286, -0.019415223971009254, -0.08510145545005798, 0.02997816726565361, -0.026905613020062447, -0.006718099117279053, 0.04338115081191063, -0.02675613760948181, -0.019431831315159798, -0.03441261127591133, -0.07095109671354294, 0.042384643107652664, 0.0347115620970726, -0.006859270390123129, 0.052449338138103485, -0.0029978167731314898, 0.009558135643601418, 0.03630596771836281, 0.042451079934835434, -0.09141264855861664, -0.10217489302158356, -0.007644017692655325, 0.045141641050577164, 0.038033243268728256, 0.05085492879152298, 0.034678347408771515, 0.019780607894062996, 0.007012898102402687, -0.04753325134515762, 0.0698881596326828, -0.046104926615953445, 0.01658349111676216, -0.03346593305468559, -0.031389880925416946, -0.05341262370347977, -0.025925718247890472, 0.034910865128040314, -0.028848797082901, 0.03286803141236305, 0.007727059535682201, 0.018451936542987823, 0.03873079642653465, -0.07626578956842422, -0.027021871879696846, -0.028682712465524673, 0.04055771976709366, -0.015719853341579437, -0.015321251936256886, 0.009267489425837994, -0.000717275426723063, -0.02177361585199833, -0.06497207283973694, 0.009524919092655182, -0.06268011033535004, -0.0574650764465332, -0.04779898375272751, -0.005185973830521107, -0.015935763716697693, 0.003334136912599206, -0.001188538852147758, 0.02531120553612709, -0.014847912825644016, -0.013892929069697857, -0.02100962959229946, 0.003446243703365326, 0.03873079642653465, 0.035209815949201584, 0.02376662567257881, -0.041620656847953796, -0.01014773454517126, -0.00015310871822293848, 0.04142135754227638, -0.015503944829106331, 0.009823870845139027, 0.02328498102724552, 0.01818620227277279, -0.009981649927794933, 0.000815887819044292, -0.014158663339912891, -0.048197586089372635, -0.01818620227277279, -0.01686583273112774, 0.009151230566203594, 0.05713290721178055, 0.03220369294285774, 0.02340123988687992, 0.006639209110289812, 0.02220543473958969, 0.02129197306931019, -0.03846506029367447, -0.032884638756513596, -0.02388288453221321, 0.04427800327539444, -0.049692343920469284, -0.019481657072901726, -0.03962764889001846, -0.06739690154790878, -0.01175874937325716, -0.031755268573760986, 0.09041614830493927, -0.04866262152791023, -0.03208743408322334, 0.024514002725481987, 0.01056294422596693, 0.06962242722511292, 0.03956121578812599, 0.025327814742922783, 0.07022032886743546, 0.004314032848924398, 0.007768580690026283, -0.000209162084502168, -0.025510506704449654, 0.041853174567222595, 0.03956121578812599, 0.0006908057839609683, -0.044610172510147095, -0.05105423182249069, -0.017422214150428772, -0.005891831126064062, 0.03896331414580345, 0.022753512486815453, -0.03657170385122299, 0.1108112633228302, 0.04613814502954483, -0.01710665598511696, 0.037136390805244446, -0.026191452518105507, 0.035043731331825256, 0.021507881581783295, 0.050356678664684296, 0.0783916637301445, 0.01963113248348236, 0.042816463857889175, 0.02464687079191208, 0.05374479293823242, 0.013394677080214024, 0.06935669481754303, -0.01705683022737503, 0.008694498799741268, 0.015769679099321365, 0.015952371060848236, 0.014025796204805374, -0.040424853563308716, 0.021939700469374657, -0.046337444335222244, -0.038398627191782, -0.0069713774137198925, -0.012771861627697945, -0.023185331374406815, -0.0061866301111876965, 0.029297223314642906, -0.03570806607604027, 0.025095297023653984, 0.06982173025608063, -0.030493028461933136, 0.007814253680408001, -0.05377800762653351, -0.033299848437309265, 0.019896866753697395, -0.079986073076725, -0.031854916363954544, -0.007166525814682245, 0.038332194089889526, -0.015944067388772964, 0.05308045819401741, 0.007847470231354237, 0.005397730972617865, -0.07115039974451065, 0.052083954215049744, -0.04158744215965271, 0.010421773418784142, 0.009906912222504616, 0.022421345114707947, 0.04530772566795349, 0.04809793457388878, -0.028167851269245148, 0.017139872536063194, -0.0561031848192215, -0.00656862324103713, -0.005472468677908182, -0.0008101786952465773, 0.07055249810218811, -0.000009398993825016078, 0.01705683022737503, -0.006082827690988779, -0.005667617544531822, -0.06204899400472641, 0.02009616792201996, -0.013909537345170975, 0.04201925918459892, -0.011360147967934608, -0.05636892095208168, 0.06331123411655426, -0.052449338138103485, 0.04085667058825493, 0.02423166111111641, 0.01534616481512785, 0.029662607237696648, -0.022520994767546654, -0.04726751521229744, 0.011501318775117397, 0.013510935939848423, 0.015246514230966568, -0.006215694826096296, 0.04397905245423317, 0.018933579325675964, 0.011111021973192692, -0.029463307932019234, -0.01878410391509533, 0.0094252685084939, -0.015570377930998802, -0.023949317634105682, 0.04500877112150192, -0.03597380220890045, 0.022288477048277855, 0.009416964836418629, 0.014706741087138653, -0.015337860211730003, 0.018086550757288933 ]
20,236
pandas_datareader.data
get_data_moex
null
def get_data_moex(*args, **kwargs): return MoexReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.025864940136671066, -0.0364636667072773, 0.03619406372308731, 0.008252347819507122, 0.04283301532268524, 0.003249967470765114, -0.004212530795484781, 0.02038864977657795, 0.09591089934110641, -0.011314857751131058, 0.05041556805372238, 0.033059943467378616, -0.034458503127098083, 0.030498724430799484, 0.004115642514079809, -0.012856644578278065, -0.0494045615196228, 0.0225454643368721, 0.02389347553253174, 0.037171371281147, -0.01620139367878437, 0.0076499562710523605, -0.014903934672474861, -0.0010836735600605607, -0.01794538088142872, 0.027600502595305443, -0.012174214236438274, -0.007515155244618654, 0.043405916541814804, -0.004823348019272089, -0.028223956003785133, -0.015030310489237309, -0.047382548451423645, 0.07757797092199326, -0.02084360271692276, 0.03359914571046829, -0.002228428842499852, 0.004296781495213509, -0.09584350138902664, -0.0020715121645480394, -0.04391142353415489, -0.06531108170747757, 0.11437863856554031, 0.058436229825019836, -0.056549012660980225, -0.05600981041789055, -0.0388563834130764, -0.030886275693774223, 0.00897269044071436, -0.005943880882114172, 0.040743596851825714, 0.028897961601614952, 0.0328577421605587, 0.010034248232841492, -0.009865747764706612, -0.016782723367214203, -0.056043509393930435, 0.0961805060505867, 0.052370183169841766, 0.056043509393930435, -0.017979081720113754, 0.0004230960621498525, 0.05068517103791237, -0.02561218850314617, -0.02151760831475258, 0.000049793430662248284, 0.030060620978474617, -0.005851205438375473, 0.019967395812273026, 0.014196229167282581, -0.007064414210617542, 0.011887761764228344, -0.020776202902197838, 0.006845362484455109, 0.03720507398247719, -0.01268814317882061, -0.03963148966431618, -0.014634332619607449, 0.00444422010332346, 0.07582555711269379, -0.006289308425039053, 0.004494770430028439, -0.07885857671499252, 0.027651052922010422, -0.02266341634094715, -0.0530104897916317, 0.055032502859830856, 0.009933147579431534, -0.0026412568986415863, 0.005025549326092005, -0.03575596213340759, 0.03787907585501671, -0.06274986267089844, 0.03007747046649456, -0.02566273882985115, -0.07831937074661255, -0.025022434070706367, 0.11289582401514053, 0.010935730300843716, 0.03125697746872902, -0.05058407038450241, 0.054122596979141235, 0.027617352083325386, 0.023067818954586983, -0.0164878461509943, -0.025022434070706367, 0.03267239034175873, -0.004020860884338617, 0.028746310621500015, -0.04600083827972412, -0.07757797092199326, -0.009217017330229282, -0.010455501265823841, -0.0004359969461802393, -0.002883477369323373, 0.006933826021850109, -0.02355647273361683, 0.035317860543727875, -0.060289740562438965, -0.021820910274982452, -0.010725103318691254, 0.05065147206187248, -0.03368339687585831, 0.006900125648826361, 0.016976499930024147, 0.03878898546099663, 0.02974046766757965, -0.06942250579595566, 0.06396307051181793, -0.04492243006825447, 0.02175350859761238, -0.018653087317943573, 0.04903385788202286, 0.013909776695072651, -0.02259601466357708, 0.03290829062461853, 0.10790818929672241, -0.027111848816275597, -0.012334289960563183, 0.02899906225502491, 0.016858547925949097, 0.022225312888622284, 0.016336195170879364, -0.01152548473328352, -0.05607721209526062, -0.028678910806775093, 0.06706348806619644, -0.030970526859164238, -0.012123663909733295, -0.01636989414691925, 0.04195680841803551, -0.013690724968910217, -0.0496404655277729, -0.03696916997432709, 0.009924722835421562, -0.01240169070661068, -0.0183497853577137, 0.019697794690728188, -0.018282383680343628, 0.04050769656896591, -0.02417992800474167, 0.06416527181863785, -0.015207236632704735, 0.022326413542032242, 0.023809224367141724, 0.028190257027745247, -0.033278994262218475, -0.056043509393930435, 0.029201263561844826, 0.010388101451098919, -0.0075446427799761295, 0.02808915637433529, -0.026707446202635765, -0.02763420343399048, 0.012241614982485771, -0.01129800733178854, -0.02072565257549286, 0.05257238447666168, -0.0006455703405663371, 0.009309693239629269, -0.02124800533056259, -0.01733877696096897, -0.04674224182963371, 0.04343961924314499, 0.012873494066298008, 0.013252622447907925, 0.046978145837783813, -0.011769811622798443, 0.004469495266675949, -0.03370024636387825, 0.024837082251906395, -0.03494715690612793, -0.02316891960799694, -0.016327770426869392, -0.01424677949398756, -0.059211332350969315, 0.006685286294668913, 0.010017398744821548, -0.0070517766289412975, 0.06396307051181793, -0.07757797092199326, 0.00917489267885685, 0.045798636972904205, -0.02118060551583767, -0.06450226902961731, -0.028982212767004967, 0.01856883615255356, 0.007317166309803724, -0.11195222288370132, 0.018198132514953613, 0.04044029489159584, -0.006436747033149004, -0.02118060551583767, 0.012199489399790764, 0.06611988693475723, 0.022056812420487404, -0.0007714197272434831, -0.016395170241594315, 0.017027050256729126, 0.033211592584848404, 0.01150020956993103, 0.006697923876345158, -0.03942928835749626, 0.05418999865651131, 0.05884063243865967, -0.03700287267565727, -0.006099744699895382, 0.0017945381114259362, -0.022073661908507347, -0.022815067321062088, -0.018316084519028664, 0.01841718517243862, 0.0352504588663578, -0.023489072918891907, 0.011938312090933323, 0.0075530679896473885, 0.028139706701040268, 0.010986280627548695, -0.0050887372344732285, 0.021382806822657585, 0.024550629779696465, -0.03346434608101845, 0.02000109665095806, 0.01509771030396223, 0.01983259618282318, -0.04633783921599388, 0.046135637909173965, 0.020034797489643097, -0.02294986881315708, 0.0022958293557167053, 0.08728364109992981, 0.07178152352571487, 0.019343942403793335, 0.04667484387755394, 0.006643161177635193, -0.004282037727534771, 0.02657264471054077, -0.05169617757201195, 0.032267987728118896, -0.08425061404705048, 0.02101210318505764, -0.06190735474228859, 0.03331269323825836, 0.0184677354991436, -0.0176252294331789, 0.010851479135453701, -0.02429787814617157, -0.014423705637454987, 0.03552006185054779, -0.02010219730436802, -0.054628100246191025, 0.06224435567855835, -0.001282715704292059, -0.035149358212947845, -0.0007661540294066072, -0.02815655618906021, 0.05472920089960098, -0.05385299399495125, 0.006280883681029081, 0.04141760244965553, -0.06440117210149765, 0.035317860543727875, -0.002685488434508443, -0.05651531368494034, -0.006799024995416403, -0.04212530702352524, 0.011904612183570862, -0.03110532835125923, -0.007005438674241304, -0.00996684841811657, -0.011196906678378582, 0.006407259497791529, -0.08458761870861053, -0.046877045184373856, 0.023017268627882004, -0.06527737528085709, -0.043405916541814804, -0.03801387920975685, 0.03602556511759758, 0.009191742166876793, -0.020034797489643097, -0.04158610478043556, 0.04249601066112518, -0.00888844020664692, -0.05142657831311226, 0.00356169487349689, 0.007569917943328619, -0.053617093712091446, -0.046304140239953995, -0.02605029009282589, 0.03683437034487724, 0.02753310091793537, -0.01636146940290928, 0.0020757245365530252, -0.06514257937669754, 0.022899318486452103, 0.021618708968162537, 0.10824519395828247, 0.060694143176078796, -0.01002582348883152, -0.0035048257559537888, -0.019579842686653137, 0.03683437034487724, -0.02979101799428463, 0.055875010788440704, 0.02401142567396164, -0.02129855565726757, -0.00564900366589427, 0.04994376748800278, -0.016858547925949097, -0.027212949469685555, -0.007481454871594906, -0.001322734635323286, 0.010969430208206177, 0.011163206771016121, -0.018450886011123657, 0.008429273962974548, -0.03636256605386734, 0.06713089346885681, 0.01698492467403412, 0.03575596213340759, -0.05823402851819992, 0.008787339553236961, -0.027448851615190506, 0.01274711824953556, -0.006988588720560074, 0.06490667909383774, -0.03963148966431618, 0.046708542853593826, 0.03110532835125923, -0.025797538459300995, 0.02266341634094715, 0.03696916997432709, -0.006230333354324102, 0.003928184974938631, -0.011365408077836037, -0.0206245519220829, 0.003249967470765114, -0.03966519236564636, 0.013555924408137798, -0.029757317155599594, 0.013437973335385323, -0.014684882946312428, 0.04627043753862381, -0.06298576295375824, -0.05169617757201195, -0.0032541800756007433, 0.06881590187549591, 0.03425630182027817, 0.03371709585189819, -0.03713767230510712, 0.02962251752614975, -0.040238093584775925, 0.046708542853593826, 0.008420849218964577, -0.029757317155599594, -0.02899906225502491, -0.028897961601614952, -0.03821608051657677, 0.03959779068827629, -0.004511620383709669, -0.005627941340208054, -0.05368449166417122, -0.045562732964754105, 0.02576383948326111, 0.006584185641258955, -0.017456727102398872, 0.03858678415417671, -0.015898091718554497, -0.0045958710834383965, 0.015089285559952259, -0.028190257027745247, 0.013471674174070358, -0.0014849171275272965, -0.03851938247680664, -0.008652538061141968, 0.007072839420288801, 0.019697794690728188, -0.03892378509044647, -0.00826919823884964, -0.04135020449757576, 0.038991186767816544, -0.004958149045705795, 0.0021841973066329956, -0.07144452631473541, -0.02355647273361683, -0.005244601052254438, -0.05772852152585983, 0.03410464897751808, -0.008644113317131996, -0.0038249781355261803, 0.02417992800474167, 0.034290000796318054, -0.000003751785243366612, 0.02758365124464035, 0.04017069563269615, 0.012671292759478092, -0.04583233594894409, -0.017743179574608803, 0.01717027649283409, -0.0001550737943034619, 0.014339455403387547, -0.018248682841658592, -0.03290829062461853, 0.012553341686725616, -0.035317860543727875, -0.0506177693605423, -0.014398430474102497, -0.00881261471658945, 0.0329756923019886, -0.05065147206187248, -0.055302105844020844, -0.03235223889350891, -0.05284198746085167, 0.0020546619780361652, 0.017995931208133698, -0.06682758778333664, -0.039901092648506165, 0.0017123938305303454, 0.030717775225639343, 0.015291486866772175, 0.02197256125509739, 0.03936188668012619, -0.003119379049167037, -0.06207585334777832, -0.04236121103167534, -0.01226689014583826, 0.021146904677152634, 0.013774976134300232, -0.02321946993470192, 0.010859904810786247, 0.05267348513007164, 0.03132437914609909, -0.0450909286737442, 0.05715562030673027, -0.025864940136671066, 0.0003154132573399693, -0.014600631780922413, 0.021045804023742676, 0.017877981066703796, -0.006044982001185417, -0.0426982119679451, 0.018265534192323685, -0.10858219861984253, 0.020658250898122787, 0.021163754165172577, -0.025730138644576073, 0.026522094383835793, -0.02038864977657795, -0.015594788827002048, 0.0029972156044095755, 0.015788566321134567, -0.021214306354522705, -0.041046902537345886, 0.020877303555607796, 0.0047011845745146275, -0.051392875611782074, 0.003890272229909897, 0.042327508330345154, -0.04603453725576401, 0.03979999199509621, -0.052471283823251724, 0.09152986854314804, -0.004671696573495865, -0.05506620183587074, 0.015047159977257252, 0.06541217863559723, -0.02429787814617157, 0.01873733662068844, -0.0465400405228138, 0.0008303951472043991, 0.1652660071849823, 0.03821608051657677, 0.013724425807595253, 0.013640174642205238, 0.05152767896652222, 0.04168720543384552, -0.01851828582584858, 0.03794647753238678, 0.016066592186689377, 0.007818457670509815, -0.03065037541091442, 0.006011281628161669, -0.044315826147794724, -0.0448550283908844, 0.018888987600803375, -0.024382129311561584, -0.006272458471357822, 0.04374292120337486, -0.04792175069451332, -0.028476709499955177, 0.014971334487199783, -0.02220846340060234, 0.03221743553876877, 0.009621420875191689, 0.0064620221965014935, -0.004473707638680935, 0.06328906118869781, -0.08337441086769104, 0.031914133578538895, 0.052875686436891556, 0.04546163231134415, -0.021163754165172577, -0.009798347018659115, -0.029470866546034813, 0.0027676327154040337, -0.05449330061674118, -0.0013838163577020168, -0.00929284282028675, 0.04886535927653313, 0.0013069376582279801, -0.05240388587117195, -0.009781496599316597, 0.014103553257882595, -0.03794647753238678, -0.051797278225421906, -0.0008598828571848571, 0.01636146940290928, 0.021669259294867516, 0.021163754165172577, 0.0071992152370512486, -0.049539364874362946, -0.008058571256697178, -0.028341908007860184, -0.008559863083064556, -0.045293133705854416, 0.04643893986940384, 0.06982690840959549, 0.0350145548582077, 0.022815067321062088, -0.010489202104508877, -0.08735103905200958, 0.0014385792892426252, -0.0028666271828114986, 0.02974046766757965, -0.004164086654782295, -0.022360114380717278, -0.021028954535722733, -0.04135020449757576, -0.050887372344732285, 0.0486968569457531, -0.007085477001965046, -0.009191742166876793, 0.06895070523023605, -0.0352504588663578, 0.03794647753238678, 0.01694279909133911, 0.03942928835749626, -0.0652436763048172, -0.053617093712091446, 0.01155075989663601, 0.038384582847356796, 0.03247018903493881, 0.015645340085029602, 0.04374292120337486, 0.020574001595377922, -0.0012268995633348823, -0.039564091712236404, 0.04519202932715416, -0.010666128247976303, 0.05631311237812042, 0.00962984561920166, -0.009250718168914318, -0.038654182106256485, 0.0307009257376194, -0.027448851615190506, -0.03398669883608818, 0.0020020052324980497, 0.04691074416041374, 0.014735433273017406, 0.04374292120337486, -0.020489750429987907, -0.026252493262290955, 0.013833951205015182, 0.08472242206335068, 0.010270150378346443, -0.01586439087986946, -0.004482132848352194, -0.0025148808490484953, -0.03110532835125923, -0.049303460866212845, 0.04209160804748535, -0.042394910007715225, -0.031914133578538895, -0.05456069856882095, -0.02367442287504673, -0.018080182373523712, -0.011340132914483547, 0.03184673190116882, 0.02844300866127014, -0.018838437274098396, -0.030094319954514503, -0.055538006126880646, -0.0023021481465548277, -0.005493140313774347, 0.00024524828768335283, -0.018316084519028664, -0.03284088894724846, -0.011795086786150932, -0.002723401179537177, 0.038384582847356796, -0.02525833435356617, -0.014903934672474861, 0.010126924142241478, 0.03959779068827629, 0.012932470068335533, 0.01110423170030117, 0.013050420209765434, -0.021820910274982452, -0.006525210104882717, 0.013395847752690315, 0.01971464417874813, 0.09328228235244751, 0.012814518995583057, 0.02355647273361683, 0.015384162776172161, 0.014179378747940063, 0.023994576185941696, -0.021197455003857613, -0.007654168643057346, -0.01438158005475998, 0.03983369097113609, -0.005766954738646746, -0.028746310621500015, -0.04802285134792328, 0.008728363551199436, 0.003601713804528117, 0.009848897345364094, 0.04266451299190521, -0.027398301288485527, -0.0025233060587197542, -0.01873733662068844, 0.009697246365249157, 0.04643893986940384, 0.04087840020656586, 0.005480502732098103, 0.03700287267565727, 0.00029408730915747583, 0.007140239700675011, -0.017305076122283936, -0.03240278735756874, 0.028628360480070114, 0.00639883428812027, -0.016555245965719223, 0.03993479162454605, -0.0650077760219574, -0.05422369763255119, 0.011112656444311142, 0.05435849726200104, 0.028190257027745247, -0.008938990533351898, 0.0707705169916153, 0.044147323817014694, -0.006099744699895382, 0.05408889800310135, -0.022410664707422256, 0.040979500859975815, -0.05284198746085167, -0.009857322089374065, 0.08822724968194962, 0.034458503127098083, 0.05392039567232132, 0.016850123181939125, 0.059952739626169205, -0.04889905825257301, 0.03176248446106911, -0.0071023269556462765, 0.03432369977235794, 0.027735304087400436, -0.027617352083325386, 0.0033321119844913483, 0.0026475756894797087, 0.0023168919142335653, -0.03737357258796692, -0.03289144113659859, -0.03589076176285744, -0.022242162376642227, -0.011736110784113407, -0.020472900941967964, 0.007085477001965046, -0.03942928835749626, 0.00931811798363924, 0.037575773894786835, -0.010674552991986275, 0.030903127044439316, -0.06197475269436836, -0.02787010371685028, 0.03845198079943657, -0.04212530702352524, -0.0465400405228138, 0.017406176775693893, 0.038721583783626556, 0.0347786545753479, 0.024618029594421387, 0.05068517103791237, -0.018198132514953613, -0.04903385788202286, 0.09867431968450546, -0.05991904065012932, 0.016403594985604286, -0.022798217833042145, -0.006259820889681578, 0.025982890278100967, 0.03535155951976776, -0.055706508457660675, 0.04744994640350342, -0.08627263456583023, -0.05210058018565178, 0.03447535261511803, -0.013631749898195267, 0.029369765892624855, -0.028678910806775093, 0.02906646393239498, 0.014651182107627392, -0.0035848638508468866, -0.048629455268383026, -0.026555795222520828, -0.006162932608276606, 0.019529292359948158, -0.033851899206638336, -0.0611659474670887, 0.05119067430496216, 0.002121009398251772, 0.03578966110944748, -0.011390683241188526, -0.008058571256697178, 0.02849355898797512, 0.03358229622244835, -0.02022014744579792, -0.007683656178414822, 0.00652942294254899, -0.019798895344138145, 0.04620303958654404, 0.04458542540669441, 0.0007324538310058415, 0.03744097426533699, -0.03199838474392891, -0.04027179628610611, 0.027448851615190506, -0.01237641554325819, -0.013774976134300232, 0.04242861270904541, -0.03575596213340759, 0.012620742432773113, -0.03280718997120857, -0.005455227568745613, 0.010826203972101212, 0.03578966110944748 ]
20,237
pandas_datareader.data
get_data_quandl
null
def get_data_quandl(*args, **kwargs): return QuandlReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.00035116588696837425, -0.02487168274819851, -0.017399977892637253, -0.03015882894396782, -0.01168782077729702, 0.07589008659124374, -0.024803681299090385, 0.007501455955207348, 0.04318118467926979, 0.0025351946242153645, 0.03014182858169079, -0.00847048219293356, -0.05236143618822098, 0.03821704909205437, -0.007403703406453133, -0.0037677285727113485, -0.0648057833313942, 0.021556591615080833, -0.023715650662779808, -0.0051298909820616245, -0.024922683835029602, 0.02130158431828022, -0.009265254251658916, 0.0708579421043396, 0.005758908111602068, -0.00790521688759327, -0.005482650361955166, -0.04185514897108078, -0.04093712568283081, 0.060997676104307175, 0.039713092148303986, 0.019873546436429024, -0.037775035947561264, 0.05599953606724739, -0.020978575572371483, 0.0023779403418302536, 0.010829297825694084, -0.03607499226927757, -0.02696274034678936, -0.017765488475561142, -0.029070798307657242, -0.04528924450278282, 0.09554262459278107, -0.008682988584041595, -0.053109459578990936, -0.021607592701911926, -0.014025385491549969, -0.06208570674061775, -0.03580298274755478, 0.037639033049345016, 0.07786213606595993, 0.06694784015417099, -0.02750675566494465, 0.006307173054665327, -0.011781323701143265, -0.05389147996902466, -0.07024592906236649, 0.06494178622961044, 0.021420588716864586, 0.04539124667644501, 0.004360619932413101, 0.01978854276239872, 0.03920307755470276, 0.006413426250219345, -0.02565370500087738, -0.016821961849927902, 0.03519096598029137, -0.009664765559136868, -0.006583430804312229, -0.011815324425697327, -0.045323245227336884, 0.03298090398311615, -0.019686540588736534, 0.008504483848810196, 0.032317887991666794, -0.014407895505428314, -0.044031210243701935, 0.001753173186443746, -0.054027482867240906, 0.07208198308944702, 0.02374965138733387, 0.00660043116658926, -0.005448649637401104, -0.00991127174347639, -0.04056311398744583, -0.03398393467068672, 0.03981509432196617, 0.05565952882170677, 0.06378575414419174, -0.03580298274755478, -0.005503901280462742, -0.00040482362965121865, -0.04396320879459381, 0.01958453841507435, -0.004696378950029612, -0.09989473968744278, -0.02980181761085987, 0.06286772340536118, -0.06147368997335434, 0.0403251089155674, -0.06657382845878601, 0.017629483714699745, 0.019346531480550766, -0.01121180783957243, -0.030090825632214546, -0.02810177206993103, -0.004264992196112871, -0.05695156380534172, 0.026452725753188133, -0.03896506875753403, -0.03974709287285805, 0.010208779945969582, 0.008189975284039974, 0.05049138516187668, -0.05052538588643074, 0.021046578884124756, -0.030107825994491577, -0.011781323701143265, -0.04426921531558037, -0.03583698347210884, -0.019737541675567627, 0.07419003546237946, -0.02221960946917534, 0.005414648912847042, 0.010625291615724564, 0.062221709638834, 0.008338728919625282, -0.05321146175265312, 0.03957708552479744, -0.04168514534831047, 0.13607174158096313, 0.02920680120587349, 0.004252241924405098, -0.021029576659202576, 0.036312997341156006, 0.0216755960136652, 0.088130421936512, 0.03661900386214256, -0.009528761729598045, 0.06708384305238724, 0.039883095771074295, 0.00047734123654663563, 0.03886306658387184, 0.012095832265913486, -0.07412203401327133, 0.02109757997095585, 0.010506288148462772, -0.047091294080019, -0.05096739903092384, -0.012257336638867855, 0.06545180082321167, -0.02378365397453308, -0.004675128497183323, 0.006727934814989567, 0.017314976081252098, -0.052905451506376266, -0.03173987194895744, -0.04756730794906616, -0.002120808232575655, -0.013166861608624458, -0.0019369906513020396, 0.012894853949546814, 0.0032683396711945534, 0.02602771483361721, -0.05028738081455231, 0.054741501808166504, -0.026690732687711716, -0.09037448465824127, 0.007114695385098457, -0.013149861246347427, 0.05824359878897667, 0.019516535103321075, -0.04086912050843239, 0.045901261270046234, -0.05276944860816002, -0.018887517973780632, -0.03740102797746658, 0.026282722130417824, -0.001990117132663727, -0.07146996259689331, -0.05671355873346329, -0.020655566826462746, 0.003763478249311447, -0.015767933800816536, 0.03209688141942024, -0.022134607657790184, -0.03145086392760277, -0.014645902439951897, 0.062119707465171814, -0.01736597716808319, -0.04151514172554016, -0.051205407828092575, -0.03512296453118324, -0.03349091857671738, -0.022202609106898308, -0.05851560831069946, -0.01960153877735138, 0.0063539245165884495, -0.011254308745265007, 0.016558455303311348, 0.020111551508307457, 0.03505496308207512, 0.036891013383865356, -0.031025851145386696, -0.06674383580684662, 0.008789241313934326, -0.020060550421476364, 0.020961575210094452, -0.07956218719482422, 0.013234863057732582, 0.03655100241303444, -0.029903821647167206, -0.05378947779536247, 0.045187242329120636, 0.029665814712643623, 0.03299790620803833, -0.06351374089717865, -0.032725900411605835, 0.02561970427632332, -0.010115277953445911, 0.09363856911659241, -0.025517700240015984, 0.007259199395775795, 0.018428506329655647, 0.011330811306834221, -0.04012110084295273, 0.053993482142686844, 0.007382452953606844, -0.02432766743004322, -0.024191664531826973, 0.024769680574536324, 0.012554844841361046, 0.06990592181682587, -0.024378670379519463, 0.0015884811291471124, -0.005121390800923109, -0.02431066706776619, 0.03473195433616638, 0.00513839116320014, 0.03173987194895744, -0.0021526841446757317, -0.01196832861751318, 0.035734981298446655, 0.0026478227227926254, -0.020128551870584488, -0.010115277953445911, 0.0354289710521698, 0.058175597339868546, -0.0007639584946446121, -0.016158943995833397, -0.013574873097240925, 0.04124313220381737, -0.005389147903770208, 0.024259665980935097, 0.04562925174832344, 0.015011412091553211, 0.04845133051276207, -0.023902656510472298, 0.024021659046411514, -0.07487005740404129, 0.010888799093663692, -0.06922589987516403, 0.010514788329601288, 0.01676245965063572, -0.0169579666107893, 0.008695738390088081, -0.028713788837194443, -0.050253380089998245, 0.024038659408688545, -0.025891711935400963, -0.0335589200258255, 0.04229716211557388, -0.019941547885537148, -0.011934327892959118, -0.009732767008244991, -0.03211388364434242, 0.06922589987516403, -0.006617431528866291, 0.014569399878382683, 0.016634956002235413, -0.05395948141813278, 0.014033885672688484, 0.032708898186683655, -0.03150186687707901, 0.014254891313612461, -0.00651117879897356, -0.022661622613668442, -0.010667792521417141, 0.030243830755352974, -0.00026005401741713285, 0.0009977149311453104, -0.01535142119973898, -0.07500606030225754, -0.042909178882837296, 0.04311318323016167, -0.00039924532757140696, -0.005491151008754969, -0.029342805966734886, 0.07133395969867706, 0.03313390910625458, -0.03502096235752106, -0.05637354776263237, 0.08452632278203964, 0.028016770258545876, -0.02961481362581253, -0.054945509880781174, 0.015733931213617325, -0.06001164764165878, -0.06687983870506287, -0.05715556815266609, 0.0054188990034163, 0.02810177206993103, 0.010999302379786968, -0.014169889502227306, -0.058005593717098236, 0.013328365981578827, -0.020791571587324142, 0.07881416380405426, 0.027404753491282463, -0.04239916428923607, -0.05283745005726814, 0.0020698069129139185, 0.07378202676773071, -0.03886306658387184, 0.01681346260011196, 0.009129250422120094, -0.03274289891123772, 0.0012059706496074796, 0.0603516586124897, 0.03051583841443062, -0.0002180841111112386, 0.04644527658820152, 0.019941547885537148, 0.011152306571602821, 0.00001546478051750455, 0.0037294775247573853, 0.029886821284890175, 0.00607341667637229, 0.0036040989216417074, -0.05276944860816002, 0.045187242329120636, -0.01337936706840992, 0.038013044744729996, 0.00022140452347230166, -0.0005663280608132482, 0.033456917852163315, 0.03678901121020317, -0.015733931213617325, 0.08092222362756729, 0.03767303377389908, 0.003548847511410713, -0.03417093679308891, 0.02128458395600319, 0.02713274583220482, 0.02335864119231701, -0.0018966145580634475, 0.00840673130005598, 0.03167187049984932, -0.055897533893585205, 0.032181885093450546, 0.04848533123731613, -0.027625758200883865, -0.007416453678160906, 0.0766381025314331, -0.03675501048564911, -0.010905799455940723, -0.024752680212259293, -0.005767408292740583, 0.0231886375695467, 0.08738239854574203, -0.03315091133117676, -0.0024926934856921434, -0.01009827759116888, 0.028016770258545876, 0.002256812062114477, -0.021556591615080833, -0.006659932900220156, 0.001930615515448153, -0.03828505054116249, -0.011262808926403522, -0.026061715558171272, -0.033813927322626114, -0.0035849735140800476, -0.03071984276175499, -0.0017297974554821849, 0.0010147154098376632, -0.055897533893585205, 0.04168514534831047, -0.010846298187971115, 0.018989522010087967, 0.03539497032761574, -0.01310736034065485, 0.04168514534831047, -0.014382394962012768, -0.08235026150941849, -0.018207499757409096, -0.02791476622223854, 0.0049216351471841335, -0.02714974619448185, 0.007756462786346674, -0.025908712297677994, -0.014467397704720497, -0.059705641120672226, 0.001873238943517208, -0.027948766946792603, -0.014900908805429935, 0.021794598549604416, -0.06317373365163803, 0.0078329648822546, -0.03338891640305519, 0.046071264892816544, 0.008121972903609276, 0.009673265740275383, 0.05593153461813927, 0.017867490649223328, 0.04226316139101982, 0.0173574760556221, -0.029444808140397072, 0.006897939369082451, 0.08262226730585098, 0.0023333141580224037, -0.0024204414803534746, 0.0031132104340940714, 0.01103330310434103, 0.032691895961761475, 0.04916534945368767, -0.053449466824531555, 0.049675364047288895, -0.00584391038864851, 0.0108377980068326, 0.013829879462718964, -0.03379692882299423, -0.02638472430408001, -0.047431301325559616, -0.033082909882068634, 0.060453660786151886, -0.03825104981660843, 0.04073311761021614, 0.01902352273464203, -0.03338891640305519, 0.051171403378248215, -0.02918980084359646, 0.03398393467068672, -0.009545762091875076, -0.03984909504652023, -0.04712529480457306, -0.024820681661367416, 0.03260689601302147, -0.02867978811264038, -0.03014182858169079, 0.00030786782735958695, 0.0649757832288742, -0.0009217440383508801, -0.01280985213816166, 0.03794504329562187, -0.046071264892816544, 0.02152259089052677, -0.045153241604566574, 0.005907662212848663, -0.005036388523876667, 0.05606754124164581, -0.018411505967378616, 0.030090825632214546, -0.057257574051618576, 0.08248626440763474, -0.004934385418891907, -0.033660925924777985, -0.00962226465344429, -0.04049511253833771, -0.06096367537975311, 0.00401211017742753, 0.0519874282181263, -0.03519096598029137, -0.0030537089332938194, 0.04294317960739136, 0.024446671828627586, -0.052327435463666916, -0.008891244418919086, 0.0011677196016535163, -0.04858733341097832, 0.017646484076976776, -0.06885188817977905, 0.05729157477617264, 0.05151141434907913, -0.05110340192914009, -0.041175130754709244, 0.04474522918462753, 0.0042501166462898254, 0.035734981298446655, 0.004156614188104868, 0.027472754940390587, 0.10703493654727936, 0.056441549211740494, -0.03566697984933853, 0.0262147206813097, 0.004590126220136881, 0.04222916066646576, -0.015283419750630856, 0.007254949305206537, 0.03811504691839218, 0.01583593524992466, -0.030838847160339355, -0.004258616827428341, 0.014688403345644474, 0.02509268932044506, -0.0069574411027133465, 0.05831160023808479, 0.051749419420957565, 0.021165581420063972, -0.018938520923256874, -0.03678901121020317, -0.02147158980369568, 0.0396110862493515, -0.0062689222395420074, -0.01045528706163168, 0.027761762961745262, -0.023409642279148102, 0.07255799323320389, -0.08887843787670135, 0.059501633048057556, 0.021267583593726158, 0.09370657056570053, -0.031110854819417, -0.018360504880547523, -0.0426371693611145, -0.014441896229982376, -0.02845878154039383, -0.020128551870584488, -0.02529669553041458, 0.03695901483297348, 0.010480787605047226, -0.04426921531558037, 0.004874883685261011, -0.03255589306354523, -0.016473451629281044, 0.06218770891427994, -0.04396320879459381, 0.019703540951013565, 0.06327573955059052, -0.001923177856951952, -0.007947717793285847, 0.015045412816107273, 0.03350792080163956, -0.017093969509005547, -0.006566430442035198, -0.009180252440273762, 0.021216582506895065, 0.09486260265111923, 0.073170006275177, 0.04715929552912712, 0.018989522010087967, -0.08921845257282257, 0.034986961632966995, -0.004445622209459543, 0.013600373640656471, -0.010489287786185741, -0.002877329010516405, 0.0007905217353254557, -0.012452841736376286, -0.0697019174695015, 0.02468467876315117, 0.008899744600057602, -0.027676759287714958, 0.047091294080019, 0.015538427047431469, -0.0007809589733369648, 0.03146786242723465, -0.0006093604606576264, -0.04528924450278282, -0.05426549166440964, -0.01085479836910963, 0.021233582869172096, 0.027234748005867004, 0.034595951437950134, 0.0414811372756958, -0.02939380705356598, -0.02322263829410076, -0.08935445547103882, 0.03444294631481171, -0.02019655518233776, 0.03349091857671738, 0.03410293534398079, -0.04090312495827675, -0.024429671466350555, 0.02490568347275257, 0.02320563793182373, -0.009741267189383507, 0.02942780777812004, 0.045697253197431564, 0.040053099393844604, 0.008891244418919086, -0.021199582144618034, -0.02092757448554039, -0.01037028431892395, 0.10431486368179321, -0.01140731293708086, -0.03607499226927757, -0.046071264892816544, -0.020638566464185715, -0.023273639380931854, -0.028016770258545876, 0.025143690407276154, -0.06997392326593399, -0.014093386940658092, -0.0328449010848999, -0.006115918047726154, -0.007939217612147331, 0.008449232205748558, -0.008797741495072842, 0.011636819690465927, -0.011543316766619682, -0.02000954933464527, -0.02811877243220806, 0.0061456686817109585, -0.0037974792066961527, -0.03862506151199341, -0.020434560254216194, -0.03071984276175499, 0.005784408655017614, 0.028526782989501953, 0.015682930126786232, -0.009307755157351494, 0.008976246230304241, 0.017246972769498825, -0.024242665618658066, -0.02356264740228653, 0.021828599274158478, -0.009401258081197739, -0.018598509952425957, 0.013421868905425072, 0.027591757476329803, 0.023834655061364174, 0.0554555244743824, 0.014764905907213688, 0.009843270294368267, 0.01697496697306633, 0.0024778179358690977, 0.015699930489063263, 0.0016787961358204484, -0.016889963299036026, -0.02184559963643551, 0.07031393051147461, -0.03109385445713997, -0.04311318323016167, 0.010965300723910332, -0.022916629910469055, 0.00013600372767541558, -0.054775502532720566, 0.021250583231449127, -0.03655100241303444, -0.028390780091285706, -0.011917327530682087, 0.027659758925437927, 0.057223569601774216, 0.013362366706132889, 0.04848533123731613, 0.020672567188739777, 0.01564043015241623, 0.002193060237914324, -0.017000466585159302, 0.009426758624613285, 0.003100460162386298, -0.021947601810097694, -0.005886411760002375, -0.03247089311480522, -0.02485468238592148, -0.04338519275188446, 0.06160969287157059, 0.04865533486008644, -0.02432766743004322, -0.035530976951122284, 0.06123568117618561, 0.013387867249548435, -0.03831905126571655, 0.024565674364566803, -0.026843737810850143, 0.007667210418730974, -0.07112995535135269, 0.032521892338991165, 0.022593621164560318, -0.014016885310411453, 0.04467722773551941, 0.0007549269939772785, 0.04260316863656044, -0.011934327892959118, 0.06891988962888718, -0.015589428134262562, -0.02602771483361721, 0.027982767671346664, -0.04097112640738487, 0.01330286543816328, 0.023409642279148102, -0.008504483848810196, -0.05015137791633606, 0.027846764773130417, -0.073170006275177, 0.005622904282063246, -0.03984909504652023, 0.0049386355094611645, 0.041923150420188904, 0.012240336276590824, -0.03303190693259239, 0.05378947779536247, -0.02094457484781742, 0.012461341917514801, -0.034986961632966995, -0.00916325207799673, 0.03978109359741211, -0.07799813896417618, 0.0009382132557220757, 0.021828599274158478, 0.0324028916656971, -0.019329531118273735, 0.014263391494750977, 0.034017935395240784, -0.0059204124845564365, -0.039339080452919006, 0.042127158492803574, -0.03466395288705826, -0.04035910964012146, 0.006528179161250591, 0.026350723579525948, -0.013149861246347427, 0.016881464049220085, -0.005907662212848663, 0.027098743245005608, -0.039305079728364944, -0.0018126748036593199, 0.004133238457143307, 0.007135945837944746, 0.01712797023355961, 0.02261062152683735, 0.006400675978511572, -0.028084771707654, 0.03740102797746658, -0.021233582869172096, 0.0019114899914711714, 0.011339311487972736, 0.0020517439115792513, -0.026435725390911102, -0.027846764773130417, 0.05321146175265312, 0.000317961850669235, 0.048519331961870193, 0.05293945223093033, -0.025534700602293015, 0.045357245951890945, -0.01846250705420971, -0.019856546074151993, -0.030294831842184067, 0.027812764048576355, 0.03709501773118973, -0.0020273057743906975, 0.058549609035253525, -0.013362366706132889, -0.013880881480872631, 0.026877738535404205, -0.011279809288680553, -0.01846250705420971, -0.02072356827557087, -0.021607592701911926, 0.059501633048057556, 0.011475315317511559, 0.03303190693259239, -0.02976781688630581, -0.05596553534269333, 0.004258616827428341, 0.007488705683499575 ]
20,238
pandas_datareader.data
get_data_stooq
null
def get_data_stooq(*args, **kwargs): return StooqDailyReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.023343447595834732, -0.031726639717817307, -0.004796482156962156, -0.029767153784632683, 0.019833410158753395, 0.03918972983956337, -0.04010983556509018, 0.022252950817346573, 0.06236278638243675, -0.061306364834308624, 0.004472740925848484, 0.0129326106980443, -0.04004167765378952, -0.03307272121310234, 0.01035119965672493, 0.03966682031750679, -0.04310870170593262, 0.03133474290370941, 0.030653182417154312, 0.029596764594316483, 0.003682556562125683, -0.02402500808238983, -0.030602065846323967, 0.010768655687570572, 0.012617388740181923, 0.045255616307258606, -0.012711103074252605, -0.03745174780488014, -0.03942827507853508, -0.009482210502028465, 0.0267171710729599, 0.011220189742743969, -0.03867855668067932, 0.0696895569562912, 0.001436601742170751, 0.0052309767343103886, 0.0006868852069601417, -0.01663859561085701, -0.03455511853098869, 0.05551310256123543, -0.017175324261188507, -0.0712912306189537, 0.06819012761116028, -0.001858317293226719, -0.04348355904221535, -0.022235911339521408, -0.031658485531806946, -0.022525575011968613, 0.027552083134651184, 0.012310686521232128, 0.04453997686505318, 0.04453997686505318, -0.03949642926454544, -0.001999953994527459, -0.021809935569763184, -0.017516104504466057, -0.058137111365795135, 0.06403260678052902, 0.02664901502430439, 0.05009469762444496, -0.005035028327256441, 0.05476338416337967, 0.06324881315231323, 0.02056608721613884, -0.033226072788238525, 0.010248965583741665, 0.024042045697569847, -0.014900616370141506, -0.010751617141067982, 0.007786828558892012, 0.017499065026640892, 0.030721338465809822, -0.018333977088332176, 0.012975207529962063, 0.00701155373826623, -0.0031436977442353964, -0.02797805890440941, -0.0202934630215168, -0.06440746784210205, 0.015795163810253143, 0.012762220576405525, 0.013759002089500427, -0.05251423642039299, 0.02460433356463909, -0.05091257020831108, 0.008067972026765347, 0.06399852782487869, 0.07238172739744186, -0.010095614939928055, 0.0004193194326944649, -0.01738831214606762, 0.034657351672649384, -0.05414998158812523, 0.01354601513594389, 0.010035978630185127, -0.09344194084405899, -0.060045480728149414, 0.059397995471954346, -0.03891710564494133, 0.047027673572301865, -0.048084091395139694, -0.014704667963087559, 0.012566271238029003, -0.006547240540385246, -0.016928259283304214, -0.057182926684617996, 0.02077055536210537, -0.015905918553471565, -0.0033311268780380487, -0.03622493892908096, -0.048220403492450714, 0.008413012139499187, -0.003039333736523986, 0.007411970291286707, -0.05118519440293312, 0.005976433400064707, 0.0036868161987513304, 0.06195385009050369, -0.0361567847430706, -0.04051877185702324, -0.028812969103455544, 0.0561605840921402, -0.013997548259794712, 0.03642940893769264, 0.022968588396906853, 0.06948509067296982, 0.00010802467295434326, -0.023530876263976097, 0.0699281096458435, 0.02395685203373432, 0.08860286325216293, -0.00653446139767766, 0.05776225030422211, -0.013648249208927155, 0.0027965279296040535, 0.02395685203373432, 0.09480506181716919, 0.048629339784383774, -0.02542220614850521, 0.007884803228080273, 0.044880758970975876, -0.029716037213802338, -0.0182487815618515, -0.035032209008932114, -0.014585394412279129, 0.028233643621206284, 0.009073274210095406, -0.02196328714489937, -0.006270356476306915, 0.03537299111485481, 0.05190083011984825, 0.03704281151294708, -0.07272250205278397, -0.005984953138977289, -0.01040231715887785, -0.06883761286735535, -0.020174190402030945, -0.04845895245671272, -0.011842113919556141, 0.0017922910628840327, -0.04150703549385071, 0.01226808875799179, 0.013852717354893684, -0.0625331774353981, -0.0358160026371479, 0.058648280799388885, -0.05554718151688576, -0.00910735223442316, 0.04113217443227768, 0.012285128235816956, 0.022747080773115158, 0.04055285081267357, -0.04038245975971222, 0.0016644984716549516, -0.027109067887067795, -0.04201820492744446, -0.03423137590289116, 0.015445864759385586, -0.0014355367748066783, -0.01602519117295742, -0.058307498693466187, -0.04426735267043114, -0.05762593820691109, 0.0023236952256411314, 0.0052991327829658985, -0.03762213885784149, -0.010904967784881592, -0.04453997686505318, 0.028472188860177994, 0.03354981541633606, -0.008102050051093102, -0.0272283423691988, -0.024723606184124947, -0.046755049377679825, 0.011578008532524109, -0.03677018731832504, -0.04051877185702324, 0.013171156868338585, -0.030329441651701927, 0.0690080001950264, -0.0014025237178429961, 0.05503600835800171, 0.034998130053281784, -0.06314657628536224, -0.032237812876701355, -0.026972755789756775, -0.0022470196709036827, -0.023121939972043037, -0.08069676160812378, 0.019799333065748215, 0.005780484993010759, -0.0345040000975132, -0.079810731112957, -0.006747448816895485, 0.0338224396109581, 0.03966682031750679, 0.03605455160140991, -0.05571756884455681, -0.007974257692694664, 0.002366292756050825, 0.06566835194826126, -0.035032209008932114, -0.029290061444044113, 0.01848732866346836, 0.05125334858894348, -0.02182697504758835, 0.05701253563165665, -0.01879402995109558, -0.0017166804755106568, -0.07170016318559647, -0.007705893367528915, 0.022235911339521408, 0.06972363591194153, -0.023360485211014748, 0.026563819497823715, -0.0006080797757022083, -0.003301308723166585, -0.010598265565931797, 0.0027368913870304823, -0.008067972026765347, 0.01865771785378456, -0.02562667429447174, 0.03460623323917389, -0.026052650064229965, -0.0223381444811821, -0.062260549515485764, -0.011560969986021519, 0.0743582472205162, -0.016272256150841713, 0.003105360083281994, 0.07960626482963562, 0.002900891937315464, -0.006487603764981031, 0.012625908479094505, 0.02199736423790455, -0.025950415059924126, 0.03239116072654724, -0.022252950817346573, 0.0064194477163255215, -0.08642186969518661, 0.006300174631178379, 0.007492905482649803, -0.02066832222044468, 0.020514970645308495, -0.07108675688505173, 0.009567405097186565, -0.017004935070872307, -0.08362746983766556, 0.002875333419069648, 0.009976341389119625, -0.06999626010656357, 0.05111703649163246, -0.008297999389469624, -0.015999631956219673, -0.04481260105967522, -0.047266218811273575, 0.04886788874864578, -0.03980313241481781, 0.004366246983408928, -0.01334154698997736, -0.06246501952409744, 0.04099586233496666, 0.03830369934439659, -0.029426373541355133, 0.014977292157709599, -0.05571756884455681, 0.019083693623542786, -0.03612270578742027, 0.0209750235080719, -0.005984953138977289, -0.022781159728765488, 0.015573657117784023, -0.03605455160140991, -0.04402880743145943, 0.0024450982455164194, 0.007816647179424763, -0.006794305983930826, -0.03595231473445892, 0.060590729117393494, 0.033021606504917145, -0.01571848802268505, -0.048390794545412064, 0.01643412746489048, 0.04283607751131058, -0.029085593298077583, -0.015769606456160545, 0.03765621781349182, -0.046550583094358444, -0.05568349361419678, -0.0821961984038353, -0.01950966939330101, -0.007722932379692793, 0.02182697504758835, -0.033839479088783264, -0.06692924350500107, 0.01252367440611124, -0.06876945495605469, 0.07347222417593002, 0.028812969103455544, 0.045494161546230316, -0.031147314235568047, -0.015309552662074566, 0.06137452274560928, -0.05353657528758049, 0.01889626495540142, 0.034623272716999054, -0.09412350505590439, 0.0036378290969878435, 0.022099599242210388, 0.009158468805253506, 0.044710367918014526, -0.014704667963087559, 0.03901933878660202, 0.018913304433226585, 0.028966320678591728, 0.005733627825975418, 0.023258252069354057, -0.021809935569763184, 0.013060403056442738, 0.007616438437253237, 0.014253133907914162, 0.0036804266273975372, 0.046857282519340515, 0.005797524005174637, -0.001768862479366362, 0.007595139555633068, 0.05622874200344086, -0.09207881987094879, 0.07749342918395996, 0.0038742453325539827, 0.019083693623542786, 0.026393430307507515, -0.006117005366832018, 0.05629689618945122, 0.06222647428512573, 0.05387735739350319, 0.03724728152155876, 0.06260132789611816, -0.03235708549618721, -0.025098465383052826, -0.03530483320355415, -0.002975437557324767, -0.0006410928326658905, 0.061170052736997604, -0.03687242418527603, 0.004361987113952637, 0.017550183460116386, -0.0004201181582175195, -0.012353284284472466, 0.035032209008932114, -0.04995838552713394, -0.0043044802732765675, 0.011850632727146149, 0.017303116619586945, -0.00509892450645566, -0.002102188067510724, -0.021366922184824944, -0.027858784422278404, -0.02508142590522766, 0.000956314557697624, 0.005933836102485657, -0.027892863377928734, -0.02083871141076088, -0.004890196491032839, 0.023053783923387527, -0.00016852648695930839, -0.07135938107967377, 0.03748582676053047, 0.02186105214059353, -0.0201230738312006, 0.010768655687570572, -0.027892863377928734, 0.047436609864234924, 0.014295731671154499, -0.023326408118009567, -0.057864487171173096, 0.034384727478027344, -0.006257577333599329, -0.035032209008932114, 0.0030755416955798864, -0.03605455160140991, -0.04014391452074051, -0.001423822483047843, 0.004643131047487259, -0.024144280701875687, -0.06229462847113609, -0.010461953468620777, -0.10659606009721756, 0.004148999694734812, -0.01978229358792305, -0.0008349115960299969, -0.015735527500510216, -0.0031287886667996645, 0.0693487823009491, -0.0035632834769785404, 0.02692163921892643, -0.005810303147882223, 0.0371791236102581, 0.028029175475239754, 0.047300297766923904, 0.002530293306335807, -0.016357451677322388, -0.02094094641506672, 0.012566271238029003, 0.03949642926454544, 0.015778126195073128, -0.02828476019203663, 0.03460623323917389, 0.013060403056442738, 0.05019693076610565, 0.02121357060968876, -0.010461953468620777, -0.08826208114624023, -0.02463841252028942, 0.015599215403199196, 0.035270754247903824, -0.02046385407447815, -0.04791370406746864, 0.029477491974830627, 0.03550930321216583, 0.03533891215920448, 0.01055566780269146, 0.05322987586259842, -0.021741779521107674, -0.03629309684038162, -0.03608862683176994, -0.014559836126863956, 0.03457215428352356, 0.006547240540385246, -0.03813330829143524, 0.004511078353971243, 0.00917550828307867, -0.009899666532874107, 0.01804431341588497, -0.030550949275493622, -0.04494891315698624, 0.011833594180643559, -0.029664920642971992, -0.01409126352518797, -0.022832276299595833, 0.01950966939330101, -0.026631975546479225, -0.016936779022216797, -0.06972363591194153, 0.047436609864234924, -0.003782660700380802, -0.0685649886727333, -0.059295762330293655, -0.009814471006393433, -0.05115111544728279, 0.010870889760553837, 0.047129906713962555, -0.06761080026626587, -0.05271870270371437, 0.029153749346733093, 0.011194631457328796, -0.04869749769568443, 0.0011437437497079372, 0.04212043806910515, -0.022525575011968613, 0.015147682279348373, -0.046243879944086075, 0.031079158186912537, 0.046312034130096436, -0.02637639082968235, -0.026223039254546165, 0.035168521106243134, -0.020617205649614334, 0.01865771785378456, -0.005243755877017975, 0.045937176793813705, 0.07074598222970963, 0.05009469762444496, -0.02678532712161541, 0.028199564665555954, 0.05466115102171898, 0.021026141941547394, 0.02169066295027733, 0.013026325032114983, 0.04184781387448311, -0.008251141756772995, 0.0016591738676652312, -0.046891361474990845, 0.044914837926626205, -0.018163587898015976, -0.027347614988684654, 0.012898532673716545, 0.03201630339026451, -0.000048354853788623586, -0.04995838552713394, -0.002020187908783555, -0.004249103832989931, 0.0043342988938093185, 0.0056867701932787895, 0.01561625488102436, -0.044233277440071106, 0.005546198692172766, 0.07176832109689713, -0.09037492424249649, 0.0267171710729599, 0.03861040249466896, 0.0733359083533287, -0.023973889648914337, 0.033839479088783264, -0.02583114244043827, -0.022849315777420998, -0.010717539116740227, 0.022525575011968613, -0.0039274925366044044, 0.031999263912439346, 0.031828876584768295, -0.03523667901754379, -0.005882719065994024, -0.01007857546210289, 0.03273194283246994, 0.010981643572449684, -0.03153921291232109, 0.00007873887079767883, 0.061851613223552704, -0.018640680238604546, -0.0187599528580904, 0.012762220576405525, 0.05183267593383789, -0.021366922184824944, -0.010504551231861115, -0.005814563017338514, 0.017499065026640892, 0.0764029324054718, 0.06324881315231323, -0.00015721151430625468, 0.024450981989502907, -0.0794699564576149, 0.12465741485357285, 0.01629781536757946, 0.026120806112885475, -0.0049455733969807625, -0.023019704967737198, 0.003974349703639746, -0.020753517746925354, -0.05636505410075188, 0.046925440430641174, 0.028301799669861794, 0.006487603764981031, 0.09010230004787445, -0.03908749297261238, 0.0019371226662769914, 0.06307842582464218, 0.022014403715729713, -0.047675155103206635, -0.028386995196342468, -0.025371089577674866, 0.01869179680943489, 0.023394564166665077, 0.03130066394805908, 0.05667175352573395, 0.010785695165395737, -0.03412914276123047, -0.08417271822690964, -0.02750096656382084, -0.02005491778254509, 0.027858784422278404, -0.01067494135349989, -0.025337010622024536, -0.035032209008932114, 0.009490730240941048, 0.01701345294713974, -0.012702583335340023, -0.0018412782810628414, 0.03487885743379593, 0.03492997586727142, 0.06318065524101257, -0.01663859561085701, -0.018470289185643196, 0.03608862683176994, 0.029324140399694443, -0.02042977511882782, -0.0038018296472728252, -0.07074598222970963, 0.003782660700380802, -0.02531997300684452, -0.0500265397131443, 0.07279065996408463, -0.061476755887269974, -0.01971413753926754, -0.012489596381783485, 0.016374491155147552, -0.014602433890104294, 0.0279099028557539, -0.013333027251064777, 0.004949833266437054, 0.04140479862689972, 0.011578008532524109, 0.020685361698269844, 0.057932641357183456, 0.01347785908728838, 0.011416138149797916, 0.004285311792045832, -0.03823554515838623, -0.015897398814558983, -0.03457215428352356, 0.030329441651701927, 0.0280802920460701, 0.035134442150592804, 0.027347614988684654, -0.028131408616900444, -0.0022683185525238514, 0.048527106642723083, 0.0032225032337009907, -0.028506267815828323, -0.04150703549385071, 0.008315037935972214, 0.013247831724584103, 0.08601293712854385, -0.008758052252233028, -0.033771321177482605, 0.003316217800602317, 0.009022156707942486, 0.035134442150592804, -0.044574055820703506, -0.00939701497554779, 0.014823940582573414, 0.09153357148170471, 0.020957985892891884, -0.018913304433226585, 0.0005140989669598639, -0.045017071068286896, -0.03997352346777916, -0.023939812555909157, -0.009005118161439896, -0.01096460409462452, -0.010913487523794174, -0.03765621781349182, 0.007999815978109837, 0.045426007360219955, 0.008634519763290882, 0.04239306226372719, 0.0402461476624012, -0.035270754247903824, 0.04845895245671272, -0.013503417372703552, -0.007365113124251366, 0.02480880171060562, -0.029477491974830627, 0.0094651710242033, -0.0368383452296257, -0.048527106642723083, -0.03700873628258705, 0.008809169754385948, 0.012234010733664036, 0.0202934630215168, -0.0055419388227164745, 0.0632147341966629, 0.0422908291220665, 0.00007041904609650373, 0.030448714271187782, -0.03973497822880745, 0.03130066394805908, 0.030090896412730217, 0.010768655687570572, 0.012191412970423698, 0.008191505447030067, 0.045494161546230316, 0.029460452497005463, 0.024178357794880867, -0.02743281051516533, 0.058103032410144806, -0.04907235503196716, -0.03436768800020218, 0.00010369836672907695, -0.02111133560538292, 0.02497919276356697, -0.01787392422556877, -0.02811437100172043, -0.02528589405119419, 0.019322240725159645, -0.08396825194358826, -0.029085593298077583, 0.01954374648630619, 0.0045579359866678715, 0.02436578832566738, 0.0047027673572301865, 0.02117949165403843, 0.09725867956876755, 0.004502559080719948, 0.03997352346777916, -0.05452483892440796, -0.0490042008459568, 0.01828286051750183, -0.022627808153629303, 0.00003890352672897279, 0.0208046343177557, -0.018879225477576256, -0.010632343590259552, 0.0740174725651741, 0.01554809883236885, -0.010308602824807167, -0.046857282519340515, 0.08042413741350174, -0.033532775938510895, 0.012446998618543148, -0.003145827678963542, -0.017890963703393936, -0.005064846482127905, 0.04010983556509018, -0.0032906592823565006, 0.058784592896699905, -0.01766945607960224, 0.005955134984105825, 0.011884710751473904, 0.024416904896497726, 0.01852140575647354, -0.02514958195388317, 0.047266218811273575, -0.026223039254546165, 0.06999626010656357, -0.014346848241984844, 0.011969906277954578, 0.018368056043982506, 0.047572921961545944, -0.025950415059924126, -0.04941313713788986, 0.027143146842718124, -0.007978517562150955, 0.009431092999875546, 0.04815224930644035, -0.05009469762444496, 0.045903097838163376, -0.017567221075296402, -0.047572921961545944, -0.006504642777144909, 0.028233643621206284, 0.0049796514213085175, 0.012617388740181923, 0.03932604193687439, -0.028898164629936218, 0.05203714221715927, -0.011612086556851864, -0.00987410731613636, 0.00953332707285881, 0.0024983452167361975, 0.012753700837492943, 0.013724924065172672, -0.030465753749012947, 0.058580122888088226, 0.029426373541355133, -0.0030606326181441545, 0.0011096657253801823, -0.00966963917016983 ]
20,239
pandas_datareader.data
get_data_tiingo
null
def get_data_tiingo(*args, **kwargs): return TiingoDailyReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.01523600798100233, -0.035455282777547836, 0.0076811364851891994, -0.023687362670898438, -0.0021907021291553974, 0.008821732364594936, -0.049563322216272354, 0.03660009056329727, 0.0523243248462677, -0.05666784942150116, 0.006628925912082195, 0.028603289276361465, -0.037239834666252136, -0.026498869061470032, 0.010160144418478012, 0.008131482638418674, -0.06155010312795639, 0.08740922808647156, 0.0022790879011154175, 0.01343462336808443, 0.014023860916495323, -0.021027375012636185, -0.04862054064869881, 0.0030829766765236855, 0.0034259974490851164, 0.07353688776493073, -0.02673456445336342, -0.03804793208837509, 0.003907909616827965, 0.0297817662358284, 0.0007023505168035626, -0.006607881747186184, -0.05616278573870659, 0.05858708173036575, -0.021768130362033844, -0.0029251452069729567, -0.036398064345121384, 0.004495043307542801, -0.07979964464902878, 0.06444578617811203, -0.008628126233816147, -0.07380625605583191, 0.055321019142866135, 0.03282896801829338, -0.057307593524456024, -0.06969842314720154, -0.02149876393377781, -0.06188681349158287, 0.014562592841684818, -0.021549271419644356, 0.01066520530730486, 0.04296385869383812, -0.017576124519109726, -0.021566106006503105, -0.04074158892035484, 0.004621308296918869, -0.06222352012991905, 0.07091056555509567, -0.0052063376642763615, 0.05707189813256264, -0.038350969552993774, 0.037239834666252136, 0.05161723867058754, 0.0252698864787817, -0.02995011955499649, 0.04313221201300621, 0.022879265248775482, 0.01029482763260603, -0.001089037861675024, 0.010656788013875484, 0.023047618567943573, 0.03464718535542488, -0.008813315071165562, 0.0069025009870529175, -0.02744164876639843, -0.042492467910051346, -0.024579636752605438, -0.022492051124572754, -0.04404132068157196, 0.018922952935099602, -0.004213050939142704, 0.016069358214735985, -0.0069403802044689655, 0.02723962441086769, -0.008897491730749607, -0.012104629538953304, 0.03262694180011749, 0.016725938767194748, -0.03542161360383034, 0.020320288836956024, -0.03521959111094475, -0.019966745749115944, -0.03532060235738754, 0.0038763433694839478, -0.019411178305745125, -0.08316671848297119, -0.05825037136673927, 0.10794837772846222, -0.0433342382311821, -0.003508069785311818, -0.036903128027915955, -0.06336832791566849, 0.012222477234899998, -0.016035687178373337, 0.005795575212687254, -0.05094382166862488, 0.006553167011588812, 0.004286705516278744, 0.01784548908472061, -0.01686062105000019, -0.059260495007038116, 0.01649024337530136, 0.0014215363189578056, -0.004347733687609434, -0.04892357811331749, 0.02202066034078598, 0.009756095707416534, 0.022273192182183266, -0.06064099445939064, -0.04350259155035019, -0.02454596571624279, 0.05104483664035797, 0.0043856133706867695, 0.004021548666059971, 0.009621412493288517, 0.03212188184261322, -0.01579999178647995, -0.04639827460050583, 0.07279612869024277, 0.0052863056771457195, 0.03774489462375641, 0.00013395954738371074, 0.08592771738767624, 0.017609795555472374, -0.014638352207839489, 0.017761312425136566, 0.10538940131664276, 0.053166091442108154, -0.015294931828975677, 0.0397651381790638, 0.015421196818351746, -0.021599777042865753, -0.0011942589189857244, -0.04165070131421089, -0.009772931225597858, -0.02165028266608715, 0.02488267421722412, -0.010783053003251553, 0.015530627220869064, -0.0006150170229375362, 0.04064057767391205, 0.018350550904870033, -0.053873177617788315, 0.03535427153110504, 0.018535740673542023, -0.03343503922224045, -0.019545862451195717, -0.007862117141485214, -0.039058052003383636, 0.01838422194123268, -0.03626338392496109, 0.0325595997273922, 0.006725729443132877, -0.009335211478173733, -0.017374100163578987, 0.052997738122940063, -0.02402406930923462, 0.008788062259554863, 0.08700518310070038, 0.00015677936607971787, 0.007222372572869062, 0.011405961588025093, -0.014638352207839489, 0.010480016469955444, 0.005526209250092506, -0.03811527416110039, -0.007899995893239975, 0.020286617800593376, 0.0397651381790638, 0.061314407736063004, -0.09003555029630661, -0.037273503839969635, -0.051516223698854446, 0.011456468142569065, 0.0033649690449237823, -0.01750878244638443, 0.03821628540754318, -0.04922661557793617, -0.011439632624387741, 0.0009632987203076482, 0.033822253346443176, 0.0037248251028358936, -0.0270881075412035, 0.0004771774692926556, 0.011793174780905247, -0.021178891882300377, -0.028014052659273148, 0.008779644034802914, -0.015109742991626263, 0.04804813861846924, -0.014352151192724705, 0.04562384635210037, 0.04437803104519844, -0.03626338392496109, -0.020320288836956024, 0.01425955630838871, 0.0013047410175204277, 0.006473198998719454, -0.09535552561283112, 0.011279696598649025, 0.03629705309867859, -0.048283834010362625, -0.049900028854608536, 0.013703989796340466, 0.01354405377060175, 0.06006859242916107, -0.01734042912721634, -0.05131420120596886, -0.030724545940756798, -0.009638248011469841, 0.034748200327157974, 0.007100316230207682, -0.0316336564719677, 0.006788861937820911, 0.0649171769618988, -0.03572465106844902, 0.051718249917030334, 0.01011805608868599, -0.012559184804558754, -0.045758530497550964, -0.028939997777342796, 0.014672023244202137, 0.006292218808084726, 0.023586349561810493, 0.008973251096904278, -0.021347247064113617, 0.02240787446498871, -0.039630454033613205, -0.015067653730511665, -0.0025652891490608454, 0.036196041852235794, -0.02722278982400894, 0.015547461807727814, -0.030051130801439285, -0.022862428799271584, -0.05629746988415718, -0.011380708776414394, 0.04198740795254707, -0.03136429190635681, -0.04670131206512451, 0.05825037136673927, 0.017980173230171204, 0.020421301946043968, 0.03407478332519531, -0.00827037449926138, -0.028771644458174706, 0.03629705309867859, -0.04134766384959221, 0.022475216537714005, -0.05915948376059532, 0.024478625506162643, 0.002990382257848978, -0.059866566210985184, 0.025875959545373917, -0.05282938480377197, 0.005042192526161671, -0.028754808008670807, -0.0720553770661354, -0.0171215683221817, -0.04242512583732605, -0.08276266604661942, 0.018922952935099602, -0.005391526501625776, -0.027525825425982475, -0.04252614080905914, -0.011044001206755638, 0.06101137399673462, -0.006919336039572954, -0.03956311568617821, -0.022508887574076653, -0.0739409327507019, 0.02385571599006653, 0.048788897693157196, -0.0795302763581276, -0.0157831571996212, -0.08417683839797974, 0.004911718424409628, 0.015387525781989098, -0.005972346756607294, -0.01480670552700758, 0.0013320985017344356, 0.01263494323939085, -0.05272837355732918, -0.025673935189843178, -0.009082680568099022, -0.0010974555043503642, -0.05165090784430504, -0.05070812627673149, 0.04734105244278908, -0.021566106006503105, -0.008181989192962646, -0.06727413088083267, -0.014040696434676647, 0.009183692745864391, -0.06565793603658676, 0.014899300411343575, 0.043233223259449005, -0.026280008256435394, -0.03767755255103111, -0.06205516681075096, 0.02330014854669571, -0.04282917454838753, 0.058216702193021774, -0.015193919651210308, -0.10013676434755325, -0.039798811078071594, -0.04784611612558365, 0.0884866937994957, 0.015867333859205246, 0.02040446549654007, -0.001803488819859922, 0.019714215770363808, 0.047374725341796875, -0.03734084591269493, 0.0848502516746521, 0.040842603892087936, 0.011506973765790462, 0.03304782882332802, -0.005307349842041731, 0.05525367707014084, 0.05192027613520622, 0.011599568650126457, 0.016818532720208168, 0.028990503400564194, 0.005235799588263035, 0.04569118842482567, -0.00286622135899961, -0.009107934311032295, 0.010134891606867313, 0.0069572157226502895, -0.007618003990501165, -0.025337228551506996, 0.027357472106814384, 0.008931162767112255, 0.061078716069459915, 0.01191102247685194, 0.07421030104160309, -0.042357783764600754, 0.08532164245843887, 0.07326751947402954, 0.00351648754440248, 0.03828362748026848, 0.0297817662358284, 0.05003471300005913, 0.016372395679354668, 0.03532060235738754, 0.03181884437799454, 0.03952944278717041, -0.027037600055336952, 0.004566593561321497, -0.06740881502628326, 0.004326689522713423, 0.029344046488404274, 0.04181905463337898, -0.005155831575393677, -0.009621412493288517, -0.0052694701589643955, 0.04353626072406769, -0.019529026001691818, 0.06717311590909958, -0.03299732133746147, 0.006519495975226164, 0.03227340057492256, 0.020084593445062637, 0.04643194377422333, -0.046095237135887146, 0.009756095707416534, -0.030943406745791435, -0.014200632460415363, 0.07353688776493073, 0.01235715951770544, 0.013493547216057777, -0.01840105652809143, 0.0074243973940610886, 0.03165049105882645, 0.011515391990542412, -0.044647395610809326, 0.01388917863368988, 0.019983582198619843, -0.031145431101322174, 0.022643569856882095, -0.03353605419397354, 0.04202107712626457, -0.010900900699198246, -0.009528818540275097, -0.06889032572507858, 0.00883856788277626, 0.002071802504360676, -0.002504260977730155, -0.0035648890770971775, -0.03505123406648636, -0.02292977087199688, -0.006700476165860891, 0.0153370201587677, -0.030724545940756798, -0.028552783653140068, 0.02872113697230816, -0.11400911211967468, 0.010437928140163422, -0.048990920186042786, 0.002647361485287547, 0.01038742158561945, 0.04030387103557587, 0.04245879873633385, 0.035084906965494156, 0.07515308260917664, -0.027542661875486374, 0.012180388905107975, 0.005913422908633947, 0.02944505773484707, -0.00573244271799922, 0.01109450776129961, -0.03912539407610893, 0.00799259077757597, 0.04599422588944435, 0.011372290551662445, -0.018283208832144737, 0.017980173230171204, 0.0034491459373384714, 0.039967164397239685, 0.00921736378222704, -0.04858687147498131, -0.07690396159887314, -0.028586454689502716, 0.033637065440416336, 0.017441440373659134, -0.04043855518102646, -0.06747615337371826, 0.04545549303293228, 0.01932700164616108, 0.01607777550816536, -0.0015614803414791822, 0.08983352035284042, -0.02491634525358677, -0.06535489857196808, -0.05845239758491516, -0.012609690427780151, 0.02582545392215252, 0.009453059174120426, -0.06067466735839844, 0.0252867229282856, 0.010084385052323341, 0.009141604416072369, -0.04097728431224823, -0.012230894528329372, -0.03929374739527702, -0.0073107583448290825, -0.018552575260400772, -0.02023611217737198, 0.010606281459331512, -0.013628230430185795, -0.00984869059175253, 0.006334307137876749, -0.08821732550859451, 0.06633134931325912, -0.047004345804452896, -0.06282959133386612, -0.02596013806760311, -0.029731258749961853, -0.02868746593594551, -0.02058965526521206, 0.031667325645685196, -0.045186128467321396, -0.0003874765243381262, 0.021246233955025673, 0.033115167170763016, -0.030354168266057968, -0.006696267519146204, 0.0162292942404747, -0.026061149314045906, 0.04346891865134239, -0.05670151859521866, 0.05148255452513695, 0.03902438282966614, -0.036196041852235794, -0.000910688191652298, 0.01730675809085369, 0.005707189906388521, -0.0019939388148486614, -0.04892357811331749, 0.02941138669848442, 0.08983352035284042, 0.019764721393585205, -0.0032176596578210592, -0.0014741468476131558, 0.0651191994547844, 0.018199032172560692, 0.030051130801439285, -0.007836863398551941, 0.04771143198013306, -0.017458276823163033, -0.008434519171714783, -0.009680336341261864, 0.015345437452197075, -0.020471807569265366, 0.010362168774008751, 0.0009080576710402966, 0.013678736053407192, 0.009225782006978989, -0.02905784547328949, 0.023148629814386368, 0.005294722970575094, 0.003181884530931711, 0.030034296214580536, 0.017946502193808556, -0.03432731330394745, -0.02944505773484707, 0.03899071365594864, -0.08377279341220856, 0.006931962911039591, 0.0630989596247673, 0.06525388360023499, 0.025168875232338905, -0.010134891606867313, 0.0077611044980585575, 0.00626696553081274, -0.004650770220905542, 0.046633969992399216, -0.0180306788533926, 0.03033733367919922, 0.021195728331804276, -0.06013593450188637, 0.003066141391173005, -0.030556192621588707, -0.00043088020174764097, -0.05858708173036575, -0.056061774492263794, -0.0117342509329319, 0.07185334712266922, 0.0112881138920784, -0.009974955581128597, -0.029478728771209717, 0.0433679074048996, -0.017407771199941635, -0.0036174997221678495, -0.037071481347084045, -0.014663605019450188, 0.07811610400676727, 0.046465616673231125, 0.03444516286253929, 0.013485129922628403, -0.09636564552783966, 0.08074242621660233, 0.01635555922985077, -0.021027375012636185, 0.011700580827891827, -0.06942905485630035, 0.00029488198924809694, -0.02872113697230816, -0.05394051969051361, 0.025724442675709724, 0.02023611217737198, -0.01964687369763851, 0.06963108479976654, -0.019798392429947853, 0.019377509132027626, 0.020286617800593376, 0.043401576578617096, -0.07346954196691513, -0.03190302103757858, -0.010033879429101944, 0.02399039827287197, -0.00077232246985659, 0.013005321845412254, 0.044849418103694916, 0.048250164836645126, -0.05488329753279686, -0.02799721620976925, 0.0180306788533926, -0.03676844388246536, 0.03286263719201088, 0.017912831157445908, -0.02133041061460972, -0.03646540641784668, 0.010774635709822178, -0.032004036009311676, -0.01499189529567957, 0.004461372271180153, 0.031667325645685196, 0.025875959545373917, 0.042694494128227234, -0.025539252907037735, -0.035488955676555634, 0.031145431101322174, 0.03323301672935486, 0.005774531047791243, -0.00459605548530817, -0.0522906519472599, 0.0033986398484557867, -0.05757695809006691, -0.038014259189367294, 0.059664543718099594, -0.10431193560361862, 0.00816094409674406, -0.04747573658823967, 0.016919543966650963, -0.022795088589191437, -0.004516087472438812, 0.0025610802695155144, -0.011262861080467701, 0.03730717673897743, -0.010985077358782291, 0.012449754402041435, 0.04343524947762489, 0.014747782610356808, 0.031145431101322174, 0.027525825425982475, -0.02740797959268093, -0.0007197119994089007, -0.03878868743777275, 0.011944693513214588, -0.000392737565562129, 0.020286617800593376, 0.04117931053042412, -0.016128282994031906, 0.002540036104619503, 0.05481595918536186, -0.00295460713095963, -0.014124874025583267, -0.05323343351483345, 0.028788479045033455, 0.012298236601054668, 0.026818741112947464, 0.0361286997795105, -0.017475111410021782, 0.034377820789813995, 0.006603673100471497, 0.017475111410021782, -0.03461351618170738, 0.022643569856882095, -0.008636543527245522, 0.04798079654574394, -0.0032113464549183846, 0.016978468745946884, 0.016759607940912247, -0.07447966933250427, -0.026987094432115555, -0.013661900535225868, -0.016380812972784042, -0.006805697456002235, -0.009023756720125675, 0.024596473202109337, 0.006208041682839394, 0.03558996692299843, -0.038182612508535385, 0.032913144677877426, 0.08027103543281555, 0.004234095104038715, -0.0005216333665885031, -0.019933074712753296, -0.00984027236700058, 0.029882777482271194, -0.010025461204349995, -0.026633551344275475, 0.03845198079943657, -0.004120456054806709, -0.053166091442108154, -0.011616404168307781, 0.03747553005814552, 0.04636460170149803, -0.007567497901618481, 0.08330140262842178, 0.06582628935575485, -0.012028870172798634, 0.0559944324195385, -0.015101324766874313, 0.023401161655783653, -0.0014657292049378157, 0.03892337158322334, 0.03210504725575447, -0.0009601420606486499, 0.010555775836110115, 0.03532060235738754, 0.051718249917030334, -0.032576438039541245, 0.0487552247941494, -0.022155344486236572, -0.032037705183029175, 0.0034091619309037924, 0.00008904331480152905, 0.024579636752605438, 0.008636543527245522, -0.018990295007824898, 0.010656788013875484, 0.040000833570957184, -0.05616278573870659, -0.04259347915649414, 0.02565710060298443, -0.019091306254267693, -0.0042846011929214, -0.009133187122642994, -0.03521959111094475, 0.07481637597084045, -0.02060648985207081, 0.010808305814862251, -0.04986635968089104, -0.02907468006014824, -0.005000104196369648, -0.018552575260400772, 0.003074559150263667, 0.011767921969294548, 0.05141521245241165, 0.015901004895567894, 0.05286305397748947, 0.01560638565570116, -0.014975059777498245, -0.051718249917030334, 0.07111259549856186, -0.05198761448264122, 0.011405961588025093, 0.02836759388446808, -0.0065405406057834625, -0.005782948806881905, 0.05633113905787468, -0.004814915359020233, 0.07117993384599686, -0.013493547216057777, -0.005707189906388521, -0.0325259305536747, 0.01516866683959961, 0.04585954174399376, -0.03195352852344513, 0.029478728771209717, -0.05858708173036575, 0.039091724902391434, 0.0014362672809511423, 0.006881456356495619, 0.017222581431269646, 0.056600507348775864, -0.022290026769042015, -0.05865442007780075, -0.0006165953236632049, -0.02759316749870777, 0.035657308995723724, 0.04458005353808403, -0.03542161360383034, 0.04387296736240387, -0.027845697477459908, -0.017273087054491043, 0.032913144677877426, 0.029209362342953682, 0.015884170308709145, -0.02727329544723034, -0.01183526311069727, 0.01011805608868599, 0.0487552247941494, 0.0056314305402338505, -0.03666743263602257, 0.006969842128455639, 0.005391526501625776, 0.012028870172798634, 0.008619708009064198, 0.004587637726217508, 0.02090952731668949, 0.04245879873633385, 0.002415875205770135, 0.01824953779578209, 0.023384325206279755 ]
20,240
pandas_datareader.data
get_data_yahoo
null
def get_data_yahoo(*args, **kwargs): return YahooDailyReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.01134506519883871, -0.03110501356422901, 0.018198853358626366, -0.022205941379070282, 0.015761209651827812, 0.017380740493535995, -0.06327858567237854, 0.05286015570163727, 0.08548451960086823, -0.01905035972595215, 0.03120519034564495, -0.006661782041192055, -0.024226179346442223, 0.0026693043764680624, 0.0037399479188024998, 0.015034924261271954, -0.0022247680462896824, 0.06194288656115532, -0.019117144867777824, -0.018933486193418503, -0.03603038936853409, -0.02130434662103653, -0.016170265153050423, -0.008723762817680836, -0.011336716823279858, 0.04524669051170349, 0.0038776914589107037, -0.00037201211671344936, -0.02230611816048622, -0.0050589474849402905, 0.04821861535310745, 0.00029348782845772803, -0.046816132962703705, 0.09450046718120575, 0.013423741795122623, 0.023591725155711174, -0.02225602976977825, -0.00042470949119888246, -0.09276406466960907, 0.04644881561398506, -0.008377316407859325, -0.07613465189933777, 0.13216708600521088, 0.0239089522510767, -0.031856343150138855, -0.0478179045021534, -0.06544908881187439, -0.06127503886818886, -0.004562235437333584, -0.02664712816476822, 0.013548962771892548, 0.05947184935212135, 0.025495091453194618, -0.019701510667800903, 0.0023228581994771957, -0.01313155796378851, -0.043410107493400574, 0.13176637887954712, 0.03946980834007263, 0.08060923218727112, -0.007901474833488464, 0.0023541636765003204, 0.04120621085166931, 0.010051109828054905, -0.03235722705721855, 0.034561123698949814, 0.0007153276237659156, 0.0055514853447675705, -0.017631182447075844, -0.004946248140186071, 0.024693673476576805, 0.04631524905562401, -0.03419381007552147, -0.006757785100489855, -0.028116393834352493, -0.018833309412002563, -0.041807275265455246, -0.027331672608852386, -0.04487937316298485, 0.05563172325491905, -0.008235398679971695, -0.0019482373027130961, 0.0035395934246480465, 0.034594517201185226, -0.046181678771972656, -0.013315216638147831, 0.03900231420993805, 0.05189177766442299, 0.014216810464859009, 0.04057175666093826, -0.0018772785551846027, 0.018883397802710533, -0.028199875727295876, 0.008874027989804745, -0.02956896275281906, -0.09430011361837387, -0.018449297174811363, 0.09877469390630722, 0.041373174637556076, 0.02995297499001026, -0.06237698718905449, -0.04828539863228798, 0.011987868696451187, -0.011503678746521473, -0.0534612201154232, -0.02514447085559368, 0.010944356210529804, -0.0391358844935894, -0.0195679422467947, -0.010936008766293526, -0.03377640247344971, 0.0012480405857786536, 0.04558061435818672, -0.018883397802710533, -0.02871745638549328, 0.012605627998709679, -0.0148345697671175, 0.04815182834863663, -0.0485859289765358, -0.01046016626060009, -0.05656671151518822, 0.07633500546216965, -0.007292063441127539, 0.0496210940182209, 0.042241375893354416, 0.0437440350651741, -0.02125425823032856, -0.05072304233908653, 0.08635272830724716, 0.02427626959979534, 0.0780046284198761, -0.006695174612104893, 0.08034209161996841, 0.010794091038405895, 0.03439416363835335, -0.00624020304530859, 0.08127707988023758, 0.015226930379867554, -0.0046457163989543915, 0.008598540909588337, 0.04357707127928734, -0.0018991922261193395, 0.007984955795109272, -0.026246419176459312, -0.030270203948020935, 0.014492298476397991, 0.03322542831301689, -0.04504633694887161, 0.01067721750587225, 0.014458905905485153, 0.04838557541370392, -0.0013043902581557631, -0.037633225321769714, 0.0004421883204486221, -0.00923299603164196, -0.05252623185515404, -0.0503891184926033, 0.031138405203819275, -0.008218702860176563, 0.03956998512148857, -0.03489505127072334, 0.020302575081586838, -0.019117144867777824, -0.08027531206607819, -0.021137384697794914, 0.03396006301045418, -0.040471579879522324, -0.0138745391741395, 0.04684952646493912, 0.012597279623150826, 0.017397435382008553, 0.01606173999607563, -0.016145221889019012, -0.020185701549053192, -0.012747545726597309, -0.07386396825313568, -0.014200114645063877, 0.03215687349438667, 0.017280561849474907, 0.017297258600592613, -0.01303138118237257, -0.02870076149702072, -0.0823456346988678, -0.00569757679477334, 0.027582116425037384, 0.002681826474145055, -0.002763220341876149, -0.024176090955734253, -0.0006255856133066118, 0.04624846205115318, -0.0039695207960903645, -0.00833974964916706, -0.0030595778953284025, -0.0485859289765358, 0.01529371552169323, -0.04591453820466995, -0.05189177766442299, 0.04404456540942192, -0.045747578144073486, 0.05923810228705406, 0.010385033674538136, 0.06852118670940399, 0.010385033674538136, -0.042976006865501404, -0.009015945717692375, -0.02587910369038582, -0.026363292708992958, 0.00041010029963217676, -0.08889054507017136, -0.007187712471932173, 0.007250322960317135, 0.0013534353347495198, -0.059805773198604584, -0.02818317897617817, 0.00654073478654027, 0.08094315975904465, 0.013181646354496479, -0.029418697580695152, 0.000706979539245367, 0.002489820122718811, 0.029168253764510155, -0.026947660371661186, -0.02125425823032856, 0.011178103275597095, 0.0636792927980423, -0.048118434846401215, 0.058303117752075195, 0.016988379880785942, -0.006582475267350674, -0.04464562609791756, -0.03279132768511772, 0.007029098458588123, 0.08788877725601196, -0.019835080951452255, 0.018115373328328133, -0.026329901069402695, 0.04384421184659004, 0.02476045861840248, -0.010910963639616966, 0.04995501786470413, 0.020853549242019653, 0.01961803063750267, 0.030804481357336044, -0.009591964073479176, -0.005259301513433456, -0.02731497585773468, 0.0203359667211771, 0.0949011743068695, -0.046816132962703705, -0.04017104580998421, 0.022823700681328773, 0.041907452046871185, 0.027565419673919678, 0.03193982318043709, 0.02337467484176159, -0.01749761402606964, 0.014058196917176247, -0.023291192948818207, -0.007108405232429504, -0.07473216950893402, 0.027248192578554153, 0.02404252253472805, -0.04698309674859047, -0.006177592556923628, -0.04020443931221962, 0.03043716587126255, 0.011812558397650719, -0.07079187035560608, 0.0009563789935782552, 0.017814841121435165, -0.05209213122725487, 0.01665445603430271, 0.012321792542934418, 0.003009489271789789, 0.0017165776807814837, 0.010435122065246105, 0.07019080966711044, -0.057535089552402496, 0.0010122068924829364, -0.02145461179316044, -0.026814090088009834, 0.039503198117017746, 0.03943641483783722, -0.032190266996622086, 0.025979280471801758, -0.03716573119163513, 0.03043716587126255, -0.015811298042535782, 0.0034373293165117502, 0.009391610510647297, 0.021621573716402054, -0.008807243779301643, -0.028383532539010048, -0.018766524270176888, 0.016337227076292038, -0.022573256865143776, 0.012246659956872463, -0.018933486193418503, 0.03576325252652168, 0.055331192910671234, -0.06558265537023544, -0.0317060761153698, 0.03422719985246658, 0.03486165776848793, -0.018382512032985687, -0.024927420541644096, 0.04140656441450119, -0.014684304594993591, -0.042775653302669525, -0.05680045858025551, 0.055564939975738525, 0.01938428357243538, -0.009600312449038029, -0.020452840253710747, -0.09269727766513824, -0.01798180304467678, -0.08434918522834778, 0.07119257748126984, 0.029502177610993385, -0.0036689890548586845, -0.04514651373028755, -0.029902886599302292, 0.05770205333828926, -0.07206077873706818, 0.05516423285007477, 0.085417740046978, -0.06381285935640335, 0.05813615396618843, -0.006407164968550205, 0.030453860759735107, 0.06387964636087418, 0.00048575495020486414, 0.023591725155711174, -0.012705804780125618, 0.06261073797941208, -0.009049338288605213, -0.014083241112530231, -0.013206690549850464, 0.042541906237602234, -0.020736675709486008, -0.038601603358983994, -0.0516580305993557, 0.005705925170332193, -0.007296237628906965, 0.0011144711170345545, -0.007471547462046146, 0.04641542583703995, -0.04538026079535484, 0.06705192476511002, 0.016078436747193336, 0.03890213742852211, 0.028300052508711815, -0.013532266952097416, 0.04514651373028755, 0.030754392966628075, 0.03636431321501732, 0.00860688928514719, 0.043410107493400574, -0.01644575223326683, -0.02183862403035164, -0.04304279386997223, 0.03384318947792053, 0.005071469582617283, 0.04394438862800598, -0.06387964636087418, 0.00624020304530859, -0.0001653966901358217, 0.0213544350117445, 0.016629410907626152, 0.02721479907631874, -0.04421152547001839, 0.023925649002194405, 0.019734904170036316, 0.05766865983605385, -0.017280561849474907, -0.018115373328328133, -0.010877572000026703, -0.03970355540513992, 0.005772709846496582, 0.020653193816542625, -0.017564397305250168, -0.021771838888525963, -0.03130536898970604, -0.01900027133524418, 0.06815387308597565, 0.016637759283185005, -0.049654487520456314, 0.035028617829084396, -0.009433350525796413, -0.01586138643324375, 0.01134506519883871, -0.04902002960443497, 0.05255962535738945, 0.0033914148807525635, -0.02471037022769451, -0.061341822147369385, 0.032924897968769073, 0.036898594349622726, -0.05559833347797394, -0.013749317266047001, -0.023575028404593468, 0.005977238062769175, 0.0019461503252387047, -0.03010324202477932, -0.04247512295842171, -0.043977778404951096, 0.012413621880114079, -0.06531551480293274, -0.005238431505858898, 0.0039528245106339455, -0.0059146275743842125, -0.0024188614916056395, -0.015869734808802605, 0.03128867223858833, 0.0036189004313200712, 0.04821861535310745, 0.005964715965092182, -0.010243115946650505, 0.04718345031142235, 0.0414399579167366, 0.011720729060471058, -0.01885000430047512, -0.03726590797305107, -0.015744512900710106, 0.0319732166826725, 0.04337671771645546, -0.0332421250641346, 0.04274225980043411, -0.009733881801366806, 0.024393141269683838, 0.03143893554806709, -0.04087228700518608, -0.08788877725601196, -0.015669379383325577, 0.012805982492864132, 0.02611285075545311, -0.008581845089793205, -0.037967149168252945, 0.02092033252120018, -0.0035041142255067825, -0.018248941749334335, -0.008782198652625084, 0.03439416363835335, 0.013932975009083748, -0.05953863635659218, -0.06972331553697586, 0.020369358360767365, 0.015335455536842346, 0.03572985902428627, -0.07840533554553986, -0.02861727960407734, 0.021504700183868408, 0.038501426577568054, -0.01667949929833412, -0.03148902580142021, -0.03659806028008461, -0.0015704858815297484, -0.009733881801366806, 0.00016109220450744033, 0.007964085787534714, 0.016095133498311043, -0.05670028179883957, -0.013958020135760307, -0.04554722085595131, 0.027064533904194832, 0.03404354304075241, -0.0285171028226614, -0.0531940795481205, -0.002228942234069109, -0.030887963250279427, -0.014417164959013462, 0.01716369017958641, -0.050856612622737885, -0.033876582980155945, -0.015001531690359116, -0.0044119697995483875, -0.04394438862800598, -0.0008911594632081687, 0.00037514264113269746, -0.03539593517780304, -0.007049968931823969, 0.0026213028468191624, 0.01435872819274664, 0.014842918142676353, 0.0006422817823477089, -0.034110330045223236, 0.06564944237470627, -0.02427626959979534, 0.035128794610500336, 0.007630161475390196, 0.044845983386039734, 0.07726999372243881, 0.0360637828707695, -0.047016486525535583, 0.007684424053877592, 0.02058640867471695, 0.023090839385986328, -0.005714273080229759, 0.02347485162317753, 0.01831572689116001, -0.031372152268886566, -0.04598132520914078, -0.01243031769990921, 0.007024924270808697, -0.023441458120942116, -0.009199604392051697, 0.006294465623795986, 0.008957508951425552, -0.005451308097690344, -0.019801687449216843, 0.0004844505456276238, 0.0368318073451519, -0.024510014802217484, 0.0023103361018002033, 0.05636635795235634, -0.03073769621551037, 0.012488754466176033, 0.0751996636390686, -0.0480850450694561, 0.02087024413049221, 0.057201165705919266, 0.08368133008480072, 0.00020426751871127635, 0.00909107830375433, -0.027381760999560356, -0.004507972858846188, 0.010318249464035034, 0.04357707127928734, -0.016612714156508446, 0.004224137403070927, 0.0437440350651741, -0.038501426577568054, -0.023090839385986328, -0.009558572433888912, 0.002978184027597308, -0.03659806028008461, -0.017764752730727196, 0.00022383336909115314, -0.01218822319060564, 0.00717519037425518, 0.00792651902884245, -0.004929551854729652, 0.04401117190718651, -0.019684815779328346, -0.04377742484211922, -0.018632953986525536, 0.0017322303028777242, 0.030988140031695366, 0.06775316596031189, 0.01991856098175049, 0.01101114135235548, -0.0749325305223465, 0.08508381247520447, -0.005455481819808483, 0.0357966423034668, -0.007630161475390196, -0.056199394166469574, -0.0070040542632341385, -0.05132410675287247, -0.026279812678694725, 0.03225705027580261, 0.03260767087340355, -0.02187201753258705, 0.04728362709283829, -0.02077006734907627, 0.025662053376436234, 0.047784510999917984, 0.03399345651268959, -0.0693226084113121, -0.03876856714487076, -0.05372835695743561, 0.010668869130313396, 0.0324741005897522, 0.03790036588907242, 0.07533323764801025, 0.03227374702692032, -0.010643824934959412, -0.10505246371030807, 0.01851608045399189, -0.0018209288828074932, 0.04140656441450119, -0.008999249897897243, -0.05429602786898613, -0.039503198117017746, -0.04317636415362358, -0.03542932868003845, -0.0170050747692585, -0.009575268253684044, 0.018833309412002563, 0.04274225980043411, 0.04611489176750183, -0.02631320431828499, -0.03596360608935356, 0.03790036588907242, -0.0011342978104948997, -0.023508243262767792, -0.010034414008259773, -0.030220113694667816, -0.030320292338728905, -0.025211255997419357, -0.032824721187353134, 0.06688495725393295, -0.04401117190718651, -0.021270953118801117, -0.03663145378232002, 0.0008588105556555092, 0.0225064717233181, -0.016253747045993805, -0.04324314743280411, -0.03419381007552147, -0.01654593087732792, -0.003656466957181692, 0.013582355342805386, 0.06117486208677292, 0.0228904839605093, 0.010084502398967743, 0.024259572848677635, -0.01918392814695835, -0.042675476521253586, -0.0022644216660410166, 0.005442959722131491, 0.00009065512858796865, 0.033258821815252304, 0.026046065613627434, -0.019751599058508873, -0.009274736978113651, 0.05232587829232216, 0.03940302133560181, -0.009508483111858368, -0.007108405232429504, -0.010109546594321728, 0.051524460315704346, 0.06391303986310959, -0.013106513768434525, 0.01450064592063427, 0.005789406131953001, 0.008732110261917114, 0.0534612201154232, -0.03539593517780304, 0.001653966959565878, 0.006415513344109058, 0.038935527205467224, -0.010059458203613758, 0.0209704227745533, -0.02225602976977825, -0.023725293576717377, -0.03746626526117325, 0.012029608711600304, 0.020185701549053192, -0.0473170205950737, 0.004883637186139822, -0.06000612676143646, 0.025895800441503525, 0.0866866484284401, -0.03202330321073532, 0.043410107493400574, 0.028400229290127754, -0.01596156321465969, 0.05733473598957062, -0.06097450852394104, 0.01598660834133625, 0.029485482722520828, -0.0388687439262867, 0.012305096723139286, -0.038835350424051285, -0.037967149168252945, -0.037533048540353775, 0.019968649372458458, 0.037199124693870544, -0.022873789072036743, 0.019534548744559288, 0.06815387308597565, 0.019801687449216843, -0.001804232713766396, 0.006206810940057039, -0.04745058715343475, -0.007555028423666954, -0.016103480011224747, 0.05028894171118736, 0.07466538995504379, -0.021220864728093147, 0.00969214178621769, 0.029068076983094215, 0.03967016190290451, -0.030704304575920105, 0.1007782369852066, 0.0046624126844108105, -0.03609717637300491, -0.004779286216944456, -0.05179160088300705, 0.015335455536842346, -0.019200624898076057, -0.0051716468296945095, -0.045079730451107025, 0.030370380729436874, -0.05159124359488487, -0.03496183454990387, -0.02457679994404316, -0.015602595172822475, 0.0027068706694990396, -0.040371403098106384, 0.016362272202968597, 0.06979010254144669, 0.02028587833046913, 0.026480166241526604, -0.03519558161497116, -0.06601675599813461, 0.03596360608935356, -0.0225064717233181, 0.0021037207916378975, -0.007563376799225807, -0.033258821815252304, 0.002596258418634534, 0.06852118670940399, 0.02197219431400299, -0.018282335251569748, -0.02779916673898697, 0.018933486193418503, -0.03583003580570221, 0.05092339590191841, 0.0026943485718220472, 0.0057518393732607365, -0.036330923438072205, 0.0406719334423542, -0.02552848309278488, 0.009149515070021152, -0.038200896233320236, -0.013106513768434525, 0.019701510667800903, -0.003414371982216835, -0.002216419903561473, -0.013941323384642601, 0.05155785381793976, 0.004098915960639715, -0.014567431062459946, -0.0300531517714262, -0.028249964118003845, 0.0013346521882340312, 0.05028894171118736, -0.01813206821680069, -0.06150878593325615, 0.018883397802710533, 0.004574757535010576, 0.029936280101537704, 0.038935527205467224, -0.03165598586201668, 0.011102970689535141, -0.02629650942981243, -0.0002306162059539929, -0.019801687449216843, 0.005334434565156698, -0.0007315020775422454, -0.012255007401108742, 0.06030666083097458, -0.03357604891061783, 0.03130536898970604, -0.029485482722520828, -0.013482178561389446, 0.01608678512275219, 0.013574006967246532, 0.027097925543785095, 0.02028587833046913, -0.0050756437703967094, -0.0026150415651500225, 0.024560105055570602, -0.022539865225553513, 0.0015120492316782475, 0.0058812350034713745 ]
20,241
pandas_datareader.data
get_data_yahoo_actions
null
def get_data_yahoo_actions(*args, **kwargs): return YahooActionReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.0446743443608284, -0.05634025111794472, -0.00020348427642602473, -0.05256400257349014, 0.024275870993733406, 0.013478165492415428, -0.042179327458143234, 0.05145135894417763, 0.07471573352813721, -0.006844446994364262, 0.04899005591869354, 0.01612490974366665, 0.001555172959342599, 0.028473572805523872, -0.018206903710961342, 0.007759006693959236, 0.028709588572382927, 0.041673578321933746, 0.003095594933256507, -0.0025624530389904976, -0.024882767349481583, -0.046191588044166565, -0.019370121881365776, -0.04106668010354042, -0.009929505176842213, 0.05684599652886391, -0.012475100345909595, -0.029619934037327766, -0.0014919545501470566, -0.015425292775034904, 0.04163986071944237, -0.04096553102135658, -0.01911724917590618, 0.06365672498941422, 0.0019671462941914797, 0.02763066068291664, -0.005875098053365946, 0.0020019165240228176, -0.02232031524181366, 0.011008433066308498, 0.00828161183744669, -0.08516784757375717, 0.12205368280410767, -0.008627206087112427, -0.03073257766664028, -0.03482913225889206, -0.10735329240560532, -0.0322498194873333, 0.038167063146829605, -0.07377167791128159, -0.0015246174298226833, 0.05050729960203171, 0.03031112253665924, 0.004842530470341444, 0.04538239166140556, 0.011564754880964756, -0.03567204251885414, 0.1068812683224678, 0.03408736735582352, 0.05438469350337982, 0.03198008984327316, 0.049327220767736435, 0.07923374325037003, 0.01645364612340927, 0.007535635028034449, 0.008209964260458946, -0.009929505176842213, 0.011480463668704033, -0.040426068007946014, 0.012584678828716278, 0.03715556859970093, 0.02906361222267151, -0.015931040048599243, -0.0125088170170784, -0.03085058555006981, -0.03803219646215439, -0.015425292775034904, -0.006245979107916355, -0.03745901584625244, 0.050203848630189896, 0.003287357510998845, 0.007067818660289049, -0.03759388253092766, 0.04022376984357834, -0.014110350050032139, -0.030209973454475403, 0.030918018892407417, 0.045348674058914185, -0.04056093469262123, 0.031272042542696, -0.001108429511077702, 0.003489656373858452, -0.036447521299123764, -0.03398621827363968, -0.028490431606769562, -0.06901764869689941, -0.032856717705726624, 0.0711417868733406, 0.033193882554769516, 0.030530279502272606, -0.07188355177640915, -0.02763066068291664, 0.04072951525449753, 0.02715863101184368, -0.035098861902952194, -0.036413807421922684, -0.01652950793504715, -0.030176255851984024, -0.028001543134450912, -0.03698698803782463, -0.01274483185261488, 0.025118783116340637, 0.0778176560997963, -0.0420781746506691, -0.0064314198680222034, -0.008096171543002129, -0.0191678237169981, 0.03246897831559181, -0.037357866764068604, -0.03435710072517395, -0.03530116379261017, 0.06298239529132843, 0.04059465229511261, 0.034626834094524384, 0.06544370204210281, 0.06524140387773514, -0.01602376066148281, -0.038133345544338226, 0.04362913593649864, 0.0029649436473846436, 0.02194943279027939, -0.03445824980735779, 0.03139004856348038, 0.0223371721804142, 0.016647515818476677, 0.009996938519179821, 0.08968585729598999, -0.0011337168980389833, 0.00060110172489658, -0.012407667003571987, 0.04319082200527191, -0.003704599104821682, -0.017330273985862732, -0.019909584894776344, -0.061903469264507294, -0.017262840643525124, 0.03533487766981125, -0.01741456612944603, 0.06733182817697525, 0.006279695779085159, 0.024259012192487717, 0.008960156701505184, -0.061802320182323456, -0.011480463668704033, 0.03125518560409546, -0.01824061945080757, -0.04912492260336876, 0.046461321413517, -0.015922611579298973, 0.02633257582783699, -0.021241387352347374, -0.013090426102280617, -0.04652875289320946, -0.058700405061244965, 0.016285063698887825, 0.0420781746506691, 0.0001264368329429999, 0.0007812742260284722, 0.02409042976796627, -0.01362989004701376, -0.008277397602796555, 0.0010768203064799309, -0.009659773670136929, -0.04780998080968857, -0.02810269221663475, -0.05610423535108566, -0.050136417150497437, 0.020735640078783035, 0.03789733350276947, -0.02060077339410782, -0.046259019523859024, -0.041707295924425125, -0.08476325124502182, -0.02582682855427265, 0.023011501878499985, -0.02683832310140133, 0.02987280860543251, 0.004031227435916662, -0.025068208575248718, 0.06412875652313232, -0.02591112069785595, -0.023078935220837593, -0.0065620713867247105, 0.008353259414434433, -0.03479541465640068, -0.06716324388980865, -0.07397397607564926, 0.030462846159934998, -0.038167063146829605, 0.03439081832766533, -0.018392343074083328, 0.03823449835181236, 0.018122611567378044, 0.016689661890268326, 0.02319694310426712, -0.022472038865089417, 0.027984684333205223, -0.008648279123008251, -0.07518776506185532, -0.03267127647995949, -0.004077587742358446, 0.0164873618632555, -0.034137941896915436, -0.0482482947409153, -0.013334870338439941, 0.11807513982057571, 0.028035258874297142, -0.014110350050032139, 0.02763066068291664, 0.022050581872463226, 0.0033800778910517693, 0.01357931550592184, -0.026973189786076546, 0.036750972270965576, 0.07539006322622299, -0.024377020075917244, 0.04787741228938103, 0.018038321286439896, -0.006595788057893515, -0.035469744354486465, -0.030951734632253647, 0.017203837633132935, 0.08611191064119339, 0.007143680937588215, 0.0115731842815876, -0.018678933382034302, 0.03695327043533325, 0.00940690003335476, -0.04197702556848526, 0.06679236143827438, 0.010435252450406551, 0.013107284903526306, 0.028237558901309967, -0.015298856422305107, -0.010553260333836079, -0.025203075259923935, 0.0810544341802597, 0.040392350405454636, -0.05350806564092636, -0.065949447453022, 0.06605059653520584, 0.03567204251885414, 0.02415786311030388, -0.020803073421120644, -0.022067440673708916, 0.0038752888794988394, 0.02361840009689331, -0.0024001924321055412, -0.01292184367775917, -0.09413643181324005, 0.027445221319794655, 0.062240634113550186, -0.026096561923623085, -0.011918778531253338, -0.020364757627248764, 0.027445221319794655, 0.02950192615389824, -0.031423766165971756, -0.01113487035036087, -0.0015909967478364706, -0.0703325942158699, 0.015897324308753014, -0.015459009446203709, 0.010991575196385384, -0.021561693400144577, 0.024849051609635353, 0.08941612392663956, -0.07120922207832336, -0.01911724917590618, -0.03965058922767639, -0.011000003665685654, 0.01827433705329895, 0.016234489157795906, -0.012727973982691765, 0.03162606433033943, -0.05033871531486511, 0.03708813712000847, -0.015770886093378067, 0.008732570335268974, -0.004263028502464294, 0.042651355266571045, 0.02500077523291111, -0.012534104287624359, -0.0264000091701746, 0.05010269954800606, 0.014936404302716255, -0.0028342921286821365, -0.04322453588247299, 0.05057473108172417, 0.05937473475933075, -0.044033732265233994, -0.046663619577884674, 0.047506529837846756, -0.01006437186151743, -0.01646207459270954, -0.023517249152064323, 0.0571831613779068, 0.002733142813667655, -0.03627894073724747, -0.04460691288113594, 0.08631420880556107, 0.0011400387156754732, -0.0019450198160484433, -0.042145609855651855, -0.08590961247682571, -0.008386976085603237, -0.05192339047789574, 0.050642162561416626, 0.034997712820768356, 0.014422227628529072, -0.019572420045733452, -0.042213041335344315, 0.04784369468688965, -0.07377167791128159, 0.04251649230718613, 0.036818403750658035, -0.05748661234974861, 0.020347900688648224, -0.012121077626943588, -0.01694253459572792, 0.00869885366410017, -0.0001224856823682785, 0.024174721911549568, -0.031120317056775093, 0.002636207966133952, 0.0042567066848278046, -0.057823777198791504, 0.024208437651395798, 0.026214569807052612, -0.0011779697379097342, -0.04649503529071808, -0.021241387352347374, 0.03890882804989815, 0.027883535251021385, -0.008370118215680122, 0.009491191245615482, 0.040864381939172745, -0.010005367919802666, 0.06655634939670563, -0.04140384495258331, 0.067567840218544, -0.0006980366306379437, 0.02361840009689331, 0.03702070191502571, 0.041741009801626205, 0.029131045565009117, 0.0032220317516475916, -0.010586977005004883, -0.023365525528788567, -0.010612264275550842, 0.04555097594857216, 0.020432190969586372, -0.01381533034145832, 0.045281242579221725, -0.043123386800289154, -0.011261306703090668, 0.035031430423259735, 0.023500392213463783, 0.03071572072803974, -0.02763066068291664, -0.020449049770832062, 0.024259012192487717, 0.002648851601406932, 0.07006286084651947, -0.027327213436365128, 0.027799243107438087, 0.007194255478680134, -0.06837703287601471, 0.008884294889867306, 0.012171652168035507, 0.012879698537290096, -0.035098861902952194, -0.05495787411928177, -0.006477780174463987, 0.06031879782676697, 0.0013950197026133537, -0.06207205355167389, 0.02857472375035286, -0.005221840925514698, 0.01866207644343376, 0.049259789288043976, -0.05886898562312126, 0.0014181997394189239, 0.011893491260707378, -0.0022821847815066576, -0.036750972270965576, 0.03702070191502571, 0.031036026775836945, -0.045213811099529266, -0.026652883738279343, -0.008138316683471203, 0.034559398889541626, 0.03941457346081734, -0.03164292499423027, -0.04511265829205513, -0.0201456006616354, -0.008576631546020508, -0.031963229179382324, -0.00869885366410017, -0.003778353799134493, -0.0045053656212985516, 0.0007628355524502695, 0.008441765792667866, 0.009786210022866726, 0.004728737287223339, 0.0068781631998717785, -0.0025329510681331158, 0.016251346096396446, 0.012382379733026028, 0.028709588572382927, 0.01778544671833515, -0.010586977005004883, 0.006831803359091282, -0.03580690920352936, 0.053373198956251144, 0.024326445534825325, -0.03479541465640068, 0.0367172546684742, -0.0085091982036829, 0.031929515302181244, -0.007687359116971493, -0.025573955848813057, -0.08698853850364685, -0.030176255851984024, -0.0007907570106908679, 0.049057487398386, -0.01743142306804657, -0.04025748744606972, 0.05000155046582222, 0.029232194647192955, -0.0480797104537487, 0.015029123984277248, 0.02188199944794178, 0.0042166681960225105, -0.06038622930645943, -0.07289504259824753, 0.015121844597160816, 0.03742530196905136, 0.050642162561416626, -0.06358929723501205, -0.032401543110609055, 0.08145903050899506, 0.05610423535108566, -0.033311888575553894, 0.002138889627531171, -0.022101158276200294, 0.03880767524242401, 0.017313417047262192, -0.02909732796251774, 0.013124142773449421, 0.044472046196460724, -0.07741305232048035, -0.0607571117579937, -0.06520769000053406, 0.04106668010354042, 0.020213034003973007, -0.041741009801626205, -0.022539472207427025, 0.030951734632253647, 0.012601537629961967, -0.027478937059640884, 0.02589426189661026, -0.024377020075917244, -0.017751730978488922, -0.003498085541650653, 0.004303066525608301, -0.013537169434130192, -0.01692567579448223, -0.021696560084819794, -0.02147740311920643, 0.004779312293976545, -0.04342683404684067, -0.007948662154376507, 0.016344066709280014, -0.051518794149160385, -0.029721083119511604, 0.06551113724708557, -0.04376399889588356, 0.04696706682443619, -0.018156329169869423, 0.07397397607564926, 0.047472815960645676, 0.04848431050777435, -0.0365486741065979, 0.016175484284758568, 0.02279234491288662, 0.027141772210597992, 0.014110350050032139, -0.01743142306804657, 0.03840307891368866, 0.002208429854363203, -0.01704368367791176, -0.01362989004701376, 0.007893872447311878, -0.038639094680547714, -0.028271274641156197, 0.009828356094658375, -0.043022237718105316, -0.01612490974366665, -0.03715556859970093, 0.002482376294210553, 0.014203070662915707, -0.015400005504488945, 0.002452874556183815, 0.03265441954135895, -0.04855174198746681, 0.02774866856634617, 0.0841563493013382, -0.026248285546898842, 0.05391266196966171, 0.052867453545331955, 0.012761690653860569, -0.022944070398807526, -0.014219928532838821, -0.05209197476506233, -0.02368583157658577, 0.006726439110934734, 0.05431726202368736, -0.04244905710220337, -0.011564754880964756, 0.032873574644327164, -0.03396936133503914, -0.04561840742826462, -0.009659773670136929, -0.03799848258495331, 0.02405671402812004, -0.00826896820217371, 0.007282761391252279, 0.020398475229740143, 0.04187587648630142, 0.0068023013882339, 0.004204024560749531, -0.010157091543078423, -0.033665914088487625, -0.02862529829144478, -0.009314179420471191, 0.0010362551547586918, -0.002777395537123084, 0.05175480991601944, 0.04359541833400726, -0.008740999735891819, -0.042213041335344315, 0.025675104930996895, 0.00022047421953175217, 0.01871265098452568, -0.0136046027764678, 0.0031398478895425797, -0.030901160091161728, -0.039144840091466904, 0.0027605374343693256, 0.011859774589538574, -0.004222990013659, -0.0687142014503479, 0.010578547604382038, -0.001738506369292736, 0.030968593433499336, 0.0597793310880661, 0.03181150555610657, -0.08671880513429642, -0.027832960709929466, -0.051518794149160385, 0.018426060676574707, 0.0331433080136776, 0.023331809788942337, 0.05856553837656975, -0.014481231570243835, 0.024663610383868217, -0.11396172642707825, 0.025354798883199692, -0.0015067055355757475, 0.09231574088335037, -0.012121077626943588, -0.050304997712373734, -0.05394637957215309, -0.013031422160565853, -0.009769352152943611, 0.0021599624305963516, -0.008842148818075657, 0.049259789288043976, 0.022168589755892754, 0.049866683781147, -0.0041429135017097, -0.03469426557421684, 0.015324143692851067, 0.02012874372303486, -0.02012874372303486, 0.005655940622091293, -0.00800345093011856, -0.05859925597906113, -0.01136245671659708, -0.011775483377277851, 0.04733794927597046, -0.016167055815458298, -0.04248277470469475, -0.015745598822832108, -0.011379314586520195, 0.006486209109425545, 0.004069158341735601, -0.03836936131119728, 0.005575864110141993, -0.004888890776783228, -0.04359541833400726, 0.03213181346654892, 0.045348674058914185, -0.0005244494532234967, 0.005795021075755358, 0.043561700731515884, -0.008808432146906853, -0.016183914616703987, 0.0014013415202498436, -0.01567816734313965, -0.01734713278710842, -0.010325673967599869, 0.0427187904715538, -0.010789276100695133, -0.001639464171603322, 0.003302108496427536, 0.03698698803782463, -0.005967818200588226, -0.006709580775350332, -0.027934109792113304, 0.0019197325455024838, 0.0734345093369484, -0.02046590857207775, 0.030631428584456444, 0.034626834094524384, 0.0268046073615551, 0.040358636528253555, -0.035098861902952194, -0.01615019701421261, 0.02500077523291111, 0.06116170808672905, 0.005162836983799934, 0.01700153946876526, -0.026062844321131706, 0.010991575196385384, -0.06463450938463211, 0.03309273347258568, 0.0014624526957049966, -0.039920322597026825, -0.004210346378386021, -0.027445221319794655, -0.004387357737869024, 0.0865839421749115, -0.018594643101096153, 0.049866683781147, 0.0004580700770020485, -0.033311888575553894, 0.07019772380590439, -0.0680735856294632, 0.013554028235375881, 0.027310354635119438, 0.002929119858890772, 0.030580854043364525, -0.03823449835181236, -0.04366284981369972, -0.03250269219279289, 0.0014803644735366106, 0.04285365715622902, 0.023382384330034256, 0.03702070191502571, 0.050136417150497437, 0.008121458813548088, 0.024697326123714447, -0.0015298855723813176, -0.009828356094658375, 0.04561840742826462, -0.01052797306329012, 0.042213041335344315, 0.043055955320596695, -0.06824216991662979, -0.021173954010009766, 0.02194943279027939, 0.02503449097275734, 0.0031461697071790695, 0.06884906440973282, 0.010763988830149174, -0.028709588572382927, -0.008134102448821068, -0.06621918082237244, 0.01293870247900486, 0.009238317608833313, 0.002030364703387022, -0.023078935220837593, 0.02415786311030388, -0.0023622612934559584, -0.022016866132616997, -0.06035251170396805, -0.0011790234129875898, 0.008732570335268974, -0.0191678237169981, 0.005365136079490185, 0.058767836540937424, -0.013022993691265583, 0.016200771555304527, -0.037762466818094254, -0.06584829837083817, 0.02500077523291111, -0.012070502154529095, 0.005950959865003824, -0.028473572805523872, -0.038639094680547714, -0.02326437644660473, 0.08038010448217392, 0.03172721341252327, -0.043055955320596695, -0.048956338316202164, 0.040324918925762177, -0.03793104737997055, 0.05971189960837364, -0.0004430557310115546, 0.0027436790987849236, -0.01561073400080204, 0.04076323285698891, -0.015442151576280594, -0.009044447913765907, -0.06517396867275238, -0.006688508205115795, 0.06291496753692627, -0.030597712844610214, -0.011278164573013783, -0.055632203817367554, 0.023938706144690514, 0.02774866856634617, -0.004275672137737274, -0.037728749215602875, -0.004880461376160383, -0.04639388620853424, 0.07896400988101959, -0.000045372384192887694, -0.034997712820768356, 0.01913410611450672, 0.0036224150098860264, 0.027765527367591858, 0.009111880324780941, -0.02103908732533455, 0.009626056998968124, -0.03745901584625244, 0.014354794286191463, 0.004695021081715822, -0.015711883082985878, 0.007286975625902414, 0.01746514067053795, 0.04416859894990921, -0.005660155322402716, 0.045753274112939835, -0.012930273078382015, -0.016175484284758568, -0.008580845780670643, 0.0007227971800602973, 0.0013107284903526306, 0.021275103092193604, -0.02987280860543251, -0.0054283542558550835, 0.06402760744094849, -0.03398621827363968, 0.024022996425628662, -0.012753261253237724 ]
20,242
pandas_datareader.data
get_iex_book
Returns an array of dictionaries with depth of book data from IEX for up to 10 securities at a time. Returns a dictionary of the bid and ask books. Parameters ---------- symbols : str, List[str] A string or list of strings of valid tickers service : str One of: - 'book': Live depth of book data - 'op-halt-status': Checks to see if the exchange has instituted a halt - 'security-event': Denotes individual security related event - 'ssr-status': Short Sale Price Test restrictions, per reg 201 of SHO - 'system-event': Relays current feed status (i.e. market open) - 'trades': Retrieves recent executions, trade size/price and flags - 'trade-breaks': Lists execution breaks for the current trading session - 'trading-status': Returns status and cause codes for securities Returns ------- DataFrame
def get_iex_book(*args, **kwargs): """ Returns an array of dictionaries with depth of book data from IEX for up to 10 securities at a time. Returns a dictionary of the bid and ask books. Parameters ---------- symbols : str, List[str] A string or list of strings of valid tickers service : str One of: - 'book': Live depth of book data - 'op-halt-status': Checks to see if the exchange has instituted a halt - 'security-event': Denotes individual security related event - 'ssr-status': Short Sale Price Test restrictions, per reg 201 of SHO - 'system-event': Relays current feed status (i.e. market open) - 'trades': Retrieves recent executions, trade size/price and flags - 'trade-breaks': Lists execution breaks for the current trading session - 'trading-status': Returns status and cause codes for securities Returns ------- DataFrame """ return IEXDeep(*args, **kwargs).read()
(*args, **kwargs)
[ 0.012940844520926476, -0.046707771718502045, -0.03931300342082977, -0.048858292400836945, 0.012044794857501984, 0.009875411167740822, -0.05749809741973877, -0.03695497661828995, 0.028315171599388123, -0.037709545344114304, 0.04602866247296333, 0.02010924369096756, -0.06179913505911827, -0.008908621035516262, -0.06108229607343674, -0.012082523666322231, 0.036936115473508835, 0.006522298790514469, -0.0348987802863121, 0.0031432481482625008, 0.0021351922769099474, 0.033974435180425644, -0.01326153613626957, 0.003992137499153614, -0.011573189869523048, 0.035162877291440964, -0.0030182728078216314, 0.0066213360987603664, 0.0018781675025820732, 0.006531731225550175, 0.006960891652852297, -0.03325759246945381, -0.024712109938263893, 0.02599487453699112, -0.038124557584524155, -0.013836894184350967, 0.004657100886106491, 0.009474547579884529, -0.053423430770635605, 0.028352901339530945, 0.0063336570747196674, -0.05968634411692619, 0.09832023829221725, -0.010696004144847393, -0.0712689682841301, -0.0325784832239151, -0.012629585340619087, -0.04036939889192581, 0.05338570103049278, -0.02856040745973587, 0.004666532855480909, -0.027937887236475945, 0.04006757214665413, -0.03146549314260483, 0.02733423374593258, -0.010894078761339188, -0.0286924559623003, 0.058252666145563126, 0.09168003499507904, 0.038407523185014725, -0.003999211359769106, 0.033842384815216064, 0.06591153144836426, 0.00028576323529705405, -0.007682447787374258, 0.04478362202644348, -0.027956752106547356, -0.015449783764779568, -0.04044485464692116, -0.018826477229595184, 0.041237153112888336, -0.02410845458507538, -0.0436517708003521, 0.04153897985816002, -0.05957316234707832, -0.018562378361821175, -0.02814539521932602, -0.03618154674768448, -0.03591744601726532, 0.009828250855207443, -0.02933383919298649, 0.005357434507459402, -0.01059225108474493, 0.053800713270902634, 0.005777162965387106, 0.04002984240651131, 0.12993665039539337, 0.06538333743810654, 0.04440633952617645, 0.0286924559623003, -0.05172565206885338, 0.011016695760190487, -0.007743756286799908, 0.010196102783083916, 0.02227862738072872, -0.052895233035087585, -0.009998029097914696, 0.011610918678343296, 0.028183123096823692, -0.00395676726475358, -0.06096911057829857, -0.047801896929740906, -0.03776613995432854, 0.051121994853019714, -0.10035756975412369, 0.008394571021199226, -0.0005491252522915602, -0.02654193714261055, 0.005475335754454136, -0.05957316234707832, -0.07202353328466415, 0.03904890641570091, 0.05900723487138748, -0.027145590633153915, -0.020599711686372757, 0.031163666397333145, 0.037879325449466705, 0.014402820728719234, 0.0013393586268648505, -0.061610493808984756, 0.0008730589761398733, -0.031276851892471313, -0.00011126933532068506, 0.034370582550764084, 0.028484949842095375, 0.016213783994317055, -0.011177041567862034, 0.0023014331236481667, 0.03176732361316681, -0.008243657648563385, 0.052216120064258575, -0.04010530188679695, 0.007474941201508045, 0.031295716762542725, 0.053423430770635605, -0.03040909953415394, -0.009186867624521255, -0.02548554167151451, 0.015525241382420063, -0.0014077413361519575, -0.012299462221562862, -0.040671225637197495, -0.0509333536028862, 0.02950361743569374, -0.03135230764746666, -0.021127909421920776, 0.008342694491147995, -0.004720767494291067, -0.003603063290938735, 0.017468255013227463, -0.015864796936511993, 0.05278204753994942, -0.08315341919660568, -0.019543316215276718, 0.0028272727504372597, 0.024466874077916145, -0.011393980123102665, 0.008620942011475563, 0.008875608444213867, 0.01265788171440363, -0.03740771859884262, 0.016044005751609802, -0.023655712604522705, -0.047122783958911896, -0.05829039588570595, 0.0388602614402771, -0.0431613028049469, -0.023278430104255676, 0.06195005029439926, 0.06112002581357956, -0.015638425946235657, 0.03227665647864342, -0.03669087961316109, -0.054479826241731644, -0.012752203270792961, -0.0035771250259131193, 0.029805444180965424, 0.0167042538523674, -0.005715854000300169, 0.02574964053928852, 0.011969338171184063, -0.035728804767131805, -0.0711180567741394, -0.012157980352640152, -0.009521707892417908, -0.03391784057021141, 0.04455725476145744, 0.015298870392143726, 0.005678125657141209, 0.022316355258226395, -0.04131260886788368, 0.015836499631404877, 0.034766729921102524, 0.012676745653152466, -0.008427583612501621, -0.04546273499727249, 0.004381211474537849, 0.047235969454050064, -0.054215725511312485, 0.06666610389947891, 0.0026881492231041193, 0.011903313919901848, 0.010092349722981453, -0.015977982431650162, -0.008055015467107296, 0.021524058654904366, -0.04719824343919754, -0.08337979018688202, -0.02693808451294899, -0.030390234664082527, -0.006427978165447712, -0.024598924443125725, 0.0063619534485042095, -0.004784434102475643, 0.02267477475106716, 0.12691837549209595, 0.021392008289694786, 0.002534877508878708, 0.01870385929942131, -0.03525720164179802, -0.011167609132826328, -0.024900751188397408, -0.011535461992025375, -0.032389841973781586, 0.016477882862091064, -0.0028720751870423555, 0.053951628506183624, 0.04931103438138962, 0.014016104862093925, 0.00984711479395628, -0.006088422145694494, 0.004265668336302042, 0.006366669200360775, -0.0317484587430954, 0.00444016233086586, -0.07130669802427292, 0.005173508543521166, -0.0075881266966462135, 0.06662837415933609, 0.019543316215276718, 0.05115972459316254, 0.06421375274658203, 0.031163666397333145, -0.011516597121953964, -0.03161640837788582, -0.036653149873018265, 0.06723202764987946, 0.005838471464812756, -0.07560773193836212, -0.04610411822795868, 0.02359912171959877, -0.06949573010206223, 0.04301038756966591, -0.010960103012621403, 0.0557248629629612, -0.07711686939001083, -0.036785200238227844, 0.00716839823871851, -0.009894276037812233, -0.05493256449699402, 0.0021941429004073143, 0.03523833677172661, -0.004487322643399239, -0.027560604736208916, 0.0011277258163318038, 0.02305205911397934, 0.006946743465960026, -0.02507052943110466, 0.03001295030117035, 0.03404989093542099, -0.10156488418579102, 0.0064468421041965485, 0.0022695998195558786, 0.022599317133426666, -0.008007855154573917, 0.013270968571305275, 0.06557197868824005, -0.042670831084251404, -0.05561167746782303, 0.000028904236387461424, -0.02856040745973587, -0.008017287589609623, 0.020675169304013252, 0.03537038341164589, 0.040558040142059326, -0.05957316234707832, 0.0014619758585467935, 0.011092152446508408, 0.06655291467905045, -0.012384350411593914, 0.013450178317725658, 0.0846625566482544, -0.004326977301388979, -0.01777951419353485, 0.0008247194928117096, 0.025655319914221764, -0.007036348804831505, -0.06572289019823074, 0.04025621339678764, 0.04655686020851135, 0.0019170749001204967, 0.033050086349248886, 0.04493453726172447, 0.020731762051582336, -0.04070895537734032, 0.015195117332041264, 0.050178784877061844, -0.013469042256474495, -0.06364782899618149, -0.020165836438536644, 0.03714362159371376, 0.06659064441919327, 0.037068162113428116, 0.024768700823187828, -0.05723400041460991, -0.06655291467905045, -0.06255370378494263, -0.004442520439624786, -0.003961483016610146, 0.040822140872478485, -0.031069345772266388, 0.02803220972418785, 0.023353885859251022, -0.061308667063713074, 0.054894838482141495, 0.05270658805966377, -0.003117309883236885, 0.003305952064692974, 0.04048258438706398, -0.02267477475106716, 0.0007215558434836566, -0.0018899575807154179, 0.03005068004131317, 0.03206915035843849, 0.003496952122077346, 0.006295928731560707, -0.026221245527267456, -0.003744544694200158, 0.014242474921047688, -0.019637638702988625, -0.018675563856959343, -0.07515499740839005, -0.03953937441110611, -0.01999605819582939, 0.003081939648836851, -0.08926542103290558, 0.03450263291597366, -0.011610918678343296, -0.01857181079685688, 0.045764561742544174, -0.004966001957654953, 0.04836782068014145, 0.06806205213069916, 0.10096123069524765, -0.0035771250259131193, 0.019241489470005035, -0.02989976480603218, 0.0219956636428833, 0.023806627839803696, -0.003942619077861309, 0.05976180359721184, 0.005574372597038746, -0.04648140072822571, 0.03310668095946312, -0.031446631997823715, -0.03580426052212715, 0.03150322288274765, 0.04704732820391655, 0.0066496324725449085, -0.014251907356083393, -0.006781681906431913, -0.005404594819992781, -0.0557248629629612, 0.07319311797618866, -0.03942618891596794, 0.010563954710960388, -0.0423312783241272, -0.04900920391082764, 0.006140298675745726, 0.0028036925941705704, 0.020033786073327065, -0.023297293111681938, 0.02533462829887867, 0.0005013751797378063, 0.04655686020851135, -0.037596359848976135, 0.021920206025242805, 0.021637244150042534, 0.1035267561674118, -0.03133344650268555, -0.019599908962845802, 0.00153389573097229, -0.03308781608939171, 0.03797364607453346, -0.021392008289694786, -0.07511726766824722, 0.09334009140729904, -0.014883858151733875, -0.039765745401382446, -0.008022002875804901, 0.017968155443668365, 0.002294359030202031, 0.03923754766583443, -0.05791310966014862, -0.06081819906830788, -0.016940057277679443, -0.004482606891542673, -0.052216120064258575, -0.005022594705224037, -0.017072105780243874, -0.002372173825278878, 0.00984711479395628, -0.03325759246945381, -0.023127514868974686, -0.034389447420835495, 0.0207506250590086, 0.035596754401922226, 0.0019748464692384005, -0.016449587419629097, 0.03486105054616928, 0.08752991259098053, -0.020731762051582336, -0.015591265633702278, 0.07017484307289124, 0.0007510311552323401, 0.05451755225658417, -0.040558040142059326, -0.019392402842640877, 0.02276909537613392, 0.03499310091137886, -0.051423825323581696, -0.012959709390997887, -0.06496832519769669, -0.04467043653130531, 0.027296505868434906, -0.0509333536028862, -0.026711715385317802, -0.010554523207247257, -0.006291212514042854, 0.06662837415933609, -0.04459498077630997, 0.02654193714261055, 0.05240476131439209, 0.02146746590733528, -0.008554916828870773, -0.03957710415124893, -0.015553537756204605, 0.008743559010326862, 0.030390234664082527, -0.029126333072781563, 0.03791705146431923, -0.07364585995674133, 0.09990483522415161, -0.007418348919600248, -0.008262521587312222, -0.02746628224849701, 0.05534757673740387, 0.05278204753994942, 0.00825309008359909, 0.02559872716665268, 0.017053240910172462, -0.034766729921102524, 0.023636849597096443, 0.009493411518633366, -0.033974435180425644, -0.006366669200360775, -0.005277261603623629, -0.011233634315431118, 0.008361559361219406, 0.034106481820344925, 0.021014723926782608, 0.05723400041460991, 0.036143817007541656, -0.02467438019812107, 0.01795872300863266, 0.007941830903291702, -0.014742376282811165, -0.017119266092777252, -0.00817763339728117, -0.08156882226467133, -0.014233042486011982, -0.0750795379281044, 0.004098248668015003, 0.013921783305704594, -0.0061591630801558495, -0.01059225108474493, -0.004829236771911383, 0.005456471350044012, -0.02307092398405075, -0.041237153112888336, -0.037879325449466705, 0.027164455503225327, 0.010073485784232616, 0.037860460579395294, 0.07055212557315826, 0.010545090772211552, 0.014383956789970398, 0.023882083594799042, 0.020882675424218178, -0.023636849597096443, 0.011799560859799385, -0.01943013072013855, 0.04131260886788368, -0.023919811472296715, -0.010356448590755463, 0.032220061868429184, -0.036634285002946854, -0.0352194719016552, 0.008691682480275631, -0.017572008073329926, -0.011695806868374348, -0.030220456421375275, 0.024995071813464165, 0.012167412787675858, -0.01956218108534813, 0.004421297926455736, 0.007017484400421381, 0.03297463059425354, -0.005381014663726091, 0.01172410324215889, 0.08602077513933182, -0.015562969259917736, 0.022354083135724068, 0.01205422729253769, 0.042293548583984375, -0.008050299249589443, 0.012544696219265461, 0.0019701304845511913, -0.013440745882689953, 0.004565137904137373, 0.01065827626734972, 0.014798969030380249, 0.02976771630346775, -0.004753779619932175, -0.02586282603442669, -0.0573849119246006, 0.09054818749427795, -0.01699664816260338, 0.030522285029292107, 0.017053240910172462, 0.04572683200240135, 0.04968831688165665, -0.0005482409615069628, -0.02989976480603218, -0.0032210631761699915, -0.014864994212985039, -0.02748514711856842, -0.0034545075614005327, 0.0024429145269095898, -0.04010530188679695, 0.026504209265112877, -0.007819212973117828, 0.07047667354345322, -0.0388602614402771, 0.056366246193647385, 0.0003460402658674866, 0.009130275808274746, -0.0028225567657500505, -0.01494045089930296, -0.019411267712712288, -0.013761437498033047, -0.0031149520073086023, -0.005489483941346407, -0.027428554370999336, 0.02105245366692543, 0.03863389417529106, 0.048707377165555954, -0.008790719322860241, -0.026353294029831886, -0.011478869244456291, 0.0069042993709445, 0.031295716762542725, 0.03755863383412361, 0.0737590417265892, 0.009064250625669956, -0.007059928961098194, -0.002956964075565338, -0.05561167746782303, 0.014176450669765472, -0.02652307227253914, 0.05708308517932892, -0.027390826493501663, -0.03442717343568802, -0.07764507085084915, 0.04768871143460274, 0.045651376247406006, -0.01956218108534813, 0.02976771630346775, 0.033050086349248886, -0.007234422955662012, 0.02129768766462803, -0.04919784888625145, -0.020014921203255653, -0.02840949408710003, 0.03001295030117035, 0.023221837356686592, -0.06010136008262634, -0.04199172183871269, -0.06364782899618149, -0.021920206025242805, -0.003914322704076767, 0.09696201235055923, 0.017638031393289566, -0.0063336570747196674, 0.014836697839200497, -0.027051270008087158, 0.05097108334302902, -0.004588718060404062, -0.012422079220414162, -0.020675169304013252, -0.005168792326003313, -0.019901737570762634, -0.003433285281062126, -0.0069231633096933365, -0.024863023310899734, 0.023089786991477013, 0.04742461070418358, 0.026353294029831886, 0.0007716639083810151, -0.04455725476145744, -0.03420080244541168, -0.03327645733952522, -0.03135230764746666, 0.04893374815583229, -0.05134836584329605, -0.03338964283466339, 0.04474589601159096, 0.018402032554149628, 0.010526226833462715, -0.046443674713373184, 0.04142579436302185, 0.04621730372309685, 0.08911450952291489, -0.006743953563272953, 0.02801334485411644, 0.01212968397885561, 0.06659064441919327, 0.034785594791173935, -0.0767395868897438, 0.09281188994646072, -0.03535152226686478, -0.0040110014379024506, -0.042029447853565216, 0.020052650943398476, -0.03416307643055916, 0.005338570103049278, 0.012318326160311699, -0.015864796936511993, 0.03376692906022072, 0.004687754902988672, -0.004041655920445919, -0.04527409374713898, -0.019043415784835815, -0.005588520783931017, -0.04516090825200081, 0.03595517575740814, -0.005843187682330608, 0.0044024339877069, -0.015713883563876152, -0.05519666522741318, -0.008752991445362568, 0.00226134667173028, -0.03442717343568802, 0.012157980352640152, 0.010686572641134262, 0.010950671508908272, -0.0012120251776650548, 0.0001268175692530349, 0.006626052316278219, 0.03404989093542099, 0.0699484720826149, 0.019882872700691223, 0.0025702479761093855, -0.017638031393289566, -0.01888306997716427, 0.029805444180965424, -0.05402708426117897, 0.03669087961316109, 0.03784159570932388, 0.018647266551852226, 0.011535461992025375, 0.014638623222708702, 0.042821746319532394, -0.0211656391620636, -0.006078990176320076, 0.00808802805840969, 0.006960891652852297, 0.03122025914490223, -0.08322887122631073, -0.09484922140836716, -0.019354674965143204, 0.00780978100374341, 0.024636652320623398, -0.014619759283959866, -0.018939662724733353, -0.0308429766446352, -0.04251991957426071, -0.0401807576417923, 0.06674155592918396, -0.050178784877061844, 0.013978376053273678, 0.020826082676649094, 0.07168398052453995, 0.04421769827604294, 0.05613987520337105, -0.005975237116217613, -0.03548356890678406, -0.008965213783085346, -0.01888306997716427, 0.007739040069282055, -0.010554523207247257, 0.0012473955284804106, 0.006574175786226988, 0.009941436350345612, 0.029447024688124657, 0.02642875164747238, 0.00912084337323904, 0.03874707594513893, -0.05632851645350456, 0.04734915494918823, 0.034370582550764084, 0.029258381575345993, 0.004744347650557756, 0.023165244609117508, -0.06296871602535248, 0.024900751188397408, 0.02278796024620533, 0.033710334450006485, 0.008847312070429325, -0.02146746590733528, 0.024183910340070724, -0.01708153821527958, -0.017289044335484505, 0.03650223836302757, -0.017128698527812958, -0.08164428174495697, -0.02292000874876976, -0.0474623404443264, 0.06666610389947891, -0.016647661104798317, -0.023089786991477013, 0.0052206688560545444, -0.024580059573054314, 0.023787762969732285, -0.05138609558343887, -0.0010304572060704231, 0.018081340938806534, -0.014638623222708702, 0.019750822335481644, -0.05964861810207367, 0.014034968800842762, 0.03870934993028641, -0.0061591630801558495, 0.005946940742433071, 0.008828448131680489, 0.03133344650268555, -0.002023186068981886, 0.0037893473636358976, -0.020561983808875084, -0.004767927806824446, -0.0012462165905162692, -0.015610129572451115, 0.03708702698349953, 0.010620547458529472, -0.009903707541525364, -0.032785989344120026, 0.0040723104029893875, -0.01699664816260338 ]
20,243
pandas_datareader.data
get_iex_data_tiingo
null
def get_iex_data_tiingo(*args, **kwargs): return TiingoIEXHistoricalReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.013391025364398956, -0.05084284022450447, 0.006178817246109247, -0.021494533866643906, 0.010876440443098545, -0.020736712962388992, -0.035583097487688065, 0.04102562367916107, 0.03565198928117752, -0.05838659405708313, 0.020805606618523598, 0.017739878967404366, -0.04181789234280586, -0.010764489881694317, -0.019221073016524315, 0.0034726245794445276, -0.04839714616537094, 0.05955776944756508, 0.013115454465150833, 0.008077673614025116, 0.015509476885199547, -0.012064840644598007, -0.05442526191473007, -0.014424416236579418, 0.0031130905263125896, 0.04512474313378334, -0.049981679767370224, -0.03253459557890892, 0.05039503797888756, 0.016775380820035934, -0.006092701572924852, -0.048156023025512695, -0.054046351462602615, 0.021460087969899178, -0.02223513089120388, -0.007242348976433277, -0.042300138622522354, -0.005657815840095282, 0.0009774157078936696, 0.05800768360495567, -0.01730930060148239, -0.08294685184955597, 0.058937735855579376, 0.02926218882203102, -0.06555143743753433, -0.04240347817540169, -0.028590485453605652, -0.06320908665657043, 0.06386356800794601, -0.018411584198474884, -0.004430664237588644, 0.04354020953178406, 0.029675547033548355, -0.01684427447617054, -0.015423361212015152, 0.003392967162653804, -0.04350576177239418, 0.03878660872578621, 0.02500806376338005, 0.0389588437974453, -0.0359964556992054, 0.047157078981399536, 0.05342631787061691, 0.019582759588956833, 0.023423530161380768, 0.034429144114255905, 0.00846088957041502, -0.004546920768916607, -0.02989944815635681, 0.0010371586540713906, 0.027040399610996246, -0.008155177347362041, -0.020822828635573387, -0.00011221980821574107, -0.07543754577636719, -0.04460804536938667, -0.04453915357589722, 0.00731985317543149, -0.05318519100546837, 0.006803157739341259, -0.006859133020043373, 0.02221790701150894, -0.024078011512756348, 0.05917885899543762, -9.166636232293968e-7, -0.028039343655109406, 0.04660593718290329, 0.02273460291326046, -0.00812503695487976, 0.02877994067966938, -0.053391870111227036, -0.025748660787940025, -0.03871771693229675, -0.018911056220531464, 0.012280129827558994, -0.09961889684200287, -0.053736332803964615, 0.08053560554981232, 0.004323019180446863, -0.01143619418144226, -0.04629591852426529, -0.05556199327111244, -0.004960277117788792, -0.0016232851194217801, -0.030312804505228996, -0.023836886510252953, 0.026592595502734184, 0.000855776946991682, 0.02957220748066902, -0.062416817992925644, -0.050601713359355927, 0.04874161258339882, -0.013210182078182697, -0.04746709391474724, -0.04805268347263336, 0.03620313107967377, 0.016491198912262917, 0.03024391084909439, -0.04106007143855095, -0.05559643730521202, -0.009119676426053047, 0.02974443882703781, -0.011909832246601582, 0.019686099141836166, 0.011410359293222427, 0.014209127053618431, -0.008801046758890152, -0.05018835887312889, 0.03024391084909439, -0.028194352984428406, -0.002908565104007721, -0.03479083254933357, 0.05087728425860405, 0.04805268347263336, -0.0013864663196727633, 0.02192511409521103, 0.09576090425252914, 0.04605479538440704, -0.024766938760876656, 0.034274134784936905, -0.0025748659390956163, -0.0151133444160223, -0.01659453846514225, -0.01897994801402092, 0.002195955952629447, -0.002318671206012368, 0.023664655163884163, 0.021528979763388634, 0.04185233637690544, -0.04236903414130211, 0.04305795952677727, 0.01846325397491455, -0.10650817304849625, 0.00683329813182354, 0.01317573618143797, -0.021787328645586967, -0.024095235392451286, 0.02240736223757267, -0.009291907772421837, 0.010841994546353817, -0.03348186984658241, 0.04364354908466339, 0.011806492693722248, -0.017033729702234268, -0.04543475806713104, 0.07123509049415588, -0.020874498412013054, 0.018273798748850822, 0.08177568018436432, 0.008211152628064156, -0.01732652261853218, 0.002960234647616744, -0.005743931978940964, -0.005179872736334801, -0.02945164404809475, 0.013425472192466259, -0.013571868650615215, 0.0401989109814167, 0.040784500539302826, 0.056698720902204514, -0.08046671748161316, -0.04595145583152771, -0.07330187410116196, 0.01834269054234028, -0.0020829287823289633, -0.03468749299645424, 0.05876550450921059, -0.04615813493728638, -0.002490903018042445, -0.002032335614785552, 0.0310878474265337, 0.009162734262645245, -0.003194900695234537, -0.0026222297456115484, -0.009705264121294022, -0.006398412864655256, -0.02385411038994789, 0.008852716535329819, -0.01686149649322033, 0.04515918716788292, -0.03585866838693619, 0.031828444451093674, 0.03585866838693619, -0.028573261573910713, -0.041473425924777985, -0.0010506142862141132, 0.017050951719284058, -0.02616201713681221, -0.07268183678388596, 0.021063953638076782, 0.030950061976909637, -0.02747097797691822, -0.07660872489213943, 0.0037460424937307835, -0.004788045305758715, 0.13392747938632965, -0.03675427660346031, -0.04722597077488899, 0.020185571163892746, 0.018118789419531822, 0.03305128961801529, -0.0008611591765657067, -0.05573422461748123, -0.010196125134825706, 0.08294685184955597, -0.012753767892718315, 0.07881329208612442, 0.00884410459548235, 0.01136730145663023, -0.024284688755869865, -0.03940664604306221, 0.04033669829368591, 0.007126092445105314, 0.0003075952990911901, 0.013382414355874062, 0.007741821464151144, -0.0009176727617159486, -0.04598589986562729, -0.020995061844587326, 0.002579171909019351, 0.029313858598470688, -0.01723179593682289, -0.00014612794620916247, -0.0309328380972147, -0.028573261573910713, -0.08198235929012299, 0.012469585053622723, 0.050773948431015015, -0.05807657539844513, -0.0598333403468132, 0.07702207565307617, 0.011393136344850063, 0.02075393684208393, -0.004013001918792725, 0.010902275331318378, -0.01834269054234028, 0.0282804686576128, -0.04543475806713104, 0.012788213789463043, -0.07812435925006866, 0.005416691303253174, -0.016069231554865837, -0.039647769182920456, 0.0056104520335793495, -0.03534197434782982, 0.0243880283087492, -0.024939170107245445, -0.05442526191473007, 0.03313740715384483, -0.014553590677678585, -0.10106564313173294, 0.01323601696640253, -0.042747944593429565, 0.004170163534581661, -0.026334248483181, -0.013434083200991154, 0.05215180292725563, 0.0009483515750616789, -0.048156023025512695, -0.015096120536327362, -0.06179678440093994, 0.041438981890678406, 0.06252016127109528, -0.06861716508865356, 0.0002652101102285087, -0.09279851615428925, 0.0037374310195446014, -0.007651399355381727, 0.020891722291707993, -0.024801384657621384, 0.003763265674933791, 0.06475917249917984, -0.07819325476884842, -0.026592595502734184, 0.013296297751367092, 0.018893832340836525, -0.05270294472575188, -0.04856937751173973, 0.038338806480169296, 0.0025016674771904945, 0.008396302349865437, -0.04075005277991295, -0.04405690357089043, -0.02697150595486164, -0.05232403427362442, 0.035893116146326065, 0.04106007143855095, -0.00341664906591177, -0.0487760566174984, -0.04860382527112961, 0.052978515625, -0.005330575630068779, 0.02140841819345951, -0.016387859359383583, -0.07082173228263855, -0.05187623202800751, -0.02810823731124401, 0.06861716508865356, 0.0006076554418541491, 0.019221073016524315, -0.006785934325307608, 0.011229516007006168, 0.04233458638191223, -0.06272683292627335, 0.05800768360495567, 0.02111562341451645, 0.0018730212468653917, 0.009524420835077763, -0.01657731458544731, -0.006798851769417524, 0.03923441469669342, -0.008314492180943489, 0.019582759588956833, 0.029158851131796837, 0.00604533776640892, 0.03609979525208473, 0.0033585208002477884, 0.02848714590072632, 0.030312804505228996, 0.027884334325790405, -0.037029847502708435, -0.026868166401982307, 0.03906217962503433, 0.0225968174636364, 0.04106007143855095, -0.04071560874581337, 0.05838659405708313, -0.03449803590774536, 0.049292754381895065, 0.07895107567310333, -0.02254514768719673, 0.023475199937820435, 0.042782388627529144, 0.04860382527112961, 0.0033649795223027468, 0.037856560200452805, -0.004542614798992872, 0.02335463836789131, -0.02700595185160637, 0.022149015218019485, -0.03909662738442421, -0.02783266454935074, 0.017137067392468452, 0.031122293323278427, -0.03058837540447712, -0.017412638291716576, 0.018566591665148735, 0.056664276868104935, -0.015492253936827183, 0.05139398202300072, -0.028745494782924652, -0.006264933384954929, 0.0034252607729285955, 0.03830436244606972, 0.026110347360372543, -0.04088784009218216, -0.0034704715944826603, -0.03494584187865257, -0.01715429127216339, 0.03188011422753334, 0.05346076190471649, -0.007586812600493431, -0.03954442963004112, -0.0011184305185452104, 0.014527755789458752, 0.03138064220547676, 0.005330575630068779, 0.0057740723714232445, 0.04443581402301788, -0.019565537571907043, -0.010885052382946014, -0.03498028591275215, 0.02797045186161995, -0.025300856679677963, 0.017722656950354576, -0.06117675080895424, 0.012314576655626297, -0.00041577842785045505, 0.00040824327152222395, -0.008878551423549652, -0.03200067579746246, 0.010445861145853996, 0.01258153561502695, -0.0007002300699241459, -0.021787328645586967, -0.03613423928618431, 0.0151133444160223, -0.09803436696529388, 0.019703323021531105, -0.0676182210445404, -0.0197894386947155, 0.010230571031570435, 0.034239690750837326, 0.0059463041834533215, 0.03992334008216858, 0.05676761642098427, 0.0003563046338967979, -0.00580851873382926, -0.022941282019019127, 0.027591541409492493, -0.0002724761434365064, 0.028538815677165985, -0.042265694588422775, 0.00781502015888691, 0.01782599464058876, 0.010997002944350243, -0.03968221694231033, 0.008981890045106411, 0.032482925802469254, 0.037684325128793716, -0.02468082308769226, -0.04305795952677727, -0.038683272898197174, -0.008689096197485924, 0.01930718868970871, -0.002899953629821539, -0.03806323558092117, -0.06351910531520844, 0.026265354827046394, 0.07023614645004272, 0.006643843371421099, 0.025593651458621025, 0.0821201428771019, 0.01193566620349884, -0.04891384392976761, -0.02714373730123043, -0.026782050728797913, 0.05966110900044441, 0.027195407077670097, -0.0356864370405674, 0.05873105674982071, -0.006010891404002905, 0.01897994801402092, -0.03565198928117752, -0.0074490271508693695, -0.047191523015499115, -0.004299337510019541, 0.011677319183945656, 0.0008164865430444479, 0.013322132639586926, -0.024732492864131927, 0.015638651326298714, -0.003959179390221834, -0.11615315079689026, 0.057146523147821426, -0.052427373826503754, -0.04395356401801109, -0.03620313107967377, -0.00568795669823885, 0.010247794911265373, -0.009627759456634521, 0.04708818346261978, -0.03275849670171738, -0.000815948355011642, 0.023750770837068558, 0.029830554500222206, -0.012822660617530346, -0.00808628462255001, 0.039992231875658035, -0.03074338287115097, 0.039578877389431, -0.06789378821849823, 0.04498695582151413, 0.023492423817515373, -0.03401578962802887, 0.017214572057127953, 0.016603149473667145, -0.0009133669664151967, 0.01569032110273838, -0.05335742607712746, 0.023096289485692978, 0.10265018045902252, 0.012977669015526772, 0.03888994827866554, 0.010566423647105694, 0.04099117964506149, 0.03160454332828522, 0.02226957678794861, 0.005614758003503084, 0.04398801177740097, 0.020047785714268684, -0.025266410782933235, 0.01618979312479496, 0.011393136344850063, -0.020047785714268684, 0.003291781060397625, -0.012736544944345951, -0.01603478379547596, 0.011410359293222427, -0.04708818346261978, 0.03387800231575966, -0.0010942104272544384, 0.03685761243104935, 0.03219013288617134, -0.005817130208015442, -0.04219680279493332, -0.009756933897733688, 0.055837564170360565, -0.0325690396130085, 0.0227518267929554, 0.07109730690717697, 0.034429144114255905, 0.017197350040078163, -0.009955000132322311, 0.002643758663907647, -0.018239352852106094, -0.010979779995977879, 0.0310878474265337, -0.026454810053110123, 0.018756046891212463, -0.002195955952629447, -0.06269238889217377, 0.013571868650615215, -0.0401989109814167, -0.027419308200478554, -0.04905162751674652, -0.006122841965407133, -0.02500806376338005, 0.10196124762296677, -0.01039419136941433, -0.012572924606502056, -0.016568703576922417, -0.0025942421052604914, -0.017757102847099304, 0.011031449772417545, -0.04936164617538452, -0.04526252672076225, 0.08921609073877335, 0.003735278034582734, 0.04236903414130211, 0.004835409112274647, -0.08618481457233429, 0.09913665056228638, -0.008826881647109985, -0.03189733624458313, 0.0014984169974923134, -0.03854548558592796, 0.03184566646814346, -0.043264638632535934, -0.020891722291707993, 0.021029507741332054, 0.016990670934319496, 0.006919414270669222, 0.02585199847817421, 0.01594005711376667, 0.033757440745830536, 0.03778766468167305, 0.02567976713180542, -0.0282804686576128, -0.024611929431557655, -0.012925999239087105, 0.031001731753349304, 0.012727933004498482, 0.00813364889472723, 0.027436532080173492, 0.015156402252614498, -0.0470537394285202, -0.033430200070142746, 0.04595145583152771, -0.03854548558592796, 0.04760488122701645, 0.011599814519286156, -0.013399637304246426, -0.06351910531520844, 0.058972183614969254, -0.023285744711756706, -0.029865000396966934, 0.044263582676649094, 0.030795052647590637, 0.046020347625017166, 0.0405089296400547, -0.03167343512177467, -0.05166955292224884, 0.009524420835077763, 0.07378412038087845, 0.0005732090794481337, -0.009860272519290447, -0.06365688890218735, -0.02896939590573311, -0.05053282156586647, -0.02223513089120388, 0.0713728740811348, -0.06686040014028549, -0.0312428567558527, -0.035083625465631485, -0.015655875205993652, -0.00877951830625534, -0.0251630712300539, 0.009911942295730114, -0.012357634492218494, 0.049154967069625854, 0.0017169361235573888, -0.012805437669157982, 0.01072143204510212, -0.025318080559372902, 0.0369265079498291, 0.02077116072177887, 0.0028159907087683678, -0.00809489656239748, -0.02989944815635681, -0.004835409112274647, -0.017567647621035576, -0.011031449772417545, 0.030157795175909996, -0.004004390444606543, -0.027074845507740974, 0.07550644129514694, 0.009998057968914509, -0.001343408366665244, -0.04605479538440704, 0.019393304362893105, 0.01911773346364498, 0.020822828635573387, 0.015578369610011578, 0.025765882804989815, 0.027092069387435913, 0.029038287699222565, 0.028056567534804344, -0.0761953666806221, 0.047846004366874695, -0.017378192394971848, 0.03322352096438408, -0.004185233730822802, 0.011651484295725822, 0.029072735458612442, -0.03861437737941742, -0.03174232691526413, -0.021632319316267967, -0.03153565153479576, -0.030054455623030663, 0.024818608537316322, 0.017619317397475243, 0.00316691305488348, 0.01536308042705059, -0.06610257923603058, 0.030381696298718452, 0.024405252188444138, 0.02924496680498123, 0.0017944404389709234, -0.022786272689700127, 0.003832158399745822, 0.024336358532309532, -0.016680654138326645, 0.01834269054234028, 0.08687373995780945, 0.022837942466139793, -0.04381578043103218, -0.003147536888718605, 0.048018235713243484, 0.054218582808971405, 0.004150787368416786, 0.05842104181647301, 0.05263404920697212, 0.005446832161396742, 0.048672717064619064, -0.025231964886188507, 0.011660095304250717, 0.013347967527806759, 0.01946219801902771, 0.030002785846590996, -0.004267043899744749, -0.015431973151862621, 0.06396690756082535, 0.017602093517780304, -0.014613871462643147, 0.02127063274383545, -0.009843049570918083, -0.006811769213527441, 0.0049043018370866776, -0.04250681772828102, 0.003978555556386709, 0.01959998346865177, -0.02698872983455658, 0.012392081320285797, 0.0520484633743763, -0.0868048444390297, -0.040130019187927246, 0.009033559821546078, 0.0020140360575169325, -0.02943442203104496, 0.0010403880150988698, -0.016551479697227478, 0.08790712803602219, -0.001935455366037786, 0.05156621336936951, -0.019066065549850464, -0.03351631760597229, -0.023923002183437347, -0.027557093650102615, -0.024301912635564804, 0.00039936258690431714, 0.04119785502552986, -0.012452362105250359, 0.04870716482400894, 0.04708818346261978, 0.012107898481190205, -0.034429144114255905, 0.04381578043103218, -0.08060450106859207, 0.02550753578543663, 0.03177677467465401, -0.003334839129820466, -0.004503862466663122, 0.05053282156586647, -0.030364474281668663, 0.0821201428771019, -0.008727848529815674, 0.016956225037574768, -0.02977888472378254, 0.012762379832565784, 0.05659538134932518, -0.02519751898944378, 0.006462999619543552, -0.02206289954483509, 0.0437813326716423, -0.01284849550575018, -0.009179957211017609, 0.010376968421041965, 0.05215180292725563, -0.06475917249917984, -0.02009945549070835, -0.01724901795387268, -0.010437249206006527, 0.050636161118745804, 0.033292416483163834, -0.004589978605508804, 0.029520537704229355, -0.030054455623030663, 0.008004474453628063, 0.022769048810005188, 0.00780640821903944, 0.030657267197966576, 0.0009219785570167005, -0.02485305443406105, 0.04433247447013855, 0.06665372103452682, 0.015776436775922775, 0.00474498700350523, -0.01315851230174303, 0.025800330564379692, 0.0076212589628994465, 0.0052659884095191956, 0.013382414355874062, 0.009274684824049473, 0.05428747460246086, -0.013468530029058456, 0.0022217908408492804, 0.014166069217026234 ]
20,244
pandas_datareader.data
get_iex_symbols
Returns a list of all equity symbols available for trading on IEX. Accepts no additional parameters. Reference: https://www.iextrading.com/developer/docs/#symbols :return: DataFrame
def get_iex_symbols(*args, **kwargs): """ Returns a list of all equity symbols available for trading on IEX. Accepts no additional parameters. Reference: https://www.iextrading.com/developer/docs/#symbols :return: DataFrame """ from pandas_datareader.iex.ref import SymbolsReader return SymbolsReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.015628039836883545, -0.10204344987869263, 0.02898961678147316, -0.05945507064461708, 0.013554842211306095, 0.020310301333665848, -0.0466996394097805, -0.02261190116405487, 0.08573898673057556, -0.003386514261364937, 0.06785327196121216, -0.02240106835961342, -0.022717317566275597, 0.00840698927640915, -0.03517406806349754, -0.0384068489074707, -0.020837385207414627, 0.049053944647312164, -0.034594275057315826, -0.04178018867969513, -0.031115522608160973, 0.032450802624225616, -0.014547516591846943, -0.03213455155491829, -0.0023587006144225597, 0.06658827513456345, 0.00215006317012012, -0.013792029581964016, 0.024210723116993904, -0.01477591972798109, -0.012404042296111584, -0.008490444160997868, -0.0466996394097805, 0.014890121296048164, -0.02784760110080242, 0.0006698358338326216, -0.009988240897655487, -0.014942829497158527, 0.008235686458647251, 0.03108038380742073, -0.013888661749660969, -0.0733700841665268, 0.12158069759607315, -0.021329330280423164, -0.08756621181964874, -0.038301434367895126, -0.046348247677087784, -0.056995343416929245, 0.06700994074344635, -0.020767107605934143, 0.010049734264612198, 0.012430396862328053, 0.0536922849714756, -0.006127350963652134, 0.014688072726130486, -0.024158013984560966, -0.03636879101395607, 0.021065788343548775, 0.04469671845436096, 0.036860737949609756, 0.002637615893036127, -0.011016054078936577, 0.04736727848649025, -0.000596812751609832, -0.002751817461103201, 0.05028380826115608, 0.014898906461894512, -0.02842739410698414, -0.0346996933221817, -0.02122391387820244, 0.010761297307908535, -0.017718805000185966, -0.04395880177617073, 0.00053751579253003, -0.04659422114491463, -0.01056803297251463, -0.047437556087970734, -0.009610497392714024, -0.02754892036318779, -0.019098008051514626, -0.05435992404818535, 0.027707045897841454, -0.059911876916885376, 0.07010216265916824, 0.011604631319642067, -0.010541679337620735, 0.07407286763191223, 0.05017838999629021, 0.04185046628117561, 0.01486376766115427, -0.04641852527856827, 0.0021412784699350595, -0.04388852417469025, 0.012632445432245731, 0.008964819833636284, -0.0755487009882927, 0.022295650094747543, 0.027654338628053665, 0.052673254162073135, -0.011868173256516457, -0.02710968442261219, -0.0012869633501395583, 0.0060043646954, 0.021628011018037796, -0.08489565551280975, -0.03661476448178291, -0.005024867132306099, -0.016743700951337814, 0.015619254671037197, -0.05766298249363899, -0.06237160041928291, 0.05003783479332924, 0.10921179503202438, -0.08285759389400482, 0.002615654142573476, 0.006641257554292679, 0.018570924177765846, 0.037528377026319504, 0.017297137528657913, -0.052673254162073135, -0.028392255306243896, 0.04768352955579758, -0.028796352446079254, 0.0205211341381073, 0.0702778622508049, 0.023718778043985367, 0.0006319516687653959, -0.007721779868006706, 0.018693910911679268, -0.007611970882862806, 0.06247701868414879, -0.013317654840648174, 0.027794893831014633, 0.028919339179992676, 0.03325899690389633, 0.015382066369056702, 0.04371282830834389, -0.03812573850154877, 0.037352681159973145, 0.013563627377152443, -0.001649333513341844, -0.03802032396197319, -0.05091631039977074, 0.037176989018917084, -0.05190020054578781, 0.026248781010508537, 0.008086346089839935, -0.031677745282649994, 0.008696884848177433, -0.020222453400492668, 0.02043328806757927, 0.04227213189005852, -0.11771541833877563, -0.054465342313051224, -0.0011151119833812118, -0.021663149818778038, -0.00927667785435915, 0.053024645894765854, 0.01512730959802866, 0.029534270986914635, -0.028796352446079254, 0.040444906800985336, -0.025774404406547546, -0.02457968145608902, -0.038617685437202454, 0.058471180498600006, -0.0606849305331707, -0.04561033099889755, 0.07066439092159271, 0.02637176774442196, -0.0038147701416164637, 0.000985537189990282, 0.014529947191476822, -0.028761213645339012, -0.013862308114767075, -0.03661476448178291, -0.0002625811321195215, 0.04069088026881218, 0.0009893805254250765, -0.014099495485424995, 0.016541650518774986, -0.04518866539001465, -0.10056761652231216, 0.014433315023779869, 0.023999888449907303, -0.011121471412479877, 0.04353713244199753, 0.012895987369120121, 0.02187398448586464, -0.025212181732058525, 0.03192371875047684, 0.0008416872005909681, 0.006614903453737497, 0.0240174587816, -0.021382039412856102, -0.058436039835214615, -0.019923772662878036, 0.0134230712428689, -0.08173315227031708, 0.02470266819000244, -0.012667584232985973, 0.048175472766160965, 0.026740726083517075, -0.025721697136759758, -0.030324896797537804, -0.02269974909722805, -0.01337914727628231, -0.08194398134946823, -0.042974911630153656, -0.00230818847194314, 0.020134607329964638, -0.008841833099722862, -0.010251782834529877, 0.016559220850467682, -0.008595860563218594, 0.11546652019023895, -0.0016449411632493138, -0.011402582749724388, 0.04965130612254143, 0.01061195693910122, 0.030272187665104866, -0.0038081815000623465, -0.02681100368499756, 0.0035929556470364332, 0.036122821271419525, -0.03946101665496826, 0.03375094383955002, 0.05868201330304146, 0.006338184699416161, -0.04652394354343414, -0.021364469081163406, 0.013756890781223774, 0.002226929645985365, -0.016225401312112808, 0.01687547191977501, 0.007365998346358538, 0.008248863741755486, 0.0026727549266070127, 0.043150607496500015, -0.004559276159852743, -0.0008307062671519816, 0.02763676829636097, -0.0040475656278431416, 0.025352738797664642, 0.021206343546509743, -0.04894853010773659, 0.04919450357556343, 0.03104524500668049, -0.050494641065597534, -0.052673254162073135, 0.05024867132306099, -0.029235590249300003, 0.052146170288324356, -0.014617795124650002, 0.01758703403174877, -0.042974911630153656, -0.021118497475981712, -0.022295650094747543, 0.0065007018856704235, -0.06310951709747314, -0.03542004153132439, 0.019185855984687805, 0.014442100189626217, -0.006658827420324087, 0.03028975799679756, 0.025352738797664642, 0.002352112205699086, 0.0009674186585471034, 0.0320994108915329, 0.0005891261389479041, -0.04244782775640488, 0.02790031023323536, -0.05175964534282684, 0.031414203345775604, 0.015417205169796944, -0.003193250158801675, 0.026090655475854874, -0.027830032631754875, -0.04125310480594635, 0.018219534307718277, -0.016708560287952423, 0.024720236659049988, -0.00949629582464695, -0.0012529224622994661, 0.009953102096915245, -0.019712939858436584, 0.0006001070141792297, -0.03501594439148903, 0.03802032396197319, -0.017560679465532303, 0.021294191479682922, 0.07484591752290726, -0.05783867835998535, -0.01293991133570671, 0.05566006526350975, -0.0012298625661060214, 0.0018316167406737804, -0.056995343416929245, 0.04395880177617073, 0.03526191785931587, 0.001728396164253354, 0.01604970544576645, 0.014986753463745117, 0.014986753463745117, -0.060438960790634155, 0.007919436320662498, 0.04325602203607559, 0.02602037787437439, -0.07108605653047562, -0.03313601016998291, 0.0342780277132988, 0.061668820679187775, -0.0040014456026256084, -0.02937614545226097, -0.04469671845436096, -0.0611065998673439, -0.05541409179568291, 0.0272853784263134, 0.006513879168778658, -0.006847699172794819, -0.019712939858436584, 0.01121810358017683, 0.02308627776801586, -0.058471180498600006, 0.02108335867524147, 0.06384743750095367, -0.007019001059234142, -0.03661476448178291, 0.049089085310697556, -0.02340252697467804, 0.01512730959802866, -0.022102387621998787, 0.020152175799012184, 0.007945790886878967, 0.0028857847210019827, -0.01067345030605793, 0.025264890864491463, 0.03336441516876221, 0.023174123838543892, 0.03837171196937561, -0.025651419535279274, -0.04269380122423172, -0.012975050136446953, -0.010436262004077435, -0.05344631150364876, -0.07066439092159271, 0.033206287771463394, -0.0427992157638073, -0.034418582916259766, 0.09979455918073654, 0.02566898800432682, 0.04209643974900246, 0.023806624114513397, 0.016717346385121346, 0.04286949336528778, 0.0362282358109951, -0.052146170288324356, 0.03619309887290001, -0.00874959398061037, -0.009320600889623165, 0.04160449281334877, 0.009988240897655487, -0.028181422501802444, -0.002400428056716919, -0.06651799380779266, -0.09283705055713654, 0.05362200736999512, 0.0497567243874073, 0.0070936712436378, 0.02252405323088169, -0.03417260944843292, 0.030149200931191444, -0.02178613655269146, 0.03355767950415611, -0.023648500442504883, -0.012983834370970726, 0.018957452848553658, -0.03390906751155853, -0.03921504691243172, -0.011534353718161583, 0.011841819621622562, -0.04286949336528778, -0.015522622503340244, 0.0016701972344890237, 0.03046545200049877, -0.0031273646745830774, 0.011859389021992683, 0.01587401144206524, 0.06342577189207077, -0.005494850222021341, -0.03770407289266586, -0.04694560915231705, -0.013695398345589638, 0.053376033902168274, 0.007098063826560974, -0.04525894299149513, 0.03942587971687317, 0.018096549436450005, -0.04768352955579758, 0.017666097730398178, -0.015856442973017693, 0.016796408221125603, 0.04002324119210243, -0.03336441516876221, -0.027830032631754875, 0.003586367005482316, 0.013669043779373169, -0.0672559142112732, 0.01631324738264084, -0.06876688450574875, -0.01252702809870243, 0.0015054835239425302, -0.017543110996484756, -0.031625036150217056, -0.009830115363001823, 0.018447937443852425, 0.03129121661186218, -0.0016185869462788105, -0.009021920152008533, 0.034295596182346344, 0.02710968442261219, -0.04518866539001465, -0.060403820127248764, 0.04828089103102684, 0.03130878508090973, 0.052884090691804886, -0.017297137528657913, 0.022453775629401207, 0.028392255306243896, 0.0510920025408268, -0.06173909828066826, -0.004972158465534449, -0.027302948758006096, 0.008833048865199089, 0.019976481795310974, -0.05211103335022926, -0.0050336518324911594, -0.04269380122423172, -0.029182881116867065, 0.046348247677087784, -0.04033949226140976, 0.002013899851590395, 0.028567949309945107, 0.03823115676641464, -0.017103873193264008, -0.021540163084864616, -0.0013682220596820116, 0.08763649314641953, 0.05920909717679024, -0.030201910063624382, 0.05211103335022926, -0.031010106205940247, 0.052497562021017075, -0.0440993569791317, 0.04019893705844879, 0.0031032066326588392, 0.05741701275110245, 0.0453994981944561, 0.00568811409175396, 0.003136149374768138, 0.036649905145168304, 0.030324896797537804, -0.003630290739238262, -0.08187370747327805, 0.018535785377025604, 0.04719158262014389, -0.00413102051243186, -0.034032054245471954, 0.04399393871426582, 0.0031097952742129564, 0.01722685992717743, 0.07143744081258774, -0.02208481729030609, -0.06089576706290245, 0.02016974613070488, 0.009592927992343903, -0.04796463996171951, 0.021294191479682922, -0.014354253187775612, -0.07660286873579025, -0.028796352446079254, -0.07168341428041458, 0.004427505191415548, -0.00230818847194314, -0.0007593302871100605, -0.008841833099722862, 0.04392366111278534, -0.03113309107720852, -0.0057496074587106705, -0.05984159931540489, 0.032767053693532944, 0.051935337483882904, 0.010655880905687809, 0.024070166051387787, 0.08988538384437561, 0.03208184242248535, 0.026301488280296326, -0.016102414578199387, -0.0011200533481314778, 0.02937614545226097, 0.044204775243997574, -0.029235590249300003, 0.021100927144289017, 0.013827169314026833, -0.014125850051641464, -0.007049747742712498, 0.005885770544409752, -0.036439068615436554, 0.005125891417264938, -0.05218131095170975, -0.0030944219324737787, -0.012852063402533531, 0.044380467385053635, -0.008354280143976212, 0.029586978256702423, -0.006636865437030792, 0.0014275190187618136, 0.026090655475854874, -0.019589953124523163, 0.09283705055713654, 0.0554492324590683, 0.01508338563144207, -0.003854301292449236, 0.009461157023906708, -0.0006160293705761433, 0.004704224411398172, -0.003964110743254423, 0.023297110572457314, -0.004919450264424086, 0.005828669760376215, 0.005257662385702133, -0.022119956091046333, -0.017595818266272545, -0.014283974654972553, -0.045996859669685364, -0.035384900867938995, 0.07618120312690735, 0.016225401312112808, 0.07414314150810242, 0.010295706801116467, 0.012131715193390846, 0.020591413602232933, -0.011033624410629272, -0.03636879101395607, 0.009961886331439018, -0.06307438015937805, -0.04030435159802437, -0.0003596249734982848, -0.0005726547678932548, 0.0344712920486927, 0.002615654142573476, -0.027478642761707306, 0.03626337647438049, -0.05766298249363899, 0.06381229311227798, 0.0134230712428689, 0.03626337647438049, 0.03513893112540245, -0.08883121609687805, -0.017077520489692688, 0.028269268572330475, -0.009443587623536587, 0.015048246830701828, -0.03174802288413048, -0.006575372070074081, 0.009382094256579876, 0.04508324712514877, -0.009461157023906708, -0.007919436320662498, -0.020327871665358543, -0.026793433353304863, 0.019712939858436584, 0.07892203330993652, 0.03812573850154877, 0.005855024326592684, -0.03657962754368782, 0.010515324771404266, -0.07196452468633652, 0.02143474668264389, -0.06103632226586342, 0.05242728441953659, -0.012166854925453663, -0.050354085862636566, -0.06261757016181946, 0.043677691370248795, 0.010023379698395729, -0.004109058529138565, 0.03578900173306465, 0.036825597286224365, 0.008573899045586586, 0.03942587971687317, -0.06117687746882439, 0.006272298749536276, -0.006641257554292679, 0.02558114007115364, -0.006281083915382624, -0.06563951820135117, 0.0003516638244036585, -0.04828089103102684, -0.017683666199445724, -0.008073168806731701, 0.06356632709503174, 0.022734887897968292, -0.04423991218209267, 0.028040865436196327, -0.01929127238690853, 0.056292567402124405, -0.014890121296048164, 0.003386514261364937, -0.049581028521060944, 0.017209291458129883, -0.020538704469799995, -0.040269214659929276, -0.011595847085118294, -0.03571872040629387, 0.02496621012687683, 0.06029840186238289, -0.0014253228437155485, -0.019800787791609764, 0.00982133112847805, -0.03343469277024269, -0.02942885458469391, -0.041534215211868286, 0.0025871037505567074, 0.02855038084089756, 0.006487525068223476, 0.015223941765725613, 0.06237160041928291, -0.019045300781726837, -0.03889879584312439, 0.020450856536626816, 0.02990322932600975, 0.03689587488770485, 0.006680788937956095, -0.00778327276930213, 0.023595791310071945, 0.014740780927240849, 0.011367443948984146, -0.09269649535417557, 0.04898366704583168, -0.028620658442378044, 0.055765483528375626, -0.014670503325760365, 0.011270811781287193, -0.030887119472026825, 0.02064412087202072, -0.049791865050792694, -0.0484565831720829, 0.02893690951168537, -0.04993242025375366, 0.027355656027793884, -0.016541650518774986, 0.0008466285653412342, -0.009180045686662197, -0.013651474379003048, 0.0057276454754173756, -0.05204075574874878, -0.013431855477392673, 0.031625036150217056, -0.038266293704509735, 0.03371580317616463, 0.03108038380742073, -0.014468454755842686, 0.04051518440246582, 0.03858254477381706, -0.010857929475605488, -0.024351278319954872, 0.02243620716035366, 0.007972144521772861, 0.014345468021929264, -0.0024114090483635664, 0.04884311184287071, 0.0006061465246602893, -0.005248877685517073, -0.020749537274241447, 0.05154880881309509, -0.012307410128414631, -0.0001924405514728278, 0.055589787662029266, 0.05618714913725853, -0.037914905697107315, -0.024597251787781715, 0.05060005933046341, 0.0078096273355185986, -0.048878252506256104, 0.023068707436323166, -0.014160988852381706, 0.02505405619740486, 0.011938451789319515, -0.07150772213935852, -0.008002891205251217, 0.020767107605934143, 0.030201910063624382, -0.01737620122730732, 0.01925613358616829, -0.042236994951963425, -0.0179032851010561, -0.03745809942483902, 0.02305113710463047, -0.00516103021800518, 0.005226915702223778, 0.02496621012687683, 0.06771271675825119, 0.009259108453989029, 0.0716131404042244, -0.023859333246946335, -0.03942587971687317, 0.01587401144206524, -0.06968049705028534, -0.007734957151114941, -0.008657353930175304, -0.04631311073899269, -0.037352681159973145, 0.043677691370248795, 0.059525348246097565, -0.003880655625835061, 0.00858707632869482, 0.007594401016831398, -0.07024271786212921, 0.0427992157638073, 0.06792355328798294, 0.011086332611739635, -0.005235700402408838, 0.05116228014230728, -0.07041841745376587, 0.062231045216321945, -0.06451507657766342, 0.038863655179739, 0.001406655297614634, 0.015171232633292675, 0.010330845601856709, 0.008178586140275002, -0.031062813475728035, 0.03960157558321953, -0.01604970544576645, -0.07442425191402435, -0.008732023648917675, -0.001097542466595769, 0.017604604363441467, -0.033118441700935364, 0.006074642296880484, 0.02322683297097683, -0.0005136323161423206, 0.01758703403174877, 0.00516103021800518, 0.030746564269065857, 0.04128824174404144, -0.00917126052081585, 0.013194668106734753, -0.017042381688952446, -0.013792029581964016, 0.03946101665496826, 0.012764216400682926, 0.0043308730237185955, 0.005920909810811281, 0.01937912032008171, 0.005753999575972557, 0.04230727255344391, -0.038441989570856094, 0.013124390505254269, -0.017630958929657936, -0.009311816655099392, 0.025387877598404884, 0.001300140400417149, -0.004207886755466461, -0.04680505394935608, -0.005002905149012804, -0.014951614663004875 ]
20,245
pandas_datareader.data
get_last_iex
null
def get_last_iex(*args, **kwargs): return IEXLasts(*args, **kwargs).read()
(*args, **kwargs)
[ -0.008653716184198856, -0.03098428249359131, 0.014688108116388321, 0.05089446157217026, 0.022562658414244652, -0.027701837942004204, -0.021982427686452866, 0.006191883236169815, 0.10245203971862793, -0.04396485537290573, 0.06654409319162369, 0.007741926237940788, -0.059316083788871765, -0.007766793016344309, -0.002204874064773321, 0.034581709653139114, -0.035675857216119766, 0.02075565606355667, -0.020556719973683357, -0.02902807854115963, 0.00518062524497509, 0.03317257761955261, 0.004451192915439606, -0.028945188969373703, 0.032028697431087494, 0.023806007578969002, 0.03217789903283119, -0.023723118007183075, 0.04035085439682007, -0.025745633989572525, -0.06614622473716736, -0.05891821160912514, -0.036007415503263474, -0.005400283727794886, -0.03647160157561302, 0.02292737364768982, -0.03786415234208107, 0.002606890629976988, -0.004583816975355148, 0.03186291828751564, -0.02902807854115963, -0.04078188166022301, 0.06392476707696915, 0.009532350115478039, -0.04134553298354149, -0.02771841734647751, -0.0015365733997896314, -0.04253914952278137, 0.008968697860836983, 0.010311516001820564, 0.03799677640199661, 0.025778790935873985, 0.02809971012175083, -0.04797673225402832, -0.016594577580690384, 0.0029363783542066813, 0.0004817981389351189, 0.030569832772016525, 0.030387474223971367, 0.030602987855672836, -0.0038668185006827116, -0.05298328772187233, 0.037167876958847046, 0.011355930007994175, 0.04456166550517082, 0.037068407982587814, 0.014356547966599464, -0.013535937294363976, -0.03905776888132095, 0.026557955890893936, 0.039654575288295746, -0.022164786234498024, -0.03199554234743118, -0.022347144782543182, -0.02760237082839012, -0.04907087981700897, -0.038626741617918015, 0.04645155742764473, -0.03481379896402359, 0.03207843005657196, -0.0494687519967556, 0.0469820536673069, -0.009250524453818798, 0.052220702171325684, 0.023093154653906822, -0.05798984318971634, 0.06147122383117676, -0.006382530089467764, -0.042141277343034744, 0.015102557837963104, -0.06117282062768936, 0.022977108135819435, -0.029409373179078102, 0.02576221153140068, 0.030652722343802452, -0.06604675203561783, -0.04041716456413269, 0.057890377938747406, 0.05361325293779373, -0.029326481744647026, -0.03829517960548401, -0.013966965489089489, 0.01681838184595108, -0.051259178668260574, 0.006801124662160873, 0.008686872199177742, 0.02004280313849449, -0.02339155785739422, 0.004049176350235939, -0.04456166550517082, -0.02267870493233204, 0.0034689465537667274, -0.007223863620311022, -0.05149126797914505, 0.028431270271539688, 0.043202269822359085, 0.007791660260409117, 0.07692192494869232, 0.01661115698516369, -0.03307311236858368, -0.020324628800153732, -0.02025831677019596, -0.06094072759151459, 0.034150682389736176, -0.019097857177257538, -0.005445872899144888, -0.012392055243253708, -0.03594110533595085, 0.03686947375535965, -0.04127921909093857, -0.004637695383280516, -0.008786340244114399, -0.0053298273123800755, 0.03696893900632858, 0.021866383031010628, 0.020855125039815903, 0.0379636213183403, -0.006071692798286676, -0.06385845690965652, 0.04890510067343712, -0.004434614907950163, 0.04817567020654678, 0.058255091309547424, 0.05908399447798729, -0.010377828031778336, 0.0169592946767807, 0.058818746358156204, 0.019860444590449333, 0.02171717956662178, -0.04800988733768463, 0.028481004759669304, 0.0016039215261116624, -0.08547616750001907, -0.022347144782543182, 0.004757886286824942, -0.03882567584514618, -0.03098428249359131, 0.049302972853183746, -0.0494687519967556, -0.05762512981891632, -0.042141277343034744, 0.05106024071574211, -0.0003932094550691545, -0.044627975672483444, -0.024717798456549644, 0.02846442721784115, -0.012748482637107372, 0.03720103204250336, 0.024867000058293343, 0.08786340057849884, 0.0009055732516571879, 0.012052206322550774, 0.005657242611050606, -0.04038400948047638, -0.07135171443223953, 0.049302972853183746, -0.008728316985070705, 0.03786415234208107, 0.00299854576587677, 0.03290732949972153, 0.014199057593941689, -0.0684339851140976, -0.05739303678274155, -0.011886426247656345, 0.0292435921728611, -0.0370352528989315, 0.005831311456859112, -0.011795246973633766, -0.0035808479879051447, -0.026209818199276924, 0.022313987836241722, 0.048838790506124496, 0.02062303200364113, -0.02849758230149746, 0.004869787488132715, -0.028083132579922676, 0.006245761644095182, 0.04661733657121658, 0.02768526040017605, 0.039190392941236496, -0.07108646631240845, 0.02445255033671856, 0.01947914995253086, -0.06478682160377502, -0.06200172007083893, -0.028663363307714462, -0.003396417712792754, -0.02423703670501709, -0.11896373331546783, 0.029691198840737343, 0.021468510851264, 0.03932301700115204, -0.08686871826648712, -0.02756921388208866, -0.0018225439125671983, 0.037632059305906296, 0.0013262400170788169, 0.020573297515511513, 0.05858665332198143, 0.012839660979807377, -0.0026752748526632786, -0.02707187458872795, -0.0398203581571579, -0.0025861680041998625, 0.043169111013412476, -0.02423703670501709, 0.06571519374847412, 0.02796708606183529, 0.027187921106815338, -0.006361807696521282, -0.018335267901420593, -0.0011117621324956417, 0.06730668246746063, 0.003891685511916876, 0.03985351324081421, 0.03105059452354908, -0.042174432426691055, 0.0018660611240193248, 0.014041566289961338, 0.025314606726169586, -0.016868114471435547, 0.0398203581571579, -0.008052763529121876, 0.032161321491003036, -0.012632436119019985, -0.054210059344768524, 0.05052974447607994, 0.058321405202150345, -0.023010265082120895, -0.028331803157925606, 0.08222687989473343, 0.026707159355282784, 0.03335493803024292, -0.0013438541209325194, 0.027055297046899796, 0.024618329480290413, -0.01714165136218071, -0.0790439024567604, 0.05951502174139023, -0.04336804896593094, 0.05188914015889168, -0.007683902978897095, -0.014323391951620579, -0.01572423242032528, -0.06733983755111694, 0.038129400461912155, 0.006709945388138294, -0.018036864697933197, 0.026557955890893936, 0.08202794194221497, -0.04210812225937843, 0.02756921388208866, -0.08295631408691406, -0.02622639574110508, -0.005955646745860577, -0.008545959368348122, 0.03753259405493736, -0.03683631494641304, -0.045125316828489304, -0.008910675533115864, 0.0004688465560320765, 0.04436272755265236, 0.0025405786000192165, -0.027867618948221207, 0.026707159355282784, -0.0152434716001153, 0.011869847774505615, -0.051226019859313965, -0.02345786988735199, -0.0009294041665270925, 0.04588790610432625, 0.04413063824176788, -0.06780402362346649, -0.046119995415210724, 0.018782874569296837, -0.04986662417650223, -0.029674621298909187, -0.03849411755800247, 0.04429641738533974, 0.014066433534026146, -0.05232016742229462, -0.039124079048633575, -0.017904240638017654, -0.0628637745976448, -0.08766446262598038, 0.006175305228680372, 0.003069002414122224, -0.030420631170272827, -0.03743312507867813, -0.002436965936794877, 0.02927674911916256, 0.04247283563017845, -0.012856239452958107, -0.0292435921728611, -0.07566199451684952, -0.0016329330392181873, 0.03975404426455498, 0.04432957246899605, 0.025613009929656982, 0.004217028617858887, -0.005263515282422304, 0.01266559213399887, 0.02871309593319893, -0.05006556212902069, 0.025314606726169586, 0.007480822503566742, -0.0755956843495369, 0.03885883092880249, 0.03799677640199661, -0.04250599443912506, 0.016942717134952545, -0.05987973511219025, -0.0395219512283802, -0.0033632616978138685, 0.035609543323516846, -0.011563154868781567, 0.027353700250387192, -0.0038315902929753065, 0.06777086853981018, -0.011521710082888603, -0.01926363632082939, -0.08839389681816101, -0.018335267901420593, 0.03594110533595085, 0.016130393370985985, -0.015052824281156063, 0.10039637237787247, -0.040450319647789, -0.01944599486887455, 0.021054061129689217, -0.010336383245885372, -0.010096002370119095, -0.024684641510248184, 0.032492879778146744, -0.010585052892565727, 0.062300123274326324, -0.010469007305800915, 0.01785450614988804, -0.007426944095641375, 0.02246318943798542, -0.01866682805120945, -0.026988985016942024, -0.0174234788864851, -0.006469564512372017, -0.024071255698800087, -0.016370775178074837, 0.06956128776073456, 0.04940244182944298, 0.01823580078780651, 0.001078606117516756, -0.04631893336772919, 0.008442346937954426, 0.004869787488132715, 0.04194233939051628, -0.008351167663931847, -0.009291969239711761, -0.014679819345474243, -0.008570825681090355, -0.03945564106106758, -0.039720889180898666, -0.01603921502828598, -0.05036396533250809, -0.03527798503637314, -0.004960966762155294, 0.01564963161945343, 0.06147122383117676, 0.010154025629162788, -0.034084368497133255, 0.010096002370119095, -0.0062208944000303745, -0.005541196558624506, -0.045191626995801926, -0.025082513689994812, -0.037134721875190735, -0.015657920390367508, 0.00006980892067076638, 0.008570825681090355, 0.020490407943725586, -0.02654137834906578, -0.02339155785739422, -0.049203503876924515, 0.060377076268196106, 0.034515395760536194, -0.002227668883278966, -0.01162117812782526, -0.04989977926015854, 0.00922565720975399, -0.03292390704154968, -0.023441292345523834, -0.061338599771261215, -0.03214474394917488, -0.007480822503566742, -0.05046343430876732, -0.04442904144525528, 0.08428255468606949, 0.042638618499040604, -0.009184212423861027, 0.004069899208843708, -0.039157237857580185, 0.004679140634834766, -0.027204498648643494, 0.03033773973584175, -0.005242792423814535, 0.01720796339213848, 0.007667324971407652, 0.008562536910176277, -0.05971395596861839, -0.009747863747179508, -0.021335886791348457, 0.05208807811141014, -0.026674002408981323, -0.02040751837193966, -0.04834144935011864, 0.046716805547475815, 0.01661115698516369, -0.021037481725215912, -0.013859208673238754, -0.03164740279316902, -0.00894383154809475, 0.05052974447607994, -0.007994740270078182, 0.06269799917936325, 0.024402815848588943, 0.05861980840563774, 0.009955089539289474, -0.029906712472438812, -0.004608684219419956, 0.006767968647181988, 0.0031601812224835157, 0.02203216217458248, 0.025496965274214745, -0.02654137834906578, 0.053779032081365585, -0.03378596529364586, 0.06352689862251282, -0.05493949353694916, -0.046219464391469955, 0.031166641041636467, 0.038195714354515076, -0.010974636301398277, -0.04645155742764473, 0.0395219512283802, 0.062300123274326324, -0.09469353407621384, 0.0008485863800160587, -0.07771766185760498, -0.04492637887597084, -0.045224785804748535, -0.02796708606183529, 0.030188538134098053, 0.012093651108443737, 0.016022637486457825, -0.052751198410987854, -0.0259777270257473, 0.016561422497034073, -0.018186066299676895, 0.02494988963007927, 0.012093651108443737, 0.042638618499040604, -0.06657724827528, -0.004136211238801479, -0.03773152828216553, 0.006461275741457939, 0.005338116083294153, -0.013792896643280983, 0.04025138542056084, -0.025397496297955513, -0.0379636213183403, 0.016304463148117065, -0.025148825719952583, -0.00998824555426836, 0.13043570518493652, -0.009524061344563961, 0.046252619475126266, 0.0046667070128023624, -0.013278977945446968, 0.04446219652891159, -0.05440899729728699, 0.03322231397032738, 0.027022140100598335, 0.04330173507332802, -0.03948879614472389, 0.05490633845329285, -0.025496965274214745, -0.008280711248517036, -0.004919521510601044, -0.013179509900510311, 0.014124455861747265, 0.032492879778146744, -0.043633297085762024, -0.006481998134404421, -0.005002411548048258, 0.014223923906683922, 0.01132277399301529, -0.04035085439682007, -0.04638524353504181, 0.02040751837193966, 0.0643889531493187, 0.05868612229824066, 0.06415686011314392, 0.025878258049488068, 0.04960137605667114, -0.030006179586052895, 0.015583320520818233, -0.005615797359496355, 0.019495727494359016, -0.01873314008116722, -0.008512803353369236, -0.0021364898420870304, 0.05046343430876732, 0.015749100595712662, -0.009905355051159859, 0.05510527268052101, -0.013535937294363976, -0.03574216738343239, -0.04588790610432625, 0.019843867048621178, 0.00029736789292655885, 0.00931683648377657, -0.05891821160912514, 0.017440056428313255, -0.030188538134098053, 0.005234503652900457, -0.020871702581644058, -0.030288007110357285, -0.04678311571478844, 0.002256680279970169, 0.0444953516125679, 0.02934306114912033, 0.023126309737563133, -0.0010837867157533765, -0.060343921184539795, 0.030719034373760223, -0.028265491127967834, 0.0011563155567273498, 0.04678311571478844, -0.015906590968370438, 0.03269181773066521, -0.05056289955973625, -0.019329948350787163, 0.032061852514743805, 0.017506368458271027, 0.05546998977661133, 0.013519358821213245, -0.04134553298354149, 0.04751254990696907, 0.06117282062768936, 0.01997649110853672, -0.03497958183288574, 0.015019668266177177, -0.030702456831932068, 0.09124531596899033, 0.029923290014266968, -0.03938932716846466, 0.03594110533595085, 0.01311319787055254, 0.008056907914578915, -0.03895829990506172, 0.059382397681474686, -0.005425150506198406, 0.061305444687604904, 0.011952738277614117, 0.024535439908504486, -0.10437508672475815, 0.06196856498718262, 0.03895829990506172, -0.03743312507867813, 0.023126309737563133, -0.018053442239761353, 0.030719034373760223, 0.031133484095335007, 0.0027312254533171654, -0.009631818160414696, 0.005868612322956324, 0.07712085545063019, 0.03481379896402359, 0.005242792423814535, -0.019329948350787163, -0.07765135169029236, -0.00690059270709753, -0.021700602024793625, 0.06780402362346649, -0.012731904163956642, 0.032161321491003036, 0.0035559809766709805, -0.0247343759983778, 0.0029840399511158466, -0.011869847774505615, -0.0150113794952631, -0.0033342503011226654, 0.044097479432821274, 0.003021340584382415, -0.052784353494644165, -0.006995915900915861, -0.045257940888404846, 0.008935541845858097, 0.012060495093464851, 0.05096077173948288, -0.019048122689127922, 0.03842780366539955, -0.0001249178167199716, 0.011571444571018219, -0.039654575288295746, 0.024154147133231163, 0.015541874803602695, 0.008968697860836983, 0.007484966889023781, 0.05646466836333275, 0.033553872257471085, 0.023358402773737907, 0.00043361831922084093, 0.008396756835281849, 0.04038400948047638, -0.02707187458872795, 0.01071767695248127, 0.0057649994269013405, 0.02025831677019596, 0.01132277399301529, -0.08010489493608475, 0.012872816994786263, -0.04529109597206116, 0.04346751794219017, -0.021385619416832924, -0.010891745798289776, -0.004695718642324209, -0.011331062763929367, -0.016229862347245216, 0.006540020927786827, 0.01124817319214344, -0.06803611665964127, 0.03975404426455498, 0.005586786195635796, 0.043765921145677567, 0.0017023533582687378, -0.04101397097110748, -0.04028454050421715, 0.01991017907857895, 0.05490633845329285, -0.002834838116541505, -0.07068859040737152, 0.021518243476748466, -0.020357783883810043, 0.0021012616343796253, 0.01123159471899271, 0.01745663397014141, -0.04910403862595558, -0.029541997238993645, 0.012259431183338165, 0.051259178668260574, -0.010783988982439041, 0.02728738822042942, -0.035045892000198364, 0.03690262883901596, 0.012814794667065144, 0.010609920136630535, -0.03630582243204117, 0.0018474109238013625, 0.037101563066244125, 0.06402423977851868, 0.052784353494644165, 0.044097479432821274, -0.005905912723392248, 0.009839043021202087, -0.0109663475304842, -0.009184212423861027, 0.016345908865332603, 0.011372508481144905, 0.07705454528331757, -0.0018981810426339507, -0.040450319647789, -0.041610781103372574, -0.010618208907544613, 0.00005478510865941644, -0.009822465479373932, 0.046219464391469955, -0.043202269822359085, -0.03073561191558838, 0.014522328041493893, 0.0028203323017805815, -0.038162555545568466, -0.006813558284193277, 0.01487046666443348, 0.03849411755800247, -0.013353579677641392, 0.031150061637163162, 0.014232213608920574, -0.02669057995080948, 0.0006802160642109811, -0.06163700670003891, -0.010634787380695343, -0.003918624948710203, 0.028613628819584846, 0.013444758020341396, 0.03101743757724762, 0.023806007578969002, 0.014199057593941689, 0.03129926323890686, 0.014754420146346092, -0.07692192494869232, 0.049302972853183746, -0.006991771515458822, 0.032841019332408905, 0.010154025629162788, 0.02377285249531269, -0.05997920408844948, 0.05865296348929405, -0.006850858684629202, 0.00018546637147665024, -0.013022019527852535, 0.039124079048633575, -0.03385227546095848, -0.038626741617918015, 0.037068407982587814, 0.012002471834421158, -0.0085542481392622, -0.029724353924393654, -0.003978719934821129, -0.0250493586063385, 0.02249634638428688, -0.08003858476877213, -0.039588265120983124, 0.049634531140327454, 0.004156933631747961, 0.06060916930437088, -0.03783099725842476, -0.02601088210940361, -0.024883577600121498, 0.008968697860836983, 0.001178074162453413, -0.03080192394554615, 0.015185448341071606, 0.009955089539289474, 0.010410984046757221, 0.0045796725898981094, 0.037565749138593674, 0.0331394225358963, 0.029541997238993645, 0.023888899013400078, 0.017025606706738472, 0.057359881699085236, 0.022595813497900963, -0.05812246724963188, 0.04250599443912506, 0.01064307615160942, -0.01201076153665781, -0.007733637001365423, -0.06352689862251282, -0.016022637486457825 ]
20,246
pandas_datareader.data
get_markets_iex
Returns near-real time volume data across markets segregated by tape and including a percentage of overall volume during the session This endpoint does not accept any parameters. Reference: https://www.iextrading.com/developer/docs/#markets Returns ------- DataFrame
def get_markets_iex(*args, **kwargs): """ Returns near-real time volume data across markets segregated by tape and including a percentage of overall volume during the session This endpoint does not accept any parameters. Reference: https://www.iextrading.com/developer/docs/#markets Returns ------- DataFrame """ from pandas_datareader.iex.market import MarketReader return MarketReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.026260970160365105, -0.09897948801517487, 0.009222924709320068, -0.02649560384452343, 0.027650725096464157, 0.02499755471944809, -0.043641939759254456, -0.02855316363275051, 0.03468974679708481, 0.036512672901153564, 0.03804682195186615, -0.030015114694833755, -0.0713648647069931, 0.021622434258461, -0.03625999018549919, -0.02826438471674919, -0.04003218561410904, 0.05179998651146889, 0.023734141141176224, -0.01794048398733139, 0.015855850651860237, -0.005017559975385666, -0.0026892677415162325, -0.030376091599464417, 0.012769509106874466, 0.028029749169945717, 0.03403999283909798, -0.024022921919822693, 0.02949170023202896, 0.024546336382627487, 0.0013017680030316114, 0.022290239110589027, -0.047396086156368256, 0.03606145456433296, -0.057178523391485214, -0.006908169016242027, -0.017778044566512108, -0.012255119159817696, -0.02932926081120968, 0.021189263090491295, -0.0403931625187397, -0.06934339553117752, 0.1361599713563919, -0.0002777819463517517, -0.08793363720178604, -0.01516999676823616, -0.0013976520858705044, -0.06905461847782135, 0.07472193241119385, -0.017389995977282524, -0.02348145842552185, 0.07616584002971649, 0.059236083179712296, -0.010666826739907265, 0.02310243435204029, -0.015919020399451256, -0.012182923965156078, 0.04302828386425972, 0.012246094644069672, 0.05046438053250313, -0.024600481614470482, 0.007571461610496044, 0.04060974717140198, 0.021640483289957047, -0.042883891612291336, 0.004886706359684467, -0.017344873398542404, 0.003334511537104845, -0.06974047422409058, -0.021478043869137764, 0.01945658028125763, -0.02106292173266411, -0.02676633559167385, 0.03216291964054108, -0.08439607918262482, -0.007945973426103592, -0.03625999018549919, -0.03582682088017464, -0.030700968578457832, 0.025394627824425697, -0.02216389775276184, -0.0076391445472836494, 0.012814631685614586, 0.05497657135128975, 0.02734389714896679, 0.014827069826424122, 0.025520969182252884, 0.03739706426858902, 0.05465169623494148, 0.037830233573913574, -0.012200972996652126, 0.015106826089322567, -0.005283779464662075, -0.009475607424974442, -0.034346822649240494, -0.03898535668849945, -0.04425559937953949, 0.018644386902451515, -0.003106645541265607, 0.001175426528789103, -0.04060974717140198, 0.029257066547870636, 0.01329292356967926, -0.009917802177369595, -0.08020876348018646, -0.011424875818192959, -0.004090304020792246, -0.00924999825656414, 0.02600828744471073, 0.011163168586790562, -0.008194144815206528, 0.04237852618098259, 0.021676581352949142, -0.03286682069301605, -0.03241560235619545, 0.03541170060634613, 0.014393899589776993, 0.02922096848487854, -0.010585607029497623, -0.04638535529375076, -0.018445849418640137, 0.06403706222772598, 0.015314387157559395, 0.01140682678669691, 0.02434779889881611, -0.015801703557372093, 0.016947800293564796, -0.03259608894586563, 0.0093943877145648, 0.027217553928494453, 0.03858828544616699, 0.015242191962897778, 0.05400193855166435, 0.01484511885792017, 0.029473651200532913, -0.0013953960733488202, 0.07190632820129395, -0.025863897055387497, 0.0071698762476444244, 0.048515111207962036, -0.01315755769610405, -0.000357591372448951, -0.03905755281448364, 0.0008341918583028018, -0.04530242830514908, -0.011903167702257633, -0.007160852197557688, -0.0629541352391243, 0.030177554115653038, -0.030412187799811363, 0.0286614578217268, 0.016054386273026466, -0.08158046752214432, -0.036783404648303986, 0.03463560342788696, -0.025105847045779228, 0.0005169282085262239, 0.02895023673772812, 0.01358170434832573, 0.017371946945786476, -0.05656486377120018, 0.007918900810182095, -0.00952975358814001, 0.011767801828682423, -0.07616584002971649, 0.0516555979847908, -0.08259119838476181, 0.023661945015192032, 0.008798778057098389, 0.026351213455200195, 0.032379504293203354, 0.06461461633443832, -0.03456340730190277, -0.0676829144358635, 0.04642145335674286, -0.023228775709867477, 0.011722680181264877, 0.014267557300627232, -0.013924631290137768, 0.005157437641173601, -0.029275115579366684, -0.0554458424448967, -0.06685266643762589, 0.03234340623021126, -0.00807682704180479, -0.029166823253035545, 0.05042828246951103, 0.006727681495249271, -0.04360584542155266, -0.010856338776648045, 0.017814142629504204, 0.017399020493030548, -0.02864340879023075, -0.004148962441831827, -0.028029749169945717, -0.014348777011036873, 0.024690726771950722, 0.024744872003793716, -0.055662427097558975, 0.04172877222299576, -0.04360584542155266, 0.04187316074967384, 0.03815511241555214, -0.04620486870408058, -0.015404630452394485, -0.024022921919822693, -0.030412187799811363, -0.07259217649698257, -0.08374632149934769, -0.02312048338353634, -0.020629750564694405, 0.006294510792940855, 0.005536462180316448, 0.009186827577650547, 0.013969752937555313, 0.08981071412563324, -0.012336338870227337, -0.01775999553501606, 0.05244974419474602, 0.025899993255734444, 0.011957314796745777, -0.04855120927095413, -0.033498529344797134, 0.04021267220377922, 0.029275115579366684, -0.0286614578217268, 0.04678243026137352, 0.04407511278986931, -0.013969752937555313, -0.031224383041262627, -0.040718041360378265, 0.026333164423704147, 0.006474998313933611, -0.00523414509370923, -0.04151218757033348, -0.01983560435473919, 0.02848096936941147, -0.01277853362262249, -0.004746828228235245, -0.00584780378267169, 0.022236092016100883, -0.024113165214657784, -0.0034540845081210136, 0.04624096676707268, -0.05057267099618912, -0.052846815437078476, 0.02857121266424656, 0.04555511102080345, -0.0460604764521122, -0.008324998430907726, 0.047684866935014725, -0.013870484195649624, 0.05865852162241936, 0.03163950517773628, 0.04385852813720703, -0.06136583909392357, -0.039310235530138016, 0.0460243783891201, 0.0018003653967753053, -0.05797266960144043, -0.020142434164881706, -0.018734630197286606, -0.006962315645068884, -0.029545847326517105, -0.007445120252668858, 0.04746828228235245, 0.021117068827152252, -0.0295999925583601, 0.023698043078184128, 0.008776217699050903, -0.06450632959604263, 0.05804486572742462, 0.024022921919822693, 0.0018308227881789207, -0.0090379249304533, -0.03880487009882927, 0.019781459122896194, -0.004972437862306833, -0.031116090714931488, 0.002696035895496607, -0.01847292296588421, -0.0010107314446941018, 0.004410669673234224, -0.00235987757332623, -0.005536462180316448, -0.06472291052341461, 0.021820969879627228, 0.0010011430131271482, 0.017029020935297012, -0.02669413946568966, -0.02084633708000183, 0.029058530926704407, -0.051258526742458344, -0.06003022938966751, 0.005374023225158453, 0.033408284187316895, -0.04079023376107216, -0.06937949359416962, 0.052269257605075836, 0.022777555510401726, -0.00852353498339653, -0.018265360966324806, 0.01780511811375618, 0.02122536115348339, 0.005581584293395281, 0.06335120648145676, 0.033011212944984436, -0.0014258533483371139, -0.0234995074570179, -0.05551803484559059, 0.027686823159456253, 0.05901949852705002, -0.02902243286371231, -0.02857121266424656, -0.050392184406518936, -0.030123407021164894, -0.04436389356851578, 0.03156730905175209, 0.015630239620804787, 0.006317071616649628, 0.012715362943708897, 0.03026779741048813, 0.03450926020741463, -0.026712188497185707, 0.06811608374118805, 0.04855120927095413, -0.01691170409321785, 0.009502680972218513, 0.00584780378267169, -0.011551217176020145, 0.008329510688781738, 0.011433899402618408, 0.032541945576667786, 0.013274875469505787, -0.029906822368502617, -0.011488046497106552, -0.0042256698943674564, -0.005297315772622824, 0.042883891612291336, 0.04057364910840988, 0.00542365713045001, -0.05382145196199417, 0.0026824993547052145, 0.010089266113936901, 0.0075443885289132595, -0.027939505875110626, 0.0827355906367302, -0.07165364176034927, -0.0015206093667075038, 0.11977168172597885, 0.029942920431494713, 0.07078730314970016, 0.042992185801267624, 0.058008767664432526, 0.03403999283909798, 0.05216096341609955, -0.021026823669672012, 0.012228045612573624, -0.0469990149140358, -0.02913072519004345, 0.005987681448459625, -0.0034382918383926153, 0.0277048721909523, 0.023337068036198616, -0.057178523391485214, -0.07594925165176392, 0.06049949675798416, 0.02846292033791542, 0.013915606774389744, 0.057359009981155396, -0.024907311424613, -0.025719506666064262, -0.034346822649240494, 0.026531701907515526, -0.03319169953465462, -0.001993261743336916, -0.025430725887417793, -0.05815315619111061, 0.008315973915159702, 0.00930414441972971, 0.02312048338353634, -0.016126582399010658, 0.008338534273207188, 0.0035014625173062086, 0.11074729263782501, 0.022867798805236816, -0.0013626826694235206, -0.026062432676553726, 0.0432087704539299, -0.0038737186696380377, -0.010206582956016064, -0.025214141234755516, 0.03420243039727211, -0.0075579253025352955, -0.020539507269859314, -0.05057267099618912, -0.0019503958756104112, -0.019673166796565056, -0.03891316056251526, 0.02019658125936985, -0.0033367674332112074, -0.03699999302625656, 0.0286614578217268, -0.03127852827310562, -0.05439901351928711, -0.041945356875658035, 0.015142923220992088, -0.10201168060302734, -0.013085362501442432, -0.05100584030151367, -0.007806095760315657, 0.014854143373668194, -0.0090379249304533, 0.021279508247971535, 0.010585607029497623, 0.055481936782598495, 0.05421852320432663, -0.05927218124270439, -0.007508290931582451, 0.05479608476161957, 0.03562828525900841, -0.02694682404398918, -0.025809749960899353, 0.04151218757033348, 0.04237852618098259, -0.01624389924108982, -0.03127852827310562, -0.005392071790993214, -0.0019210666650906205, 0.03331804275512695, -0.03467169776558876, -0.040429260581731796, -0.06273754686117172, -0.0025448775850236416, 0.037360966205596924, -0.022398531436920166, -0.02497950568795204, -0.04999510943889618, -0.0309897493571043, 0.060463402420282364, 0.021658532321453094, -0.006429876666516066, 0.030231701210141182, 0.03129657730460167, -0.00949365645647049, -0.05627608299255371, -0.03797462582588196, 0.07732095569372177, 0.008532559499144554, -0.014159264974296093, 0.041295599192380905, -0.020034141838550568, 0.05804486572742462, -0.025539018213748932, 0.024853164330124855, -0.015269264578819275, 0.0639287680387497, 0.03474389389157295, -0.03985169902443886, -0.004701706115156412, 0.03441901504993439, -0.004453535657376051, 0.013509509153664112, -0.050319988280534744, 0.027271701022982597, -0.020449263975024223, -0.03674731031060219, -0.04595218598842621, 0.010179510340094566, -0.00758499838411808, -0.01954682543873787, 0.03840779513120651, -0.03413023799657822, -0.02292194589972496, 0.004841584246605635, 0.04201755300164223, -0.03624194115400314, -0.024456091225147247, -0.028787799179553986, -0.023066336289048195, -0.06132974103093147, -0.04584389179944992, 0.04172877222299576, 0.03362486883997917, -0.011912192218005657, 0.02566535957157612, 0.004715242888778448, 0.005116828251630068, 0.027831213548779488, -0.082663394510746, -0.023607799783349037, 0.09536973387002945, 0.03710828348994255, 0.046277061104774475, 0.013843411579728127, 0.04959803819656372, 0.03394974768161774, 0.026369262486696243, 0.002601279877126217, 0.02669413946568966, 0.04396681860089302, 0.002203078707680106, 0.037830233573913574, -0.02685657888650894, -0.0012916155392304063, -0.016027312725782394, -0.005748535506427288, -0.05504876747727394, 0.03981560096144676, -0.026152677834033966, 0.023138530552387238, 0.007264632731676102, -0.009466582909226418, 0.0324336513876915, -0.014195363037288189, 0.013401216827332973, -0.003163048066198826, 0.027831213548779488, 0.02358975075185299, 0.0197453610599041, 0.06360388547182083, -0.005243169609457254, 0.03375121206045151, 0.012345363385975361, 0.007011949550360441, 0.019203897565603256, 0.016361216083168983, 0.03981560096144676, -0.01046829018741846, 0.010748046450316906, -0.016009265556931496, 0.00367743824608624, -0.05320779234170914, -0.043244868516922, -0.03786633163690567, -0.0742887631058693, 0.016045361757278442, -0.01992584951221943, 0.08490144461393356, 0.0036074991803616285, -0.000970121705904603, 0.008379144594073296, 0.03015950508415699, -0.058405838906764984, 0.005721461959183216, -0.037721943110227585, -0.042883891612291336, 0.014312679879367352, 0.05457950010895729, 0.0178502406924963, 0.030574627220630646, -0.03609755262732506, 0.04689072072505951, -0.0638926699757576, 0.06623900681734085, 0.07010144740343094, -0.024853164330124855, 0.013265850953757763, -0.088294617831707, -0.02451023831963539, 0.06649169325828552, -0.012273168191313744, 0.05797266960144043, 0.01952877640724182, 0.03441901504993439, -0.019492678344249725, 0.03739706426858902, -0.0030840847175568342, -0.019113654270768166, -0.05833364650607109, -0.003830852685496211, 0.02499755471944809, 0.07096778601408005, 0.023138530552387238, 0.009412436746060848, -0.02949170023202896, -0.03485218808054924, -0.05465169623494148, -0.007566949352622032, -0.04310047626495361, 0.03297511488199234, -0.035483893007040024, 0.013599753379821777, -0.04208974540233612, 0.004629510920494795, 0.024961458519101143, 0.020124385133385658, 0.010820241644978523, -0.018111947923898697, 0.09147119522094727, 0.023932676762342453, -0.048515111207962036, 0.0060689011588692665, 0.037433162331581116, 0.023932676762342453, -0.015215118415653706, -0.04079023376107216, -0.031603407114744186, -0.014962435699999332, -0.032271213829517365, -0.032559990882873535, 0.07078730314970016, -0.010287802666425705, -0.024654628708958626, -0.01804877631366253, -0.04465267434716225, 0.029076578095555305, 0.009890729561448097, 0.01277853362262249, -0.0563482791185379, 0.03858828544616699, 0.026531701907515526, -0.01342828944325447, -0.017056094482541084, 0.004760365001857281, 0.02622487209737301, 0.04259511083364487, 0.00624487642198801, 0.0060553643852472305, -0.061401937156915665, -0.03411218896508217, 0.008315973915159702, -0.056889742612838745, -0.004500913433730602, 0.01771487481892109, -0.015648288652300835, 0.032469749450683594, 0.014168289490044117, 0.023517556488513947, -0.07659900933504105, 0.036783404648303986, 0.024600481614470482, 0.04479706287384033, -0.004090304020792246, 0.03380535915493965, 0.003165304195135832, 0.00847841240465641, 0.0002790509897749871, -0.0949365645647049, 0.013933655805885792, 0.02658584713935852, 0.038082920014858246, -0.004485120996832848, 0.01610853336751461, 0.014393899589776993, -0.020593654364347458, -0.03647657856345177, 0.0073954863473773, 0.05432681739330292, -0.001101539353840053, 0.012146826833486557, -0.03579072281718254, 0.033679015934467316, 0.005410120822489262, -0.05927218124270439, 0.06003022938966751, 0.017597556114196777, -0.004994998686015606, 0.018148044124245644, -0.05963315814733505, -0.024167312309145927, -0.0030728040728718042, -0.01775999553501606, 0.04595218598842621, 0.10749851167201996, -0.017453167587518692, -0.04912877082824707, -0.03505072370171547, 0.007323291152715683, 0.042053647339344025, 0.03167560324072838, 0.05880291387438774, 0.02124341018497944, 0.003129206597805023, -0.0035082309041172266, 0.016009265556931496, -0.02470877580344677, -0.011244387365877628, 0.018021702766418457, 0.07208681106567383, -0.052269257605075836, -0.002910365117713809, 0.04017657786607742, 0.02913072519004345, -0.059416573494672775, -0.0006700608064420521, -0.009322193451225758, -0.003133718855679035, 0.0018748166039586067, -0.07681559026241302, -0.004539267159998417, -0.027470238506793976, -0.006799876689910889, 0.01052243635058403, 0.0038240845315158367, -0.05006730556488037, 0.003219450591132045, 0.010901461355388165, -0.0015634752344340086, 0.005319877061992884, -0.035375602543354034, 0.027957554906606674, 0.03326389566063881, 0.04912877082824707, 0.043533649295568466, -0.018391702324151993, -0.027506334707140923, 0.014429996721446514, -0.06418144702911377, -0.04761267080903053, -0.00695329112932086, -0.004315913654863834, -0.00023308303207159042, 0.0535687692463398, 0.05179998651146889, 0.04808194190263748, 0.025322433561086655, 0.024582432582974434, -0.05053657293319702, 0.0460604764521122, 0.009358290582895279, -0.03671121224761009, -0.014168289490044117, 0.05443510785698891, -0.0704263225197792, 0.024636579677462578, -0.03981560096144676, 0.06746632605791092, 0.02104487270116806, 0.035556089133024216, 0.04014047980308533, 0.026748286560177803, 0.03129657730460167, -0.02875170111656189, 0.02046731300652027, -0.05060876905918121, -0.04822633042931557, -0.008216705173254013, 0.043930720537900925, -0.04970632866024971, 0.001789084984920919, -0.00901536364108324, -0.052088767290115356, -0.03411218896508217, 0.0051258523017168045, 0.004886706359684467, 0.014682679437100887, 0.028119994327425957, 0.02046731300652027, -0.002772743348032236, 0.004498657304793596, 0.0012419814011082053, -0.022218042984604836, 0.009647071361541748, 0.02151414193212986, 0.04028486832976341, 0.015206093899905682, -0.0036593894474208355, -0.012814631685614586, 0.01671316660940647, -0.0038962794933468103, -0.04075413569808006, 0.041006818413734436, 0.0010282162111252546, -0.004773901309818029, -0.017687801271677017, -0.023716092109680176, -0.015530971810221672 ]
20,247
pandas_datareader.nasdaq_trader
get_nasdaq_symbols
Get the list of all available equity symbols from Nasdaq. Returns ------- nasdaq_tickers : pandas.DataFrame DataFrame with company tickers, names, and other properties.
def get_nasdaq_symbols(retry_count=3, timeout=30, pause=None): """ Get the list of all available equity symbols from Nasdaq. Returns ------- nasdaq_tickers : pandas.DataFrame DataFrame with company tickers, names, and other properties. """ global _ticker_cache if timeout < 0: raise ValueError("timeout must be >= 0, not %r" % (timeout,)) if pause is None: pause = timeout / 3 elif pause < 0: raise ValueError("pause must be >= 0, not %r" % (pause,)) if _ticker_cache is None: while retry_count > 0: try: _ticker_cache = _download_nasdaq_symbols(timeout=timeout) retry_count = -1 except RemoteDataError: # retry on any exception retry_count -= 1 if retry_count <= 0: raise else: time.sleep(pause) return _ticker_cache
(retry_count=3, timeout=30, pause=None)
[ 0.0006880991859361529, -0.04660198464989662, -0.029534490779042244, -0.06514444947242737, -0.007361673749983311, 0.0527476891875267, -0.07747097313404083, -0.07964830845594406, 0.08140422403812408, 0.007541655097156763, 0.004148349165916443, -0.025987543165683746, -0.017322102561593056, 0.013625901192426682, -0.014459960162639618, -0.029692523181438446, 0.009613635018467903, 0.03129040449857712, -0.04625080153346062, -0.03975391760468483, -0.06521468609571457, 0.05615416169166565, -0.014521417208015919, 0.011308092623949051, 0.01792789250612259, 0.06507421284914017, 0.00598767027258873, 0.001947968266904354, -0.05025428906083107, 0.04653174802660942, 0.025671478360891342, 0.028832124546170235, -0.049903105944395065, 0.04705852270126343, 0.009280011057853699, 0.04575914517045021, 0.026408962905406952, -0.06900746375322342, -0.021580195054411888, 0.02625093050301075, 0.02029837854206562, -0.09453846514225006, 0.07234369963407516, -0.07118479907512665, -0.008516187779605389, -0.03232639655470848, 0.01569787971675396, -0.000709499407093972, 0.04663710296154022, -0.0376468189060688, 0.01203679759055376, 0.04129912331700325, 0.0037642428651452065, 0.011922663077712059, -0.03676886111497879, 0.01943797990679741, -0.022212324663996696, 0.07557458430528641, 0.04105329513549805, 0.02486375719308853, -0.027357157319784164, -0.018226398155093193, 0.003077241126447916, 0.041650306433439255, 0.0009855072712525725, 0.026005102321505547, 0.002491204533725977, -0.03215080499649048, -0.016944579780101776, -0.06222962960600853, 0.05457384139299393, 0.018279075622558594, -0.03129040449857712, -0.01618075743317604, -0.011343210935592651, -0.012071915902197361, -0.02159775421023369, -0.028832124546170235, -0.05387147516012192, 0.0008318647742271423, -0.055732741951942444, 0.028252672404050827, -0.005759401246905327, -0.01619831658899784, 0.008103547617793083, 0.03580310940742493, 0.047620415687561035, 0.08365179598331451, 0.022194765508174896, -0.02844582311809063, -0.0024758402723819017, -0.051342956721782684, -0.010201866738498211, -0.0036215747240930796, -0.042352672666311264, -0.06458255648612976, 0.028340468183159828, -0.006308124866336584, 0.009780446998775005, -0.005750621668994427, -0.016733869910240173, -0.017734741792082787, -0.03067583590745926, 0.021492401137948036, -0.05316910892724991, -0.027269361540675163, -0.06683012843132019, -0.0006540783797390759, 0.03434569761157036, -0.005136051680892706, -0.0601576492190361, 0.05341493710875511, 0.0894814282655716, -0.03999974578619003, 0.02163287252187729, 0.015864692628383636, 0.02310784161090851, 0.03810335695743561, 0.025302736088633537, -0.03603137657046318, 0.010412576608359814, 0.07634718716144562, -0.02918330766260624, 0.027602985501289368, 0.028077080845832825, 0.053590528666973114, 0.012300184927880764, 0.029411576688289642, 0.014187793247401714, 0.03501294553279877, 0.08695290982723236, 0.020614443346858025, 0.03922714293003082, 0.05531132593750954, 0.02932378090918064, 0.04108841344714165, 0.020737357437610626, -0.024582810699939728, -0.022089410573244095, -0.07810310274362564, -0.008006972260773182, -0.03511830046772957, -0.0525720976293087, 0.049200739711523056, 0.029780318960547447, 0.008893709629774094, -0.029464254155755043, -0.08006972819566727, -0.05004357919096947, -0.04129912331700325, 0.020825153216719627, 0.02776101604104042, -0.02911307103931904, -0.04056163877248764, -0.006084245629608631, -0.01684800535440445, 0.01384538970887661, 0.00149143033195287, 0.0005745134549215436, 0.025917306542396545, -0.039508089423179626, -0.0032440531067550182, -0.025267617776989937, -0.04790136218070984, -0.040210455656051636, 0.014486298896372318, -0.03676886111497879, -0.06479326635599136, 0.017014816403388977, 0.04934121295809746, -0.004115425981581211, 0.04214196279644966, -0.018507344648241997, -0.06054395064711571, -0.055908333510160446, -0.04038604721426964, -0.051342956721782684, -0.0340120755136013, 0.034064751118421555, -0.0601225309073925, -0.0601576492190361, -0.03531145304441452, -0.05007869750261307, -0.02779613435268402, 0.0064881062135100365, 0.03202788904309273, 0.02173822745680809, 0.001280720578506589, -0.006281786132603884, 0.010307221673429012, -0.00044501470983959734, 0.028621414676308632, 0.014732127077877522, 0.04786624386906624, 0.011545141227543354, -0.07817333936691284, -0.008503018878400326, 0.0599469393491745, -0.09390633553266525, 0.0376819372177124, 0.004135179799050093, 0.09383609890937805, 0.014416062273085117, -0.05871779844164848, 0.013994642533361912, -0.046075209975242615, -0.034187667071819305, -0.05538155883550644, 0.018437108024954796, 0.027286920696496964, 0.025917306542396545, 0.023792648687958717, -0.038595013320446014, 0.007870889268815517, -0.06345877051353455, 0.07199251651763916, 0.06633847206830978, -0.004227365367114544, 0.08519700169563293, -0.034960269927978516, -0.030201738700270653, -0.07283535599708557, -0.0023770700208842754, 0.004947290755808353, -0.03596113994717598, 0.03673374280333519, 0.007682128343731165, 0.07824357599020004, 0.03610161319375038, -0.1274794340133667, -0.03067583590745926, 0.04930609464645386, 0.023581938818097115, -0.03534657135605812, 0.03957832604646683, -0.040245573967695236, 0.013977083377540112, 0.018243957310914993, 0.021966496482491493, 0.01950821653008461, -0.005109712947160006, -0.01564520224928856, -0.02182602323591709, 0.009174656122922897, 0.01600516587495804, 0.011624157428741455, 0.0019216295331716537, 0.03227371722459793, -0.012537233531475067, -0.030570480972528458, -0.017840096727013588, -0.056680936366319656, 0.03736587241292, -0.01619831658899784, 0.021246572956442833, -0.0526423342525959, -0.017076274380087852, 0.01458287425339222, 0.006843679118901491, -0.03323947265744209, -0.014337046071887016, 0.008424002677202225, -0.06848068535327911, -0.006663697771728039, -0.016962138935923576, 0.03697957098484039, -0.03817359358072281, 0.03162403032183647, 0.009192215278744698, -0.015162326395511627, -0.0014332656282931566, 0.006545173469930887, -0.0375063456594944, -0.007598722353577614, 0.019859399646520615, 0.01700603775680065, 0.021931378170847893, -0.041755661368370056, -0.00868299975991249, -0.027374716475605965, -0.0448460690677166, 0.059560637921094894, 0.019929636269807816, -0.01352054625749588, -0.002783125266432762, 0.01698847860097885, -0.021580195054411888, -0.034222785383462906, 0.043722283095121384, 0.00800258293747902, -0.03395939618349075, 0.004451244603842497, 0.030201738700270653, -0.006913915742188692, 0.04709364101290703, 0.009727769531309605, -0.03067583590745926, -0.019876958802342415, 0.03975391760468483, 0.03683909773826599, -0.024354541674256325, -0.023581938818097115, 0.027989285066723824, 0.06240522116422653, 0.0061852107755839825, -0.012080695480108261, 0.037822410464286804, 0.04884955659508705, -0.0047278013080358505, -0.03676886111497879, -0.004132985137403011, 0.007392402272671461, 0.0597362294793129, 0.008582035079598427, 0.034187667071819305, -0.06819973886013031, -0.09446822851896286, 0.032607343047857285, 0.023406347259879112, -0.02112365886569023, -0.021984055638313293, 0.026689909398555756, 0.025162262842059135, -0.03905155137181282, -0.026566995307803154, 0.022633744403719902, -0.021211454644799232, 0.0039003263227641582, -0.019332624971866608, -0.017822537571191788, 0.029832996428012848, -0.0337662473320961, -0.021299250423908234, 0.005548691377043724, 0.006132533308118582, 0.013011330738663673, 0.022703981027007103, 0.014898939058184624, 0.03517097979784012, 0.0008406443521380424, -0.006246667820960283, -0.005689164623618126, -0.06398554146289825, 0.007216810714453459, -0.03922714293003082, -0.03831406682729721, 0.028744328767061234, -0.006084245629608631, -0.003722539870068431, 0.01961357146501541, 0.012124593369662762, 0.03518853709101677, 0.019771603867411613, 0.08182564377784729, 0.08203635364770889, 0.030956782400608063, 0.015056971460580826, 0.02992079220712185, -0.01279184129089117, 0.007462638895958662, -0.006624189671128988, 0.033994514495134354, -0.02163287252187729, 0.02547832764685154, -0.025934865698218346, -0.06233498454093933, 0.043757401406764984, 0.01695336028933525, 0.02310784161090851, -0.006628579460084438, -0.04431929439306259, -0.013213261030614376, 0.0019117525080218911, 0.009657532908022404, 0.022019173949956894, -0.018208838999271393, -0.0024780351668596268, -0.03000858798623085, -0.004762919619679451, -0.028832124546170235, -0.00800258293747902, -0.06328317523002625, -0.0008214390254579484, -0.0035403636284172535, 0.08070185780525208, 0.0009405119926668704, 0.0038476488552987576, 0.05179949477314949, 0.030342211946845055, -0.015478391200304031, -0.04726923257112503, -0.0522911511361599, 0.0071904719807207584, 0.08512676507234573, -0.031114814803004265, 0.00020302768098190427, 0.022756658494472504, -0.010930570773780346, -0.05639998987317085, -0.02180846408009529, 0.014170234091579914, 0.01582079380750656, 0.04284432902932167, -0.007976244203746319, 0.012063136324286461, -0.0025965594686567783, 0.04073723033070564, -0.10949886590242386, -0.015741778537631035, -0.03905155137181282, -0.00016242214769590646, -0.0023353670258075, -0.0010189794702455401, -0.027339598163962364, -0.031852297484874725, 0.0598767027258873, -0.03153623268008232, 0.02769077941775322, 0.07002589106559753, 0.046040091663599014, 0.00046614056918770075, -0.12544256448745728, -0.04347645491361618, 0.04003486409783363, 0.049095384776592255, 0.06935864686965942, 0.022247442975640297, 0.02916574850678444, -0.03278293460607529, -0.017901554703712463, 0.02409115433692932, 0.01957845315337181, -0.03803312033414841, -0.025197381153702736, 0.035557281225919724, -0.025794392451643944, -0.003990316763520241, -0.03687421604990959, -0.06524980068206787, 0.008590814657509327, -0.06637358665466309, 0.010746200568974018, 0.00012737243378069252, -0.0009833123767748475, 0.016242213547229767, -0.012660147622227669, 0.044635359197854996, 0.025232499465346336, 0.029394017532467842, -0.027602985501289368, -0.019771603867411613, -0.022159647196531296, 0.06598728895187378, 0.02335366979241371, -0.0047058523632586, 0.05418753996491432, 0.03599625825881958, 0.02482863888144493, -0.03813847526907921, -0.009271231479942799, 0.04052652046084404, 0.0094117047265172, 0.017919113859534264, 0.03309899941086769, 0.0031013849657028913, 0.0527125708758831, -0.01801568828523159, -0.05555715039372444, 0.044986542314291, -0.039437852799892426, -0.010895452462136745, 0.026795264333486557, -0.011062264442443848, -0.06054395064711571, 0.019174592569470406, -0.044530004262924194, -0.035767991095781326, 0.037541463971138, -0.013959524221718311, -0.07627695053815842, -0.023020045831799507, -0.03290584683418274, 0.013740035705268383, -0.013265938498079777, -0.02177334576845169, -0.02913063019514084, 0.0672866627573967, -0.023704852908849716, -0.007625061087310314, -0.01963113062083721, 0.012326523661613464, 0.016136858612298965, 0.012844518758356571, 0.03299364447593689, 0.08105304092168808, 0.0377521738409996, 0.005539911799132824, -0.011641716584563255, 0.0186653770506382, -0.016259772703051567, 0.03234395384788513, -0.022089410573244095, -0.02553100511431694, 0.04203660786151886, 0.04863884672522545, -0.06149214506149292, -0.005934992805123329, 0.016207095235586166, 0.0186478178948164, -0.009903361089527607, -0.0035337789449840784, -0.00003412373916944489, 0.024512574076652527, -0.02391556277871132, -0.012642588466405869, -0.009095639921724796, -0.014091217890381813, -0.04895491153001785, -0.0003882218443322927, 0.07711979001760483, 0.03218592330813408, 0.06834021210670471, 0.008459120988845825, -0.01643536426126957, -0.022791776806116104, 0.005592589266598225, 0.020052550360560417, 0.04783112555742264, -0.03827894851565361, 0.03806823864579201, -0.009806785732507706, -0.008906879462301731, 0.012221168726682663, 0.0186302587389946, 0.006466157268732786, -0.03011394292116165, 0.030500244349241257, 0.031079696491360664, 0.05720771104097366, -0.009481941349804401, 0.000603047083131969, 0.03229127824306488, 0.03891107812523842, -0.045302607119083405, -0.010851554572582245, 0.007958685047924519, 0.011035925708711147, 0.011685614474117756, 0.009745328687131405, 0.0030421228148043156, 0.06855092197656631, -0.010412576608359814, 0.06328317523002625, -0.08526723831892014, 0.02637384459376335, -0.0023704853374511003, 0.009174656122922897, -0.017866436392068863, -0.010430135764181614, -0.03081630915403366, 0.018314193934202194, 0.0006721862591803074, -0.0015265486435964704, -0.04326574504375458, -0.009525839239358902, -0.024178950116038322, 0.045337725430727005, 0.0026755756698548794, 0.02561880089342594, -0.009218554012477398, -0.01690068282186985, 0.0007819309248588979, 0.06349388509988785, 0.02695329673588276, 0.008191343396902084, -0.04150983318686485, -0.024459896609187126, -0.10402040928602219, -0.009051742032170296, -0.029499372467398643, 0.04038604721426964, -0.006501275580376387, -0.05179949477314949, -0.04814719036221504, 0.02395068109035492, 0.04186101630330086, -0.01808592490851879, -0.017427457496523857, 0.05193996801972389, 0.0028094640001654625, 0.002855556784197688, 0.013169363141059875, -0.008213292807340622, -0.002938962774351239, 0.024354541674256325, 0.013292277231812477, -0.04028069227933884, 0.05190484970808029, -0.020403733476996422, -0.00675588333979249, 0.0225108303129673, 0.09882289916276932, -0.01751525327563286, -0.06503909081220627, 0.05457384139299393, -0.012984992004930973, -0.012958653271198273, -0.0010316000552847981, 0.017085053026676178, -0.044670477509498596, 0.022265002131462097, 0.01614563912153244, -0.014398503117263317, 0.016312450170516968, 0.017401117831468582, -0.016584618017077446, -0.015065751038491726, -0.03669862449169159, -0.02928866259753704, 0.01532035879790783, -0.038559895008802414, 0.02628604881465435, 0.015504729934036732, -0.010684743523597717, -0.053695883601903915, -0.06458255648612976, 0.019350184127688408, 0.0024538913276046515, -0.03548704460263252, -0.0003596882161218673, 0.030517803505063057, 0.029832996428012848, 0.0027545916382223368, -0.011316872201859951, -0.06086001545190811, 0.02934134006500244, 0.023687293753027916, 0.0005421387613750994, -0.021404605358839035, 0.03278293460607529, 0.011308092623949051, 0.04934121295809746, -0.03662838786840439, 0.0016000776086002588, -0.0036962011363357306, -0.01810348406434059, -0.03539924696087837, -0.0448460690677166, 0.016101740300655365, -0.006119363941252232, -0.002273909980431199, -0.021264132112264633, -0.0018755367491394281, 0.04723411425948143, -0.03132552281022072, -0.03531145304441452, -0.020614443346858025, -0.017699623480439186, 0.06426648795604706, -0.06472302973270416, 0.0224230345338583, 0.018208838999271393, -0.046847812831401825, -0.003740099025890231, 0.002831412944942713, 0.015452052466571331, 0.015127208083868027, 0.034099869430065155, 0.002649236936122179, -0.00731338607147336, 0.05158878490328789, -0.004609277006238699, -0.005215067882090807, 0.007629450876265764, -0.036382559686899185, 0.057313065975904465, -0.0673920214176178, 0.037120044231414795, 0.01695336028933525, 0.03443349525332451, 0.01808592490851879, -0.037927765399217606, -0.023617057129740715, 0.01203679759055376, -0.0753638744354248, 0.012124593369662762, 0.06338853389024734, -0.036382559686899185, -0.019121915102005005, -0.0525369793176651, -0.005087764002382755, 0.021439723670482635, 0.03690933436155319, 0.046145446598529816, 0.029534490779042244, -0.018279075622558594, -0.012265066616237164, -0.03464420512318611, -0.008533746935427189, -0.01961357146501541, 0.03431057929992676, 0.00046312258928082883, 0.03666350618004799, -0.0187004953622818, 0.05085130035877228, 0.02324831485748291, -0.0028840904124081135, -0.0008680804749019444, -0.07297582924365997, 0.034890033304691315, 0.03141332045197487, -0.02990323305130005, -0.0188409686088562, 0.038630131632089615, -0.005904264282435179, 0.013757594861090183, 0.05471431463956833, -0.021422164514660835, -0.038700368255376816, 0.06331829726696014, 0.02182602323591709, 0.040842585265636444, 0.020649561658501625, 0.05931480973958969, 0.006501275580376387, 0.049938224256038666, -0.07241393625736237, 0.04702340438961983, 0.028270231559872627, 0.042493145912885666, 0.004859494976699352, 0.024969112128019333, -0.0004277299449313432, -0.02623337134718895, -0.04428417608141899, -0.04702340438961983, 0.06050883233547211, 0.061176080256700516, -0.000018622302377480082, 0.02637384459376335, -0.03975391760468483, 0.022106969729065895, 0.019332624971866608, -0.0025153483729809523, 0.02166799083352089, -0.009762887842953205, 0.01201045885682106, -0.03445105254650116, 0.026777705177664757, -0.06489861756563187, 0.023757530376315117, 0.01467067003250122, -0.006325684022158384, 0.0014332656282931566, -0.01352054625749588, -0.016373908147215843, 0.01697091944515705, 0.04740970581769943, -0.027919048443436623, -0.015478391200304031, 0.014934057369828224, 0.011079823598265648, -0.00600083963945508, 0.07304606586694717, -0.051342956721782684, -0.06897234171628952, 0.0030421228148043156, -0.03146599605679512 ]
20,248
pandas_datareader.data
get_quote_yahoo
null
def get_quote_yahoo(*args, **kwargs): return YahooQuotesReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.012262489646673203, -0.050501540303230286, 0.015444153919816017, -0.014296391978859901, 0.007101778872311115, 0.01054928544908762, -0.037572335451841354, 0.05789447948336601, 0.09465663135051727, -0.02563898265361786, 0.05708429217338562, 0.01464240811765194, -0.03838251903653145, 0.012887007556855679, -0.015292244032025337, 0.011789881624281406, 0.03504050523042679, 0.024660009890794754, -0.009359326213598251, -0.019495079293847084, -0.040171679109334946, -0.015013743191957474, 0.009966964833438396, -0.0298924557864666, 0.009072385728359222, 0.011612653732299805, -0.0065152388997375965, 0.007895085029304028, -0.04749710112810135, -0.0077347359620034695, 0.08142360299825668, -0.012979840859770775, -0.03845003619790077, 0.11288579553365707, 0.03431471437215805, 0.012861688621342182, -0.027141202241182327, 0.007730516605079174, -0.05451870709657669, 0.00413110014051199, -0.03767360746860504, -0.06373456120491028, 0.14677853882312775, 0.002877844963222742, -0.037133485078811646, -0.024946950376033783, -0.08331403881311417, -0.021149206906557083, -0.02324218489229679, -0.006506799254566431, 0.05472125485539436, 0.06302565336227417, 0.013005158863961697, -0.0244405847042799, -0.006105926353484392, -0.03777488321065903, -0.0364583320915699, 0.10545909404754639, 0.04965759813785553, 0.07136380672454834, 0.013173948042094707, 0.005034118890762329, 0.024541858583688736, 0.011418546549975872, -0.003289267187938094, 0.03689718246459961, 0.010304542258381844, -0.014515817165374756, -0.014026329852640629, -0.01381534431129694, 0.02837335877120495, 0.024339310824871063, -0.07453703135251999, -0.032424282282590866, -0.028491510078310966, -0.029824940487742424, -0.04601176455616951, -0.014136042445898056, -0.049556322395801544, 0.06832560896873474, -0.026212863624095917, 0.03401089459657669, 0.015292244032025337, 0.010726513341069221, -0.05937981978058815, -0.023799188435077667, 0.0458429753780365, 0.06106770411133766, 0.016819780692458153, 0.022887729108333588, -0.024946950376033783, -0.0029284816700965166, -0.014110724441707134, -0.003052963176742196, -0.030280668288469315, -0.09735724329948425, 0.0018830474000424147, 0.04780092090368271, 0.04847607761621475, 0.023647278547286987, -0.07075616717338562, 0.019630109891295433, -0.01629653573036194, -0.020541569218039513, -0.03990161791443825, 0.0016087660333141685, 0.007068021222949028, -0.030888307839632034, 0.01533444132655859, -0.04361496493220329, -0.02855902537703514, 0.009789736941456795, 0.04962383955717087, -0.018431711941957474, 0.008325495757162571, -0.02658419869840145, -0.03340325877070427, 0.06366704404354095, -0.028930360451340675, -0.008380352519452572, -0.04175829142332077, 0.05829957127571106, 0.009519674815237522, 0.04233217239379883, 0.05556519702076912, 0.05374227836728096, -0.024187400937080383, -0.049556322395801544, 0.06775172799825668, -0.0033061460126191378, 0.09560184180736542, -0.013604358769953251, 0.06734663993120193, -0.0034791543148458004, 0.03497299179434776, 0.03036506287753582, 0.02837335877120495, 0.021047934889793396, -0.007966820150613785, 0.017503375187516212, 0.06444347649812698, -0.016701629385352135, -0.009941646829247475, -0.05421488732099533, -0.07062114030122757, 0.03736978769302368, 0.006895013153553009, -0.09155091643333435, 0.01047333050519228, 0.011232879012823105, 0.03581693395972252, 0.008827642537653446, -0.014009451493620872, 0.00572615209966898, -0.02688801847398281, -0.032424282282590866, -0.034061532467603683, 0.06788676232099533, -0.0002415786439087242, 0.062181707471609116, -0.004116331227123737, 0.043513692915439606, -0.007878206670284271, -0.06748166680335999, -0.007713637314736843, 0.05769193172454834, -0.026972413063049316, -0.031681615859270096, 0.05060281231999397, -0.013604358769953251, 0.0019094207091256976, 0.010802468284964561, -0.008363473229110241, -0.036222025752067566, -0.03252555802464485, -0.029841817915439606, -0.025149496272206306, 0.05678047239780426, -0.0005182336317375302, 0.011773002333939075, 0.014625529758632183, -0.056409139186143875, -0.05833332985639572, -0.004519314039498568, 0.04422260448336601, 0.005624879151582718, 0.030331306159496307, 0.0006957253790460527, 0.012540990486741066, 0.028744693845510483, -0.004042486194521189, -0.0043800631538033485, 0.012768855318427086, -0.036525845527648926, -0.01146918348968029, -0.057725690305233, -0.036357056349515915, 0.031529705971479416, -0.06451099365949631, 0.08500192314386368, -0.0042640212923288345, 0.05981867015361786, 0.0009557652520015836, -0.026972413063049316, 0.00941840186715126, -0.03433159366250038, -0.007612364366650581, -0.028339600190520287, -0.06920330971479416, -0.0017796644242480397, -0.005363256670534611, -0.012414399534463882, -0.07879050076007843, -0.02098041959106922, 0.02216193825006485, 0.1126832440495491, -0.002567696152254939, 0.0027027269825339317, 0.0341796837747097, 0.019208138808608055, 0.038956400007009506, -0.030145637691020966, -0.013570601120591164, 0.008536482229828835, 0.07237653434276581, -0.04010416194796562, 0.056105319410562515, 0.021284237504005432, -0.007139756344258785, -0.03507426381111145, -0.02643228881061077, 0.011806759983301163, 0.08763502538204193, 0.00029748983797617257, 0.0281032957136631, -0.04314235970377922, 0.026651713997125626, 0.030601367354393005, -0.028812209144234657, 0.05333718657493591, 0.011249758303165436, 0.06150655448436737, -0.008620875887572765, 0.029706787317991257, -0.014549574814736843, -0.009848812595009804, 0.05377603694796562, 0.07581982761621475, -0.014144482091069221, -0.036188267171382904, 0.017874708399176598, 0.05526137724518776, 0.01443142257630825, -0.001217387500219047, 0.01914062350988388, -0.0020317924208939075, 0.015756413340568542, -0.049421291798353195, -0.031344037503004074, -0.04553915560245514, 0.018448591232299805, 0.01276041567325592, -0.014363907277584076, -0.020710356533527374, -0.009460599161684513, 0.02624662220478058, 0.0007875041337683797, -0.047733407467603683, 0.013241463340818882, 0.010743392631411552, -0.043648723512887955, 0.00690767215564847, -0.030314426869153976, 0.020389659330248833, -0.009291810914874077, -0.004053035285323858, 0.04452642425894737, -0.004099452402442694, -0.005257763899862766, -0.023022759705781937, -0.03689718246459961, 0.04618055373430252, 0.06336323171854019, -0.03230613097548485, 0.02719183824956417, -0.007329643703997135, 0.03080391325056553, -0.031664736568927765, 0.01289544627070427, 0.01684509962797165, -0.010135753080248833, 0.009688463993370533, -0.016583476215600967, -0.022820213809609413, 0.06920330971479416, -0.04476272687315941, 0.003365222131833434, -0.021942513063549995, 0.04766589030623436, 0.04597800597548485, -0.062012918293476105, 0.004251361824572086, 0.006046850234270096, 0.05394482612609863, -0.0019621672108769417, -0.02292148768901825, 0.055497679859399796, -0.026060955598950386, -0.031073974445462227, -0.026972413063049316, 0.039834100753068924, 0.0443238765001297, -0.030567608773708344, 0.010000722482800484, -0.08027584105730057, 0.009485917165875435, -0.07717013359069824, 0.020710356533527374, 0.022280091419816017, -0.030145637691020966, -0.041825808584690094, -0.05698302015662193, 0.07534721493721008, -0.08777005225419998, 0.022567031905055046, 0.06056133657693863, -0.12578123807907104, 0.055328890681266785, 0.0035466698464006186, 0.03753857687115669, 0.027833234518766403, 0.027293112128973007, 0.007911964319646358, -0.025571467354893684, 0.023731673136353493, -0.021790603175759315, 0.018752409145236015, 0.026229742914438248, 0.01775655709207058, -0.03372395411133766, -0.02234760671854019, -0.06451099365949631, 0.010034480132162571, 0.003316695336252451, -0.03480420261621475, 0.0008339210180565715, 0.025892166420817375, -0.03218797966837883, 0.0655912384390831, 0.0013840663013979793, 0.016136186197400093, -0.017351465299725533, 0.01675226539373398, 0.043479934334754944, -0.0011287735542282462, 0.01541039627045393, -0.023326579481363297, 0.062350496649742126, -0.01959635317325592, -0.017056085169315338, -0.011950230225920677, 0.004907527472823858, 0.00881920289248228, 0.04520157724618912, -0.07811535149812698, 0.019849535077810287, 0.0017416870687156916, 0.0323905274271965, 0.006122805178165436, 0.04385127127170563, -0.026331016793847084, 0.03794366866350174, 0.004329426679760218, 0.04550539702177048, -0.024626251310110092, -0.002067659981548786, -0.025858407840132713, -0.04358120635151863, 0.025723377242684364, -0.017672162503004074, -0.007544849067926407, -0.03282937780022621, -0.024508100003004074, -0.03527681156992912, 0.022111302241683006, -0.0031858840957283974, -0.04908371716737747, 0.03581693395972252, 0.015655139461159706, -0.03367331996560097, -0.010296102613210678, -0.03659336268901825, 0.05937981978058815, 0.0038758073933422565, -0.039699070155620575, -0.0379774272441864, 0.020541569218039513, 0.015131895430386066, -0.055936530232429504, -0.00814826786518097, -0.03200231119990349, 0.021453026682138443, 0.038956400007009506, -0.0281032957136631, -0.04975887015461922, -0.04054301232099533, -0.000234721606830135, 0.014060087502002716, 0.019697625190019608, 0.010684316046535969, -0.06295813620090485, -0.020440295338630676, -0.013916617259383202, 0.011773002333939075, -0.022685183212161064, 0.0316309779882431, 0.012583187781274319, -0.01627121865749359, -0.00015678875206504017, 0.033487651497125626, -0.01008511707186699, -0.020879145711660385, -0.0443238765001297, -0.011646411381661892, 0.01343556959182024, 0.0519193634390831, -0.011958669871091843, 0.04726079851388931, 0.018938077613711357, -0.013005158863961697, 0.010220147669315338, -0.017722800374031067, -0.054451193660497665, -0.0004913329612463713, 0.022583911195397377, 0.030601367354393005, -0.002510729944333434, -0.013072674162685871, 0.023140912875533104, -0.022246332839131355, -0.027242474257946014, 0.007852887734770775, 0.002609893213957548, 0.037133485078811646, -0.020592205226421356, -0.07284914702177048, 0.018448591232299805, 0.0268542617559433, 0.03733603283762932, -0.07102622836828232, -0.04233217239379883, 0.047159526497125626, 0.0415557436645031, -0.011764563620090485, -0.010422694496810436, -0.03763984888792038, 0.03733603283762932, 0.000032307187211699784, -0.00926649197936058, -0.006287374068051577, 0.018566742539405823, -0.021317996084690094, 0.009215855970978737, -0.01724175177514553, 0.024187400937080383, 0.04864486679434776, -0.010836225934326649, -0.028018902987241745, 0.005506726913154125, -0.017250191420316696, 0.008038555271923542, 0.019765140488743782, -0.06316068023443222, -0.03298128768801689, -0.006291593890637159, 0.005595340859144926, -0.026617957279086113, 0.011072530411183834, 0.008962673135101795, -0.02442370541393757, -0.01160421408712864, -0.02233072742819786, -0.013216144405305386, 0.004772496875375509, 0.015283804386854172, -0.03336950019001961, 0.0696084052324295, -0.033639561384916306, 0.0564766563475132, 0.03050009347498417, 0.04938753321766853, 0.10505400598049164, 0.033470772206783295, -0.026938654482364655, 0.001686830772086978, 0.025706497952342033, 0.0034622754901647568, -0.006236737594008446, 0.004367404151707888, -0.008920475840568542, 0.0072874464094638824, -0.05070408433675766, -0.00690767215564847, -0.0009378314716741443, -0.018938077613711357, -0.061270251870155334, -0.036998454481363297, 0.02643228881061077, -0.015925200656056404, -0.02260078862309456, -0.0023862484376877546, 0.02764756791293621, -0.014853393658995628, -0.021453026682138443, 0.05721932277083397, -0.030888307839632034, 0.009713781997561455, 0.07352430373430252, -0.024069249629974365, 0.024643130600452423, 0.03352141007781029, 0.0737268477678299, -0.02930169552564621, -0.017351465299725533, -0.03490547463297844, -0.028153933584690094, 0.0244405847042799, 0.05765817314386368, 0.01883680373430252, -0.01758776791393757, 0.0655912384390831, -0.04050925746560097, -0.053539734333753586, -0.02916666492819786, -0.0145664531737566, 0.0013207705924287438, -0.036357056349515915, 0.024052370339632034, 0.020727235823869705, 0.013654994778335094, -0.0006661873776465654, -0.004848451819270849, 0.01056616473942995, -0.006646049674600363, -0.05809702351689339, 0.004000288899987936, -0.0030255350284278393, 0.01533444132655859, 0.013882859610021114, 0.03450038284063339, 0.02670235186815262, -0.06717784702777863, 0.05937981978058815, -0.016887295991182327, 0.031968556344509125, -0.026617957279086113, -0.04233217239379883, -0.006072168704122305, -0.04864486679434776, -0.015596063807606697, 0.057455629110336304, 0.037572335451841354, -0.017123600468039513, 0.0367283932864666, 0.004852671176195145, 0.01229624729603529, 0.028930360451340675, 0.03915894776582718, -0.02719183824956417, -0.026769867166876793, -0.023326579481363297, -0.0021045824978500605, 0.04864486679434776, 0.07176890224218369, 0.04233217239379883, 0.020609084516763687, 0.025858407840132713, -0.08547452837228775, 0.0029601294081658125, 0.024406826123595238, 0.05225694179534912, 0.0012332114856690168, -0.08635222911834717, -0.02703992836177349, -0.014532695524394512, -0.0400366485118866, -0.0030635125003755093, 0.011232879012823105, 0.02914978563785553, 0.039564039558172226, 0.04084683209657669, -0.013249902985990047, -0.02109857089817524, 0.012245610356330872, 0.04118441045284271, -0.047767166048288345, -0.02081163041293621, -0.03990161791443825, -0.0564766563475132, -0.024491220712661743, -0.005586901679635048, 0.0630931630730629, -0.0011055651120841503, -0.026010317727923393, -0.028660299256443977, -0.018617378547787666, 0.025402680039405823, -0.053539734333753586, -0.026972413063049316, -0.038652580231428146, -0.02579089254140854, -0.003947542514652014, -0.014625529758632183, 0.012659142725169659, -0.019056228920817375, 0.022718941792845726, 0.004023497458547354, -0.03433159366250038, -0.05144675448536873, -0.0070975590497255325, 0.03222173824906349, -0.00005587824489339255, -0.0002643914776854217, 0.02869405597448349, 0.0007215711520984769, -0.014321709983050823, 0.029959971085190773, 0.012186534702777863, -0.03601948171854019, 0.004797814879566431, -0.00979817658662796, 0.04175829142332077, 0.07960069179534912, -0.03372395411133766, 0.004091012757271528, 0.008587118238210678, 0.006878134328871965, 0.04250096157193184, -0.039834100753068924, 0.0005939247785136104, -0.011806759983301163, 0.04749710112810135, -0.01986641436815262, 0.02839023619890213, -0.03218797966837883, -0.034264080226421356, -0.046248067170381546, 0.017123600468039513, 0.009477478452026844, -0.053202155977487564, 0.025267649441957474, -0.01794222556054592, 0.04574170336127281, 0.06812306493520737, -0.02871093526482582, 0.03564814478158951, -0.006840156856924295, -0.011106288060545921, 0.06616511940956116, -0.03676215186715126, 0.05256076157093048, 0.024069249629974365, -0.06592881679534912, 0.04385127127170563, -0.09452159702777863, -0.04766589030623436, -0.056105319410562515, 0.02595968171954155, 0.04449266567826271, -0.04185956344008446, 0.030027486383914948, 0.06603008508682251, -0.020001444965600967, -0.0336901992559433, -0.044425152242183685, -0.03595196455717087, 0.0072747874073684216, -0.01971450448036194, 0.059886183589696884, 0.07514467090368271, -0.012498793192207813, -0.004700761754065752, 0.01548635121434927, 0.030145637691020966, -0.013621237128973007, 0.07919559627771378, 0.01145230419933796, 0.012254050001502037, -0.01915750280022621, -0.08972800523042679, -0.009789736941456795, 0.006481480784714222, -0.025267649441957474, -0.03966531157493591, 0.041690777987241745, -0.02092978172004223, -0.016380930319428444, -0.06653645634651184, 0.006646049674600363, 0.00889515783637762, -0.0319010391831398, 0.002070824848487973, 0.059886183589696884, -0.0017680602613836527, 0.03585069254040718, -0.026364773511886597, -0.05053529888391495, 0.025301406159996986, -0.0410156212747097, -0.000012436618817446288, -0.033960260450839996, -0.034551020711660385, 0.008308617398142815, 0.05205439403653145, 0.01915750280022621, -0.016836659982800484, 0.006489920429885387, 0.023157792165875435, -0.027985144406557083, 0.03517553582787514, -0.019326290115714073, -0.0007664056029170752, -0.024660009890794754, 0.02138551138341427, -0.0028989436104893684, 0.03350453078746796, -0.047767166048288345, 0.012186534702777863, 0.01821228675544262, -0.039260219782590866, 0.0024833017960190773, -0.006122805178165436, 0.0268542617559433, 0.034382231533527374, -0.03980034589767456, -0.046079277992248535, -0.011739244684576988, -0.026212863624095917, 0.05286457762122154, -0.022567031905055046, -0.03615451231598854, 0.033926501870155334, 0.011038772761821747, 0.024997586384415627, 0.05168306082487106, -0.018938077613711357, -0.020879145711660385, -0.018111012876033783, 0.02584153041243553, -0.020068960264325142, -0.007186173461377621, 0.000957875105086714, 0.030179396271705627, 0.04209586977958679, -0.022381363436579704, 0.01375626865774393, -0.031664736568927765, 0.02442370541393757, -0.024406826123595238, 0.028440874069929123, -0.012481914833188057, 0.03374083340167999, -0.010869983583688736, 0.013536843471229076, 0.009941646829247475, -0.06400462239980698, -0.004856890998780727, -0.001885157311335206 ]
20,249
pandas_datareader.data
get_recent_iex
Returns market volume and trade routing statistics for recent sessions. Also reports IEX's relative market share, lit share volume and a boolean halfday indicator. Reference: https://www.iextrading.com/developer/docs/#recent Returns ------- DataFrame
def get_recent_iex(*args, **kwargs): """ Returns market volume and trade routing statistics for recent sessions. Also reports IEX's relative market share, lit share volume and a boolean halfday indicator. Reference: https://www.iextrading.com/developer/docs/#recent Returns ------- DataFrame """ from pandas_datareader.iex.stats import RecentReader return RecentReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.0009958830196410418, -0.057971227914094925, 0.01435132697224617, -0.0009809613693505526, 0.04513196274638176, -0.018533814698457718, -0.02507724240422249, 0.019789446145296097, 0.0645146518945694, -0.017525773495435715, 0.039578892290592194, -0.004343863110989332, -0.062144871801137924, -0.0031567614059895277, -0.0363956019282341, 0.018215486779808998, -0.008435714989900589, 0.03620106726884842, -0.016164032742381096, -0.0374213270843029, -0.006835228763520718, -0.03678467124700546, -0.04774933308362961, -0.02235376089811325, 0.03448563069105148, 0.045803990215063095, -0.015465478412806988, -0.03653708100318909, 0.028048312291502953, 0.017331238836050034, -0.019099732860922813, -0.04980078712105751, -0.04428308457136154, 0.017189759761095047, -0.029975969344377518, 0.032593339681625366, -0.025448625907301903, -0.03303546458482742, -0.03682003915309906, 0.035829685628414154, -0.03496312350034714, -0.06791016459465027, 0.08807098865509033, 0.000005828776011185255, -0.057263828814029694, -0.04276217892765999, 0.007648735772818327, -0.08410956710577011, 0.056627172976732254, -0.03547598421573639, 0.014731553383171558, 0.03837631642818451, 0.048315249383449554, 0.0041338540613651276, 0.0012235766043886542, -0.033212315291166306, -0.028631914407014847, 0.05439886823296547, 0.026049913838505745, 0.02132803574204445, -0.021787842735648155, -0.03202742338180542, 0.039897218346595764, 0.0457686185836792, 0.026898790150880814, 0.031160861253738403, 0.019418062642216682, -0.02320263907313347, -0.043221987783908844, -0.030612627044320107, 0.018692979589104652, -0.0019055521115660667, -0.012795052491128445, 0.002641687635332346, -0.08594879508018494, -0.038022615015506744, -0.0779552087187767, -0.007781372871249914, -0.05524774640798569, 0.0054071699269115925, -0.02951616235077381, -0.014996827580034733, 0.007219876162707806, 0.08043109625577927, 0.04286829009652138, -0.019683336839079857, 0.08099701255559921, 0.0032230799552053213, 0.0004324520123191178, 0.07859186083078384, -0.04244385287165642, 0.010213051922619343, -0.022636720910668373, -0.03275250643491745, 0.04513196274638176, -0.08248255401849747, -0.018869828432798386, 0.07547931373119354, 0.055990513414144516, -0.03972037136554718, -0.057051610201597214, -0.01538589596748352, -0.031974367797374725, -0.016897957772016525, -0.0706690102815628, -0.006901546847075224, 0.027323229238390923, -0.008608143776655197, 0.025537051260471344, -0.046652864664793015, -0.04870431870222092, 0.011848908849060535, -0.010646332986652851, -0.04750174283981323, 0.029392367228865623, 0.04750174283981323, 0.028543489053845406, 0.055070895701646805, 0.011318360455334187, -0.05015448480844498, -0.0035126707516610622, 0.01996629498898983, -0.009240380488336086, 0.021575624123215675, -0.017083650454878807, 0.0029003298841416836, -0.012264504097402096, -0.049234867095947266, 0.014121422544121742, 0.014996827580034733, -0.00038243678864091635, -0.04421234503388405, 0.03109012171626091, 0.01642930693924427, 0.025554735213518143, 0.00665837898850441, 0.06306448578834534, 0.00761336600407958, -0.024369845166802406, 0.046935826539993286, -0.007834427990019321, 0.012795052491128445, -0.03261102735996246, 0.022176912054419518, -0.03579431399703026, 0.0011450997553765774, 0.011097298935055733, 0.018020952120423317, 0.04502585157752037, -0.05323166400194168, 0.051852237433195114, -0.01030147634446621, -0.11516431719064713, -0.04378790780901909, 0.03841168433427811, -0.052877966314554214, -0.008798256516456604, 0.04212552309036255, 0.002139877527952194, -0.01217607967555523, -0.030188189819455147, 0.03565283492207527, -0.01954185590147972, -0.051109470427036285, -0.05415128171443939, 0.04325735941529274, -0.03584736958146095, 0.010672859847545624, 0.013962258584797382, 0.06324134021997452, 0.010964661836624146, 0.03361906856298447, 0.014625444076955318, -0.06960791349411011, -0.050189852714538574, 0.02497113309800625, -0.0008903261041268706, 0.016995225101709366, 0.013856149278581142, 0.018268540501594543, -0.01581033505499363, -0.09174945950508118, -0.0884246900677681, 0.0011616793926805258, -0.0022415658459067345, -0.035617463290691376, 0.05082651227712631, -0.03315925970673561, -0.002210617298260331, 0.03351295739412308, -0.005079998634755611, 0.026244448497891426, 0.00023833216982893646, -0.01934732124209404, -0.017941368743777275, -0.03943741321563721, 0.0023609392810612917, 0.0436817966401577, -0.0057078138925135136, 0.05814807489514351, -0.025413256138563156, 0.04619305953383446, 0.026987215504050255, -0.08050183951854706, -0.019736390560865402, -0.020337678492069244, -0.02039073407649994, -0.07406452298164368, -0.0987526923418045, 0.019011307507753372, 0.005265690386295319, 0.025554735213518143, -0.009275750257074833, -0.017419664189219475, -0.016349725425243378, 0.10335078090429306, -0.0045538716949522495, 0.005336429923772812, 0.0436464287340641, 0.0024272578302770853, 0.04980078712105751, -0.041029054671525955, -0.0967012420296669, 0.001308685401454568, 0.03100169636309147, -0.03149687498807907, 0.07059827446937561, 0.01810053363442421, -0.004770512226969004, -0.033866655081510544, -0.01830391027033329, 0.01798558235168457, 0.02921551838517189, -0.015447793528437614, 0.033530641347169876, 0.006313522811979055, -0.0322573259472847, 0.018374649807810783, 0.017340080812573433, 0.023114213719964027, 0.00574318366125226, 0.012759682722389698, 0.0010130153968930244, 0.03268176689743996, -0.004041008185595274, -0.09861121326684952, 0.018763719126582146, 0.05634421110153198, -0.0530194453895092, -0.05001300573348999, 0.06776868551969528, -0.014369011856615543, 0.030860217288136482, -0.021893953904509544, 0.039578892290592194, 0.003939319867640734, -0.04378790780901909, -0.01954185590147972, 0.0006228414131328464, -0.08467548340559006, 0.01674763672053814, 0.00847992766648531, -0.029604585841298103, -0.037385959178209305, -0.012556306086480618, 0.035405244678258896, 0.017278185114264488, -0.034786272794008255, 0.008462242782115936, 0.015881074592471123, -0.07738928496837616, 0.03766891732811928, -0.05082651227712631, 0.0008300867630168796, -0.008064331486821175, -0.0759744942188263, 0.012768525630235672, -0.047784700989723206, -0.05687475949525833, 0.010964661836624146, -0.04739563539624214, 0.022636720910668373, -0.006074776407331228, 0.00569012900814414, 0.009930092841386795, -0.04796155169606209, 0.003996795974671841, -0.019400376826524734, 0.017012910917401314, -0.01787947304546833, 0.0332476831972599, 0.03600653260946274, -0.061402104794979095, -0.028366640210151672, -0.00046146634849719703, 0.021504884585738182, -0.04813840240240097, -0.024069201201200485, 0.051215581595897675, 0.05691013112664223, 0.010672859847545624, -0.03890686482191086, -0.013776566833257675, -0.042479220777750015, -0.03579431399703026, 0.04774933308362961, -0.014156793244183064, -0.0070253415033221245, -0.01757882907986641, -0.03181520476937294, 0.03278787434101105, 0.044566042721271515, -0.0322573259472847, -0.01964796520769596, -0.06246320158243179, -0.030435778200626373, -0.03397276625037193, 0.011893120594322681, 0.014024156145751476, 0.029781434684991837, -0.014881875365972519, 0.04308050870895386, 0.03880075365304947, -0.06543426960706711, 0.02391003631055355, -0.007701790425926447, -0.05167539045214653, 0.0020746642258018255, 0.017605355009436607, -0.0037801554426550865, 0.010336846113204956, -0.015094094909727573, 0.04534418135881424, 0.02132803574204445, -0.012211449444293976, 0.017614198848605156, -0.021027391776442528, 0.021664049476385117, 0.05146316811442375, 0.038093358278274536, -0.01268010027706623, -0.05782974883913994, -0.004881042987108231, 0.04640527814626694, -0.0004443340585567057, -0.047678593546152115, 0.0737815648317337, -0.03773965686559677, -0.02891487441956997, 0.018533814698457718, -0.017437348142266273, 0.02173478901386261, 0.0023388329427689314, 0.06536353379487991, 0.016880273818969727, 0.05669791251420975, -0.021151185035705566, 0.011017716489732265, 0.0039459518156945705, -0.03284092992544174, -0.019718706607818604, 0.008347290568053722, -0.02578463964164257, 0.012848107144236565, -0.051640018820762634, -0.0187283493578434, 0.07105807960033417, 0.060694705694913864, -0.027287859469652176, 0.013201805762946606, -0.049022648483514786, -0.03298240900039673, 0.016783006489276886, 0.0519937165081501, -0.02619139291346073, 0.001069938763976097, -0.031992051750421524, -0.03660782054066658, -0.007135872263461351, -0.026598146185278893, 0.022442186251282692, -0.0004003980429843068, -0.03597116470336914, -0.023839296773076057, 0.07576227188110352, 0.023255692794919014, -0.009319962002336979, 0.02226533740758896, 0.04138275608420372, -0.031567614525556564, -0.05050818249583244, -0.023963091894984245, -0.006437317468225956, -0.04838598892092705, 0.0023609392810612917, -0.0016391726676374674, 0.045061223208904266, 0.03713836893439293, -0.015783807262778282, -0.020549897104501724, -0.007750424090772867, -0.006207413040101528, 0.03972037136554718, -0.017941368743777275, -0.027287859469652176, -0.04166571423411369, 0.0031147596891969442, -0.05864325538277626, -0.02569621428847313, -0.07392304390668869, -0.017640724778175354, -0.020408418029546738, -0.04240848124027252, 0.02661583200097084, 0.03494543582201004, 0.06423169374465942, 0.058077335357666016, 0.008135071024298668, -0.026792680844664574, 0.024086885154247284, 0.029410051181912422, 0.006322365254163742, -0.015120621770620346, 0.050578922033309937, 0.0005333113949745893, 0.006950180511921644, -0.06490372121334076, -0.008811520412564278, 0.00009650726133259013, 0.05156927928328514, -0.012255662120878696, -0.046122319996356964, -0.03657245263457298, 0.0499422661960125, 0.02599685825407505, -0.02951616235077381, -0.013546662405133247, -0.037173740565776825, -0.031443819403648376, 0.06921884417533875, -0.00014113409270066768, 0.02610296756029129, 0.05864325538277626, 0.030612627044320107, -0.008594879880547523, -0.01954185590147972, -0.019276581704616547, 0.03153224289417267, 0.028136735782027245, -0.02463511936366558, 0.028720339760184288, -0.042797550559043884, 0.022654404863715172, -0.00031086805392988026, -0.006384262815117836, -0.04594546929001808, 0.011318360455334187, 0.047572482377290726, 0.007219876162707806, -0.004354916047304869, -0.011698586866259575, 0.03466247767210007, -0.02256598137319088, -0.08396808803081512, -0.006897125858813524, -0.029604585841298103, -0.033654436469078064, -0.0831899493932724, -0.019188158214092255, 0.003556883195415139, 0.04453067481517792, 0.039260562509298325, -0.05782974883913994, -0.021398775279521942, 0.02392772026360035, 0.02047915756702423, -0.03231038153171539, -0.01789715699851513, 0.011017716489732265, -0.0045759775675833225, -0.032381121069192886, -0.005535385571420193, 0.00657879700884223, 0.011318360455334187, -0.007785793859511614, 0.012759682722389698, -0.030082078650593758, 0.005221478175371885, 0.016349725425243378, -0.05482330918312073, -0.0014214268885552883, 0.09698420017957687, 0.0016966487746685743, 0.06670758873224258, 0.021557940170168877, 0.04010944068431854, 0.05814807489514351, 0.00790074560791254, 0.039967961609363556, 0.013537820428609848, 0.03674929961562157, -0.039967961609363556, 0.05082651227712631, 0.03413192927837372, -0.018162431195378304, -0.012830422259867191, 0.007135872263461351, -0.009859353303909302, 0.04587472975254059, -0.01747271791100502, 0.036254122853279114, -0.02194700762629509, 0.037916507571935654, 0.02058526873588562, -0.030223559588193893, -0.05128632113337517, -0.018144747242331505, 0.04010944068431854, 0.031231600791215897, 0.042585331946611404, 0.08580731600522995, 0.013882676139473915, 0.018905198201537132, -0.009346489794552326, 0.005261268932372332, -0.01881677471101284, 0.007830006070435047, 0.024617433547973633, 0.012025757692754269, 0.04209015145897865, -0.03132002428174019, -0.009107743389904499, -0.005836029537022114, -0.031992051750421524, -0.0008367186528630555, -0.060058049857616425, 0.021469514816999435, -0.009434914216399193, 0.051321689039468765, -0.02953384630382061, 0.01222913432866335, -0.033742859959602356, -0.012264504097402096, -0.015359369106590748, -0.0002712151035666466, -0.05004837363958359, -0.011424469761550426, 0.02226533740758896, 0.034680161625146866, 0.012308716773986816, -0.003302662167698145, -0.03605958819389343, 0.0405338779091835, -0.03961426019668579, 0.011698586866259575, 0.09755011647939682, -0.028720339760184288, 0.013201805762946606, -0.04127664491534233, -0.023467913269996643, 0.05843103677034378, -0.015889916568994522, 0.054328128695487976, 0.03303546458482742, -0.004122801125049591, 0.011008873581886292, 0.08127997815608978, 0.03841168433427811, -0.01571306772530079, 0.002966648433357477, -0.002551052253693342, 0.06143747642636299, 0.05878473445773125, -0.004540607798844576, 0.03632486239075661, -0.03609495982527733, 0.01217607967555523, -0.008855733089148998, 0.08446326106786728, -0.01798558235168457, 0.08297772705554962, -0.027995256707072258, 0.03450331464409828, -0.08368512988090515, 0.021787842735648155, 0.03710300102829933, -0.01798558235168457, 0.062144871801137924, 0.03752743825316429, 0.024157624691724777, 0.030347352847456932, -0.01602255366742611, 0.004907570313662291, 0.016261300072073936, 0.061189886182546616, 0.008130650036036968, -0.0042222789488732815, -0.04014480859041214, -0.058926213532686234, 0.004770512226969004, -0.06249856948852539, 0.07399377971887589, 0.0022769358474761248, -0.058926213532686234, -0.0061499373987317085, -0.05981045961380005, 0.015041039325296879, 0.02587306499481201, -0.023255692794919014, -0.02247755602002144, 0.0717301070690155, -0.001230208552442491, -0.03528144955635071, 0.027818407863378525, 0.01966565102338791, 0.03305314853787422, 0.0049385190941393375, 0.0176672525703907, -0.013582032173871994, -0.0030749686993658543, -0.027535447850823402, -0.003296030219644308, -0.05415128171443939, 0.02109813131392002, 0.001167205860838294, 0.018958253785967827, 0.047148045152425766, 0.04276217892765999, 0.009496811777353287, -0.015633484348654747, 0.02827821671962738, 0.0057652899995446205, 0.04686508700251579, -0.018445391207933426, -0.0069678653962910175, -0.03004670888185501, 0.050897251814603806, 0.01862224005162716, -0.07229602336883545, 0.028631914407014847, -0.018852144479751587, 0.0571577213704586, -0.011353730224072933, -0.009452599100768566, -0.008006855845451355, 0.0036342546809464693, -0.006039406172931194, 0.009549866430461407, 0.04332809895277023, -0.023450227454304695, 0.039154451340436935, -0.01039874367415905, 0.034149616956710815, 0.024104570969939232, -0.072720468044281, 0.0001848628744482994, -0.013626244850456715, 0.046334538608789444, 0.029604585841298103, -0.03858853504061699, 0.014881875365972519, -0.023432543501257896, 0.006923653185367584, 0.011353730224072933, 0.08899060636758804, -0.015297471545636654, -0.042160890996456146, 0.009806297719478607, 0.04099368676543236, -0.005110946949571371, 0.028101366013288498, 0.013670457527041435, 0.05956286936998367, 0.018445391207933426, -0.016146348789334297, -0.014032998122274876, -0.02016082964837551, 0.04389401525259018, 0.01040758565068245, 0.06794553250074387, -0.0006758962408639491, 0.02879107929766178, 0.017870629206299782, -0.02985217608511448, -0.034467943012714386, 0.027889147400856018, -0.01231755968183279, 0.047466374933719635, -0.016721108928322792, -0.05899695307016373, -0.03483932837843895, -0.028967928141355515, 0.019488802179694176, -0.0046378751285374165, 0.03869464248418808, -0.09387165307998657, -0.046758975833654404, 0.03880075365304947, 0.013909203931689262, -0.05337314307689667, -0.013900361023843288, 0.051109470427036285, 0.05029596388339996, 0.03006439469754696, 0.04636990651488304, -0.02681036666035652, -0.047996923327445984, -0.0213103499263525, -0.03305314853787422, -0.03752743825316429, -0.0306833665817976, -0.002962227212265134, 0.04099368676543236, 0.054328128695487976, 0.022406816482543945, 0.02536020055413246, 0.02840200997889042, 0.027164064347743988, -0.05885547399520874, 0.03284092992544174, 0.03109012171626091, 0.009877038188278675, -0.009541024453938007, 0.049234867095947266, -0.04927023872733116, 0.07056289911270142, -0.00397468963637948, 0.009010476060211658, 0.0054602245800197124, 0.00561938900500536, -0.003934898879379034, -0.024882707744836807, 0.014483964070677757, 0.01133604533970356, 0.02318495325744152, -0.015677697956562042, -0.007953801192343235, -0.0032031843438744545, 0.05033133178949356, -0.03862390294671059, -0.02380392700433731, 0.021575624123215675, -0.008939736522734165, 0.03805798664689064, -0.01800326630473137, -0.016579629853367805, 0.012087655253708363, -0.03087790124118328, 0.02850811928510666, -0.00009056622366188094, 0.02787146158516407, -0.0023189375642687082, 0.029410051181912422, -0.018374649807810783, 0.010743599385023117, 0.05270111560821533, 0.011504052206873894, 0.017605355009436607, -0.00857719499617815, 0.019046679139137268, 0.04711267352104187, -0.038517795503139496, -0.0001718754938337952, 0.003983532078564167, 0.02580232545733452, -0.009006055071949959, -0.013431710191071033, -0.004339441657066345 ]
20,250
pandas_datareader.data
get_records_iex
Returns the record value, record date, recent value, and 30-day average for market volume, # of symbols traded, # of routed trades and notional value. This function accepts no additional parameters. Reference: https://www.iextrading.com/developer/docs/#records :return: DataFrame
def get_records_iex(*args, **kwargs): """ Returns the record value, record date, recent value, and 30-day average for market volume, # of symbols traded, # of routed trades and notional value. This function accepts no additional parameters. Reference: https://www.iextrading.com/developer/docs/#records :return: DataFrame """ from pandas_datareader.iex.stats import RecordsReader return RecordsReader(*args, **kwargs).read()
(*args, **kwargs)
[ 0.010436913929879665, -0.04286332428455353, 0.01696898229420185, 0.03683510795235634, 0.027873756363987923, 0.030536970123648643, -0.04372707009315491, -0.0026047297287732363, 0.044878728687763214, -0.011453612707555294, 0.027873756363987923, 0.030986836180090904, -0.033596064895391464, 0.003365004900842905, -0.0038193706423044205, -0.015709353610873222, -0.04718204587697983, 0.0696394070982933, -0.0003410553908906877, -0.021449657157063484, -0.01777874305844307, -0.0037496411241590977, -0.03811272978782654, -0.004338966682553291, -0.003576442366465926, 0.053984034806489944, 0.004037556238472462, -0.024202842265367508, 0.025786373764276505, 0.05628735572099686, 0.00035876891342923045, -0.019812140613794327, -0.06380913406610489, 0.02431081049144268, -0.04473477229475975, -0.030698921531438828, -0.040092144161462784, -0.03872454911470413, -0.06636437773704529, 0.047074079513549805, -0.050960928201675415, -0.06582453101873398, 0.12826606631278992, -0.010580871254205704, -0.10120207071304321, -0.02296121045947075, 0.006428598891943693, -0.08695028722286224, 0.05340820550918579, -0.03951631486415863, 0.020657891407608986, 0.06154179945588112, 0.028413597494363785, -0.0017454838380217552, -0.002152613364160061, -0.026722097769379616, -0.05175269395112991, 0.008551971055567265, -0.0037496411241590977, -0.009249264374375343, -0.004080293234437704, -0.017049958929419518, 0.042719367891550064, 0.03593537211418152, -0.0021289954893290997, 0.035719435662031174, 0.014836612157523632, -0.026776080951094627, -0.03786080330610275, -0.030644938349723816, 0.011102716438472271, -0.012758227065205574, 0.010931767523288727, 0.012983161024749279, -0.06877566128969193, 0.003641673130914569, -0.062261588871479034, 0.009055822156369686, -0.0010060149943456054, 0.0020075312349945307, -0.01762578822672367, 0.022385379299521446, -0.016123231500387192, 0.06924352049827576, 0.014215796254575253, -0.021089762449264526, 0.021953508257865906, 0.03656518831849098, 0.07230261713266373, 0.04135177284479141, -0.037500910460948944, -0.012686248868703842, -0.014278777875006199, -0.013334057293832302, -0.015214500948786736, -0.061469823122024536, -0.02736990712583065, 0.042251504957675934, 0.012929176911711693, 0.006716514006257057, -0.03427986428141594, -0.01803966611623764, 0.026560146361589432, -0.013496008701622486, -0.08925360441207886, -0.05689917504787445, 0.03386598452925682, -0.0364932082593441, 0.04800980165600777, 0.00012715770571958274, -0.049305420368909836, 0.03212049975991249, -0.006293639075011015, -0.02521054446697235, -0.04559851437807083, 0.02211545966565609, 0.033452108502388, 0.030159082263708115, -0.038364656269550323, -0.04980926960706711, 0.0071843755431473255, 0.04430289939045906, -0.0459224209189415, 0.038436632603406906, 0.008304543793201447, -0.04023610055446625, 0.023267120122909546, -0.06247752532362938, 0.048405684530735016, 0.005713310558348894, 0.04423091933131218, -0.02947528287768364, 0.01622220315039158, 0.004705608356744051, 0.03876053914427757, 0.03305622562766075, 0.13244083523750305, 0.0029556259978562593, 0.009510187432169914, 0.017220906913280487, 0.004244494717568159, -0.011372637003660202, -0.00009390972991241142, 0.005713310558348894, -0.02945728972554207, -0.03086087293922901, 0.032318443059921265, 0.020729869604110718, -0.015070543624460697, -0.006568057928234339, 0.024022895842790604, 0.0025462470948696136, -0.07129491865634918, -0.05733104795217514, 0.02033398672938347, -0.02731592208147049, 0.00574929965659976, 0.013091128319501877, 0.007431802339851856, -0.034477803856134415, -0.034513793885707855, 0.058878589421510696, -0.01947024278342724, -0.014314766973257065, -0.03329015523195267, 0.09767511487007141, -0.0800403282046318, -0.0019220566609874368, 0.03629526495933533, -0.0007141638197936118, 0.01686101406812668, 0.024670705199241638, 0.015214500948786736, -0.04729001596570015, -0.05502772703766823, 0.014242787845432758, -0.006455590948462486, 0.04279134422540665, -0.026794075965881348, 0.047469962388277054, 0.0058797611854970455, -0.040092144161462784, -0.05995826795697212, 0.00860595516860485, 0.018201617524027824, -0.04851365461945534, 0.02121572569012642, -0.017787739634513855, 0.0243288055062294, -0.010805804282426834, 0.023663002997636795, -0.0002044083084911108, -0.013891891576349735, -0.032390423119068146, -0.030069107189774513, -0.05898655578494072, 0.025408485904335976, 0.023968912661075592, -0.0009407842881046236, 0.05941842868924141, -0.031886570155620575, 0.025804368779063225, -0.0017780992202460766, -0.0686676949262619, -0.039300378412008286, -0.021431662142276764, -0.05513569712638855, -0.07046715915203094, -0.11365438997745514, 0.0055153691209852695, 0.024958619847893715, -0.007026921957731247, -0.016546107828617096, 0.004581895191222429, 0.02260131575167179, 0.07392214238643646, -0.027010012418031693, -0.007562263868749142, 0.05941842868924141, 0.01499856449663639, 0.05171670764684677, -0.01802167110145092, -0.06075003370642662, -0.03120277263224125, 0.08738216012716293, -0.03811272978782654, 0.0757216066122055, 0.028863465413451195, -0.00998704694211483, -0.03616930544376373, -0.0380767397582531, 0.00575379841029644, -0.02866552397608757, -0.028971431776881218, 0.07492984086275101, 0.0010273837251588702, 0.004213003907352686, 0.01717592030763626, 0.039192408323287964, -0.006199166644364595, 0.034441813826560974, 0.031868577003479004, 0.004980027209967375, -0.005317427683621645, -0.04329519718885422, -0.09371628612279892, 0.018786445260047913, 0.05628735572099686, -0.06388110667467117, -0.025408485904335976, 0.0710429921746254, -0.01477363146841526, 0.0484776645898819, 0.02729792706668377, 0.02522853948175907, -0.008943355642259121, 0.0048225740902125835, -0.008160586468875408, 0.022061476483941078, -0.0961635634303093, 0.02391492761671543, 0.005915750749409199, 0.010418918915092945, -0.04243145138025284, -0.020585913211107254, 0.06470886617898941, 0.010580871254205704, -0.052760396152734756, 0.06272944808006287, 0.030590953305363655, -0.03347010165452957, 0.05851869657635689, -0.030950848013162613, -0.011750524863600731, -0.0015801576664671302, -0.034081920981407166, 0.04675017669796944, -0.026650119572877884, -0.04372707009315491, 0.025516454130411148, -0.06506875902414322, 0.008183079771697521, -0.008731917478144169, -0.007611749228090048, 0.028845470398664474, -0.06614843755960464, -0.005087995436042547, 0.030608948320150375, -0.016402149572968483, -0.003272782079875469, 0.020927811041474342, 0.007404810283333063, -0.0676959827542305, -0.048369694501161575, -0.036637164652347565, -0.0007181001710705459, -0.012335352599620819, -0.0667242705821991, 0.024490756914019585, 0.05301232263445854, -0.03692508116364479, 0.014917588792741299, 0.08155188709497452, 0.021035779267549515, -0.06485281884670258, 0.029709214344620705, 0.021521635353565216, -0.015367455780506134, -0.03699705749750137, -0.061829715967178345, 0.011822503991425037, 0.09587565064430237, -0.0025687403976917267, -0.02260131575167179, -0.062261588871479034, -0.06748004257678986, -0.04642627015709877, 0.06298137456178665, 0.008524979464709759, 0.004368208348751068, -0.013109123334288597, 0.02783776819705963, 0.03854460269212723, -0.04340316355228424, 0.05779890716075897, 0.04991723969578743, -0.018426550552248955, -0.0006202540826052427, 0.02868351712822914, 0.0012101421598345041, 0.016528112813830376, -0.014827615581452847, 0.0072248633950948715, 0.01667206920683384, -0.016366159543395042, -0.01256928313523531, -0.009870081208646297, 0.008704925887286663, 0.018273595720529556, 0.08205573260784149, -0.020603906363248825, -0.05520767346024513, 0.018498528748750687, -0.014404740184545517, -0.007238359656184912, -0.05992228165268898, 0.06956742703914642, -0.04901750385761261, -0.0035831904970109463, 0.06650833040475845, 0.024562736973166466, 0.01781473122537136, 0.011696540750563145, 0.0670841634273529, 0.0352155864238739, 0.02168358862400055, -0.03163464367389679, 0.02337508834898472, -0.015601386316120625, -0.0026069791056215763, -0.0006078827427700162, -0.015781333670020103, 0.0186424870043993, 0.042683377861976624, -0.02602030523121357, -0.010742823593318462, 0.018462540581822395, 0.006662529893219471, 0.0000738063026801683, 0.056683238595724106, -0.027243943884968758, 0.007791695650666952, 0.012596274726092815, 0.03633125498890877, -0.023105166852474213, 0.017283888533711433, 0.005911251995712519, -0.03253437951207161, -0.004746096674352884, 0.0009604659862816334, -0.014800623059272766, -0.01670805923640728, -0.023698991164565086, -0.010454908013343811, 0.04477075859904289, 0.013001155108213425, -0.009357232600450516, 0.0072068688459694386, 0.008322538807988167, -0.022889230400323868, -0.015484420582652092, -0.003909343853592873, -0.017274891957640648, -0.06456490606069565, -0.03123876266181469, -0.048369694501161575, 0.013558990322053432, 0.00008969222835730761, -0.017598796635866165, -0.04156770929694176, -0.061865705996751785, -0.03422587737441063, -0.011030738241970539, -0.0062261587008833885, -0.05779890716075897, -0.012443319894373417, 0.0012315107742324471, -0.09386024624109268, -0.008628448471426964, -0.07334630936384201, 0.03418989107012749, -0.031418707221746445, -0.02216944471001625, 0.021521635353565216, 0.044410865753889084, 0.03739294037222862, 0.044014982879161835, -0.011381634511053562, -0.04124380275607109, 0.03742893040180206, 0.039228398352861404, -0.003871105145663023, -0.061757735908031464, 0.06481683254241943, 0.03987620770931244, 0.003970075864344835, -0.052688419818878174, 0.033236172050237656, 0.02080184780061245, 0.012209389358758926, -0.04045203700661659, -0.03086087293922901, -0.052220556885004044, 0.002834161976352334, 0.013666958548128605, -0.018498528748750687, -0.017301883548498154, 0.009231270290911198, 0.014359753578901291, 0.016591094434261322, 0.010283959098160267, 0.0090018380433321, 0.03814871981739998, 0.0011966461315751076, -0.010086017660796642, -0.03303822875022888, 0.00673000980168581, 0.03951631486415863, -0.027243943884968758, -0.02126971073448658, 0.044050972908735275, -0.025786373764276505, 0.07021523267030716, -0.04462680220603943, 0.02956525608897209, -0.006761500611901283, 0.03427986428141594, 0.024994608014822006, 0.022763269022107124, -0.008183079771697521, 0.04563450440764427, 0.00005008284642826766, -0.0031468195375055075, -0.1000504121184349, 0.0015239242929965258, 0.03212049975991249, -0.024526746943593025, -0.03158066049218178, -0.00046673696488142014, -0.027459880337119102, 0.01947024278342724, 0.04811777174472809, -0.051392801105976105, -0.032804299145936966, 0.03507163003087044, 0.04696610942482948, 0.0006753627676516771, -0.016231199726462364, 0.0021874781232327223, -0.016267189756035805, -0.03253437951207161, -0.04980926960706711, 0.01283020619302988, 0.02557043917477131, 0.0002651403483469039, 0.013397037982940674, -0.00973512139171362, -0.024616720154881477, 0.007737712003290653, -0.06571656465530396, 0.0313827209174633, 0.09947458654642105, 0.038364656269550323, 0.06881164759397507, 0.01947024278342724, 0.027135975658893585, 0.08076012134552002, 0.014908591285347939, 0.014566692523658276, 0.04034407064318657, 0.0425754114985466, -0.05506371706724167, -0.0022122208029031754, 0.010697836056351662, -0.01648312620818615, 0.01516051683574915, 0.021863535046577454, 0.0009188532712869346, 0.027153970673680305, -0.06172174587845802, -0.015124527737498283, 0.03240841627120972, 0.00893435813486576, 0.039624281227588654, -0.035341549664735794, -0.03526956960558891, 0.011354641988873482, 0.02429281547665596, -0.030644938349723816, 0.038364656269550323, 0.07644139230251312, -0.0030928354244679213, -0.020999789237976074, 0.006923452485352755, 0.00033515089307911694, 0.035773422569036484, -0.010580871254205704, 0.04372707009315491, 0.005007019266486168, 0.02783776819705963, -0.03123876266181469, -0.011057729832828045, 0.003976823762059212, -0.04800980165600777, -0.03739294037222862, -0.02301519364118576, 0.04264738783240318, -0.008088608272373676, 0.05733104795217514, 0.008911864832043648, 0.02816167287528515, 0.0011910228058695793, -0.025822363793849945, -0.05934644863009453, 0.03872454911470413, -0.05045707896351814, -0.03636724501848221, 0.022007491439580917, 0.06942346692085266, 0.01323508657515049, 0.021773561835289, -0.05175269395112991, 0.06701218336820602, -0.05340820550918579, 0.048765577375888824, 0.08551071584224701, 0.005830275826156139, -0.003686659736558795, -0.066904217004776, -0.044878728687763214, 0.06985533982515335, -0.0659325048327446, 0.02992515079677105, 0.011084722355008125, -0.03850861266255379, -0.0054883770644664764, 0.08572664856910706, 0.03433384746313095, -0.024868646636605263, -0.031958550214767456, -0.03937235847115517, 0.03998417407274246, 0.05240050330758095, 0.018966391682624817, -0.0015689110150560737, 0.0015565396752208471, -0.026758087798953056, -0.049629323184490204, 0.027081990614533424, -0.04959333315491676, 0.046210333704948425, -0.0036574185360223055, 0.0012146407971158624, -0.0598503015935421, 0.0029353818390518427, 0.015745343640446663, -0.016375157982110977, 0.0425754114985466, 0.012947170995175838, 0.01629418134689331, 0.022421369329094887, -0.04563450440764427, -0.049629323184490204, 0.04005615413188934, 0.034981656819581985, 0.01516951434314251, -0.048441674560308456, -0.030087102204561234, -0.03894048556685448, -0.023645007982850075, -0.044554825872182846, 0.041459739208221436, 0.011336647905409336, -0.04217952489852905, -0.007854676805436611, -0.039192408323287964, 0.03688909113407135, 0.016132229939103127, -0.006019220221787691, -0.017445841804146767, 0.023716986179351807, -0.005704313050955534, -0.016141226515173912, -0.0004833258280996233, 0.022349391132593155, -0.00006340312393149361, -0.006131686735898256, 0.00478658452630043, -0.004651624243706465, -0.028863465413451195, -0.009672139771282673, -0.00802562665194273, -0.0347297303378582, 0.014566692523658276, 0.003801375860348344, 0.0108867809176445, 0.02954726293683052, 0.008911864832043648, 0.02949327789247036, -0.03721299394965172, 0.026722097769379616, 0.03559347614645958, 0.05722307786345482, -0.004048802889883518, 0.009249264374375343, 0.007103399373590946, 0.045742474496364594, 0.02566041238605976, -0.04203556850552559, 0.00288364733569324, 0.0011111714411526918, 0.03343411162495613, -0.03438783064484596, -0.0012427575420588255, 0.009879078716039658, -0.004527911078184843, -0.04347514361143112, -0.049665313214063644, 0.01954222097992897, -0.015043551102280617, 0.020909816026687622, -0.021179737523198128, -0.02218743786215782, 0.015268485061824322, -0.017670774832367897, 0.046714186668395996, 0.005330923479050398, 0.022403374314308167, 0.0027261937502771616, -0.022331396117806435, -0.025318512693047523, -0.017031963914632797, -0.037536900490522385, -0.004033057484775782, 0.08932558447122574, -0.028557555750012398, -0.039624281227588654, 0.022025486454367638, 0.04217952489852905, 0.01477363146841526, 0.019452247768640518, 0.03156266734004021, 0.0441589429974556, 0.048801567405462265, 0.044482845813035965, 0.0068739671260118484, -0.022799257189035416, -0.00040937893209047616, 0.028809480369091034, 0.044482845813035965, 0.00609119888395071, 0.032750315964221954, 0.041495729237794876, -0.001602651085704565, -0.024994608014822006, -0.014251785352826118, 0.008803896605968475, 0.01149859931319952, 0.018129639327526093, -0.054092004895210266, 0.00996905192732811, -0.018948396667838097, 0.033596064895391464, -0.003666415810585022, -0.009208776988089085, -0.06380913406610489, -0.022367386147379875, 0.01631217636168003, 0.014323764480650425, 0.02083783783018589, -0.04505867511034012, 0.028413597494363785, 0.06924352049827576, 0.042755357921123505, 0.05848270654678345, -0.037968773394823074, -0.04567049443721771, 0.012650258839130402, -0.0355214960873127, -0.05419997125864029, -0.014710649847984314, 0.027873756363987923, -0.01320809405297041, 0.05779890716075897, 0.018876418471336365, 0.014179807156324387, 0.03336213529109955, 0.05722307786345482, -0.07039518654346466, 0.02783776819705963, 0.03422587737441063, -0.0025664910208433867, 0.008763408288359642, 0.03588138893246651, -0.08817392587661743, 0.06031816452741623, -0.029259348288178444, 0.03478371351957321, 0.0031130793504416943, -0.0047955820336937904, 0.04135177284479141, 0.00040516143781132996, 0.01063485536724329, -0.0020525180734694004, 0.02945728972554207, -0.025336507707834244, -0.01126466877758503, -0.03739294037222862, 0.04937739670276642, -0.057978853583335876, -0.022385379299521446, 0.0038890999276190996, -0.006694020237773657, 0.009222272783517838, -0.022673295810818672, 0.022745274007320404, 0.04066797345876694, 0.02990715578198433, -0.0013046142412349582, -0.033668044954538345, 0.013109123334288597, 0.005375910084694624, 0.010481900535523891, 0.01841755397617817, -0.00255974312312901, 0.049665313214063644, -0.0016375157283619046, 0.001830958528444171, -0.01258727815002203, 0.0011173570528626442, 0.009843089617788792, 0.0048810564912855625, -0.00519596366211772, 0.021827545017004013, -0.00890736561268568, -0.01434175856411457, -0.006334126926958561, 0.008367525413632393 ]
20,251
pandas_datareader.data
get_summary_iex
Returns an aggregated monthly summary of market volume and a variety of related metrics for trades by lot size, security market cap, and venue. In the absence of parameters, this will return month-to-date statistics. For ranges spanning multiple months, this will return one row per month. start : string, int, date, datetime, Timestamp A datetime object - the beginning of the date range. end : string, int, date, datetime, Timestamp A datetime object - the end of the date range. Returns ------- DataFrame
def get_summary_iex(*args, **kwargs): """ Returns an aggregated monthly summary of market volume and a variety of related metrics for trades by lot size, security market cap, and venue. In the absence of parameters, this will return month-to-date statistics. For ranges spanning multiple months, this will return one row per month. start : string, int, date, datetime, Timestamp A datetime object - the beginning of the date range. end : string, int, date, datetime, Timestamp A datetime object - the end of the date range. Returns ------- DataFrame """ from pandas_datareader.iex.stats import MonthlySummaryReader return MonthlySummaryReader(*args, **kwargs).read()
(*args, **kwargs)
[ -0.031215518712997437, -0.041937846690416336, 0.06535863131284714, -0.025342023000121117, 0.039632365107536316, 0.002096206182613969, -0.0073281447403132915, -0.05009852722287178, -0.019706396386027336, 0.004825963173061609, 0.01673305407166481, 0.04160849377512932, -0.024719908833503723, 0.011801880784332752, -0.02806835062801838, 0.029751718044281006, -0.009688520804047585, -0.00655964994803071, 0.02179231122136116, 0.02104211412370205, -0.02525053545832634, -0.013402911834418774, -0.010941899381577969, 0.01945023238658905, 0.011994004249572754, 0.028233027085661888, 0.039522577077150345, -0.04065702110528946, 0.029477257281541824, -0.0022734631784260273, -0.029788313433527946, 0.0019441082840785384, -0.024591825902462006, 0.012735052965581417, -0.016623269766569138, -0.0005214784760028124, 0.008352803997695446, -0.013704819604754448, -0.07648351043462753, 0.06989641487598419, -0.015653502196073532, -0.052221037447452545, 0.113517627120018, 0.016412848606705666, -0.05145254358649254, -0.02826962247490883, 0.023750141263008118, -0.04947641119360924, 0.057820066809654236, -0.03668646886944771, 0.0030213729478418827, 0.02548840269446373, 0.03915662690997124, -0.008014300838112831, -0.005365739110857248, 0.03624732792377472, -0.016678161919116974, 0.033722274005413055, 0.0551852285861969, 0.020145537331700325, -0.04647562652826309, 0.02647646889090538, 0.03736347332596779, -0.016476890072226524, -0.046073079109191895, 0.02861727401614189, -0.05145254358649254, -0.022377829998731613, -0.03064829669892788, 0.014226298779249191, 0.012030599638819695, 0.006298910826444626, 0.006605393718928099, 0.04680497944355011, -0.037656232714653015, -0.017099004238843918, -0.0805821493268013, -0.03485671803355217, -0.023512274026870728, -0.02009064331650734, -0.007145169656723738, 0.03643030300736427, -0.0031540298368781805, 0.02922109141945839, 0.015186917036771774, -0.03842473030090332, 0.05723454803228378, 0.02695220336318016, 0.03242315351963043, 0.010136809200048447, -0.03172784671187401, 0.029093008488416672, 0.01107912976294756, 0.026348385959863663, -0.033960141241550446, -0.02195698767900467, -0.07040873914957047, 0.04508501663804054, -0.04545096680521965, -0.004544639028608799, -0.03458225727081299, -0.01734602078795433, 0.023805035278201103, 0.01700751669704914, -0.06462673842906952, -0.022633995860815048, 0.01107912976294756, -0.04076680913567543, -0.018032176420092583, 0.020968923345208168, -0.049622792750597, 0.013494398444890976, -0.025415213778614998, -0.030739782378077507, -0.015260106883943081, 0.01941363699734211, 0.01107912976294756, 0.02182890474796295, -0.05039128661155701, -0.03352100029587746, -0.015598610043525696, 0.008956621401011944, 0.00027188926469534636, -0.0025364896282553673, 0.03685114532709122, -0.02009064331650734, 0.029879800975322723, -0.012140384875237942, 0.06960365176200867, -0.024994371458888054, -0.0014054760104045272, -0.05511204153299332, 0.013430357910692692, 0.011005939915776253, 0.011344444006681442, -0.01008191704750061, 0.09968472272157669, -0.028434298932552338, -0.02501266822218895, 0.06093064323067665, -0.0031517427414655685, 0.02878195233643055, -0.042340390384197235, 0.007785581983625889, -0.04863473027944565, -0.025817759335041046, 0.02556159347295761, 0.036777954548597336, 0.009981281124055386, -0.0367230623960495, 0.024042902514338493, -0.04482885077595711, -0.07604436576366425, -0.06850580126047134, 0.04040085896849632, -0.027812184765934944, 0.04270634055137634, 0.04534117877483368, -0.008293337188661098, 0.014500760473310947, -0.015635205432772636, 0.0436578094959259, 0.017464954406023026, -0.013558439910411835, -0.07904515415430069, 0.04665859788656235, -0.03621073439717293, -0.027446234598755836, -0.008512907661497593, -0.004617828875780106, -0.02878195233643055, 0.04105956852436066, -0.00929969921708107, -0.04878110811114311, -0.022249747067689896, 0.02032851055264473, 0.0026782951317727566, 0.044755659997463226, -0.036302220076322556, 0.053611647337675095, -0.020694460719823837, -0.03568010404706001, -0.10810156911611557, -0.03000788390636444, -0.052806556224823, -0.012835688889026642, -0.0041512432508170605, -0.02528713084757328, -0.026092220097780228, -0.0023535145446658134, 0.038607705384492874, 0.0009263104293495417, -0.018681736662983894, -0.03163636103272438, -0.041974443942308426, -0.03886386752128601, -0.025799460709095, 0.05997917056083679, -0.011280402541160583, 0.03430779278278351, -0.01972469501197338, 0.08277784287929535, 0.03588137775659561, -0.006280613597482443, 0.024408850818872452, -0.0011607470223680139, -0.047134336084127426, -0.044243331998586655, -0.09382952749729156, 0.032459747046232224, 0.01184762455523014, -0.016184130683541298, -0.05741752311587334, 0.023805035278201103, 0.011362741701304913, 0.06579777598381042, -0.0031105733942240477, -0.015891369432210922, 0.02477480098605156, 0.03944939002394676, 0.03588137775659561, -0.05906429886817932, 0.006930174306035042, 0.02036510594189167, 0.04592670127749443, 0.0006175402668304741, 0.07476354390382767, -0.0009057257557287812, 0.029312578961253166, -0.03240485489368439, -0.04823218286037445, -0.037326879799366, 0.01471118163317442, 0.023274406790733337, -0.029477257281541824, 0.0026782951317727566, -0.002042457228526473, 0.0045903827995061874, 0.003689231351017952, 0.019431933760643005, -0.021609336137771606, -0.009354591369628906, 0.0032981226686388254, 0.028727060183882713, -0.059283867478370667, -0.07271422445774078, -0.013723117299377918, 0.06327272206544876, -0.04859813302755356, 0.0004580090462695807, 0.04417014122009277, -0.01244229357689619, 0.055917128920555115, 0.023237813264131546, 0.04965938627719879, -0.019065985456109047, -0.04120594635605812, -0.013165043666958809, 0.024207578971982002, -0.10824795067310333, 0.06506587564945221, -0.05727114528417587, 0.029641933739185333, 0.008878856897354126, 0.005137020256370306, 0.03041042760014534, 0.016916029155254364, 0.0011641777819022536, 0.07963067293167114, -0.009468951262533665, -0.05328229069709778, 0.07007938623428345, 0.00909385271370411, -0.011307848617434502, 0.00750197097659111, -0.025982435792684555, 0.03915662690997124, -0.09463461488485336, -0.06371185928583145, 0.005242230836302042, -0.0017599897691980004, 0.005114148370921612, -0.014546504244208336, -0.015653502196073532, 0.0367230623960495, -0.07417802512645721, 0.028287919238209724, -0.02219485491514206, -0.018608547747135162, 0.002227719407528639, -0.004908301867544651, 0.014994792640209198, -0.09543970972299576, -0.029989585280418396, -0.012076343409717083, 0.05375802516937256, -0.0144916120916605, -0.05445333197712898, -0.011481675319373608, 0.03875408321619034, -0.02338419295847416, -0.014839264564216137, 0.02512245438992977, -0.01972469501197338, -0.020035751163959503, 0.028214730322360992, 0.016339657828211784, -0.015946263447403908, -0.017867498099803925, -0.036302220076322556, 0.03685114532709122, 0.06085745245218277, -0.011463377624750137, -0.060637880116701126, -0.05196487158536911, -0.061077021062374115, -0.04032766819000244, 0.040474049746990204, 0.02437225729227066, 0.019084282219409943, -0.01605604775249958, -0.01520521380007267, 0.041462112218141556, -0.06781049817800522, 0.05617329478263855, 0.03385035693645477, -0.07000619918107986, 0.013101003132760525, 0.063126340508461, -0.040583834052085876, -0.003064829623326659, -0.03569840267300606, 0.04768325760960579, 0.02861727401614189, -0.053611647337675095, -0.07179935276508331, 0.01320163905620575, -0.021938690915703773, 0.0384979173541069, 0.039046842604875565, -0.0037898675072938204, -0.018004730343818665, -0.005484672728925943, 0.03214868903160095, 0.014299488626420498, -0.05013512447476387, 0.07604436576366425, -0.07286060601472855, 0.00278808013536036, 0.046548813581466675, -0.008444291539490223, 0.055990319699048996, 0.015443081967532635, 0.020987221971154213, 0.04029107466340065, 0.07018917053937912, 0.013613332994282246, -0.02254250831902027, -0.025195643305778503, -0.03886386752128601, 0.015900518745183945, -0.007081128656864166, -0.0071177235804498196, 0.021023815497756004, -0.03306356444954872, -0.030520213767886162, 0.012606970965862274, 0.05255039036273956, 0.0694572702050209, 0.03540564328432083, -0.015132023952901363, -0.03615583851933479, -0.03326483815908432, 0.06938408315181732, -0.07073809951543808, 0.02651306241750717, -0.053135912865400314, -0.0428893156349659, -0.07736178487539291, -0.015342445112764835, 0.017977284267544746, -0.005155317950993776, -0.008156105875968933, 0.0035474258475005627, 0.060125552117824554, 0.0031951991841197014, 0.013887794688344002, -0.010008727200329304, -0.038241755217313766, -0.02135317027568817, -0.004670434165745974, -0.00855407677590847, -0.012414846569299698, -0.03000788390636444, -0.026092220097780228, -0.05712476372718811, 0.06491949409246445, -0.005246805492788553, -0.018526209518313408, -0.02084084041416645, -0.0084854606539011, -0.020054049789905548, 0.047976016998291016, -0.030629998072981834, -0.035588618367910385, -0.0436578094959259, -0.011207212693989277, -0.12105619162321091, 0.014070769771933556, -0.037619639188051224, 0.04255996271967888, -0.019358744844794273, -0.03787580505013466, 0.016367103904485703, -0.010960196144878864, 0.01524180918931961, 0.06129659339785576, -0.047024548053741455, -0.02148125320672989, 0.013073557056486607, 0.03794899582862854, -0.011902517639100552, -0.007474524900317192, 0.04589010402560234, -0.002346653025597334, -0.08409526199102402, -0.03584478422999382, -0.05108659341931343, -0.01159145962446928, 0.009853198193013668, -0.018105367198586464, -0.013036961667239666, -0.10693053156137466, 0.028598977252840996, 0.008430568501353264, -0.039046842604875565, -0.06546841561794281, -0.010347230359911919, 0.007497396320104599, 0.0339418426156044, -0.012158682569861412, 0.00955128949135542, 0.05771028250455856, 0.015863923355937004, -0.03461885079741478, -0.029001520946621895, -0.025781163945794106, 0.032166987657547, -0.009395761415362358, -0.008302486501634121, 0.013869496993720531, 0.011518269777297974, 0.026659442111849785, -0.03194741904735565, 0.026384981349110603, -0.08548587560653687, 0.06144297122955322, 0.013466952368617058, 0.03240485489368439, 0.0041649662889540195, 0.034161414951086044, -0.007163467351347208, -0.026750929653644562, -0.023988008499145508, 0.04387738183140755, -0.022048475220799446, -0.028562381863594055, -0.03330143168568611, -0.007131446618586779, 0.002630264265462756, 0.011216361075639725, 0.02762920968234539, 0.0011264391941949725, -0.03105084039270878, 0.04621946066617966, 0.028452597558498383, -0.031069137156009674, 0.017181342467665672, 0.04303569719195366, -0.0022997658234089613, 0.004409695044159889, -0.00697591807693243, 0.06587096303701401, 0.039083439856767654, -0.033246539533138275, 0.04629265144467354, 0.017602184787392616, -0.048415157943964005, 0.018791522830724716, -0.03944939002394676, 0.03143508732318878, 0.08460759371519089, 0.04493863508105278, 0.04449949413537979, 0.030300643295049667, 0.008146957494318485, 0.06118680536746979, 0.004190125036984682, 0.02755602076649666, 0.027610912919044495, 0.04135232791304588, -0.018032176420092583, 0.03125211223959923, -0.0011087135644629598, 0.019303852692246437, 0.026458170264959335, 0.0012179267359897494, -0.038571108132600784, 0.014390976168215275, -0.07816687971353531, 0.001066972385160625, 0.030300643295049667, -0.030355535447597504, 0.04742709547281265, -0.009816603735089302, -0.012744201347231865, -0.022048475220799446, 0.054489925503730774, 0.02345738187432289, -0.0025616486091166735, 0.060125552117824554, -0.0030236602760851383, -0.00468415766954422, 0.019560016691684723, -0.013165043666958809, 0.015690097585320473, -0.014637991786003113, 0.03359419107437134, -0.019505124539136887, 0.029477257281541824, -0.023676952347159386, 0.00021070703223813325, -0.002925311215221882, -0.04918365180492401, -0.015836477279663086, -0.030593402683734894, 0.017940688878297806, -0.0064727370627224445, 0.07432440668344498, 0.03948598355054855, 0.012195277027785778, 0.007803879678249359, -0.026622848585247993, -0.03452736511826515, 0.020017454400658607, 0.05024490877985954, -0.0005206207861192524, 0.03020915575325489, 0.08292422443628311, 0.0006512762629427016, 0.00008598390559200197, -0.007447078358381987, 0.05134275555610657, 0.004567510914057493, 0.034198008477687836, 0.07867920398712158, -0.018315788358449936, 0.02087743580341339, -0.032935481518507004, -0.02294505201280117, 0.02790367230772972, 0.019358744844794273, 0.045158203691244125, 0.05061085894703865, -0.054123975336551666, 0.03679625317454338, 0.04596329480409622, 0.004871706943958998, -0.03787580505013466, -0.01836153119802475, -0.02620200626552105, 0.007707817479968071, 0.010987643152475357, -0.014043323695659637, 0.020383404567837715, -0.01033808197826147, -0.0061388080939650536, -0.04417014122009277, 0.018864711746573448, -0.04215741530060768, 0.001515260897576809, -0.03505799174308777, 0.06978663057088852, -0.1000506728887558, 0.0053016976453363895, 0.059137485921382904, -0.06777390092611313, -0.015397338196635246, 0.030465321615338326, 0.023676952347159386, 0.03295378014445305, -0.02742793783545494, -0.011811030097305775, 0.019633207470178604, 0.04402375966310501, 0.03020915575325489, -0.029111307114362717, -0.06609053164720535, -0.003952257800847292, -0.008206424303352833, -0.043328456580638885, 0.09017003327608109, -0.030575105920433998, -0.004752772860229015, 0.008608968928456306, 0.004071191418915987, 0.03505799174308777, 0.028800249099731445, -0.014820966869592667, -0.009908091276884079, 0.029367471113801003, 0.008608968928456306, 0.02453693374991417, 0.02464671991765499, 0.018388977274298668, 0.0013723117299377918, 0.023530572652816772, -0.008188126608729362, 0.021408062428236008, -0.0480492077767849, 0.00619370024651289, 0.02314632572233677, -0.030959352850914, -0.021645931527018547, 0.014555653557181358, 0.0313618965446949, 0.02878195233643055, 0.02310973033308983, 0.04449949413537979, -0.05467290058732033, -0.005631052423268557, 0.03408822417259216, 0.04354802519083023, -0.055441394448280334, 0.04907386749982834, 0.001949826255440712, 0.05104999616742134, 0.035588618367910385, -0.0805821493268013, 0.015690097585320473, 0.007918238639831543, 0.02417098358273506, 0.023951414972543716, -0.01524180918931961, -0.01115232054144144, 0.02556159347295761, -0.02104211412370205, -0.021060410887002945, 0.04321867227554321, -0.008563225157558918, 0.0021876937244087458, -0.008595245890319347, 0.02402460388839245, 0.03498480096459389, 0.008023449219763279, 0.04340164735913277, -0.030154263600707054, 0.006797517649829388, 0.03222187981009483, -0.047134336084127426, -0.03183763101696968, -0.0363205187022686, -0.02084084041416645, 0.0022929043043404818, 0.0853394940495491, -0.028434298932552338, -0.040986377745866776, 0.011170617304742336, -0.007973131723701954, 0.02127998135983944, 0.05712476372718811, 0.05134275555610657, 0.07597117871046066, 0.020017454400658607, 0.011527419090270996, 0.04739049822092056, -0.02365865372121334, -0.023292705416679382, -0.013521845452487469, 0.047061145305633545, 0.005900940392166376, -0.010777221992611885, 0.011161468923091888, 0.009953834116458893, -0.0500253364443779, 0.018206002190709114, -0.051269568502902985, -0.035789892077445984, -0.02810494415462017, -0.059686411172151566, 0.010887006297707558, -0.04457268491387367, 0.002175114117562771, -0.010502759367227554, 0.04958619922399521, -0.0031631786841899157, -0.08263146132230759, 0.040949784219264984, 0.025067562237381935, -0.007890792563557625, -0.026988796889781952, 0.023603761568665504, 0.07022576779127121, 0.06894494593143463, 0.04252336546778679, -0.008101213723421097, -0.029788313433527946, 0.022762076929211617, -0.012094641104340553, -0.024152686819434166, 0.015296701341867447, 0.023475680500268936, -0.005997002124786377, 0.0472441203892231, 0.08036257326602936, -0.024719908833503723, 0.0044988952577114105, 0.03787580505013466, -0.06495609134435654, 0.004546926356852055, 0.05112318694591522, -0.03068489022552967, -0.03643030300736427, 0.004400546196848154, -0.06854239851236343, 0.036265626549720764, -0.03743666410446167, 0.036265626549720764, 0.03690603747963905, -0.016787946224212646, 0.02603732794523239, 0.019395340234041214, 0.013348018750548363, 0.04274293780326843, 0.022487616166472435, -0.0006901584565639496, -0.03264272212982178, 0.029568742960691452, 0.05760049819946289, -0.045633941888809204, -0.015809031203389168, 0.01578158512711525, 0.002671433612704277, -0.005740837659686804, -0.028910033404827118, 0.0072275083512067795, 0.003030521795153618, 0.024116091430187225, -0.002315776189789176, -0.01244229357689619, 0.007931961677968502, -0.01754729263484478, -0.015342445112764835, 0.029001520946621895, 0.01839812658727169, 0.008682158775627613, 0.028836844488978386, -0.00956958718597889, 0.03573499619960785, -0.02746453322470188, 0.028800249099731445, -0.028251323848962784, 0.014848412945866585, -0.009194488637149334, 0.00566764734685421, 0.023878224194049835, -0.013896944001317024, -0.006770071107894182 ]
20,252
pandas_datareader.data
get_tops_iex
null
def get_tops_iex(*args, **kwargs): return IEXTops(*args, **kwargs).read()
(*args, **kwargs)
[ -0.028174689039587975, -0.07048650085926056, 0.052134789526462555, -0.04533171281218529, 0.05087373033165932, -0.010860031470656395, -0.01371400523930788, -0.05382725968956947, 0.05840689316391945, -0.03326869755983353, 0.0635174959897995, -0.005176974460482597, -0.048218872398138046, -0.027378231287002563, -0.04758834466338158, 0.034513164311647415, 0.022582892328500748, -0.017887111753225327, 0.02683066576719284, 0.005276531912386417, -0.015199066139757633, 0.030364947393536568, 0.005160381551831961, -0.06464581191539764, 0.03789810836315155, 0.028572916984558105, -0.0014394312165677547, -0.056648049503564835, 0.03826315328478813, -0.07426967471837997, -0.050110459327697754, -0.04665914177894592, -0.04241136834025383, 0.0047040777280926704, -0.03703527897596359, 0.017555253580212593, 0.0027668606489896774, -0.006102026905864477, 0.006529293488711119, 0.03753306716680527, -0.04012155160307884, -0.08336256444454193, 0.07798647880554199, -0.025503236800432205, -0.06696881353855133, -0.021222276613116264, 0.016659239307045937, -0.061559539288282394, 0.07088472694158554, -0.007267675828188658, 0.018550826236605644, -0.01495847012847662, 0.043937914073467255, -0.026681330054998398, -0.02334616519510746, 0.010835142806172371, -0.00250967126339674, 0.0014062455156818032, 0.03673660755157471, 0.026930224150419235, 0.00028311580535955727, 0.03915916755795479, 0.05877193436026573, 0.002464040881022811, -0.002050256123766303, 0.014684687368571758, -0.030364947393536568, 0.005268235225230455, -0.07446879148483276, -0.007616125978529453, 0.02069130539894104, -0.03298661857843399, -0.037002094089984894, 0.01290925033390522, -0.02643243782222271, -0.02047559805214405, -0.04164809733629227, -0.015738334506750107, 0.0003476724086795002, -0.005073269363492727, -0.05077417567372322, 0.04788701608777046, 0.007570495828986168, 0.09384925663471222, 0.05475646257400513, -0.03577422350645065, 0.08873865753412247, 0.006072989199310541, 0.020724492147564888, 0.058705564588308334, -0.06122767925262451, 0.03220675513148308, -0.03872775286436081, 0.0015555813442915678, 0.022665856406092644, -0.014327940531075, 0.00747923506423831, 0.01782074011862278, 0.024673594161868095, -0.037632621824741364, -0.03297002613544464, -0.007529013324528933, 0.007728127762675285, -0.032704539597034454, -0.02087382785975933, 0.002372780116274953, 0.00019094761228188872, 0.02460722252726555, 0.017239989712834358, -0.025320716202259064, -0.02930300310254097, 0.028838403522968292, 0.023478906601667404, -0.05770999193191528, 0.04815250262618065, -0.0025241898838430643, 0.03217357024550438, 0.05100647360086441, -0.0054175714030861855, -0.03238927572965622, -0.05920334905385971, -0.012494429014623165, -0.009872755967080593, 0.02661495842039585, 0.000872681092005223, 0.032024234533309937, 0.0031692376360297203, -0.029867161065340042, 0.031078441068530083, -0.06633828580379486, 0.028324024751782417, -0.07811921834945679, -0.010519878007471561, 0.026548586785793304, 0.008101467043161392, -0.01984506845474243, 0.04566356912255287, -0.019015425816178322, 0.006458773743361235, 0.025287529453635216, -0.00005412126483861357, 0.021869398653507233, -0.04669233039021492, 0.011225074529647827, -0.054988760501146317, -0.0014238754520192742, 0.05638256296515465, -0.03298661857843399, 0.07015464454889297, -0.03345122188329697, 0.018086224794387817, 0.0020948494784533978, -0.1126987561583519, -0.043771982192993164, 0.0470573715865612, -0.03723439574241638, -0.0011054998030886054, -0.016128266230225563, -0.015862781554460526, -0.028722252696752548, -0.032273128628730774, 0.006002469919621944, -0.001030313316732645, -0.02666473761200905, -0.043108269572257996, 0.011299742385745049, -0.0086946627125144, 0.006877743639051914, 0.030447911471128464, 0.046161357313394547, -0.027394823729991913, -0.02396010048687458, -0.03577422350645065, -0.029800789430737495, -0.034944579005241394, -0.0073133064433932304, -0.035541921854019165, 0.04675870016217232, -0.01053647045046091, 0.028987739235162735, -0.04038703814148903, -0.028722252696752548, -0.08230061829090118, 0.0008301619091071188, -0.011249964125454426, -0.003001234959810972, 0.08973422646522522, -0.02890477515757084, -0.018766533583402634, -0.026598365977406502, 0.00139483786188066, 0.034081749618053436, 0.037201207131147385, 0.034114934504032135, 0.010793659836053848, -0.008777626790106297, -0.023694613948464394, 0.03590696305036545, -0.023694613948464394, 0.0450994148850441, -0.05021001771092415, 0.05917016416788101, 0.048052944242954254, -0.0020108481403440237, -0.006479514762759209, 0.027793053537607193, 0.015207363292574883, -0.04735604301095009, -0.0859510526061058, 0.01762162521481514, 0.004409554414451122, -0.006321882363408804, -0.040021996945142746, -0.01147396769374609, 0.014054158702492714, 0.10792000591754913, -0.034314051270484924, 0.03428086265921593, 0.011706267483532429, 0.0048243761993944645, 0.03521006554365158, -0.027145931497216225, -0.030663618817925453, -0.004567186813801527, 0.04526534304022789, 0.023843949660658836, 0.06428077071905136, 0.0038433228619396687, 0.04466800019145012, 0.020940197631716728, 0.024258771911263466, 0.005305569153279066, 0.056216634809970856, 0.023678021505475044, -0.015804706141352654, 0.028373803943395615, -0.04284278303384781, -0.03252201899886131, -0.01717361807823181, -0.011507153511047363, -0.046625956892967224, -0.004745560232549906, 0.005056676454842091, 0.009308598935604095, -0.038595009595155716, -0.03743350878357887, 0.03054746799170971, -0.0049073402769863605, -0.05721220746636391, -0.01966254785656929, 0.10267665982246399, -0.01626930572092533, 0.026050802320241928, -0.01926431804895401, 0.0019019574392586946, 0.011747750453650951, -0.03972332552075386, -0.05342903360724449, 0.0061849914491176605, -0.07805284857749939, -0.013589558191597462, 0.016294196248054504, -0.012776507996022701, 0.015215659514069557, 0.0014778022887185216, 0.038030851632356644, -0.00005878800948266871, 0.0005206012283451855, -0.000620158389210701, 0.03338484838604927, -0.05863919481635094, 0.0511724017560482, -0.02399328537285328, 0.03829633817076683, -0.013490000739693642, -0.012527614831924438, -0.018600603565573692, -0.02809172496199608, -0.04071889817714691, -0.046825069934129715, -0.001419727224856615, 0.05077417567372322, -0.05269894748926163, -0.030680211260914803, 0.020575154572725296, -0.05800866335630417, 0.0307631753385067, -0.0736723318696022, -0.006471218075603247, -0.027494380250573158, 0.017157025635242462, 0.062355995178222656, -0.056614864617586136, -0.060962192714214325, 0.03869456797838211, 0.02215147763490677, -0.02892136760056019, -0.015912558883428574, 0.04589587077498436, 0.018335118889808655, -0.0035384290385991335, -0.08263248205184937, -0.05094010382890701, -0.05923653766512871, 0.021653691306710243, 0.06517678499221802, 0.019214540719985962, 0.0011366114486008883, -0.05143788829445839, -0.022284220904111862, 0.005840689409524202, 0.014054158702492714, -0.017157025635242462, -0.017687996849417686, -0.057079464197158813, 0.001958995359018445, -0.006545885931700468, 0.05190248787403107, 0.055851589888334274, 0.04344012588262558, -0.013357258401811123, -0.00584483752027154, 0.03220675513148308, -0.05578522011637688, 0.053362660109996796, 0.03384944796562195, -0.06457944214344025, -0.02850654534995556, 0.05571884661912918, -0.0449998565018177, -0.008122208528220654, -0.004085993394255638, 0.018915869295597076, 0.005674760788679123, -0.028025353327393532, 0.024673594161868095, 0.021753249689936638, 0.07068561762571335, 0.02293134294450283, 0.006072989199310541, 0.00003271581954322755, -0.0634843111038208, 0.0007751980447210371, 0.0409180112183094, 0.007458494044840336, -0.07214578986167908, 0.04320782795548439, -0.042743224650621414, -0.01096788514405489, 0.02092360518872738, 0.013838451355695724, 0.008142950013279915, 0.04626091569662094, 0.026880444958806038, 0.034314051270484924, 0.09557491540908813, -0.01594574563205242, 0.017488881945610046, 0.04234499856829643, 0.0015846188180148602, 0.036371566355228424, -0.033069584518671036, -0.02215147763490677, 0.01322451513260603, -0.05180293321609497, -0.05366133153438568, 0.10420320928096771, 0.049280814826488495, 0.01319962553679943, 0.008300581946969032, -0.040652524679899216, -0.032488834112882614, -0.0019672918133437634, 0.008329619653522968, -0.01611997000873089, 0.0245906300842762, -0.035508736968040466, -0.060132551938295364, -0.0450994148850441, -0.04360605403780937, 0.03706846386194229, 0.012975621968507767, -0.005181123036891222, 0.0005937135429121554, 0.03320232778787613, 0.04811931401491165, -0.03952420875430107, 0.04078526794910431, 0.03998880833387375, -0.003596503986045718, -0.003277091309428215, -0.007002190221101046, -0.01115870289504528, -0.026482217013835907, 0.0018843275029212236, -0.013456814922392368, 0.02951871044933796, -0.010918106883764267, -0.03829633817076683, -0.02152094803750515, -0.010013795457780361, -0.025071822106838226, 0.054192304611206055, -0.01558070257306099, -0.0022898155730217695, -0.04672551527619362, -0.013299182988703251, -0.029004331678152084, -0.00010934440069831908, -0.026897037401795387, -0.032057419419288635, 0.010785363614559174, -0.02520456537604332, -0.03809722512960434, 0.005280680023133755, 0.014386015944182873, -0.020425818860530853, 0.07865019142627716, -0.026880444958806038, -0.047853827476501465, 0.015223955735564232, 0.007578792050480843, 0.004973711911588907, 0.010403728112578392, 0.024657001718878746, -0.002617524703964591, -0.059933435171842575, -0.026681330054998398, 0.030066275969147682, 0.06982278823852539, -0.05694672092795372, -0.014726169407367706, -0.03955739736557007, 0.0204590056091547, 0.03607289493083954, -0.015348401851952076, -0.027112744748592377, -0.05774317681789398, 0.022881563752889633, 0.07705727219581604, 0.02764371782541275, 0.07473427802324295, 0.05097328871488571, 0.07048650085926056, -0.002600932028144598, -0.014966766349971294, -0.0470905564725399, 0.05435823276638985, 0.0030551617965102196, -0.03424767777323723, 0.04629410058259964, -0.009084594435989857, 0.05986706539988518, -0.018268747255206108, 0.015282031148672104, -0.049247629940509796, 0.007806944195181131, 0.06935818493366241, -0.027311859652400017, 0.011025960557162762, 0.0041689579375088215, 0.0021404798608273268, 0.0004915636964142323, -0.06922544538974762, 0.02825765311717987, -0.03670342266559601, -0.030663618817925453, -0.0024018175899982452, 0.01555581297725439, 0.018600603565573692, -0.003608948551118374, 0.015016544610261917, -0.06660377234220505, -0.018484454602003098, 0.04214588180184364, 0.039026424288749695, -0.0027419712860137224, -0.007686645723879337, 0.02006077580153942, -0.0512055866420269, -0.007607829757034779, -0.09106165915727615, 0.015190769918262959, 0.014170308597385883, -0.040652524679899216, 0.04131624102592468, -0.007114192005246878, -0.03852863609790802, 0.02497226558625698, -0.09152625501155853, 0.01928091235458851, 0.0859510526061058, -0.01005527749657631, 0.02624991536140442, 0.05183611810207367, 0.03809722512960434, 0.003911768551915884, -0.0347786508500576, -0.023213421925902367, 0.017687996849417686, 0.019496619701385498, -0.0035487995482981205, 0.06046440824866295, -0.04254411160945892, 0.01558070257306099, -0.0036753201857209206, 0.026183543726801872, -0.009814680553972721, 0.01783733256161213, -0.04287596791982651, 0.030447911471128464, -0.03160941228270531, 0.02523775026202202, 0.020840641111135483, 0.005716242827475071, -0.02888818271458149, 0.015937449410557747, 0.09816340357065201, 0.0388936810195446, 0.04267685487866402, 0.09444659948348999, -0.04685825854539871, -0.03992243856191635, 0.026366066187620163, 0.028008760884404182, -0.015389884822070599, -0.01865038275718689, 0.03461272269487381, -0.009872755967080593, 0.06023210659623146, 0.007844277657568455, -0.024457886815071106, -0.0184346754103899, -0.009748309850692749, -0.012552504427731037, -0.039424654096364975, 0.006662036292254925, 0.019745511934161186, 0.09139351546764374, -0.01538158766925335, -0.0004926007241010666, -0.010884921066462994, 0.008686366491019726, -0.021454578265547752, 0.022798599675297737, -0.03094569779932499, -0.02583509497344494, 0.05515469238162041, -0.04848435893654823, 0.006558330729603767, -0.011050849221646786, -0.06627190858125687, 0.03363374248147011, -0.023910321295261383, 0.02887158840894699, 0.053130362182855606, -0.02930300310254097, 0.010777067393064499, -0.055818405002355576, 0.009391563013195992, 0.02603420801460743, 0.018600603565573692, 0.000911052105948329, -0.00071141921216622, -0.01404586248099804, 0.015663666650652885, -0.0007171229808591306, 0.031675782054662704, -0.044170212000608444, -0.01908179745078087, -0.00412125326693058, 0.03607289493083954, 0.03374989330768585, 0.0014249124797061086, 0.012104496359825134, -0.022782007232308388, 0.0276603102684021, 0.018152596428990364, 0.04871665686368942, -0.013813561759889126, 0.03507732227444649, 0.014369423501193523, 0.006272103637456894, -0.05784273520112038, 0.06829623878002167, 0.01648501306772232, -0.007292564958333969, 0.0169164277613163, 0.006367512978613377, 0.011623303405940533, 0.04642684385180473, -0.03527643531560898, -0.00706026516854763, 0.031012069433927536, 0.04898214340209961, -0.02523775026202202, 0.01022950280457735, -0.004480074159801006, -0.06995552778244019, -0.021769842132925987, -0.05014364421367645, 0.07347321510314941, 0.02809172496199608, -0.019148169085383415, 0.034148119390010834, -0.018982240930199623, 0.01906520500779152, -0.008466510102152824, -0.01883290521800518, 0.014834023080766201, 0.08137141913175583, 0.013307479210197926, -0.022782007232308388, -0.0011822418309748173, -0.057079464197158813, 0.04874984547495842, 0.04028748348355293, 0.008935258723795414, 0.0255862008780241, -0.045597199350595474, -0.023711208254098892, 0.013025401160120964, -0.047223299741744995, 0.00830473005771637, 0.0037976924795657396, 0.03816359490156174, 0.02070789784193039, -0.0053677926771342754, 0.04400428384542465, -0.021819621324539185, 0.027112744748592377, -0.002642414066940546, 0.08449088037014008, -0.017273174598813057, -0.01159011758863926, -0.027560751885175705, 0.024889301508665085, 0.02455744333565235, -0.09922534972429276, 0.01888268254697323, -0.04586268588900566, 0.015514330938458443, -0.034845020622015, -0.02067471295595169, 0.019928034394979477, -0.018102819100022316, -0.06511040776968002, 0.026482217013835907, 0.0512055866420269, -0.014535351656377316, 0.029236631467938423, -0.0008125319727696478, 0.0169164277613163, 0.01800326071679592, -0.06922544538974762, 0.0084416214376688, 0.012950733304023743, 0.0013512816512957215, 0.016012117266654968, -0.04383835569024086, -0.0061061750166118145, 0.0026092284824699163, 0.01621123217046261, 0.062422364950180054, 0.03584059327840805, -0.007657608482986689, -0.0019880328327417374, -0.0054797944612801075, 0.03280409798026085, -0.005815799813717604, 0.04874984547495842, 0.033285290002822876, 0.03773218020796776, -0.009640456177294254, -0.016244417056441307, 0.0245906300842762, 0.026780888438224792, 0.022085106000304222, -0.00003794970325543545, 0.01906520500779152, -0.010013795457780361, -0.015696851536631584, 0.0347454659640789, -0.05206841602921486, -0.04612817242741585, 0.003073828760534525, -0.02332957088947296, 0.04991134628653526, -0.03856182470917702, -0.08754396438598633, -0.03730076551437378, 0.02951871044933796, 0.01320792268961668, 0.008553623221814632, 0.03723439574241638, -0.03567466512322426, -0.01783733256161213, -0.027958981692790985, 0.052167974412441254, -0.03733395040035248, -0.009283709339797497, -0.011897086165845394, 0.03378307819366455, -0.020160334184765816, 0.03326869755983353, 0.022234441712498665, -0.024009879678487778, -0.02148776315152645, -0.06876084208488464, -0.012137682177126408, -0.03919235244393349, -0.022267628461122513, 0.0035840594209730625, 0.029170259833335876, 0.03438042104244232, 0.020210111513733864, 0.014319644309580326, 0.07201304286718369, -0.10008817911148071, 0.04855072870850563, 0.024109436199069023, 0.015829594805836678, 0.016460124403238297, 0.024126028642058372, -0.02193577028810978, 0.07048650085926056, -0.023711208254098892, -0.010403728112578392, 0.01178093533962965, 0.0007560125086456537, 0.0010194242931902409, -0.02744460292160511, 0.00007311232184292749, 0.012660358101129532, -0.0007751980447210371, -0.026266509667038918, -0.020127147436141968, -0.04320782795548439, 0.030215611681342125, -0.0634511262178421, 0.011731157079339027, 0.03134392574429512, -0.034712277352809906, 0.013166440650820732, -0.022483335807919502, -0.025967838242650032, 0.049878157675266266, 0.0060149142518639565, 0.009258819743990898, 0.023827357217669487, -0.0013201700057834387, 0.023263199254870415, 0.05429186299443245, -0.016385456547141075, 0.057046279311180115, 0.029137074947357178, 0.03301980718970299, 0.0009940164163708687, -0.006367512978613377, -0.009582380764186382, 0.004088067449629307, -0.04523215442895889, -0.009267115965485573, 0.026316286996006966, 0.04038703814148903, -0.011498857289552689, -0.04874984547495842, 0.0008597179548814893 ]
20,263
pandas_datareader
test
Run the test suite Parameters ---------- extra_args : {str, List[str]} A string or list of strings to pass to pytest. Default is ["--only-stable", "--skip-requires-api-key"]
def test(extra_args=None): """ Run the test suite Parameters ---------- extra_args : {str, List[str]} A string or list of strings to pass to pytest. Default is ["--only-stable", "--skip-requires-api-key"] """ try: import pytest except ImportError as err: raise ImportError("Need pytest>=5.0.1 to run tests") from err cmd = ["--only-stable", "--skip-requires-api-key"] if extra_args: if not isinstance(extra_args, list): extra_args = [extra_args] cmd = extra_args cmd += [PKG] joined = " ".join(cmd) print(f"running: pytest {joined}") sys.exit(pytest.main(cmd))
(extra_args=None)
[ -0.006089697126299143, -0.038802869617938995, -0.004957352299243212, 0.006660327315330505, 0.04525812715291977, 0.001655051251873374, -0.009896871633827686, -0.006406218744814396, 0.04882456734776497, -0.013766460120677948, 0.018144264817237854, 0.024269627407193184, 0.0011925285216420889, -0.017778705805540085, 0.0063170576468110085, -0.02671263925731182, 0.07917497307062149, 0.007841710932552814, 0.07318335771560669, 0.04522246494889259, 0.02252207137644291, 0.08124351501464844, -0.008100277744233608, 0.05096443369984627, 0.04918121173977852, 0.04454484209418297, 0.06569383293390274, -0.03948049619793892, 0.009468899108469486, -0.024394452571868896, -0.019704584032297134, -0.03514726832509041, -0.030189918354153633, 0.08309806138277054, -0.011216455139219761, -0.010101942345499992, -0.05613576993346214, 0.011368028819561005, -0.05834696441888809, 0.05303296819329262, 0.022040601819753647, 0.0019047020468860865, 0.08466729521751404, -0.01938360370695591, 0.01029809657484293, -0.020721018314361572, 0.006446341052651405, -0.03639552369713783, -0.03391684964299202, -0.021041998639702797, 0.05164205655455589, -0.0066380370408296585, 0.08431065082550049, 0.024982914328575134, -0.019615422934293747, 0.03404167294502258, 0.043082598596811295, 0.018001608550548553, 0.03120635263621807, 0.04383155331015587, -0.008737779222428799, 0.07411063462495804, -0.043225258588790894, 0.021113326773047447, -0.041656024754047394, -0.04055042564868927, -0.039016857743263245, -0.008800191804766655, -0.014488664455711842, -0.029244810342788696, -0.048218272626399994, 0.04019378125667572, -0.017689544707536697, -0.05413856357336044, 0.00790412351489067, -0.011180790141224861, -0.07439594715833664, -0.05970221012830734, -0.02778257057070732, 0.009201415814459324, 0.018688147887587547, 0.01680685020983219, -0.05906025320291519, 0.06786935776472092, 0.003002496901899576, 0.009932536631822586, 0.024394452571868896, -0.0004081902443431318, 0.04582875967025757, 0.06059382110834122, 0.014194432646036148, -0.0036132498644292355, -0.007676762994378805, 0.04953785613179207, 0.029672784730792046, -0.019972065463662148, 0.04679169878363609, 0.017939195036888123, -0.08031623810529709, 0.0013619344681501389, 0.02109549567103386, -0.0029646034818142653, 0.009647221304476261, 0.02500074729323387, -0.013704047538340092, 0.02699795365333557, -0.020435703918337822, -0.01379320863634348, -0.017279403284192085, 0.04686302691698074, -0.02599935047328472, -0.027693409472703934, -0.04647071659564972, -0.02908432111144066, -0.0003067695943173021, -0.02908432111144066, 0.01278568897396326, -0.021077662706375122, -0.0018099684966728091, -0.017912447452545166, 0.009673969820141792, 0.05039380118250847, 0.051000095903873444, -0.011278867721557617, 0.01143935788422823, -0.022343749180436134, 0.02649865113198757, 0.07967428117990494, -0.017154578119516373, -0.036805663257837296, 0.07689245790243149, -0.020756682381033897, -0.045365121215581894, -0.008925016969442368, -0.006388386245816946, -0.010752817615866661, 0.07746308296918869, 0.015121706761419773, 0.04739799350500107, -0.05431688576936722, -0.0019804888870567083, 0.013668382540345192, -0.012134813703596592, 0.038660213351249695, -0.02373466081917286, -0.013721879571676254, -0.08031623810529709, -0.04411686584353447, 0.05453087389469147, 0.0047166175208985806, 0.06276935338973999, 0.0022535445168614388, -0.09087289869785309, -0.040158119052648544, -0.004469195380806923, 0.006018368061631918, 0.005813297815620899, -0.001217047800309956, 0.042226653546094894, 0.041584696620702744, -0.0046096243895590305, 0.006334889680147171, 0.018937798216938972, -0.004578417632728815, -0.005719678942114115, -0.01725265569984913, -0.05185604467988014, 0.004832526668906212, -0.03441615030169487, 0.008862604387104511, 0.06630012392997742, 0.03106369636952877, -0.004984100349247456, -0.025535713881254196, 0.06597914546728134, -0.04397420957684517, -0.012500373646616936, -0.0070838420651853085, 0.010164354927837849, -0.06794068962335587, -0.06173508241772652, -0.019793743267655373, -0.019472764804959297, -0.04679169878363609, 0.027247603982686996, -0.023841653019189835, -0.029369637370109558, 0.06077214330434799, -0.024697599932551384, -0.021291648969054222, -0.02302137203514576, 0.045008476823568344, 0.01029809657484293, 0.05474485829472542, -0.007088300306349993, -0.011341280303895473, -0.03719797357916832, 0.025036411359906197, 0.005037596914917231, -0.004966268315911293, -0.04397420957684517, 0.04960918426513672, 0.05848962068557739, -0.023128366097807884, 0.00498855859041214, -0.029975932091474533, -0.005692930426448584, -0.0043510571122169495, -0.04896722733974457, -0.031010199338197708, 0.06972391158342361, 0.011073797009885311, -0.026391658931970596, 0.0007651129271835089, 0.014230096712708473, 0.0015135081484913826, 0.06808334589004517, -0.012901597656309605, -0.021897943690419197, -0.015005798079073429, 0.0019816034473478794, -0.012928346171975136, 0.05060778930783272, 0.05602877959609032, 0.07129314541816711, -0.033809855580329895, 0.08145749568939209, 0.010957888327538967, -0.030582226812839508, -0.023502841591835022, -0.002826404059305787, 0.01775195635855198, 0.06679943203926086, -0.01974024809896946, -0.08780576288700104, 0.0074538602493703365, 0.004152674227952957, -0.02152346819639206, -0.017760872840881348, -0.04326092079281807, 0.001655051251873374, 0.03291824460029602, -0.0038227783516049385, 0.0002589848591014743, -0.02138081006705761, -0.028032220900058746, -0.010948971845209599, -0.044295188039541245, 0.035521745681762695, 0.060736481100320816, 0.013445479795336723, -0.018973462283611298, 0.020435703918337822, 0.05278331786394119, -0.06704907864332199, -0.0005427676369436085, 0.022718224674463272, -0.05317562445998192, 0.003909710329025984, -0.005184712819755077, 0.008006658405065536, 0.001970458310097456, -0.04005112498998642, 0.034879788756370544, -0.038018252700567245, -0.007320119068026543, 0.03270425647497177, 0.019918570294976234, 0.009468899108469486, -0.05067911744117737, -0.018545489758253098, -0.028585020452737808, 0.030047260224819183, -0.0021309482399374247, -0.03955182433128357, -0.00616102572530508, -0.006415134761482477, 0.040728747844696045, -0.012179394252598286, 0.021434307098388672, -0.00349288247525692, 0.006700450088828802, 0.0018255716422572732, 0.010529914870858192, -0.008247393183410168, -0.043367914855480194, -0.023288855329155922, -0.00036444561555981636, -0.025696203112602234, 0.005296164192259312, -0.008461379446089268, 0.008960681036114693, 0.05210569500923157, 0.014292510226368904, -0.02508990839123726, 0.01595090515911579, -0.04479449242353439, -0.05274765193462372, 0.07218475639820099, -0.014765063300728798, 0.06376795470714569, 0.010583411902189255, -0.04636372625827789, 0.008974055759608746, -0.005456653889268637, 0.022325916215777397, -0.038588885217905045, -0.029530126601457596, -0.05988053232431412, -0.040514763444662094, 0.0029512294568121433, 0.013338486663997173, 0.030172085389494896, -0.002255773637443781, -0.030938871204853058, -0.01454216055572033, -0.009629389271140099, -0.03454097360372543, -0.011938659474253654, -0.022718224674463272, -0.020079059526324272, -0.029173482209444046, 0.004859275184571743, 0.04647071659564972, -0.008617411367595196, 0.017636047676205635, -0.0036912658251821995, -0.02637382596731186, 0.011671176180243492, 0.004979642573744059, 0.03240111097693443, 0.02223675511777401, 0.038660213351249695, 0.013944782316684723, -0.03948049619793892, 0.033524539321660995, -0.0010599015513435006, -0.036663006991147995, 0.003900794079527259, -0.015175203792750835, 0.021220320835709572, 0.011038132943212986, -0.0017040898092091084, 0.01831367053091526, 0.014845307916402817, -0.02435878850519657, -0.015344609506428242, 0.007654472719877958, 0.061877742409706116, -0.06708474457263947, 0.06733439117670059, 0.015148455277085304, -0.03455880656838417, -0.05556514114141464, 0.03514726832509041, 0.04047909751534462, -0.03819657489657402, -0.01817101426422596, 0.022539902478456497, -0.015986569225788116, 0.04839659482240677, -0.04828960448503494, -0.002293667057529092, -0.02701578661799431, -0.05203436687588692, -0.08452463895082474, 0.09779179841279984, 0.014452999457716942, 0.00232487334869802, 0.04204833135008812, 0.008929475210607052, -0.005082177463918924, -0.0014143164735287428, 0.009994949214160442, -0.03150949999690056, -0.019419267773628235, -0.020845843479037285, 0.010476418770849705, -0.06440991163253784, 0.016637444496154785, -0.008532708510756493, -0.0032521479297429323, -0.014622405171394348, -0.03434482216835022, -0.00026191046345047653, -0.03463013470172882, -0.012259638868272305, 0.028032220900058746, -0.010467502288520336, -0.030956702306866646, -0.012669779360294342, -0.020899340510368347, 0.045864421874284744, 0.012910514138638973, 0.020043395459651947, -0.026837464421987534, -0.03926650807261467, -0.036734335124492645, -0.02145213820040226, 0.02537522278726101, 0.024965083226561546, 0.01168009266257286, 0.045864421874284744, -0.05413856357336044, 0.03304307162761688, -0.012767856940627098, 0.003394805360585451, -0.05809731408953667, -0.025054244324564934, 0.062091726809740067, -0.040586091578006744, 0.007373615633696318, -0.07047285884618759, -0.015130623243749142, -0.06077214330434799, 0.07603650540113449, 0.01379320863634348, 0.08680716156959534, 0.03070705197751522, -0.0005516837700270116, 0.03222278878092766, -0.06280501186847687, -0.03655601292848587, 0.08538058400154114, 0.04832526668906212, -0.010922223329544067, -0.007859542965888977, -0.009789878502488136, 0.007016971241682768, 0.012116980738937855, -0.011154042556881905, -0.07567986845970154, -0.037233635783195496, 0.03184831142425537, -0.06594347953796387, 0.016423458233475685, -0.043367914855480194, -0.05171338468790054, 0.04721967130899429, -0.008702114224433899, -0.10292746871709824, -0.04654204845428467, 0.023039204999804497, -0.04654204845428467, -0.002525485586374998, 0.021398643031716347, -0.02002556249499321, 0.028799006715416908, 0.02109549567103386, 0.004088032059371471, -0.019294442608952522, 0.02280738577246666, -0.01407852303236723, -0.019472764804959297, 0.024269627407193184, -0.11241420358419418, -0.023502841591835022, 0.03532559052109718, -0.03833923488855362, -0.01788569800555706, 0.02557137794792652, -0.015692338347434998, 0.019151784479618073, -0.0008280828478746116, 0.05620710179209709, -0.03263292834162712, 0.022432910278439522, 0.011100545525550842, -0.033167894929647446, -0.027336765080690384, 0.009691801853477955, -0.0016405625501647592, 0.038517557084560394, 0.04368889331817627, 0.06476655602455139, 0.039944130927324295, -0.03812524676322937, -0.026962289586663246, -0.026766134425997734, -0.0021287191193550825, 0.01625405251979828, 0.025821028277277946, 0.07361132651567459, 0.04618540406227112, -0.038517557084560394, -0.04311826452612877, 0.009139003232121468, -0.008800191804766655, -0.04714834317564964, -0.01717241108417511, 0.06326865404844284, -0.01888430118560791, 0.014399503357708454, -0.013686214573681355, 0.04254763200879097, -0.04383155331015587, 0.05139240622520447, 0.06458823382854462, -0.008818023838102818, 0.0052694156765937805, 0.03833923488855362, 0.0063705542124807835, 0.04793296009302139, -0.015130623243749142, 0.01668202504515648, -0.022486407309770584, 0.028032220900058746, -0.010672573000192642, -0.02357417158782482, 0.0021075434051454067, -0.011368028819561005, 0.032971739768981934, 0.008269683457911015, -0.00016773414972703904, 0.09094423055648804, 0.023556338623166084, 0.012161561287939548, -0.001708547817543149, 0.05670640245079994, 0.061663754284381866, -0.001261628232896328, -0.006678159814327955, 0.043011270463466644, 0.02994026616215706, 0.039730146527290344, -0.019294442608952522, 0.021915776655077934, 0.07917497307062149, 0.04354623705148697, 0.10164354741573334, 0.008318722248077393, -0.002434095600619912, 0.006874314043670893, 0.00994145218282938, 0.03049306571483612, -0.0014555534580722451, -0.03741195797920227, 0.04868191108107567, 0.09229947626590729, -0.037447623908519745, 0.05428122356534004, 0.019579757004976273, 0.023288855329155922, -0.05349660664796829, -0.027836067602038383, 0.026837464421987534, -0.010155439376831055, 0.05349660664796829, -0.0018177700694650412, -0.031759150326251984, -0.02751508727669716, -0.01717241108417511, 0.01610247790813446, 0.04358190298080444, -0.032597266137599945, -0.041870009154081345, 0.005955955479294062, 0.032971739768981934, -0.02635599486529827, -0.041941337287425995, -0.020489199087023735, -0.007208667695522308, -0.003162986831739545, 0.021630460396409035, -0.012411212548613548, -0.028406698256731033, 0.0029891228768974543, 0.018919967114925385, 0.01346331275999546, -0.045864421874284744, -0.005447737872600555, -0.06430292129516602, 0.0005575349205173552, 0.0017620444996282458, -0.09579458832740784, -0.010503167286515236, -0.009290576912462711, 0.03315006196498871, 0.009228164330124855, 0.0014722711639478803, -0.06797635555267334, -0.03356020525097847, 0.041656024754047394, 0.009549143724143505, -0.027336765080690384, -0.00026929410523734987, 0.10264215618371964, -0.025482216849923134, -0.038874201476573944, -0.015112791210412979, -0.014390586875379086, -0.04672037065029144, 0.05010848864912987, 0.006736114155501127, 0.021220320835709572, -0.042797286063432693, -0.05449520796537399, 0.014265761710703373, 0.05335394665598869, -0.02209409885108471, 0.021826615557074547, 0.05620710179209709, 0.05503017455339432, -0.05114275589585304, 0.01823342591524124, 0.019294442608952522, -0.004562814719974995, -0.03527209535241127, -0.025286061689257622, -0.00375813664868474, -0.02357417158782482, 0.017350733280181885, -0.020114723592996597, 0.00031986512476578355, -0.015558595769107342, -0.012928346171975136, -0.016583947464823723, -0.005046512931585312, 0.040300775319337845, -0.034380484372377396, 0.010494250804185867, 0.10157222300767899, -0.003827236359938979, -0.003477279329672456, 0.019419267773628235, 0.011055964976549149, -0.014738314785063267, -0.025410886853933334, -0.034380484372377396, -0.07460993528366089, -0.03051089681684971, -0.02651648409664631, 0.03826790675520897, -0.05360360071063042, 0.06451690942049026, -0.13787858188152313, 0.03322139382362366, -0.027693409472703934, 0.02928047627210617, -0.01286593358963728, 0.010271348059177399, 0.07050852477550507, 0.0038227783516049385, 0.03539692237973213, -0.012723276391625404, 0.02287871576845646, -0.018001608550548553, -0.03127768263220787, 0.08031623810529709, -0.018349336460232735, 0.014952301047742367, 0.021291648969054222, 0.017270486801862717, 0.022932210937142372, -0.005100009962916374, 0.040229447185993195, 0.002079680562019348, 0.01723482273519039, 0.04433085396885872, -0.016708772629499435, -0.01702083647251129, 0.00705263577401638, 0.03962315246462822, 0.03443398326635361, -0.02542871981859207, -0.06704907864332199, 0.05577912926673889, -0.08110085129737854, 0.05032247304916382, -0.009317325428128242, 0.0003424340102355927, 0.03143817186355591, -0.018260175362229347, -0.004622998181730509, 0.05948822572827339, 0.011724673211574554, -0.05360360071063042, -0.006865397561341524, -0.0077882143668830395, -0.03848189115524292, -0.0025767532642930746, 0.015665588900446892, -0.018126433715224266, -0.05367492884397507, -0.036663006991147995, -0.005260499659925699, -0.03220495581626892, 0.04112105816602707, -0.05845395848155022, -0.041370708495378494, -0.019758079200983047, -0.021648293361067772, 0.05399590730667114, -0.08495260775089264, -0.03168782219290733, 0.011911910958588123, -0.0019894051365554333, 0.00632597366347909, 0.0011891849571838975, -0.06858264654874802, -0.014417335391044617, 0.032953910529613495, -0.014898804947733879, 0.03577139601111412, 0.011100545525550842, 0.030261246487498283, -0.00777038186788559, -0.043082598596811295, 0.03386335074901581, -0.05431688576936722, -0.02031087875366211, -0.01108271349221468, -0.01353464089334011, -0.05042946711182594, -0.010467502288520336, -0.01760038360953331, -0.04554344341158867, -0.024394452571868896, -0.012812437489628792, 0.015496183186769485, -0.01588849164545536, 0.05264066159725189, 0.01151068601757288, -0.022361580282449722, -0.007748091593384743, -0.0010911078425124288, -0.04593575373291969, -0.044580504298210144, 0.013766460120677948, 0.021255984902381897, 0.0059782457537949085, -0.037661612033843994, 0.00777038186788559, 0.021862279623746872, 0.00819389708340168, -0.005737510975450277, -0.03605671226978302, -0.018474161624908447, 0.03575356304645538, -0.03812524676322937, -0.004487027879804373, 0.029102154076099396, -0.01974024809896946, -0.09636522084474564, 0.014711566269397736, 0.02851369045674801, 0.029815440997481346, 0.037304967641830444, 0.015594260767102242, -0.05695605278015137, 0.00260127242654562, 0.04593575373291969, -0.04754064977169037, 0.013498976826667786, 0.014836392365396023, 0.07510923594236374, 0.01688709482550621, -0.008563915267586708, 0.01335631962865591, -0.038588885217905045, -0.021434307098388672, 0.023859485983848572, 0.031045863404870033, -0.0030983451288193464, 0.005305080208927393, -0.026320330798625946, 0.011849498376250267, 0.04318959265947342 ]
20,267
flaky.flaky_decorator
flaky
Decorator used to mark a test as "flaky". :param max_runs: The maximum number of times the decorated test will be run. :type max_runs: `int` :param min_passes: The minimum number of times the test must pass to be a success. :type min_passes: `int` :param rerun_filter: Filter function to decide whether a test should be rerun if it fails. Function signature is as follows: (err, name, test, plugin) -> should_rerun - err (`tuple` of `class`, :class:`Exception`, `traceback`): Information about the test failure (from sys.exc_info()) - name (`unicode`): The test name - test (:class:`Function`): The test that has raised an error - plugin (:class:`FlakyPytestPlugin`): The flaky plugin. Has a :prop:`stream` that can be written to in order to add to the Flaky Report. :type rerun_filter: `callable` :return: A wrapper function that includes attributes describing the flaky test. :rtype: `callable`
def flaky(max_runs=None, min_passes=None, rerun_filter=None): """ Decorator used to mark a test as "flaky". :param max_runs: The maximum number of times the decorated test will be run. :type max_runs: `int` :param min_passes: The minimum number of times the test must pass to be a success. :type min_passes: `int` :param rerun_filter: Filter function to decide whether a test should be rerun if it fails. Function signature is as follows: (err, name, test, plugin) -> should_rerun - err (`tuple` of `class`, :class:`Exception`, `traceback`): Information about the test failure (from sys.exc_info()) - name (`unicode`): The test name - test (:class:`Function`): The test that has raised an error - plugin (:class:`FlakyPytestPlugin`): The flaky plugin. Has a :prop:`stream` that can be written to in order to add to the Flaky Report. :type rerun_filter: `callable` :return: A wrapper function that includes attributes describing the flaky test. :rtype: `callable` """ # In case @flaky is applied to a function or class without arguments # (and without parentheses), max_runs will refer to the wrapped object. # In this case, the default value can be used. wrapped = None if hasattr(max_runs, '__call__'): wrapped, max_runs = max_runs, None attrib = default_flaky_attributes(max_runs, min_passes, rerun_filter) def wrapper(wrapped_object): for name, value in attrib.items(): setattr(wrapped_object, name, value) return wrapped_object return wrapper(wrapped) if wrapped is not None else wrapper
(max_runs=None, min_passes=None, rerun_filter=None)
[ 0.027601435780525208, -0.036659546196460724, 0.03411473333835602, 0.04463210701942444, -0.0024469357449561357, -0.013836309313774109, -0.04644728824496269, 0.027227722108364105, 0.008960234001278877, 0.061502616852521896, 0.02268976718187332, 0.054918136447668076, 0.03162330761551857, 0.01760014146566391, -0.0031810165382921696, -0.03062673658132553, 0.013222350738942623, 0.0014537022216245532, 0.023081276565790176, 0.013604962266981602, 0.009378436952829361, 0.05157250910997391, -0.0010482894722372293, 0.027512455359101295, 0.021924544125795364, 0.0407526008784771, 0.03354526311159134, 0.008733335882425308, 0.029309840872883797, -0.02025173045694828, -0.036588363349437714, -0.017350999638438225, -0.02669384516775608, 0.06605836749076843, 0.028793759644031525, -0.029131881892681122, -0.07545460015535355, 0.05502491071820259, -0.0593671090900898, -0.041535623371601105, -0.0018652323633432388, 0.018774669617414474, 0.011273699812591076, -0.01695948839187622, -0.0018007222097367048, -0.029238658025860786, 0.04036109149456024, 0.03772730007767677, -0.03607228025794029, -0.02662266045808792, 0.01918397657573223, -0.04420500621199608, 0.07360382378101349, 0.0930369421839714, 0.04100174456834793, -0.011932148598134518, 0.013845207169651985, -0.03642819821834564, 0.03851031884551048, -0.048333652317523956, -0.008061541244387627, 0.010045783594250679, 0.027850577607750893, 0.03772730007767677, -0.015099817886948586, -0.024700703099370003, -0.004135321360081434, 0.013400309719145298, 0.009850028902292252, 0.0024202419444918633, -0.023668542504310608, 0.04541512578725815, 0.009351743385195732, -0.028081923723220825, -0.03555620089173317, 0.005285381339490414, -0.0815052017569542, -0.03897301107645035, -0.0034835466649383307, -0.0024803029373288155, 0.04609137028455734, 0.05317413806915283, -0.05424189195036888, 0.007892480120062828, 0.010980067774653435, -0.07381737977266312, 0.029558982700109482, -0.05064712092280388, 0.03904419764876366, -0.005885992664843798, -0.02818869985640049, 0.027814986184239388, 0.03989839926362038, -0.06463469564914703, 0.012030025944113731, 0.00810158159583807, 0.007309664506465197, 0.033865589648485184, 0.028010740876197815, -0.016665857285261154, 0.06520416587591171, 0.03354526311159134, 0.013863002881407738, 0.03633921965956688, 0.07161068916320801, 0.026462497189641, -0.07029379159212112, -0.014423574320971966, -0.01402316614985466, 0.03571636229753494, -0.02454054169356823, -0.03804762661457062, -0.050682712346315384, -0.008666601032018661, 0.04488125070929527, -0.05431307479739189, -0.03911538049578667, -0.025003233924508095, 0.05014883726835251, -0.00976994726806879, 0.00872888695448637, 0.02833106741309166, -0.007398643996566534, -0.049614958465099335, 0.013533779419958591, 0.00684697087854147, 0.006522195879369974, 0.09752151370048523, 0.03411473333835602, -0.01845434494316578, -0.007113909348845482, 0.027672618627548218, -0.01755565218627453, 0.04694557562470436, -0.0068870116956532, 0.02167540229856968, 0.08691515773534775, 0.0837118923664093, 0.05765870213508606, -0.06189412623643875, -0.006820277310907841, 0.023561766371130943, 0.007563255727291107, 0.03406134620308876, -0.028295474126935005, -0.008639907464385033, -0.014468063600361347, 0.008177214302122593, 0.04399145394563675, 0.020055975764989853, 0.055914707481861115, -0.033812202513217926, -0.007167297415435314, 0.0054410952143371105, 0.0072073377668857574, 0.01873907819390297, -0.030947063118219376, 0.05299617722630501, 0.040467869490385056, -0.020910177379846573, 0.01721752993762493, -0.04737267643213272, 0.04014754295349121, -0.017110753804445267, 0.04285251721739769, 0.004106402862817049, -0.03356305882334709, -0.009965701960027218, -0.02283213473856449, 0.030858084559440613, 0.011496149003505707, 0.04470328986644745, 0.027850577607750893, 0.03511130437254906, 0.05036238580942154, 0.03811880946159363, -0.04463210701942444, -0.03626803681254387, 0.006264155264943838, -0.02747686393558979, -0.05883323401212692, -0.006001666188240051, -0.05488254502415657, 0.003381220391020179, 0.010116967372596264, 0.01462822686880827, -0.00356807722710073, -0.001781814149580896, -0.036090075969696045, -0.01416553370654583, 0.020305117592215538, 0.021586421877145767, 0.06762440502643585, 0.056982461363077164, -0.024131234735250473, -0.027939556166529655, -0.025999804958701134, 0.0003428490599617362, 0.09794861078262329, -0.022547399625182152, -0.0622500441968441, 0.12371706962585449, 0.031943634152412415, -0.013756227679550648, -0.0036103425081819296, -0.0030475473031401634, -0.01462822686880827, 0.0025403641629964113, -0.07032938301563263, 0.03464860841631889, 0.03804762661457062, 0.021372871473431587, -0.031107226386666298, 0.04815569519996643, -0.0028718127869069576, -0.028064128011465073, 0.11681226640939713, 0.061929717659950256, -0.03119620680809021, 0.04712353274226189, -0.027939556166529655, -0.014218920841813087, -0.02562609128654003, 0.011967740021646023, 0.037015464156866074, 0.03219277784228325, 0.09403351694345474, 0.00540105439722538, 0.004319953732192516, -0.0837118923664093, -0.014307900331914425, 0.021728789433836937, 0.018276385962963104, -0.028206495568156242, -0.0471947155892849, -0.00753211323171854, 0.026088783517479897, -0.023793112486600876, -0.01284863706678152, -0.06698375195264816, 0.004738157149404287, -0.021550830453634262, 0.05260466784238815, 0.025305764749646187, 0.009885620325803757, -0.017110753804445267, -0.03690868988633156, 0.016149776056408882, 0.0008486417937092483, 0.002406894927844405, 0.032869018614292145, 0.029220862314105034, 0.0236151535063982, 0.055772338062524796, 0.012590596452355385, 0.008310683071613312, 0.0031810165382921696, -0.07744774222373962, 0.04199831560254097, 0.006175175774842501, 0.0105529660359025, -0.02518119290471077, -0.04416941478848457, 0.04498802497982979, 0.01462822686880827, -0.03228175640106201, -0.02818869985640049, 0.029078494757413864, -0.01882805861532688, -0.009164886549115181, -0.055416420102119446, -0.057907845824956894, 0.009556395933032036, -0.004339974373579025, -0.04737267643213272, -0.002455833600834012, 0.008889050222933292, 0.02833106741309166, 0.02610657922923565, -0.017181938514113426, 0.0073363580740988255, -0.023348215967416763, -0.006713501643389463, -0.014468063600361347, 0.00965427327901125, -0.01345369778573513, -0.05356564745306969, 0.06434996426105499, -0.0037438117433339357, -0.031658899039030075, 0.020055975764989853, -0.04349317029118538, 0.015624796971678734, -0.028242086991667747, 0.03687309846282005, 0.032869018614292145, -0.07851549237966537, -0.043101660907268524, 0.0034590773284435272, -0.06698375195264816, 0.02610657922923565, -0.03829677030444145, -0.028384454548358917, 0.013782921247184277, 0.02868698537349701, 0.04836924746632576, -0.03804762661457062, -0.0325486958026886, -0.02511001005768776, -0.004495688248425722, 0.04121529683470726, -0.012225780636072159, -0.04708794131875038, -0.047977738082408905, 0.0017228651558980346, -0.06071959808468819, 0.003027526894584298, -0.032958000898361206, -0.029309840872883797, 0.03851031884551048, -0.009752151556313038, -0.04744385927915573, -0.0057747685350477695, 0.027868373319506645, 0.07022260874509811, -0.030377594754099846, 0.057836662977933884, -0.03156992048025131, -0.05474017560482025, -0.010713129304349422, 0.018578914925456047, -0.0407881923019886, 0.026925191283226013, -0.004626933019608259, -0.05883323401212692, 0.05246230214834213, 0.0386526882648468, -0.01946870982646942, 0.0037148932460695505, -0.0029074044432491064, 0.03712223842740059, -0.015366756357252598, -0.023882092908024788, 0.030680125579237938, -0.036730729043483734, 0.03740697354078293, -0.01902381330728531, 0.029808126389980316, 0.10236199200153351, -0.0157315731048584, 0.11852066963911057, -0.028170904144644737, -0.0543842576444149, -0.028882740065455437, 0.05139454826712608, -0.00017823702364694327, -0.03018184006214142, 0.015162103809416294, -0.01484177727252245, -0.05744515359401703, -0.03886623680591583, -0.0008675499120727181, 0.005423299502581358, 0.03972044214606285, 0.01216349471360445, 0.021105932071805, 0.0063531347550451756, -0.01527777686715126, -0.02016275003552437, -0.019575485959649086, -0.024433765560388565, 0.008942438289523125, 0.028313271701335907, -0.06463469564914703, 0.04893871396780014, -0.01802724227309227, 0.040254317224025726, 0.030804695561528206, -0.02411343902349472, 0.0665566548705101, 0.010864394716918468, -0.0072073377668857574, -0.020927973091602325, -0.05114540457725525, 0.006108441390097141, 0.025216784328222275, -0.08171875774860382, -0.0550960935652256, 0.03455962985754013, -0.05114540457725525, 0.02245842106640339, -0.041464436799287796, 0.011754189617931843, 0.03310036659240723, -0.04844043031334877, 0.03633921965956688, -0.02640911005437374, 0.005098524037748575, -0.028793759644031525, -0.032584287226200104, 0.024576133117079735, -0.0056991358287632465, 0.03555620089173317, -0.03270885720849037, 0.03299359232187271, 0.020589852705597878, 0.04185594618320465, -0.004386688582599163, -0.012973207980394363, 0.057979028671979904, 0.004809340927749872, 0.007296317256987095, -0.0629262924194336, -0.013302432373166084, -0.009049213491380215, 0.056128256022930145, -0.06160939112305641, 0.0003942903131246567, 0.013462595641613007, -0.012893127277493477, 0.03840354457497597, -0.04822687804698944, -0.0011239220621064305, 0.050825078040361404, 0.0029229759238660336, -0.01961107738316059, -0.0137740233913064, 0.017920468002557755, 0.0033345059491693974, 0.02496764250099659, 0.02139066718518734, -0.03779848292469978, 0.02596421167254448, 0.02359735779464245, -0.04872516542673111, -0.04922344908118248, -0.034808773547410965, -0.014654920436441898, 0.014316798187792301, 0.0056991358287632465, 0.00740754185244441, -0.021764380857348442, 0.04249659925699234, 0.025590498000383377, 0.011976637877523899, 0.007821296341717243, 0.00910704955458641, 0.07068529725074768, -0.013524881564080715, 0.029220862314105034, 0.029736941680312157, 0.02018054574728012, -0.05609266459941864, 0.010268231853842735, 0.02288552187383175, -0.027565842494368553, -0.028669189661741257, -0.0075410110875964165, 0.006931501440703869, 0.04271015152335167, 0.013079984113574028, 0.07104121893644333, -0.04516598582267761, -0.04470328986644745, -0.0100101912394166, -0.001638334710150957, -0.0016205387655645609, -0.03690868988633156, 0.005200850777328014, -0.01337361615151167, 0.0765223503112793, -0.04491684213280678, 0.0025937517639249563, 0.023223644122481346, 0.049401406198740005, 0.03697987273335457, -0.08969131857156754, -0.000015467136108782142, -0.002139956457540393, 0.03432828560471535, 0.01460153330117464, 0.018205201253294945, 0.03368763253092766, -0.02653368189930916, 0.006250808481127024, -0.04587782174348831, -0.013738431967794895, -0.01728871278464794, 0.0036726281978189945, 0.005369911901652813, -0.013960880227386951, -0.028455637395381927, 0.0014370186254382133, 0.005031789653003216, -0.08833882957696915, -0.018045037984848022, 0.07894259691238403, 0.020643239840865135, -0.026444701477885246, -0.002647139597684145, 0.02210250310599804, -0.0314987376332283, -0.03354526311159134, 0.012207984924316406, 0.05014883726835251, -0.04413382336497307, 0.018151814118027687, -0.022921115159988403, -0.009600886143743992, 0.007821296341717243, 0.004304382484406233, 0.002058762824162841, 0.04573545232415199, 0.001416998216882348, 0.0024803029373288155, -0.08534912019968033, 0.012501616962254047, -0.030786899849772453, 0.010864394716918468, -0.000519417691975832, 0.016220958903431892, 0.05217756703495979, 0.013533779419958591, 0.003699321998283267, 0.03893741965293884, -0.015740470960736275, 0.06196530908346176, 0.05317413806915283, 0.05096744745969772, 0.012786351144313812, 0.0062463595531880856, -0.010544068180024624, -0.006580032408237457, 0.030947063118219376, 0.022992298007011414, -0.0021521912422031164, -0.06858538091182709, -0.0027917311526834965, 0.041677989065647125, -0.03950688987970352, 0.03890182822942734, 0.06374490261077881, 0.032602082937955856, -0.03174787759780884, 0.02247621677815914, -0.028669189661741257, -0.030235227197408676, 0.023864297196269035, 0.013053289614617825, -0.03235293924808502, -0.029363228008151054, -0.023810910061001778, -0.017795896157622337, -0.040111951529979706, -0.045094799250364304, -0.012928718701004982, 0.0386526882648468, 0.028722576797008514, -0.006620073225349188, -0.006664562970399857, -0.037157829850912094, 0.010375007055699825, 0.09524364024400711, -0.07381737977266312, 0.0025603845715522766, 0.003750485135242343, 0.052924994379282, 0.03818999230861664, -0.06257037073373795, -0.03986280784010887, -0.009262763895094395, -0.0035324853379279375, 0.01301769819110632, 0.010988965630531311, -0.054704584181308746, 0.014040961861610413, -0.011060149408876896, 0.006762440782040358, -0.003387893782928586, -0.04214068129658699, -0.048974305391311646, 0.023508379235863686, 0.005231993272900581, -0.04787096008658409, -0.04402704909443855, -0.03245971351861954, 0.0027561394963413477, 0.07089885324239731, -0.033438488841056824, 0.005307625979185104, -0.029576780274510384, -0.005267585162073374, -0.06417199969291687, -0.05057593807578087, 0.030502166599035263, 0.006553338840603828, -0.01309777982532978, 0.015838347375392914, 0.04192713275551796, 0.047408267855644226, -0.02454054169356823, 0.0028495679143816233, -0.001285753445699811, -0.05132336542010307, -0.003979607485234737, 0.019628873094916344, -0.006833624094724655, -0.02217368595302105, 0.0022000176832079887, -0.02333042025566101, -0.04448974132537842, 0.047764185816049576, 0.018934832885861397, -0.008524234406650066, 0.01527777686715126, -0.010143660940229893, -0.01667475514113903, 0.0015104266349226236, 0.04320843517780304, -0.05637739971280098, -0.0029919350054115057, 0.049116674810647964, -0.00654888991266489, 0.0022233747877180576, 0.008524234406650066, -0.03174787759780884, -0.021710993722081184, -0.04014754295349121, -0.0268362108618021, -0.07089885324239731, -0.04036109149456024, 0.02267197147011757, 0.024291398003697395, -0.056128256022930145, -0.03854591026902199, -0.04402704909443855, 0.006081747356802225, 0.009538600221276283, 0.016656959429383278, -0.03197922557592392, 0.013168963603675365, 0.01345369778573513, 0.015215490944683552, 0.024593928828835487, -0.03641040250658989, -0.03979162499308586, -0.013658350333571434, -0.02283213473856449, 0.0737461969256401, -0.05545201152563095, -0.04349317029118538, 0.015117613598704338, 0.017546754330396652, -0.01366724818944931, 0.00042432089685462415, 0.013943084515631199, 0.001047733356244862, -0.0038394646253436804, 0.024077847599983215, -0.01686161197721958, -0.006927052512764931, -0.014966349117457867, -0.01506422646343708, 0.03737138211727142, 0.030110657215118408, -0.006726848892867565, 0.03964925557374954, -0.028669189661741257, 0.024985438212752342, -0.03171228617429733, -0.022333849221467972, 0.04658965766429901, -0.02247621677815914, -0.04637610539793968, 0.025572702288627625, -0.008475295267999172, -0.041962724179029465, 0.04765741154551506, -0.07004464417695999, -0.03536044433712959, -0.04893871396780014, 0.02811751514673233, -0.06812269240617752, -0.02261858433485031, -0.010988965630531311, 0.07880023121833801, -0.05235552787780762, -0.0109177827835083, -0.05214197561144829, -0.009947906248271465, -0.03972044214606285, -0.02067883126437664, 0.05926033481955528, 0.0045290556736290455, -0.01641671359539032, -0.025430336594581604, -0.04448974132537842, 0.05231993645429611, 0.0036526077892631292, -0.040111951529979706, -0.021337280049920082, 0.056626543402671814, -0.015411246567964554, -0.0007452031713910401, 0.02089238166809082, 0.009600886143743992, -0.015598103404045105, -0.0693684071302414, -0.02884714864194393, -0.09866044670343399, -0.008310683071613312, 0.04644728824496269, -0.007274072617292404, -0.015740470960736275, -0.014993042685091496, -0.08841001242399216, 0.005583462305366993, -0.08606095612049103, 0.01620316319167614, 0.030715717002749443, 0.05516728013753891, 0.06887011975049973, -0.05388597398996353, 0.02963016740977764, -0.05886882543563843, 0.019486505538225174, -0.02525237761437893, -0.020661035552620888, 0.02167540229856968, -0.04416941478848457, 0.06406522542238235, 0.02037630043923855, -0.031071634963154793, -0.01391639094799757, 0.03274444863200188, 0.005792564246803522, -0.02224487066268921, -0.03391897678375244, 0.002349058398976922, -0.039400115609169006, -0.01115802675485611, 0.01162071991711855, -0.058263763785362244, -0.023704133927822113, 0.028740372508764267, 0.020233934745192528, 0.0040374440141022205, 0.09282339364290237, 0.04477447643876076, 0.0002616552810650319, 0.011478353291749954, -0.0058592986315488815, -0.028437841683626175, 0.01498414482921362, 0.08506438136100769, 0.043884679675102234, -0.005361013580113649, 0.008550927974283695, 0.02911408618092537, -0.01388079859316349, 0.005049585364758968, -0.011549537070095539, 0.01994919963181019, -0.0015215490711852908, 0.041962724179029465, 0.015126511454582214, -0.015624796971678734, 0.05474017560482025 ]
20,270
start_sdk.cf_img
CFImage
# Cloudflare [Images](https://developers.cloudflare.com/images/cloudflare-images/) API v4 Add secrets to .env file: Field in .env | Cloudflare API Credential | Where credential found :--|:--:|:-- `CF_IMG_ACCT` | Account ID | `https://dash.cloudflare.com/<acct_id>/images/images` `CF_IMG_HASH` | Account Hash | `https://dash.cloudflare.com/<acct_id>/images/images` `CF_IMG_TOKEN` | API Secret | Generate / save via `https://dash.cloudflare.com/<acct_id>/profile/api-tokens` Examples: ```py title="Example Usage" linenums="1" hl_lines="5 18" >>> from pathlib import Path >>> from start_sdk import CFImage >>> import os >>> import io >>> cf = CFImage() # will error out since missing key values Traceback (most recent call last): pydantic.error_wrappers.ValidationError: 1 validation error for CFImage cf_img_hash field required (type=value_error.missing) >>> os.environ['CF_ACCT_ID'] = "ABC" >>> cf = CFImage() # will error out since still missing other values Traceback (most recent call last): pydantic.error_wrappers.ValidationError: 1 validation error for CFImage cf_img_hash field required (type=value_error.missing) >>> # we'll add all the values needed >>> os.environ['CF_IMG_HASH'], os.environ['CF_IMG_TOKEN'] = "DEF", "XYZ" >>> cf = CFImage() # no longer errors out >>> cf.headers {'Authorization': 'Bearer XYZ'} >>> cf.base_api 'https://api.cloudflare.com/client/v4/accounts/ABC/images/v1' >>> cf.base_delivery 'https://imagedelivery.net/DEF' >>> cf.url('hi-bob', 'w=400,sharpen=3') 'https://imagedelivery.net/DEF/hi-bob/w=400,sharpen=3' >>> p = Path().cwd() / "img" / "screenshot.png" >>> p.exists() # Sample image found in `/img/screenshot.png` True >>> img = io.BytesIO(p.read_bytes()) >>> type(img) <class '_io.BytesIO'> >>> # Can now use img in `cf.post('sample_id', img)` ```
class CFImage(BaseSettings): """ # Cloudflare [Images](https://developers.cloudflare.com/images/cloudflare-images/) API v4 Add secrets to .env file: Field in .env | Cloudflare API Credential | Where credential found :--|:--:|:-- `CF_IMG_ACCT` | Account ID | `https://dash.cloudflare.com/<acct_id>/images/images` `CF_IMG_HASH` | Account Hash | `https://dash.cloudflare.com/<acct_id>/images/images` `CF_IMG_TOKEN` | API Secret | Generate / save via `https://dash.cloudflare.com/<acct_id>/profile/api-tokens` Examples: ```py title="Example Usage" linenums="1" hl_lines="5 18" >>> from pathlib import Path >>> from start_sdk import CFImage >>> import os >>> import io >>> cf = CFImage() # will error out since missing key values Traceback (most recent call last): pydantic.error_wrappers.ValidationError: 1 validation error for CFImage cf_img_hash field required (type=value_error.missing) >>> os.environ['CF_ACCT_ID'] = "ABC" >>> cf = CFImage() # will error out since still missing other values Traceback (most recent call last): pydantic.error_wrappers.ValidationError: 1 validation error for CFImage cf_img_hash field required (type=value_error.missing) >>> # we'll add all the values needed >>> os.environ['CF_IMG_HASH'], os.environ['CF_IMG_TOKEN'] = "DEF", "XYZ" >>> cf = CFImage() # no longer errors out >>> cf.headers {'Authorization': 'Bearer XYZ'} >>> cf.base_api 'https://api.cloudflare.com/client/v4/accounts/ABC/images/v1' >>> cf.base_delivery 'https://imagedelivery.net/DEF' >>> cf.url('hi-bob', 'w=400,sharpen=3') 'https://imagedelivery.net/DEF/hi-bob/w=400,sharpen=3' >>> p = Path().cwd() / "img" / "screenshot.png" >>> p.exists() # Sample image found in `/img/screenshot.png` True >>> img = io.BytesIO(p.read_bytes()) >>> type(img) <class '_io.BytesIO'> >>> # Can now use img in `cf.post('sample_id', img)` ``` """ # noqa: E501 acct_id: str = Field( default=..., repr=False, title="Cloudflare Account ID", description="Used in other Cloudflare services like R2, etc.", env="CF_ACCT_ID", ) cf_img_hash: str = Field( default=..., repr=False, title="Cloudflare Image Hash", description="Assigned when you create a Cloudflare Images account", env="CF_IMG_HASH", ) api_token: str = Field( default=..., repr=False, title="Cloudflare Image API Token", description="Secure token to perform API operations", env="CF_IMG_TOKEN", ) client_api_ver: str = Field( default="v4", title="Cloudflare Client API Version", description="Used in the middle of the URL in API requests.", env="CLOUDFLARE_CLIENT_API_VERSION", ) images_api_ver: str = Field( default="v1", title="Cloudflare Images API Version", description="Used at the end of URL in API requests.", env="CLOUDFLARE_IMAGES_API_VERSION", ) timeout: int = Field( default=60, env="CF_IMG_TOKEN_TIMEOUT", ) class Config: env_file = ".env" env_file_encoding = "utf-8" @property def headers(self) -> dict: return {"Authorization": f"Bearer {self.api_token}"} @property def client(self): return httpx.Client(timeout=self.timeout) @property def base_api(self): """Construct URL based on Cloudflare API [format](https://developers.cloudflare.com/images/cloudflare-images/api-request/)""" # noqa: E501 client = f"client/{self.client_api_ver}" account = f"accounts/{self.acct_id}" images = f"images/{self.images_api_ver}" return "/".join([CF_API_URL, client, account, images]) @property def base_delivery(self): """The images are served with the following format: `https://imagedelivery.net/<ACCOUNT_HASH>/<IMAGE_ID>/<VARIANT_NAME>` This property constructs the first part: `https://imagedelivery.net/<ACCOUNT_HASH>` See Cloudflare [docs](https://developers.cloudflare.com/images/cloudflare-images/serve-images/). """ # noqa: E501 return "/".join([CF_DELIVER, self.cf_img_hash]) def url(self, img_id: str, variant: str = "public"): """Generates url based on the Cloudflare hash of the account. The `variant` is based on how these are customized on Cloudflare Images. See also flexible variant [docs](https://developers.cloudflare.com/images/cloudflare-images/transform/flexible-variants/) """ # noqa: E501 return "/".join([self.base_delivery, img_id, variant]) def get(self, img_id: str, *args, **kwargs) -> httpx.Response: """Issue httpx GET request to the image found in storage. Assuming request like `CFImage().get('target-img-id')`, returns a response with metadata: Examples: ```py title="Response object from Cloudflare Images" >>> # CFImage().get('target-img-id') commented out since hypothetical b'{ "result": { "id": "target-img-id", "filename": "target-img-id", "uploaded": "2023-02-20T09:09:41.755Z", "requireSignedURLs": false, "variants": [ "https://imagedelivery.net/<hash>/<target-img-id>/public", "https://imagedelivery.net/<hash>/<target-img-id>/cover", "https://imagedelivery.net/<hash>/<target-img-id>/avatar", "https://imagedelivery.net/<hash>/<target-img-id>/uniform" ] }, "success": true, "errors": [], "messages": [] }' ``` """ return self.client.get( url=f"{self.base_api}/{img_id}", headers=self.headers, *args, **kwargs, ) def delete(self, img_id: str, *args, **kwargs) -> httpx.Response: """Issue httpx [DELETE](https://developers.cloudflare.com/images/cloudflare-images/transform/delete-images/) request to the image.""" # noqa: E501 return self.client.delete( url=f"{self.base_api}/{img_id}", headers=self.headers, *args, **kwargs, ) def post(self, img_id: str, img: bytes, *args, **kwargs) -> httpx.Response: """Issue httpx [POST](https://developers.cloudflare.com/images/cloudflare-images/upload-images/upload-via-url/) request to upload image.""" # noqa: E501 return self.client.post( url=self.base_api, headers=self.headers, data={"id": img_id}, files={"file": (img_id, img)}, *args, **kwargs, ) def upsert(self, img_id: str, img: bytes) -> httpx.Response: """Ensures a unique id name by first deleting the `img_id` from storage and then uploading the `img`.""" self.delete(img_id) return self.post(img_id, img)
(_env_file: Union[str, os.PathLike, List[Union[str, os.PathLike]], Tuple[Union[str, os.PathLike], ...], NoneType] = '<object object at 0x7f74a8a56270>', _env_file_encoding: Optional[str] = None, _env_nested_delimiter: Optional[str] = None, _secrets_dir: Union[str, os.PathLike, NoneType] = None, *, acct_id: str, cf_img_hash: str, api_token: str, client_api_ver: str = 'v4', images_api_ver: str = 'v1', timeout: int = 60) -> None
[ -0.01437369454652071, -0.10144533216953278, -0.1010817289352417, 0.026020364835858345, -0.0024117128923535347, -0.04029179364442825, -0.034974098205566406, 0.001292496221140027, 0.008004955016076565, -0.03511044755578041, 0.01533951610326767, 0.023952370509505272, -0.01214662380516529, 0.03811017423868179, 0.027270250022411346, 0.0019359036814421415, 0.0017228549113497138, 0.03033815324306488, 0.0437687523663044, -0.03488319367170334, -0.0005336873000487685, 0.0261567160487175, 0.032065268605947495, -0.015430416911840439, 0.061903469264507294, 0.027883831411600113, 0.06503954529762268, -0.014316882006824017, 0.052677035331726074, -0.02069130353629589, -0.010913781821727753, -0.0170211810618639, 0.02004363387823105, 0.054449599236249924, 0.005079084075987339, -0.06276702880859375, 0.0347013920545578, 0.025088630616664886, -0.08331061899662018, 0.05504045635461807, -0.04599582403898239, 0.008016317151486874, 0.05458595231175423, -0.05626761540770531, 0.002049529692158103, 0.07185710966587067, -0.04799564182758331, -0.021270794793963432, -0.024793202057480812, -0.028770115226507187, 0.016191711649298668, -0.026270341128110886, 0.004496750887483358, 0.03686028718948364, 0.06681211292743683, 0.04433688148856163, -0.01827106811106205, 0.008021999150514603, -0.02095264196395874, -0.00626647612079978, -0.001366353128105402, -0.009198028594255447, 0.017362060025334358, -0.03547405079007149, 0.017305245622992516, 0.022600220516324043, -0.05549496039748192, 0.03249704837799072, -0.0007399896276183426, -0.013691938482224941, 0.002248375443741679, -0.047222983092069626, -0.0032979960087686777, -0.02413417212665081, -0.003718412248417735, -0.008306063711643219, 0.005462571978569031, 0.026883922517299652, 0.04090537503361702, -0.03686028718948364, 0.011805745773017406, 0.005752318538725376, -0.014248705469071865, -0.06244887411594391, 0.06508500128984451, 0.005081924609839916, 0.02236160635948181, -0.011669394560158253, -0.052086178213357925, 0.024429598823189735, -0.02758840285241604, 0.03572402894496918, -0.035746753215789795, 0.018668759614229202, 0.029974550008773804, 0.027679303660988808, -0.006147169042378664, -0.07358422875404358, -0.009607082232832909, -0.003653077408671379, -0.041700758039951324, -0.00005761195643572137, 0.009970685467123985, 0.005442687310278416, 0.03436051681637764, -0.08435597270727158, -0.024679576978087425, -0.03542860224843025, 0.005209754221141338, -0.023316064849495888, -0.058358337730169296, -0.031315337866544724, -0.029133718460798264, -0.02774748019874096, 0.03186074271798134, -0.014623671770095825, -0.033565133810043335, -0.015214527025818825, 0.018589220941066742, 0.0018421622226014733, -0.012044360861182213, -0.04620034992694855, -0.03376965969800949, 0.02506590448319912, 0.09708209335803986, 0.04072357341647148, -0.004383124876767397, 0.011584174819290638, 0.008169712498784065, -0.04922280088067055, -0.05667667090892792, 0.04292792081832886, -0.030974458903074265, 0.029883649200201035, -0.0018450028728693724, 0.009067358449101448, 0.01777111366391182, 0.010254750028252602, 0.003048018552362919, 0.05517680570483208, 0.0008159770513884723, 0.004584810696542263, -0.021475322544574738, -0.04467776045203209, 0.020179985091090202, 0.0013031486887484789, 0.0010183734120801091, -0.06767567247152328, -0.07317516952753067, -0.03840560466051102, 0.027883831411600113, 0.03592855483293533, -0.006800518836826086, 0.02506590448319912, 0.0036672805435955524, -0.03288337588310242, -0.017316609621047974, 0.001086549018509686, 0.020100446417927742, 0.019839107990264893, -0.017623400315642357, -0.0035962644033133984, 0.03217889741063118, -0.035746753215789795, 0.00787996593862772, 0.004252454731613398, 0.012623853050172329, -0.00959003809839487, 0.018236979842185974, 0.06913008540868759, -0.023168349638581276, -0.054676853120326996, -0.0549495555460453, -0.03454231843352318, 0.0018563654739409685, 0.08381056785583496, 0.02171393670141697, -0.024179622530937195, -0.022827472537755966, -0.01719162054359913, -0.026133989915251732, -0.015475867316126823, -0.018668759614229202, 0.023838743567466736, 0.018884647637605667, 0.06685756146907806, -0.02003227174282074, 0.05381329357624054, 0.06494864821434021, 0.027861105278134346, 0.04651850089430809, 0.03165621683001518, 0.03354240953922272, -0.036587584763765335, 0.027611128985881805, -0.02899736724793911, -0.0102206626906991, -0.05672211945056915, 0.035246800631284714, 0.00007350184750976041, -0.06522134691476822, -0.009572993963956833, 0.02321380004286766, -0.021861650049686432, 0.003306517843157053, 0.0032127765007317066, -0.00524100149050355, -0.02238433063030243, -0.0730842724442482, 0.05458595231175423, -0.060812659561634064, 0.03165621683001518, -0.04713208228349686, -0.0028065633960068226, 0.02874738909304142, -0.07117535173892975, 0.025679485872387886, 0.057358428835868835, -0.02647486887872219, 0.03002000041306019, 0.0924006998538971, -0.01568039320409298, 0.01328288484364748, -0.04317789524793625, 0.004408690612763166, 0.03140623867511749, -0.007442506030201912, 0.018498320132493973, 0.0016063882503658533, -0.0462685264647007, -0.022316155955195427, 0.020009545609354973, 0.029701847583055496, 0.062494322657585144, 0.05667667090892792, -0.03626943379640579, 0.022918373346328735, 0.04024634510278702, 0.01504408847540617, -0.022270705550909042, 0.01927097700536251, -0.008368558250367641, -0.004522316623479128, -0.010464958846569061, -0.051268070936203, -0.014475958421826363, 0.005908554419875145, 0.01945277862250805, -0.02287292294204235, -0.05190437659621239, 0.04913190007209778, -0.05958549678325653, -0.004300745669752359, 0.020884467288851738, -0.008237888105213642, -0.0378601960837841, -0.009788883849978447, -0.06490319967269897, 0.06985729187726974, -0.034655943512916565, 0.020736753940582275, -0.0449504628777504, -0.02522498182952404, 0.0742659792304039, -0.07181166112422943, -0.010163849219679832, 0.006272157654166222, 0.005834697280079126, -0.0445641353726387, 0.0038860107306391, 0.13562405109405518, 0.0769021064043045, -0.03579220548272133, -0.0216230358928442, -0.01733933389186859, -0.0018393215723335743, -0.01582810841500759, 0.00829470157623291, -0.010322926566004753, -0.026088539510965347, 0.0365421362221241, -0.044200532138347626, 0.01785065233707428, -0.01047632098197937, 0.03840560466051102, -0.019123263657093048, -0.048313792794942856, 0.03208799660205841, 0.003235501702874899, -0.00993659719824791, -0.014714572578668594, 0.03156531602144241, -0.0067266616970300674, -0.01399872824549675, -0.032065268605947495, -0.051495324820280075, -0.0829470157623291, -0.006720980629324913, 0.03820107504725456, -0.06853923201560974, -0.030451780185103416, 0.06594855338335037, 0.07576584815979004, -0.003621830139309168, 0.003868966829031706, -0.009947960264980793, 0.043109722435474396, -0.03847377747297287, -0.009709345176815987, 0.02187301404774189, 0.03656486049294472, 0.020907191559672356, -0.020986730232834816, 0.022747933864593506, 0.05254068225622177, -0.05313153937458992, 0.01960049197077751, 0.01920280233025551, 0.005641533061861992, 0.04556404426693916, -0.012601127848029137, 0.024747751653194427, -0.017157532274723053, 0.016816655173897743, 0.0708572044968605, -0.04426870495080948, 0.060221802443265915, 0.013351060450077057, 0.039519138634204865, 0.07276611775159836, -0.029360970482230186, 0.021259432658553123, -0.026202166453003883, 0.047813840210437775, 0.06272157281637192, -0.025247706100344658, -0.0400872677564621, -0.08758295327425003, 0.01577129401266575, -0.019236888736486435, -0.02245250716805458, -0.008612854406237602, -0.01077174860984087, 0.0279974564909935, -0.02522498182952404, -0.05204072967171669, 0.07758386433124542, -0.04649577662348747, 0.020384512841701508, -0.03881465643644333, 0.007357286289334297, -0.008635579608380795, 0.028361059725284576, 0.015987183898687363, 0.061812568455934525, -0.046632129698991776, -0.08053813874721527, -0.034565042704343796, 0.03670121356844902, -0.020577676594257355, 0.014225980266928673, 0.004667189903557301, -0.04165530949831009, 0.05567676201462746, 0.0006260084919631481, -0.018043816089630127, 0.023156987503170967, -0.04713208228349686, 0.017396146431565285, -0.015975821763277054, -0.005493819247931242, -0.02356604114174843, -0.04908645153045654, -0.04945005476474762, 0.054676853120326996, -0.007601582445204258, -0.019259614869952202, -0.0007634249632246792, -0.03974638879299164, 0.09390056133270264, 0.008800337091088295, 0.07262976467609406, -0.02974729798734188, 0.055267706513404846, 0.030815383419394493, -0.05558586120605469, 0.005292132962495089, 0.012885193340480328, 0.01878238469362259, -0.00029027904383838177, 0.008033361285924911, -0.009317335672676563, 0.0315425880253315, 0.018407419323921204, -0.004860354121774435, -0.05581311136484146, -0.028679214417934418, 0.02404327131807804, 0.045473143458366394, -0.024861378595232964, 0.019975459203124046, 0.000768396130297333, 0.03631488233804703, 0.04006454348564148, 0.026020364835858345, 0.013657850213348866, 0.00859012920409441, -0.014430508017539978, 0.009357105009257793, 0.01935051567852497, -0.024702301248908043, -0.050086360424757004, -0.04476866126060486, -0.01269202958792448, -0.0045876516960561275, -0.00955595076084137, -0.031883466988801956, 0.02572493627667427, 0.0055477917194366455, 0.030224528163671494, 0.010788792744278908, 0.011669394560158253, 0.010072948411107063, 0.05094991996884346, -0.08199255168437958, 0.006828925106674433, 0.0053006550297141075, 0.013532862067222595, -0.023361515253782272, 0.003405940718948841, 0.0031161941587924957, 0.09499137103557587, -0.05063176527619362, 0.0025509046390652657, 0.02406599558889866, -0.03099718503654003, 0.0017810881836339831, -0.013339697383344173, 0.05385874584317207, 0.026952097192406654, -0.018452869728207588, -0.017384784296154976, -0.004675711505115032, 0.007431143429130316, -0.0035167259629815817, 0.018043816089630127, -0.053631491959095, 0.04149623215198517, 0.04583674669265747, -0.006681211292743683, 0.014555496163666248, -0.011135352775454521, -0.025338606908917427, 0.041859835386276245, -0.059721849858760834, -0.01641896367073059, 0.004456981550902128, -0.021304883062839508, -0.016123535111546516, -0.03761022165417671, -0.03136078640818596, 0.015703119337558746, -0.010737661272287369, -0.0182028915733099, -0.006056268233805895, 0.014430508017539978, 0.05708572641015053, 0.019805019721388817, -0.01894146203994751, 0.010004772804677486, 0.012714754790067673, -0.043973278254270554, -0.041768934577703476, 0.014919099397957325, 0.019736843183636665, 0.00905031431466341, 0.04713208228349686, 0.025338606908917427, -0.04065539687871933, -0.08558313548564911, 0.059221893548965454, -0.03217889741063118, -0.03436051681637764, -0.02540678344666958, 0.012192074209451675, -0.0659940093755722, 0.03195164352655411, 0.015362241305410862, 0.05131352320313454, -0.025702212005853653, -0.04095082730054855, -0.013976003043353558, -0.009601401165127754, 0.008504909463226795, -0.038178350776433945, 0.02974729798734188, -0.012203437276184559, -0.005152941215783358, 0.004033724777400494, -0.06849377602338791, -0.003726934315636754, 0.006533497478812933, -0.07990183681249619, 0.008396964520215988, 0.039428237825632095, 0.0012669303687289357, -0.05935824662446976, -0.022736571729183197, 0.0167598407715559, -0.041791658848524094, -0.04460958391427994, 0.0047268434427678585, 0.043200623244047165, -0.044291432946920395, -0.010720617137849331, 0.03836015239357948, -0.02053222618997097, -0.0017185938777402043, -0.05185892805457115, -0.0358831062912941, 0.009232115931808949, 0.005073403008282185, 0.01278293039649725, -0.00185494520701468, 0.013032907620072365, 0.07003909349441528, 0.04472321271896362, -0.028883740305900574, 0.033315155655145645, 0.041518956422805786, -0.04447323456406593, -0.02178211323916912, 0.021895738318562508, -0.0047268434427678585, 0.012601127848029137, 0.020907191559672356, 0.00912985298782587, -0.05422234907746315, -0.05799473449587822, -0.028951916843652725, -0.017157532274723053, 0.03751932084560394, -0.04817744344472885, -0.024179622530937195, -0.01986183226108551, -0.04367785155773163, 0.03249704837799072, -0.009368467144668102, 0.026702120900154114, -0.0596763975918293, -0.008283338509500027, 0.009561631828546524, 0.06694846600294113, -0.03533770143985748, -0.013680575415492058, 0.009794564917683601, 0.03870103135704994, -0.04895009845495224, -0.012453414499759674, -0.04590492323040962, -0.01340787298977375, 0.0046188984997570515, -0.046223074197769165, -0.013646488077938557, -0.041609857231378555, 0.01927097700536251, 0.001898975227959454, 0.04695028066635132, -0.015623580664396286, -0.03811017423868179, -0.005056358873844147, 0.003621830139309168, 0.06135806441307068, 0.0009153998107649386, -0.034724120050668716, 0.0011696381261572242, -0.0261567160487175, 0.0029770024120807648, 0.07626580446958542, -0.04524588957428932, 0.018168805167078972, -0.00513589708134532, 0.019577767699956894, -0.045064087957143784, -0.020486775785684586, -0.03526952490210533, 0.035655852407217026, 0.026202166453003883, 0.022247979417443275, -0.01810062862932682, -0.07090265303850174, 0.005726752802729607, 0.01777111366391182, 0.00741978082805872, -0.026293067261576653, 0.05908554419875145, -0.013339697383344173, -0.004448459483683109, 0.047313883900642395, -0.0009395453380420804, 0.03899645805358887, 0.011135352775454521, -0.016532588750123978, -0.03570130467414856, 0.0005723912036046386, 0.02422507293522358, -0.02974729798734188, -0.013032907620072365, 0.06626670807600021, -0.020157260820269585, 0.018998274579644203, -0.015384966507554054, -0.02481592819094658, 0.017634762451052666, -0.012282975018024445, -0.014941824600100517, -0.052677035331726074, 0.11089901626110077, 0.020429963245987892, -0.04817744344472885, -0.006669848691672087, -0.020168622955679893, -0.007147078402340412, 0.010135442949831486, 0.0020466891583055258, 0.02672484517097473, 0.008965094573795795, -0.042541589587926865, -0.07299336791038513, 0.010294519364833832, 0.02790655568242073, 0.002205765573307872, 0.05894919112324715, 0.0005301365163177252, 0.054858654737472534, 0.029474595561623573, 0.05290428549051285, 0.020770840346813202, -0.019055087119340897, 0.026952097192406654, 0.03820107504725456, -0.003959867637604475, -0.05463140085339546, 0.05826743692159653, -0.0377238467335701, -0.0024060315918177366, -0.024429598823189735, -0.10189983993768692, 0.05340424180030823, -0.03686028718948364, -0.05958549678325653, 0.07935643196105957, 0.014135079458355904, -0.04470048472285271, -0.01802108995616436, -0.004189960192888975, -0.01977093145251274, -0.006130124907940626, -0.029360970482230186, -0.031974367797374725, -0.014180529862642288, 0.019793657585978508, 0.03736024349927902, -0.0010389680974185467, -0.07172075659036636, -0.03567857667803764, 0.06785747408866882, -0.07872012257575989, 0.004039405845105648, 0.06958458572626114, 0.020907191559672356, -0.023702392354607582, -0.006226707249879837, 0.004431415814906359, 0.027383876964449883, 0.009061677381396294, 0.06285792589187622, 0.017134808003902435, 0.010101355612277985, 0.05640396848320961, 0.035996731370687485, 0.03176984190940857, 0.012930643744766712, 0.06990274041891098, 0.03329243138432503, -0.0075390879064798355, 0.03631488233804703, 0.009913871996104717, -0.019259614869952202, 0.017793837934732437, -0.024406874552369118, 0.026543043553829193, 0.03915553539991379, -0.019884558394551277, -0.0341787151992321, -0.03981456533074379, -0.025679485872387886, -0.003803631756454706, -0.022225255146622658, -0.0026900966186076403, 0.0009232116281054914, -0.04326879605650902, -0.0006661326624453068, -0.029270069673657417, 0.016578039154410362, -0.0007087424746714532, -0.01943005435168743, 0.007976548746228218, 0.009283247403800488, -0.021236708387732506, 0.037246618419885635, 0.03713298961520195, 0.03631488233804703, -0.02940642088651657, 0.0029656398110091686, 0.09508227556943893, -0.019634580239653587, 0.020736753940582275, -0.042882468551397324, -0.0014331084676086903, 0.005047836806625128, 0.04826834425330162, 0.04335969686508179, -0.04047359526157379, 0.05763113126158714, -0.05085901916027069, -0.003806472523137927, 0.007664076518267393, 0.02338423952460289, 0.028361059725284576, 0.023656941950321198, 0.0279974564909935, -0.03981456533074379, 0.0051046498119831085, -0.05176802724599838, -0.08062904328107834, 0.05381329357624054, -0.021429872140288353, -0.056631218641996384, 0.05440415069460869, 0.006851650308817625, -0.019236888736486435, -0.0707208514213562, -0.04795018956065178, 0.009840015321969986, 0.03186074271798134, 0.06708481907844543, -0.013362422585487366, -0.046313975006341934, 0.0267475713044405, 0.029701847583055496, 0.02228206768631935, -0.022009365260601044, 0.05272248387336731, 0.023316064849495888, -0.008061767555773258, 0.012737479992210865, 0.02429324761033058, 0.022850196808576584, -0.0058460598811507225, -0.023497866466641426, -0.03420143947005272, 0.025770386680960655, 0.03983728960156441, 0.03476956859230995, 0.03401963785290718, -0.0323379710316658, 0.04690483212471008 ]
20,271
start_sdk.cf_img
delete
Issue httpx [DELETE](https://developers.cloudflare.com/images/cloudflare-images/transform/delete-images/) request to the image.
def delete(self, img_id: str, *args, **kwargs) -> httpx.Response: """Issue httpx [DELETE](https://developers.cloudflare.com/images/cloudflare-images/transform/delete-images/) request to the image.""" # noqa: E501 return self.client.delete( url=f"{self.base_api}/{img_id}", headers=self.headers, *args, **kwargs, )
(self, img_id: str, *args, **kwargs) -> httpx.Response
[ -0.024252906441688538, -0.03623369708657265, -0.013710538856685162, -0.025964446365833282, -0.014894051477313042, 0.004451828543096781, -0.026929466053843498, 0.0825909748673439, 0.030024806037545204, 0.010842796415090561, -0.004693082999438047, 0.003154516452923417, -0.03779957443475723, -0.02174021676182747, -0.011525592766702175, -0.008107061497867107, -0.003673441242426634, 0.04380817711353302, 0.03279240429401398, -0.04464573785662651, 0.007820287719368935, 0.04839656502008438, 0.008348315954208374, -0.032410040497779846, 0.03585132956504822, 0.0012631721328943968, 0.06966337561607361, -0.027839859947562218, 0.0059721870347857475, -0.05469649285078049, -0.03541434183716774, 0.021922295913100243, 0.005334910936653614, 0.06096000596880913, -0.05141907185316086, 0.013801578432321548, 0.03739900141954422, -0.031080864369869232, -0.03149964660406113, 0.04267928749322891, -0.050872836261987686, -0.013801578432321548, 0.07640029489994049, -0.07530782371759415, 0.010979356244206429, 0.029642440378665924, -0.0518924780189991, -0.026601722463965416, -0.021339643746614456, -0.026292189955711365, -0.005362222902476788, -0.01817147061228752, -0.007119284011423588, -0.0034868104849010706, 0.09154925495386124, -0.005494229961186647, -0.0016956095350906253, -0.006595807150006294, 0.009522724896669388, -0.011780503205955029, 0.03230079263448715, -0.026437852531671524, -0.013419212773442268, -0.03512301295995712, 0.025891615077853203, -0.027985522523522377, -0.033775631338357925, 0.004640735220164061, -0.042023804038763046, -0.021248605102300644, -0.018899787217378616, -0.023032978177070618, 0.04701276496052742, 0.002505860524252057, 0.010050754062831402, 0.0025559321511536837, 0.033302225172519684, -0.017133621498942375, 0.034977350383996964, -0.008111613802611828, -0.00123130832798779, -0.04770466312766075, 0.018499214202165604, -0.04668502137064934, 0.00014737008314114064, -0.018371758982539177, 0.032701365649700165, -0.03654323145747185, -0.04417233541607857, 0.0009963128250092268, 0.042460791766643524, 0.01869950070977211, -0.0654391497373581, -0.06190681830048561, 0.03716229647397995, 0.04508272930979729, 0.01799849607050419, 0.0031431366223841906, 0.04450007528066635, -0.03379384055733681, -0.023397134616971016, 0.0048842658288776875, 0.026055486872792244, 0.008371076546609402, 0.04067641869187355, -0.013601291924715042, 0.03761749342083931, -0.06412817537784576, -0.010269248858094215, 0.007656416390091181, 0.019500646740198135, 0.036051616072654724, 0.01618681102991104, -0.003373011015355587, 0.05626237019896507, -0.011516489088535309, -0.020083298906683922, -0.05265720933675766, 0.011197851039469242, -0.012235700152814388, -0.05899355560541153, -0.099852055311203, -0.007210323587059975, -0.010160000994801521, 0.03388487920165062, 0.003846416249871254, -0.005498781800270081, 0.0019527958938851953, -0.054004594683647156, -0.030880575999617577, -0.04916129633784294, 0.020483873784542084, -0.01939140073955059, 0.008976488374173641, 0.0015613263240084052, 0.03798165172338486, 0.06525706499814987, -0.019646311178803444, 0.043371185660362244, 0.03645218908786774, 0.04715842753648758, 0.0003960215544793755, -0.00858957041054964, 0.0518924780189991, 0.024180075153708458, -0.03444932401180267, -0.0003655802283901721, -0.011461865156888962, -0.011052187532186508, -0.04828731715679169, -0.048432979732751846, 0.06693219393491745, 0.0435168519616127, -0.013410109095275402, -0.007210323587059975, -0.020119715481996536, 0.0066367750987410545, -0.0012256184127181768, -0.012563441880047321, 0.015212689526379108, 0.031718138605356216, 0.030043013393878937, 0.03823656216263771, -0.05808316171169281, 0.02479914203286171, -0.025855200365185738, 0.026547100394964218, 0.04191455617547035, -0.003516398137435317, 0.021630970761179924, -0.05935771390795708, -0.023779500275850296, 0.06227097287774086, -0.054842155426740646, 0.0442451648414135, 0.06463799625635147, 0.03654323145747185, 0.057427678257226944, -0.013055055402219296, -0.023925164714455605, 0.017734482884407043, -0.025072261691093445, 0.02059311978518963, -0.020283587276935577, -0.03718050569295883, 0.033302225172519684, -0.015057922340929508, 0.06143341213464737, 0.02326967939734459, 0.007433369755744934, -0.008325556293129921, 0.010551470331847668, 0.005230215843766928, 0.03860072046518326, 0.026146525517106056, -0.0013428316451609135, -0.0031181008089333773, -0.07345061749219894, 0.03769032657146454, -0.041259072721004486, -0.058410901576280594, -0.020028676837682724, 0.005298495292663574, -0.016423514112830162, 0.0045792837627232075, 0.019027242437005043, -0.011798710562288761, -0.008981040678918362, -0.021794840693473816, 0.019810181111097336, -0.019901221618056297, -0.022067958489060402, -0.007620000746101141, 0.010305664502084255, 0.008689714595675468, -0.02756674215197563, -0.018262511119246483, 0.031244734302163124, -0.009317886084318161, -0.007387850433588028, 0.011134123429656029, 0.003297903575003147, 0.02572774514555931, 0.03565104305744171, -0.004192366264760494, 0.026838425546884537, 0.004870609845966101, 0.05899355560541153, 0.01761613041162491, -0.03417620435357094, -0.006258961278945208, 0.01564057543873787, 0.06973620504140854, -0.004966201260685921, 0.04617520049214363, -0.030498210340738297, -0.03716229647397995, -0.017980288714170456, -0.019354984164237976, 0.03352072089910507, -0.01573161408305168, -0.016450826078653336, 0.016660217195749283, 0.016359787434339523, -0.03191842511296272, -0.0029883694369345903, 0.0014133872464299202, 0.0550970658659935, 0.019883012399077415, -0.059102803468704224, 0.023979786783456802, -0.09031111747026443, 0.024780934676527977, 0.00035533829941414297, 0.033538930118083954, 0.025527458637952805, -0.022268246859312057, -0.017962081357836723, -0.016077565029263496, 0.03554179519414902, -0.013537564314901829, 0.0027015951927751303, -0.018481004983186722, 0.016450826078653336, -0.02891412563621998, 0.023925164714455605, -0.008648746646940708, 0.0486878901720047, 0.024981221184134483, 0.023688461631536484, 0.07880373299121857, -0.01930036023259163, 0.0023465414997190237, -0.023105809465050697, -0.011744087561964989, 0.0034276347141712904, -0.006327240727841854, -0.0454833023250103, -0.033775631338357925, -0.017834626138210297, 0.010396704077720642, -0.03230079263448715, 0.030880575999617577, -0.0014259051531553268, -0.04664860665798187, 0.032628532499074936, 0.027767028659582138, 0.0634726956486702, 0.02137606032192707, 0.013055055402219296, 0.007237635087221861, 0.042169466614723206, -0.03867355361580849, 0.023706668987870216, -0.02099369466304779, -0.030425379052758217, -0.08433893322944641, 0.0031340327113866806, -0.014065592549741268, 0.02929649129509926, -0.014721076935529709, 0.021612761542201042, 0.05222022160887718, -0.04945262148976326, -0.05280287191271782, 0.005544301588088274, 0.018289823085069656, -0.007569929119199514, -0.001636433880776167, -0.001722921384498477, 0.04886997118592262, 0.021703802049160004, -0.07472516596317291, -0.030407171696424484, 0.07075584679841995, -0.026765594258904457, 0.02632860466837883, -0.048505812883377075, 0.018754124641418457, 0.007497097365558147, -0.02931469865143299, -0.005608029197901487, -0.014766596257686615, 0.028513550758361816, 0.07843957841396332, -0.05608029291033745, 0.030334340408444405, 0.012590753845870495, 0.0852857455611229, 0.02960602380335331, 0.050180938094854355, 0.038200147449970245, -0.031171903014183044, -0.021230395883321762, 0.05229305103421211, -0.09329721331596375, 0.049561869353055954, -0.0589207224547863, -0.023979786783456802, 0.08280947059392929, -0.053676851093769073, 0.012536130845546722, 0.10764502733945847, 0.03998452052474022, -0.025527458637952805, 0.013410109095275402, -0.012445091269910336, -0.057646170258522034, 0.04122265800833702, 0.0042196777649223804, 0.030279716476798058, -0.0010099686915054917, 0.022450324147939682, -0.05211097374558449, 0.03226437792181969, 0.003894211957231164, 0.02288731373846531, 0.05451441556215286, 0.02143068239092827, -0.013992761261761189, 0.0014987366739660501, -0.02946036122739315, -0.043225523084402084, -0.005107312463223934, 0.0007607482839375734, -0.04785032942891121, 0.022705234587192535, -0.08535857498645782, 0.011862438172101974, 0.011343513615429401, -0.03503197431564331, 0.011188746429979801, -0.07221248000860214, -0.012372259050607681, 0.0705009400844574, 0.023469965904951096, 0.006441039964556694, -0.04326194152235985, 0.011571112088859081, 0.030170468613505363, -0.028185809031128883, 0.020866239443421364, 0.0012552061816677451, -0.011962582357227802, -0.03838222473859787, 0.02465347945690155, -0.02532717026770115, 0.04013018310070038, -0.04253362491726875, 0.019282152876257896, 0.030571043491363525, -0.043917424976825714, 0.005794660188257694, -0.006996380630880594, -0.02807656303048134, -0.07232172787189484, -0.004119534511119127, 0.013837994076311588, -0.0020688711665570736, -0.006796094123274088, 0.001736577250994742, 0.10866466909646988, -0.036379359662532806, 0.0358695387840271, 0.030134053900837898, 0.02754853293299675, -0.05939412862062454, -0.060268107801675797, 0.0038486921694129705, -0.043079860508441925, 0.020265378057956696, -0.01633247546851635, -0.025745952501893044, 0.09315155446529388, 0.06951771676540375, 0.046430110931396484, -0.02097548544406891, 0.013701435178518295, -0.053094200789928436, -0.008785305544734001, 0.011953477747738361, 0.05713634938001633, 0.024562440812587738, -0.01982838846743107, -0.051710400730371475, -0.012718209065496922, -0.010278352536261082, 0.012618065811693668, -0.006363656371831894, -0.02702050469815731, -0.03233720734715462, 0.006509319879114628, -0.013127886690199375, 0.017980288714170456, -0.015595055185258389, 0.007506201509386301, -0.005016272887587547, 0.022559572011232376, 0.06074151024222374, 0.027220791205763817, -0.009194983169436455, -0.004272025544196367, -0.010160000994801521, -0.037198714911937714, -0.03830939531326294, 0.015585951507091522, 0.04581104591488838, 0.012608962133526802, 0.016805879771709442, -0.02570953592658043, 0.0808430165052414, 0.0002924641885329038, -0.00015263330715242773, -0.0002950246853288263, -0.03244645521044731, -0.08106151223182678, 0.0014691489050164819, -0.010369392111897469, -0.03863713517785072, -0.0717390775680542, -0.04053075611591339, 0.026729177683591843, -0.07836674898862839, -0.06001319736242294, -0.040931329131126404, 0.014193047769367695, 0.05709993466734886, 0.005216559860855341, 0.004888817667961121, -0.020574912428855896, 0.03823656216263771, -0.013692331500351429, -0.013783371075987816, 0.026929466053843498, -0.0085531547665596, 0.08754352480173111, 0.04646652936935425, 0.02953319251537323, 0.01770717091858387, -0.014766596257686615, 0.08441176265478134, -0.016760360449552536, 0.016614697873592377, -0.0718483254313469, -0.022614195942878723, -0.02991555817425251, -0.012809248641133308, 0.020411042496562004, 0.060086026787757874, -0.037271544337272644, 0.05211097374558449, -0.015522223897278309, -0.023488175123929977, -0.027876274660229683, 0.06624029576778412, -0.03455857187509537, -0.04450007528066635, -0.06784258782863617, -0.006263513118028641, -0.06744201481342316, -0.016760360449552536, -0.02998838946223259, -0.056881438940763474, 0.02266881987452507, 0.022559572011232376, -0.02487197332084179, 0.027056921273469925, 0.009040215983986855, -0.014274983666837215, -0.003960215486586094, -0.08870882540941238, 0.018681291490793228, 0.006409176159650087, 0.04187814146280289, 0.023852331563830376, 0.007283154875040054, -0.02181304804980755, -0.006004050839692354, -0.022705234587192535, -0.01792566478252411, 0.019518855959177017, -0.01632337085902691, -0.024981221184134483, 0.050326600670814514, -0.037508249282836914, 0.026838425546884537, -0.012153765186667442, -0.01422946434468031, 0.06580330431461334, 0.050945669412612915, -0.0346314013004303, -0.0033343194518238306, -0.0015055646654218435, -0.034157995134592056, -0.05870222672820091, -0.013674123212695122, -0.0461023710668087, -0.04366251453757286, 0.008962832391262054, 0.004272025544196367, -0.0038760039024055004, 0.03137218952178955, 0.0039533874951303005, 0.037581078708171844, -0.032318998128175735, 0.027985522523522377, 0.04406308755278587, 0.002553656231611967, -0.0026264877524226904, 0.00878075323998928, 0.0009951748652383685, 0.0010719894198700786, 0.03900129348039627, -0.002610555849969387, 0.002976989606395364, 0.10320230573415756, -0.043990254402160645, -0.04519197717308998, -0.04741333797574043, -0.05320344492793083, -0.04894280061125755, 0.03776315972208977, 0.0761817991733551, -0.02006509155035019, 0.0033821151591837406, 0.06893505901098251, 0.05943054333329201, -0.010760861448943615, 0.015686094760894775, -0.060632266104221344, -0.04435441270470619, -0.0372169204056263, 0.039583947509527206, -0.007501649670302868, -0.06569405645132065, 0.053385525941848755, 0.02113935723900795, -0.03410337120294571, 0.028058353811502457, 0.005994946695864201, 0.0024034411180764437, -0.028750253841280937, 0.033775631338357925, -0.02130322903394699, -0.026619931682944298, -0.004761362448334694, 0.041331905871629715, -0.030261509120464325, 0.0358695387840271, -0.029260074719786644, -0.014548102393746376, 0.013300861231982708, 0.05378609895706177, -0.020574912428855896, -0.03998452052474022, 0.03222795948386192, 0.027129752561450005, -0.007811183575540781, -0.015522223897278309, -0.014875844120979309, 0.1422400176525116, -0.036288321018218994, 0.013646811246871948, 0.020174339413642883, 0.014866739511489868, 0.08390194177627563, -0.05702710151672363, -0.023997996002435684, 0.026510683819651604, -0.04464573785662651, -0.04198738932609558, -0.016696631908416748, 0.0054760221391916275, 0.02731183171272278, -0.038819216191768646, 0.008844480849802494, 0.014366023242473602, 0.06503857672214508, -0.05305778235197067, 0.012035413645207882, 0.007792975753545761, -0.07301362603902817, -0.00027454079827293754, -0.026911256834864616, 0.051637567579746246, 0.0372169204056263, -0.005271183326840401, 0.06270796060562134, -0.042096637189388275, 0.050326600670814514, -0.032628532499074936, 0.009199535474181175, -0.0024170971009880304, 0.01761613041162491, 0.04267928749322891, -0.0056854127906262875, -0.011307097971439362, 0.005466917995363474, -0.032537493854761124, -0.011188746429979801, 0.0978856012225151, 0.00022361561423167586, -0.048797138035297394, 0.07472516596317291, -0.026219356805086136, 0.05076358839869499, -0.02771240472793579, -0.008844480849802494, 0.031954843550920486, -0.03608803078532219, -0.0030088534113019705, 0.04526480659842491, 0.004281129688024521, -0.037508249282836914, -0.004445000551640987, -0.009631972759962082, -0.003002025419846177, -0.0017957529053092003, -0.09089377522468567, 0.013965449295938015, 0.03623369708657265, -0.008539498783648014, 0.014083800837397575, -0.015249105170369148, -0.059867534786462784, -0.06248946860432625, 0.04978036507964134, -0.055679719895124435, -0.0014748388202860951, 0.002735735150054097, -0.018972618505358696, 0.006554839201271534, -0.06474724411964417, 0.025928031653165817, -0.035742081701755524, -0.006545735523104668, 0.04657577723264694, -0.013555771671235561, -0.0025946239475160837, 0.05884789302945137, -0.02252315729856491, 0.020465664565563202, 0.05218380317091942, -0.001961899921298027, -0.0006810887716710567, -0.04908846318721771, 0.010068961419165134, -0.01900903508067131, -0.05229305103421211, -0.016514554619789124, -0.013401005417108536, 0.019555270671844482, 0.049889612942934036, -0.020502081140875816, 0.014120216481387615, 0.032410040497779846, -0.03677993267774582, -0.0017286112997680902, -0.06529348343610764, 0.006418280303478241, -0.021157564595341682, -0.06507498770952225, -0.010442223399877548, -0.024671686813235283, 0.0034003229811787605, 0.021558137610554695, 0.018681291490793228, 0.02297835424542427, 0.07028244435787201, -0.025126883760094643, 0.0011539248516783118, 0.007961398921906948, 0.0019459679024294019, 0.03776315972208977, -0.009550036862492561, 0.11099527776241302, -0.023633837699890137, -0.030480002984404564, -0.014666453003883362, 0.014238568022847176, -0.007014588452875614, 0.01747957244515419, 0.023852331563830376, -0.021011902019381523, -0.0033866669982671738, -0.04242437705397606, 0.025928031653165817, -0.0030748569406569004, -0.029332906007766724, 0.03608803078532219, 0.03381204605102539, -0.016696631908416748, -0.02967885695397854, -0.05404100939631462, -0.05396817624568939, -0.0005234767450019717, 0.05141907185316086, -0.03251928836107254, 0.07031886279582977, 0.0004199194081593305, -0.04978036507964134, -0.009281470440328121, -0.02518150769174099, -0.06416459381580353, 0.05935771390795708, 0.007752007804811001, 0.03761749342083931, 0.04974394664168358, 0.0015909140929579735, 0.015039714984595776, 0.02212258242070675, -0.013155198656022549, 0.004724946804344654, 0.033757422119379044, 0.025472834706306458, -0.010833692736923695, -0.0563352033495903, 0.011325306259095669, 0.042169466614723206, 0.019409608095884323, -0.04220588132739067, 0.014511685818433762, -0.0003641577495727688, -0.04435441270470619, 0.0024922045413404703, -0.009040215983986855, 0.014894051477313042, 0.03838222473859787 ]
20,272
start_sdk.cf_img
get
Issue httpx GET request to the image found in storage. Assuming request like `CFImage().get('target-img-id')`, returns a response with metadata: Examples: ```py title="Response object from Cloudflare Images" >>> # CFImage().get('target-img-id') commented out since hypothetical b'{ "result": { "id": "target-img-id", "filename": "target-img-id", "uploaded": "2023-02-20T09:09:41.755Z", "requireSignedURLs": false, "variants": [ "https://imagedelivery.net/<hash>/<target-img-id>/public", "https://imagedelivery.net/<hash>/<target-img-id>/cover", "https://imagedelivery.net/<hash>/<target-img-id>/avatar", "https://imagedelivery.net/<hash>/<target-img-id>/uniform" ] }, "success": true, "errors": [], "messages": [] }' ```
def get(self, img_id: str, *args, **kwargs) -> httpx.Response: """Issue httpx GET request to the image found in storage. Assuming request like `CFImage().get('target-img-id')`, returns a response with metadata: Examples: ```py title="Response object from Cloudflare Images" >>> # CFImage().get('target-img-id') commented out since hypothetical b'{ "result": { "id": "target-img-id", "filename": "target-img-id", "uploaded": "2023-02-20T09:09:41.755Z", "requireSignedURLs": false, "variants": [ "https://imagedelivery.net/<hash>/<target-img-id>/public", "https://imagedelivery.net/<hash>/<target-img-id>/cover", "https://imagedelivery.net/<hash>/<target-img-id>/avatar", "https://imagedelivery.net/<hash>/<target-img-id>/uniform" ] }, "success": true, "errors": [], "messages": [] }' ``` """ return self.client.get( url=f"{self.base_api}/{img_id}", headers=self.headers, *args, **kwargs, )
(self, img_id: str, *args, **kwargs) -> httpx.Response
[ -0.004715787712484598, -0.0955510064959526, -0.06256139278411865, 0.00415156502276659, 0.0057258158922195435, 0.016912750899791718, -0.00915294699370861, 0.03451278433203697, 0.05698882043361664, -0.030742013826966286, 0.04406045749783516, 0.039045143872499466, 0.004880642984062433, -0.009974900633096695, 0.027156993746757507, 0.0007081808289512992, -0.008382074534893036, 0.022178830578923225, 0.045509323477745056, -0.04149707406759262, 0.0267297625541687, 0.05256791412830353, 0.03239521011710167, -0.0430573932826519, 0.058177635073661804, 0.010968675836920738, 0.053496673703193665, -0.03373262658715248, 0.06215273588895798, -0.0070121511816978455, -0.00027354934718459845, -0.013950001448392868, 0.010903663001954556, 0.057174570858478546, -0.07040014117956161, 0.0336211733520031, 0.038710787892341614, -0.05620865896344185, -0.0700286328792572, 0.05212210863828659, -0.03724334388971329, -0.04484061524271965, 0.0916130542755127, -0.0601094588637352, -0.015872538089752197, 0.019076766446232796, -0.05880919098854065, -0.035943079739809036, -0.03031478263437748, -0.03206085413694382, 0.038004931062459946, 0.003926340024918318, -0.004100482910871506, -0.0394909493625164, 0.043986156582832336, 0.03993675485253334, -0.043428897857666016, 0.007704078685492277, 0.01503665279597044, 0.03960239887237549, 0.013086252845823765, -0.011581658385694027, 0.02749134786427021, -0.04350319877266884, -0.01837090775370598, -0.011776698753237724, -0.029144542291760445, 0.014200766570866108, -0.05620865896344185, -0.020284155383706093, 0.013782824389636517, -0.005767610389739275, 0.016541246324777603, -0.007091095671057701, -0.020302731543779373, -0.04747829958796501, -0.0022116138134151697, -0.03157790005207062, 0.03679753839969635, 0.013262717053294182, -0.013169840909540653, -0.021584423258900642, 0.01048571988940239, -0.06070386618375778, 0.010281392373144627, -0.011767410673201084, 0.009264398366212845, -0.061298273503780365, -0.029980428516864777, 0.03572017699480057, -0.012872637249529362, 0.04224008321762085, -0.06018375977873802, 0.007880543358623981, 0.02563382312655449, 0.018398769199848175, 0.008591045625507832, -0.0034828565549105406, 0.056654464453458786, 0.025726700201630592, -0.03637031093239784, -0.008660702966153622, 0.014005727134644985, 0.04127417132258415, 0.050190284848213196, -0.05992370843887329, 0.008498169481754303, -0.01598398946225643, 0.004274625796824694, -0.009779861196875572, -0.0064038122072815895, 0.01736784353852272, 0.007657640613615513, 0.009487301111221313, 0.02669261209666729, -0.004012250807136297, -0.012872637249529362, 0.0021164158824831247, -0.03603595495223999, -0.026878364384174347, -0.06969428062438965, -0.08953262865543365, 0.028122905641794205, -0.02229028195142746, 0.033806927502155304, 0.05784327909350395, -0.027788551524281502, -0.017395706847310066, -0.009974900633096695, -0.0060044447891414165, -0.035107191652059555, -0.0026957308873534203, -0.02829008176922798, 0.0854460820555687, -0.010467144660651684, 0.010049201548099518, 0.012937651015818119, 0.01852879673242569, 0.0393051952123642, 0.07392943650484085, -0.013671373017132282, -0.007954844273626804, -0.005879061762243509, 0.014191479422152042, -0.016355494037270546, -0.012677597813308239, 0.0672423467040062, -0.06401025503873825, -0.0034410622902214527, -0.04465486481785774, 0.028958790004253387, 0.042425837367773056, 0.00744402501732111, -0.014126465655863285, -0.012556858360767365, -0.02931172028183937, 0.03399267792701721, -0.001313036889769137, 0.009171522222459316, 0.04669813811779022, 0.009677696973085403, 0.010847937315702438, 0.01939254440367222, -0.07853609323501587, 0.011767410673201084, -0.017042778432369232, -0.009937750175595284, 0.041088417172431946, 0.002259213011711836, 0.052270710468292236, -0.06349015235900879, -0.020841412246227264, -0.04487776756286621, -0.06902556866407394, 0.06044381484389305, 0.023943476378917694, 0.025039415806531906, 0.013197704218327999, -0.038004931062459946, 0.02743562124669552, 0.008990413509309292, -0.07025153934955597, -0.03754054754972458, 0.023980628699064255, -0.02955319732427597, 0.05910639464855194, 0.01388498768210411, 0.04974447935819626, 0.029887551441788673, 0.03243235871195793, 0.001270081615075469, -0.006640646141022444, -0.000705858925357461, -0.03889654204249382, 0.03363975137472153, -0.0612611249089241, 0.0030811671167612076, -0.02698981575667858, 0.02362769842147827, 0.00915294699370861, -0.03326824679970741, -0.02461218647658825, 0.013931426219642162, 0.02489081397652626, 0.015463883057236671, -0.004673993214964867, 0.008618908934295177, -0.01205532718449831, -0.06523622572422028, 0.032283756881952286, -0.04591798037290573, 0.023516247048974037, -0.05449973791837692, -0.023200467228889465, -0.002628395799547434, 0.039268046617507935, -0.046029429882764816, 0.022494608536362648, -0.024222105741500854, -0.02149154618382454, 0.04558362439274788, -0.052493613213300705, 0.008047720417380333, 0.058177635073661804, -0.03596165403723717, 0.025968177244067192, 0.031002067029476166, 0.005762966349720955, -0.030927766114473343, -0.02256890945136547, -0.01139590609818697, 0.033045344054698944, 0.07742157578468323, 0.0155567592009902, 0.012984088622033596, 0.003255309769883752, 0.013272005133330822, 0.06033236160874367, -0.017423570156097412, 0.018993176519870758, 0.014219341799616814, 0.017925100401043892, -0.009928463026881218, 0.03659321367740631, -0.041125569492578506, -0.04558362439274788, -0.0038915115874260664, 0.07422664016485214, -0.007871255278587341, -0.023460520431399345, 0.029330294579267502, -0.05416538566350937, 0.039751000702381134, -0.003791669849306345, -0.005614364519715309, -0.0456579253077507, -0.061595477163791656, -0.08923542499542236, 0.04138562083244324, -0.004685603082180023, -0.02024700492620468, 0.027064116671681404, -0.012696173042058945, 0.0549083948135376, -0.0792791023850441, -0.008191678673028946, 0.004880642984062433, 0.0378563292324543, -0.04164567589759827, 0.03399267792701721, 0.08358855545520782, 0.0445062629878521, -0.00737901171669364, -0.016792012378573418, -0.017274968326091766, -0.039528097957372665, 0.017813649028539658, -0.010950100608170033, -0.0326552614569664, -0.02877303771674633, -0.019541146233677864, -0.01100582629442215, -0.002400849014520645, -0.04023395851254463, -0.009440862573683262, -0.036184556782245636, 0.017377132549881935, 0.04510067030787468, 0.0006930884555913508, -0.033045344054698944, 0.001064012642018497, 0.03679753839969635, -0.083811454474926, -0.03466138616204262, -0.0037521973717957735, -0.04041970893740654, -0.09703702479600906, -0.02149154618382454, 0.021937351673841476, -0.017237817868590355, -0.018835287541151047, 0.003638423979282379, 0.04409760609269142, -0.039528097957372665, -0.02256890945136547, 0.00022609543520957232, 0.026896938681602478, -0.03651891276240349, -0.016541246324777603, 0.0023404795210808516, 0.059998009353876114, 0.01363422255963087, -0.03599880635738373, -0.005591145716607571, 0.02204880304634571, -0.014655860140919685, 0.04974447935819626, 0.0034317746758461, 0.05063609033823013, 0.05290226638317108, -0.008419224992394447, 0.014470107853412628, -0.007755160331726074, 0.04725539684295654, 0.06642504036426544, -0.03540439531207085, 0.016903463751077652, 0.031466446816921234, 0.059477899223566055, 0.05100759491324425, 0.03363975137472153, 0.03637031093239784, -0.002846654737368226, 0.0024496091064065695, 0.020655659958720207, -0.05308802053332329, -0.014999502338469028, -0.07957630604505539, 0.00784339290112257, 0.024556459859013557, -0.015853961929678917, -0.048890016973018646, 0.045769378542900085, 0.04038256034255028, -0.005038532428443432, 0.022420307621359825, 0.07809028774499893, -0.07062304019927979, 0.01790652610361576, -0.0705115869641304, -0.013169840909540653, -0.07794168591499329, 0.009255110286176205, -0.017878662794828415, 0.01672699861228466, 0.040605463087558746, -0.03317536786198616, -0.00421657832339406, -0.020525634288787842, 0.002804860472679138, 0.010587884113192558, -0.0014140397543087602, -0.0711802989244461, 0.011107990518212318, -0.024760788306593895, -0.03209800645709038, 0.03863648697733879, -0.015138816088438034, 0.015092378482222557, 0.015120240859687328, -0.05156484991312027, -0.009450150653719902, -0.06854261457920074, 0.022457458078861237, 0.03447563573718071, -0.029924701899290085, -0.05446258932352066, -0.054313987493515015, 0.01615116558969021, 0.06828255951404572, -0.001173142110928893, 0.03414127975702286, -0.04955872520804405, 0.0015974701382219791, 0.025875302031636238, -0.027937153354287148, 0.01376424916088581, 0.02461218647658825, -0.002516944194212556, -0.010513583198189735, 0.03029620833694935, -0.03529294580221176, 0.04770120233297348, -0.025856725871562958, -0.0018273387104272842, -0.08262263983488083, 0.05383102968335152, 0.033825501799583435, 0.035125769674777985, -0.029367445036768913, 0.008307773619890213, 0.043168846517801285, -0.02438928373157978, 0.03414127975702286, -0.010114215314388275, 0.002681799465790391, 0.002454252913594246, -0.07274062186479568, -0.03637031093239784, -0.03521864488720894, -0.0312621183693409, -0.03937949612736702, -0.07794168591499329, -0.011767410673201084, 0.030426234006881714, 0.0497073270380497, -0.02000552788376808, 0.016559822484850883, -0.03081631474196911, 0.022698936983942986, -0.010717910714447498, -0.0010268621845170856, 0.018584521487355232, -0.03293389081954956, -0.06876552104949951, -0.018278030678629875, -0.01322556659579277, 0.028884489089250565, 0.008860386908054352, -0.00744866905733943, 0.010169941000640392, 0.04435766115784645, -0.06085246801376343, 0.018742412328720093, 0.01088508777320385, -0.02541092038154602, -0.03715046867728233, 0.017163516953587532, 0.0773472785949707, 0.031280696392059326, -0.015640348196029663, -0.01423791702836752, -0.010652896948158741, 0.006965713109821081, -0.024036353453993797, 0.022234555333852768, 0.0020839092321693897, 0.028364382684230804, -0.0010239598341286182, -0.03963955119252205, 0.047849804162979126, 0.01590968854725361, 0.013467044569551945, 0.04179427772760391, 0.0018517186399549246, -0.08581758290529251, -0.04350319877266884, 0.0029581061098724604, -0.03298961743712425, -0.03007330559194088, -0.05423968657851219, 0.010838649235665798, -0.02797430381178856, -0.08083941787481308, -0.018463782966136932, -0.03724334388971329, 0.028847338631749153, 0.021064316853880882, -0.025318045169115067, -0.032748136669397354, 0.028457259759306908, -0.014256492257118225, -0.021695874631404877, 0.003910087049007416, 0.029144542291760445, 0.018835287541151047, 0.0024960471782833338, 0.0025866013020277023, 0.026376832276582718, -0.06419601291418076, 0.05397963151335716, -0.010931525379419327, 0.008451731875538826, -0.03206085413694382, -0.015482458285987377, -0.03178222477436066, 0.03343542292714119, 0.06044381484389305, 0.04179427772760391, -0.04926152154803276, -0.0011034850031137466, 0.0799478068947792, -0.02797430381178856, 0.01830589398741722, -0.02617250569164753, 0.014823037199676037, -0.03258096054196358, -0.06137257441878319, -0.00064084556652233, 0.01075506117194891, 0.0007801598403602839, -0.03181937709450722, -0.009431575424969196, 0.0394909493625164, -0.011758123524487019, -0.024705061689019203, -0.043168846517801285, -0.013076964765787125, 0.015436019748449326, -0.03807923197746277, -0.017934389412403107, 0.006515263579785824, 0.004550932440906763, 0.008572470396757126, -0.04491491615772247, 0.002273144433274865, -0.04855566471815109, 0.030723437666893005, -0.044469110667705536, -0.0026980529073625803, 0.05498269572854042, 0.034085556864738464, 0.00836349930614233, 0.011962451040744781, -0.006180909462273121, 0.045769378542900085, -0.008349567651748657, -0.026581160724163055, 0.016652697697281837, 0.023014714941382408, -0.05360812693834305, -0.029144542291760445, -0.017284255474805832, -0.01970832422375679, -0.06315580010414124, 0.0066592213697731495, -0.04554647579789162, -0.027658523991703987, -0.03659321367740631, -0.027026966214179993, 0.022940414026379585, 0.03419700637459755, -0.009194741025567055, 0.028865914791822433, -0.024445008486509323, -0.02128721959888935, 0.0368904173374176, 0.010606459341943264, 0.08960693329572678, -0.02667403593659401, -0.003192618489265442, -0.04543502256274223, 0.030983490869402885, -0.05676591768860817, -0.05048748850822449, 0.06709374487400055, -0.009125083684921265, -0.05074753984808922, -0.05658016353845596, -0.04948442429304123, 0.02485366351902485, 0.03754054754972458, 0.03414127975702286, -0.002879161387681961, -0.059700801968574524, 0.0466238372027874, 0.07957630604505539, 0.03423415869474411, 0.015129528939723969, -0.08923542499542236, 0.007652996573597193, 0.026822637766599655, 0.010513583198189735, 0.0002967683831229806, 0.0007319803116843104, 0.04335459694266319, 0.03391837701201439, -0.014098603278398514, 0.07883329689502716, -0.012138916179537773, 0.01126587949693203, -0.04848136380314827, 0.07040014117956161, 0.020377032458782196, -0.019634023308753967, -0.02823435701429844, 0.009357274509966373, -0.007072520442306995, 0.03919374570250511, -0.017414283007383347, -0.027361320331692696, -0.02489081397652626, 0.026135355234146118, 0.004325707908719778, 0.013318442739546299, 0.04744114726781845, -0.04413475841283798, 0.01686631329357624, 0.004848136100918055, -0.04123701900243759, 0.07132890075445175, 0.03661178797483444, -0.010940813459455967, -0.016615547239780426, -0.04350319877266884, 0.06512477248907089, 0.009231891483068466, -0.030017578974366188, 0.05828908458352089, -0.04276018962264061, -0.005484337918460369, -0.03219088166952133, -0.015640348196029663, 0.02977610006928444, -0.037707727402448654, 0.025503797456622124, -0.021955927833914757, 0.12460267543792725, -0.0362217091023922, -0.02698981575667858, 0.02929314412176609, -0.04067976400256157, -0.02721271850168705, 0.03707616776227951, 0.024556459859013557, 0.02152869664132595, 0.038227833807468414, 0.034327033907175064, -0.02227170579135418, 0.03137357160449028, 0.018900301307439804, 0.02877303771674633, 0.045249272137880325, -0.015380294062197208, 0.06746525317430496, 0.0038404297083616257, 0.07742157578468323, 0.03908229246735573, -0.036128830164670944, 0.05082184076309204, 0.0010019016917794943, 0.04818416014313698, -0.04246298596262932, 0.058994945138692856, -0.009668409824371338, 0.023646272718906403, -0.033026766031980515, -0.026302531361579895, 0.0890125259757042, -0.08522317558526993, -0.0076112025417387486, 0.046995341777801514, 0.03206085413694382, -0.020859988406300545, 0.011182291433215141, -0.01542673259973526, 0.012101765722036362, -0.029887551441788673, -0.07192330807447433, 0.0004365180211607367, 0.03497716784477234, -0.0015556758735328913, 0.04145992174744606, -0.029441745951771736, -0.03568302467465401, -0.07415233552455902, 0.012176066637039185, -0.09094434976577759, 0.016977764666080475, 0.02282896265387535, 0.0008805821998976171, 0.031485021114349365, -0.03889654204249382, 0.013448469340801239, -0.037670575082302094, 0.004787766840308905, 0.04595512896776199, -0.018203729763627052, 0.013169840909540653, 0.07181185483932495, 0.039751000702381134, -0.0072071910835802555, 0.011720973066985607, 0.06311864405870438, -0.004978162702172995, -0.0425744391977787, 0.02617250569164753, 0.0021338299848139286, -0.05643156170845032, -0.04075406491756439, -0.006766029167920351, 0.0026794776786118746, 0.052233558148145676, -0.020339882001280785, 0.023219043388962746, 0.05371957644820213, -0.04981878027319908, -0.0016740929568186402, -0.018213016912341118, 0.009937750175595284, -0.032525233924388885, -0.06326724588871002, 0.004852780140936375, -0.020562784746289253, 0.013532058335840702, -0.025225168094038963, 0.02620965614914894, 0.007132890168577433, -0.01776721142232418, -0.026525434106588364, -0.02251318469643593, 0.04205433279275894, 0.029348870739340782, 0.0056004333309829235, -0.00057641277089715, 0.07248056679964066, -0.037726301699876785, 0.012807624414563179, -0.01630905643105507, 0.0274541974067688, 0.003380692796781659, 0.0138478372246027, 0.0331382192671299, 0.004539323039352894, 0.007662284187972546, 0.00500138197094202, 0.02879161387681961, 0.01774863712489605, 0.006385236978530884, 0.024946540594100952, 0.049150072038173676, -0.009385136887431145, -0.014665147289633751, -0.041088417172431946, -0.042611587792634964, -0.05754607543349266, 0.03711332008242607, -0.03376977518200874, 0.033584024757146835, 0.03445706143975258, 0.0021431175991892815, 0.011368043720722198, 0.0036430677864700556, -0.03454993665218353, 0.010374268516898155, -0.0014953063800930977, 0.04692104086279869, 0.016819875687360764, -0.01568678580224514, 0.053793877363204956, 0.036147408187389374, 0.012649734504520893, 0.03063056245446205, 0.04688389226794243, 0.04409760609269142, -0.01047643180936575, -0.03982530161738396, 0.016336917877197266, 0.0631929486989975, 0.026098204776644707, -0.03963955119252205, 0.012686884962022305, 0.011442344635725021, -0.006673153024166822, -0.04428336024284363, 0.020934289321303368, -0.0013350950321182609, 0.0518249049782753 ]
20,273
start_sdk.cf_img
post
Issue httpx [POST](https://developers.cloudflare.com/images/cloudflare-images/upload-images/upload-via-url/) request to upload image.
def post(self, img_id: str, img: bytes, *args, **kwargs) -> httpx.Response: """Issue httpx [POST](https://developers.cloudflare.com/images/cloudflare-images/upload-images/upload-via-url/) request to upload image.""" # noqa: E501 return self.client.post( url=self.base_api, headers=self.headers, data={"id": img_id}, files={"file": (img_id, img)}, *args, **kwargs, )
(self, img_id: str, img: bytes, *args, **kwargs) -> httpx.Response
[ -0.03724280744791031, -0.036384936422109604, -0.022043565288186073, 0.0538594052195549, -0.05206906422972679, -0.03153609856963158, -0.0061869313940405846, 0.07765601575374603, 0.009096234105527401, -0.028104612603783607, 0.013623370788991451, 0.0179127287119627, -0.0360865481197834, -0.028179211542010307, -0.011702485382556915, -0.01997348479926586, -0.0064200484193861485, 0.02517666108906269, -0.011963576078414917, 0.007361842319369316, -0.010704743675887585, 0.029671160504221916, 0.050950102508068085, -0.0359560027718544, 0.05964071303606033, 0.035676259547472, 0.06038668751716614, -0.04345305263996124, -0.004335980396717787, -0.038193926215171814, 0.008443506434559822, -0.017138779163360596, 0.02346091903746128, 0.021875720471143723, -0.038716111332178116, -0.004363954532891512, -0.011152327992022038, -0.013800540007650852, -0.052852340042591095, 0.004937422927469015, -0.021950319409370422, -0.016560647636651993, 0.06769724190235138, -0.04132702201604843, -0.006135645322501659, 0.025848038494586945, -0.027246741577982903, -0.024113645777106285, 0.009623079560697079, -0.010042690671980381, -0.028981134295463562, -0.0358627550303936, -0.01963779516518116, -0.00401194766163826, 0.047406721860170364, 0.04087943583726883, -0.018854521214962006, -0.036608729511499405, -0.00032199316774494946, -0.008443506434559822, -0.005454943049699068, -0.013343630358576775, 0.047481317073106766, -0.047220226377248764, -0.030044149607419968, 0.008816493675112724, -0.05053981393575668, 0.010518249124288559, -0.04957004636526108, -0.02168922685086727, -0.0363103412091732, -0.03403511643409729, 0.05180797353386879, 0.031013917177915573, 0.00895636435598135, 0.016914986073970795, 0.02666861191391945, 0.007254608441144228, 0.04237138852477074, 0.04285627231001854, 0.004004953894764185, -0.0357695072889328, 0.018789248540997505, -0.008224375545978546, 0.006900270003825426, 0.018957093358039856, -0.00818707700818777, -0.045579079538583755, -0.11092650145292282, -0.016896337270736694, 0.013539448380470276, 0.0019465289078652859, -0.027768924832344055, -0.04889867082238197, 0.02146543376147747, 0.041998401284217834, 0.0271161962300539, 0.016448751091957092, -0.008881766349077225, 0.015478984452784061, -0.06870430707931519, 0.011012458242475986, -0.0026249000802636147, -0.01606643944978714, 0.07023356109857559, -0.04964464530348778, 0.03785823658108711, -0.03213287889957428, -0.05221825838088989, 0.00813112873584032, 0.058036867529153824, -0.02303198166191578, -0.025493700057268143, 0.014956801198422909, 0.014350696466863155, -0.007249945774674416, -0.002022291999310255, -0.03823122754693031, 0.032934803515672684, 0.01582399755716324, -0.043863337486982346, -0.08049071580171585, -0.017213376238942146, 0.020383771508932114, 0.009459896944463253, -0.010909886099398136, 0.016392802819609642, 0.023964451625943184, -0.06020019203424454, -0.05001763254404068, -0.01939535327255726, 0.04349035024642944, 0.004142493009567261, 0.07989393919706345, -0.04308006539940834, 0.05747738480567932, 0.005478254985064268, 0.023610113188624382, 0.027545131742954254, 0.016942961141467094, 0.04281897470355034, -0.016672544181346893, -0.045467182993888855, 0.03724280744791031, 0.027675677090883255, -0.03897720202803612, -0.03233802318572998, 0.004508487414568663, -0.0177728570997715, 0.005357034038752317, -0.04475850984454155, 0.040208060294389725, 0.036795224994421005, 0.04848838225007057, 0.040021564811468124, -0.052852340042591095, 0.04114053025841713, -0.012970643118023872, -0.0029629201162606478, 0.04520609229803085, -0.002487360965460539, -0.025978583842515945, 0.07381424307823181, -0.005571501795202494, 0.011394769884645939, -0.02480367384850979, -0.0023649742361158133, 0.036478184163570404, 0.02137218788266182, 0.03942478448152542, -0.025642896071076393, -0.061766739934682846, -0.015460334718227386, -0.04628775641322136, 0.025512348860502243, 0.036534134298563004, 0.005571501795202494, 0.04274437576532364, -0.029559265822172165, 0.023777958005666733, 0.004552779719233513, 0.007566985208541155, 0.061542950570583344, 0.016579298302531242, -0.05027872323989868, -0.007632258348166943, -0.01578669808804989, 0.04975654184818268, 0.0090542733669281, -0.0012401837157085538, 0.0360119491815567, 0.014042981900274754, 0.033326439559459686, -0.020066730678081512, 0.02154003269970417, 0.006485321559011936, -0.007930648513138294, -0.04322925955057144, 0.06437765806913376, 0.0013439208269119263, -0.018425585702061653, -0.033307790756225586, 0.025922635570168495, 0.016635244712233543, 0.036366287618875504, 0.026743208989501, -0.021875720471143723, 0.0030072121880948544, -0.06836862117052078, -0.014891528524458408, 0.0045481170527637005, -0.0181271955370903, -0.072471484541893, 0.03750390186905861, -0.02862679585814476, -0.033046700060367584, -0.011916953139007092, 0.04285627231001854, -0.009236104786396027, 0.0010682597057893872, 0.03382997214794159, 0.018537482246756554, -0.0019383698236197233, -0.010536898858845234, 0.029671160504221916, -0.004867487587034702, 0.017446493729948997, -0.002925621345639229, -0.01617833599448204, -0.0012436804827302694, -0.054530784487724304, -0.0037834926042705774, 0.04177460819482803, -0.0033009399194270372, 0.028925186023116112, -0.013306331820786, -0.018518833443522453, -0.018192468211054802, 0.00011007504508597776, 0.03440810367465019, -0.004564435221254826, -0.009166169911623001, -0.0008479639072902501, -0.026221025735139847, -0.07295636832714081, 0.02310658060014248, 0.009613754227757454, 0.009632403962314129, 0.007846726104617119, -0.042222194373607635, 0.04695913568139076, -0.06255001574754715, -0.004280032590031624, 0.02167057804763317, 0.025493700057268143, 0.06881620734930038, 0.017213376238942146, 0.0009517010767012835, 0.012728201225399971, 0.02140948735177517, -0.013903111219406128, -0.01062082126736641, -0.0015945218037813902, 0.04281897470355034, -0.07601486891508102, -0.020514316856861115, -0.026388870552182198, 0.03879070654511452, 0.0018812560010701418, 0.006690464448183775, 0.10891237109899521, 0.014956801198422909, -0.03064092807471752, -0.01933940500020981, 0.016914986073970795, -0.03798878565430641, 0.01629955694079399, 0.010536898858845234, -0.03437080606818199, -0.06236352026462555, 0.01631820574402809, -0.036664679646492004, 0.04472120851278305, 0.009156844578683376, -0.05218096077442169, 0.012756174430251122, 0.001150433556176722, 0.08108749985694885, -0.013772565871477127, -0.06251271814107895, -0.024635829031467438, 0.07810359448194504, -0.03235667198896408, 0.011814380995929241, -0.06363167613744736, -0.03780229017138481, -0.0715017169713974, -0.009366650134325027, -0.006149632390588522, -0.029279524460434914, -0.05143498629331589, 0.0176609605550766, 0.0357695072889328, -0.03259911388158798, -0.04266977682709694, -0.029708459973335266, -0.029745759442448616, -0.02530720643699169, -0.06437765806913376, -0.03811933100223541, 0.024523932486772537, 0.013651344925165176, -0.06508632749319077, -0.043527647852897644, 0.03983507305383682, -0.07321745902299881, 0.030995266512036324, -0.03767174482345581, 0.01776353269815445, 0.008648648858070374, -0.015497633256018162, -0.024318790063261986, -0.022435203194618225, -0.007590297143906355, 0.08444438874721527, 0.020644862204790115, 0.0704946517944336, -0.033195894211530685, 0.05688060447573662, 0.049234360456466675, 0.04285627231001854, 0.060237493366003036, -0.000687113031744957, 0.012728201225399971, 0.032972101122140884, -0.09376907348632812, -0.0001729438517941162, -0.05714169517159462, -0.007711518090218306, 0.026500767096877098, -0.04591476917266846, 0.013996358960866928, 0.07366504520177841, 0.02485962212085724, 0.03879070654511452, 0.030044149607419968, -0.023964451625943184, -0.03739200532436371, 0.00012493626854848117, 0.06116996333003044, -0.03735470399260521, -0.04886137321591377, -0.004289356991648674, -0.07884956896305084, 0.009436585940420628, 0.004424565006047487, -0.0021062141750007868, 0.0265380647033453, 0.013035915791988373, -0.0543069913983345, 0.020868655294179916, -0.0267618577927351, -0.0356576107442379, 0.02513936161994934, 0.02495286799967289, -0.015562905929982662, 0.029652511700987816, -0.03356888145208359, -0.016728492453694344, 0.03957398235797882, -0.017157427966594696, 0.0007984265103004873, -0.04979383945465088, 0.019358055666089058, 0.03953668102622032, 0.015003425069153309, 0.015059373341500759, -0.024523932486772537, 0.025680193677544594, 0.033419687300920486, 0.0003665768599603325, -0.007580972276628017, 0.0034571285359561443, 0.0033265829551965, 0.022211410105228424, -0.03047308512032032, -0.005398995243012905, 0.03746660053730011, -0.0010933198500424623, 0.013651344925165176, 0.005977125838398933, -0.00808916799724102, -0.011543964967131615, -0.01629955694079399, -0.040543749928474426, -0.08325082808732986, 0.0018369638128206134, 0.008630000054836273, 0.010378379374742508, -0.014080280438065529, -0.01532046403735876, 0.05702979862689972, -0.012038174085319042, 0.038828007876873016, 0.03431485593318939, 0.06079697236418724, -0.07549268752336502, -0.05691790208220482, 0.020309172570705414, -0.04680994153022766, -0.011217601597309113, -0.015413711778819561, -0.040170762687921524, 0.00895636435598135, 0.014611788094043732, 0.04132702201604843, -0.03886530548334122, -0.03019334375858307, -0.06993517279624939, -0.040431853383779526, 0.007795440033078194, 0.05184527114033699, 0.01423880085349083, 0.016467401757836342, -0.0893678218126297, -0.0534491203725338, -0.009385299868881702, 0.0028160561341792345, -0.028309756889939308, -0.0355270653963089, 0.012401836924254894, 0.07478401064872742, -0.00008202812750823796, 0.03198368474841118, 0.018807897344231606, -0.03916369378566742, -0.01242981106042862, 0.029410069808363914, 0.09854331612586975, 0.05240475386381149, -0.026743208989501, -0.03010009601712227, -0.014742333441972733, -0.02868274413049221, 0.04084213823080063, 0.02484097145497799, 0.01081663928925991, -0.0026015883777290583, -0.016672544181346893, -0.03893990069627762, 0.06642908602952957, -0.020010782405734062, 0.025885337963700294, 0.042072996497154236, -0.031275007873773575, -0.04964464530348778, -0.03360617905855179, -0.04446011781692505, -0.010611495934426785, -0.004734611138701439, -0.019068989902734756, -0.025885337963700294, -0.003813797840848565, -0.005091280210763216, -0.018677351996302605, 0.0015747068682685494, 0.06601879745721817, -0.01610373891890049, 0.047220226377248764, -0.018929118290543556, 0.04688453674316406, 0.026314273476600647, -0.013828514143824577, 0.029093030840158463, 0.007995921187102795, 0.05732819065451622, 0.005711372010409832, 0.011767758056521416, -0.0031424202024936676, -0.019152911379933357, 0.08705529570579529, -0.025717493146657944, 0.020253224298357964, -0.013931085355579853, -0.0358254574239254, -0.02521396055817604, 0.030864721164107323, 0.015367087908089161, 0.059827204793691635, -0.022472500801086426, 0.049234360456466675, -0.04431092366576195, -0.02306928113102913, 0.03047308512032032, -0.011422744020819664, -0.018733300268650055, -0.0355084165930748, -0.06997247040271759, -0.014490567147731781, -0.06497443467378616, -0.006569243501871824, -0.008485467173159122, -0.024617180228233337, 0.04136432334780693, 0.014891528524458408, -0.0011778248008340597, -0.018938444554805756, -0.0022484157234430313, -0.003930356353521347, -0.041700009256601334, -0.051061999052762985, -0.03686982020735741, -0.022826839238405228, 0.009189480915665627, 0.03355023264884949, 0.013474175706505775, 0.009595105424523354, -0.006974867545068264, -0.09250091761350632, -0.08727908879518509, 0.016933634877204895, -0.031330954283475876, 0.03444540128111839, -0.002631893614307046, 0.038641512393951416, 0.06113266199827194, -0.03170394524931908, -0.0057206968776881695, 0.04446011781692505, 0.047220226377248764, -0.03263641148805618, -0.013119838200509548, 0.043863337486982346, -0.04270707815885544, -0.03455729782581329, -0.010947185568511486, 0.0035550377797335386, -0.025456402450799942, -0.029577914625406265, -0.017129454761743546, -0.020085381343960762, 0.01618766039609909, 0.006569243501871824, 0.002937277080491185, -0.022024916484951973, 0.007678881753236055, 0.03371807560324669, -0.022770890966057777, -0.0176889356225729, -0.054381586611270905, 0.023964451625943184, 0.024094996973872185, 0.007268595043569803, 0.03696306794881821, -0.027134845033288002, 0.10227318853139877, 0.00992146972566843, -0.056209225207567215, -0.04777970910072327, -0.06531012058258057, -0.031405553221702576, 0.058409854769706726, 0.045317988842725754, -0.01635550521314144, -0.04099133238196373, 0.0350608304142952, 0.043602246791124344, 0.0017938370583578944, 0.006834997329860926, -0.059752609580755234, -0.01577737368643284, -0.01173045951873064, 0.014649086631834507, -0.024225542321801186, -0.02512071281671524, 0.038604214787483215, 0.022658994421362877, 0.021763823926448822, 0.04039455205202103, -0.007515699602663517, -0.01599184237420559, 0.04039455205202103, -0.001067094155587256, -0.008280323818325996, -0.06471334397792816, -0.040133461356163025, 0.02114839479327202, -0.008760545402765274, 0.01067676953971386, -0.02359146438539028, -0.038753408938646317, -0.009506520815193653, 0.04270707815885544, -0.0008887594449333847, -0.0362916924059391, 0.015572231262922287, -0.02482232265174389, -0.016821740195155144, 0.020253224298357964, -0.03897720202803612, 0.1424066573381424, -0.043415751308202744, -0.03045443445444107, 0.013073214329779148, 0.016439426690340042, 0.05229285731911659, -0.05031602457165718, 0.015367087908089161, 0.07377693802118301, -0.011954251676797867, -0.027526482939720154, -0.0019115613540634513, 0.015758724883198738, 0.027339989319443703, -0.06064777821302414, 0.011982225812971592, -0.033065348863601685, 0.0726206824183464, -0.0013229403411969543, 0.018556131049990654, 0.003475777804851532, -0.04513149708509445, 0.021707875654101372, 0.005039994604885578, 0.07698463648557663, 0.027899470180273056, 0.00043855179683305323, 0.02297603338956833, -0.026743208989501, -0.020159978419542313, -0.05001763254404068, 0.06262461096048355, 0.01518059428781271, -0.00024244192172773182, 0.08638392388820648, 0.028999783098697662, 0.0266499612480402, 0.03047308512032032, -0.005091280210763216, 0.01965644583106041, 0.04617585986852646, 0.018714651465415955, -0.040357254445552826, 0.02297603338956833, 0.03181583806872368, 0.09899090230464935, -0.029633862897753716, -0.04285627231001854, -0.00451548071578145, -0.03463189676403999, -0.0067044515162706375, 0.040431853383779526, 0.0353592224419117, -0.01965644583106041, 0.04255788028240204, 0.006135645322501659, 0.008378232829272747, -0.007357179652899504, -0.08190806955099106, 0.024001749232411385, 0.0541204959154129, -0.014938152395188808, 0.03987237066030502, -0.02301333285868168, -0.09660378098487854, -0.0036342975217849016, 0.030006850138306618, -0.10391433537006378, -0.024300139397382736, 0.015171268954873085, -0.008905078284442425, -0.026482118293642998, -0.06836862117052078, 0.022341955453157425, 0.031144462525844574, 0.02842165343463421, 0.01637415401637554, -0.0267618577927351, -0.020626213401556015, 0.047332122921943665, -0.011721134185791016, -0.0359746515750885, 0.04833918809890747, 0.0027507832273840904, -0.020812707021832466, 0.013968384824693203, 0.05773847550153732, -0.033401038497686386, -0.029783057048916817, -0.012886720709502697, 0.031051214784383774, 0.01939535327255726, 0.04162541404366493, 0.003499089740216732, 0.01443461887538433, 0.051173895597457886, -0.04117782786488533, 0.012280615977942944, -0.050838205963373184, 0.003375537460669875, -0.0006247541750781238, -0.049308955669403076, 0.021950319409370422, -0.009329351596534252, 0.006270853336900473, 0.033251840621232986, 0.005995775107294321, 0.02480367384850979, 0.11726729571819305, -0.01586129702627659, -0.01785678043961525, 0.02834705449640751, 0.02896248549222946, 0.043975234031677246, -0.0357508584856987, 0.08347462117671967, -0.006597217638045549, 0.003722882131114602, -0.031163111329078674, 0.015059373341500759, 0.018239092081785202, 0.014835580252110958, 0.025810739025473595, -0.05143498629331589, 0.012317914515733719, -0.03709361329674721, 0.014453268609941006, 0.030808772891759872, -0.021036498248577118, -0.011888979002833366, 0.020234575495123863, 0.03052903339266777, -0.018341664224863052, -0.045653678476810455, -0.09645458310842514, -0.009287390857934952, 0.07605216652154922, 0.008480804972350597, 0.025400454178452492, 0.015796024352312088, 0.0005000364617444575, -0.04106593132019043, 0.0006224230164662004, -0.05941691994667053, 0.05538865551352501, 0.018658703193068504, 0.06620529294013977, 0.011282874271273613, -0.02842165343463421, 0.033102646470069885, 0.054493483155965805, -0.023628761991858482, -0.00036220590118318796, 0.0533745214343071, 0.04464661329984665, -0.009180156514048576, -0.04132702201604843, 0.02306928113102913, 0.038828007876873016, -0.027768924832344055, -0.010508924722671509, 0.005855904892086983, 0.029876304790377617, -0.049346257001161575, -0.007497050333768129, 0.009707001969218254, 0.021931668743491173, 0.04889867082238197 ]
20,274
start_sdk.cf_img
upsert
Ensures a unique id name by first deleting the `img_id` from storage and then uploading the `img`.
def upsert(self, img_id: str, img: bytes) -> httpx.Response: """Ensures a unique id name by first deleting the `img_id` from storage and then uploading the `img`.""" self.delete(img_id) return self.post(img_id, img)
(self, img_id: str, img: bytes) -> httpx.Response
[ -0.03539111465215683, -0.06037626415491104, -0.1002296581864357, 0.055245544761419296, 0.02099258452653885, -0.02081192657351494, -0.020902255550026894, 0.03376518189907074, 0.003809648333117366, 0.004216131288558245, -0.012329981662333012, -0.02283530682325363, -0.013802353292703629, -0.009312975220382214, -0.001702711801044643, -0.05770250782370567, 0.01490437425673008, 0.006503726821392775, -0.0003918043803423643, -0.05228273570537567, -0.008585822768509388, 0.0158167015761137, 0.06977053731679916, -0.03714350610971451, 0.05983428657054901, 0.016286415979266167, 0.11432106047868729, -0.05098199099302292, 0.0035047861747443676, -0.017198743298649788, 0.029031913727521896, -0.04187677428126335, 0.07645492255687714, 0.050042565912008286, 0.010198204778134823, -0.019980894401669502, -0.004791982006281614, 0.016756128519773483, -0.0632668063044548, -0.00042624250636436045, -0.0369628481566906, -0.0008846649434417486, 0.03793840482831001, -0.0570521354675293, 0.01291712373495102, 0.08866747468709946, -0.0395643375813961, -0.00897875614464283, 0.024659963324666023, 0.010288534685969353, -0.02588844485580921, -0.008558724075555801, -0.019836366176605225, 0.004552608821541071, 0.015617976896464825, 0.018354961648583412, -0.0011788004776462913, -0.007795439101755619, -0.029953274875879288, -0.009051019325852394, 0.020360277965664864, -0.04043150320649147, 0.019077599048614502, -0.033476125448942184, -0.0014802752994000912, 0.002235656138509512, -0.057377323508262634, 0.02370247058570385, 0.005871419794857502, -0.0005518569960258901, -0.0011641219025477767, -0.05640176311135292, 0.03866104409098625, -0.00039152210229076445, -0.01704518310725689, 0.05622110515832901, 0.0006763424025848508, 0.01490437425673008, 0.041768379509449005, 0.030766241252422333, 0.03342192992568016, -0.056148841977119446, 0.03109142743051052, -0.016665799543261528, -0.04328591376543045, 0.021986208856105804, 0.010713083669543266, -0.05708826705813408, -0.08418712764978409, -0.04848889634013176, 0.03981725871562958, 0.03680025413632393, -0.026105236262083054, -0.03250056877732277, 0.0640617087483406, 0.0029560341499745846, 0.008084493689239025, -0.04252714663743973, 0.02802022360265255, -0.03177793323993683, -0.05069293826818466, 0.022961769253015518, 0.06055692210793495, -0.03902235999703407, 0.019312454387545586, -0.04993416741490364, 0.05983428657054901, -0.021642956882715225, -0.034397486597299576, 0.00030599129968322814, 0.043900154531002045, -0.04035923629999161, -0.08382581174373627, 0.024822557345032692, 0.030224263668060303, -0.06937308609485626, 0.02045060694217682, -0.001048387261107564, 0.03743256255984306, -0.018463358283042908, -0.03269929438829422, -0.0891733169555664, -0.03934754803776741, 0.01599736139178276, 0.049139268696308136, -0.025635523721575737, 0.03790227323770523, 0.038335856050252914, -0.035644035786390305, -0.06297775357961655, -0.03844425082206726, 0.0019386977655813098, -0.013865584507584572, 0.04953671991825104, -0.023070164024829865, -0.013721057213842869, 0.023250823840498924, 0.009041986428201199, 0.04686296358704567, 0.012582904659211636, 0.018752412870526314, -0.025382600724697113, -0.04892247915267944, 0.03589695692062378, 0.034216828644275665, -0.012673234567046165, -0.05947296693921089, -0.0195834431797266, 0.023052098229527473, -0.030242329463362694, -0.005284278187900782, 0.027171125635504723, 0.03156113997101784, 0.031037230044603348, 0.00018319959053769708, -0.042491015046834946, 0.02008928917348385, -0.04765786603093147, 0.0005656887078657746, -0.008409679867327213, 0.039600469172000885, -0.029357099905610085, 0.09285876899957657, -0.01617802120745182, -0.019077599048614502, -0.0330425463616848, -0.02063126675784588, 0.07999584078788757, 0.020197683945298195, 0.04574287682771683, -0.044803451746702194, -0.01740650273859501, -0.023828933015465736, -0.04567061364650726, 0.03858877718448639, 0.011417653411626816, -0.009728491306304932, 0.020035091787576675, -0.004593256860971451, 0.03398197144269943, 0.00005366844925447367, 0.013657825998961926, 0.046935226768255234, 0.024858688935637474, 0.00664373766630888, 0.0025247104931622744, 0.0007062640506774187, 0.07855056971311569, 0.05871419981122017, 0.016801293939352036, 0.054486777633428574, 0.02874285914003849, -0.010631786659359932, 0.013549430295825005, 0.05813609063625336, 0.04025084152817726, -0.006621154956519604, -0.04433373734354973, 0.010207237675786018, 0.043032992631196976, -0.00359511561691761, -0.026177499443292618, 0.03970886394381523, 0.01918599382042885, 0.046068064868450165, 0.00808901060372591, 0.004651971161365509, 0.02081192657351494, -0.025906512513756752, 0.012637102045118809, 0.004471312277019024, -0.008915525861084461, -0.04899474233388901, 0.03721576929092407, 0.0391668863594532, -0.07341984659433365, 0.007072802633047104, 0.03372905030846596, 0.018896939232945442, 0.006765682250261307, 0.03123595379292965, 0.015428285114467144, 0.01158024650067091, -0.017280040308833122, -0.0013052618596702814, 0.013675891794264317, 0.0015593136195093393, 0.01095697283744812, -0.025382600724697113, 0.024172184988856316, -0.01833689585328102, 0.012104158289730549, 0.06651867181062698, 0.0071676489897072315, 0.018951136618852615, -0.020378343760967255, -0.014299166388809681, -0.039419811218976974, 0.026322027668356895, 0.008125142194330692, -0.0024185734800994396, 0.016756128519773483, 0.009891084395349026, 0.00006792358180973679, -0.04332204535603523, -0.031525008380413055, -0.0035409179981797934, 0.0220946054905653, -0.036023419350385666, -0.06575990468263626, 0.05065680667757988, -0.039058491587638855, -0.024714162573218346, 0.014172704890370369, 0.0366557277739048, 0.03898622840642929, -0.02135390229523182, 0.005604947917163372, 0.01797557808458805, -0.0005208062357269228, -0.026538819074630737, -0.03071204386651516, 0.011571213603019714, 0.06055692210793495, -0.11728387326002121, -0.03409036621451378, -0.008829711936414242, 0.07775566726922989, -0.017505863681435585, -0.0021419392433017492, 0.11323711276054382, 0.034361355006694794, -0.02010735496878624, -0.07208297401666641, 0.03446975350379944, -0.022203000262379646, 0.026141367852687836, 0.0213900338858366, -0.024533502757549286, -0.023576010018587112, 0.039275284856557846, -0.018824676051735878, 0.07045704126358032, -0.01563604362308979, -0.006955374497920275, 0.004557125270366669, 0.008829711936414242, 0.026285896077752113, -0.04577900841832161, -0.02997134067118168, -0.019529245793819427, 0.04863342270255089, -0.08606598526239395, 0.006603089161217213, -0.07623813301324844, 0.005726892501115799, -0.08808936923742294, 0.04830823838710785, 0.009737524203956127, -0.0016259317053481936, -0.04744107276201248, 0.04986190423369408, -0.024352842941880226, -0.04223809391260147, -0.008269669488072395, -0.05712439864873886, -0.024858688935637474, -0.00890197604894638, -0.05333055928349495, -0.003111852565780282, -0.01400107890367508, 0.012140289880335331, -0.07132420688867569, 0.0269182026386261, 0.05007869750261307, -0.02979068085551262, 0.01563604362308979, -0.02263658307492733, -0.0010969393188133836, 0.02332308702170849, 0.01167057640850544, -0.0008090139017440379, -0.037974536418914795, -0.014841143041849136, 0.05304150655865669, -0.04845276474952698, 0.03822746127843857, -0.004566158168017864, 0.020414475351572037, 0.04433373734354973, -0.03963660076260567, 0.011182797141373158, 0.02012542076408863, -0.007330242078751326, 0.024569634348154068, -0.06525405496358871, -0.012068026699125767, -0.06995119154453278, 0.03667379170656204, 0.059906549751758575, -0.0610627681016922, -0.03754095733165741, 0.05221047252416611, 0.032952215522527695, 0.01976410299539566, -0.011914466507732868, -0.020071223378181458, -0.041949037462472916, -0.014497891068458557, 0.01472371444106102, -0.036167945712804794, -0.024714162573218346, 0.024172184988856316, -0.03535498306155205, 0.08107979595661163, -0.0026014908216893673, -0.012682267464697361, -0.012176421470940113, 0.011381521821022034, -0.039275284856557846, -0.005894002504646778, -0.054522909224033356, -0.019475048407912254, -0.022040408104658127, -0.03067591041326523, 0.00664373766630888, 0.0026218148414045572, -0.02498514950275421, -0.035445310175418854, -0.04028697311878204, -0.04773012921214104, -0.013179079629480839, -0.06912016123533249, -0.019529245793819427, 0.052535660564899445, 0.003692219965159893, -0.0023846998810768127, -0.004918443504720926, -0.03345806151628494, -0.04870568588376045, 0.0076418789103627205, 0.029230639338493347, -0.010189171880483627, -0.012049959972500801, 0.023232758045196533, -0.010984071530401707, 0.008558724075555801, 0.0437917597591877, -0.012998420745134354, 0.007366373669356108, 0.017722655087709427, 0.006986989639699459, 0.01444369275122881, -0.025599390268325806, -0.02245592325925827, -0.047874655574560165, 0.024732228368520737, 0.010586622171103954, 0.000547058240044862, 0.016774196177721024, -0.007307659834623337, 0.03578856214880943, 0.015365054830908775, 0.042129695415496826, 0.028688661754131317, 0.01085761096328497, -0.05528167635202408, -0.05007869750261307, 0.017514897510409355, -0.04202130064368248, -0.027424048632383347, -0.017822017893195152, -0.01139055471867323, 0.005293311085551977, 0.025996841490268707, 0.04332204535603523, -0.013513298705220222, -0.03345806151628494, -0.06297775357961655, 0.04975350946187973, -0.024298645555973053, 0.06359199434518814, -0.04227422550320625, 0.05625723674893379, -0.10723923146724701, -0.02858026511967182, -0.014317232184112072, -0.05531780794262886, -0.020613200962543488, 0.0033896160311996937, 0.005473969969898462, 0.03938367962837219, 0.021769419312477112, 0.030639778822660446, 0.00854517426341772, -0.02798409014940262, 0.03284382075071335, -0.001912727952003479, 0.04126253351569176, 0.06268870085477829, 0.0038299723528325558, -0.02263658307492733, -0.03291608393192291, 0.006494693923741579, 0.014570154249668121, 0.01688259094953537, -0.0660850927233696, 0.04202130064368248, 0.034758806228637695, 0.007948999293148518, 0.10507132112979889, -0.026683345437049866, -0.007330242078751326, 0.013233277015388012, -0.016421910375356674, -0.027008531615138054, -0.0039609503000974655, -0.02297983504831791, -0.005636563058942556, -0.015554746612906456, -0.07609360665082932, 0.023431481793522835, -0.01535602193325758, 0.03880557045340538, 0.028453804552555084, -0.008653569966554642, 0.058822594583034515, 0.004184515681117773, 0.022347528487443924, -0.02297983504831791, -0.00808901060372591, -0.03461427986621857, -0.005853353999555111, 0.01345910131931305, -0.03829972445964813, 0.009981414303183556, 0.05997881293296814, 0.05752184987068176, 0.03750482574105263, -0.00700053945183754, 0.06290549039840698, -0.010433061979711056, -0.013314574025571346, -0.0032767041120678186, 0.016819359734654427, -0.024298645555973053, 0.010541456751525402, 0.007696076761931181, 0.0528247132897377, -0.013314574025571346, 0.0023846998810768127, -0.07927320152521133, -0.025761984288692474, 0.009611062705516815, -0.010153040289878845, -0.057955432683229446, -0.034018103033304214, -0.03230184316635132, -0.018553687259554863, -0.06351973116397858, 0.004394532181322575, -0.030133934691548347, -0.010125941596925259, 0.016421910375356674, 0.009195546619594097, -0.014877274632453918, -0.020685464143753052, -0.02223913185298443, -0.006535341963171959, 0.013531364500522614, -0.04754946753382683, -0.02223913185298443, -0.000010162073522224091, -0.003689961740747094, 0.06417010724544525, 0.040684424340724945, -0.02189587987959385, -0.02715305984020233, -0.02746018022298813, -0.04328591376543045, 0.000049222540837945417, -0.031506944447755814, 0.04162385314702988, 0.013865584507584572, -0.002545034745708108, 0.009728491306304932, -0.007845120504498482, -0.01410044077783823, 0.019456982612609863, 0.04689909517765045, -0.10449320822954178, -0.006783748511224985, -0.012646134942770004, -0.04079281911253929, 0.003696736413985491, 0.05152396857738495, 0.015554746612906456, -0.07266107946634293, -0.023792799562215805, -0.038191329687833786, -0.0064043644815683365, 0.0330425463616848, 0.04744107276201248, -0.010758248157799244, -0.026647213846445084, 0.03981725871562958, -0.0091639319434762, 0.009782688692212105, -0.009538799524307251, -0.05098199099302292, -0.01780395209789276, 0.041768379509449005, 0.016412876546382904, -0.03808293491601944, 0.006056595593690872, 0.027171125635504723, -0.0022446890361607075, -0.03992565721273422, -0.05304150655865669, -0.018571753054857254, 0.023286955431103706, 0.023268889635801315, 0.07146873325109482, 0.014299166388809681, -0.005690760910511017, 0.03909462317824364, -0.007881252095103264, -0.0053068604320287704, 0.05065680667757988, -0.058099959045648575, -0.01489534042775631, -0.024316711351275444, 0.02355794422328472, -0.049139268696308136, -0.04971737787127495, 0.022492054849863052, -0.02283530682325363, 0.008219988085329533, 0.02966422028839588, -0.018264632672071457, 0.0010890355333685875, 0.0106950169429183, 0.0401785783469677, 0.015482482500374317, -0.010180138982832432, -0.02657495066523552, 0.02942936308681965, 0.05766637623310089, -0.000764978292863816, 0.017993643879890442, -0.05922004580497742, 0.023792799562215805, 0.05137944221496582, -0.025021282956004143, 0.003924818243831396, 0.014199803583323956, 0.05607657879590988, -0.06196606159210205, -0.020739661529660225, -0.06435076147317886, 0.11518822610378265, -0.019637642428278923, -0.04133479669690132, 0.013522331602871418, 0.014994703233242035, 0.04133479669690132, -0.0845484510064125, 0.03363871946930885, 0.030224263668060303, -0.039239153265953064, -0.006697935052216053, 0.004514218773692846, -0.002099032746627927, 0.022943703457713127, -0.016268350183963776, 0.044442132115364075, -0.031543076038360596, 0.03938367962837219, -0.028291210532188416, -0.0010263693984597921, -0.011788005009293556, -0.03371098265051842, 0.017551029101014137, -0.0005092327482998371, 0.0013583304826170206, -0.018418192863464355, 0.03786614164710045, 0.0013210695469751954, -0.029158374294638634, -0.03931141644716263, -0.03793840482831001, -0.0036560881417244673, 0.022004274651408195, 0.03680025413632393, 0.07208297401666641, 0.028833188116550446, -0.006729550659656525, 0.04704362526535988, -0.018183335661888123, 0.05582365393638611, 0.044803451746702194, 0.015572812408208847, -0.04202130064368248, 0.03891396522521973, 0.03934754803776741, 0.08404260128736496, -0.017885249108076096, -0.04108187556266785, -0.024099919945001602, -0.02961002290248871, -0.025635523721575737, 0.03087463602423668, 0.058967120945453644, -0.0556429959833622, 0.028652530163526535, 0.020703529939055443, 0.020251883193850517, -0.03443361818790436, -0.10355377942323685, 0.024551568552851677, 0.0027889246121048927, -0.01886080764234066, 0.004299685824662447, 0.009683326818048954, -0.009547832421958447, 0.01905953325331211, 0.011164731346070766, -0.08866747468709946, -0.032753489911556244, 0.028995782136917114, -0.020360277965664864, -0.006725034210830927, -0.025599390268325806, 0.007280560676008463, 0.029573891311883926, -0.0045616417191922665, 0.03811906650662422, -0.030260395258665085, -0.00960202980786562, 0.07114354521036148, 0.006598572712391615, -0.034018103033304214, 0.038733307272195816, 0.0019793459214270115, -0.020035091787576675, 0.02874285914003849, 0.05333055928349495, -0.030079735442996025, -0.022672714665532112, -0.02639429084956646, 0.015879932790994644, -0.020522871986031532, 0.0025698754470795393, 0.026141367852687836, -0.02605103887617588, -0.00638178177177906, 0.0019093406153842807, 0.05376414209604263, -0.04053989797830582, -0.0062598371878266335, 0.007808988448232412, 0.0010969393188133836, 0.006291452329605818, -0.04332204535603523, -0.0009123283089138567, 0.030820438638329506, 0.0008778902119956911, 0.03257283195853233, 0.06041239574551582, -0.024352842941880226, 0.012339014559984207, 0.01723487675189972, 0.025816181674599648, 0.01672903075814247, 0.0278214979916811, 0.0984230637550354, -0.000051339640776859596, -0.0113002248108387, -0.028959650546312332, 0.012357081286609173, 0.01438046246767044, 0.01238417997956276, -0.0041687083430588245, -0.07154099643230438, -0.012266751378774643, -0.08042941987514496, 0.03287995234131813, -0.012519674375653267, 0.012339014559984207, 0.05278858169913292, 0.02727952040731907, 0.02858026511967182, -0.030025538057088852, -0.020053157582879066, -0.04227422550320625, -0.03123595379292965, 0.049283795058727264, -0.021877814084291458, 0.0229979008436203, -0.001456563826650381, 0.02800215780735016, -0.0377577468752861, -0.010062710382044315, -0.03481300547719002, 0.054125458002090454, -0.021137112751603127, 0.09293103218078613, -0.004089669790118933, -0.0492115318775177, 0.060087207704782486, 0.06818073242902756, 0.017740720883011818, -0.000858130631968379, 0.06149635091423988, 0.06955374777317047, -0.0409734770655632, -0.007470252923667431, 0.07407022267580032, 0.060051076114177704, 0.013323606923222542, -0.0030373306944966316, -0.04758559912443161, -0.018463358283042908, -0.016963887959718704, -0.03790227323770523, 0.011968663893640041, 0.02764083817601204, 0.04252714663743973 ]
20,275
start_sdk.cf_img
url
Generates url based on the Cloudflare hash of the account. The `variant` is based on how these are customized on Cloudflare Images. See also flexible variant [docs](https://developers.cloudflare.com/images/cloudflare-images/transform/flexible-variants/)
def url(self, img_id: str, variant: str = "public"): """Generates url based on the Cloudflare hash of the account. The `variant` is based on how these are customized on Cloudflare Images. See also flexible variant [docs](https://developers.cloudflare.com/images/cloudflare-images/transform/flexible-variants/) """ # noqa: E501 return "/".join([self.base_delivery, img_id, variant])
(self, img_id: str, variant: str = 'public')
[ 0.0011610409710556269, -0.03136950358748436, -0.025675786659121513, 0.03338753059506416, -0.027153270319104195, -0.039243411272764206, 0.008166701532900333, 0.009378418326377869, 0.03086499683558941, 0.0027274892199784517, -0.042342524975538254, 0.02825237438082695, 0.0009498914587311447, 0.011279327794909477, -0.018486564978957176, 0.012576630339026451, -0.029153278097510338, 0.0013232039054855704, 0.06954985111951828, -0.0016959531931206584, 0.025045152753591537, 0.016108177602291107, 0.024090193212032318, -0.012000051327049732, 0.02726137824356556, 0.052756983786821365, 0.059711966663599014, 0.0059865121729671955, -0.030360490083694458, -0.06382009387016296, 0.03787403553724289, -0.025279387831687927, 0.05736961588263512, 0.0635318011045456, -0.008954993449151516, -0.0086757130920887, 0.046919118613004684, -0.008148683235049248, -0.10825271904468536, 0.007648681290447712, 0.011261309497058392, 0.050306521356105804, 0.08569405972957611, -0.06284711509943008, -0.006121648009866476, 0.0575137622654438, -0.039747919887304306, 0.0003707786090672016, -0.07261292636394501, -0.060504764318466187, 0.03666682541370392, -0.010828875005245209, -0.02513524331152439, 0.004436955787241459, 0.00846850499510765, 0.004191459622234106, -0.010540585964918137, -0.03450465202331543, -0.0048423632979393005, 0.035621773451566696, -0.007121652364730835, -0.08360396325588226, -0.027459576725959778, -0.0173514261841774, 0.03385600075125694, 0.004792813211679459, -0.0400722436606884, 0.028306428343057632, -0.010270314291119576, -0.014639702625572681, 0.06583812087774277, 0.016000067815184593, -0.01062166690826416, -0.03693709522485733, -0.05679303780198097, 0.00674777664244175, 0.05340563505887985, 0.023297397419810295, 0.03338753059506416, -0.03787403553724289, 0.011387436650693417, -0.04389208182692528, 0.020468557253479958, -0.10414458811283112, 0.005770294927060604, -0.004729750100523233, 0.0007866024971008301, -0.05596420541405678, -0.04605425149202347, 0.008216251619160175, 0.0322704091668129, 0.013189245946705341, -0.08057691901922226, -0.04457676783204079, 0.03845061734318733, 0.03281095251441002, 0.017918996512889862, -0.015837905928492546, 0.06133359670639038, -0.00017370570276398212, 0.018198275938630104, -0.035099249333143234, 0.011261309497058392, 0.0031216349452733994, 0.009342382661998272, -0.10782027989625931, -0.01663070172071457, 0.013756816275417805, -0.044792983680963516, -0.0010061979992315173, 0.019657742232084274, 0.016279349103569984, -0.055495735257864, -0.04630650579929352, 0.046919118613004684, -0.0053693922236561775, 0.007297328673303127, -0.011315363459289074, 0.0023671272210776806, 0.02149558812379837, -0.0155496159568429, -0.04122540354728699, -0.05138760805130005, -0.003907674457877874, -0.0008125035092234612, -0.0002964539744425565, -0.06039665639400482, 0.0021993338596075773, -0.02825237438082695, -0.05841466411948204, -0.0028108227998018265, 0.05502726510167122, -0.07232463359832764, -0.014171232469379902, -0.014549612067639828, 0.0018277105409651995, 0.01315320935100317, 0.06111738085746765, 0.06317143887281418, 0.11264913529157639, 0.025783894583582878, -0.03517132252454758, -0.06814443320035934, -0.019873959943652153, 0.06911741197109222, -0.0028378500137478113, 0.05520744249224663, -0.0053333560936152935, -0.060684945434331894, -0.051063280552625656, 0.017216289415955544, 0.09131570905447006, 0.05989214777946472, 0.05135157331824303, -0.02219829335808754, -0.04908129200339317, 0.011684735305607319, 0.01109914667904377, 0.04659479483962059, -0.00782886240631342, 0.03765781968832016, -0.004335604142397642, 0.014180241152644157, -0.038702867925167084, 0.016702774912118912, -0.037982143461704254, 0.02610822021961212, 0.040432605892419815, 0.026684800162911415, 0.032504644244909286, -0.027099216356873512, -0.050306521356105804, -0.05311734601855278, -0.006509036757051945, 0.057838086038827896, 0.040180351585149765, 0.017450524494051933, -0.009954997338354588, -0.0033175817225128412, -0.053946178406476974, 0.02223432995378971, 0.005576600320637226, 0.01857665553689003, 0.05654078349471092, 0.02554965950548649, -0.01436943095177412, -0.027946066111326218, 0.024558663368225098, 0.026144256815314293, -0.02100909873843193, -0.018468547612428665, 0.009405446238815784, -0.028576700016856194, -0.0377298928797245, 0.05859484523534775, 0.009121661074459553, 0.06133359670639038, -0.06493721902370453, -0.02655867300927639, 0.002716227900236845, 0.03711727634072304, -0.035874027758836746, -0.037982143461704254, -0.01909918151795864, 0.014297358691692352, -0.019117198884487152, -0.011450499296188354, -0.017450524494051933, 0.026396509259939194, 0.04706326499581337, -0.03495510667562485, 0.00927931908518076, -0.033693838864564896, 0.036072228103876114, 0.00500903045758605, -0.07956790924072266, -0.06670299172401428, 0.04418037086725235, -0.02677488885819912, 0.04086504131555557, 0.05117139220237732, -0.11906357109546661, 0.025171279907226562, -0.010909956879913807, -0.019982067868113518, 0.016747819259762764, 0.019441524520516396, 0.055135373026132584, -0.0395677387714386, -0.03154968470335007, -0.027315432205796242, -0.013432489708065987, 0.06457685679197311, 0.04609028622508049, 0.06904534250497818, 0.014873937703669071, -0.062378644943237305, 0.014405467547476292, 0.07279310375452042, 0.039279449731111526, -0.014189249835908413, 0.014720783568918705, 0.02387397550046444, 0.06374802440404892, 0.006414441857486963, -0.012243296019732952, -0.031513649970293045, 0.07992827147245407, -0.02174784056842327, -0.05639663711190224, 0.010927975177764893, -0.051279500126838684, -0.03845061734318733, -0.0052973199635744095, -0.013333390466868877, 0.004416685551404953, 0.008918956853449345, 0.005693718325346708, -0.004819840658456087, -0.01595502346754074, -0.012297349981963634, -0.05246869474649429, -0.018973054364323616, -0.016792865470051765, -0.10594639927148819, -0.013846905902028084, -0.012486539781093597, 0.030504634603857994, -0.04104522243142128, 0.04223441705107689, 0.0923967957496643, 0.0060225483030080795, -0.020126212388277054, 0.024991098791360855, -0.008180215023458004, -0.01908116228878498, -0.027693811804056168, 0.009144183248281479, -0.038486652076244354, -0.06637866050004959, -0.019477561116218567, 0.0023063162807375193, 0.020432520657777786, -0.014045105315744877, -0.01156761683523655, 0.0028558680787682533, 0.03726142272353172, 0.007337869144976139, 0.019964050501585007, -0.002282667439430952, 0.017252326011657715, 0.033405549824237823, -0.04154972732067108, 0.03306320682168007, -0.011324373073875904, -0.040684860199689865, 0.011973024345934391, 0.045261453837156296, -0.0017759085167199373, -0.042126305401325226, -0.06904534250497818, 0.05073895677924156, 0.028901025652885437, -0.005833358503878117, -0.09052290767431259, 0.024252356961369514, 0.001911044237203896, -0.04446865990757942, 0.02124333381652832, 0.016964036971330643, 0.04129747301340103, 0.013144200667738914, -0.022774873301386833, -0.004900922067463398, 0.08281116932630539, 0.029387513175606728, 0.00988292507827282, -0.022828927263617516, 0.023369470611214638, 0.041657835245132446, 0.0064099375158548355, 0.056612856686115265, 0.027459576725959778, 0.02819831855595112, 0.033225368708372116, -0.030774906277656555, 0.02819831855595112, -0.030090218409895897, 0.004157675430178642, 0.0771174505352974, 0.026180293411016464, 0.04227045178413391, -0.0002202993637183681, 0.007761294487863779, 0.06396424025297165, -0.013973033055663109, 0.009405446238815784, -0.039027195423841476, -0.027747867628932, -0.020342430099844933, 0.005833358503878117, 0.012018069624900818, 0.031495630741119385, 0.015180245041847229, -0.016324395313858986, 0.02634245529770851, -0.04580199718475342, -0.07805439084768295, -0.041874054819345474, -0.04324343055486679, -0.02558569610118866, -0.05459482967853546, -0.0024099203292280436, 0.010171215049922466, 0.027675794437527657, 0.009594636037945747, -0.0337839275598526, -0.04349568113684654, 0.024973079562187195, 0.049153365194797516, 0.01664872094988823, -0.05715340003371239, -0.014180241152644157, -0.003986503463238478, 0.05963989719748497, -0.006013539154082537, 0.040937114506959915, -0.056829072535037994, 0.051495715975761414, 0.033928073942661285, -0.05481104552745819, 0.010108151473104954, -0.0019943779334425926, -0.04634254053235054, 0.04198216274380684, -0.044756948947906494, 0.030288418754935265, -0.0029054179321974516, 0.04591010883450508, 0.03697312995791435, 0.00458335317671299, 0.040216390043497086, 0.045261453837156296, 0.04897318407893181, -0.00259911036118865, -0.038991156965494156, 0.023567669093608856, 0.04536956548690796, -0.006671200040727854, -0.019225308671593666, 0.044072262942790985, 0.018973054364323616, 0.03129743039608002, 0.010090133175253868, 0.007522554602473974, -0.09109949320554733, 0.0077883219346404076, 0.0026058671064674854, -0.003488753689453006, 0.00585588114336133, -0.010738784447312355, 0.001583340112119913, -0.021153243258595467, 0.007054084446281195, 0.013225281611084938, -0.031063197180628777, -0.047892097383737564, 0.017441516742110252, -0.0006920074811205268, -0.07632464915513992, -0.016045114025473595, -0.0037770431954413652, -0.09953195601701736, -0.014549612067639828, 0.030810942873358727, -0.02535146102309227, -0.014540603384375572, -0.03180193901062012, -0.04345964640378952, 0.03863079473376274, 0.0337839275598526, -0.018991071730852127, -0.011135183274745941, -0.0055270507000386715, -0.0704147145152092, -0.014054113999009132, 0.0342884361743927, 0.032486625015735626, 0.04616235941648483, -0.01518925465643406, 0.045765962451696396, 0.06331558525562286, 0.012720775790512562, 0.0367208793759346, 0.04072089493274689, 0.0031689326278865337, 0.058558810502290726, 0.04616235941648483, 0.04699119180440903, -0.012351403944194317, -0.007982016541063786, -0.0816580057144165, -0.059711966663599014, -0.003033796790987253, 0.021369460970163345, 0.018684765323996544, -0.010045087896287441, -0.0477839894592762, 0.004000016953796148, 0.018504584208130836, 0.0005737637402489781, 0.022324420511722565, -0.04385604336857796, 0.02681092545390129, -0.04832453280687332, -0.03567582741379738, 0.0008091250783763826, -0.022540638223290443, -0.04410829767584801, -0.0477839894592762, -0.03884701430797577, 0.014630693010985851, -0.00030039544799365103, -0.016540611162781715, -0.021423514932394028, -0.0018637467874214053, 0.03018030896782875, -0.028810935094952583, -0.040684860199689865, -0.00905859749764204, -0.007103634066879749, -0.018000077456235886, 0.002502263057976961, 0.06544172018766403, 0.0014290602412074804, 0.06425252556800842, -0.03136950358748436, 0.004909931216388941, -0.0280001200735569, 0.005621645599603653, 0.01305411010980606, 0.0022882982157170773, -0.006725254002958536, -0.006945975590497255, -0.004497766960412264, 0.0031734369695186615, -0.04097314924001694, 0.06616244465112686, 0.0025585696566849947, 0.01436943095177412, -0.012846902012825012, 0.011117164976894855, -0.050306521356105804, 0.05239662155508995, -0.00822075642645359, 0.05938764289021492, 0.0014966280432417989, -0.00507659837603569, -0.03697312995791435, -0.023459559306502342, 0.003833349794149399, 0.013198254629969597, -0.030360490083694458, 0.02945958636701107, -0.007585618179291487, -0.01833341270685196, -0.04800020530819893, 0.07358590513467789, -0.03014427423477173, 0.01739647053182125, 0.008770307525992393, -0.06677506119012833, 0.04446865990757942, -0.006684713531285524, -0.008491027168929577, -0.021081171929836273, -0.03495510667562485, -0.04306324943900108, -0.033657800406217575, -0.02675687149167061, 0.0032860501669347286, 0.01931539736688137, -0.027711831033229828, 0.026360472664237022, 0.008202738128602505, 0.048396605998277664, 0.005157679785043001, -0.01590096950531006, 0.028612734749913216, 0.035874027758836746, -0.03646862506866455, -0.004400919657200575, 0.008103637956082821, 0.020126212388277054, -0.012603657320141792, 0.06356783956289291, -0.034396544098854065, -0.06738767772912979, -0.07589221745729446, -0.010081124491989613, -0.02796408347785473, 0.004693713970482349, -0.033477623015642166, -0.05747772380709648, -0.04169387370347977, 0.010792839340865612, 0.044072262942790985, 0.028072193264961243, 0.01714421808719635, -0.044792983680963516, -0.0017995572416111827, 0.044072262942790985, 0.030216345563530922, -0.006842371542006731, 0.03326140344142914, -0.003752268385142088, -0.024576682597398758, 0.0022759106941521168, -0.04367586225271225, -0.04317135736346245, -0.026000112295150757, 0.024342447519302368, -0.019621705636382103, -0.02751363255083561, -0.045045237988233566, 0.022792890667915344, 0.03576591983437538, -0.02054062858223915, 0.01976585015654564, -0.02991003915667534, -0.045549746602773666, 0.013099155388772488, 0.0037455116398632526, 0.030720852315425873, -0.07740573585033417, -0.00917121022939682, 0.023243343457579613, -0.03506321460008621, 0.09318958967924118, -0.006801831070333719, -0.030955087393522263, 0.02365775965154171, 0.028288409113883972, 0.05387410521507263, -0.03264879062771797, -0.03619835525751114, 0.03039652667939663, 0.004058576188981533, 0.01353158988058567, -0.030810942873358727, -0.016612684354186058, -0.03522537648677826, 0.017937013879418373, 0.008743280544877052, -0.05452275648713112, -0.01929738000035286, 0.03596412017941475, -0.0048738946206867695, 0.026955069974064827, 0.019387470558285713, 0.05582005903124809, 0.018684765323996544, -0.008707244880497456, 0.016090158373117447, -0.0013434742577373981, 0.018684765323996544, -0.014639702625572681, 0.03169383108615875, -0.02028837613761425, -0.006873903330415487, 0.016027096658945084, 0.016982054337859154, -0.0038468632847070694, 0.002966228872537613, -0.023729830980300903, -0.03230644389986992, -0.060973234474658966, 0.07102733105421066, -0.023369470611214638, 0.045765962451696396, -0.02655867300927639, -0.004950471688061953, -0.011396445333957672, 0.04854074865579605, 0.03329744189977646, -0.0015236551407724619, 0.03281095251441002, 0.011009056121110916, -0.04774795100092888, 0.008045079186558723, -0.006644172593951225, 0.027693811804056168, 0.07567600160837173, 0.007720754016190767, -0.005558582488447428, -0.0016846918733790517, 0.013585643842816353, 0.08136972039937973, -0.018468547612428665, -0.02654065378010273, 0.02169378660619259, 0.04482902213931084, -0.036828987300395966, 0.03565781190991402, 0.020594682544469833, 0.048865076154470444, -0.030522653833031654, -0.05362185090780258, -0.04446865990757942, -0.07877511531114578, -0.002007891424000263, 0.014594657346606255, 0.04472091421484947, -0.021891985088586807, -0.014783847145736217, 0.00856760423630476, 0.027351468801498413, -0.01763070560991764, -0.0390632301568985, 0.03192806616425514, 0.020955044776201248, -0.00843246839940548, -0.008995533920824528, -0.060216475278139114, -0.037045203149318695, -0.035333484411239624, 0.10241485387086868, -0.08475711941719055, -0.036378536373376846, -0.0031734369695186615, -0.04785606265068054, 0.021117208525538445, -0.06677506119012833, -0.03992810100317001, 0.02127937041223049, -0.014018078334629536, 0.018774855881929398, 0.014036096632480621, 0.011009056121110916, 0.01639646664261818, 0.04991012439131737, -0.0026869485154747963, 0.011045092716813087, 0.015873942524194717, 0.024000102654099464, -0.003918935544788837, -0.018666746094822884, -0.007369400933384895, -0.01884692721068859, 0.04457676783204079, -0.01614421419799328, -0.013234291225671768, -0.017549624666571617, -0.03410825505852699, 0.05117139220237732, 0.008941479958593845, 0.010774821043014526, -0.002007891424000263, 0.005941466894000769, 0.00822075642645359, -0.012882938608527184, -0.040937114506959915, 0.027351468801498413, 0.012252304702997208, 0.01980188675224781, -0.04036053270101547, 0.05643267557024956, 0.0029211838264018297, 0.027946066111326218, 0.00880183931440115, 0.016099167987704277, -0.061225488781929016, -0.05257680267095566, 0.020882973447442055, 0.003761277301236987, 0.04699119180440903, -0.028108227998018265, 0.016612684354186058, -0.061910174787044525, 0.012243296019732952, 0.02754966728389263, -0.033405549824237823, 0.029171297326683998, -0.043351538479328156, 0.07124354690313339, 0.03981998935341835, 0.060216475278139114, 0.03758574649691582, 0.015486553311347961, 0.02873886190354824, 0.0158829502761364, 0.020108195021748543, 0.014720783568918705, -0.04771191626787186, -0.018450530245900154, 0.009720762260258198, -0.006198224611580372, -0.03812628984451294, -0.05333356186747551, 0.035621773451566696, 0.006085611879825592, -0.03697312995791435, 0.00433785654604435, -0.06699127703905106, 0.05747772380709648, 0.028648771345615387, 0.038018181920051575, 0.0155496159568429, -0.010045087896287441, 0.032991133630275726, 0.04630650579929352, 0.056360602378845215, -0.01011716015636921, 0.0059504760429263115, 0.03598213568329811, -0.054162394255399704, -0.005346869584172964, -0.015279345214366913, 0.0009718509973026812, -0.03129743039608002, -0.00615768413990736, 0.014675738289952278, 0.04025242477655411, -0.020090175792574883, 0.008148683235049248, 0.019693778827786446, -0.017000073567032814, 0.0011711762053892016 ]
20,276
start_sdk.cf_r2
CFR2
_CFR2_ Cloudflare R2 via Amazon S3 [API](https://developers.cloudflare.com/r2/examples/boto3/). The Cloudflare R2 key/secret follows AWS S3 conventions, see compatability in docs.. Add secrets to .env file: Field in .env | Cloudflare API Credential | Where credential found :--|:--:|:-- `CF_ACCT_ID` | Account ID | `https://dash.cloudflare.com/<acct_id>/r2` `CF_R2_REGION` | Default Region: `apac` | See [options](https://developers.cloudflare.com/r2/learning/data-location/#available-hints) `R2_ACCESS_KEY_ID` | Key | When R2 Token created in `https://dash.cloudflare.com/<acct_id>/r2/overview/api-tokens` `R2_SECRET_ACCESS_KEY` | Secret | When R2 Token created in `https://dash.cloudflare.com/<acct_id>/r2/overview/api-tokens` Examples: >>> import os >>> os.environ['CF_ACCT_ID'] = "ACT" >>> os.environ['R2_ACCESS_KEY_ID'] = "ABC" >>> os.environ['R2_SECRET_ACCESS_KEY'] = "XYZ" >>> from start_sdk import CFR2 >>> r2 = CFR2() >>> type(r2.resource) <class 'boto3.resources.factory.s3.ServiceResource'>
class CFR2(BaseSettings): """ _CFR2_ Cloudflare R2 via Amazon S3 [API](https://developers.cloudflare.com/r2/examples/boto3/). The Cloudflare R2 key/secret follows AWS S3 conventions, see compatability in docs.. Add secrets to .env file: Field in .env | Cloudflare API Credential | Where credential found :--|:--:|:-- `CF_ACCT_ID` | Account ID | `https://dash.cloudflare.com/<acct_id>/r2` `CF_R2_REGION` | Default Region: `apac` | See [options](https://developers.cloudflare.com/r2/learning/data-location/#available-hints) `R2_ACCESS_KEY_ID` | Key | When R2 Token created in `https://dash.cloudflare.com/<acct_id>/r2/overview/api-tokens` `R2_SECRET_ACCESS_KEY` | Secret | When R2 Token created in `https://dash.cloudflare.com/<acct_id>/r2/overview/api-tokens` Examples: >>> import os >>> os.environ['CF_ACCT_ID'] = "ACT" >>> os.environ['R2_ACCESS_KEY_ID'] = "ABC" >>> os.environ['R2_SECRET_ACCESS_KEY'] = "XYZ" >>> from start_sdk import CFR2 >>> r2 = CFR2() >>> type(r2.resource) <class 'boto3.resources.factory.s3.ServiceResource'> """ # noqa: E501 acct: str = Field(default="ACT", repr=False, env="CF_ACCT_ID") r2_region: str = Field(default="apac", repr=True, env="CF_R2_REGION") r2_access_key: str = Field( default="ABC", repr=False, title="R2 Key", description=( # noqa: E501 "The Cloudflare R2 key/secret follows AWS S3 conventions, see" " compatability in docs." ), env="R2_ACCESS_KEY_ID", ) r2_secret_key: str = Field( default="XYZ", repr=False, title="R2 Secret", description=( # noqa: E501 "The Cloudflare R2 key/secret follows AWS S3 conventions, see" " compatability in docs." ), env="R2_SECRET_ACCESS_KEY", ) class Config: env_file = ".env" env_file_encoding = "utf-8" @property def endpoint_url(self): return f"https://{self.acct}.r2.cloudflarestorage.com" @property def resource(self): """Resource can be used as a means to access the bucket via an instantiated `r2`, e.g. `r2.resource.Bucket('<created-bucket-name>')` """ return boto3.resource( "s3", endpoint_url=self.endpoint_url, aws_access_key_id=self.r2_access_key, aws_secret_access_key=self.r2_secret_key, region_name=self.r2_region, ) def get_bucket(self, bucket_name: str): return self.resource.Bucket(bucket_name) # type: ignore
(_env_file: Union[str, os.PathLike, List[Union[str, os.PathLike]], Tuple[Union[str, os.PathLike], ...], NoneType] = '<object object at 0x7f74a8a56270>', _env_file_encoding: Optional[str] = None, _env_nested_delimiter: Optional[str] = None, _secrets_dir: Union[str, os.PathLike, NoneType] = None, *, acct: str = 'ACT', r2_region: str = 'apac', r2_access_key: str = 'ABC', r2_secret_key: str = 'XYZ') -> None
[ 0.006921269465237856, -0.07995676249265671, -0.07307573407888412, 0.006362940650433302, 0.02484816312789917, -0.03623606637120247, -0.023520244285464287, 0.014415958896279335, 0.013319420628249645, -0.022534366697072983, 0.020160209387540817, 0.034083228558301926, -0.015502437017858028, 0.04034053906798363, 0.018087852746248245, 0.004876577761024237, 0.032493751496076584, 0.021367408335208893, 0.025270681828260422, 0.008083198219537735, 0.005854911170899868, -0.010220944881439209, -0.011387903243303299, -0.0101756751537323, 0.03516970947384834, 0.047322168946266174, 0.01691083423793316, 0.014305299147963524, 0.010412084870040417, -0.032976631075143814, -0.05223144218325615, -0.011277243494987488, -0.03356010839343071, 0.09247138351202011, 0.04209097847342491, -0.09045938402414322, 0.011830542236566544, 0.03372107073664665, -0.056939516216516495, 0.047040488570928574, -0.02024069055914879, 0.06297550350427628, 0.048770807683467865, -0.07033941894769669, -0.007062109652906656, 0.046356409788131714, 0.009476506151258945, 0.001502710278145969, -0.019767871126532555, -0.030421394854784012, 0.07842764258384705, -0.014013559557497501, -0.026276681572198868, 0.023037366569042206, 0.026055362075567245, -0.032433390617370605, -0.010085134766995907, 0.022554486989974976, -0.05677855387330055, 0.014234879054129124, 0.0004860230255872011, -0.013812359422445297, 0.014204698614776134, 0.015502437017858028, -0.010502624325454235, 0.030099475756287575, -0.04736240953207016, 0.02052236907184124, 0.03597450628876686, 0.010341664776206017, 0.031266432255506516, -0.05174856260418892, -0.052472881972789764, -0.0461149699985981, 0.003352490020915866, -0.012243001721799374, -0.02780579775571823, 0.046155210584402084, -0.003971179015934467, -0.04772456735372543, -0.0006457252893596888, -0.007972538471221924, -0.014908897690474987, -0.07130517065525055, 0.052191201597452164, 0.02840939722955227, -0.0037900994066148996, -0.03706098347902298, 0.02052236907184124, 0.012293301522731781, -0.029194075614213943, 0.010925143957138062, -0.01955661177635193, 0.025210322812199593, 0.07033941894769669, -0.03836878389120102, 0.005548081826418638, -0.0714258924126625, -0.04160809889435768, 0.01673981547355652, 0.001544207683764398, -0.011709822341799736, 0.007434329017996788, 0.0010160584934055805, 0.028932517394423485, -0.05203024297952652, -0.04474681243300438, 0.022011246532201767, 0.012655461207032204, -0.014013559557497501, -0.06808597594499588, 0.017112035304307938, -0.013430080376565456, -0.002448348794132471, -0.028932517394423485, -0.00162217253819108, -0.011820482090115547, 0.041004497557878494, 0.016035616397857666, -0.004846397787332535, 0.048368409276008606, 0.034626469016075134, -0.020482130348682404, 0.05174856260418892, 0.05046088621020317, 0.03702074661850929, -0.02957635559141636, 0.02299712598323822, 0.016528556123375893, -0.01414433866739273, 0.010693764314055443, 0.008772307075560093, -0.04716121032834053, -0.06237190589308739, 0.031045114621520042, 0.011377843096852303, 0.051507122814655304, 0.04933416470885277, 0.004602442961186171, 0.07581204921007156, 0.04728192836046219, 0.004987237509340048, -0.023238565772771835, -0.08369907736778259, -0.03233279287815094, 0.004303158726543188, -0.006237190682440996, -0.01801743358373642, -0.05166808143258095, -0.018399711698293686, 0.023439764976501465, 0.05649687722325325, 0.020592790096998215, 0.04776480793952942, 0.006307610776275396, -0.018208572641015053, -0.02362084574997425, 0.020924769341945648, 0.011719882488250732, 0.0007626726292073727, -0.04474681243300438, 0.023077605292201042, -0.01499943807721138, -0.025210322812199593, 0.03514958918094635, 0.016246875748038292, 0.009687765501439571, -0.034425269812345505, 0.004539568442851305, 0.04048138111829758, -0.027423519641160965, -0.06365958601236343, -0.04281529784202576, 0.011317483149468899, -0.01513021718710661, 0.06885053962469101, -0.009592195972800255, -0.04329817369580269, 0.022675206884741783, -0.042936015874147415, 0.005648681428283453, -0.027000999078154564, -0.006684860214591026, -0.0014687578659504652, 0.041145339608192444, 0.06361934542655945, 0.0011675870046019554, 0.02553224191069603, 0.035531867295503616, 0.027503998950123787, 0.07194901257753372, 0.034284427762031555, 0.019566670060157776, 0.006966539658606052, -0.00554305175319314, -0.03694026544690132, 0.019737690687179565, -0.0674421414732933, -0.0018284022808074951, 0.03464658930897713, -0.03315770998597145, 0.042936015874147415, -0.0017252874094992876, 0.007368938997387886, 0.03859010338783264, 0.0071073793806135654, 0.03349975124001503, -0.03937477990984917, -0.049937766045331955, 0.08764258772134781, -0.07834716141223907, -0.0015718726208433509, -0.023017246276140213, -0.0254718828946352, 0.009924175217747688, -0.03164871409535408, 0.0358537882566452, 0.043338414281606674, -0.020985128358006477, 0.055571358650922775, 0.1298140436410904, -0.02690039947628975, 0.03567270562052727, -0.007665708661079407, -0.0010550409788265824, 0.011297362856566906, 0.0021276867482811213, -0.026236440986394882, -0.04832816869020462, -0.04132641851902008, 0.008264278061687946, -0.0008940811967477202, 0.030300674960017204, -0.005538021679967642, 0.06369982659816742, -0.05516895651817322, 0.038952261209487915, 0.03601474687457085, -0.007449418772011995, -0.01300756074488163, 0.030361033976078033, 0.010794363915920258, 0.014536678791046143, 0.008430267684161663, -0.03094451315701008, -0.006725099869072437, 0.012625280767679214, 0.0050123874098062515, -0.0014763028593733907, -0.046517372131347656, 0.06844814121723175, -0.0062975506298244, -0.04502849280834198, 0.045269932597875595, -0.025310922414064407, -0.07134541124105453, 0.030300674960017204, -0.05838815122842789, 0.04812696948647499, -0.03172919154167175, 0.03452586755156517, -0.018942952156066895, 0.004099444020539522, 0.03488802909851074, -0.011750062927603722, 0.03732254356145859, 0.0212064478546381, -0.03404298797249794, -0.007192889228463173, -0.013631279580295086, 0.06386078149080276, 0.07927267998456955, -0.042050737887620926, 0.00241188146173954, -0.023017246276140213, 0.0012675580801442266, -0.010065015405416489, 0.032010871917009354, 0.01293714065104723, -0.009114346466958523, 0.018087852746248245, -0.02174968831241131, 0.047523368149995804, 0.04514921456575394, 0.05223144218325615, -0.04132641851902008, -0.06909197568893433, 0.013409960083663464, 0.0347270667552948, 0.050340164452791214, -0.030582355335354805, 0.01574387587606907, 0.025552362203598022, -0.015834417194128036, 0.05106448382139206, -0.01499943807721138, -0.04349937662482262, -0.0036291396245360374, 0.06446438282728195, -0.040944140404462814, -0.033318668603897095, 0.06011847034096718, 0.00984872505068779, 0.06647638231515884, 0.012071982026100159, -0.0004564718110486865, 0.07645588368177414, -0.04062221944332123, -0.002819310873746872, 0.06011847034096718, 0.002597991144284606, 0.020844288170337677, 0.013379779644310474, 0.025793801993131638, 0.012273182161152363, -0.003558719763532281, -0.023600725457072258, 0.0344453901052475, -0.021669207140803337, 0.007972538471221924, -0.05046088621020317, -0.013661460019648075, -0.009380935691297054, -0.009617345407605171, 0.06667757779359818, -0.027503998950123787, 0.011579042300581932, -0.003971179015934467, 0.007137559354305267, 0.038409024477005005, -0.04309697449207306, -0.015924956649541855, -0.008676736615598202, 0.03635678440332413, 0.05923319235444069, -0.011065983213484287, 0.003913334105163813, -0.020130030810832977, 0.024928642436861992, -0.023439764976501465, 0.0344453901052475, -0.059957511723041534, -0.048368409276008606, 0.009380935691297054, -0.0793934017419815, -0.014204698614776134, 0.06329742819070816, -0.023117845878005028, 0.009793395176529884, -0.026055362075567245, 0.0057341912761330605, -0.015049737878143787, 0.05504823848605156, 0.0791117250919342, 0.023500125855207443, -0.06365958601236343, -0.08369907736778259, 0.007972538471221924, 0.03255411237478256, -0.028590478003025055, -0.007343789096921682, -0.03034091554582119, -0.029133716598153114, 0.04933416470885277, -0.019063672050833702, 0.0015215727034956217, -0.0250493623316288, 0.008882966823875904, -0.012766120955348015, -0.03233279287815094, 0.008772307075560093, -0.01489883754402399, 0.0018912771483883262, -0.07746188342571259, 0.04764408990740776, -0.021367408335208893, -0.036276306957006454, -0.016558734700083733, 0.007303548976778984, 0.06663733720779419, 0.022876406088471413, 0.07017845660448074, -0.02245388738811016, 0.0503804050385952, -0.011649462394416332, -0.022695325314998627, -0.0202105101197958, -0.013088040053844452, 0.08337715268135071, 0.02100524865090847, 0.018993251025676727, 0.054525118321180344, 0.041084978729486465, 0.01898319087922573, -0.046839289367198944, -0.01997913047671318, -0.06313646584749222, 0.01094526331871748, 0.061325669288635254, 0.013309360481798649, -0.011297362856566906, -0.022956885397434235, 0.08204923570156097, -0.0046250782907009125, 0.022051487118005753, -0.007605348713696003, 0.038409024477005005, 0.02999887615442276, 0.008415177464485168, 0.04048138111829758, -0.07307573407888412, -0.03040127456188202, 0.022534366697072983, 0.00009219033381668851, -0.035048987716436386, -0.025773681700229645, -0.0024823013227432966, 0.05504823848605156, 0.010955323465168476, 0.03321807086467743, -0.03184991329908371, -0.051024243235588074, 0.010623344220221043, 0.022956885397434235, -0.034284427762031555, 0.009707885794341564, 0.0063679707236588, 0.03752374276518822, 0.023661084473133087, -0.027544239535927773, 0.005206042435020208, 0.07351837307214737, -0.05903199315071106, -0.020542489364743233, -0.005241252016276121, -0.012585041113197803, 0.012655461207032204, -0.02444576285779476, 0.04021982103586197, -0.008304517716169357, -0.014778117649257183, -0.003528539789840579, -0.019254811108112335, 0.004328308627009392, -0.047805048525333405, 0.017896713688969612, -0.06667757779359818, 0.04728192836046219, 0.07573156803846359, -0.03885166347026825, -0.026115721091628075, 0.00022179122606758028, -0.050420645624399185, -0.0160859152674675, -0.04989752545952797, -0.020783929154276848, 0.030099475756287575, -0.021669207140803337, -0.012192701920866966, -0.030582355335354805, -0.0022785866167396307, -0.0011675870046019554, -0.013138340786099434, -0.030662834644317627, -0.02416408434510231, -0.00848056748509407, 0.05476655811071396, 0.0037071045953780413, -0.017142213881015778, -0.00550784170627594, -0.02909347601234913, -0.01826893351972103, -0.04466633498668671, 0.014918957836925983, 0.01633741520345211, 0.039093103259801865, 0.01639777608215809, 0.008395057171583176, -0.10156560689210892, -0.013530679978430271, -0.014426018111407757, -0.028570357710123062, -0.0575028732419014, 0.019254811108112335, 0.038127344101667404, -0.09231042116880417, 0.009712915867567062, 0.023580605164170265, 0.025089602917432785, 0.010276274755597115, -0.006881029810756445, 0.00806810799986124, -0.027282679453492165, 0.008716977201402187, -0.05911247059702873, 0.05448487773537636, 0.03162859380245209, 0.04112521931529045, -0.005135622341185808, -0.03770482540130615, -0.005492751952260733, -0.019818169996142387, -0.06386078149080276, 0.005085322540253401, 0.01710197515785694, -0.026819920167326927, -0.1451857089996338, -0.008540927432477474, 0.018621033057570457, -0.016890713945031166, -0.012293301522731781, 0.022212447598576546, 0.04317745566368103, -0.04901224747300148, 0.013500499539077282, -0.006845819763839245, -0.05561159551143646, 0.032292552292346954, -0.08619394898414612, 0.017916833981871605, -0.021105848252773285, -0.005970600992441177, 0.0469600111246109, 0.004046629182994366, 0.002483558841049671, 0.00010893077705986798, 0.051788803189992905, -0.048690326511859894, 0.026276681572198868, 0.030099475756287575, -0.023922644555568695, -0.032232191413640976, -0.020622968673706055, 0.003714649472385645, 0.039636339992284775, 0.059756312519311905, -0.013560859486460686, 0.00983363576233387, -0.0367189459502697, -0.03569282591342926, 0.017655273899435997, -0.006855879910290241, -0.01793695241212845, -0.023077605292201042, -0.06313646584749222, -0.06136590987443924, 0.013510559685528278, -0.03736278414726257, 0.017182454466819763, -0.04728192836046219, 0.045471131801605225, -0.021327167749404907, 0.09375905990600586, -0.019274931401014328, 0.0010984246619045734, -0.056255437433719635, 0.03026043437421322, -0.041688576340675354, 0.03347963094711304, 0.0038806393276900053, 0.006000780966132879, 0.06104398891329765, -0.03657810389995575, 0.022634966298937798, -0.002211939310654998, -0.0036341696977615356, -0.016206635162234306, 0.05046088621020317, -0.041366659104824066, -0.013681579381227493, -0.001669957535341382, 0.012494501657783985, 0.06309622526168823, 0.03207123279571533, -0.053156960755586624, 0.0019000796601176262, 0.0250493623316288, 0.019989190623164177, -0.00588509114459157, -0.023640964180231094, -0.017806174233555794, 0.013751999475061893, -0.013399899937212467, -0.07046013325452805, -0.03404298797249794, -0.0049721477553248405, 0.013862659223377705, 0.05368008092045784, 0.004682923201471567, 0.007942358031868935, -0.033459510654211044, 0.0019139121286571026, 0.004778492730110884, -0.047805048525333405, -0.006020901259034872, 0.00792726781219244, -0.002404336351901293, -0.03917358070611954, 0.05194976180791855, 0.008460447192192078, -0.04466633498668671, -0.035250186920166016, 0.016488315537571907, -0.027765559032559395, -0.016488315537571907, 0.0030029055196791887, -0.024083605036139488, -0.05114496499300003, 0.001559297670610249, 0.02814783900976181, -0.0044942982494831085, -0.02615596167743206, -0.00395608926191926, 0.006222100928425789, 0.02203136682510376, -0.0030154804699122906, -0.06538990139961243, 0.0538007989525795, 0.020160209387540817, -0.07420244812965393, -0.02060285024344921, 0.011347662657499313, -0.00845541711896658, 0.052553363144397736, -0.06213046610355377, 0.057905275374650955, 0.01795707270503044, -0.0694541335105896, -0.06977605819702148, -0.011750062927603722, 0.04281529784202576, -0.007384029217064381, 0.07134541124105453, -0.068890780210495, 0.02561272121965885, 0.021991128101944923, 0.038811422884464264, 0.03518982604146004, 0.017826292663812637, 0.028167957440018654, 0.05291552096605301, -0.03933454304933548, -0.03987777978181839, 0.07701924443244934, -0.0671604573726654, -0.04261409491300583, -0.00904895644634962, -0.06989677250385284, 0.045551612973213196, -0.03506910800933838, -0.06816645711660385, 0.051869284361600876, -0.026316920295357704, -0.02223256602883339, -0.030662834644317627, -0.04860984906554222, 0.002131459303200245, 0.002274814061820507, 0.005880061071366072, -0.04941464588046074, 0.008259247988462448, 0.006896119564771652, -0.016830354928970337, 0.011760122142732143, -0.03498862683773041, -0.060641590505838394, 0.06365958601236343, -0.0018849896732717752, 0.0070419893600046635, 0.05854911357164383, 0.05633591488003731, -0.03172919154167175, 0.003704589558765292, 0.0008802486700005829, -0.0020182845182716846, -0.005683891475200653, 0.030300674960017204, -0.0010550409788265824, 0.013550800271332264, 0.03382166847586632, 0.01060322392731905, 0.04889152571558952, 0.008606317453086376, 0.0583479143679142, 0.04679904878139496, 0.001221030717715621, 0.014979317784309387, 0.023037366569042206, -0.027765559032559395, 0.0005492123309522867, -0.01647825539112091, 0.011890902183949947, 0.002136489376425743, -0.006538990419358015, -0.022333167493343353, -0.07609372586011887, 0.005603411700576544, -0.02416408434510231, -0.012051861733198166, -0.009531836025416851, -0.0037397993728518486, -0.037785302847623825, 0.01850031316280365, -0.017765933647751808, 0.013792239129543304, 0.015401837415993214, -0.005102927330881357, -0.05524943768978119, -0.004569748416543007, -0.02072356827557087, 0.03446551039814949, 0.04112521931529045, 0.02649800106883049, -0.07283429056406021, 0.006896119564771652, 0.03830842301249504, -0.027966758236289024, -0.0008664162014611065, -0.0010412083938717842, 0.012333541177213192, -0.02339952439069748, 0.04102461785078049, 0.007202949374914169, -0.015663396567106247, 0.06728117913007736, 0.0005180892185308039, -0.05633591488003731, 0.035592228174209595, -0.023922644555568695, 0.00946141593158245, -0.01661909557878971, -0.0012266894336789846, -0.049656085669994354, 0.04466633498668671, 0.006649650167673826, -0.045189451426267624, 0.020844288170337677, -0.02698088064789772, -0.0315883532166481, 0.0426945760846138, 0.007534928619861603, 0.008696856908500195, -0.04414321482181549, -0.03959609940648079, 0.026055362075567245, 0.06675805896520615, 0.0021679268684238195, 0.0011707308003678918, -0.012635340914130211, 0.033399149775505066, 0.02629680000245571, 0.04490777477622032, 0.0010933945886790752, 0.0009223748929798603, -0.011458323337137699, -0.04631616920232773, -0.032030992209911346, -0.009013746865093708, -0.030521994456648827, -0.00014807040861342102, -0.01591489650309086, -0.05287528038024902, 0.008923206478357315, 0.05029992386698723, 0.12200749665498734, 0.012746000662446022, 0.006614440120756626, -0.0012593843275681138 ]
20,277
start_sdk.cf_r2
get_bucket
null
def get_bucket(self, bucket_name: str): return self.resource.Bucket(bucket_name) # type: ignore
(self, bucket_name: str)
[ -0.008514197543263435, 0.012532421387732029, -0.11998364329338074, -0.03352785110473633, 0.003352785250172019, 0.006974305026233196, 0.0433046780526638, 0.039823923259973526, 0.05599919334053993, -0.04241742566227913, 0.0007795438868924975, 0.01487851794809103, -0.06449633091688156, -0.028323784470558167, -0.015561019070446491, -0.02194240130484104, 0.059752944856882095, 0.021242838352918625, 0.044601429253816605, 0.01565486192703247, -0.04074529930949211, -0.016806581988930702, 0.06323370337486267, -0.016422675922513008, 0.029330473393201828, 0.0743243396282196, 0.007682399824261665, 0.002889964496716857, 0.04187142476439476, -0.0387660451233387, -0.015424518845975399, -0.02223246358335018, 0.017113707959651947, 0.06739695370197296, 0.0310196615755558, -0.001521763508208096, 0.044021300971508026, -0.04026754945516586, 0.00036844381247647107, 0.012566545978188515, 0.05712531879544258, 0.006769555155187845, 0.03989217430353165, -0.07330058515071869, 0.08456185460090637, 0.033323101699352264, 0.05221131443977356, -0.036172542721033096, -0.025593779981136322, 0.01764264702796936, 0.018990585580468178, 0.039039045572280884, -0.024245841428637505, -0.024604154750704765, -0.011082107201218605, -0.010186324827373028, 0.022539589554071426, -0.009230823256075382, -0.026924656704068184, 0.08783785253763199, -0.0303712859749794, -0.025150155648589134, -0.0020325726363807917, -0.041530173271894455, -0.023017339408397675, 0.0000757149318815209, -0.01887114718556404, -0.03576304391026497, -0.029671723023056984, 0.01484439242631197, 0.029825285077095032, 0.012267951853573322, -0.0016945215174928308, -0.014400767162442207, -0.059104569256305695, -0.03299891576170921, 0.01185845211148262, -0.012421514838933945, -0.01938302256166935, -0.005216865800321102, -0.023495091125369072, -0.002565776463598013, 0.002781190909445286, -0.05535081773996353, 0.019536586478352547, -0.0018736780621111393, 0.006402710918337107, -0.038493044674396515, 0.008667760528624058, 0.031224412843585014, -0.006244882475584745, -0.02390459179878235, 0.008629369549453259, 0.044669680297374725, 0.047092556953430176, -0.048150431364774704, -0.03386910259723663, -0.06852307915687561, -0.019553648307919502, 0.0429634265601635, -0.011363638564944267, -0.005609303712844849, 0.03470516577363014, -0.004551427438855171, -0.003559668315574527, 0.03528529405593872, 0.027351221069693565, -0.036752667278051376, 0.0036321841180324554, 0.025252530351281166, 0.01977546140551567, 0.03156566247344017, 0.0006627722759731114, 0.04784330725669861, -0.03514879196882248, 0.016277644783258438, -0.024075215682387352, 0.0030072692316025496, -0.008015118539333344, -0.01822277158498764, -0.016354426741600037, -0.011073575355112553, 0.0407111756503582, 0.012404452078044415, 0.0898171067237854, 0.04193967580795288, -0.025696156546473503, -0.013249047100543976, -0.04238330200314522, 0.06446219980716705, 0.047024305909872055, 0.01587667502462864, -0.06886433064937592, -0.06442807614803314, 0.006176632363349199, 0.024450592696666718, 0.07316409051418304, 0.020730962976813316, -0.009264948777854443, 0.06405270099639893, 0.0681477040052414, 0.016653019934892654, 0.023512152954936028, -0.023307403549551964, -0.011440419591963291, -0.002459135837852955, 0.028511472046375275, -0.04927656054496765, 0.005297912750393152, -0.02310265228152275, 0.011005325242877007, 0.04313405230641365, 0.03777642175555229, 0.03944854810833931, -0.04262217506766319, -0.025832656770944595, -0.0003140570188406855, -0.010937076061964035, -0.012984578497707844, -0.047638557851314545, 0.02364865317940712, 0.032555289566516876, -0.042861051857471466, -0.09411686658859253, -0.012651858851313591, -0.009427042677998543, 0.029893536120653152, 0.035865418612957, -0.027487721294164658, -0.06180045008659363, -0.03999454900622368, 0.007196118123829365, -0.0985531210899353, 0.07193558663129807, -0.006560538895428181, 0.016516519710421562, -0.060947321355342865, 0.0478091835975647, 0.045795805752277374, -0.017002802342176437, 0.04289517551660538, -0.03463691473007202, -0.0014417829224839807, 0.023409778252243996, -0.012924859300255775, -0.01684923842549324, -0.005890835076570511, 0.02904040925204754, 0.028613846749067307, 0.026532219722867012, -0.002572174882516265, 0.012430045753717422, -0.018018022179603577, 0.021038087084889412, 0.04736555740237236, -0.08353810012340546, 0.023307403549551964, 0.042724549770355225, -0.06961508095264435, 0.10148787498474121, 0.001703052781522274, 0.04146192595362663, -0.020918650552630424, 0.0324699766933918, 0.07930659502744675, 0.033715538680553436, 0.005779928993433714, -0.08360634744167328, -0.018922334536910057, 0.0423150509595871, -0.050607435405254364, 0.040950048714876175, -0.04548867791891098, 0.015177112072706223, -0.015936393290758133, 0.012540952302515507, -0.009461167268455029, -0.051835935562849045, 0.06483757495880127, -0.008957822807133198, 0.025371968746185303, -0.03883429616689682, 0.07780509442090988, 0.011721951887011528, -0.02277846448123455, -0.01851283386349678, 0.06514470279216766, -0.008727478794753551, -0.037912920117378235, -0.02223246358335018, -0.025354905053973198, -0.002365291817113757, 0.06773820519447327, -0.041598424315452576, 0.002634026575833559, -0.0269758440554142, 0.001112263067625463, -0.016482394188642502, 0.049993183463811874, -0.020372649654746056, 0.03880017250776291, 0.0332719162106514, -0.03315247595310211, 0.08073984831571579, -0.054941315203905106, -0.00911138579249382, -0.01905883476138115, 0.04801393300294876, 0.007426462136209011, -0.014955298975110054, 0.011534263379871845, 0.011278325691819191, 0.012865140102803707, -0.02448471635580063, 0.013641485013067722, -0.07876059412956238, -0.06586132943630219, -0.08026209473609924, -0.011977889575064182, 0.01873464696109295, -0.04385067895054817, -0.024450592696666718, 0.036718543618917465, -0.007068149279803038, 0.013880359940230846, 0.008629369549453259, 0.027419470250606537, 0.016943082213401794, 0.04808218404650688, 0.06118619814515114, 0.0429634265601635, 0.033254850655794144, 0.015441580675542355, -0.015142986550927162, -0.016337363049387932, -0.06384795159101486, 0.006603195331990719, 0.07575759291648865, -0.054292939603328705, -0.045761678367853165, -0.00736674340441823, 0.016840707510709763, 0.010408137924969196, 0.02613978087902069, 0.005135818850249052, -0.026190968230366707, 0.006701305042952299, -0.02448471635580063, -0.00011530531628523022, 0.05166531354188919, -0.054941315203905106, -0.029995910823345184, -0.06876195967197418, -0.059821195900440216, -0.001321278978139162, -0.014827330596745014, -0.003634316846728325, -0.02064565010368824, 0.039789799600839615, 0.03589954227209091, -0.016141144558787346, 0.0055879754945635796, 0.004875615239143372, 0.05661344155669212, -0.0009539015591144562, 0.007272899150848389, 0.016977207735180855, -0.019519522786140442, -0.034517478197813034, 0.05282556265592575, -0.016729801893234253, 0.010937076061964035, -0.0055879754945635796, 0.06480345129966736, -0.014349579811096191, 0.009196698665618896, 0.02158408798277378, 0.001212505390867591, -0.04937893524765968, 0.0013020836049690843, -0.03712804615497589, -0.010416668839752674, 0.01579989306628704, -0.06115207448601723, -0.013795047998428345, 0.034227415919303894, -0.09575486183166504, 0.04801393300294876, -0.017224613577127457, 0.033937353640794754, -0.0012754234485328197, 0.04388480260968208, -0.015526893548667431, -0.01707105152308941, -0.041666675359010696, -0.0021509439684450626, 0.014469017274677753, -0.03624079376459122, -0.02271021530032158, -0.028955096378922462, 0.05545319244265556, -0.0462053045630455, -0.0016977208433672786, 0.017053989693522453, -0.04371417686343193, 0.022437214851379395, 0.02209596335887909, -0.058592695742845535, 0.014938236214220524, -0.039789799600839615, 0.014665236696600914, -0.033749666064977646, 0.012054670602083206, 0.061049699783325195, 0.012438577599823475, 0.023375652730464935, 0.0076781343668699265, -0.013274640776216984, -0.029620535671710968, 0.019656023010611534, 0.017949771136045456, -0.0901583582162857, 0.004457583650946617, -0.019041772931814194, -0.002412213943898678, 0.01457139290869236, 0.018666397780179977, 0.0019387288484722376, -0.03142916411161423, -0.006854867562651634, 0.00491827167570591, -0.02144758775830269, -0.0340738520026207, -0.005101693794131279, -0.06006007269024849, -0.016729801893234253, 0.03124147467315197, -0.03763991966843605, 0.009717104956507683, 0.014503142796456814, 0.00333145703189075, 0.04320230334997177, 0.02006552368402481, 0.011559857986867428, -0.032555289566516876, -0.01536479964852333, -0.031548600643873215, -0.031053787097334862, 0.029193973168730736, -0.006628789007663727, 0.018922334536910057, -0.006095585413277149, 0.04234917461872101, -0.002331166760995984, -0.004986521787941456, -0.002072029747068882, -0.01616673730313778, -0.07541634142398834, 0.038595423102378845, 0.05176768824458122, -0.0063600544817745686, -0.004453317727893591, -0.01489558070898056, 0.021311087533831596, -0.031326789408922195, -0.01916121132671833, -0.004977990407496691, 0.046410053968429565, -0.002459135837852955, -0.04569343104958534, -0.02646396867930889, -0.05569206550717354, -0.02798253297805786, -0.02497952990233898, 0.011150357313454151, -0.001468443195335567, 0.018308084458112717, -0.022539589554071426, -0.007562962360680103, 0.02342684008181095, -0.007008430082350969, -0.015671925619244576, 0.014955298975110054, -0.026890533044934273, -0.008407557383179665, -0.028767408803105354, -0.004257098771631718, -0.014298392459750175, 0.002503924770280719, -0.008027915842831135, -0.0007134266197681427, -0.023768091574311256, -0.02946697361767292, -0.0449085533618927, 0.03508054092526436, 0.04739968106150627, -0.02813609689474106, 0.07514333724975586, -0.004440520890057087, 0.0024356748908758163, 0.018973521888256073, 0.010817637667059898, -0.03479047864675522, -0.01455433014780283, 0.012720108963549137, 0.027777783572673798, -0.012993109412491322, 0.04545455425977707, 0.0571935698390007, -0.06405270099639893, -0.04170079901814461, -0.00775491539388895, 0.009264948777854443, -0.012157046236097813, -0.012319140136241913, -0.021754713729023933, 0.011739013716578484, -0.03272591531276703, 0.021345213055610657, -0.012174108065664768, -0.01967308670282364, 0.02274433895945549, 0.06418920308351517, -0.023341527208685875, -0.018427522853016853, -0.019331835210323334, 0.005400287918746471, 0.033647291362285614, 0.03528529405593872, -0.008710416965186596, -0.003627918427810073, 0.03955092281103134, -0.018376333639025688, -0.008497134782373905, -0.007835962809622288, -0.013027234002947807, 0.014579923823475838, 0.04009692370891571, 0.026054468005895615, 0.0026105656288564205, -0.016183800995349884, 0.028374971821904182, -0.005933491513133049, 0.04204205051064491, 0.03647967055439949, 0.020150836557149887, -0.04907180741429329, 0.03897079825401306, 0.06367732584476471, -0.048218682408332825, -0.047160807996988297, 0.04733143001794815, -0.03040541149675846, 0.038493044674396515, -0.042826928198337555, 0.030576037243008614, 0.03171922639012337, 0.036138419061899185, -0.023733966052532196, 0.05050506070256233, 0.0206797756254673, -0.0303712859749794, -0.0778733417391777, -0.03175335004925728, -0.008889573626220226, -0.07876059412956238, -0.04170079901814461, -0.004568489734083414, 0.08312860131263733, -0.04958368465304375, 0.007567227818071842, 0.07575759291648865, -0.012609202414751053, 0.036786794662475586, -0.004905474837869406, 0.004577021114528179, -0.061698075383901596, -0.01601317524909973, -0.015467174351215363, 0.048252806067466736, 0.02404109202325344, -0.025047780945897102, 0.018973521888256073, -0.01287367194890976, -0.014631111174821854, -0.03200928866863251, 0.011704889126121998, -0.048901185393333435, -0.030149472877383232, 0.020918650552630424, -0.0400627963244915, -0.009768293239176273, -0.05026618391275406, 0.022147150710225105, -0.039243798702955246, 0.03569479286670685, -0.05323506519198418, -0.008855448104441166, -0.04719493165612221, -0.019502460956573486, -0.0032546757720410824, -0.03171922639012337, 0.11158888041973114, -0.008420353755354881, -0.015074736438691616, 0.053678687661886215, -0.06736283004283905, -0.0024506044574081898, 0.03948267176747322, -0.018700523301959038, 0.06265357881784439, -0.00022914432338438928, 0.019843710586428642, -0.06275594979524612, 0.02769247069954872, -0.03593366965651512, -0.01992902345955372, -0.05872919410467148, -0.0151856429874897, -0.007358212023973465, 0.021038087084889412, 0.0568523183465004, 0.029193973168730736, 0.04122304916381836, 0.0378105454146862, 0.018308084458112717, -0.010578762739896774, 0.04896943271160126, 0.045249804854393005, 0.0027790579479187727, 0.002902761334553361, -0.008467275649309158, 0.07609884440898895, 0.0031949570402503014, 0.02213008888065815, 0.044055428355932236, -0.005933491513133049, -0.001121860696002841, -0.021669400855898857, -0.04309992492198944, 0.039209671318531036, -0.05289381369948387, 0.0037857466377317905, 0.00514434976503253, -0.03531941771507263, 0.005617835093289614, -0.05934344604611397, 0.007571493275463581, 0.023409778252243996, 0.03415916487574577, 0.046410053968429565, 0.004623943008482456, -0.012225296348333359, -0.02057739906013012, 0.04002867266535759, -0.00880426075309515, -0.02296615205705166, -0.07855584472417831, -0.04804805666208267, -0.02675403282046318, 0.04617118090391159, 0.048935309052467346, 0.0016209394671022892, 0.08988536149263382, 0.006057194899767637, 0.06661207973957062, -0.008940760977566242, -0.07855584472417831, -0.005856710020452738, -0.029671723023056984, -0.028289658948779106, -0.06023069843649864, -0.041598424315452576, -0.008113228715956211, -0.018000958487391472, 0.030149472877383232, -0.013189327903091908, 0.001128259114921093, -0.017693834379315376, -0.01452020462602377, 0.07439258694648743, 0.02400696650147438, 0.03136091306805611, 0.057466570287942886, -0.055589690804481506, -0.03815179690718651, 0.05992357060313225, -0.03030303679406643, 0.011320982128381729, 0.005724475719034672, -0.009913324378430843, -0.07671309262514114, 0.032623540610075, -0.0933661088347435, 0.021822962909936905, 0.10428612679243088, -0.003935043700039387, 0.006121179088950157, -0.027863096445798874, 0.033067163079977036, -0.014050985686480999, -0.002868636278435588, 0.02300027757883072, 0.0520065613090992, -0.015151518397033215, -0.06115207448601723, 0.022266589105129242, 0.016499457880854607, -0.005041974596679211, -0.0529961884021759, -0.044533178210258484, 0.014486080035567284, 0.029739974066615105, -0.007695196662098169, 0.008228400722146034, -0.015569549985229969, 0.018717585131525993, 0.011815795674920082, -0.028221409767866135, -0.03818592056632042, 0.04671718180179596, -0.04719493165612221, -0.031053787097334862, 0.0546000637114048, -0.040438175201416016, -0.0033143945038318634, 0.004297622479498386, -0.028153158724308014, -0.042246799916028976, 0.03589954227209091, 0.01783033460378647, 0.018205709755420685, -0.03168509900569916, -0.08674585074186325, -0.05470244213938713, 0.025508468970656395, 0.024638280272483826, 0.024467654526233673, 0.031616851687431335, -0.01471642404794693, -0.010228981263935566, 0.007550165522843599, -0.01032282505184412, 0.07575759291648865, 0.025081904605031013, -0.01568898744881153, -0.010587293654680252, -0.05292793735861778, 0.0021189518738538027, -0.052552562206983566, 0.020167898386716843, 0.017472021281719208, 0.007733587175607681, 0.004773240070790052, -0.04248567670583725, 0.07459733635187149, 0.04606880620121956, -0.024126403033733368, 0.020270274952054024, 0.011175950989127159, 0.03120734915137291, -0.04593230411410332, 0.03153153881430626, 0.0029731441754847765, 0.012626265175640583, 0.036138419061899185, 0.040950048714876175, -0.023187965154647827, -0.03712804615497589, -0.015740174800157547, -0.009973043575882912, -0.02296615205705166, -0.031122038140892982, -0.020748024806380272, 0.04600055515766144, 0.04385067895054817, -0.016405614092946053, 0.024092279374599457, -0.013632954098284245, -0.007434993516653776, -0.016806581988930702, -0.04552280530333519, 0.0077719781547784805, 0.009640323929488659, 0.06668032705783844, 0.0025359170977026224, -0.05241606384515762, 0.02885272167623043, -0.06538357585668564, 0.08278734982013702, 0.016217926517128944, -0.00014423161337617785, -0.024433529004454613, 0.03893667086958885, 0.05579444020986557, -0.0032269491348415613, 0.04958368465304375, -0.013061359524726868, 0.09780237078666687, 0.014221610501408577, 0.008313712663948536, 0.0024953936226665974, -0.022215401753783226, -0.03951679915189743, 0.023733966052532196, -0.007870087400078773, -0.020918650552630424, -0.004180317744612694, -0.01216557715088129, 0.032811228185892105, 0.024211715906858444, -0.004431989509612322, 0.027180595323443413, 0.017591457813978195, -0.06142507493495941, -0.08224134892225266, -0.021703526377677917, 0.014963830821216106, -0.0030008708126842976, 0.03900492191314697, -0.019331835210323334, 0.036138419061899185, -0.012796889990568161, -0.010519043542444706, 0.027777783572673798, 0.009077261202037334, 0.03381791710853577, -0.05453181639313698 ]
20,278
start_sdk.cf_r2
CFR2_Bucket
_CFR2_Bucket_ Helper function that can be assigned to each bucket. Note [AWS API reference](https://docs.aws.amazon.com/AmazonS3/latest/API) vs. [R2](https://developers.cloudflare.com/r2/data-access/s3-api/api/) Examples: >>> import os >>> os.environ['CF_R2_ACCT_ID'] = "ACT" >>> os.environ['R2_ACCESS_KEY_ID'] = "ABC" >>> os.environ['R2_SECRET_ACCESS_KEY'] = "XYZ" >>> from start_sdk import CFR2_Bucket >>> obj = CFR2_Bucket(name='test') >>> type(obj.bucket) <class 'boto3.resources.factory.s3.Bucket'>
class CFR2_Bucket(CFR2): """ _CFR2_Bucket_ Helper function that can be assigned to each bucket. Note [AWS API reference](https://docs.aws.amazon.com/AmazonS3/latest/API) vs. [R2](https://developers.cloudflare.com/r2/data-access/s3-api/api/) Examples: >>> import os >>> os.environ['CF_R2_ACCT_ID'] = "ACT" >>> os.environ['R2_ACCESS_KEY_ID'] = "ABC" >>> os.environ['R2_SECRET_ACCESS_KEY'] = "XYZ" >>> from start_sdk import CFR2_Bucket >>> obj = CFR2_Bucket(name='test') >>> type(obj.bucket) <class 'boto3.resources.factory.s3.Bucket'> """ # noqa: E501 name: str @property def bucket(self): return self.get_bucket(self.name) @property def client(self): return self.bucket.meta.client def get(self, key: str, *args, **kwargs) -> dict | None: """Assumes the key prefix exists in the bucket. See helper for [boto3 get_object](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/get_object.html) Args: key (str): Should exist in the browser Returns: dict | None: Returns `None` if not found. """ # noqa: E501 try: return self.client.get_object( Bucket=self.name, Key=key, *args, **kwargs ) except Exception: return None def fetch(self, *args, **kwargs) -> dict: """Each bucket contain content prefixes but can only be fetched incrementally, e.g. by batches. Each batch limited to a max of 1000 prefixes. Without arguments included in this call, will default to the first 1000 keys. See more details in [boto3 list-objects-v2 API docs](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/list_objects_v2.html#list-objects-v2) """ # noqa: E501 return self.client.list_objects_v2(Bucket=self.name, *args, **kwargs) def all_items(self) -> list[dict] | None: """Using pagination conventions from s3 and r2, get all prefixes found in the bucket name. Note this aggregates all `fetch()` calls, specifically limiting the response to the "Contents" key of each `fetch()` call. Such key will contain a list of dict-based prefixes.""" contents = [] counter = 1 next_token = None while True: print(f"Accessing page {counter=}") if counter == 1: res = self.fetch() elif next_token: res = self.fetch(ContinuationToken=next_token) else: print("Missing next token.") break next_token = res.get("NextContinuationToken") if res.get("Contents"): contents.extend(res["Contents"]) counter += 1 if not res["IsTruncated"]: # is False if all results returned. print("All results returned.") return contents @classmethod def filter_content( cls, filter_suffix: str, objects_list: list[dict] ) -> Iterator[dict]: """Filter objects based on a `filter_suffix` from either: 1. List of objects from `self.all_items()`; or 2. _Contents_ key of `self.fetch()`. Note that each _Contents_ field of `fetch` is a dict object, each object will contain a _Key_ field. Args: filter_suffix (str): Prefix terminates with what suffix objects_list (list[dict]): List of objects previously fetched Yields: Iterator[dict]: Filtered `objects_list` based on `filter_suffix` """ for prefixed_obj in objects_list: if key := prefixed_obj.get("Key"): if key.endswith(filter_suffix): yield prefixed_obj def upload(self, file_like: str | Path, loc: str, args: dict = {}): """Upload local `file_like` contents to r2-bucket path `loc`. Args: file_like (str | Path): Local file loc (str): Remote location args (dict, optional): Will populate `ExtraArgs` during upload. Defaults to {}. """ with open(file_like, "rb") as read_file: return self.bucket.upload_fileobj(read_file, loc, ExtraArgs=args) def download(self, loc: str, local_file: str): """With a r2-bucket `loc`, download contents to `local_file`. Args: loc (str): Origin file to download local_file (str): Where to download, how to name downloaded file """ with open(local_file, "wb") as write_file: return self.bucket.download_fileobj(loc, write_file) def get_root_prefixes(self): """See adapted recipe from boto3 re: top-level [prefixes](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#list-top-level-common-prefixes-in-amazon-s3-bucket). Returns: list[str]: Matching prefixes in the root of the bucket. """ # noqa: E501 _objs = [] paginator = self.client.get_paginator("list_objects") result = paginator.paginate(Bucket=self.name, Delimiter="/") for prefix in result.search("CommonPrefixes"): _objs.append(prefix.get("Prefix")) # type: ignore return _objs
(_env_file: Union[str, os.PathLike, List[Union[str, os.PathLike]], Tuple[Union[str, os.PathLike], ...], NoneType] = '<object object at 0x7f74a8a56270>', _env_file_encoding: Optional[str] = None, _env_nested_delimiter: Optional[str] = None, _secrets_dir: Union[str, os.PathLike, NoneType] = None, *, acct: str = 'ACT', r2_region: str = 'apac', r2_access_key: str = 'ABC', r2_secret_key: str = 'XYZ', name: str) -> None
[ -0.01733635552227497, -0.04542737826704979, -0.14215600490570068, -0.0037107830867171288, 0.025650622323155403, -0.011325151659548283, -0.026538042351603508, 0.030637070536613464, 0.06604930013418198, -0.03860270977020264, 0.02250239998102188, 0.04517383128404617, -0.008303702808916569, 0.02531255967915058, -0.0111983772367239, 0.023009495809674263, 0.02510126866400242, 0.013385230675339699, 0.031144166365265846, 0.03139771521091461, -0.051597051322460175, 0.033785294741392136, 0.04914608597755432, -0.007817734964191914, 0.027636749669909477, 0.021604416891932487, 0.014779745601117611, 0.008805516175925732, 0.025249172002077103, -0.016607405617833138, -0.03226400539278984, -0.0284185241907835, -0.01676587201654911, 0.06427446007728577, 0.02296723797917366, -0.06680994480848312, 0.023326432332396507, 0.0034757228568196297, -0.044075123965740204, 0.05045608431100845, 0.0025354817043989897, 0.04118044674396515, 0.026559170335531235, -0.08426250517368317, 0.07948735356330872, 0.05501995235681534, -0.0008438400109298527, 0.01392402034252882, 0.020368369296193123, 0.0003859346325043589, 0.04094802960753441, 0.02389691397547722, -0.036426421254873276, -0.03190481290221214, -0.006703179795295, -0.014716357924044132, -0.019364740699529648, 0.019449258223176003, -0.050794150680303574, 0.05197737365961075, 0.0284185241907835, 0.005031346343457699, 0.026854977011680603, -0.0009019447606988251, -0.02808045968413353, -0.0022766513284295797, -0.030172232538461685, -0.03135545551776886, -0.0463993139564991, 0.04623028263449669, 0.010141926817595959, -0.01363877858966589, 0.007918098010122776, -0.014843132346868515, -0.027826910838484764, 0.005688987206667662, 0.004619330633431673, -0.0012235019821673632, 0.0005328473052941263, -0.03610948473215103, -0.0038507627323269844, -0.023685624822974205, -0.0023321148473769426, -0.08438928425312042, 0.05793575569987297, 0.020653611049056053, 0.01573055051267147, -0.03927883878350258, -0.007342332508414984, 0.04390609264373779, -0.07957186549901962, 0.027763525024056435, -0.007912815548479557, -0.011061038821935654, 0.025692880153656006, -0.05037156865000725, -0.042342543601989746, -0.09685540199279785, -0.01694547012448311, -0.005242636427283287, -0.009185838513076305, -0.0023096653167158365, 0.025291429832577705, 0.020030304789543152, 0.040673352777957916, -0.010744103230535984, -0.06871155649423599, -0.015107245184481144, 0.010870877653360367, 0.026728203520178795, -0.0428285114467144, 0.013828939758241177, 0.03984931856393814, 0.03372190520167351, -0.013469746336340904, -0.03991270810365677, 0.017811758443713188, 0.029179168865084648, -0.01547700259834528, -0.046357057988643646, 0.0480051189661026, -0.006439066957682371, 0.010548660531640053, 0.038158997893333435, 0.012202005833387375, -0.02147764340043068, 0.02854529768228531, 0.03496851772069931, 0.011504747904837132, -0.010316241532564163, -0.00750608230009675, -0.00588443037122488, -0.06541542708873749, -0.04111706092953682, 0.049357376992702484, -0.004989088512957096, 0.029179168865084648, 0.02962287701666355, -0.03154561668634415, 0.07538831979036331, 0.06068252772092819, -0.007104631047695875, 0.024446269497275352, -0.05349866300821304, -0.0816425085067749, -0.02113957889378071, 0.022544657811522484, -0.03427125886082649, -0.0019544337410479784, -0.057851240038871765, -0.024087075144052505, 0.02801707200706005, 0.07424735277891159, 0.07010606676340103, -0.028397394344210625, -0.016575710847973824, -0.017146194353699684, -0.015181196853518486, -0.03403884172439575, 0.0015054421965032816, -0.01945982128381729, 0.002048193709924817, -0.0288199745118618, -0.04253270477056503, 0.002321550389751792, -0.007801888510584831, -0.01472692284733057, -0.032411906868219376, -0.025333687663078308, -0.015646034851670265, -0.009666523896157742, 0.00535620516166091, -0.05075189098715782, -0.0032565093133598566, -0.0223967544734478, 0.08907992392778397, -0.024277236312627792, -0.0027784653939306736, -0.006227776873856783, -0.043039802461862564, 0.005321870557963848, -0.07589542120695114, 0.0025817013811320066, -0.016290469095110893, 0.00021228055993560702, 0.053540922701358795, 0.019142886623740196, 0.025016753003001213, 0.07399380952119827, 0.031080778688192368, 0.019491516053676605, 0.014853697270154953, 0.02090715989470482, 0.050498344004154205, 0.009756322018802166, -0.05252672731876373, 0.03617287054657936, 0.00827200897037983, -0.005092092324048281, 0.07728993147611618, -0.05134350433945656, 0.06457027047872543, -0.007104631047695875, 0.004355217795819044, 0.0367644838988781, 0.0044608633033931255, 0.024657558649778366, -0.005720680579543114, -0.04868124797940254, 0.058485109359025955, -0.05485092103481293, 0.02613659016788006, -0.009286201559007168, -0.028629813343286514, 0.02158328704535961, 0.005409027449786663, 0.004363141488283873, 0.004172980319708586, 0.015973534435033798, -0.003238021396100521, 0.08481185883283615, -0.034651581197977066, -0.03885625675320625, -0.011853376403450966, -0.03346835821866989, 0.028059329837560654, 0.048554472625255585, -0.0050841690972447395, 0.006534147541970015, -0.04265948012471199, 0.014304342679679394, -0.02486884966492653, 0.051597051322460175, 0.027573363855481148, 0.0352431945502758, -0.03737722709774971, 0.03714480623602867, 0.049061570316553116, 0.0037662468384951353, -0.01895272545516491, -0.0033515898976475, -0.012022408656775951, 0.014399423263967037, 0.0028709047473967075, -0.05645672604441643, -0.005604471080005169, 0.03190481290221214, 0.021551594138145447, 0.024720946326851845, -0.029770780354738235, 0.06380962580442429, 0.038328032940626144, -0.020938852801918983, 0.024425139650702477, 0.006771849002689123, -0.06981026381254196, -0.029327072203159332, -0.06668316572904587, 0.004172980319708586, -0.008203339762985706, -0.010522249154746532, -0.035686906427145004, 0.01383950375020504, 0.010469426400959492, -0.020368369296193123, 0.03211610019207001, 0.014283213764429092, 0.01808643527328968, -0.017832888290286064, 0.025228042155504227, 0.09998249262571335, 0.017769500613212585, -0.04335673525929451, 0.03788432106375694, -0.045385122299194336, 0.008102976717054844, -0.023178528994321823, -0.00007659267430426553, -0.07171187549829483, -0.04099028557538986, -0.006703179795295, 0.01125119999051094, 0.010976523160934448, -0.021678367629647255, 0.08214960992336273, -0.049526408314704895, -0.008826646022498608, 0.006090438459068537, -0.006914469879120588, 0.016924340277910233, -0.03370077908039093, -0.022079819813370705, -0.0176215972751379, -0.03851819410920143, 0.04219464212656021, -0.011694909073412418, -0.07082445174455643, -0.03949012607336044, 0.06393639743328094, -0.005910841748118401, -0.07526154816150665, 0.05375220999121666, 0.0630912333726883, 0.02389691397547722, 0.020315546542406082, 0.0015529824886471033, 0.08202283084392548, -0.015160067938268185, -0.015889018774032593, 0.07513477653265, -0.021160706877708435, 0.0053377170115709305, 0.008763258345425129, -0.01251894049346447, -0.010231724940240383, -0.021720627322793007, -0.016047487035393715, 0.055442534387111664, -0.023812398314476013, 0.032876744866371155, -0.04732898995280266, 0.019037241116166115, -0.020463449880480766, 0.019797885790467262, 0.04766705632209778, -0.029327072203159332, -0.05873866006731987, 0.05185060203075409, 0.0008728923858143389, -0.0058685834519565105, -0.015804503113031387, -0.02848191000521183, -0.01987183839082718, 0.03737722709774971, 0.010691281408071518, -0.0061643896624445915, 0.030129974707961082, -0.027531106024980545, 0.04139173775911331, 0.001637498615309596, 0.04804737865924835, -0.03188368305563927, -0.010316241532564163, 0.018403371796011925, -0.08591057360172272, -0.01340635959059, 0.07302187383174896, -0.024319496005773544, -0.005794632248580456, -0.03186255320906639, 0.0384548045694828, -0.015086116269230843, 0.06211930140852928, 0.06664091348648071, 0.07162735611200333, -0.053371887654066086, -0.046357057988643646, -0.006011204328387976, 0.014283213764429092, -0.006528865545988083, 0.01963941939175129, -0.04164528846740723, -0.034081101417541504, 0.004434451926499605, 0.033278197050094604, -0.010347934439778328, -0.017241274937987328, 0.01888933777809143, -0.028038201853632927, -0.06541542708873749, -0.033383842557668686, -0.040504321455955505, -0.039426740258932114, -0.07044412940740585, 0.02279820665717125, -0.018276596441864967, -0.008684025146067142, -0.012677408754825592, -0.030066587030887604, 0.06211930140852928, 0.033954326063394547, 0.044075123965740204, -0.023051753640174866, 0.00534035824239254, 0.01363877858966589, 0.015022728592157364, 0.016723614186048508, 0.013216198422014713, 0.03915206342935562, 0.015751680359244347, 0.03268658369779587, 0.034355778247117996, 0.03517980873584747, -0.03008771687746048, -0.03822238743305206, -0.03365851938724518, -0.03048916719853878, -0.02922142669558525, 0.016005227342247963, -0.047920603305101395, -0.013427488505840302, -0.02326304465532303, 0.03796883672475815, 0.03215835988521576, 0.014663536101579666, -0.047751571983098984, 0.07264155149459839, 0.025059010833501816, -0.00427862536162138, 0.02791142836213112, -0.0631757527589798, -0.08899540454149246, -0.01773780770599842, 0.02791142836213112, -0.02389691397547722, 0.019100628793239594, 0.011578699573874474, 0.016036922112107277, -0.008250880055129528, 0.0777125135064125, -0.029496103525161743, -0.03841254860162735, 0.028841104358434677, 0.015307970345020294, -0.005847454536706209, -0.062161557376384735, -0.002586983609944582, -0.008488581515848637, 0.010057410225272179, -0.008805516175925732, 0.026516912505030632, 0.01552982535213232, -0.08506540954113007, -0.030193360522389412, 0.01156813558191061, 0.019364740699529648, -0.03089061938226223, -0.01854071021080017, 0.03847593441605568, 0.0252069141715765, -0.0240025594830513, 0.0007368743536062539, -0.02658030018210411, -0.0074532595463097095, -0.011314586736261845, 0.0047144112177193165, -0.03834915906190872, 0.02497449517250061, 0.06296446174383163, -0.016438372433185577, -0.0288199745118618, 0.008541404269635677, -0.005593906622380018, -0.028228363022208214, -0.040229640901088715, -0.030193360522389412, 0.05075189098715782, 0.012687972746789455, -0.03205271437764168, -0.07475445419549942, 0.007252533920109272, 0.012275957502424717, 0.03667996823787689, -0.010659587569534779, -0.0351586788892746, 0.04453996196389198, 0.027826910838484764, 0.006491889711469412, -0.01917457953095436, -0.030341263860464096, -0.013617649674415588, -0.02366449497640133, -0.07614896446466446, -0.02831287868320942, 0.060048658400774, 0.022375626489520073, -0.0035549565218389034, -0.018625225871801376, -0.03978593274950981, -0.0396169014275074, -0.024657558649778366, -0.07365573942661285, 0.01670248620212078, 0.006486607249826193, 0.031017392873764038, -0.05713285505771637, 0.0423848032951355, 0.0061010029166936874, 0.03794771060347557, -0.05197737365961075, 0.01895272545516491, 0.0252069141715765, -0.053709954023361206, 0.03473610058426857, -0.03858157992362976, 0.04356802627444267, -0.016628533601760864, 0.044244155287742615, -0.027657879516482353, -0.03904641792178154, 0.01825546845793724, -0.03118642419576645, -0.027531106024980545, 0.02113957889378071, -0.0023796551395207644, -0.017832888290286064, -0.09643281996250153, -0.033320456743240356, 0.020347241312265396, -0.06258413940668106, -0.02991868369281292, 0.029327072203159332, 0.036553192883729935, 0.010849748738110065, -0.019195709377527237, 0.0006701858947053552, -0.061696719378232956, 0.05125898867845535, -0.04025077074766159, 0.025249172002077103, 0.010633176192641258, -0.04335673525929451, 0.01153644174337387, -0.025756267830729485, -0.023579979315400124, -0.02681271918118, 0.016565147787332535, -0.03651093691587448, 0.031841423362493515, 0.004846467636525631, -0.059457045048475266, -0.014536761678755283, -0.044751252979040146, -0.026728203520178795, -0.013110552914440632, 0.06803542375564575, 0.0031138884369283915, 0.008620637468993664, 0.02888336218893528, 0.015593212097883224, 0.058485109359025955, 0.03921544924378395, -0.008235033601522446, -0.03146110102534294, -0.0615699477493763, 0.004175621550530195, 0.017146194353699684, -0.043314479291439056, 0.042004480957984924, -0.0165968406945467, 0.06482381373643875, -0.04572318494319916, 0.05269576236605644, -0.023812398314476013, 0.04973769932985306, -0.024213850498199463, 0.004936265759170055, -0.08050154149532318, -0.013533133082091808, -0.003916791174560785, 0.02814384736120701, 0.08455831557512283, -0.03150336071848869, -0.0014803515514358878, 0.023558851331472397, 0.049357376992702484, 0.019966918975114822, 0.05852736905217171, -0.008044872432947159, 0.0030478602275252342, -0.0006305690039880574, 0.03908867761492729, 0.01809700019657612, 0.041074804961681366, -0.021636109799146652, 0.016227083280682564, 0.021678367629647255, -0.03927883878350258, 0.01013664435595274, -0.08274121582508087, 0.050667375326156616, -0.00255529023706913, 0.04563866928219795, -0.06942994147539139, -0.012117489241063595, -0.005292817950248718, -0.038666095584630966, 0.033912066370248795, 0.028439652174711227, -0.005147555842995644, 0.013659907504916191, 0.009502774104475975, -0.044878024607896805, -0.06972574442625046, 0.013026037253439426, 0.03302465006709099, -0.0044502983801066875, -0.04215238243341446, -0.015815066173672676, -0.018181515857577324, 0.014800874516367912, 0.035919323563575745, 0.02101280353963375, 0.024784334003925323, -0.003343666438013315, 0.005115862470120192, -0.020812079310417175, -0.03600383922457695, 0.026326751336455345, 0.03828577324748039, -0.016322163864970207, -0.0023558849934488535, 0.007411001715809107, -0.006027051247656345, -0.004151851404458284, 0.011356844566762447, -0.05430156737565994, 0.025228042155504227, 0.019385870546102524, -0.035285454243421555, -0.020336676388978958, -0.015075551345944405, -0.0036289081908762455, 0.07365573942661285, -0.08950250595808029, 0.000022511478164233267, 0.007706807926297188, -0.024213850498199463, 0.006338704377412796, -0.0032802794594317675, 0.021805142983794212, -0.0639786571264267, 0.10209539532661438, -0.05987962707877159, 0.052399955689907074, 0.033341582864522934, -0.0026028305292129517, 0.03146110102534294, -0.03807448223233223, 0.02147764340043068, 0.01900554820895195, -0.03236965090036392, -0.04677963629364967, 0.0687960684299469, -0.09186895191669464, -0.04428641498088837, 0.026369009166955948, -0.03858157992362976, 0.04758254066109657, -0.01992465928196907, -0.028038201853632927, 0.07264155149459839, -0.011409667320549488, 0.009312612935900688, -0.046948667615652084, -0.00875797588378191, 0.010516966693103313, -0.032644327729940414, 0.0303835216909647, -0.02641126699745655, 0.03796883672475815, -0.0663028433918953, -0.0025750985369086266, 0.04181431978940964, -0.020410627126693726, -0.03566577658057213, 0.05062511935830116, -0.003018807852640748, 0.0150121646001935, 0.06131639704108238, 0.06190801039338112, 0.0198084507137537, 0.0045163268223404884, -0.01047470886260271, -0.03594045341014862, -0.0070570907555520535, 0.03796883672475815, -0.012254828587174416, 0.022988367825746536, 0.02009369246661663, -0.02129804529249668, 0.016047487035393715, -0.02567175216972828, 0.05983736738562584, 0.03885625675320625, -0.0004179583047516644, 0.01941756345331669, -0.01746313087642193, -0.03473610058426857, -0.04126496613025665, 0.014980470761656761, -0.016047487035393715, 0.016121437773108482, -0.00614326074719429, -0.06351381540298462, 0.02934820018708706, 0.017589904367923737, -0.03682786971330643, 0.007072937209159136, -0.038328032940626144, 0.03657432273030281, -0.012973214499652386, 0.041074804961681366, -0.010934264399111271, 0.00858366210013628, 0.04580770060420036, -0.023009495809674263, -0.049357376992702484, -0.0020666816271841526, 0.023749012500047684, 0.02062191814184189, 0.05387898534536362, 0.025798525661230087, -0.0599641427397728, 0.017146194353699684, 0.015170631930232048, 0.02624223567545414, 0.00020683323964476585, 0.03549674525856972, 0.015149503014981747, 0.001592599437572062, -0.0005883109988644719, 0.016977163031697273, 0.04994899034500122, 0.049061570316553116, 0.004687999840825796, -0.031313199549913406, 0.02691836468875408, -0.0704863891005516, 0.04124383628368378, 0.022946109995245934, 0.029073523357510567, -0.03927883878350258, -0.004500479903072119, 0.04690641164779663, -0.09229153394699097, 0.058358337730169296, -0.036553192883729935, -0.01711450144648552, 0.045680928975343704, -0.018413934856653214, -0.02641126699745655, -0.021805142983794212, -0.011008216068148613, -0.0036077790427953005, 0.021033933386206627, 0.0376519039273262, 0.03353174403309822, 0.019734499976038933, 0.040673352777957916, 0.064781554043293, -0.019797885790467262, 0.023875785991549492, -0.0023175887763500214, -0.02979191020131111, -0.01492764800786972, -0.04111706092953682, 0.007215558085590601, -0.010675434023141861, -0.008699871599674225, -0.016322163864970207, -0.023284172639250755, 0.025418203324079514, 0.02590417116880417, 0.100827656686306, 0.03484174236655235, 0.02262917347252369, -0.014462810009717941 ]
20,279
start_sdk.cf_r2
all_items
Using pagination conventions from s3 and r2, get all prefixes found in the bucket name. Note this aggregates all `fetch()` calls, specifically limiting the response to the "Contents" key of each `fetch()` call. Such key will contain a list of dict-based prefixes.
def all_items(self) -> list[dict] | None: """Using pagination conventions from s3 and r2, get all prefixes found in the bucket name. Note this aggregates all `fetch()` calls, specifically limiting the response to the "Contents" key of each `fetch()` call. Such key will contain a list of dict-based prefixes.""" contents = [] counter = 1 next_token = None while True: print(f"Accessing page {counter=}") if counter == 1: res = self.fetch() elif next_token: res = self.fetch(ContinuationToken=next_token) else: print("Missing next token.") break next_token = res.get("NextContinuationToken") if res.get("Contents"): contents.extend(res["Contents"]) counter += 1 if not res["IsTruncated"]: # is False if all results returned. print("All results returned.") return contents
(self) -> list[dict] | None
[ -0.04876549914479256, -0.02167743258178234, -0.14870509505271912, -0.025848856195807457, 0.018239064142107964, 0.07068728655576706, -0.015315578319132328, -0.059900928288698196, 0.06642859429121017, -0.024051129817962646, 0.018186703324317932, 0.052989281713962555, -0.007836689241230488, -0.008635193109512329, 0.006933462340384722, 0.020717483013868332, 0.009992214851081371, 0.01979243941605091, 0.03228925168514252, 0.03759516403079033, -0.02614556811749935, 0.07274681329727173, 0.05393178015947342, 0.017558371648192406, -0.0018129978561773896, -0.030020277947187424, 0.016825318336486816, -0.026128115132451057, 0.04262181371450424, 0.0009904946200549603, -0.019530635327100754, -0.012889520265161991, -0.0178550835698843, 0.056898899376392365, -0.017698001116514206, -0.033476099371910095, 0.06688238680362701, -0.03843293711543083, -0.03359827771782875, 0.07096654176712036, -0.000962132471613586, -0.0012795707443729043, 0.02494126558303833, -0.07979808747768402, 0.0694655254483223, 0.016825318336486816, 0.03073587827384472, 0.015813007950782776, 0.031137311831116676, 0.005297182593494654, 0.028781069442629814, 0.05236095190048218, -0.012269916012883186, -0.04398319870233536, 0.025342699140310287, -0.017889991402626038, -0.007129815872758627, -0.004996107425540686, -0.022305764257907867, 0.08384733647108078, 0.0034078252501785755, -0.03502947464585304, 0.0038398029282689095, -0.021153824403882027, 0.007339260075241327, -0.0054411753080785275, 0.01741001568734646, -0.045484211295843124, -0.0742129236459732, 0.0007608700543642044, 0.01639770343899727, 0.005951694678515196, -0.030020277947187424, -0.014085095375776291, -0.05724797397851944, -0.009887493215501308, -0.001882812473922968, -0.014477802440524101, -0.006348765455186367, -0.018256518989801407, -0.055432792752981186, -0.007771237753331661, -0.015673378482460976, -0.007234537973999977, 0.026616817340254784, 0.01244445238262415, 0.006898555438965559, -0.031730737537145615, 0.0025373243261128664, 0.09438934177160263, -0.040248118340969086, 0.02204396016895771, -0.015158494934439659, 0.016825318336486816, 0.0018064527539536357, -0.01864049769937992, -0.0511741004884243, -0.060808517038822174, -0.06429924815893173, 0.00017140030104201287, -0.038223493844270706, -0.009093351662158966, 0.053408168256282806, -0.014730880968272686, 0.015114860609173775, -0.0447162501513958, -0.03354591503739357, -0.0203858632594347, 0.02696589007973671, 0.06660313159227371, -0.03433132916688919, 0.009966034442186356, 0.02825745940208435, 0.014538890682160854, 0.016921313479542732, -0.0043088700622320175, 0.03658284991979599, -0.010140570811927319, -0.04265671968460083, -0.05019669607281685, 0.0278385728597641, -0.01401528064161539, 0.06140194088220596, 0.010350014083087444, 0.009433697909116745, -0.015978816896677017, 0.01647624559700489, -0.0016340980073437095, 0.00035561813274398446, 0.026616817340254784, 0.014643612317740917, 0.029688658192753792, -0.08817584067583084, -0.06866265833377838, 0.05476955324411392, -0.018047073855996132, 0.03351100906729698, 0.01850087009370327, -0.02963629737496376, 0.026948435232043266, -0.0007641426054760814, 0.01067290734499693, 0.014599977992475033, -0.0020606215111911297, -0.033249203115701675, -0.029060328379273415, 0.05784139782190323, -0.003082751063629985, 0.006824376992881298, -0.04890512675046921, -0.003656539600342512, 0.034401144832372665, 0.03509929031133652, 0.0010292199440300465, -0.05319872498512268, 0.004782299976795912, -0.04140005633234978, -0.008255576714873314, -0.07176940888166428, -0.02347515895962715, -0.00476484652608633, 0.005061558447778225, -0.03321429714560509, -0.05557242035865784, -0.01562974415719509, 0.00609568739309907, -0.03272559493780136, -0.02752440609037876, -0.03450586646795273, -0.014739607460796833, -0.0004467043618205935, 0.0226373840123415, -0.043738845735788345, -0.024243120104074478, 0.0028296730015426874, 0.07149015367031097, -0.034959662705659866, 0.006597479805350304, 0.010254019871354103, -0.04290107265114784, -0.02480163611471653, -0.09529692679643631, -0.006562572438269854, -0.040527377277612686, -0.0017988168401643634, 0.012025564908981323, 0.003711082274094224, 0.03124203346669674, 0.03958487883210182, 0.03696683049201965, -0.03516910597681999, -0.011266331188380718, -0.0185532309114933, 0.027716396376490593, -0.00913698598742485, -0.059621669352054596, -0.0069509162567555904, 0.01979243941605091, -0.0018948118668049574, 0.020961834117770195, -0.07190904021263123, 0.017357654869556427, -0.021066555753350258, -0.014809422194957733, 0.04230764880776405, 0.012680076994001865, -0.027768757194280624, -0.034628041088581085, -0.05058067664504051, 0.06203027442097664, -0.035553086549043655, 0.03902636095881462, -0.024452563375234604, -0.0036347226705402136, -0.02867634780704975, 0.03194018080830574, 0.007836689241230488, 0.0061087775975465775, 0.05435066670179367, -0.052989281713962555, 0.0399339497089386, -0.0728166252374649, -0.0201066043227911, -0.010620546527206898, -0.008190125226974487, 0.03340628743171692, 0.0458332858979702, -0.005781521555036306, 0.004852114710956812, -0.049114570021629333, 0.03169582784175873, -0.04202838987112045, 0.048940036445856094, 0.01171139907091856, 0.04928910732269287, -0.03331901878118515, 0.017418742179870605, 0.01794235222041607, 0.04887022078037262, -0.005214278120547533, -0.02553468942642212, 0.008766096085309982, -0.03293503820896149, 0.028362181037664413, -0.08978157490491867, 0.04754374176263809, -0.016214441508054733, 0.03270814195275307, 0.018064528703689575, 0.0032834678422659636, 0.026058299466967583, 0.03843293711543083, 0.029339585453271866, -0.021223638206720352, 0.02944430708885193, -0.06206518039107323, -0.05361761152744293, -0.05379214882850647, -0.000016516198229510337, 0.005528443492949009, 0.042586907744407654, -0.0012359366519376636, 0.018343785777688026, 0.011938296258449554, -0.011074340902268887, 0.04492569714784622, 0.03551817685365677, 0.00846501998603344, -0.031172219663858414, 0.05728287994861603, 0.04318033158779144, 0.013945466838777065, 0.018535776063799858, -0.021747248247265816, -0.024836543947458267, 0.0402132086455822, 0.00430232472717762, 0.015978816896677017, -0.09508748352527618, -0.020176419988274574, -0.005039741285145283, 0.01774163544178009, -0.0022187952417880297, -0.029165050014853477, 0.042412370443344116, -0.07644698768854141, 0.032376520335674286, 0.03787441924214363, -0.021642526611685753, 0.018029620870947838, -0.011109248735010624, -0.015324304811656475, -0.008888271637260914, -0.08978157490491867, 0.007256355136632919, -0.005947331432253122, -0.03056134097278118, -0.03790932893753052, 0.023492613807320595, 0.03647812828421593, -0.04290107265114784, 0.002227522199973464, 0.041260428726673126, 0.006139321252703667, 0.03279540687799454, 0.05099956691265106, 0.053408168256282806, 0.015865368768572807, -0.015472660772502422, -0.002886397298425436, -0.041434966027736664, 0.00959078036248684, 0.02811782993376255, -0.019565541297197342, -0.05159299075603485, -0.034715309739112854, -0.008146490901708603, 0.05756213888525963, -0.0075705209746956825, -0.0004715212562587112, -0.06471813470125198, 0.06471813470125198, 0.000013235116966825444, 0.0011301238555461168, 0.061681199818849564, -0.01790744438767433, -0.05599131062626839, 0.07379402965307236, 0.010899804532527924, 0.00402088463306427, 0.023492613807320595, -0.038083866238594055, -0.0832190066576004, 0.05368742719292641, -0.047788094729185104, -0.023544974625110626, 0.027768757194280624, 0.00764906220138073, 0.028082923963665962, -0.00011644857295323163, 0.03199253976345062, -0.039096176624298096, 0.013395676389336586, 0.019687717780470848, -0.02364969626069069, -0.01092598494142294, 0.07602810114622116, -0.01914665475487709, 0.0014802877558395267, -0.07763383537530899, 0.02001933753490448, 0.005467355716973543, 0.0671965554356575, 0.09299305081367493, 0.10821262747049332, 0.008046132512390614, 0.005236094817519188, -0.043285053223371506, 0.0060258726589381695, 0.034959662705659866, 0.03022972121834755, -0.04715976119041443, -0.04789281636476517, 0.004485588055104017, 0.036338500678539276, -0.039131082594394684, 0.02659936249256134, 0.014469075947999954, 0.028746161609888077, -0.015202129259705544, -0.057178158313035965, -0.0455540269613266, -0.010786355473101139, -0.02687862142920494, 0.012269916012883186, -0.007317442912608385, 0.005790248513221741, -0.00933770276606083, -0.03351100906729698, 0.06216990202665329, 0.010454736649990082, -0.010690360330045223, 0.031119858846068382, -0.00006524665514007211, 0.049952346831560135, 0.0011944841826334596, 0.024225667119026184, -0.018902303650975227, 0.018465962260961533, 0.028082923963665962, 0.035221464931964874, 0.05333835631608963, 0.024819090962409973, 0.0009850403293967247, -0.03377281129360199, -0.026023391634225845, 0.02604084648191929, -0.07407329231500626, -0.020595306530594826, -0.04890512675046921, 0.039829228073358536, -0.026389919221401215, -0.020263688638806343, 0.004760483279824257, -0.025918669998645782, -0.08670973032712936, 0.023300623521208763, -0.0525703951716423, -0.02310863323509693, 0.02747204527258873, 0.01085617020726204, -0.10060284286737442, 0.008552288636565208, 0.005388814490288496, 0.012278642505407333, -0.004655761178582907, 0.008600286208093166, 0.05801593139767647, 0.013561486266553402, 0.0649624839425087, 0.004590310156345367, -0.06391526758670807, 0.028781069442629814, 0.049219291657209396, 0.041574593633413315, -0.059342410415410995, 0.003516910597681999, -0.03225434571504593, 0.01774163544178009, -0.03427897021174431, 0.03422660753130913, -0.011344872415065765, -0.07721494883298874, -0.04230764880776405, 0.030351897701621056, 0.03169582784175873, -0.018029620870947838, -0.00939006358385086, 0.005201187916100025, 0.0016002815682440996, -0.010664179921150208, 0.020263688638806343, -0.03902636095881462, 0.003488548332825303, 0.047508835792541504, 0.014809422194957733, -0.030037732794880867, 0.009145712479948997, 0.033755358308553696, -0.00807231292128563, -0.08929287642240524, -0.019914614036679268, 0.01808198168873787, -0.060948144644498825, 0.02572667971253395, 0.01830887980759144, 0.046601247042417526, 0.04785791039466858, -0.03340628743171692, -0.024120943620800972, 0.05120901018381119, 0.0022864281199872494, 0.07128071039915085, -0.016764231026172638, 0.012409545481204987, -0.03714136779308319, -0.04869568347930908, 0.07267700135707855, -0.03365063667297363, -0.048067353665828705, -0.052989281713962555, -0.001999533735215664, -0.05665455013513565, -0.04202838987112045, 0.07449217885732651, -0.019949521869421005, 0.008355935104191303, -0.03036935068666935, 0.0056506190448999405, -0.0396546944975853, -0.018849942833185196, -0.050266511738300323, 0.05190715566277504, -0.007561794016510248, -0.02600593864917755, -0.01808198168873787, 0.03612905740737915, -0.011973204091191292, 0.02434784173965454, -0.05309400334954262, 0.022986456751823425, 0.02392895519733429, -0.05274493247270584, 0.040283024311065674, 0.0076621524058282375, 0.021642526611685753, 0.007701423019170761, 0.026948435232043266, 0.0030151179526001215, 0.009896219708025455, 0.059342410415410995, -0.02438274957239628, 0.019408458843827248, 0.01159795094281435, -0.019199015572667122, 0.04150478169322014, -0.026581909507513046, -0.008268666453659534, 0.0447162501513958, -0.048486240208148956, -0.006388036068528891, 0.06349638104438782, -0.016380250453948975, 0.03202744945883751, -0.03194018080830574, -0.013718568719923496, -0.0469503179192543, 0.031207125633955002, 0.021014194935560226, 0.04251709207892418, 0.010035849176347256, -0.014905417338013649, -0.0348723940551281, 0.010096936486661434, -0.03602433577179909, 0.010969619266688824, -0.018570683896541595, -0.03447096049785614, -0.053408168256282806, -0.0032703776378184557, -0.03623377904295921, 0.01138850674033165, -0.015245763584971428, -0.006497121416032314, -0.03906127065420151, 0.02904287353157997, -0.019914614036679268, -0.014678520150482655, 0.044018104672431946, 0.02949666790664196, 0.07539977133274078, 0.01895466446876526, 0.03331901878118515, -0.010376195423305035, -0.03934052586555481, 0.04384356737136841, -0.022707199677824974, -0.005026651080697775, 0.03644322231411934, 0.018343785777688026, 0.013247320428490639, -0.06374073028564453, 0.023579880595207214, -0.06499738991260529, 0.038258399814367294, -0.00008897270890884101, -0.00860464945435524, -0.051104288548231125, -0.04136515036225319, -0.011650311760604382, 0.05281474441289902, 0.03829330950975418, -0.05253548547625542, 0.012854613363742828, 0.003780897008255124, 0.019949521869421005, -0.005746614187955856, 0.0573526956140995, 0.0044005014933645725, 0.007797418162226677, 0.009948580525815487, 0.013474217616021633, 0.001759546110406518, 0.021066555753350258, 0.01974007859826088, 0.0015610108384862542, 0.007867232896387577, -0.0671965554356575, 0.02871125377714634, -0.07040802389383316, 0.08587195724248886, -0.044436994940042496, 0.04862586781382561, -0.03092786855995655, 0.02609320729970932, 0.03801405057311058, -0.02227085828781128, -0.0017442741664126515, 0.024696914479136467, -0.010236565954983234, 0.016607148572802544, 0.00933770276606083, -0.01509740762412548, -0.007566157262772322, 0.012348457239568233, 0.030823146924376488, 0.013002969324588776, -0.026442280039191246, -0.0728166252374649, -0.03584979847073555, 0.015603562816977501, 0.11428650468587875, 0.016825318336486816, 0.022899188101291656, 0.009180620312690735, 0.016039904206991196, 0.01403273455798626, 0.0033772813621908426, 0.027716396376490593, 0.0205254927277565, -0.022340672090649605, -0.034767672419548035, 0.003728535957634449, -0.023160994052886963, -0.025237977504730225, 0.03742062672972679, -0.025150710716843605, -0.0023933318443596363, 0.019338645040988922, -0.022305764257907867, 0.007343623321503401, -0.002491508610546589, -0.019530635327100754, 0.0807056799530983, -0.08077549189329147, -0.021153824403882027, 0.018151795491576195, -0.011100521311163902, 0.022078868001699448, 0.016807865351438522, 0.00932024884968996, -0.04338977485895157, 0.059377316385507584, -0.0038507115095853806, 0.040701910853385925, 0.05700362101197243, -0.017889991402626038, 0.015594836324453354, -0.033615730702877045, -0.0612972192466259, 0.00026712266844697297, 0.00973040983080864, -0.04202838987112045, 0.026791352778673172, -0.04007358103990555, -0.02595357783138752, -0.014914143830537796, 0.024504924193024635, 0.07798290997743607, -0.013352042064070702, -0.003942343406379223, 0.049673087894916534, 0.011170336045324802, 0.06593988835811615, -0.05375724285840988, -0.026808805763721466, -0.006545118987560272, -0.0300900936126709, 0.0006365128210745752, -0.055153533816337585, 0.0005429721204563975, -0.05250057950615883, -0.044297363609075546, 0.01576937362551689, 0.04094626381993294, -0.06604461371898651, -0.02811782993376255, 0.019670262932777405, -0.009032264351844788, 0.02356242761015892, 0.08049623668193817, 0.04897494241595268, 0.03537854924798012, -0.0014541072305291891, -0.0024173306301236153, 0.010184205137193203, 0.027803665027022362, -0.025342699140310287, 0.034715309739112854, 0.016327889636158943, -0.03686210885643959, -0.025936124846339226, -0.026442280039191246, 0.050510864704847336, -0.01914665475487709, -0.023824231699109077, 0.014006554149091244, -0.031643468886613846, -0.030072638764977455, -0.021241093054413795, 0.023894047364592552, -0.02282937429845333, 0.03717627376317978, 0.03213217109441757, -0.03298739716410637, 0.07204867154359818, 0.01768927462399006, -0.03469785675406456, 0.04918438568711281, -0.013404402881860733, 0.03516910597681999, -0.005419358145445585, 0.04408792033791542, -0.020647667348384857, -0.004629580769687891, 0.025395061820745468, -0.008495564572513103, -0.03194018080830574, -0.07096654176712036, 0.05389687046408653, 0.011397233232855797, 0.055432792752981186, -0.04530967399477959, -0.016266802325844765, 0.04017830267548561, -0.00867446418851614, 0.04384356737136841, 0.001988625153899193, 0.02310863323509693, 0.04810225963592529, -0.012304822914302349, -0.014285813085734844, -0.0005304273217916489, 0.0556771457195282, 0.021153824403882027, 0.03022972121834755, -0.024923812597990036, 0.024312933906912804, -0.06346147507429123, 0.06339165568351746, -0.022445393726229668, 0.026355011388659477, -0.007046911399811506, -0.0006621478241868317, 0.059656575322151184, -0.04248218610882759, 0.03756025433540344, -0.03005518577992916, 0.008552288636565208, -0.006859284359961748, -0.04304070025682449, -0.035779982805252075, -0.0034318240359425545, -0.0009184983209706843, -0.05393178015947342, -0.04377375543117523, 0.025272885337471962, 0.015865368768572807, -0.005118282977491617, 0.0677550733089447, 0.02171234041452408, 0.013840744271874428, 0.022113773971796036, -0.01790744438767433, -0.021066555753350258, 0.03419170156121254, -0.03769988566637039, -0.012208828702569008, 0.004175785928964615, 0.0015228309202939272, -0.048206981271505356, 0.007116725668311119, -0.037071552127599716, 0.07609791308641434, 0.016345342621207237, 0.010175477713346481, 0.05836500599980354, -0.010201658122241497 ]
20,280
start_sdk.cf_r2
download
With a r2-bucket `loc`, download contents to `local_file`. Args: loc (str): Origin file to download local_file (str): Where to download, how to name downloaded file
def download(self, loc: str, local_file: str): """With a r2-bucket `loc`, download contents to `local_file`. Args: loc (str): Origin file to download local_file (str): Where to download, how to name downloaded file """ with open(local_file, "wb") as write_file: return self.bucket.download_fileobj(loc, write_file)
(self, loc: str, local_file: str)
[ -0.01339111477136612, -0.029233122244477272, -0.1471956968307495, 0.034205950796604156, 0.020441874861717224, -0.0512201264500618, -0.03775797039270401, 0.06574788689613342, -0.008293965831398964, 0.006100594066083431, 0.00828508660197258, -0.0005072728381492198, -0.008840089663863182, 0.01533584576100111, -0.008569248020648956, 0.04230455681681633, -0.00910205114632845, 0.005598871037364006, -0.01071821991354227, 0.058217603713274, -0.018070900812745094, -0.023763012140989304, 0.06802117824554443, 0.013204633258283138, 0.019660430029034615, 0.05978049337863922, -0.0037629210855811834, -0.01832842268049717, -0.0393919013440609, -0.0036230601835995913, 0.015176004730165005, -0.0561574324965477, 0.0177689790725708, 0.0778602734208107, 0.047810185700654984, -0.020654994994401932, 0.026746708899736404, 0.032980505377054214, -0.09263667464256287, 0.03074273094534874, -0.04308599978685379, 0.011659504845738411, 0.05178844928741455, -0.0681987777352333, 0.10506874322891235, 0.02651582844555378, -0.00044122745748609304, -0.059567373245954514, -0.0017571398057043552, -0.02639150805771351, 0.02546798251569271, 0.05818208307027817, 0.012858311645686626, -0.04958619549870491, 0.005079388152807951, 0.015992969274520874, -0.0038983416743576527, 0.06944198906421661, -0.04894683137536049, 0.03520051762461662, 0.013533195480704308, -0.011925906874239445, 0.02710191160440445, 0.0037829012144356966, -0.005403510294854641, 0.006309275049716234, -0.03074273094534874, -0.03237666189670563, -0.03177281841635704, 0.05107804387807846, 0.013080312870442867, 0.004349004477262497, -0.025006219744682312, -0.013080312870442867, -0.015948569402098656, 0.011659504845738411, -0.001452998141758144, -0.015770968049764633, 0.019855789840221405, -0.010220937430858612, -0.009981175884604454, -0.08411183208227158, 0.05647711455821991, -0.053635500371456146, -0.04965723678469658, -0.015770968049764633, 0.058004483580589294, -0.06667140871286392, 0.0064824363216757774, 0.03315810486674309, 0.02495293878018856, 0.028504958376288414, -0.04315704107284546, -0.03658580407500267, 0.02852271869778633, -0.10414522141218185, -0.024544456973671913, -0.015247045084834099, -0.042979441583156586, 0.0015984089113771915, -0.01617944985628128, -0.04120342805981636, 0.0040848227217793465, 0.010842540301382542, 0.02209356240928173, -0.03697652742266655, -0.008413846604526043, -0.014216959476470947, -0.020512914285063744, 0.027723515406250954, -0.04177175462245941, 0.02671118825674057, -0.022129083052277565, 0.03821973502635956, -0.04606969654560089, 0.0024020534474402666, 0.022981567308306694, -0.001978031126782298, -0.03433027118444443, -0.039285339415073395, 0.0334777869284153, 0.016436971724033356, 0.010318617336452007, 0.00112443626858294, 0.002497514011338353, -0.0007570242159999907, 0.009341811761260033, -0.009368452243506908, 0.0016916494350880384, 0.04095478728413582, -0.004697546362876892, -0.016001848503947258, -0.035484679043293, -0.001616169000044465, 0.0007198390085250139, -0.0006288185250014067, 0.06116577982902527, 0.04475545138120651, -0.00910205114632845, 0.073029525578022, 0.0955493301153183, -0.03587539866566658, 0.03399283066391945, -0.039605021476745605, 0.01283167116343975, -0.011908146552741528, -0.055020786821842194, -0.02871808037161827, -0.00402710260823369, -0.001288717146962881, 0.008267326280474663, 0.04347672313451767, 0.028593759983778, 0.06475332379341125, -0.003212357871234417, -0.044293686747550964, 0.00040681727114133537, 0.01235214900225401, -0.00705075915902853, -0.00472862645983696, 0.024668777361512184, 0.028291838243603706, 0.005945193115621805, -0.012334388680756092, 0.026231667026877403, 0.008094165474176407, 0.009421732276678085, 0.046638019382953644, -0.018177460879087448, -0.032518740743398666, -0.04049302637577057, 0.03814869374036789, -0.03587539866566658, -0.01588640920817852, 0.027137432247400284, 0.028824640437960625, -0.018346183001995087, -0.004382304381579161, 0.021081237122416496, -0.0403154231607914, -0.02553902193903923, -0.05672575533390045, 0.018736904487013817, -0.0032500980887562037, 0.02028203383088112, 0.016587931662797928, -0.04791674762964249, 0.02392285317182541, 0.04059958830475807, 0.0037251808680593967, 0.009297411888837814, 0.04049302637577057, -0.0261251050978899, -0.0110823018476367, 0.0231414083391428, -0.08254893869161606, 0.028060955926775932, 0.011810465715825558, -0.016579052433371544, 0.10322169214487076, -0.0335310660302639, 0.028060955926775932, -0.033300187438726425, 0.028362877666950226, 0.045075129717588425, 0.012227828614413738, 0.04386744648218155, -0.010593899525702, -0.040137823671102524, 0.10606331378221512, -0.035058435052633286, 0.06898022443056107, -0.03321138396859169, -0.022590845823287964, 0.016525771468877792, 0.01910986751317978, -0.09391540288925171, 0.051895011216402054, -0.001003445591777563, 0.042659759521484375, 0.05491422489285469, -0.019536109641194344, 0.0038539415691047907, -0.00635367538779974, 0.017724579200148582, -0.03001456707715988, 0.06084609776735306, -0.05750720202922821, -0.05608639121055603, -0.019322987645864487, 0.0001848160318331793, -0.0044844248332083225, 0.07658154517412186, 0.0013697476824745536, 0.012147908098995686, -0.028114236891269684, -0.006744397804141045, 0.012938232161104679, -0.0182041022926569, 0.04440024867653847, -0.02125883847475052, 0.02411821484565735, -0.021933723241090775, 0.03861045464873314, -0.010274217464029789, -0.023745251819491386, 0.014962883666157722, 0.07771819084882736, 0.012183427810668945, -0.027972156181931496, 0.050793882459402084, 0.01771569810807705, -0.07906796038150787, 0.02710191160440445, 0.04919547587633133, -0.027847835794091225, 0.007250560447573662, -0.08098605275154114, 0.003332238644361496, 0.0017460397211834788, -0.019411787390708923, -0.03900117799639702, 0.00877348892390728, -0.01982027105987072, -0.019980112090706825, -0.022928288206458092, -0.008942210115492344, -0.011908146552741528, 0.01361311599612236, 0.035449158400297165, 0.08965297788381577, 0.04301495850086212, -0.029552804306149483, -0.00854260753840208, 0.011917026713490486, -0.039285339415073395, -0.00016969219723250717, 0.0036119602154940367, 0.004284624010324478, -0.04113239049911499, 0.005354669876396656, 0.04294392094016075, 0.009572693146765232, -0.008409406989812851, 0.028700320050120354, -0.008276206441223621, -0.021471960470080376, -0.010061096400022507, 0.0031857178546488285, -0.0010994611075147986, -0.010274217464029789, 0.020388593897223473, -0.016410332173109055, -0.01839946210384369, 0.04990587756037712, 0.008236246183514595, -0.03150641545653343, 0.026284946128726006, 0.059425290673971176, 0.07150215655565262, -0.09533621370792389, 0.026284946128726006, 0.028611520305275917, 0.008400526829063892, 0.017360497266054153, -0.026284946128726006, 0.05303165689110756, -0.011162222363054752, -0.0191809069365263, 0.03360210731625557, 0.01140198390930891, -0.008844529278576374, -0.029730405658483505, -0.00485738692805171, -0.005328029859811068, 0.05601535364985466, -0.011810465715825558, 0.05239229276776314, 0.027457112446427345, 0.0031368774361908436, -0.04489753022789955, -0.00866248831152916, 0.013950557447969913, -0.019198667258024216, -0.0076945628970861435, -0.0639718770980835, -0.02845167927443981, 0.07629738748073578, -0.014669842086732388, 0.03686996549367905, 0.031488656997680664, 0.03008560836315155, 0.02898448146879673, -0.003192377742379904, -0.007543602026998997, -0.0177689790725708, -0.00013666950690094382, -0.046566978096961975, 0.07828651368618011, 0.02893120050430298, 0.016579052433371544, -0.04017334431409836, 0.04450680688023567, 0.024846378713846207, -0.04180727154016495, 0.05583775043487549, 0.005678791552782059, -0.016623452305793762, 0.011721665039658546, -0.02749263308942318, -0.023230209946632385, 0.003654140280559659, -0.012361029163002968, 0.03502291440963745, -0.012387668713927269, 0.05288957431912422, 0.024722058326005936, -0.032909464091062546, 0.006708877626806498, -0.009386212565004826, -0.0027306152042001486, -0.01891450583934784, -0.037331726402044296, -0.017138496041297913, -0.0006043983739800751, -0.00922637153416872, -0.02092139609158039, 0.02695983089506626, -0.02040635421872139, -0.038965657353401184, -0.020885877311229706, 0.0025241540279239416, 0.022892767563462257, 0.014616561122238636, -0.019145386293530464, -0.013169113546609879, -0.012076867744326591, -0.06741733849048615, 0.0221646036952734, -0.01175718568265438, -0.005483430810272694, -0.0018359501846134663, 0.0008946650195866823, -0.0010506208054721355, 0.05555358901619911, 0.008600328117609024, 0.0021445320453494787, 0.01799098029732704, -0.01433239970356226, 0.008311726152896881, 0.05789792165160179, 0.01767129823565483, 0.08880049735307693, -0.009475013241171837, -0.036941006779670715, -0.02241324447095394, -0.003676340449601412, -0.02756367437541485, 0.01630377024412155, -0.030263209715485573, -0.034276992082595825, 0.04020886495709419, -0.10421626269817352, 0.006775477901101112, -0.010407418012619019, -0.028611520305275917, 0.043512243777513504, -0.01270735077559948, 0.0403154231607914, -0.01693425513803959, -0.05530494824051857, -0.04230455681681633, -0.027528153732419014, 0.022253403440117836, -0.011712784878909588, 0.03566227853298187, 0.018026500940322876, -0.027989916503429413, 0.004875147249549627, 0.05860832706093788, -0.03001456707715988, -0.03924981877207756, 0.03932086005806923, -0.003083597170189023, 0.008325046859681606, -0.11380671709775925, -0.006620076950639486, -0.029943527653813362, -0.000725944060832262, 0.0024042734876275063, 0.0051371087320148945, -0.0221646036952734, -0.03361986577510834, -0.042979441583156586, 0.04965723678469658, 0.029854726046323776, 0.006176074501127005, -0.010558378882706165, 0.0523567721247673, 0.034276992082595825, 0.013524315319955349, -0.03372642770409584, 0.005230349022895098, -0.022377725690603256, -0.03907221928238869, -0.02839839830994606, -0.016161689534783363, -0.04749050363898277, 0.04912443459033966, -0.004440024960786104, -0.02605406567454338, 0.0115707041695714, -0.03511171415448189, -0.020743796601891518, -0.02886016108095646, -0.044684410095214844, 0.020068911835551262, -0.02534366212785244, -0.014936243183910847, -0.07167976349592209, 0.0070329993031919, 0.019287467002868652, 0.0393919013440609, -0.033051542937755585, -0.015628887340426445, 0.0012842771830037236, -0.02976592630147934, -0.018488263711333275, 0.01807978004217148, -0.06290627270936966, -0.00811192486435175, -0.02807871624827385, -0.05139772593975067, -0.00910205114632845, 0.05477214604616165, 0.02475757896900177, 0.01839946210384369, 0.009723654016852379, -0.03832629323005676, -0.024278055876493454, -0.06588996946811676, -0.08915569633245468, 0.0037695809733122587, -0.0030569571536034346, 0.024402376264333725, -0.01649913191795349, -0.005843072663992643, 0.02949952520430088, 0.05200156942009926, 0.034401312470436096, 0.0001461045612813905, 0.0778602734208107, -0.01891450583934784, -0.02651582844555378, -0.04361880198121071, 0.06549924612045288, 0.010735980235040188, 0.05875040590763092, -0.05445246398448944, -0.03736724704504013, 0.036230601370334625, -0.0018825704464688897, -0.035644520074129105, 0.023745251819491386, -0.030565129593014717, -0.04631833732128143, 0.004879587329924107, -0.03853941336274147, 0.024597737938165665, -0.0008852299652062356, -0.01520264521241188, 0.037473808974027634, 0.029091041535139084, 0.02456221729516983, -0.0315241776406765, 0.034152671694755554, -0.0561574324965477, 0.04408056661486626, -0.017609138041734695, 0.031879376620054245, -0.006042873486876488, -0.05796896293759346, 0.06162754446268082, -0.057684801518917084, -0.04717082157731056, -0.03381522744894028, 0.00949277263134718, 0.014927363023161888, -0.023425569757819176, 0.01852378249168396, -0.060348816215991974, 0.014589921571314335, -0.026284946128726006, -0.06557028740644455, 0.03054737113416195, 0.10798139870166779, -0.026480307802557945, -0.03509395569562912, -0.04059958830475807, -0.0030658370815217495, 0.01705857552587986, -0.0052214693278074265, 0.03861045464873314, -0.06024225428700447, -0.07835755497217178, 0.021809400990605354, -0.015673287212848663, -0.04905339330434799, 0.08602991700172424, -0.04589209705591202, 0.046424899250268936, -0.019536109641194344, 0.06692005693912506, -0.03221682086586952, -0.018239621073007584, 0.053777579218149185, -0.06461124122142792, -0.09363124519586563, 0.020104432478547096, -0.011357583105564117, 0.02125883847475052, 0.0849643126130104, 0.014660961925983429, 0.06919334828853607, 0.017564738169312477, 0.04621177911758423, 0.03536035865545273, 0.017174016684293747, 0.010283097624778748, -0.02937520295381546, 0.02378077246248722, 0.03953398019075394, 0.005390190053731203, -0.03203921765089035, 0.04216247424483299, -0.011091182008385658, 0.023301249369978905, -0.0799204483628273, -0.006269314792007208, -0.013639756478369236, -0.01537136547267437, -0.018878985196352005, 0.03900117799639702, -0.01283167116343975, -0.04550137370824814, 0.01806202158331871, -0.0261251050978899, 0.015433525666594505, -0.004382304381579161, 0.04599865525960922, 0.039924703538417816, -0.019607149064540863, -0.005598871037364006, -0.05818208307027817, 0.010274217464029789, -0.03191489726305008, 0.003583099925890565, -0.03274962306022644, -0.025450222194194794, 0.0004786901699844748, 0.041309989988803864, -0.00363194034434855, -0.0493730753660202, 0.05288957431912422, -0.03042304888367653, 0.017484817653894424, -0.06088161841034889, -0.016801053658127785, -0.00949277263134718, 0.05452350527048111, -0.03438355028629303, -0.03612404316663742, 0.02235996536910534, 0.030440809205174446, 0.029783686622977257, 0.0404219850897789, -0.01898554526269436, -0.015255925245583057, -0.026888789609074593, -0.002342113060876727, -0.04795226827263832, -0.04113239049911499, 0.008138565346598625, 0.06574788689613342, -0.0739530548453331, -0.004231343511492014, 0.03314034640789032, -0.02223564311861992, 0.019926831126213074, 0.04518169164657593, -0.09320499747991562, -0.025556782260537148, 0.08531951904296875, -0.017271695658564568, 0.05207261070609093, -0.009519413113594055, -0.02150747925043106, 0.027972156181931496, -0.008782369084656239, 0.0034920794423669577, 0.015247045084834099, 0.06351011246442795, -0.04752602428197861, 0.019536109641194344, -0.08460911363363266, -0.01537136547267437, 0.050651803612709045, -0.006171634420752525, 0.007921003736555576, -0.05107804387807846, -0.014137038961052895, 0.04166519269347191, 0.023958373814821243, 0.04379640519618988, 0.0035631197970360518, -0.015442405827343464, 0.04756154492497444, -0.022129083052277565, 0.04099030792713165, -0.022377725690603256, 0.06141442432999611, -0.05867936834692955, -0.008498207665979862, 0.011650624684989452, -0.04471993073821068, -0.02008667215704918, 0.05516286939382553, -0.023425569757819176, -0.029091041535139084, 0.00003912771717295982, 0.017760099843144417, 0.02294604852795601, -0.0014352380530908704, -0.022590845823287964, -0.012547509744763374, -0.021702840924263, 0.021223317831754684, -0.02624942734837532, 0.0145277613773942, 0.03839733451604843, -0.0032167979516088963, 0.002912656171247363, -0.036301642656326294, 0.06166306510567665, 0.02463325671851635, 0.055802229791879654, 0.02639150805771351, 0.03665684536099434, -0.060348816215991974, -0.035910919308662415, 0.06148546189069748, -0.003489859402179718, -0.007872164249420166, 0.028504958376288414, -0.05239229276776314, 0.06446915864944458, 0.016658972948789597, 0.0006404735613614321, -0.0040004621259868145, 0.017165135592222214, 0.013080312870442867, 0.013009272515773773, 0.05413278192281723, 0.018017619848251343, -0.026551347225904465, -0.022519806399941444, 0.0014418980572372675, -0.04475545138120651, -0.002497514011338353, -0.026995349675416946, -0.012334388680756092, -0.007232800126075745, -0.011375343427062035, -0.021525239571928978, 0.0008624747861176729, 0.04074166715145111, -0.04777466505765915, -0.009750294499099255, 0.00495506776496768, -0.014820802956819534, -0.05388414114713669, -0.06944198906421661, -0.02983696572482586, 0.0032456580083817244, 0.019127625972032547, -0.006460235919803381, -0.084751196205616, 0.035591237246990204, -0.03566227853298187, 0.04184279218316078, 0.018825704231858253, -0.0016117290360853076, 0.018070900812745094, 0.04212695360183716, 0.013311194255948067, -0.03790005296468735, 0.012884952127933502, 0.0034498991444706917, 0.013249034062027931, 0.05551806837320328, -0.010833660140633583, 0.03143537417054176, -0.016490252688527107, -0.024135975167155266, 0.016632333397865295, 0.004990587942302227, -0.017200656235218048, 0.029481764882802963, -0.008196285925805569, 0.0290555227547884, 0.06308387219905853, -0.011908146552741528, 0.04965723678469658, 0.04255319759249687, -0.00818740576505661, -0.03882357478141785, -0.003789561102166772, 0.00797872431576252, -0.02580542303621769, 0.037473808974027634, -0.02145420014858246, -0.021525239571928978, -0.04496857151389122, 0.034401312470436096, 0.021667320281267166, 0.03807765245437622, 0.009688134305179119, -0.005461230408400297 ]
20,281
start_sdk.cf_r2
fetch
Each bucket contain content prefixes but can only be fetched incrementally, e.g. by batches. Each batch limited to a max of 1000 prefixes. Without arguments included in this call, will default to the first 1000 keys. See more details in [boto3 list-objects-v2 API docs](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/list_objects_v2.html#list-objects-v2)
def fetch(self, *args, **kwargs) -> dict: """Each bucket contain content prefixes but can only be fetched incrementally, e.g. by batches. Each batch limited to a max of 1000 prefixes. Without arguments included in this call, will default to the first 1000 keys. See more details in [boto3 list-objects-v2 API docs](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/list_objects_v2.html#list-objects-v2) """ # noqa: E501 return self.client.list_objects_v2(Bucket=self.name, *args, **kwargs)
(self, *args, **kwargs) -> dict
[ -0.04254162311553955, 0.0068912198767066, -0.13592396676540375, -0.03269079700112343, 0.03581167757511139, 0.07859738916158676, 0.014192163944244385, 0.014505995437502861, 0.050840724259614944, -0.023572243750095367, 0.004873108118772507, 0.0479116290807724, -0.03115650825202465, -0.040065839886665344, 0.02611776627600193, 0.021950779482722282, 0.0029530685860663652, -0.03783414885401726, 0.03727622330188751, 0.062103793025016785, -0.03295232355594635, 0.04058889299631119, 0.08431609719991684, -0.014131140895187855, 0.012283021584153175, -0.05519949644804001, 0.03065088950097561, -0.01359937060624361, 0.03319641202688217, 0.008530118502676487, -0.02993605099618435, 0.029378129169344902, -0.00033480822457931936, 0.06517236679792404, 0.005731786135584116, -0.03856642171740532, 0.06897322088479996, 0.02242152765393257, -0.03577680513262749, 0.026902345940470695, 0.030127838253974915, -0.004389284178614616, 0.052061181515455246, -0.03127855435013771, 0.08243311196565628, 0.037799276411533356, 0.020433926954865456, -0.006403037346899509, 0.02109646052122116, -0.012989142909646034, -0.0006570849800482392, 0.00802885927259922, -0.038147978484630585, -0.05125916749238968, 0.0032254918478429317, -0.016920756548643112, 0.01711254194378853, 0.00850832462310791, -0.05537384748458862, 0.08187519013881683, 0.001877541420981288, -0.02144516259431839, 0.02046879753470421, -0.0013130803126841784, -0.04742344841361046, -0.018306845799088478, 0.017530983313918114, -0.012431220151484013, -0.07322738319635391, 0.01928321085870266, 0.019928308203816414, 0.015761321410536766, -0.0013479504268616438, -0.01288453210145235, -0.07838816940784454, -0.0014678167644888163, 0.030232448130846024, 0.007937325164675713, -0.020817499607801437, 0.010103635489940643, -0.04623785987496376, -0.05499027669429779, -0.032272353768348694, -0.029046861454844475, 0.013512196019291878, -0.006808402948081493, 0.006477136164903641, -0.049655139446258545, -0.0031143431551754475, 0.06806659698486328, -0.05335137993097305, 0.06454470753669739, -0.005832037888467312, -0.020695453509688377, -0.01282350905239582, -0.0455055870115757, -0.0551297590136528, -0.017225870862603188, 0.002092211041599512, 0.012195846065878868, 0.008342690765857697, -0.07096081972122192, 0.0885702595114708, -0.003181904088705778, 0.02948273904621601, -0.038636162877082825, -0.026675689965486526, -0.017068954184651375, -0.017801227048039436, 0.06137152016162872, 0.009310338646173477, 0.03692752122879028, 0.0814567431807518, 0.004502612166106701, -0.0005644610500894487, -0.031208813190460205, 0.02514140121638775, 0.017068954184651375, -0.025594713166356087, -0.060813598334789276, -0.028541244566440582, -0.009249315597116947, 0.037311095744371414, -0.0009823584696277976, -0.02012009546160698, 0.004873108118772507, 0.03138316422700882, -0.006093564443290234, -0.011036412790417671, -0.013773721642792225, 0.005008229985833168, 0.002661030739545822, -0.05774502083659172, -0.03305693343281746, 0.04515688493847847, -0.03422508388757706, 0.048469554632902145, -0.020573407411575317, 0.02179386466741562, 0.029378129169344902, 0.013372714631259441, 0.007061211857944727, 0.04034480080008507, -0.006328938063234091, -0.08954662829637527, -0.03328358754515648, 0.07769076526165009, -0.027460267767310143, 0.04651682451367378, -0.014218316413462162, -0.016572054475545883, 0.06088333949446678, 0.06433548778295517, 0.011637923307716846, -0.05425800383090973, -0.014322927221655846, -0.01132409181445837, -0.012710181064903736, -0.044982533901929855, 0.03188878297805786, 0.02250870317220688, 0.03881051391363144, -0.005308985244482756, -0.04170473664999008, 0.023363022133708, 0.011733816005289555, -0.0006064142799004912, -0.0036570103839039803, -0.048469554632902145, -0.020555973052978516, -0.014532148838043213, 0.0009970692917704582, -0.010635405778884888, -0.025559842586517334, 0.045575328171253204, 0.015369032509624958, -0.03548040986061096, 0.02297944948077202, -0.001405704184435308, -0.029744265601038933, -0.03129598870873451, -0.08340947329998016, 0.017461244016885757, -0.053386248648166656, -0.021166199818253517, 0.04411077871918678, 0.03176673501729965, 0.04302980378270149, 0.02864585444331169, 0.00009262392268283293, 0.005030023865401745, 0.008830873295664787, -0.013730133883655071, 0.029622219502925873, 0.0012629544362425804, -0.053630340844392776, -0.016572054475545883, -0.00011516694939928129, -0.01148972474038601, 0.09352182596921921, -0.06879886984825134, 0.040902722626924515, -0.011664075776934624, -0.04348311573266983, 0.09972871840000153, 0.011228198185563087, -0.010339008644223213, 0.021113894879817963, -0.019213469699025154, 0.03427739068865776, -0.02313636615872383, 0.03800849989056587, -0.01809762418270111, -0.015604406595230103, 0.003075114218518138, 0.03267335891723633, -0.013747569173574448, -0.008904973044991493, 0.017225870862603188, -0.07078646868467331, 0.0503176711499691, -0.020817499607801437, -0.042332399636507034, -0.0004854583239648491, -0.04097246378660202, 0.0209569800645113, 0.05533897876739502, 0.0011648819781839848, 0.021497467532753944, -0.05167761072516441, -0.0022469472605735064, -0.021288245916366577, 0.021968213841319084, 0.04784189164638519, 0.058023981750011444, -0.00281576719135046, 0.05237501487135887, 0.03978687897324562, 0.0014318568864837289, 0.025420362129807472, -0.017870968207716942, -0.01605771854519844, -0.030999591574072838, -0.029430434107780457, -0.04588916152715683, 0.03943817690014839, -0.007889378815889359, -0.0072050513699650764, 0.021846169605851173, 0.03258618339896202, 0.04240214079618454, 0.044877924025058746, 0.007296585477888584, -0.014244469814002514, -0.012788639403879642, -0.07776050269603729, -0.07294841855764389, -0.09554430097341537, -0.010495924390852451, -0.023676853626966476, -0.039821747690439224, 0.0022229740861803293, -0.022561008110642433, 0.0419488288462162, 0.005396160762757063, 0.04407591000199318, 0.015290575101971626, 0.008591141551733017, -0.040902722626924515, 0.03412047401070595, -0.010766169056296349, -0.019788827747106552, -0.0032254918478429317, -0.0016552439192309976, -0.022107696160674095, 0.05056176334619522, -0.007937325164675713, -0.002170668914914131, -0.07029828429222107, 0.010522077791392803, 0.0012629544362425804, -0.005997671280056238, 0.0030554996337741613, -0.07573803514242172, 0.04470357298851013, -0.04344824701547623, 0.02121850661933422, 0.016371550038456917, -0.044006168842315674, -0.025071660056710243, 0.006533800158649683, 0.02024214155972004, -0.02107902429997921, -0.06266171485185623, -0.004690039437264204, -0.04958539828658104, -0.002421298297122121, -0.009720062837004662, 0.016580771654844284, 0.05809372290968895, -0.06555594503879547, -0.0006440086872316897, 0.041495516896247864, -0.0061327931471168995, 0.06492827832698822, -0.010574382729828358, 0.07713284343481064, -0.018289411440491676, 0.018132494762539864, 0.036474209278821945, 0.001667230622842908, -0.007383760996162891, 0.0347307026386261, 0.015970543026924133, -0.0682409480214119, 0.011062565259635448, 0.010984106920659542, 0.052514493465423584, -0.014828545041382313, -0.009301621466875076, -0.027407962828874588, 0.013050165958702564, -0.041739609092473984, 0.027826406061649323, 0.06147613003849983, -0.010722581297159195, -0.0646493211388588, 0.08159622550010681, 0.025559842586517334, -0.0006810582708567381, 0.032272353768348694, -0.050003841519355774, -0.03978687897324562, 0.030040662735700607, -0.017060237005352974, -0.01808018982410431, 0.04421539232134819, -0.0030598584562540054, 0.008055011741816998, 0.04895773530006409, 0.0293258223682642, -0.04285545274615288, 0.002135798567906022, 0.03342306986451149, -0.0563153438270092, 0.021881040185689926, 0.11562952399253845, -0.03269079700112343, 0.01820223592221737, -0.04721422493457794, -0.001645436743274331, -0.0015190322883427143, 0.041495516896247864, 0.036474209278821945, 0.09993794560432434, 0.0042585209012031555, 0.020050354301929474, -0.03031962364912033, -0.010879497043788433, -0.015133659355342388, -0.01930064521729946, -0.0586516447365284, -0.009894413873553276, -0.03366716206073761, 0.015604406595230103, -0.017905838787555695, 0.024252211675047874, 0.005370007827877998, -0.004781573545187712, -0.029622219502925873, -0.05547846108675003, 0.007889378815889359, -0.0359162874519825, -0.006337655708193779, 0.00880036223679781, -0.0018862589495256543, -0.03490505367517471, -0.017408939078450203, -0.024984486401081085, 0.08919792622327805, 0.017766358330845833, -0.0026523133274167776, 0.00964160542935133, -0.022735359147191048, 0.012867096811532974, 0.04620299115777016, -0.0066602048464119434, 0.005143351852893829, 0.023816334083676338, -0.01738278567790985, 0.0827120691537857, 0.024374257773160934, 0.06409139186143875, -0.057570669800043106, -0.019823698326945305, -0.03141803294420242, 0.03211543709039688, -0.03943817690014839, -0.003986097872257233, -0.06070898845791817, 0.015525948256254196, 0.017557136714458466, 0.010016459971666336, 0.039717137813568115, -0.038984864950180054, -0.05952339991927147, 0.02289227396249771, -0.023328151553869247, -0.015255704522132874, 0.04892286658287048, -0.04864390566945076, -0.09693910926580429, 0.008068088442087173, 0.0293258223682642, 0.02960478514432907, 0.02226461097598076, -0.025559842586517334, 0.020678017288446426, -0.020050354301929474, 0.04250675067305565, -0.002471424173563719, -0.027512574568390846, 0.04731883853673935, -0.024130165576934814, 0.012500960379838943, -0.06172022223472595, -0.03940330445766449, -0.035881418734788895, 0.03077293559908867, -0.032028261572122574, -0.0191611647605896, -0.012614288367331028, -0.03745057433843613, -0.021183636039495468, 0.01330297440290451, 0.013128623366355896, -0.008229362778365612, -0.049759749323129654, 0.014837262220680714, -0.022787664085626602, -0.02001548372209072, -0.010949237272143364, -0.01930064521729946, 0.017042800784111023, -0.00019628099107649177, 0.010025177150964737, 0.001824146369472146, -0.00464645167812705, 0.07406426966190338, 0.00934520922601223, -0.03940330445766449, 0.008203210309147835, -0.0032145949080586433, -0.04540097713470459, 0.026449033990502357, -0.05136377736926079, 0.03500966355204582, 0.02529831789433956, -0.038636162877082825, -0.03577680513262749, -0.004663886968046427, -0.038147978484630585, 0.029883746057748795, -0.03532349318265915, -0.012727616354823112, -0.011594335548579693, -0.004934130702167749, 0.07497089356184006, -0.007614776026457548, -0.06423087418079376, -0.05537384748458862, -0.027094131335616112, -0.07490114867687225, -0.035515282303094864, 0.059349048882722855, 0.004275956191122532, 0.022683054208755493, -0.02024214155972004, 0.005082329269498587, -0.04892286658287048, 0.00407545268535614, -0.039961230009794235, 0.05666404590010643, -0.02491474524140358, -0.012126105837523937, -0.029883746057748795, 0.009266750887036324, -0.007518882863223553, 0.049550529569387436, -0.07322738319635391, 0.07012393325567245, 0.03783414885401726, -0.043064676225185394, 0.009266750887036324, 0.004995153751224279, 0.04376208037137985, -0.019806263968348503, 0.006577387917786837, -0.06130177900195122, -0.01006876491010189, 0.014392667450010777, -0.01288453210145235, 0.003186262911185622, 0.014532148838043213, -0.06433548778295517, 0.027233611792325974, -0.0006592643912881613, -0.016711534932255745, 0.045226626098155975, -0.043308764696121216, -0.016973061487078667, 0.04442461207509041, -0.0051215579733252525, 0.04083298146724701, -0.00856934767216444, 0.023188671097159386, -0.021305682137608528, 0.03818285092711449, -0.029761699959635735, 0.039821747690439224, 0.038984864950180054, -0.03584654629230499, -0.03188878297805786, -0.007209409959614277, -0.02481013536453247, 0.00879600364714861, -0.022613313049077988, -0.018132494762539864, 0.007370684761554003, 0.023886075243353844, -0.023990685120224953, -0.010853344574570656, -0.038043368607759476, 0.012919402681291103, -0.05195657163858414, 0.0140788359567523, -0.008137828670442104, 0.014148576185107231, 0.07992246001958847, 0.039577655494213104, 0.04452922195196152, 0.0011000452795997262, 0.028192542493343353, -0.0031884422060102224, -0.02956991456449032, 0.043064676225185394, 0.017435090616345406, -0.023676853626966476, 0.08717545866966248, 0.015369032509624958, 0.039612527936697006, -0.07504063099622726, 0.011786121875047684, -0.042611364275217056, 0.011542030610144138, 0.02358967810869217, -0.033144108951091766, -0.07204179465770721, -0.06036028638482094, -0.028366893529891968, 0.047493189573287964, 0.0586516447365284, -0.005640252027660608, 0.04407591000199318, -0.0036570103839039803, 0.05220066383481026, 0.005030023865401745, 0.04442461207509041, 0.002974862465634942, 0.012779921293258667, -0.008813438937067986, 0.017923273146152496, -0.006128434557467699, 0.01809762418270111, 0.03394612297415733, 0.02263074740767479, 0.004125578328967094, -0.06269659101963043, 0.02181129902601242, -0.05879112705588341, 0.038287460803985596, -0.014479842968285084, 0.05499027669429779, 0.00619817478582263, 0.02573419362306595, 0.020503666251897812, -0.028419198468327522, -0.027024392038583755, 0.04044941067695618, -0.013259386643767357, 0.024147601798176765, 0.028593549504876137, -0.021166199818253517, -0.00156588910613209, -0.0027525650802999735, 0.009118552319705486, -0.031557515263557434, -0.028541244566440582, -0.036474209278821945, -0.05422313138842583, 0.03333589434623718, 0.08194492757320404, -0.006808402948081493, 0.05091046541929245, -0.02960478514432907, 0.00964160542935133, 0.030040662735700607, -0.009842108935117722, 0.04452922195196152, 0.049411047250032425, -0.008286027237772942, -0.003541502868756652, -0.00815090537071228, 0.0020725964568555355, -0.035986028611660004, 0.055304110050201416, 0.04289032518863678, -0.002966144820675254, 0.01809762418270111, -0.04289032518863678, 0.009101117961108685, 0.015020331367850304, 0.02467065304517746, 0.07406426966190338, -0.059593141078948975, 0.008952919393777847, -0.023572243750095367, -0.012727616354823112, 0.03296975791454315, 0.0466911755502224, -0.01090564951300621, -0.038287460803985596, 0.0395079180598259, -0.005640252027660608, 0.03769466653466225, 0.007414272520691156, -0.0323072224855423, 0.021270811557769775, -0.03605576977133751, -0.038252588361501694, 0.006172022316604853, 0.0006821479182690382, -0.04348311573266983, 0.04836494103074074, -0.10014716535806656, -0.030581150203943253, 0.006280991714447737, 0.024653218686580658, 0.05893060937523842, -0.008752415888011456, 0.029796570539474487, 0.02046879753470421, 0.010574382729828358, 0.035532716661691666, -0.04051915183663368, 0.0051825810223817825, -0.0009153423015959561, -0.05652456358075142, 0.027233611792325974, -0.038636162877082825, 0.024862440302968025, -0.07531959563493729, -0.008913690224289894, 0.036230120807886124, -0.011803556233644485, -0.0407283715903759, -0.013372714631259441, -0.04327389597892761, -0.00218483479693532, 0.01893450878560543, 0.04170473664999008, 0.049411047250032425, 0.025089096277952194, -0.016598206013441086, -0.00499951234087348, -0.0013217978412285447, 0.014880849979817867, -0.0008423328399658203, 0.02993605099618435, 0.03453891724348068, -0.023659419268369675, -0.016694100573658943, -0.012422502040863037, 0.060325413942337036, -0.03138316422700882, -0.03398099169135094, -0.007148387376219034, -0.02013752982020378, -0.02397325076162815, -0.00964160542935133, 0.03842693939805031, -0.0017119080293923616, 0.032028261572122574, -0.027373092249035835, -0.05903521925210953, 0.07713284343481064, 0.0203816220164299, -0.0012389811454340816, 0.03511427342891693, -0.02311892993748188, 0.004955924581736326, 0.03218517825007439, 0.030493974685668945, -0.029674524441361427, -0.028820205479860306, 0.028924815356731415, -0.02371172420680523, -0.01478495728224516, -0.05579229071736336, 0.03511427342891693, -0.015325444750487804, 0.07741180062294006, -0.030877545475959778, -0.04344824701547623, 0.03211543709039688, -0.009048812091350555, 0.056733787059783936, 0.032394398003816605, 0.024583477526903152, 0.027129001915454865, 0.008517041802406311, -0.004027505870908499, 0.011210763826966286, 0.04505227506160736, 0.04017044976353645, -0.013468608260154724, -0.006294067949056625, 0.011419984512031078, -0.07601699978113174, 0.014593170955777168, 0.041983697563409805, -0.002034457167610526, -0.006333296652883291, -0.020555973052978516, 0.03425995260477066, -0.06203405559062958, 0.06444009393453598, -0.05307241901755333, 0.009885696694254875, 0.01699921302497387, -0.031801607459783554, -0.053142156451940536, 0.0033845871221274137, 0.023188671097159386, -0.05544358864426613, -0.04142577573657036, 0.026048026978969574, 0.03856642171740532, 0.01630181074142456, 0.0874544158577919, 0.02956991456449032, -0.018481196835637093, 0.032777972519397736, -0.016371550038456917, -0.03333589434623718, 0.026030590757727623, -0.04801623895764351, -0.012910684570670128, 0.008935484103858471, -0.022491266950964928, -0.05195657163858414, -0.027251048013567924, -0.028959685936570168, 0.02313636615872383, 0.014950590208172798, 0.03462608903646469, 0.06423087418079376, -0.03389381617307663 ]
20,282
start_sdk.cf_r2
get
Assumes the key prefix exists in the bucket. See helper for [boto3 get_object](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/get_object.html) Args: key (str): Should exist in the browser Returns: dict | None: Returns `None` if not found.
def get(self, key: str, *args, **kwargs) -> dict | None: """Assumes the key prefix exists in the bucket. See helper for [boto3 get_object](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/get_object.html) Args: key (str): Should exist in the browser Returns: dict | None: Returns `None` if not found. """ # noqa: E501 try: return self.client.get_object( Bucket=self.name, Key=key, *args, **kwargs ) except Exception: return None
(self, key: str, *args, **kwargs) -> dict | None
[ -0.0018585348734632134, -0.020581388846039772, -0.0890677347779274, 0.018274853006005287, 0.04063050076365471, 0.02349117025732994, 0.04275960847735405, 0.0005827327258884907, 0.05418582633137703, -0.01255287230014801, -0.001681109075434506, 0.047159768640995026, 0.0498921237885952, -0.03443834185600281, -0.01147057581692934, 0.01416744664311409, 0.02762519009411335, -0.006285307463258505, 0.02766067534685135, -0.03956594318151474, -0.013289189897477627, 0.03179469704627991, 0.10397149622440338, -0.03410123288631439, 0.01900229975581169, 0.016642536967992783, 0.05666978657245636, 0.009891485795378685, 0.08324816823005676, -0.003794693388044834, 0.03843041881918907, 0.00433362415060401, 0.01855873502790928, 0.07643501460552216, -0.026649348437786102, 0.017644992098212242, 0.02294115163385868, -0.03436737135052681, -0.0928291603922844, 0.0026547329034656286, 0.02084752731025219, 0.04527905583381653, 0.10162947326898575, -0.05911826342344284, 0.0569891557097435, 0.010539090260863304, -0.006431683897972107, 0.04531453922390938, -0.019303923472762108, -0.024733150377869606, 0.07693181186914444, 0.024342814460396767, -0.028388122096657753, -0.08800317347049713, -0.03410123288631439, -0.007119208574295044, -0.013049664907157421, 0.01974748633801937, -0.03981434181332588, 0.06547010689973831, -0.014965862967073917, -0.008835802786052227, -0.0038057826459407806, -0.0031803566962480545, -0.015152160078287125, -0.06160222366452217, 0.011195565573871136, -0.028476834297180176, -0.0014903764240443707, -0.002843247726559639, 0.018221626058220863, 0.047195252031087875, 0.0033045548480004072, 0.005859485827386379, -0.04304349049925804, -0.0338173508644104, -0.02549608238041401, -0.03516578674316406, -0.04630812257528305, 0.03587548807263374, -0.020474933087825775, -0.050708282738924026, -0.052588995546102524, -0.04893402382731438, -0.0021224557422101498, -0.006303050089627504, 0.0038235250394791365, -0.036194853484630585, 0.004147327039390802, 0.065824955701828, -0.04854368790984154, 0.044037073850631714, -0.07317038625478745, -0.011621387675404549, 0.033906061202287674, -0.027217112481594086, 0.01997814141213894, -0.016119129955768585, 0.03543192520737648, 0.023508913815021515, -0.004014257807284594, 0.01939263567328453, 0.07423494011163712, 0.05556974932551384, 0.04304349049925804, 0.02656063623726368, -0.02006685361266136, 0.020563645288348198, 0.008170456625521183, 0.03587548807263374, 0.01939263567328453, 0.017742576077580452, 0.03589323163032532, 0.07214131206274033, -0.00032352478592656553, -0.02278146706521511, -0.021379804238677025, 0.06341196596622467, -0.02471540868282318, -0.03945948928594589, -0.008525308221578598, -0.003357782494276762, 0.0036948914639651775, -0.008396673947572708, 0.0533696673810482, -0.0064139412716031075, -0.01768047735095024, 0.0037769507616758347, -0.0001282871380681172, 0.030180122703313828, 0.011293149553239346, 0.02214273437857628, -0.03539643809199333, 0.030180122703313828, -0.014655367471277714, 0.04094986617565155, 0.028902655467391014, 0.04197893664240837, -0.0011643565958365798, 0.08225458115339279, 0.04162408411502838, -0.021415289491415024, 0.022018536925315857, 0.01255287230014801, -0.023987961933016777, -0.04811786487698555, 0.03534321114420891, -0.04701782763004303, 0.04346930980682373, -0.01903778314590454, 0.039743371307849884, 0.021805625408887863, 0.058266621083021164, -0.020758813247084618, 0.010184238664805889, -0.04886305332183838, 0.024928320199251175, -0.002608158625662327, -0.04584681615233421, 0.01537394244223833, 0.010521347634494305, 0.0011820991057902575, 0.003874534973874688, -0.11085561662912369, -0.0032114062923938036, -0.013129506260156631, -0.010672159492969513, 0.04840174689888954, 0.04055953025817871, 0.027500992640852928, -0.052198659628629684, 0.027128398418426514, -0.07615113258361816, -0.031386617571115494, 0.026968715712428093, -0.018824873492121696, -0.05095667764544487, -0.016252199187874794, -0.007203485816717148, -0.026702577248215675, 0.021929824724793434, -0.05918923392891884, 0.01395453605800867, 0.0076026939786970615, -0.0032491092570126057, 0.04343382641673088, 0.01347548607736826, 0.012792397290468216, 0.010308437049388885, 0.05390194430947304, -0.028441349044442177, -0.003686020150780678, -0.02478637918829918, 0.00402534706518054, -0.011488317511975765, -0.08062226325273514, 0.024484755471348763, -0.04478226229548454, -0.06188610568642616, 0.11681712418794632, 0.008117228746414185, 0.011923011392354965, 0.01176332775503397, 0.02739453688263893, 0.030907567590475082, -0.01887810043990612, 0.017050616443157196, 0.011124595068395138, 0.00040003962931223214, 0.04382416233420372, -0.024697665125131607, -0.022444358095526695, -0.010450377129018307, -0.0023020992521196604, 0.01493924856185913, 0.04953727126121521, -0.03621259704232216, -0.015444912016391754, -0.015631210058927536, -0.006453861948102713, 0.0784931555390358, -0.04584681615233421, 0.020829783752560616, 0.037933629006147385, -0.0044112480245530605, 0.014611011371016502, 0.054327767342329025, 0.020599130541086197, -0.04137568548321724, -0.054043885320425034, 0.007243406493216753, -0.01742320880293846, 0.04194344952702522, 0.007678099907934666, -0.03376412391662598, -0.045030657202005386, 0.0024617824237793684, 0.04417901486158371, 0.02033299207687378, -0.0391046367585659, 0.01178107038140297, -0.008463208563625813, 0.0023087526205927134, 0.0187184177339077, -0.028317151591181755, -0.029736557975411415, 0.005819565150886774, 0.04698234051465988, 0.004233822226524353, -0.021379804238677025, 0.08268040418624878, 0.037259411066770554, 0.026436438784003258, 0.016935288906097412, 0.002197861671447754, -0.026099329814314842, -0.0606086403131485, -0.07324135303497314, 0.005353822372853756, 0.004524356685578823, -0.06451200693845749, 0.011257664300501347, 0.031422100961208344, -0.0022200397215783596, -0.0012430892093107104, -0.006644594948738813, 0.023863764479756355, 0.03871430084109306, -0.0065026539377868176, 0.03999176621437073, -0.03220277652144432, -0.012854496017098427, 0.017015131190419197, -0.010255209170281887, 0.024218617007136345, -0.04048855975270271, 0.0275542214512825, -0.014433586038649082, -0.027412280440330505, 0.00935920886695385, -0.03704649955034256, -0.00048403965774923563, 0.016349783167243004, -0.030126893892884254, -0.02794455736875534, -0.025283170863986015, 0.05333418399095535, -0.02719936892390251, 0.014850536361336708, -0.01749417930841446, -0.01591509021818638, -0.005806257948279381, -0.06837988644838333, 0.0017542971763759851, -0.013519843108952045, -0.014690852724015713, -0.04410804435610771, -0.044391926378011703, 0.0642281249165535, 0.021734654903411865, 0.0038434856105595827, -0.012526258826255798, 0.010991525836288929, -0.017316754907369614, 0.018540991470217705, 0.03715295344591141, 0.019836200401186943, -0.01713932864367962, -0.06933798640966415, 0.06798955053091049, -0.047904957085847855, -0.01006891205906868, 0.014486812986433506, 0.027518736198544502, -0.052198659628629684, -0.024875091388821602, 0.010982654988765717, 0.022000793367624283, -0.004701782483607531, 0.036833588033914566, -0.004502178635448217, 0.018629705533385277, -0.05379549041390419, 0.042262814939022064, 0.03637228161096573, -0.02281695231795311, -0.03779168799519539, 0.014744080603122711, 0.028086498379707336, 0.033906061202287674, 0.014140833169221878, -0.00442011933773756, -0.012064951471984386, 0.0213265772908926, -0.08104808628559113, -0.025567052885890007, -0.004351366776973009, -0.0312091913074255, -0.0001230198104167357, 0.06635723263025284, 0.05273093655705452, -0.03821750730276108, 0.029647843912243843, 0.01318273413926363, -0.007726891897618771, 0.010885070078074932, 0.0889967605471611, -0.0748736709356308, 0.004524356685578823, -0.10851359367370605, 0.012978694401681423, -0.017990972846746445, 0.02656063623726368, 0.017405467107892036, 0.030481746420264244, -0.016030417755246162, 0.04708879813551903, -0.008849109522998333, -0.017920002341270447, -0.016571566462516785, 0.006041347049176693, -0.055711690336465836, -0.09098392724990845, -0.033639922738075256, -0.058302104473114014, -0.0048215449787676334, 0.030357547104358673, -0.030481746420264244, -0.009749545715749264, -0.01156815979629755, -0.01266819890588522, -0.002401901176199317, -0.0498921237885952, -0.0024972676765173674, -0.004440079443156719, 0.022213704884052277, 0.04283057898283005, -0.022923408076167107, 0.03223825991153717, 0.05947311595082283, -0.011390733532607555, 0.02139754593372345, 0.0027811487670987844, -0.009137426503002644, 0.022692754864692688, 0.04204990342259407, 0.0021690300200134516, 0.0042937034741044044, 0.01235770434141159, -0.04020467773079872, 0.039353035390377045, -0.02084752731025219, 0.03775620087981224, -0.029967211186885834, -0.0056687528267502785, -0.02258629910647869, 0.08622892200946808, -0.033515725284814835, 0.007128079887479544, 0.03484641760587692, 0.06664111465215683, 0.00013840595784131438, -0.03443834185600281, 0.03188340738415718, 0.0024883963633328676, -0.022745981812477112, 0.0045775845646858215, -0.05376000702381134, -0.02620578557252884, -0.009607604704797268, -0.012863367795944214, -0.08296428620815277, -0.04666297510266304, 0.022870181128382683, 0.0009503367473371327, 0.044001586735248566, -0.0009503367473371327, -0.023579884320497513, -0.08495145291090012, 0.009119683876633644, -0.029505904763936996, -0.052482541650533676, -0.021965309977531433, -0.007327683735638857, 0.011692357249557972, -0.02998495288193226, 0.00027112875250168145, -0.06447651982307434, 0.08026741445064545, -0.006107881665229797, 0.011958496645092964, -0.05588911473751068, -0.05021148920059204, 0.02617030031979084, -0.00312269339337945, 0.0006437228294089437, -0.0312091913074255, 0.02420087344944477, 0.029133310541510582, 0.01955231837928295, -0.0639442428946495, -0.045811332762241364, -0.006972832605242729, 0.037188440561294556, -0.04524356871843338, -0.00863176304847002, 0.03621259704232216, 0.02510574460029602, 0.07629307359457016, -0.04992760717868805, -0.020474933087825775, 0.04165956750512123, 0.0008449901943095028, -0.02242661640048027, 0.01697077415883541, -0.06933798640966415, -0.0186474472284317, 0.017627248540520668, 0.019179724156856537, -0.059650540351867676, -0.006529267877340317, 0.02123786322772503, 0.005965941119939089, -0.055427808314561844, -0.008893466554582119, 0.01684657670557499, 0.030126893892884254, 0.0605376698076725, -0.008161584846675396, -0.07338329404592514, -0.0037769507616758347, 0.00614780280739069, -0.04921790584921837, -0.04180150851607323, 0.04180150851607323, 0.01558685302734375, 0.02888491377234459, 0.00041196044185198843, 0.006360713392496109, -0.0076026939786970615, 0.0049679214134812355, -0.045385509729385376, -0.018221626058220863, 0.015036833472549915, 0.011532674543559551, 0.0037459013983607292, -0.01771596260368824, 0.06727984547615051, 0.037933629006147385, -0.03074788488447666, 0.030393032357096672, 0.061815135180950165, -0.03945948928594589, 0.02120237797498703, -0.03081885538995266, 0.001996039878576994, -0.03601742908358574, -0.025389626622200012, -0.00734099093824625, 0.004817109555006027, -0.0011798812774941325, -0.02577996253967285, 0.055108442902565, 0.0748027041554451, -0.04297251999378204, -0.06149576976895332, -0.03662067651748657, 0.0028521190397441387, 0.0427950918674469, -0.05173735320568085, 0.0009403565200045705, 0.04155311360955238, 0.028973625972867012, -0.0013584159314632416, 0.019339408725500107, -0.011674614623188972, -0.060786064714193344, 0.012020595371723175, -0.03335604444146156, 0.027004200965166092, 0.04907596483826637, 0.022550813853740692, 0.06259580701589584, 0.0027323567774146795, -0.009226139634847641, -0.0006963961059227586, -0.02400570549070835, -0.030446261167526245, -0.027678418904542923, 0.05727303400635719, -0.06188610568642616, -0.032841507345438004, -0.061176400631666183, 0.01926843822002411, -0.027518736198544502, 0.01587073504924774, -0.04212087392807007, -0.0056199608370661736, 0.028547804802656174, 0.006400634068995714, 0.06511525064706802, 0.002681346843019128, 0.020084595307707787, -0.016819961369037628, -0.02223144844174385, 0.01639414019882679, -0.012206892482936382, 0.003883406287059188, 0.025602536275982857, 0.002441822085529566, 0.061176400631666183, -0.042227331548929214, 0.011594773270189762, 0.012641585431993008, 0.030002696439623833, 0.03644325211644173, -0.027802616357803345, -0.052234143018722534, -0.05127604305744171, -0.014868278987705708, 0.031475331634283066, 0.004058614373207092, -0.008755961433053017, 0.03269956633448601, -0.05021148920059204, -0.007128079887479544, -0.015134417451918125, 0.03065917082130909, 0.06199255958199501, -0.011559288017451763, 0.01034392137080431, 0.012366575188934803, -0.0000776930755819194, 0.010911684483289719, -0.03630131110548973, 0.02452024072408676, 0.013670654967427254, 0.00472839642316103, -0.027288081124424934, -0.043291885405778885, 0.047195252031087875, -0.05418582633137703, 0.06699596345424652, 0.05092119425535202, -0.04836626350879669, 0.03466899320483208, -0.026649348437786102, -0.019889427348971367, 0.0049457428976893425, -0.06674756854772568, 0.023437943309545517, -0.013732753694057465, -0.01738772541284561, -0.03440285474061966, 0.060005392879247665, 0.019765229895710945, 0.02684451825916767, -0.053937431424856186, 0.017990972846746445, -0.03085433878004551, 0.03628356754779816, 0.017467565834522247, 0.058231133967638016, 0.05191477760672569, -0.021539486944675446, 0.05950859934091568, 0.020989468321204185, -0.0016167922876775265, 0.05656333267688751, -0.08516436815261841, -0.028707487508654594, -0.045066144317388535, -0.034704480320215225, 0.02294115163385868, -0.035804517567157745, 0.04921790584921837, 0.0038235250394791365, -0.009128555655479431, -0.031031765043735504, 0.01227786298841238, 0.04840174689888954, -0.0048215449787676334, -0.0017221388407051563, 0.07913188636302948, -0.03995628282427788, -0.012171407230198383, 0.02017330937087536, 0.012641585431993008, -0.0069284760393202305, -0.019712001085281372, -0.0006104555213823915, -0.012517387047410011, 0.049643728882074356, -0.00773576321080327, 0.031475331634283066, 0.03243342787027359, 0.06305711716413498, 0.010539090260863304, -0.040736954659223557, 0.05407937243580818, -0.03764974698424339, -0.005118733271956444, -0.03598194569349289, 0.0818287581205368, -0.035449665039777756, 0.05010503530502319, -0.003244673600420356, 0.011044753715395927, 0.07249616831541061, -0.046485550701618195, 0.00856966432183981, -0.014362615533173084, -0.004204990342259407, 0.009235010482370853, 0.01580863445997238, -0.06703145056962967, 0.04783398658037186, -0.060786064714193344, -0.07927382737398148, -0.016527209430933, 0.004178376868367195, -0.037969112396240234, -0.033001191914081573, 0.007913189008831978, 0.011018139310181141, -0.0817577913403511, -0.05993442237377167, -0.03871430084109306, 0.03003818169236183, 0.023349229246377945, 0.022763725370168686, 0.02159271575510502, -0.0409143790602684, -0.005602218210697174, -0.04300800338387489, 0.019144238904118538, 0.05241157114505768, -0.04517259821295738, 0.0223379023373127, 0.0016445149667561054, 0.03764974698424339, 0.019161982461810112, 0.010281822644174099, 0.03754328936338425, -0.021450774744153023, 0.013404516503214836, 0.011577030643820763, -0.016642536967992783, 0.0014293863205239177, -0.04283057898283005, 0.023863764479756355, -0.026578379794955254, -0.017086099833250046, -0.008826931938529015, -0.017742576077580452, 0.0051630898378789425, -0.011807684786617756, 0.043646737933158875, -0.002559366635978222, 0.00006975743599468842, -0.02900911122560501, -0.0018186140805482864, 0.009252753108739853, 0.012978694401681423, -0.014823921956121922, -0.01926843822002411, 0.031422100961208344, 0.009447921998798847, -0.027678418904542923, -0.04208539053797722, -0.016340913251042366, 0.0038634459488093853, 0.011443961411714554, -0.03945948928594589, 0.009403564967215061, -0.00048487132880836725, -0.014655367471277714, -0.004701782483607531, 0.00918178353458643, 0.001380594214424491, 0.007713584695011377, -0.06231192871928215, -0.011293149553239346, 0.023083090782165527, 0.05585362762212753, -0.008192634209990501, -0.03534321114420891, -0.05663430318236351, -0.07430590689182281, 0.07728666067123413, 0.06987026333808899, -0.006387327332049608, 0.012339961715042591, -0.020474933087825775, 0.05422131344676018, -0.0692315325140953, -0.015329585410654545, -0.05425679683685303, 0.07150258123874664, 0.03821750730276108, -0.03149307146668434, -0.008126099593937397, 0.027288081124424934, -0.04726622253656387, 0.04165956750512123, -0.01755627803504467, 0.018470020964741707, 0.013519843108952045, 0.016890931874513626, 0.04229830205440521, 0.013076278381049633, 0.006121188867837191, 0.04882756993174553, 0.03183018043637276, -0.022639527916908264, -0.034580279141664505, -0.09013228863477707, 0.061424799263477325, 0.08048032224178314, 0.02210724912583828, -0.038678817451000214, -0.03624808415770531, -0.0030118022114038467, 0.004692911170423031, -0.003187010297551751, -0.0035241192672401667, 0.03449156880378723, -0.016731249168515205 ]
20,284
start_sdk.cf_r2
get_root_prefixes
See adapted recipe from boto3 re: top-level [prefixes](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#list-top-level-common-prefixes-in-amazon-s3-bucket). Returns: list[str]: Matching prefixes in the root of the bucket.
def get_root_prefixes(self): """See adapted recipe from boto3 re: top-level [prefixes](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#list-top-level-common-prefixes-in-amazon-s3-bucket). Returns: list[str]: Matching prefixes in the root of the bucket. """ # noqa: E501 _objs = [] paginator = self.client.get_paginator("list_objects") result = paginator.paginate(Bucket=self.name, Delimiter="/") for prefix in result.search("CommonPrefixes"): _objs.append(prefix.get("Prefix")) # type: ignore return _objs
(self)
[ -0.06818059086799622, 0.003105382202193141, -0.05377624183893204, -0.020023824647068977, 0.025003107264637947, 0.06736256927251816, -0.014902278780937195, 0.016582785174250603, 0.1293901950120926, -0.01952589675784111, -0.00040234372136183083, 0.01461774855852127, -0.017658665776252747, -0.04829903319478035, 0.0012503776233643293, -0.010901070199906826, 0.029377762228250504, -0.0006752039189450443, 0.062098756432533264, 0.01833442598581314, -0.029911255463957787, 0.029111014679074287, 0.053171612322330475, 0.018316643312573433, -0.003781141946092248, -0.030320268124341965, -0.0046058353036642075, -0.0009202779619954526, 0.031031593680381775, -0.02466522715985775, -0.029075447469949722, -0.007033235393464565, 0.016244906932115555, 0.06412603706121445, 0.013897530734539032, -0.06583321839570999, 0.07454695552587509, -0.02491419017314911, -0.03595752641558647, 0.027795061469078064, 0.014715555123984814, 0.014404349960386753, -0.02062845230102539, -0.04837016388773918, 0.08550138026475906, 0.047872234135866165, 0.03247202932834625, 0.05843542516231537, 0.035370681434869766, 0.028097374364733696, 0.026230143383145332, 0.03368128463625908, -0.038233768194913864, -0.06537085771560669, -0.012110324576497078, -0.026603590697050095, 0.01498230267316103, -0.03496167063713074, -0.03425034508109093, 0.07074136286973953, 0.036882251501083374, 0.014075362123548985, 0.02711930125951767, -0.008171357214450836, 0.0115857208147645, -0.02173100784420967, 0.0018472245428711176, -0.02000604197382927, -0.04488466680049896, -0.014928952790796757, -0.04079454392194748, -0.04598722234368324, -0.0046725221909582615, -0.011212275363504887, -0.027243783697485924, 0.013061722740530968, 0.05302934721112251, 0.009629574604332447, -0.04488466680049896, -0.005526113323867321, -0.07483148574829102, -0.049223754554986954, -0.013310686685144901, 0.0010653217323124409, 0.0665445402264595, 0.0024051708169281483, -0.01762310042977333, 0.014208735898137093, 0.003336563240736723, 0.05320718139410019, -0.050397444516420364, 0.013284011743962765, 0.004819233436137438, 0.04118577018380165, -0.04200379550457001, -0.01580921933054924, -0.033094439655542374, -0.06590434908866882, -0.0025429902598261833, -0.022566815838217735, -0.014928952790796757, 0.03129834309220314, 0.030569233000278473, 0.010171961039304733, 0.0314406082034111, 0.02774171158671379, -0.08151794970035553, -0.011247841641306877, 0.045418161898851395, 0.07796132564544678, -0.026656940579414368, -0.04363984614610672, 0.07074136286973953, 0.013319578021764755, 0.016236014664173126, -0.050397444516420364, 0.04513363167643547, 0.0060951742343604565, -0.005881776567548513, -0.03958528861403465, 0.04822789877653122, -0.01351519301533699, 0.027457181364297867, -0.014724447391927242, -0.006615331396460533, -0.007086584810167551, 0.05082423985004425, 0.02434512972831726, -0.012990590184926987, 0.0213397778570652, 0.04499136656522751, 0.029911255463957787, -0.07909944653511047, -0.047943368554115295, 0.03581526130437851, 0.014048687182366848, 0.03528176620602608, 0.009016056545078754, -0.017196305096149445, 0.015186809003353119, 0.034036945551633835, 0.009620683267712593, 0.012883891351521015, -0.01731189526617527, -0.04950828477740288, 0.035530731081962585, 0.05089537054300308, -0.0010542073287069798, 0.04844129830598831, -0.03887396305799484, -0.018298860639333725, 0.032063018530607224, 0.08827555179595947, 0.035370681434869766, -0.08507458120584488, -0.026656940579414368, -0.0248964074999094, -0.0341792106628418, -0.011318974196910858, -0.02016608975827694, 0.004859245382249355, -0.02553660050034523, -0.020912982523441315, -0.10378245264291763, -0.011968058533966541, -0.015035651624202728, -0.017827605828642845, -0.0014815585454925895, -0.03547738119959831, -0.04079454392194748, -0.02655024081468582, 0.02158874273300171, -0.06508632004261017, -0.000960290024522692, 0.045347027480602264, 0.01375526562333107, -0.04630731791257858, 0.019099101424217224, -0.03161843866109848, -0.02085963264107704, 0.011007769033312798, -0.02980455756187439, 0.011167816817760468, -0.027706146240234375, -0.009029394015669823, 0.02032613940536976, 0.012048083357512951, 0.0203083548694849, 0.020806284621357918, 0.0011692419648170471, -0.008082441054284573, 0.0037833647802472115, -0.0045258114114403725, 0.06789606064558029, 0.04033217951655388, -0.03170735388994217, 0.056159183382987976, -0.006157414987683296, -0.07191505283117294, 0.03083597868680954, -0.04815676808357239, 0.005770631600171328, -0.03428591042757034, 0.009620683267712593, 0.06199205666780472, -0.01375526562333107, -0.03195631876587868, 0.026123445481061935, -0.038055937737226486, 0.019170233979821205, -0.01644941233098507, 0.011194491758942604, 0.032525379210710526, -0.018956836313009262, -0.01977486163377762, -0.009327261708676815, -0.00529937818646431, 0.033094439655542374, 0.037024516612291336, -0.04627175256609917, 0.015693629160523415, -0.001979486783966422, 0.0025496589951217175, 0.0014515494694933295, -0.04072340950369835, 0.018921270966529846, 0.051179900765419006, 0.007562283892184496, 0.013070614077150822, -0.06871408224105835, 0.008095778524875641, -0.050006214529275894, 0.006250776816159487, 0.024647444486618042, 0.0338413305580616, -0.026656940579414368, 0.06053383648395538, -0.001494895899668336, 0.0876353532075882, -0.019650379195809364, -0.02528763748705387, 0.006481957621872425, 0.023295924067497253, 0.005294932518154383, -0.007642308250069618, 0.046129487454891205, 0.013319578021764755, -0.010287551209330559, 0.04349758103489876, 0.01074991375207901, 0.011114467866718769, 0.05761739984154701, 0.023171441629529, -0.0042568412609398365, 0.05619474872946739, -0.058542124927043915, -0.04570269212126732, 0.00885600782930851, -0.014279868453741074, 0.019081318750977516, -0.042181629687547684, -0.0032743222545832396, 0.03227641433477402, 0.009202779270708561, 0.013781940564513206, 0.008549248799681664, 0.04808563366532326, 0.028559736907482147, -0.05235359072685242, 0.05075310543179512, 0.10904626548290253, -0.02023722231388092, -0.026514673605561256, 0.0417548343539238, -0.013559650629758835, 0.0016404954949393868, -0.030320268124341965, 0.037664707750082016, -0.05381180718541145, -0.023224791511893272, -0.053633976727724075, 0.013381819240748882, -0.016484979540109634, -0.01872565597295761, 0.03944302350282669, -0.03218749910593033, 0.013310686685144901, -0.021375345066189766, -0.008949369192123413, 0.014075362123548985, -0.010243093594908714, -0.0322408489882946, -0.05242472141981125, -0.08635497093200684, -0.012128107249736786, -0.00971849076449871, -0.002043950604274869, -0.027332698926329613, 0.028595302253961563, 0.019027968868613243, -0.03819820284843445, 0.036633286625146866, 0.03243646398186684, 0.01977486163377762, 0.027243783697485924, 0.05527002736926079, 0.04495580121874809, 0.0032231956720352173, 0.012350396253168583, -0.0009875204414129257, -0.05455869808793068, 0.0016316039254888892, 0.029857905581593513, -0.04403107613325119, -0.054736532270908356, -0.0196148119866848, 0.01494673639535904, 0.022388983517885208, -0.03684668242931366, 0.03890952840447426, -0.043284185230731964, 0.06156526133418083, -0.023580454289913177, 0.04712534323334694, 0.026123445481061935, -0.0026852553710341454, -0.037664707750082016, 0.05242472141981125, -0.02110859751701355, -0.02751053124666214, -0.013310686685144901, -0.05313604697585106, -0.051748961210250854, 0.01355075929313898, -0.028346339240670204, -0.028595302253961563, 0.05455869808793068, -0.019099101424217224, -0.0037122322246432304, 0.023224791511893272, 0.06818059086799622, -0.03784254193305969, 0.009091634303331375, 0.015702519565820694, -0.0734088346362114, 0.03083597868680954, 0.039336323738098145, 0.005157113075256348, -0.04239502549171448, -0.013301795348525047, 0.02751053124666214, 0.007437801919877529, 0.045026931911706924, 0.05619474872946739, 0.10847720503807068, -0.0025429902598261833, -0.00769121153280139, 0.009478418156504631, 0.025340987369418144, 0.07383563369512558, 0.07163052260875702, -0.05349171161651611, 0.00909608043730259, -0.05199792608618736, 0.032134149223566055, -0.005895113572478294, 0.03919405862689018, 0.009656249545514584, -0.0077979108318686485, -0.01668948493897915, -0.055839087814092636, -0.03264985978603363, -0.018921270966529846, -0.05068197473883629, 0.0024940865114331245, 0.020503969863057137, -0.007033235393464565, -0.05342057719826698, 0.002387387678027153, 0.033005524426698685, 0.010545407421886921, 0.0024718577042222023, 0.04915262386202812, 0.0054149688221514225, -0.007091030478477478, 0.01166574563831091, 0.024611877277493477, -0.019739294424653053, -0.0052015711553394794, 0.04346201568841934, 0.035370681434869766, 0.009558442048728466, 0.03377019986510277, -0.01446659117937088, -0.013426276855170727, -0.020610669627785683, 0.0040678950026631355, -0.05366954207420349, 0.016627244651317596, -0.03919405862689018, 0.021642092615365982, -0.072733074426651, -0.03755800798535347, 0.0010264210868626833, 0.017027365043759346, -0.052531421184539795, 0.033485669642686844, -0.011381215415894985, -0.00511710112914443, -0.02758166380226612, -0.04797893390059471, -0.08813328295946121, 0.04744543880224228, 0.02599896304309368, -0.0017660888843238354, 0.005014847964048386, -0.015337965451180935, 0.008198031224310398, -0.019863776862621307, 0.028808699920773506, -0.021144162863492966, -0.06444612890481949, 0.024843057617545128, 0.028986532241106033, 0.09994129836559296, -0.03841160237789154, -0.023598238825798035, -0.0406167097389698, 0.013781940564513206, 0.031244991347193718, 0.04861912876367569, -0.02560773305594921, -0.038304902613162994, -0.053882941603660583, -0.004850353579968214, 0.030017955228686333, -0.00493926927447319, -0.003594418987631798, -0.029128797352313995, -0.004570269025862217, 0.008069103583693504, -0.007931284606456757, -0.04068784415721893, 0.025412119925022125, 0.05786636471748352, 0.03848273307085037, -0.04090123996138573, 0.007744561415165663, 0.034908320754766464, 0.0032943282276391983, -0.0906229242682457, -0.07383563369512558, 0.004570269025862217, -0.044777967035770416, 0.019490331411361694, 0.020610669627785683, 0.010420924983918667, 0.053882941603660583, -0.07746339589357376, -0.04168369993567467, 0.03208079934120178, 0.009585116989910603, 0.07483148574829102, -0.0045347027480602264, -0.013088397681713104, 0.02023722231388092, 0.0006818725960329175, 0.04349758103489876, -0.025945613160729408, -0.031262774020433426, 0.002264017006382346, -0.015346856787800789, -0.06551311910152435, -0.016627244651317596, 0.03816263750195503, -0.01446659117937088, -0.03997651860117912, -0.01015417743474245, 0.01676950976252556, -0.02221115306019783, -0.05754626914858818, -0.0426795557141304, 0.02877313457429409, -0.012021408416330814, -0.018832353875041008, -0.04410220682621002, 0.009674033150076866, -0.009860755875706673, 0.03295217454433441, -0.08230040967464447, 0.0371667817234993, 0.04403107613325119, -0.06889192014932632, 0.030462533235549927, 0.002234007930383086, 0.02498532459139824, 0.008500345051288605, 0.030782630667090416, -0.03848273307085037, 0.03336118534207344, 0.026034530252218246, -0.010687672533094883, -0.02000604197382927, 0.04239502549171448, -0.024469612166285515, 0.004305745009332895, -0.06725586950778961, -0.03706008195877075, 0.030569233000278473, -0.04577382281422615, -0.00885600782930851, 0.02656802348792553, -0.012848325073719025, 0.06277451664209366, -0.0385538674890995, -0.009914105758070946, -0.043924376368522644, -0.01074991375207901, 0.023064743727445602, 0.06021374091506004, -0.049935080111026764, -0.028826484456658363, -0.02299361117184162, 0.0007313319947570562, -0.006539752706885338, 0.006055162288248539, -0.022958043962717056, -0.027635013684630394, -0.04435117170214653, 0.0259278304874897, -0.016067074611783028, -0.005468318238854408, -0.03325448930263519, 0.03389468044042587, -0.05153556540608406, 0.04705421254038811, 0.0036522140726447105, -0.03947858884930611, 0.062098756432533264, -0.011505696922540665, 0.04093680903315544, -0.00561058335006237, 0.030924895778298378, 0.006330800708383322, -0.01446659117937088, 0.0975227877497673, -0.007148825563490391, -0.027617229148745537, -0.002969785826280713, 0.035139501094818115, 0.07931284606456757, -0.03723791241645813, 0.02000604197382927, -0.017996545881032944, 0.06373480707406998, -0.05128660053014755, 0.0034543767105787992, -0.07084806263446808, -0.06433942914009094, -0.01320398785173893, 0.04822789877653122, 0.026923686265945435, 0.008482561446726322, 0.03289882466197014, -0.015471339225769043, 0.011719094589352608, -0.0223712008446455, 0.04815676808357239, 0.0033521235454827547, 0.0279906764626503, -0.007517825812101364, -0.000206451237318106, 0.02710151858627796, 0.0032854366581887007, -0.01748083531856537, 0.03346788510680199, 0.02870200201869011, -0.06725586950778961, 0.011816902086138725, -0.07262638211250305, 0.08201587945222855, -0.025003107264637947, 0.04164813458919525, 0.014279868453741074, 0.020343922078609467, 0.023527106270194054, 0.012803866527974606, 0.011434564366936684, -0.029751207679510117, -0.044386737048625946, -0.01643162965774536, 0.018939053639769554, -0.011834685690701008, -0.004130136221647263, 0.020450619980692863, -0.024380696937441826, 0.006864295341074467, -0.03937188908457756, 0.00830473005771637, -0.028506387025117874, 0.030818196013569832, 0.07810358703136444, 0.03115607611835003, 0.06135186180472374, 0.0014837814960628748, -0.028968749567866325, 0.049437154084444046, 0.0071221510879695415, 0.007411126978695393, 0.014182060956954956, -0.05192679539322853, -0.0016271581407636404, 0.009549550712108612, -0.05270925164222717, -0.03405473008751869, 0.027528313919901848, -0.021393127739429474, -0.005570571403950453, 0.009531768038868904, 0.0013426276855170727, -0.02055731974542141, -0.020343922078609467, -0.005312715657055378, 0.05918231979012489, -0.06405489891767502, 0.003056478686630726, 0.004828124772757292, -0.0012637149775400758, 0.013701915740966797, -0.03787810727953911, 0.02530542016029358, -0.05843542516231537, 0.033948030322790146, -0.057439569383859634, 0.007255524396896362, 0.055127762258052826, -0.032845474779605865, -0.005521667655557394, -0.06302347779273987, -0.015524689108133316, -0.0321163646876812, -0.024007249623537064, -0.016147099435329437, 0.024931974709033966, -0.0115857208147645, -0.03423256054520607, 0.002871978562325239, 0.022104453295469284, 0.005939571652561426, -0.026923686265945435, 0.0085759237408638, 0.012812758795917034, -0.01011861115694046, 0.04033217951655388, -0.03606422618031502, 0.01723187044262886, 0.010518732480704784, -0.023420406505465508, 0.012812758795917034, -0.03930075839161873, 0.011167816817760468, -0.056479278951883316, -0.0484057292342186, 0.0534561462700367, 0.003774473210796714, -0.04545372724533081, 0.018636738881468773, -0.006544198840856552, -0.010892178863286972, 0.03227641433477402, 0.07703659683465958, 0.038233768194913864, -0.04239502549171448, -0.023669371381402016, -0.010998877696692944, 0.005846210289746523, 0.03784254193305969, -0.004541371483355761, 0.04207492992281914, -0.012848325073719025, -0.03487275540828705, -0.0023784961085766554, -0.0025207612197846174, 0.05377624183893204, 0.022033320739865303, -0.003765581641346216, 0.030871545895934105, -0.0238649845123291, 0.01580032706260681, -0.022904695942997932, -0.0013392933178693056, -0.03019578568637371, 0.04499136656522751, 0.04829903319478035, -0.055376723408699036, 0.10171961039304733, 0.024060599505901337, -0.009629574604332447, -0.025501035153865814, -0.05960911512374878, 0.041861530393362045, 0.0099229970946908, -0.022673513740301132, -0.023189226165413857, 0.019899344071745872, 0.021161947399377823, 0.00861593522131443, -0.024789709597826004, -0.05256698653101921, 0.08201587945222855, 0.003978979308158159, 0.010838828980922699, -0.01059875637292862, -0.053882941603660583, 0.0019150228472426534, -0.022086670622229576, 0.04189709946513176, -0.02514537237584591, 0.04616505280137062, 0.02726156637072563, -0.015240157954394817, -0.03361015021800995, 0.009104971773922443, 0.07127486169338226, 0.01316842157393694, 0.02046840451657772, 0.02103746496140957, 0.03570856153964996, -0.12334391474723816, 0.03730904683470726, -0.02331370860338211, 0.030160220339894295, -0.0027697253972291946, -0.03346788510680199, 0.06117403134703636, -0.009291695430874825, 0.028364121913909912, -0.037273477762937546, -0.02149982750415802, -0.00569505337625742, -0.013817506842315197, -0.022424550727009773, 0.005570571403950453, -0.009327261708676815, -0.03264985978603363, -0.028826484456658363, 0.042501725256443024, 0.018779003992676735, 0.007606741972267628, 0.03565521165728569, 0.02980455756187439, 0.01897461898624897, 0.020770717412233353, -0.06850069016218185, -0.05153556540608406, -0.0032476475462317467, -0.06526415795087814, -0.019472546875476837, -0.02576778270304203, 0.0003895621048286557, -0.030622581019997597, -0.06313017755746841, 0.0008224706398323178, 0.041470304131507874, 0.06071167066693306, 0.029111014679074287, 0.02719043381512165, -0.03954972326755524 ]
20,285
start_sdk.cf_r2
upload
Upload local `file_like` contents to r2-bucket path `loc`. Args: file_like (str | Path): Local file loc (str): Remote location args (dict, optional): Will populate `ExtraArgs` during upload. Defaults to {}.
def upload(self, file_like: str | Path, loc: str, args: dict = {}): """Upload local `file_like` contents to r2-bucket path `loc`. Args: file_like (str | Path): Local file loc (str): Remote location args (dict, optional): Will populate `ExtraArgs` during upload. Defaults to {}. """ with open(file_like, "rb") as read_file: return self.bucket.upload_fileobj(read_file, loc, ExtraArgs=args)
(self, file_like: str | pathlib.Path, loc: str, args: dict = {})
[ -0.015065080486238003, -0.025519883260130882, -0.11195351183414459, 0.06102265045046806, -0.0037640011869370937, -0.034758590161800385, 0.011970385909080505, 0.054524701088666916, 0.014683915302157402, -0.004991442430764437, -0.00889838021248579, 0.00907988753169775, -0.018014568835496902, -0.024067826569080353, -0.0475185289978981, -0.0003034569963347167, 0.002634120173752308, -0.026318512856960297, -0.050458941608667374, 0.036392152309417725, -0.020165426656603813, -0.033851053565740585, 0.07674115896224976, -0.012142817489802837, 0.0695897787809372, 0.043561678379774094, 0.004927914589643478, -0.0450863353908062, -0.05329045280814171, -0.008775862865149975, 0.07557950913906097, -0.025646938011050224, -0.004469609819352627, 0.028950365260243416, 0.03180002421140671, -0.06730279326438904, -0.030093859881162643, 0.0021610676776617765, -0.07855622470378876, -0.03232639655470848, -0.030910640954971313, 0.005073120351880789, 0.02348700538277626, -0.05822744220495224, 0.06497950106859207, 0.024975361302495003, 0.028805159032344818, 0.019530152902007103, -0.011934084817767143, -0.003859292482957244, 0.013567647896707058, 0.05292743816971779, -0.012251721695065498, -0.024739403277635574, 0.010681685991585255, 0.029440434649586678, -0.012351551093161106, 0.047954145818948746, -0.05038633942604065, -0.0037821519654244184, 0.011071925982832909, 0.026064403355121613, 0.0447959266602993, -0.02521132118999958, 0.01564590260386467, 0.006824662908911705, -0.0026318514719605446, -0.04653839394450188, -0.0024753015022724867, 0.007514389231801033, -0.021381523460149765, -0.02335994876921177, -0.0026500020176172256, 0.0019262429559603333, -0.009647096507251263, 0.04221852496266365, 0.023505154997110367, 0.058663059026002884, 0.041020579636096954, 0.0375356450676918, 0.005463360343128443, -0.04457811638712883, 0.04544935002923012, -0.05183839797973633, -0.04163770377635956, -0.020328782498836517, -0.006457111332565546, -0.05938908830285072, 0.008803089149296284, 0.0017481391550973058, 0.013250010088086128, 0.024521594867110252, -0.02430378645658493, -0.05383497476577759, -0.004362974315881729, -0.0493335984647274, -0.008952831849455833, -0.046828802675008774, -0.06508840620517731, 0.007732197642326355, -0.04254523664712906, -0.0067702108062803745, -0.018840424716472626, -0.03252605348825455, 0.010354973375797272, -0.043597977608442307, -0.009016360156238079, -0.038116466253995895, -0.01713426038622856, 0.05699319392442703, 0.009284082800149918, -0.02493906021118164, -0.05191100016236305, 0.05822744220495224, -0.05626716837286949, -0.01156199537217617, 0.02762536332011223, 0.00836747232824564, -0.012805318459868431, -0.005567727144807577, 0.06842813640832901, 0.02571954019367695, 0.032762013375759125, -0.0007577916840091348, 0.01582740992307663, 0.018931178376078606, 0.020891454070806503, -0.023341799154877663, -0.04893428459763527, -0.009175178594887257, 0.0008082733256742358, -0.035121601074934006, 0.017197787761688232, 0.002377741504460573, -0.006634080316871405, 0.0084763765335083, 0.0326894074678421, 0.018622616305947304, 0.0033646859228610992, 0.04381578788161278, 0.11021104454994202, -0.04766373708844185, 0.008866616524755955, -0.07543430477380753, 0.008798551745712757, 0.0016142778331413865, -0.07463567703962326, -0.037753455340862274, -0.010327748022973537, 0.018014568835496902, -0.03377845138311386, 0.014919874258339405, 0.04737332463264465, 0.07768499106168747, 0.006398121360689402, -0.01958460360765457, 0.04421510174870491, -0.04363428056240082, -0.03020276315510273, 0.030220914632081985, -0.00242538726888597, 0.011071925982832909, 0.04043975844979286, 0.04058496281504631, -0.005599490832537413, 0.011925009079277515, -0.021526729688048363, 0.04784524440765381, -0.036936674267053604, -0.0045717074535787106, 0.018359431996941566, 0.00909349974244833, 0.002350515453144908, -0.013848983682692051, 0.04497743397951126, 0.003446364076808095, -0.047954145818948746, -0.028188034892082214, 0.03078358620405197, -0.024557895958423615, -0.03252605348825455, -0.040693867951631546, 0.09206034243106842, 0.010981173254549503, 0.007936392910778522, 0.0420733205974102, -0.013086654245853424, -0.01033682283014059, 0.020891454070806503, -0.0008735024021007121, 0.0729295089840889, 0.0354120135307312, -0.014983401633799076, -0.0042563388124108315, 0.03544831648468971, -0.02063734456896782, 0.016480835154652596, -0.009356684982776642, -0.010736138559877872, 0.11580146104097366, -0.020873304456472397, 0.0066567687317729, 0.0001454891898902133, 0.0033193090930581093, 0.03160036727786064, 0.06588703393936157, 0.07216718047857285, -0.01643545739352703, -0.04526784271001816, 0.03971372917294502, -0.014702065847814083, 0.00003598234252422117, -0.030402420088648796, 0.015319189988076687, -0.0034395575057715178, 0.032398998737335205, -0.06890005618333817, 0.031055845320224762, -0.00036585002089850605, 0.05572264641523361, 0.10788775235414505, 0.023958923295140266, -0.040294550359249115, -0.058154840022325516, 0.03582948073744774, -0.009402061812579632, 0.02490275911986828, -0.039750032126903534, -0.04374318569898605, -0.0073101939633488655, -0.024975361302495003, -0.03232639655470848, 0.051947299391031265, 0.016898300498723984, -0.016444534063339233, 0.0003840007120743394, 0.03474043682217598, 0.009810453280806541, 0.024648649618029594, -0.009510966017842293, -0.022652072831988335, 0.018622616305947304, -0.03760824725031853, -0.001137254759669304, -0.047772638499736786, -0.06403566896915436, 0.016108745709061623, 0.035121601074934006, 0.01228802278637886, -0.045231543481349945, 0.05223771184682846, 0.07067882269620895, -0.10817816853523254, 0.05038633942604065, 0.05354456230998039, 0.0027747880667448044, 0.0768863633275032, -0.054851412773132324, -0.007282968144863844, 0.002488914644345641, -0.04243633523583412, -0.05027743801474571, 0.10084528475999832, -0.041964415460824966, -0.017542650923132896, -0.02766166441142559, -0.034123312681913376, -0.006552402395755053, 0.013703777454793453, 0.0005467897863127291, 0.07659594714641571, 0.05510552227497101, -0.024557895958423615, 0.0015462127048522234, 0.0187678225338459, -0.07100553810596466, 0.02644556760787964, 0.031818173825740814, 0.01639915630221367, -0.005953429266810417, -0.021327070891857147, 0.02581029385328293, 0.03731783851981163, -0.014792819507420063, 0.014629463665187359, 0.01746097207069397, -0.027280500158667564, 0.04131099209189415, -0.05227401480078697, -0.010935796424746513, -0.028133584186434746, 0.03316132724285126, -0.0326894074678421, -0.02218015491962433, -0.003598376177251339, 0.0006142877391539514, -0.08676034212112427, 0.03655550628900528, 0.05601305887103081, 0.003857023548334837, -0.06461648643016815, 0.025229470804333687, -0.03544831648468971, 0.005204712972044945, 0.031818173825740814, -0.0035688811913132668, 0.0478089414536953, -0.037826057523489, -0.08480006456375122, 0.02326919697225094, -0.0074644749984145164, -0.01791474036872387, -0.07387334853410721, -0.03270756080746651, 0.028823310509324074, 0.06320073455572128, 0.0125602837651968, 0.007164988666772842, 0.025193169713020325, -0.06588703393936157, 0.024430841207504272, 0.005567727144807577, -0.0023085421416908503, -0.01484727207571268, 0.003918282222002745, -0.05619456246495247, -0.02399522438645363, 0.0096107954159379, -0.04526784271001816, 0.032816462218761444, 0.036845918744802475, 0.06341854482889175, -0.0005530291236937046, -0.012896071188151836, -0.007995382882654667, -0.03971372917294502, -0.01936679519712925, 0.015818335115909576, 0.04820825532078743, 0.003294351976364851, 0.005399832967668772, 0.010445727035403252, 0.027679815888404846, 0.027607213705778122, -0.03644660487771034, 0.07387334853410721, -0.002186024794355035, -0.00874409917742014, 0.01991131715476513, 0.016871074214577675, -0.03724523261189461, -0.016063367947936058, 0.001547347055748105, -0.025864746421575546, -0.04004044085741043, 0.02354145608842373, 0.009846754372119904, -0.034068863838911057, 0.017415596172213554, 0.000615422148257494, 0.0420733205974102, -0.023196592926979065, 0.01949384994804859, -0.04062126576900482, 0.021018508821725845, 0.0037821519654244184, -0.01822330243885517, 0.027171596884727478, -0.0950370579957962, 0.02508426643908024, 0.015491621568799019, -0.017497273162007332, 0.004955140873789787, -0.00016363989561796188, -0.008948294445872307, 0.03405071049928665, 0.00509127089753747, -0.025519883260130882, -0.02208940126001835, -0.03822537139058113, 0.01631747931241989, 0.05677538737654686, 0.026173308491706848, -0.011262509040534496, 0.08349321782588959, 0.010509254410862923, 0.007736735511571169, 0.03909660503268242, -0.0036142580211162567, -0.009665247052907944, -0.012533057481050491, 0.007078772410750389, 0.058844566345214844, -0.027770569548010826, -0.05626716837286949, -0.022742826491594315, 0.02335994876921177, 0.00009422765288036317, -0.014193846844136715, -0.0041882735677063465, -0.0187678225338459, -0.01994761824607849, -0.06998909264802933, 0.013132031075656414, 0.00216787401586771, 0.017034431919455528, -0.037390440702438354, -0.005935278721153736, 0.029767146334052086, 0.031092148274183273, -0.03800756484270096, -0.00242538726888597, 0.016263026744127274, 0.017905663698911667, -0.04998702555894852, 0.07256649434566498, -0.038479480892419815, -0.07420005649328232, -0.0447959266602993, 0.01136233750730753, -0.034395575523376465, -0.04352537542581558, 0.025102416053414345, 0.05898977071046829, 0.012641961686313152, -0.060115113854408264, 0.012533057481050491, -0.07993567734956741, 0.02281542867422104, -0.02853289805352688, 0.0013681089039891958, 0.03764455020427704, 0.03145516291260719, -0.01573665626347065, 0.045195240527391434, 0.0063164434395730495, -0.0067066834308207035, -0.0069471802562475204, 0.03724523261189461, 0.04828086122870445, 0.0028836922720074654, -0.04385208711028099, 0.013812681660056114, -0.011598296463489532, 0.008798551745712757, -0.02172638662159443, -0.06860964000225067, 0.0014270987594500184, 0.05310894548892975, -0.012297098524868488, -0.025429129600524902, -0.0184592604637146, -0.0084763765335083, 0.0063391318544745445, -0.014992477372288704, -0.008961907587945461, 0.0010238129179924726, -0.025592485442757607, -0.006044182926416397, -0.06723018735647202, 0.016117820516228676, 0.019384946674108505, 0.0665767639875412, -0.015654977411031723, -0.010282371193170547, 0.028587350621819496, -0.01138048805296421, -0.03305242210626602, 0.014638538472354412, -0.048643872141838074, 0.02929522842168808, -0.007237591315060854, -0.03804386407136917, 0.020564742386341095, 0.051221273839473724, 0.028224337846040726, -0.01060908380895853, 0.054343193769454956, -0.04374318569898605, 0.0004384528147056699, -0.004419695120304823, -0.09162472933530807, 0.02018357813358307, 0.06131306290626526, 0.028605502098798752, 0.01591816358268261, 0.011897782795131207, 0.005368069279938936, 0.06744799762964249, -0.0020884647965431213, 0.009057198651134968, 0.01994761824607849, 0.02363220974802971, -0.013186482712626457, -0.08240417391061783, 0.060659635812044144, -0.03978633135557175, 0.03229009360074997, -0.05016853287816048, -0.023160291835665703, 0.01991131715476513, 0.013703777454793453, -0.036392152309417725, 0.04254523664712906, -0.009438363835215569, -0.01752449944615364, 0.017415596172213554, -0.01804179511964321, 0.0064661866053938866, -0.028224337846040726, -0.05819113925099373, 0.002395892282947898, 0.041565101593732834, -0.0034168690908700228, 0.03414146602153778, 0.029857899993658066, -0.04915209114551544, -0.01059093326330185, -0.07242128998041153, -0.04944250360131264, -0.01945754885673523, -0.08487267047166824, 0.0493335984647274, -0.0026522709522396326, 0.019112685695290565, -0.03989523649215698, 0.03314317762851715, 0.00945651438087225, -0.015972614288330078, 0.016290253028273582, -0.004031723830848932, 0.004977829288691282, -0.054306890815496445, -0.0723486840724945, 0.06182128190994263, 0.09576308727264404, 0.00565848033875227, -0.04733702167868614, -0.012769016437232494, 0.035121601074934006, -0.008331171236932278, -0.035121601074934006, 0.022888030856847763, -0.039568524807691574, -0.04588496685028076, -0.03169111907482147, -0.01958460360765457, -0.0787014290690422, 0.03786235675215721, -0.07485347986221313, 0.03161851689219475, -0.029440434649586678, 0.019784262403845787, 0.05782812833786011, 0.007450861856341362, 0.04584866389632225, -0.030765434727072716, -0.10062747448682785, -0.014638538472354412, -0.02453974448144436, 0.03495824709534645, 0.075652115046978, 0.027062691748142242, 0.0717315599322319, -0.02884146012365818, 0.020056521520018578, -0.043561678379774094, 0.021708235144615173, -0.016353780403733253, -0.0023414401803165674, 0.04203701764345169, 0.028859611600637436, -0.008249492384493351, -0.009492815472185612, 0.04581236466765404, -0.0017311229603365064, 0.017932889983057976, 0.005386219825595617, -0.010981173254549503, -0.028079131618142128, -0.025919198989868164, -0.020873304456472397, -0.01843203417956829, -0.0014350396813824773, -0.05245551839470863, 0.026463719084858894, 0.0017719620373100042, 0.04279934987425804, -0.02993050217628479, 0.02784317173063755, 0.057937029749155045, -0.014665764756500721, 0.04312606155872345, -0.022107550874352455, 0.01031867228448391, -0.058844566345214844, -0.004539943765848875, -0.06519731134176254, 0.024648649618029594, 0.005876288749277592, 0.0013465549563989043, -0.05525072664022446, -0.046502090990543365, 0.02163563296198845, -0.06207539141178131, -0.006407196633517742, -0.0484260655939579, 0.0026500020176172256, 0.04744592681527138, 0.03020276315510273, 0.014547784812748432, -0.02762536332011223, -0.03270756080746651, 0.03508530184626579, -0.009265932254493237, 0.049587707966566086, -0.04621167853474617, 0.020020220428705215, 0.04773633927106857, 0.016898300498723984, -0.03724523261189461, -0.06320073455572128, -0.006384508218616247, 0.03490379452705383, -0.04073016718029976, -0.028460295870900154, 0.012723639607429504, -0.01131696067750454, -0.02571954019367695, 0.017206862568855286, -0.046647295355796814, -0.03415961563587189, 0.07695896178483963, 0.009855829179286957, 0.03876989334821701, -0.06363634765148163, -0.048462364822626114, 0.005209250841289759, -0.04381578788161278, 0.024648649618029594, 0.05082195624709129, -0.0005847928114235401, -0.020564742386341095, 0.0103640491142869, -0.03464968502521515, -0.005050431936979294, 0.042871952056884766, -0.03622879460453987, -0.0016426382353529334, -0.002836046740412712, 0.04345277324318886, 0.07118704169988632, 0.027262350544333458, 0.029966803267598152, 0.0354120135307312, -0.004678342491388321, 0.03319763019680977, -0.024648649618029594, 0.015409943647682667, 0.002175814937800169, 0.0429808534681797, -0.03490379452705383, 0.010772439651191235, 0.020782550796866417, -0.06189388409256935, 0.01567312888801098, 0.024376388639211655, -0.028242487460374832, -0.01806902140378952, 0.03316132724285126, -0.008303944952785969, -0.013240935280919075, -0.014248298481106758, -0.0006086156354285777, 0.040149345993995667, 0.01625395007431507, 0.05042264237999916, -0.0102914460003376, -0.01473836787045002, 0.026735980063676834, -0.032308243215084076, -0.001134418649598956, 0.024957211688160896, 0.020800700411200523, 0.024684950709342957, 0.06301922351121902, 0.03699112311005592, 0.020292481407523155, 0.003886518534272909, 0.0020498945377767086, 0.032308243215084076, 0.012387852184474468, -0.03710002824664116, 0.004814472980797291, -0.05949798971414566, 0.05644867569208145, 0.05935278534889221, -0.01484727207571268, -0.01643545739352703, -0.00580368610098958, 0.04178290814161301, 0.022996935993433, 0.02878700941801071, 0.01867706887423992, -0.02076439931988716, -0.013976038433611393, -0.0069244918413460255, -0.022615771740674973, 0.04998702555894852, -0.03352434188127518, 0.0000803310249466449, -0.01355857215821743, 0.016598815098404884, -0.010282371193170547, -0.005853600334376097, 0.07986307889223099, 0.03492194414138794, 0.00675659766420722, 0.031400710344314575, -0.027970226481556892, -0.041383594274520874, -0.036029137670993805, -0.029277076944708824, -0.017470046877861023, 0.006992556620389223, -0.04112948477268219, -0.05663017928600311, 0.013485969044268131, -0.026881184428930283, 0.012750865891575813, 0.028805159032344818, -0.0019443936180323362, -0.014774668961763382, 0.04381578788161278, -0.039205510169267654, -0.04875277727842331, 0.02139967493712902, 0.04621167853474617, 0.02571954019367695, 0.03165481984615326, -0.001051038969308138, -0.03150961175560951, -0.03190892934799194, -0.08342061191797256, 0.07017060369253159, -0.004224575124680996, 0.025247622281312943, -0.011825180612504482, -0.034068863838911057, 0.06871854513883591, 0.04897058755159378, -0.027697967365384102, 0.04131099209189415, 0.028006529435515404, 0.0177060067653656, -0.01976611092686653, -0.05318154767155647, 0.019693508744239807, -0.02748015895485878, 0.004746407736092806, -0.009510966017842293, -0.024957211688160896, -0.00023326484370045364, 0.03156406432390213, 0.022869881242513657, 0.009964733384549618, 0.00883485283702612, 0.007047008723020554 ]
20,286
start_sdk.github
Github
# Github API v2022-11-28 Add secrets to .env file: Field in .env | Github Credentials | Where credential found :--|:--:|:-- `GH_TOKEN` | Github Personal Access Token | Ensure _fine-grained_ Personal Access Token [Github Developer Settings](https://github.com/settings/tokens?type=beta) can access the repository represented in the url. `GH_TOKEN_VERSION` | Default: `2022-11-28` | See [docs](https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28)
class Github(BaseSettings): """ # Github API v2022-11-28 Add secrets to .env file: Field in .env | Github Credentials | Where credential found :--|:--:|:-- `GH_TOKEN` | Github Personal Access Token | Ensure _fine-grained_ Personal Access Token [Github Developer Settings](https://github.com/settings/tokens?type=beta) can access the repository represented in the url. `GH_TOKEN_VERSION` | Default: `2022-11-28` | See [docs](https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28) """ # noqa: E501 token: str = Field( default=..., repr=False, env="GH_TOKEN", ) version: str = Field( default="2022-11-28", repr=False, env="GH_TOKEN_VERSION", ) class Config: env_file = ".env" env_file_encoding = "utf-8" def get( self, url: str, media_type: str | None = ".raw", params: dict = {}, ) -> httpx.Response: """See requisite [headers](https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28#get-repository-content--code-samples) Args: url (str): _description_ media_type (str | None, optional): _description_. Defaults to ".raw". params (dict, optional): _description_. Defaults to {}. Returns: httpx.Response: _description_ """ # noqa: E501 with httpx.Client(timeout=120) as client: return client.get( url, params=params, headers={ "Accept": f"application/vnd.github{media_type}", "Authorization": f"token {self.token}", "X-GitHub-Api-Version": self.version, }, ) def get_repo(self, author: str, repo: str) -> httpx.Response: """See Github API [docs](https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository)""" # noqa: E501 return self.get(f"{BASE}/{author}/{repo}") def get_repo_commits(self, author: str, repo: str) -> httpx.Response: """See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28)""" # noqa: E501 return self.get(f"{BASE}/{author}/{repo}/commits") def get_latest_sha(self, author: str, repo: str) -> str: """See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#get-a-commit)""" # noqa: E501 commits_response = self.get_repo_commits(author, repo) return commits_response.json()[0]["sha"] def get_latest_og_img_url(self, author: str, repo: str) -> str: """See [Stackoverflow](https://stackoverflow.com/a/71454181)""" return f"{OG}/{self.get_latest_sha(author, repo)}/{author}/{repo}"
(_env_file: Union[str, os.PathLike, List[Union[str, os.PathLike]], Tuple[Union[str, os.PathLike], ...], NoneType] = '<object object at 0x7f74a8a56270>', _env_file_encoding: Optional[str] = None, _env_nested_delimiter: Optional[str] = None, _secrets_dir: Union[str, os.PathLike, NoneType] = None, *, token: str, version: str = '2022-11-28') -> None
[ 0.009375376626849174, -0.11059298366308212, -0.06507092714309692, 0.015499177388846874, 0.04197488725185394, -0.021223921328783035, -0.049463361501693726, 0.034446995705366135, 0.019016791135072708, -0.013893095776438713, 0.04804449528455734, -0.015085340477526188, 0.020573606714606285, 0.03158954903483391, 0.02579583413898945, 0.01303586270660162, 0.06412501633167267, 0.03513672202825546, 0.04784742742776871, 0.01800190471112728, 0.0024140486493706703, 0.002576627302914858, -0.01760777458548546, -0.006985960993915796, 0.018662072718143463, 0.04662562534213066, 0.05458705872297287, -0.03257487714290619, 0.0333828441798687, -0.07322942465543747, -0.036732953041791916, -0.0054340725764632225, -0.0357673317193985, 0.052064623683691025, 0.0362008772790432, -0.07610657811164856, -0.006113947369158268, 0.0690910592675209, -0.10570576786994934, 0.05025162547826767, -0.014602530747652054, 0.05056692659854889, 0.08883699029684067, -0.07484535872936249, -0.012208188883960247, -0.026465855538845062, -0.005557238589972258, -0.007798854727298021, -0.035412613302469254, -0.042960211634635925, 0.052182864397764206, -0.001262448844499886, -0.007360384799540043, 0.02894887700676918, 0.06479503214359283, -0.013981775380671024, 0.036614712327718735, 0.032062508165836334, 0.01287821028381586, 0.040792495012283325, -0.000631224422249943, 0.020356833934783936, 0.031156007200479507, 0.016336703673005104, 0.010631667450070381, 0.05297112464904785, -0.018711339682340622, -0.0028377387207001448, 0.011301688849925995, -0.008853153325617313, 0.026919106021523476, -0.04232960194349289, -0.018819725140929222, -0.041659582406282425, -0.012109655886888504, -0.012809237465262413, -0.0392356812953949, 0.011429781094193459, 0.022642791271209717, -0.018405888229608536, 0.007409651298075914, -0.008124012500047684, -0.03714678809046745, -0.014750329777598381, 0.06715981662273407, -0.04000423476099968, 0.030663343146443367, -0.014651796780526638, 0.02368723601102829, -0.007380091585218906, -0.021913649514317513, 0.05529649183154106, -0.005168034695088863, -0.00951332226395607, 0.03172749653458595, -0.03693001717329025, 0.012355987913906574, -0.006690363399684429, -0.040674254298210144, -0.0025667741429060698, -0.017213644459843636, -0.015065633691847324, -0.005044868681579828, 0.02774677984416485, -0.040792495012283325, -0.06428266316652298, 0.007000741083174944, -0.015873601660132408, -0.043236102908849716, -0.024514909833669662, -0.09183237701654434, -0.018878845497965813, -0.022366899996995926, -0.03643735498189926, 0.06972166150808334, 0.03903861343860626, -0.025992898270487785, -0.01907590962946415, -0.0018105364870280027, -0.030820995569229126, 0.017302323132753372, 0.06514975428581238, -0.017765427008271217, 0.03635852783918381, 0.08655103296041489, 0.05825246870517731, 0.0012107192305848002, -0.03789563477039337, 0.020140063017606735, -0.04481262341141701, -0.013154101558029652, 0.0807967260479927, -0.05427175387740135, -0.02226836606860161, 0.05198579654097557, 0.036122050136327744, 0.005931662395596504, 0.003749165218323469, 0.03158954903483391, 0.023431051522493362, -0.02352958358824253, 0.0014705989742651582, -0.022623084485530853, -0.04654679819941521, -0.036082636564970016, 0.005700110457837582, 0.020199181511998177, -0.045403819531202316, -0.012434813193976879, -0.0007131296442821622, 0.09648311883211136, -0.002579090651124716, -0.0364176481962204, 0.018780313432216644, -0.02873210422694683, 0.003497907193377614, 0.0059218090027570724, 0.04177781939506531, 0.001159605453722179, 0.07575185596942902, -0.007109126541763544, 0.02926417998969555, 0.060735490173101425, 0.002040856285020709, 0.019558720290660858, 0.07181055843830109, 0.023726649582386017, -0.08016611635684967, 0.01664215512573719, 0.04288138449192047, 0.025598768144845963, -0.017440268769860268, -0.05040927603840828, -0.005828203167766333, 0.004911849740892649, 0.04087132215499878, 0.02114509418606758, -0.004182708915323019, -0.010809025727212429, -0.031254541128873825, -0.02900799550116062, -0.05273464694619179, -0.07614599168300629, -0.0019139957148581743, 0.009799066931009293, 0.07330825179815292, 0.0041654654778540134, 0.013361020013689995, 0.0018807408632710576, 0.040674254298210144, -0.000761164294090122, 0.008503363467752934, 0.05155225470662117, -0.0005834976909682155, -0.006971181370317936, -0.03606292977929115, -0.014080308377742767, -0.04299962520599365, 0.06999755650758743, -0.0029707576613873243, -0.011636699549853802, 0.005281347315758467, 0.03365873545408249, -0.0030692904256284237, 0.009183238260447979, -0.00447337981313467, 0.036181170493364334, -0.04934512451291084, -0.033698149025440216, 0.06715981662273407, -0.061720818281173706, 0.02975684404373169, -0.04753212258219719, 0.015844041481614113, -0.01961784064769745, -0.053207602351903915, 0.03897949308156967, 0.008330930955708027, 0.002023613080382347, 0.03462435305118561, 0.11950033158063889, -0.0036259994376450777, 0.029855376109480858, -0.00042892471537925303, 0.06349440664052963, -0.03582645207643509, 0.040083058178424835, 0.000512369500938803, 0.0033402550034224987, -0.07184997200965881, 0.012690998613834381, -0.01411972101777792, 0.009419715963304043, 0.027234409004449844, 0.009715314023196697, -0.036732953041791916, 0.020140063017606735, -0.006291306111961603, 0.018455155193805695, -0.006577050779014826, 0.02244572527706623, 0.011676112189888954, 0.060420189052820206, 0.03773798421025276, -0.018238384276628494, -0.011892884038388729, -0.031018061563372612, 0.003273745533078909, -0.005572018213570118, -0.06179964542388916, 0.015804627910256386, -0.0192926824092865, -0.011488900519907475, -0.0024596198927611113, -0.005291200242936611, -0.03216103836894035, 0.014523704536259174, -0.07709190249443054, 0.0390189066529274, -0.06365205347537994, 0.03304783254861832, -0.055808860808610916, -0.012868356890976429, 0.038565658032894135, 0.0010912484722211957, -0.031353071331977844, 0.02991449646651745, -0.026465855538845062, 0.0006306085851974785, -0.0016319460701197386, 0.02412077970802784, 0.09569485485553741, -0.03631911426782608, -0.04753212258219719, -0.027392061427235603, -0.0005807264824397862, 0.00297568435780704, 0.01783439889550209, -0.021381573751568794, 0.01620861142873764, -0.029145941138267517, -0.06511034071445465, 0.06861809641122818, 0.047295644879341125, 0.06065666675567627, -0.033146366477012634, -0.04098955914378166, 0.004594082478433847, 0.023884302005171776, 0.03521554917097092, 0.018987230956554413, 0.0225442573428154, -0.008133865892887115, -0.018997084349393845, 0.009656194597482681, -0.03659500554203987, -0.02043566107749939, 0.0463891476392746, 0.030860409140586853, -0.043078452348709106, -0.028535040095448494, 0.04784742742776871, 0.0023832572624087334, -0.010158710181713104, 0.027411768212914467, 0.027667952701449394, 0.07070699334144592, -0.06869692355394363, 0.008557556197047234, 0.028771517798304558, 0.031096886843442917, 0.044260840862989426, 0.034072570502758026, 0.03913714736700058, -0.03247634321451187, -0.04958160221576691, -0.004320654086768627, 0.028002964332699776, -0.025381997227668762, 0.030111560598015785, -0.029205061495304108, 0.005512898787856102, -0.0036998989526182413, -0.04489145055413246, 0.06578036397695541, -0.0172333512455225, -0.004369920585304499, -0.0015913014067336917, 0.01886899210512638, 0.056242406368255615, -0.0481233187019825, -0.03513672202825546, 0.01702643185853958, 0.04520675539970398, 0.05360173061490059, -0.02879122458398342, -0.017627481371164322, -0.02092832326889038, 0.047137994319200516, -0.0429207980632782, -0.003749165218323469, -0.08812755346298218, -0.017420561984181404, 0.0003510223759803921, -0.028929170221090317, -0.05269523337483406, 0.08536864072084427, 0.01885913871228695, -0.010267096571624279, -0.01626773178577423, 0.05253757908940315, 0.04516734182834625, 0.06179964542388916, 0.0172333512455225, 0.021066268905997276, -0.03590527921915054, -0.06664744764566422, -0.0003673418250400573, 0.00970053393393755, -0.01869163289666176, -0.02303692139685154, 0.007286485284566879, -0.023450758308172226, 0.06164199113845825, -0.040142178535461426, -0.04402436316013336, -0.014405465684831142, 0.019607987254858017, 0.036122050136327744, -0.04126545041799545, -0.005754303652793169, 0.005606504622846842, -0.029717430472373962, -0.036555591970682144, 0.014730622991919518, 0.023135453462600708, -0.07823488116264343, -0.03340255096554756, -0.04221136495471001, 0.01902664452791214, 0.057700686156749725, 0.05013338476419449, -0.0023623190354555845, 0.08442272990942001, -0.0029559778049588203, -0.050330448895692825, 0.056991253048181534, -0.030939234420657158, 0.04366964474320412, -0.00023216742556542158, -0.022465432062745094, -0.02043566107749939, 0.012188482098281384, 0.04906923323869705, -0.021125389263033867, -0.04473379999399185, -0.037265028804540634, 0.021972768008708954, 0.0182088240981102, 0.015292258933186531, 0.06826338171958923, 0.008148645982146263, 0.09080763906240463, 0.001513706985861063, 0.01252349279820919, -0.009932085871696472, 0.013627057895064354, 0.008390050381422043, -0.01869163289666176, 0.06235142797231674, -0.08308268338441849, -0.02944153919816017, 0.021716583520174026, -0.0286138653755188, 0.030663343146443367, -0.0015260236104950309, 0.04347258061170578, 0.04654679819941521, 0.03549144044518471, -0.018711339682340622, -0.012897917069494724, -0.03669353947043419, 0.027825605124235153, 0.06499210000038147, -0.03730444237589836, 0.05080340802669525, -0.002786009106785059, -0.010996237397193909, -0.02774677984416485, 0.015351378358900547, 0.02618996426463127, 0.026919106021523476, -0.04910864681005478, 0.015627270564436913, 0.030702756717801094, -0.009616781026124954, -0.02417989820241928, -0.019282829016447067, -0.012011123821139336, 0.018780313432216644, -0.037816811352968216, 0.018819725140929222, 0.005212374497205019, -0.0034018377773463726, 0.020258301869034767, 0.013173808343708515, -0.043709058314561844, 0.035097312182188034, 0.060696080327034, -0.03888096287846565, -0.028535040095448494, 0.03192456066608429, -0.05659712478518486, -0.01972622610628605, -0.02650526911020279, -0.0737023800611496, 0.0041900984942913055, 0.021874235942959785, -0.011823911219835281, 0.00705986050888896, 0.07027344405651093, -0.02687969245016575, -0.027470888569951057, -0.019322242587804794, -0.009276843629777431, -0.06534681469202042, 0.03099835477769375, -0.015903161838650703, -0.03517613559961319, 0.017647188156843185, -0.0005545537569560111, 0.003761481726542115, -0.055808860808610916, 0.050172798335552216, -0.01885913871228695, -0.024652855470776558, 0.031845733523368835, -0.003835381241515279, -0.11484958976507187, -0.05107929930090904, -0.03838830068707466, 0.024416377767920494, -0.019647398963570595, 0.006261746399104595, 0.022623084485530853, -0.051315777003765106, 0.0416201688349247, -0.0016676641535013914, 0.056400056928396225, -0.0010974067263305187, 0.004786220844835043, 0.019657252356410027, -0.04394553601741791, 0.01891825906932354, -0.03996482118964195, 0.019204003736376762, -0.004498012829571962, -0.007951580919325352, -0.002042087959125638, -0.07618540525436401, 0.026761453598737717, -0.040516603738069534, 0.013341313228011131, 0.005572018213570118, 0.03216103836894035, 0.010178416967391968, -0.07610657811164856, -0.03454552963376045, -0.005069502163678408, -0.02987508289515972, -0.051039885729551315, -0.020770670846104622, 0.008917199447751045, -0.048596277832984924, 0.04981807991862297, 0.004308337811380625, -0.020041529089212418, 0.03631911426782608, -0.011636699549853802, 0.02092832326889038, 0.010385335423052311, -0.007015520706772804, 0.04548264667391777, 0.007769295014441013, -0.011469193734228611, 0.04678327590227127, 0.011538166552782059, -0.013745296746492386, 0.003749165218323469, 0.08662986010313034, -0.05100047215819359, -0.041383691132068634, -0.028810931369662285, 0.026229377835989, 0.03931450471282005, -0.002224373398348689, -0.002766302553936839, 0.0018856675596907735, -0.0006466201739385724, 0.02027800865471363, 0.01100609079003334, -0.04150192812085152, -0.05123694986104965, -0.02417989820241928, -0.07650070637464523, -0.03501848503947258, 0.04390612617135048, 0.023982834070920944, 0.03117571398615837, -0.05561179667711258, 0.01865222118794918, -0.007872754707932472, 0.11004120111465454, 0.013380726799368858, 0.0030889969784766436, -0.012562906369566917, 0.005232080817222595, -0.010365628637373447, 0.0420537106692791, -0.0019053741125389934, 0.023076333105564117, 0.03996482118964195, -0.0780378133058548, 0.0092127975076437, -0.031569842249155045, 0.027727073058485985, -0.004155612085014582, 0.009602001868188381, -0.022248659282922745, -0.003803358180448413, -0.01728261634707451, 0.02705705165863037, 0.058843664824962616, -0.015637122094631195, -0.020849497988820076, 0.003751628566533327, -0.003734385361894965, 0.022130420431494713, 0.007183026056736708, 0.0034732739441096783, -0.015311965718865395, -0.02114509418606758, 0.016070665791630745, -0.06712040305137634, -0.016602741554379463, 0.015913013368844986, 0.0463891476392746, 0.0038107482250779867, 0.05021221190690994, 0.012759971432387829, -0.03789563477039337, 0.018090585246682167, 0.007449064403772354, -0.041383691132068634, 0.024357257410883904, -0.00769539549946785, -0.054823536425828934, -0.04804449528455734, 0.03616146370768547, -0.011301688849925995, -0.014159133657813072, 0.03306753933429718, -0.013725590892136097, -0.013824122957885265, 0.0006761799450032413, 0.012562906369566917, 0.030111560598015785, -0.05399586260318756, 0.0255790613591671, -0.029343007132411003, -0.013173808343708515, -0.04118662327528, -0.040083058178424835, -0.005660697817802429, -0.007567303255200386, -0.001021043979562819, -0.008114159107208252, 0.0841074213385582, -0.017597921192646027, -0.08489568531513214, 0.0359841026365757, 0.016336703673005104, -0.03296900540590286, 0.02043566107749939, -0.01555829681456089, 0.02814090996980667, 0.028692692518234253, -0.05096105858683586, -0.05009397119283676, 0.007251998875290155, 0.040792495012283325, 0.01368617732077837, 0.0231945738196373, -0.010779465548694134, 0.044694386422634125, -0.0009003416053019464, 0.06526799499988556, -0.01555829681456089, 0.010592253878712654, 0.020238595083355904, 0.023293105885386467, -0.06306086480617523, -0.03919626772403717, 0.07575185596942902, -0.07007638365030289, 0.0019386288477107882, -0.015272552147507668, -0.07086464017629623, 0.025165224447846413, -0.03651617839932442, -0.02774677984416485, 0.029796257615089417, 0.03452582284808159, -0.02991449646651745, -0.04000423476099968, -0.03287047520279884, -0.02829856239259243, 0.02098744362592697, 0.024455789476633072, -0.05198579654097557, 0.0033550348598510027, -0.004283704794943333, 0.004852730315178633, 0.02390400692820549, -0.03009185381233692, -0.03322518989443779, 0.0021590956021100283, -0.01091741118580103, 0.041226036846637726, 0.025933779776096344, 0.048872169107198715, -0.034013453871011734, 0.024219311773777008, -0.046152666211128235, 0.03062393143773079, -0.012976743280887604, 0.06337616592645645, 0.012838797643780708, 0.00243375520221889, 0.03405286371707916, -0.015755362808704376, 0.044576145708560944, -0.02065243199467659, 0.05427175387740135, -0.010710492730140686, 0.014188693836331367, -0.02335222437977791, 0.04343316704034805, -0.014356198720633984, 0.010848438367247581, -0.04319668933749199, -0.014651796780526638, 0.025815540924668312, -0.018583247438073158, -0.07551538199186325, -0.06526799499988556, -0.026111137121915817, -0.053089361637830734, 0.013794563710689545, -0.020888909697532654, 0.008907346986234188, -0.050330448895692825, 0.043709058314561844, 0.0009225114481523633, 0.037639450281858444, -0.041068386286497116, 0.0005219148588366807, -0.018139850348234177, -0.021558931097388268, -0.016169199720025063, -0.003298378549516201, 0.019450334832072258, 0.0019472504500299692, -0.05517825484275818, 0.07303235679864883, 0.018997084349393845, -0.009744873270392418, -0.011922444216907024, -0.04232960194349289, 0.0153907909989357, -0.009311330504715443, 0.05021221190690994, 0.03003273531794548, 0.015755362808704376, 0.05123694986104965, -0.02417989820241928, -0.02108597569167614, -0.03231869265437126, 0.014996660873293877, -0.020514486357569695, -0.009666047990322113, 0.041226036846637726, 0.004778830800205469, 0.006631243508309126, -0.02163775824010372, -0.07709190249443054, 0.033639028668403625, -0.01154801994562149, -0.04232960194349289, 0.018780313432216644, -0.026524974033236504, -0.02737235464155674, -0.0755942091345787, -0.06810572743415833, 0.02922476828098297, -0.02303692139685154, 0.056400056928396225, -0.009207870811223984, -0.024002540856599808, -0.005532605107873678, 0.004066932946443558, 0.03476230055093765, -0.020356833934783936, 0.00853784941136837, 0.00994686596095562, -0.007439211010932922, 0.003975790459662676, 0.009533029049634933, 0.00304219382815063, 0.02374635636806488, -0.02222895435988903, -0.04244784265756607, 0.004569448996335268, 0.015006514266133308, 0.05951368808746338, 0.01686878129839897, -0.019598133862018585, 0.013173808343708515 ]
20,287
start_sdk.github
get
See requisite [headers](https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28#get-repository-content--code-samples) Args: url (str): _description_ media_type (str | None, optional): _description_. Defaults to ".raw". params (dict, optional): _description_. Defaults to {}. Returns: httpx.Response: _description_
def get( self, url: str, media_type: str | None = ".raw", params: dict = {}, ) -> httpx.Response: """See requisite [headers](https://docs.github.com/en/rest/repos/contents?apiVersion=2022-11-28#get-repository-content--code-samples) Args: url (str): _description_ media_type (str | None, optional): _description_. Defaults to ".raw". params (dict, optional): _description_. Defaults to {}. Returns: httpx.Response: _description_ """ # noqa: E501 with httpx.Client(timeout=120) as client: return client.get( url, params=params, headers={ "Accept": f"application/vnd.github{media_type}", "Authorization": f"token {self.token}", "X-GitHub-Api-Version": self.version, }, )
(self, url: str, media_type: str | None = '.raw', params: dict = {}) -> httpx.Response
[ -0.0016956679755821824, -0.10175826400518417, -0.026039641350507736, 0.010883187875151634, 0.019275153055787086, 0.04949713870882988, -0.007078163325786591, -0.0050233593210577965, 0.01064679492264986, 0.01443818025290966, 0.07891902327537537, -0.012037878856062889, 0.01341077871620655, -0.007669147104024887, 0.010119454935193062, 0.0074418457224965096, 0.02103901095688343, 0.006046215537935495, 0.04869703948497772, -0.02778531424701214, -0.024075757712125778, -0.005027905572205782, 0.024548543617129326, 0.005327943246811628, -0.002777622314170003, -0.03193129226565361, 0.017620399594306946, -0.044587429612874985, 0.000343793275533244, -0.018047725781798363, 0.035095326602458954, 0.024530360475182533, -0.04131428897380829, 0.017265809699892998, 0.00018226726388093084, 0.050369974225759506, 0.0008381736697629094, 0.021184483543038368, -0.04182344675064087, 0.04909708723425865, -0.0354590080678463, -0.011065028607845306, 0.11135946959257126, -0.0541159026324749, 0.018084093928337097, -0.024384887889027596, -0.012337916530668736, -0.0529521182179451, -0.07877355068922043, -0.03975045680999756, 0.0440782755613327, 0.040623296052217484, 0.0016104299575090408, -0.056625306606292725, -0.0007375928107649088, -0.028749072924256325, 0.005846190266311169, 0.046660419553518295, 0.03109482303261757, 0.036004532128572464, 0.018211383372545242, -0.010464953258633614, 0.021930033341050148, -0.00038442338700406253, -0.004257353954017162, 0.043023597449064255, 0.026876110583543777, -0.0328950472176075, 0.0007427071104757488, -0.028112629428505898, 0.03531353548169136, 0.037568364292383194, 0.00664174510166049, -0.027439817786216736, -0.006737211719155312, -0.011365066282451153, 0.016365695744752884, -0.06168048828840256, 0.01854778826236725, -0.005359765607863665, 0.021329957991838455, 0.011628735810518265, 0.018211383372545242, -0.021493613719940186, 0.01698395609855652, -0.044260114431381226, 0.05451595038175583, -0.048296988010406494, 0.014119958505034447, 0.006823585834354162, -0.002359387930482626, 0.044260114431381226, -0.052843015640974045, -0.07724608480930328, -0.0003335647052153945, 0.013301674276590347, 0.008219216018915176, -0.02285742200911045, 0.006373529322445393, 0.031313031911849976, 0.03602271527051926, 0.03085842914879322, -0.030003776773810387, 0.05207928270101547, -0.03438614681363106, 0.0033754247706383467, 0.020766248926520348, 0.00923752598464489, -0.05647983402013779, 0.02451217547059059, -0.0129470843821764, 0.035440824925899506, 0.01805681735277176, -0.02062077634036541, 0.0937572568655014, 0.0031003900803625584, -0.02500314638018608, 0.01592927798628807, -0.06549914926290512, -0.010710438713431358, -0.030567483976483345, 0.04193254932761192, 0.026203297078609467, -0.01896602287888527, 0.055134210735559464, 0.05040634423494339, -0.022457372397184372, -0.05782546103000641, 0.018511420115828514, 0.0013126651756465435, -0.030658403411507607, 0.03133121505379677, -0.031222110614180565, 0.04462379962205887, 0.012447020970284939, 0.05640709772706032, -0.04473290219902992, -0.0006972468690946698, 0.005137010011821985, 0.0331132598221302, 0.0013865381479263306, 0.011319606564939022, 0.029385516420006752, -0.023239288479089737, -0.0524793304502964, -0.040223244577646255, 0.047387782484292984, -0.06680840998888016, 0.023130184039473534, 0.0450238473713398, 0.07462757080793381, -0.008660180494189262, 0.027421632781624794, 0.014865507371723652, -0.030585667118430138, -0.010501321405172348, 0.05266117304563522, 0.03975045680999756, -0.02500314638018608, 0.10619518160820007, 0.028585415333509445, 0.04709683731198311, 0.04993355646729469, -0.016383880749344826, -0.0015774712665006518, 0.015147360973060131, 0.014501824975013733, -0.006496272049844265, 0.023402946069836617, -0.03655005618929863, -0.01583835668861866, 0.012383376248180866, -0.03500440716743469, -0.0580800361931324, 0.050951868295669556, -0.017529478296637535, 0.0410597138106823, 0.04356911778450012, -0.07080890983343124, -0.050369974225759506, 0.020893538370728493, -0.07055433094501495, -0.08764739334583282, 0.03982319310307503, -0.02358478680253029, 0.042114391922950745, 0.029494620859622955, -0.017574939876794815, 0.005878012627363205, 0.02820354886353016, -0.046733155846595764, -0.02483949065208435, -0.019929781556129456, -0.02267558127641678, -0.024784937500953674, -0.09848511964082718, -0.04076876863837242, 0.0017024870030581951, -0.00465285824611783, 0.0517883375287056, 0.010328572243452072, 0.0002677893789950758, 0.0172567181289196, 0.02152998186647892, -0.0009364815196022391, -0.018838735297322273, 0.020420752465724945, -0.0473514124751091, 0.018911471590399742, 0.04786057025194168, -0.02227552980184555, 0.03785930946469307, -0.059607502073049545, -0.021257219836115837, -0.03789567947387695, -0.05487963557243347, -0.04902435094118118, -0.02062077634036541, 0.004782420117408037, -0.025275908410549164, 0.0312584787607193, -0.0017638583667576313, -0.015147360973060131, 0.0569162555038929, 0.013265306130051613, -0.02944006957113743, 0.04447832331061363, 0.0064144437201321125, -0.06560825556516647, -0.06451720744371414, 0.013701724819839, -0.010455861687660217, 0.032040394842624664, 0.024148494005203247, -0.0282217338681221, -0.003479983424767852, 0.01786588504910469, 0.03084024414420128, 0.0008188530337065458, 0.04189618304371834, -0.015547411516308784, 0.027821682393550873, 0.0429144911468029, 0.06604467332363129, -0.0585528239607811, -0.02838539145886898, -0.052843015640974045, 0.042696282267570496, 0.017093060538172722, -0.0401141382753849, -0.023948468267917633, -0.010574057698249817, 0.020348016172647476, -0.007360017392784357, 0.019602466374635696, -0.022584659978747368, -0.021930033341050148, -0.12772516906261444, 0.008901120163500309, -0.03020380064845085, -0.013810829259455204, -0.006719027645885944, 0.03011288121342659, 0.019911596551537514, -0.013783552683889866, -0.0800100713968277, -0.0075736804865300655, 0.04247807338833809, -0.0015547411749139428, -0.008728371001780033, 0.06935418397188187, 0.08495614677667618, 0.009601208381354809, -0.052188385277986526, 0.013238029554486275, -0.02022072672843933, 0.02738526463508606, -0.01341077871620655, 0.013638080097734928, 0.02112993225455284, -0.06619014590978622, -0.02285742200911045, 0.06662656366825104, -0.06440810859203339, 0.050770025700330734, -0.008582898415625095, 0.0003486234345473349, 0.0643717348575592, -0.0389503575861454, 0.02129358984529972, 0.026021456345915794, 0.03836846351623535, -0.04287812486290932, -0.020147990435361862, 0.05204291269183159, -0.0690268725156784, -0.04207802191376686, 0.04429648444056511, 0.02491222694516182, 0.03880488499999046, -0.0779007151722908, 0.021748190745711327, 0.03153124079108238, -0.03531353548169136, -0.0029435523319989443, -0.01905694417655468, 0.01588381640613079, -0.057207200676202774, 0.007332740817219019, 0.0036618243902921677, 0.07593683153390884, 0.023730259388685226, 0.02482130564749241, 0.05487963557243347, -0.07179085165262222, -0.013156200759112835, 0.01914786361157894, 0.02062077634036541, 0.021329957991838455, 0.016920311376452446, 0.017465833574533463, -0.000918297388125211, -0.0020991277415305376, -0.009637576527893543, -0.0025003147311508656, -0.007255458738654852, -0.041205186396837234, 0.05549789220094681, -0.021711822599172592, 0.04873340576887131, 0.03982319310307503, 0.03527716547250748, -0.020184358581900597, -0.005405225791037083, -0.04396916925907135, -0.0800100713968277, 0.002954917261376977, -0.08750192075967789, 0.04364185780286789, 0.01828411966562271, 0.03084024414420128, -0.06189870089292526, -0.008801107294857502, -0.024457624182105064, 0.023693891242146492, -0.001955928048118949, 0.07870081067085266, -0.03745925799012184, 0.004211893770843744, -0.07659145444631577, -0.0038391195703297853, 0.04164160415530205, 0.012137890793383121, -0.043096333742141724, -0.054152268916368484, 0.001309255720116198, 0.022220978513360023, -0.03189492225646973, -0.03573177009820938, 0.011692380532622337, -0.004641493316739798, 0.05164286121726036, -0.03644094988703728, 0.01027402002364397, -0.07411842048168182, -0.035349901765584946, 0.009510288015007973, -0.002067305613309145, 0.012283364310860634, -0.02845812775194645, -0.028439942747354507, 0.05153375864028931, -0.045678477734327316, 0.050442710518836975, -0.006682659033685923, -0.007059979252517223, -0.07168174535036087, -0.0823376327753067, -0.007173629943281412, 0.01822047494351864, -0.005750723648816347, 0.03735015541315079, -0.042114391922950745, -0.00664174510166049, -0.01092864852398634, -0.03851393982768059, 0.04840609058737755, 0.049206193536520004, -0.052588436752557755, -0.02302107959985733, 0.022639213129878044, -0.04487837478518486, 0.047315046191215515, 0.017929529771208763, 0.010083086788654327, -0.046987731009721756, -0.015565595589578152, 0.040041401982307434, 0.0014194968389347196, 0.022966526448726654, 0.07760976999998093, 0.057716354727745056, 0.043350908905267715, 0.005009721498936415, -0.0074827601201832294, -0.039241302758455276, 0.03438614681363106, -0.04800604283809662, -0.026294218376278877, -0.014210879802703857, -0.07179085165262222, -0.02969464659690857, 0.020657144486904144, -0.019947964698076248, 0.030149249359965324, 0.029167307540774345, 0.0800100713968277, 0.002488949568942189, -0.007532766088843346, -0.018784182146191597, 0.0021673182491213083, -0.03978682681918144, 0.05840735137462616, 0.013628987595438957, 0.006196234375238419, 0.013419870287179947, 0.019784308969974518, -0.015547411516308784, 0.0003148123505525291, -0.024403071030974388, 0.05386132374405861, -0.04240533709526062, 0.008155572228133678, -0.01389265712350607, 0.016365695744752884, 0.011765116825699806, -0.040223244577646255, -0.029058203101158142, 0.011792393401265144, 0.032949600368738174, -0.03084024414420128, -0.004189163446426392, -0.04771509766578674, -0.0021298134233802557, 0.011146857403218746, 0.0017490837490186095, 0.04513295367360115, -0.01761130802333355, 0.0016445250948891044, -0.048224251717329025, -0.030221985653042793, 0.05306122452020645, 0.016411155462265015, 0.017547663301229477, -0.008719279430806637, -0.058698296546936035, -0.00503245135769248, 0.039059460163116455, -0.02342112921178341, -0.027439817786216736, 0.09113874286413193, -0.023111999034881592, 0.005482508335262537, -0.058625560253858566, 0.010401309467852116, -0.051279179751873016, 0.006132590118795633, -0.04564210772514343, 0.004382369574159384, -0.031985845416784286, 0.011746932752430439, 0.018875103443861008, -0.026876110583543777, 0.005182470194995403, -0.0003193583688698709, -0.02062077634036541, 0.0041732522659003735, -0.011528723873198032, -0.0345134362578392, -0.04364185780286789, -0.02227552980184555, 0.05578884109854698, -0.0006461040466092527, -0.02162090316414833, 0.00931935478001833, -0.0045823948457837105, 0.004521023482084274, 0.020566225051879883, 0.06506273150444031, -0.000786462624091655, 0.02754892222583294, 0.07084527611732483, -0.049788083881139755, 0.03285868093371391, -0.04807877913117409, 0.011719657108187675, -0.06520820409059525, -0.05327943339943886, -0.01987522840499878, -0.02789442054927349, 0.055316053330898285, -0.05378858745098114, 0.06186233088374138, 0.032713208347558975, -0.023384761065244675, -0.03078569285571575, 0.018947839736938477, -0.012956175953149796, 0.029076386243104935, -0.023057447746396065, -0.0023321115877479315, 0.09637576341629028, 0.01954791508615017, -0.03480438143014908, -0.004750597756356001, -0.000687586551066488, -0.01092864852398634, 0.007828257977962494, 0.007982823066413403, 0.03673189505934715, 0.03076750785112381, -0.005259752739220858, 0.03916856646537781, 0.01863870956003666, -0.00034635039628483355, 0.008614720776677132, -0.02474856935441494, -0.0000352139504684601, -0.021511798724532127, 0.04298722743988037, -0.018856918439269066, -0.021875480189919472, -0.09673944860696793, -0.007532766088843346, -0.03504077345132828, -0.026530612260103226, -0.02434851974248886, 0.0006892912788316607, 0.00715999212116003, 0.028730887919664383, 0.026039641350507736, -0.029658278450369835, 0.0018831915222108364, 0.01299254409968853, -0.06633561849594116, 0.04247807338833809, 0.06317158788442612, -0.0003696487983688712, 0.037750206887722015, -0.014174510724842548, -0.010755899362266064, -0.059680238366127014, 0.05175196751952171, -0.017129428684711456, -0.0007171357283368707, 0.11281419545412064, -0.011555999517440796, -0.0101467315107584, 0.025694143027067184, -0.029767382889986038, 0.07600956410169601, 0.015656515955924988, -0.035840872675180435, 0.0765187218785286, -0.04069603234529495, 0.06735393404960632, 0.06877229362726212, 0.00726000452414155, 0.006168958265334368, -0.0101467315107584, 0.039895929396152496, 0.006305338814854622, -0.0197115708142519, -0.003668643534183502, 0.05560699850320816, 0.014238155446946621, 0.027603473514318466, 0.013347133994102478, 0.0065008183009922504, 0.02085717022418976, 0.002773076295852661, -0.052333857864141464, 0.04440558701753616, -0.0009910338558256626, 0.01034675631672144, -0.028258102014660835, -0.017274901270866394, -0.07117259502410889, 0.005673441104590893, -0.008355597034096718, 0.029967408627271652, 0.037568364292383194, 0.014074498787522316, -0.047642361372709274, 0.04069603234529495, -0.003257228061556816, -0.06495363265275955, -0.04047781974077225, -0.028803624212741852, 0.02863996848464012, 0.05098823457956314, -0.004059602040797472, -0.025021331384778023, 0.008360142819583416, -0.0310220867395401, 0.013747184537351131, 0.07630050927400589, -0.030076513066887856, 0.05495237186551094, -0.05146102234721184, -0.008341958746314049, -0.038150254637002945, -0.06473542004823685, -0.025712326169013977, -0.04018687456846237, -0.016065659001469612, 0.0057870917953550816, 0.029658278450369835, -0.020584408193826675, -0.047315046191215515, 0.09426640719175339, 0.027621658518910408, 0.01651116833090782, 0.008546530269086361, -0.023366577923297882, 0.058625560253858566, -0.008223761804401875, 0.002911729970946908, -0.004502839408814907, 0.03524079918861389, 0.047969672828912735, 0.0075282203033566475, -0.009219341911375523, 0.0030526570044457912, 0.02343931421637535, -0.0028139904607087374, 0.06186233088374138, -0.023166552186012268, 0.02647605910897255, 0.034695275127887726, -0.0061825960874557495, -0.01854778826236725, -0.01882055029273033, 0.0767369270324707, -0.07033612579107285, 0.011237777769565582, -0.013947210274636745, 0.020838987082242966, 0.028530864045023918, -0.046333104372024536, -0.003543627681210637, 0.02078443393111229, 0.08692003041505814, 0.0051688323728740215, 0.022621028125286102, -0.037677470594644547, 0.02696703001856804, 0.0024184861686080694, 0.006387167610228062, 0.02605782449245453, 0.04076876863837242, -0.015447398647665977, 0.04495111107826233, -0.000448920123744756, -0.016111118718981743, -0.07037249207496643, -0.01493824366480112, -0.03589542582631111, 0.02393028512597084, -0.030749324709177017, 0.004077786114066839, 0.040623296052217484, 0.02591235190629959, -0.0069008683785796165, -0.0030526570044457912, -0.016202038154006004, -0.00277534918859601, -0.02129358984529972, 0.0038141163531690836, 0.02036619931459427, -0.009892154484987259, 0.022784685716032982, -0.027948971837759018, 0.056952621787786484, -0.010055811144411564, -0.00314585049636662, -0.039132196456193924, 0.0019400168675929308, -0.04124155268073082, -0.00973758939653635, -0.006509910337626934, 0.007946454919874668, 0.023730259388685226, -0.03489530086517334, 0.02787623554468155, 0.08575624972581863, -0.0036754626780748367, -0.06473542004823685, 0.005091549828648567, 0.030967533588409424, 0.017429465427994728, -0.022075505927205086, 0.03618637099862099, 0.024112125858664513, -0.012074247002601624, 0.010292204096913338, 0.013138016685843468, 0.007760067470371723, -0.017174888402223587, -0.033040523529052734, -0.04171434044837952, 0.0321858674287796, 0.006614468991756439, -0.043096333742141724, 0.014747310429811478, 0.010010350495576859, 0.00973758939653635, 0.016011105850338936, -0.016483893617987633, 0.009664853103458881, -0.016311144456267357, -0.030294721946120262, -0.002843539696186781, 0.04102334380149841, -0.004193709697574377, 0.03953224793076515, -0.03693192079663277, -0.040623296052217484, -0.0055188764818012714, -0.030622035264968872, 0.03800478205084801, 0.03953224793076515, 0.013910841196775436, -0.05204291269183159, -0.010837727226316929, -0.058698296546936035, 0.00896931067109108, 0.002361660823225975, 0.015656515955924988, -0.020475303754210472, -0.03480438143014908, 0.00756913423538208, -0.04767872765660286, -0.08706550300121307, -0.013501699082553387, -0.05367948114871979, 0.024275781586766243, -0.015211005695164204, -0.029185490682721138, 0.029840119183063507, -0.021802743896842003, -0.06837224215269089, 0.03447706624865532, 0.03291323408484459, -0.01912968046963215, 0.012692506425082684, -0.03371333330869675, 0.021220851689577103, 0.029003649950027466, 0.0197115708142519, -0.029767382889986038, 0.009187519550323486, 0.026948846876621246, 0.004248261917382479, -0.023148367181420326, 0.005105188116431236, -0.02778531424701214, -0.050697289407253265 ]
20,288
start_sdk.github
get_latest_og_img_url
See [Stackoverflow](https://stackoverflow.com/a/71454181)
def get_latest_og_img_url(self, author: str, repo: str) -> str: """See [Stackoverflow](https://stackoverflow.com/a/71454181)""" return f"{OG}/{self.get_latest_sha(author, repo)}/{author}/{repo}"
(self, author: str, repo: str) -> str
[ -0.026738014072179794, -0.06592245399951935, -0.0836695209145546, 0.06910955160856247, 0.03868121653795242, -0.038882508873939514, 0.02038060687482357, 0.015289648436009884, 0.10212109982967377, 0.0031933810096234083, 0.05250312760472298, 0.031233489513397217, -0.03341413289308548, -0.007212889846414328, -0.020749637857079506, 0.024959953501820564, 0.015499325469136238, 0.03468896821141243, 0.01848512701690197, 0.00808933936059475, 0.0009430224308744073, -0.00043507982627488673, -0.03160252049565315, -0.0507250651717186, 0.024708341807127, 0.02776123769581318, 0.06300375610589981, -0.013645781204104424, -0.03388380631804466, -0.06461407244205475, 0.022728988900780678, -0.07682566344738007, 0.05773666501045227, 0.02459092251956463, 0.03613154590129852, 0.004814184736460447, 0.035594772547483444, 0.06125923991203308, -0.09145273268222809, -0.04203604906797409, -0.01278191152960062, -0.05246957764029503, 0.056092798709869385, -0.0569315068423748, 0.035326384007930756, -0.004162088967859745, 0.00031530181877315044, -0.04055992513895035, -0.03024381399154663, -0.05139603465795517, -0.0045290240086615086, 0.0005540715646930039, -0.011674816720187664, 0.016044486314058304, -0.024305760860443115, 0.009536110796034336, 0.004411604721099138, 0.035829611122608185, -0.0142328767105937, 0.10306045413017273, 0.019307060167193413, -0.04750442877411842, 0.03723863884806633, 0.005355151370167732, 0.03801025077700615, 0.039150893688201904, 0.011540623381733894, 0.022443829104304314, -0.02316511794924736, 0.024272212758660316, 0.019290287047624588, 0.032273486256599426, -0.0023756406735628843, -0.018350932747125626, -0.06454697251319885, -0.051798611879348755, 0.016338033601641655, -0.009955464862287045, 0.04364636912941933, 0.009502562694251537, 0.011104495264589787, -0.0354941263794899, 0.04374701529741287, -0.03148510307073593, 0.021940603852272034, -0.08803080022335052, 0.01159933302551508, -0.030092846602201462, -0.01703416183590889, 0.016212226822972298, -0.004453539848327637, 0.03730573505163193, -0.019172867760062218, -0.07259857654571533, 0.042908307164907455, -0.0019499963382259011, -0.0005551199428737164, -0.0007957243360579014, 0.0594811774790287, -0.02289673127233982, 0.00663418136537075, -0.038848958909511566, -0.016338033601641655, 0.00941869243979454, 0.007665792014449835, 0.009099982678890228, 0.026150919497013092, -0.014417392201721668, -0.0556902177631855, 0.004076121374964714, -0.038647670298814774, -0.04921539127826691, 0.010089658200740814, 0.002337898826226592, 0.09151982516050339, -0.022762538865208626, 0.012790299020707607, -0.019206415861845016, 0.05807214975357056, -0.0072799865156412125, -0.05122829228639603, 0.005250312853604555, -0.06421149522066116, -0.02308124676346779, 0.035561222583055496, -0.01024901308119297, -0.02370189130306244, -0.03522574156522751, -0.07380631566047668, -0.0582398921251297, 0.0009828610345721245, 0.024691566824913025, -0.027794787660241127, -0.022141894325613976, 0.03546058014035225, -0.027207691222429276, -0.022863183170557022, 0.0056696669198572636, 0.028130270540714264, 0.02695607952773571, -0.023181892931461334, -0.029522525146603584, -0.009083208627998829, 0.016774162650108337, 0.009871594607830048, 0.026620594784617424, 0.028683817014098167, -0.0025706402957439423, 0.0910501554608345, -0.06783471256494522, 0.06404375284910202, 0.0038307993672788143, 0.01171675231307745, 0.024691566824913025, -0.021051572635769844, -0.03982185944914818, 0.01038320641964674, -0.024691566824913025, -0.01910577155649662, 0.021202541887760162, 0.07568501681089401, 0.003793057519942522, 0.05626054108142853, -0.06461407244205475, -0.0036840252578258514, 0.008143856190145016, 0.07118954509496689, 0.03576251491904259, 0.02579866163432598, 0.018787061795592308, -0.001931125414557755, -0.028667043894529343, -0.03995605558156967, -0.03081413544714451, 0.01436707004904747, 0.10165142267942429, -0.008399661630392075, 0.007300954312086105, -0.024456728249788284, -0.0014320941409096122, -0.02358447201550007, -0.0005755634629167616, -0.009905142709612846, -0.017084484919905663, -0.004587733186781406, -0.010215464979410172, 0.027408981695771217, -0.009510950185358524, 0.019592221826314926, 0.023265762254595757, -0.02737543359398842, 0.008525467477738857, -0.049047648906707764, -0.014031586237251759, 0.06998180598020554, -0.031350910663604736, 0.0070619224570691586, 0.013855458237230778, 0.057904407382011414, 0.043176691979169846, 0.023919954895973206, 0.008638693951070309, -0.053543124347925186, -0.0028893493581563234, 0.043210241943597794, -0.02034705877304077, 0.021672217175364494, -0.016103195026516914, -0.02962317131459713, 0.0253625325858593, -0.004061444196850061, 0.03468896821141243, -0.0709211602807045, 0.028935430571436882, -0.010509012266993523, -0.028432205319404602, -0.014073521830141544, 0.060655370354652405, -0.04106314852833748, 0.02393672987818718, -0.009619981981813908, -0.06058827415108681, 0.007221276871860027, 0.00999740045517683, 0.06297020614147186, -0.02239350602030754, 0.06521794199943542, 0.0012266106205061078, 0.0468670092523098, -0.0133019108325243, -0.020464478060603142, -0.0004709870263468474, 0.024641243740916252, 0.05622699111700058, 0.054583124816417694, 0.006789342034608126, -0.011179978959262371, -0.0076490179635584354, -0.0004515918844845146, 0.022728988900780678, -0.013041910715401173, -0.00433192728087306, 0.032273486256599426, 0.05974956601858139, -0.0013052395079284906, -0.06645923107862473, -0.02242705412209034, 0.0379767045378685, -0.017696741968393326, -0.04659862071275711, -0.006894180551171303, 0.045726366341114044, -0.004204024560749531, -0.0266038216650486, -0.0017780611524358392, -0.04072766751050949, -0.012035461142659187, -0.009838046506047249, -0.0028243495617061853, 0.006068053189665079, 0.02370189130306244, -0.030830910429358482, -0.006353213917464018, 0.00943546649068594, -0.07051857560873032, -0.07219599187374115, 0.0039146700873970985, 0.01173352636396885, -0.030411556363105774, 0.04230443760752678, 0.06156117469072342, -0.005028055049479008, -0.02432253584265709, -0.06290310621261597, 0.01026578713208437, -0.010961915366351604, 0.0074309539049863815, -0.002005560789257288, -0.0392179898917675, -0.031216716393828392, -0.02687220834195614, -0.03275993838906288, 0.01315094344317913, 0.029958654195070267, -0.0019950768910348415, -0.0024091890081763268, 0.043176691979169846, -0.049248941242694855, 0.007611276116222143, -0.0009000386344268918, 0.054817963391542435, 0.04233798384666443, -0.011037399061024189, 0.015205778181552887, -0.04525668919086456, -0.02861672081053257, 0.06964632123708725, 0.049752164632081985, 0.02524511329829693, 0.029287686571478844, -0.03522574156522751, 0.04733668640255928, -0.0184012558311224, -0.06585536152124405, 0.0019992704037576914, 0.0043696691282093525, 0.022225765511393547, -0.053073450922966, -0.012748363427817822, 0.012639331631362438, 0.022527700290083885, 0.01801544986665249, 0.026738014072179794, 0.07481276243925095, -0.0392179898917675, 0.012035461142659187, 0.020045123994350433, -0.05907860025763512, 0.002293866593390703, 0.007657404989004135, 0.013805135153234005, 0.03670186549425125, 0.008408049121499062, -0.03155219927430153, 0.014736101031303406, -0.07655727863311768, -0.056864410638809204, 0.045726366341114044, 0.003604348050430417, 0.035091545432806015, 0.002490963088348508, -0.011104495264589787, 0.019944479689002037, 0.02935478463768959, 0.03727218881249428, 0.013352232985198498, -0.00818998459726572, -0.06602310389280319, 0.016832871362566948, -0.02965671941637993, -0.03210574761033058, -0.07789921015501022, 0.007493856828659773, 0.06696245819330215, 0.026771562173962593, 0.004357088822871447, 0.06689535826444626, -0.06417794525623322, -0.020078672096133232, -0.1395610272884369, 0.0053467643447220325, 0.04102960228919983, -0.028432205319404602, -0.02111867070198059, 0.030294137075543404, 0.10701915621757507, -0.044954754412174225, -0.0033778969664126635, 0.018048997968435287, 0.06696245819330215, 0.00795514602214098, -0.048745714128017426, 0.035326384007930756, 0.0018556417198851705, -0.04274056479334831, 0.06806954741477966, 0.028750913217663765, 0.024775438010692596, 0.02823091484606266, -0.035326384007930756, -0.049987003207206726, 0.018971577286720276, 0.023366408422589302, 0.012849008664488792, -0.03438703343272209, 0.006105795037001371, -0.007015793118625879, -0.0354941263794899, -0.012010300531983376, -0.04210314527153969, 0.0033359616063535213, 0.04002315178513527, 0.025513499975204468, 0.003998540807515383, 0.0030969297513365746, -0.02509414590895176, 0.025144468992948532, 0.006491600535809994, -0.00855901651084423, -0.046430882066488266, -0.02544640377163887, -0.02865026891231537, 0.03868121653795242, 0.022678667679429054, -0.018199965357780457, -0.052067000418901443, 0.03015994280576706, -0.019625769928097725, -0.04253927618265152, -0.03183735907077789, 0.030059298500418663, 0.04401540011167526, 0.05626054108142853, -0.03257542476058006, -0.014526423998177052, -0.053811512887477875, -0.06696245819330215, 0.028012851253151894, -0.04247217997908592, 0.0045416043139994144, -0.08065017312765121, -0.026905756443738937, -0.048980552703142166, 0.010785786435008049, 0.05874311551451683, -0.012857395224273205, 0.02725801430642605, -0.042170245200395584, -0.008059985004365444, 0.024741889908909798, -0.012572234496474266, 0.03522574156522751, -0.008525467477738857, 0.05035603418946266, -0.07742953300476074, 0.006248375400900841, 0.005413861013948917, -0.015390293672680855, -0.005145474337041378, 0.034554775804281235, 0.013930941931903362, 0.025396080687642097, -0.008730951696634293, 0.006365794688463211, 0.022175442427396774, 0.014308360405266285, 0.00289563974365592, -0.03413541987538338, 0.011783848516643047, 0.005770311690866947, -0.022913506254553795, 0.006520955357700586, -0.012966427020728588, 0.03289413079619408, 0.04911474511027336, -0.0069361161440610886, -0.012169654481112957, -0.02115221880376339, 0.02085028402507305, 0.00785030797123909, -0.03596380352973938, 0.023265762254595757, -0.051026999950408936, 0.01293287891894579, 0.007158373482525349, -0.05310699716210365, -0.02873414009809494, 0.007514824625104666, -0.01845157891511917, -0.009469014592468739, -0.04522314295172691, 0.05441538244485855, 0.018787061795592308, -0.03448767587542534, 0.031921230256557465, -0.05766956880688667, 0.051999904215335846, -0.06404375284910202, -0.03968766704201698, 0.012815459631383419, 0.05260377377271652, -0.02509414590895176, 0.007825146429240704, 0.035594772547483444, -0.012345783412456512, -0.04237153381109238, -0.0006269342848099768, 0.02517801709473133, -0.022527700290083885, -0.053543124347925186, -0.051999904215335846, 0.020464478060603142, -0.004319346975535154, -0.006093214266002178, 0.03388380631804466, 0.056897956877946854, -0.053039900958538055, -0.008106113411486149, 0.047974102199077606, 0.02876768819987774, -0.0034659611992537975, 0.05173151567578316, -0.07414180040359497, 0.03260897099971771, -0.0009639901109039783, 0.012287073768675327, 0.017009001225233078, 0.02870059199631214, -0.04710184782743454, -0.03780896216630936, 0.02100125141441822, -0.056864410638809204, -0.003904186189174652, -0.030730264261364937, 0.014803198166191578, -0.061192143708467484, -0.003558219177648425, 0.004793216940015554, 0.006529342848807573, 0.028482526540756226, 0.05092635750770569, -0.06129278987646103, 0.014870294369757175, 0.013360620476305485, 0.006479020230472088, -0.04327733814716339, 0.002363060135394335, 0.027392206713557243, 0.019743189215660095, -0.005644505377858877, 0.003107413649559021, -0.01913931965827942, -0.03093155473470688, -0.02061544544994831, -0.02200770005583763, 0.00349531602114439, 0.02467479184269905, 0.04072766751050949, -0.004994506947696209, 0.04082830995321274, -0.04099605232477188, 0.002214189385995269, -0.023735439404845238, 0.026083821430802345, 0.0016113679157570004, 0.06384246051311493, -0.0021156412549316883, -0.030461879447102547, -0.012857395224273205, 0.008739338256418705, -0.0075232116505503654, -0.047739267349243164, 0.034286387264728546, -0.002721607917919755, -0.00844159722328186, 0.021957378834486008, 0.019005125388503075, 0.038144443184137344, 0.03314574435353279, -0.05166441947221756, 0.00530902249738574, 0.01711803302168846, 0.02625156380236149, -0.03519219160079956, 0.004382249899208546, 0.09923594444990158, -0.03801025077700615, -0.017050934955477715, -0.011809010058641434, -0.011943203397095203, 0.010458690114319324, 0.002024431712925434, -0.03465541824698448, 0.06411084532737732, -0.05995085462927818, 0.052067000418901443, 0.0284993015229702, 0.00326257455162704, -0.027140595018863678, 0.020900605246424675, -0.007170954253524542, 0.019894156605005264, -0.008789661340415478, -0.039117347449064255, -0.004193540662527084, -0.008252887986600399, -0.0012391912750899792, -0.04005669802427292, 0.07152502983808517, 0.01771351508796215, -0.0033527356572449207, -0.044921208173036575, 0.08990950882434845, 0.029421880841255188, 0.016212226822972298, 0.007661598734557629, 0.026385756209492683, 0.010098045691847801, 0.009510950185358524, -0.030294137075543404, -0.010072884149849415, -0.02947220206260681, 0.001833625603467226, -0.03398445248603821, 0.01875351369380951, -0.04478701204061508, -0.000009173370017379057, -0.042136695235967636, -0.031384456902742386, -0.014669004827737808, 0.06833793967962265, 0.013159330002963543, -0.04280766099691391, 0.040593471378088, -0.02440640516579151, -0.0252954363822937, -0.0020674155093729496, 0.02443995513021946, -0.029304461553692818, 0.01196836493909359, -0.0046212817542254925, 0.04384766146540642, 0.0007186679868027568, 0.0123541709035635, -0.008873531594872475, 0.02308124676346779, 0.022527700290083885, 0.043008953332901, -0.026855433359742165, 0.06370826810598373, 0.029304461553692818, 0.019172867760062218, -0.013545135967433453, 0.021907055750489235, -0.0016889484832063317, -0.029572848230600357, 0.040861859917640686, -0.021454153582453728, 0.002026528352871537, 0.009133531711995602, -0.029187042266130447, -0.04958442226052284, 0.06937793642282486, -0.010290948674082756, 0.001799028948880732, 0.03081413544714451, 0.0405263751745224, 0.025698017328977585, -0.038345735520124435, -0.019508350640535355, -0.006512568332254887, 0.004935797303915024, -0.07266566902399063, 0.03881541267037392, -0.028046399354934692, 0.051999904215335846, -0.029925106093287468, 0.022460604086518288, -0.011859332211315632, -0.06199730187654495, 0.06075601652264595, -0.02381931059062481, 0.14600230753421783, 0.03333026170730591, -0.033548325300216675, -0.0023714471608400345, 0.046196043491363525, 0.002763543277978897, 0.020296735689044, -0.011918041855096817, 0.018183192238211632, -0.060185693204402924, 0.0418347604572773, 0.03351477533578873, -0.04837668314576149, -0.04710184782743454, 0.013444490730762482, -0.07011599838733673, -0.023768987506628036, -0.0442502386868, -0.014107069931924343, 0.021370282396674156, 0.005376119166612625, -0.038110896944999695, 0.027425754815340042, -0.05719989165663719, 0.06521794199943542, 0.08199210464954376, 0.009393530897796154, 0.014761262573301792, 0.036634769290685654, -0.0030151556711643934, -0.04451862722635269, -0.04465281963348389, -0.0010305625619366765, 0.05619344487786293, -0.042203791439533234, 0.08662177622318268, -0.020162543281912804, 0.004310959484428167, -0.06635858863592148, -0.06897535175085068, 0.006520955357700586, -0.035863157361745834, 0.019390931352972984, 0.02479221113026142, -0.02459092251956463, 0.02935478463768959, 0.03941928222775459, -0.02861672081053257, 0.03338058292865753, 0.046766363084316254, 0.024993501603603363, 0.000916812801733613, -0.011490301229059696, -0.034286387264728546, -0.015507712960243225, -0.0074770827777683735, -0.045189592987298965, 0.0014750779373571277, -0.04713539406657219, -0.02962317131459713, -0.02428898774087429, -0.0051412805914878845, 0.06535213440656662, 0.02749285101890564, -0.04230443760752678, 0.019390931352972984, -0.0455586239695549, -0.04757152497768402, -0.013922554440796375, -0.0315689742565155, 0.057334087789058685, 0.016849646344780922, 0.061192143708467484, -0.006097408011555672, 0.050288937985897064, -0.030579296872019768, 0.027123820036649704, 0.003967089578509331, -0.011456753127276897, -0.006160310935229063, 0.036634769290685654, -0.02896897867321968, -0.030612846836447716, -0.005275473929941654, 0.021789636462926865, -0.04324379190802574, 0.009494176134467125, 0.023148342967033386, -0.009401917457580566, -0.004512249492108822, -0.06984761357307434, 0.0011836268240585923, 0.04881281033158302, -0.09239208698272705, -0.009938690811395645, -0.025261888280510902, -0.05263732001185417, 0.01024901308119297, 0.05881021171808243, 0.032307036221027374, 0.00032080584787763655, 0.007703533861786127, 0.02625156380236149, -0.037842508405447006, 0.03639993071556091, 0.02749285101890564, 0.032541874796152115, -0.005086764693260193, 0.01664835587143898, -0.008022243157029152, 0.01266449224203825, -0.04354572668671608, -0.007862888276576996, 0.014467715285718441, -0.0634063333272934, -0.02541285566985607 ]
20,289
start_sdk.github
get_latest_sha
See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#get-a-commit)
def get_latest_sha(self, author: str, repo: str) -> str: """See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28#get-a-commit)""" # noqa: E501 commits_response = self.get_repo_commits(author, repo) return commits_response.json()[0]["sha"]
(self, author: str, repo: str) -> str
[ -0.002433530753478408, 0.005719459615647793, -0.046179670840501785, 0.06540058553218842, 0.01442452147603035, -0.035491567105054855, 0.010325944051146507, 0.045261021703481674, 0.0676972046494484, -0.041233111172914505, 0.05455349013209343, 0.018708596006035805, -0.046179670840501785, -0.058687400072813034, 0.0006823602598160505, 0.012940553948283195, 0.03305361792445183, -0.011244590394198895, 0.029873687773942947, 0.035456232726573944, -0.022065190598368645, -0.0005633888649754226, -0.005631128326058388, 0.00949562806636095, -0.018531933426856995, -0.018849926069378853, 0.07161912322044373, -0.01996290311217308, 0.047239646315574646, -0.04391838610172272, -0.0007944307872094214, -0.03082766756415367, -0.033989932388067245, 0.014106528833508492, 0.01135058794170618, -0.008219239301979542, -0.005229220259934664, 0.040349796414375305, -0.03312428295612335, -0.02270117588341236, -0.03868916258215904, 0.027400407940149307, -0.002782439813017845, -0.03379560261964798, 0.023831818252801895, -0.044766366481781006, 0.025015460327267647, -0.031392987817525864, -0.05932338535785675, -0.013717870227992535, 0.02367282286286354, -0.022542180493474007, -0.0014497395604848862, 0.01666814088821411, 0.02990902028977871, -0.048087626695632935, 0.002855313243344426, -0.0010207800660282373, -0.04731031134724617, 0.08027560263872147, 0.006797103211283684, -0.05314018577337265, 0.027506405487656593, 0.028124725446105003, 0.03713453188538551, 0.02028089575469494, 0.09631658345460892, -0.008696229197084904, 0.02814239263534546, -0.02107587829232216, 0.008232489228248596, 0.05275152623653412, -0.0207578856498003, 0.003204222535714507, -0.050737570971250534, -0.02990902028977871, 0.018673263490200043, 0.002203869167715311, 0.010873598046600819, 0.03918382152915001, 0.04837028682231903, -0.021411538124084473, 0.020740218460559845, 0.03577422723174095, -0.03270029276609421, -0.07168978452682495, 0.033371612429618835, -0.006377528887242079, -0.06540058553218842, -0.0020802051294595003, 0.014627683907747269, 0.03411359712481499, -0.04829962179064751, -0.033866267651319504, 0.019468246027827263, -0.023089835420250893, 0.046674326062202454, 0.010564438067376614, 0.006267114542424679, -0.006169950123876333, 0.06003003567457199, 0.04250508174300194, 0.01530783623456955, 0.0397491417825222, -0.056072790175676346, 0.07780232280492783, 0.0382651723921299, -0.031110327690839767, -0.054270826280117035, 0.02248918078839779, 0.03471425175666809, 0.0132497139275074, -0.0013282838044688106, -0.002471071667969227, 0.05367017537355423, 0.011447752825915813, -0.01036127656698227, -0.06317463517189026, 0.020969880744814873, -0.00967229064553976, 0.03259429708123207, 0.048652950674295425, -0.013982865028083324, -0.03383093699812889, -0.017560288310050964, 0.028902042657136917, -0.059747375547885895, -0.08932073414325714, -0.01036127656698227, -0.011756912805140018, 0.042434416711330414, 0.040349796414375305, 0.005233637057244778, -0.00965462438762188, 0.02146453596651554, 0.01763978600502014, -0.03344227746129036, 0.03950181230902672, 0.003162265056744218, -0.06614257395267487, 0.024185143411159515, 0.022913170978426933, 0.005392633378505707, 0.003946206532418728, -0.01654447615146637, 0.014212526381015778, 0.008616730570793152, -0.021676531061530113, 0.06921650469303131, -0.004933310206979513, 0.06773253530263901, -0.030156347900629044, 0.015237171202898026, 0.04716898128390312, -0.03446692228317261, -0.026870420202612877, 0.012401732616126537, -0.03762918710708618, -0.019538911059498787, 0.0341489277780056, 0.051832880824804306, -0.014371522702276707, 0.08932073414325714, -0.0992138609290123, 0.011580250225961208, 0.023690488189458847, 0.013991697691380978, 0.008192739449441433, -0.022542180493474007, -0.022100523114204407, 0.0013327003689482808, 0.009848954156041145, -0.07370374351739883, 0.030545007437467575, -0.020068900659680367, 0.0025903191417455673, -0.006858935113996267, 0.005913788918405771, -0.053387515246868134, -0.020422225818037987, -0.04271707683801651, -0.029096372425556183, 0.011430086567997932, 0.015431500039994717, 0.027930397540330887, 0.007097430061548948, 0.020563555881381035, -0.02549245022237301, 0.06229132041335106, -0.03932515159249306, -0.026269765570759773, 0.004233283456414938, -0.05017225071787834, 0.03165798261761665, 0.008616730570793152, -0.04469570145010948, -0.017109796404838562, 0.029167037457227707, 0.0792156234383583, -0.003888790961354971, 0.02146453596651554, -0.0026101935654878616, -0.04674499109387398, -0.01223390270024538, 0.0005153586389496922, -0.022206520661711693, 0.04784030094742775, 0.007636251859366894, -0.06398728489875793, 0.015793658792972565, 0.005622295197099447, 0.02058122307062149, -0.0765303447842598, 0.033901602029800415, -0.030757002532482147, -0.04815829172730446, 0.045119691640138626, -0.0005101139540784061, 0.0166328065097332, -0.00013712073268834502, 0.028425052762031555, -0.002581486012786627, 0.016500310972332954, 0.04469570145010948, 0.021676531061530113, -0.06755587458610535, 0.034837912768125534, 0.02319583296775818, 0.04165710136294365, -0.09631658345460892, -0.012993552722036839, -0.016933133825659752, 0.014636517502367496, 0.007459588814526796, 0.004273032769560814, 0.037169862538576126, 0.003548715030774474, -0.026428762823343277, 0.021888528019189835, -0.01183641143143177, 0.003833583788946271, 0.017410123720765114, 0.0335659421980381, 0.06356329470872879, 0.025510115548968315, 0.008351736702024937, 0.016173483803868294, 0.041021112352609634, -0.05384683609008789, -0.044236376881599426, -0.036286547780036926, 0.06207932531833649, 0.0036988784559071064, -0.0320996418595314, 0.007327091880142689, -0.040349796414375305, 0.017418956384062767, -0.01139475405216217, -0.018478933721780777, 0.02358449064195156, 0.029131704941391945, -0.050348911434412, 0.03692253679037094, 0.02937903255224228, -0.02552778273820877, -0.09751789271831512, -0.014371522702276707, 0.05133822560310364, 0.012057239189743996, 0.06582457572221756, 0.08246622234582901, -0.06949916481971741, 0.001171495532616973, -0.05826340988278389, -0.0031777231488376856, -0.05423549562692642, -0.002895062556490302, 0.04589700698852539, 0.012322233989834785, 0.010246445424854755, -0.06865118443965912, -0.036639876663684845, 0.02478579804301262, 0.014274358749389648, 0.0160409864038229, 0.00690310075879097, 0.022895505651831627, -0.05805141106247902, -0.0023164916783571243, 0.045261021703481674, 0.02305450290441513, -0.005516297649592161, -0.06469393521547318, -0.05964137986302376, 0.0037010866217315197, -0.04550835117697716, 0.03259429708123207, 0.039961136877536774, 0.041056446731090546, 0.011368254199624062, -0.0541648305952549, 0.04992492124438286, -0.08642346411943436, -0.08387952297925949, 0.00004937588528264314, -0.0023893651086837053, 0.015890823677182198, -0.028195390477776527, -0.02831905521452427, 0.01572299376130104, 0.04310573637485504, 0.08387952297925949, 0.033548276871442795, -0.00319759757257998, -0.11935342103242874, 0.016933133825659752, 0.019591910764575005, -0.02284250594675541, -0.04010246694087982, 0.019362248480319977, -0.00905397068709135, 0.007826164364814758, 0.010502606630325317, -0.036816537380218506, 0.02195919305086136, -0.01804611086845398, -0.09645791351795197, 0.02137620560824871, -0.00756558682769537, 0.045261021703481674, -0.004443070851266384, -0.00974295660853386, 0.041233111172914505, -0.023973148316144943, 0.055684130638837814, -0.021181875839829445, 0.014133027754724026, -0.026570092886686325, -0.010564438067376614, -0.0529988557100296, 0.006638106424361467, -0.07013515383005142, 0.04413038119673729, 0.05960604548454285, 0.02199452556669712, -0.01360303908586502, 0.02558078058063984, -0.01698613353073597, -0.0332656130194664, -0.09589259326457977, -0.016182316467165947, 0.010246445424854755, -0.03519124165177345, -0.013382211327552795, -0.010873598046600819, 0.05805141106247902, -0.007437506224960089, 0.007101846393197775, 0.00399037217721343, 0.03287695720791817, -0.014972176402807236, -0.019768573343753815, 0.0000020055720142408973, -0.022383183240890503, -0.0671318843960762, 0.05540147051215172, -0.036021556705236435, 0.05091423541307449, 0.03365427255630493, -0.03900715708732605, -0.003349969396367669, 0.06434061378240585, 0.03368960693478584, 0.02755940519273281, -0.08663546293973923, 0.046674326062202454, -0.03741719201207161, 0.0009318965603597462, 0.015228337608277798, -0.07133645564317703, -0.03315961733460426, -0.037876516580581665, -0.022065190598368645, -0.005065807141363621, -0.02496246062219143, -0.02747107297182083, -0.01983923837542534, -0.05522480607032776, 0.014919177629053593, -0.006258281413465738, -0.005039307754486799, -0.045296356081962585, -0.02019256353378296, -0.03777051717042923, -0.031163327395915985, 0.004471778403967619, 0.0364985466003418, 0.003402968170121312, -0.04112711176276207, 0.030244680121541023, 0.007419839967042208, 0.08635280281305313, 0.11794012039899826, -0.02478579804301262, -0.024008480831980705, -0.047027651220560074, -0.0028420635499060154, -0.01036127656698227, -0.02861938253045082, 0.029538027942180634, -0.044377706944942474, 0.025739777833223343, 0.002098975470289588, 0.016464978456497192, 0.023390160873532295, 0.013505875132977962, 0.0541648305952549, -0.014194860123097897, 0.006571858190000057, -0.02234785072505474, -0.03370727226138115, 0.010908931493759155, -0.014972176402807236, 0.04413038119673729, -0.025810442864894867, 0.046144336462020874, -0.026517093181610107, -0.025916440412402153, -0.003179931314662099, 0.015890823677182198, -0.004213409032672644, -0.03936048224568367, -0.021888528019189835, -0.002360657323151827, -0.015608162619173527, 0.03868916258215904, -0.000510942074470222, -0.022383183240890503, -0.001136163016781211, 0.011977741494774818, -0.0022027648519724607, 0.05045491084456444, -0.05105556547641754, 0.011668581515550613, 0.06073668971657753, -0.02372582070529461, 0.02005123347043991, -0.03618055209517479, 0.03079233504831791, -0.016314813867211342, -0.04957159608602524, -0.00006072785618016496, -0.05225687101483345, -0.016120485961437225, 0.028566382825374603, -0.012251568958163261, -0.04625033587217331, 0.049147605895996094, 0.011209257878363132, 0.02826605550944805, -0.0189912561327219, 0.05087890103459358, 0.025156790390610695, -0.02579277567565441, 0.014742515049874783, -0.07737832516431808, 0.03411359712481499, -0.05529547110199928, 0.00011034527415176854, 0.005260136444121599, 0.061019349843263626, 0.01033477671444416, -0.0320819728076458, 0.04483703151345253, -0.006200866308063269, -0.051832880824804306, 0.04720431566238403, -0.017657451331615448, -0.10239379107952118, 0.0006232886225916445, -0.05412949621677399, 0.08253688365221024, -0.0023209082428365946, 0.01513117365539074, 0.037523191422224045, 0.03632188215851784, 0.0122162364423275, -0.018443601205945015, 0.0568147711455822, 0.046144336462020874, -0.02284250594675541, 0.0009346568840555847, -0.05624945089221001, 0.05981804057955742, -0.008281070739030838, -0.001880355179309845, 0.03777051717042923, 0.034484587609767914, -0.06292730569839478, -0.02257751300930977, 0.003531048772856593, -0.009292465634644032, 0.055860795080661774, -0.02181786298751831, -0.01728646084666252, -0.07084180414676666, 0.006214115768671036, -0.00830315425992012, 0.04572034627199173, 0.0028288138564676046, 0.0453316867351532, -0.0468156561255455, 0.007733416277915239, 0.01183641143143177, 0.003204222535714507, -0.031516652554273605, 0.04815829172730446, -0.00976062286645174, 0.013488208875060081, 0.07370374351739883, -0.03524423763155937, 0.0022480348125100136, -0.0008258988382294774, -0.007282926235347986, -0.008448900654911995, -0.028478052467107773, 0.010582104325294495, 0.018673263490200043, 0.04660366103053093, 0.029167037457227707, -0.07327975332736969, 0.036286547780036926, -0.007278509438037872, 0.0006288093281909823, 0.008899390697479248, -0.0029767691157758236, 0.016933133825659752, -0.034608252346515656, -0.0556487962603569, -0.062043994665145874, 0.015758326277136803, -0.06656656414270401, 0.0470983162522316, 0.015537497587502003, -0.030863000079989433, 0.008342903107404709, 0.03844183683395386, 0.033548276871442795, -0.025156790390610695, -0.044766366481781006, -0.01925625093281269, 0.013541207648813725, 0.04056179150938988, -0.022383183240890503, 0.021058211103081703, 0.04384772107005119, -0.0007999514928087592, 0.010608604177832603, -0.0003141286433674395, 0.000004041335159854498, 0.03264729306101799, 0.026358097791671753, -0.014194860123097897, 0.057662755250930786, -0.04324706643819809, 0.05734476074576378, 0.053246185183525085, -0.0026079853996634483, 0.007437506224960089, 0.014671850018203259, -0.036286547780036926, 0.046674326062202454, -0.007724583148956299, -0.036286547780036926, 0.029608692973852158, 0.0009479066357016563, -0.03674587234854698, -0.04582634195685387, 0.013921032659709454, 0.056956104934215546, 0.04201042652130127, -0.031516652554273605, 0.02107587829232216, 0.036286547780036926, -0.002239201683551073, 0.05511881038546562, -0.05455349013209343, -0.02231251820921898, -0.007901245728135109, -0.017851781100034714, 0.008289904333651066, -0.03904249146580696, -0.042257752269506454, -0.03043900988996029, 0.036639876663684845, -0.031110327690839767, -0.023513825610280037, -0.019768573343753815, -0.06377528607845306, 0.020510556176304817, 0.01470718253403902, -0.019114920869469643, 0.013956365175545216, 0.020245563238859177, 0.055507466197013855, -0.04787563160061836, 0.0332656130194664, 0.001226702705025673, -0.008775726892054081, 0.016774138435721397, -0.0006542046321555972, 0.01760445348918438, -0.018567265942692757, -0.011279922910034657, 0.028195390477776527, 0.04586167633533478, 0.04833495616912842, -0.03043900988996029, -0.038724496960639954, 0.06826252490282059, 0.040667787194252014, 0.04801696166396141, 0.01930924877524376, 0.036286547780036926, 0.012684392742812634, 0.0400318019092083, -0.0006094868294894695, -0.026163768023252487, 0.0198745708912611, -0.013329212553799152, -0.05116156116127968, -0.024662133306264877, 0.03635721653699875, -0.0019996026530861855, 0.01790478080511093, 0.01071460172533989, -0.00005244678322924301, 0.011474251747131348, 0.0019664783030748367, 0.011235757730901241, -0.029184702783823013, -0.02425581030547619, -0.06285664439201355, 0.01833760365843773, -0.011359421536326408, -0.005352884531021118, 0.0031026413198560476, -0.023531490936875343, 0.02452080324292183, -0.04822895675897598, 0.049854256212711334, -0.047734301537275314, 0.07320908457040787, 0.04787563160061836, 0.012940553948283195, -0.052150875329971313, 0.024008480831980705, 0.01996290311217308, -0.03273562714457512, -0.004127285908907652, 0.017560288310050964, -0.039643142372369766, 0.03492624685168266, 0.027541738003492355, -0.008674145676195621, -0.051267560571432114, -0.043141067028045654, -0.00965462438762188, -0.01763978600502014, -0.029343700036406517, 0.026481760665774345, -0.004502694588154554, 0.02054588869214058, -0.04448370635509491, 0.007561170030385256, -0.032576628029346466, 0.043317731469869614, 0.06518859416246414, 0.03547390177845955, 0.011447752825915813, 0.011509585194289684, 0.034608252346515656, -0.08105291426181793, -0.012896387837827206, 0.02137620560824871, 0.06405794620513916, -0.06130200996994972, 0.09462062269449234, -0.013912199065089226, -0.04480170086026192, -0.006779436953365803, -0.08402085304260254, 0.006664606276899576, -0.01639431342482567, -0.039113156497478485, 0.07161912322044373, -0.049147605895996094, 0.03376027196645737, 0.02181786298751831, 0.018796928226947784, 0.02778906561434269, 0.03879516199231148, 0.0541648305952549, 0.03323028236627579, 0.0030474341474473476, -0.022277185693383217, -0.030368344858288765, -0.00578570831567049, -0.04999558627605438, -0.0203162282705307, -0.0417984314262867, -0.013320378959178925, -0.02876071259379387, 0.017560288310050964, 0.02072255313396454, 0.031039662659168243, -0.04745164141058922, 0.025033125653862953, -0.03365427255630493, -0.021747196093201637, -0.054270826280117035, -0.022895505651831627, 0.02323116548359394, 0.05070223659276962, 0.042787741869688034, 0.014141861349344254, 0.06091335043311119, -0.030015017837285995, 0.0024246976245194674, -0.0001933630119310692, -0.004273032769560814, -0.006470276974141598, 0.010626270435750484, -0.042823076248168945, -0.010573271661996841, -0.0301740150898695, 0.03702853247523308, -0.025510115548968315, -0.016173483803868294, 0.01033477671444416, -0.013329212553799152, -0.03609222173690796, -0.04625033587217331, -0.02743574045598507, 0.02941436506807804, -0.05822807550430298, -0.04137444123625755, 0.007225510664284229, -0.018125608563423157, -0.060100700706243515, -0.00431278208270669, 0.03215263783931732, -0.008281070739030838, 0.008493066765367985, -0.005882872734218836, -0.014875012449920177, 0.02734741009771824, -0.007614168804138899, 0.010900097899138927, 0.02990902028977871, 0.05738009512424469, 0.006518859416246414, -0.01710096374154091, -0.01666814088821411, 0.010149280540645123, -0.00207137200050056, -0.021358538419008255, -0.01513117365539074 ]
20,290
start_sdk.github
get_repo
See Github API [docs](https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository)
def get_repo(self, author: str, repo: str) -> httpx.Response: """See Github API [docs](https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository)""" # noqa: E501 return self.get(f"{BASE}/{author}/{repo}")
(self, author: str, repo: str) -> httpx.Response
[ 0.015396581031382084, 0.004423042293637991, -0.03264039382338524, 0.011451038531959057, 0.04225316643714905, -0.009370662271976471, 0.019189681857824326, 0.06119177117943764, 0.059577684849500656, 0.002074772259220481, 0.08228248357772827, -0.027798136696219444, -0.019243484362959862, -0.03463109955191612, 0.013531415723264217, 0.00983695313334465, 0.0382000207901001, 0.020893437787890434, -0.0021711690351366997, 0.04533786326646805, -0.05107683315873146, 0.016445735469460487, 0.020732030272483826, -0.023368369787931442, -0.012437424622476101, 0.02530527114868164, 0.03784133493900299, -0.039132602512836456, 0.014939256943762302, -0.053874582052230835, 0.03179747983813286, -0.029752973467111588, -0.02087550424039364, 0.04835082218050957, 0.024659637361764908, 0.030577950179576874, -0.00025065962108783424, 0.03680114448070526, -0.09261263161897659, 0.022866209968924522, -0.04250424727797508, -0.007998690009117126, 0.08558239042758942, -0.048314955085515976, 0.015127566643059254, -0.01786254532635212, 0.01654437556862831, -0.09627122431993484, -0.07776304334402084, -0.005761388223618269, 0.03344743698835373, 0.0003390700148884207, 0.010635029524564743, -0.038594573736190796, 0.04558894410729408, -0.05717448890209198, -0.004236974287778139, 0.041607532650232315, 0.0041002254001796246, 0.05251157656311989, 0.022381983697414398, -0.04766932129859924, 0.028748653829097748, 0.01623949222266674, -0.010285310447216034, 0.03384198993444443, 0.027457386255264282, -0.040531475096940994, 0.002714801812544465, -0.02087550424039364, 0.009236155077815056, 0.04888885095715523, -0.0024592382833361626, 0.006447374355047941, -0.01163038145750761, -0.014849585480988026, 0.04099776968359947, -0.06965675204992294, 0.02369118668138981, 0.005478923209011555, -0.018382638692855835, -0.02959156408905983, 0.011998034082353115, 0.032425180077552795, -0.0010340234730392694, -0.07044585794210434, 0.02808508463203907, -0.032801803201436996, 0.031851284205913544, -0.042109694331884384, 0.000039301296055782586, 0.037016358226537704, 0.0032954243943095207, -0.035778891295194626, -0.026219919323921204, -0.02503625676035881, 0.030452409759163857, 0.0026587573811411858, -0.009711413644254208, -0.004140577279031277, 0.03656800091266632, -0.009361695498228073, 0.0008591641671955585, 0.10667310655117035, -0.03387785702943802, 0.0563136450946331, 0.07553919404745102, -0.02406780607998371, -0.04490744322538376, 0.04494331032037735, 0.01043775212019682, 0.034469690173864365, 0.030882833525538445, 0.004346821457147598, 0.03274799883365631, 0.03794893994927406, -0.026973159983754158, -0.04853016510605812, -0.040567345917224884, -0.0012385863810777664, -0.026219919323921204, 0.046629130840301514, -0.021843954920768738, -0.04806387424468994, 0.00542960362508893, 0.024049872532486916, -0.0378054678440094, -0.0636667013168335, 0.004743617493659258, -0.006084205117076635, 0.004474603105336428, 0.04189448058605194, -0.02828236296772957, 0.012715405784547329, 0.051399651914834976, -0.0005520395934581757, -0.029035601764917374, -0.009424464777112007, 0.03364471346139908, -0.020732030272483826, -0.020032592117786407, 0.02229231223464012, -0.029483959078788757, 0.015244139358401299, -0.04584002494812012, 0.009863855317234993, 0.04555307701230049, -0.026757948100566864, 0.067899189889431, -0.03690875321626663, 0.060976557433605194, -0.014392261393368244, 0.04458462446928024, 0.008693642914295197, -0.0366397388279438, 0.02060648985207081, 0.03143879771232605, -0.02500038966536522, -0.03082903102040291, 0.058465760201215744, 0.028605179861187935, 0.0270090289413929, 0.041105374693870544, -0.049175798892974854, 0.04533786326646805, 0.05376697704195976, 0.03127738833427429, -0.027295976877212524, 0.02164667844772339, -0.008025591261684895, 0.007900050841271877, -0.033196356147527695, -0.08529544621706009, -0.04698781669139862, 0.008881952613592148, -0.009908691048622131, 0.06847308576107025, 0.0006579639739356935, -0.10753395408391953, 0.00369446212425828, 0.01883099600672722, -0.03992171213030815, -0.05107683315873146, 0.03362677991390228, -0.028336165472865105, 0.022668931633234024, 0.04587589204311371, -0.03120565041899681, 0.02406780607998371, 0.0202478040009737, -0.028838325291872025, 0.011262728832662106, -0.024659637361764908, -0.0016196898650377989, 0.0038738048169761896, -0.058501627296209335, 0.021628743037581444, 0.027493253350257874, 0.053264815360307693, 0.043114013969898224, 0.03479250520467758, 0.03438001871109009, -0.021431466564536095, 0.05351589620113373, -0.015369679778814316, 0.009639676660299301, 0.016490571200847626, -0.0059855664148926735, -0.007913501933217049, 0.041643403470516205, 0.028103020042181015, 0.028748653829097748, -0.057999465614557266, 0.016347097232937813, -0.01828400045633316, 0.01933315582573414, -0.012867847457528114, 0.0010967934504151344, 0.0023404238745570183, 0.015423482283949852, 0.015791134908795357, -0.017387285828590393, 0.004328887443989515, 0.02577156201004982, 0.023440105840563774, -0.05918312817811966, 0.030255133286118507, -0.003409755416214466, -0.028641048818826675, -0.03898913040757179, 0.013899068348109722, -0.0022339390125125647, 0.0071333604864776134, -0.004133851733058691, -0.011684184893965721, -0.004958828911185265, 0.0196739062666893, -0.005411669611930847, 0.03988584131002426, 0.06700247526168823, 0.012715405784547329, 0.0298964474350214, 0.04042387008666992, 0.029035601764917374, -0.029950249940156937, -0.015593858435750008, -0.011872494593262672, 0.027995413169264793, 0.00113826640881598, -0.027995413169264793, -0.059972237795591354, 0.010303244926035404, 0.0023673251271247864, 0.03109804540872574, 0.027224238961935043, -0.03328602761030197, -0.026417197659611702, -0.05297786742448807, -0.015423482283949852, 0.0030734874308109283, -0.01689409278333187, -0.027690531685948372, -0.009110615588724613, 0.018382638692855835, 0.00017513947386760265, -0.08644323796033859, 0.010231507942080498, 0.005855543073266745, 0.06180153414607048, 0.039634764194488525, 0.1068883165717125, 0.04239664226770401, 0.01554902270436287, -0.06589055061340332, 0.02778020314872265, -0.030039921402931213, 0.051830075681209564, 0.03140292689204216, 0.01674165204167366, 0.05871683731675148, -0.08687365800142288, -0.021305926144123077, 0.03344743698835373, 0.018454376608133316, 0.004236974287778139, -0.030846964567899704, 0.029986118897795677, 0.013414843007922173, 0.000027864689400303178, 0.06047439947724342, 0.0397423692047596, 0.02433682046830654, -0.07184473425149918, -0.012527096085250378, -0.008994041942059994, -0.06689487397670746, 0.016212590038776398, 0.006411505863070488, 0.04713129252195358, -0.003183335065841675, -0.0798434242606163, 0.03830762580037117, -0.05821467936038971, -0.0466650016605854, 0.052870262414216995, -0.0011870252201333642, 0.03484630957245827, -0.04702368751168251, -0.03124151937663555, 0.050287727266550064, 0.02828236296772957, 0.03364471346139908, 0.031689874827861786, 0.047238897532224655, -0.08199553936719894, 0.0014235336566343904, 0.022776538506150246, 0.008384277112782001, -0.005837608594447374, 0.013952870853245258, -0.023816727101802826, 0.04752584546804428, 0.003134015714749694, -0.051327913999557495, -0.02256132662296295, 0.03769785910844803, -0.08500849455595016, 0.06700247526168823, 0.00738892424851656, 0.07812172919511795, -0.028730720281600952, 0.012643668800592422, 0.005008148029446602, -0.0032954243943095207, 0.011298597790300846, -0.041177112609148026, 0.029986118897795677, -0.05577561631798744, 0.024139543995261192, 0.013280335813760757, -0.01467920932918787, -0.1142055094242096, 0.013396908529102802, 0.017521793022751808, 0.03264039382338524, -0.020732030272483826, 0.04074668884277344, -0.017342450097203255, -0.014750946313142776, -0.10215366631746292, -0.005810707341879606, 0.047776926308870316, 0.014894421212375164, -0.01801498606801033, -0.052296366542577744, 0.017521793022751808, 0.009550005197525024, 0.0412847176194191, -0.03452349081635475, 0.005030565895140171, -0.06076134741306305, 0.032927341759204865, 0.003542020684108138, 0.005797256715595722, -0.09268436580896378, -0.005061951000243425, -0.025825366377830505, -0.0032393797300755978, 0.04601936787366867, -0.03179747983813286, 0.0016813388792797923, 0.0540180578827858, -0.033537108451128006, 0.03124151937663555, -0.09820812940597534, 0.029950249940156937, -0.04505091533064842, -0.08221074938774109, -0.028228558599948883, -0.03233550861477852, 0.01863371953368187, 0.03644246235489845, 0.020319541916251183, 0.05577561631798744, -0.012491227127611637, -0.06624923646450043, 0.03412893787026405, 0.018257098272442818, -0.03516912832856178, -0.005868993699550629, -0.028641048818826675, -0.03134912624955177, 0.03090076707303524, -0.010670897550880909, -0.03421860933303833, -0.05505824461579323, -0.019924987107515335, -0.032192036509513855, -0.05197354778647423, 0.01947662979364395, 0.05810707435011864, 0.07073280960321426, 0.07195233553647995, -0.0018864622106775641, -0.024085739627480507, -0.027331845834851265, 0.028515508398413658, -0.0524757094681263, -0.032891470938920975, 0.06119177117943764, -0.061980877071619034, 0.0439748577773571, 0.03984997421503067, -0.0285513773560524, 0.026704145595431328, 0.02587916888296604, 0.0524757094681263, 0.006415989249944687, 0.010518455877900124, -0.0002964760933537036, -0.008021107874810696, -0.02496452070772648, 0.03816414996981621, 0.05868097022175789, -0.031187716871500015, 0.027224238961935043, 0.024892782792448997, -0.040029317140579224, 0.018337802961468697, 0.0030959052965044975, 0.010545358061790466, -0.02426508255302906, -0.00785073172301054, -0.019566301256418228, 0.04286293312907219, -0.018544048070907593, -0.0756109356880188, 0.03082903102040291, -0.01739625260233879, 0.0026184050366282463, -0.010285310447216034, 0.009550005197525024, -0.03572509065270424, -0.04304227605462074, 0.02383466064929962, -0.011137189343571663, -0.005649298895150423, -0.001028979429975152, 0.017073435708880424, -0.06807853281497955, 0.00010270178609061986, 0.03916846960783005, -0.035976167768239975, 0.043114013969898224, 0.011047517880797386, -0.04286293312907219, -0.027475319802761078, 0.022077100351452827, -0.0004491977160796523, 0.0136928241699934, 0.023368369787931442, 0.0002233378472737968, 0.022668931633234024, -0.02573569491505623, 0.03744678199291229, -0.019799446687102318, 0.049283407628536224, -0.05021598935127258, -0.0041181594133377075, -0.018651653081178665, 0.0059721157886087894, -0.0008916700608097017, -0.011262728832662106, 0.01573733240365982, -0.009061295539140701, -0.02067822776734829, 0.02742151729762554, 0.009280990809202194, -0.0721316784620285, -0.03378818556666374, -0.07015891373157501, 0.07668698579072952, -0.025161797180771828, -0.007182680070400238, 0.0397423692047596, -0.025915037840604782, -0.02198742888867855, 0.05107683315873146, 0.029788842424750328, 0.04748997837305069, 0.03536640480160713, 0.03579682484269142, -0.0898866206407547, 0.030039921402931213, -0.003723605303093791, 0.00983695313334465, 0.003918640781193972, 0.009460333734750748, -0.02969917096197605, 0.0043400963768363, 0.030775226652622223, -0.07991515845060349, 0.07266970723867416, -0.028479639440774918, -0.014939256943762302, -0.06345149129629135, -0.04691608250141144, 0.004535131622105837, 0.028246494010090828, 0.011388269253075123, 0.030577950179576874, -0.004371481016278267, -0.013047190383076668, -0.014795782044529915, 0.03924020752310753, 0.007164745591580868, -0.01477784849703312, 0.033232223242521286, -0.04228903725743294, 0.02969917096197605, 0.005828641355037689, -0.024713439866900444, 0.022399917244911194, 0.02801334857940674, 0.009209253825247288, -0.011746954172849655, -0.011101320385932922, -0.010231507942080498, 0.0028582762461155653, 0.009827986359596252, -0.04548133909702301, 0.01171108614653349, -0.03694462031126022, -0.022543393075466156, -0.027726398780941963, -0.008518784306943417, 0.003454590914770961, -0.047741059213876724, -0.031187716871500015, -0.009424464777112007, 0.05068228021264076, -0.021270059049129486, 0.01315479539334774, 0.009388596750795841, -0.019691841676831245, 0.014813716523349285, 0.015127566643059254, -0.026722079142928123, 0.05301373824477196, -0.03468490019440651, 0.010966813191771507, -0.029752973467111588, 0.026022642850875854, -0.0016118435887619853, -0.007285802159458399, 0.08816492557525635, -0.03448762372136116, -0.016248458996415138, -0.019189681857824326, -0.005779322236776352, 0.02919701114296913, -0.02225644327700138, -0.056959278881549835, 0.08708887547254562, -0.0022642030380666256, 0.07360228896141052, 0.07510877400636673, -0.028730720281600952, 0.014266720972955227, 0.0016084809321910143, -0.030775226652622223, -0.004788453225046396, -0.032532788813114166, -0.006070754490792751, 0.009729348123073578, 0.05408979207277298, 0.003869321197271347, -0.06316453963518143, 0.008971624076366425, 0.04379551485180855, -0.017871512100100517, -0.03516912832856178, 0.05147138983011246, -0.0008395485929213464, -0.022937946021556854, 0.04655739665031433, -0.04835082218050957, -0.05330068618059158, 0.027439450845122337, 0.009576906450092793, 0.02765466272830963, -0.050395332276821136, -0.006671553011983633, -0.09325826168060303, 0.01268850453197956, -0.029035601764917374, -0.054807163774967194, -0.008760896511375904, -0.012329818680882454, -0.0012935100821778178, 0.015163435600697994, 0.0046808477491140366, -0.004192138556391001, -0.0017665267223492265, -0.021969495341181755, -0.02272273413836956, 0.06219609081745148, -0.05738970264792442, 0.015961511060595512, -0.011370334774255753, -0.03730330616235733, -0.029107339680194855, -0.020427146926522255, -0.02623785473406315, 0.025143863633275032, 0.0032730065286159515, 0.06345149129629135, -0.02426508255302906, -0.016795454546809196, -0.00229558814316988, 0.07998690009117126, 0.010805404745042324, 0.03931194543838501, 0.013845265842974186, -0.027762267738580704, 0.001319290604442358, 0.030183395370841026, -0.020965175703167915, 0.008559135720133781, 0.017638366669416428, -0.04838669300079346, -0.021664611995220184, 0.023278698325157166, -0.011334465816617012, 0.020929306745529175, -0.0044521852396428585, 0.05118444189429283, -0.018454376608133316, -0.006317350547760725, 0.022597195580601692, -0.0171720739454031, -0.038558706641197205, -0.051399651914834976, 0.048279087990522385, -0.0698360949754715, -0.0071333604864776134, -0.003730330616235733, -0.002074772259220481, 0.05570387840270996, -0.052368104457855225, 0.00007019589975243434, -0.017638366669416428, 0.06180153414607048, 0.03464903309941292, -0.005617913790047169, -0.03984997421503067, 0.040101055055856705, 0.005779322236776352, 0.007016787771135569, 0.027062831446528435, 0.0227586030960083, -0.03204856067895889, 0.06488623470067978, 0.019727710634469986, -0.008482915349304676, -0.02869485132396221, -0.04142818972468376, -0.019351089373230934, 0.009621742181479931, -0.040531475096940994, 0.057461440563201904, 0.04375964775681496, 0.03283767029643059, -0.03737504407763481, 0.02125212363898754, -0.005828641355037689, 0.04845843091607094, -0.001942506874911487, 0.02661447413265705, 0.06728942692279816, -0.01689409278333187, 0.021826021373271942, -0.05559627339243889, -0.0009919899748638272, 0.005326481536030769, 0.053336553275585175, -0.04494331032037735, 0.048314955085515976, -0.021323861554265022, -0.021054847165942192, -0.0028022315818816423, -0.058967918157577515, 0.01604221574962139, -0.04354443773627281, -0.01390803512185812, 0.054340872913599014, -0.020893437787890434, -0.0597928948700428, 0.04071081802248955, 0.03866631165146828, 0.0428270660340786, -0.006918149068951607, 0.08041732013225555, 0.05771251767873764, -0.019153812900185585, -0.049283407628536224, -0.01521723810583353, -0.04548133909702301, -0.03063175268471241, -0.01766526699066162, -0.04756171628832817, 0.027636727318167686, -0.007523430977016687, -0.047238897532224655, 0.011495874263346195, 0.019297286868095398, -0.04171513766050339, 0.023314565420150757, -0.04354443773627281, -0.0382000207901001, -0.002694625873118639, -0.022328181192278862, -0.01111028715968132, 0.03134912624955177, 0.06266237795352936, -0.003391820937395096, -0.010617095045745373, -0.036316920071840286, 0.005725519265979528, -0.010904042981564999, 0.00624113017693162, 0.020014658570289612, 0.009863855317234993, -0.03644246235489845, -0.04483570531010628, -0.07596961408853531, -0.008994041942059994, 0.031151847913861275, 0.030039921402931213, 0.012204279191792011, -0.02098310925066471, 0.002064684173092246, -0.01910001039505005, -0.06216021999716759, 0.02534114010632038, -0.05756904557347298, 0.005156105849891901, -0.027762267738580704, -0.03032687120139599, -0.018526112660765648, 0.027457386255264282, 0.0030398608651012182, 0.01317272987216711, 0.021287992596626282, -0.058501627296209335, -0.04756171628832817, 0.023440105840563774, -0.005851059220731258, 0.01994292065501213, 0.0358685627579689, -0.00943343248218298, 0.020732030272483826, 0.01816742680966854, -0.03090076707303524, 0.007173712830990553, -0.019960856065154076, -0.012222212739288807, -0.0536235012114048 ]
20,291
start_sdk.github
get_repo_commits
See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28)
def get_repo_commits(self, author: str, repo: str) -> httpx.Response: """See Github API [docs](https://docs.github.com/en/rest/commits/commits?apiVersion=2022-11-28)""" # noqa: E501 return self.get(f"{BASE}/{author}/{repo}/commits")
(self, author: str, repo: str) -> httpx.Response
[ -0.030320169404149055, -0.047973401844501495, -0.0511576309800148, 0.04324954375624657, -0.01662972941994667, -0.007164517883211374, -0.03355688601732254, 0.07194260507822037, 0.02757333405315876, -0.01527380757033825, 0.07460196316242218, -0.0480433851480484, 0.025753773748874664, -0.03325945883989334, 0.0072563705034554005, 0.0024887733161449432, 0.009159035980701447, -0.02221962809562683, 0.044719189405441284, 0.021607276052236557, -0.0467836894094944, -0.013900389894843102, 0.012317022308707237, -0.019490288570523262, -0.013349272310733795, 0.00911529641598463, 0.034064263105392456, -0.019805211573839188, 0.061795059591531754, -0.02207966148853302, -0.0246515404433012, -0.02144981361925602, -0.05868081375956535, -0.006342216860502958, 0.00403496203944087, 0.011757157742977142, 0.021379832178354263, 0.005607394501566887, -0.04419431462883949, 0.026960982009768486, -0.03364436700940132, -0.0018840758129954338, 0.03758091479539871, -0.05315215140581131, 0.013874146156013012, -0.052977193146944046, 0.0095089515671134, -0.027450863271951675, -0.03219221904873848, -0.01959526352584362, 0.007112030405551195, -0.01551000028848648, 0.036496177315711975, -0.0374409481883049, 0.10252521187067032, -0.04108006879687309, -0.005449932534247637, 0.05980054289102554, 0.003989035729318857, 0.037091031670570374, -0.008083045482635498, -0.015728697180747986, 0.0536070391535759, 0.007759374100714922, 0.004048083908855915, 0.03894558548927307, 0.0748818963766098, -0.046853672713041306, 0.010689916089177132, -0.031492386013269424, 0.021624771878123283, 0.037230998277664185, 0.0022460194304585457, 0.00746631994843483, -0.06711377203464508, -0.003722225083038211, 0.03224470466375351, 0.010829881764948368, 0.012456987984478474, 0.0305476151406765, 0.02874555066227913, -0.041360002011060715, -0.002206654055044055, 0.06305475533008575, 0.053222134709358215, -0.08383972942829132, 0.003879687050357461, -0.0387006439268589, -0.029340406879782677, 0.026226159185171127, 0.03607627749443054, 0.03423922136425972, -0.04555898532271385, -0.0667988508939743, -0.02631363831460476, 0.008109289221465588, 0.015343790873885155, 0.05063275992870331, -0.0027118443977087736, 0.039750389754772186, 0.05206741392612457, 0.037126023322343826, -0.01751326583325863, 0.07299235463142395, -0.03733597323298454, 0.02221962809562683, 0.04017028957605362, -0.0536770224571228, -0.06543418020009995, 0.012824399396777153, -0.014740186743438244, 0.028920508921146393, 0.04108006879687309, -0.05511167645454407, 0.05374700576066971, 0.05567153915762901, -0.011783401481807232, -0.0810404047369957, -0.01478392630815506, -0.036111269146203995, 0.020155128091573715, 0.040730152279138565, 0.033871810883283615, -0.013856650330126286, -0.016113603487610817, 0.07446199655532837, -0.03621624410152435, -0.05710619315505028, -0.005638012196868658, -0.022779492661356926, 0.020889949053525925, 0.022499561309814453, -0.009710152633488178, -0.020854957401752472, 0.05927566811442375, 0.004583891946822405, -0.01809062622487545, -0.018003147095441818, 0.01383915450423956, -0.05525164306163788, -0.009386480785906315, 0.027643317356705666, -0.021572284400463104, 0.040485210716724396, -0.07523181289434433, 0.004496412817388773, 0.039995331317186356, -0.006154137197881937, 0.04454423114657402, 0.002716218354180455, 0.06585408002138138, -0.020732488483190536, -0.0005850148154422641, -0.013944128528237343, -0.030285177752375603, 0.00026790398987941444, 0.011713418178260326, -0.011529712937772274, -0.05213739722967148, 0.08272000402212143, 0.009622673504054546, 0.012177055701613426, 0.06252988427877426, -0.04202483966946602, 0.029987750574946404, 0.026348629966378212, 0.025841252878308296, -0.03681110218167305, -0.043214552104473114, -0.04625881835818291, 0.04108006879687309, 0.03933048993349075, -0.04094010218977928, -0.003300139680504799, 0.03632121905684471, -0.029060473665595055, 0.014346531592309475, -0.0003089096862822771, -0.09223770350217819, -0.030267681926488876, -0.007558172568678856, -0.041115060448646545, 0.012456987984478474, 0.00979763176292181, -0.007326353807002306, 0.0008556524990126491, 0.018178105354309082, -0.01975272409617901, 0.018020642921328545, -0.0014499619137495756, -0.05749110132455826, 0.013567970134317875, -0.04961800575256348, 0.04352947697043419, -0.04482416436076164, -0.06221495941281319, -0.030372656881809235, 0.027748292312026024, 0.07082287967205048, 0.01609610952436924, -0.014722690917551517, 0.042969610542058945, -0.01989269070327282, -0.0022503933869302273, 0.01446900237351656, 0.0034094881266355515, 0.010996091179549694, -0.03453665226697922, 0.002412229310721159, -0.010497462004423141, 0.013366768136620522, 0.07425204664468765, -0.06662389636039734, -0.010637428611516953, -0.04405434802174568, 0.00011447427823441103, 0.06753367185592651, -0.02295445092022419, 0.024354111403226852, 0.006779611110687256, 0.00911529641598463, 0.004535778425633907, -0.013480491004884243, 0.022482065483927727, 0.02612118422985077, -0.05518165975809097, 0.04338951036334038, 0.044999122619628906, 0.002162914490327239, -0.07831107079982758, -0.03423922136425972, -0.001740829087793827, 0.011678426526486874, -0.022692013531923294, 0.022149644792079926, 0.011302267201244831, 0.027048461139202118, -0.010042572394013405, -0.012868138961493969, 0.030967513099312782, 0.01716335117816925, 0.03471160680055618, 0.04905813932418823, 0.055461592972278595, 0.019717732444405556, -0.03828074410557747, 0.0014499619137495756, 0.004198984708636999, -0.017819441854953766, -0.0006085247732698917, -0.049478039145469666, 0.007514433469623327, -0.0020316962618380785, -0.028168190270662308, 0.012728173285722733, -0.044334281235933304, -0.008389221504330635, 0.010497462004423141, -0.006757741328328848, 0.0037922081537544727, 0.01765323244035244, -0.049827951937913895, 0.011765905655920506, 0.04045021906495094, 0.05217238515615463, -0.04839330166578293, 0.026191167533397675, 0.015046362765133381, 0.0015111971879377961, 0.06784860044717789, 0.06781360507011414, -0.03327695652842522, 0.024179155007004738, -0.04443925619125366, 0.00782935693860054, -0.03821076080203056, 0.023304365575313568, 0.005139382556080818, 0.002687787637114525, 0.03842071071267128, -0.04363445192575455, -0.07768122106790543, 0.009132792241871357, 0.025351371616125107, 0.05224236845970154, -0.023759255185723305, 0.025841252878308296, 0.04790341854095459, -0.018807953223586082, 0.053816989064216614, 0.03205225244164467, 0.0126406941562891, -0.055601559579372406, -0.057316143065690994, -0.012509475462138653, -0.039365481585264206, 0.03593631088733673, 0.010899865068495274, 0.051087647676467896, 0.028045719489455223, -0.05801597237586975, 0.031299933791160583, 0.006254737731069326, -0.0660640299320221, 0.018318071961402893, -0.00002327074071217794, 0.00387750007212162, -0.014512741006910801, -0.02713594026863575, 0.01907038874924183, 0.044999122619628906, 0.05154253914952278, 0.01896541565656662, -0.01313057541847229, -0.06718375533819199, -0.015063858591020107, 0.008327987045049667, 0.007361345458775759, -0.02412666752934456, -0.002945850370451808, 0.0017397355986759067, -0.0009458650602027774, 0.00806992407888174, -0.027748292312026024, 0.033819325268268585, 0.047343555837869644, -0.03102000057697296, 0.03383681923151016, 0.005629264283925295, 0.02524639666080475, 0.01558873150497675, -0.010366244241595268, 0.003083629533648491, -0.013174314983189106, 0.01422406081110239, -0.05696622654795647, 0.012701929546892643, -0.04429928958415985, 0.01823059283196926, -0.014792674221098423, -0.0020054527558386326, -0.07313232123851776, 0.044859156012535095, 0.029725313186645508, 0.024774011224508286, -0.008389221504330635, 0.0392954982817173, 0.014346531592309475, -0.06718375533819199, -0.05143756419420242, 0.004767597187310457, 0.04986294358968735, 0.03264710679650307, -0.011372250504791737, -0.020680001005530357, 0.022884467616677284, 0.012824399396777153, -0.021414821967482567, -0.01984020322561264, 0.0004212653439026326, 0.017618240788578987, 0.03476409614086151, 0.043949373066425323, -0.0016817809082567692, -0.06809353828430176, 0.027468359097838402, -0.009045313112437725, 0.009561438113451004, 0.020312588661909103, -0.03954043984413147, 0.00979763176292181, 0.07649150490760803, -0.005511167459189892, 0.03796582296490669, -0.07936081290245056, 0.03297952562570572, -0.03590131923556328, -0.041709914803504944, -0.007969323545694351, 0.004017466213554144, -0.042969610542058945, -0.03019769862294197, 0.01907038874924183, -0.00782935693860054, -0.009229018352925777, -0.031159967184066772, 0.05913570523262024, -0.03667113557457924, 0.004540152382105589, 0.011757157742977142, -0.0024778384249657393, -0.04594389349222183, -0.04506910592317581, -0.030040238052606583, -0.07698138803243637, -0.03252463787794113, 0.07071790099143982, -0.016008630394935608, -0.0055898986756801605, -0.019297834485769272, 0.07684142142534256, 0.07964074611663818, 0.09293752908706665, -0.0025346996262669563, -0.005524289328604937, -0.031737327575683594, -0.0001406495866831392, -0.043354518711566925, -0.016472266986966133, 0.0811103880405426, -0.03940047323703766, 0.08181022107601166, 0.03919052705168724, -0.005248731002211571, 0.01329678576439619, -0.01619233563542366, 0.02076748013496399, -0.034396685659885406, 0.0268385112285614, -0.02202717401087284, 0.004048083908855915, -0.03350440040230751, 0.051192622631788254, 0.0642094761133194, -0.013349272310733795, -0.0005122980219312012, 0.02858808822929859, -0.04006531462073326, 0.004181488882750273, -0.0021016793325543404, 0.036251235753297806, -0.026086192578077316, -0.03535895049571991, -0.008454831317067146, 0.0011656556744128466, 0.014862656593322754, -0.02858808822929859, 0.0071951355785131454, 0.02811570279300213, 0.04377441853284836, 0.009325245395302773, 0.04688866436481476, 0.0008955647354014218, -0.07768122106790543, 0.07383214682340622, -0.012264534831047058, 0.04153496026992798, -0.0704379677772522, 0.02227211557328701, -0.046713706105947495, -0.01565871387720108, 0.04692365601658821, -0.05339708924293518, -0.0051787481643259525, -0.00989385787397623, -0.014836412854492664, -0.004325828980654478, 0.03131742775440216, -0.0417449064552784, 0.04202483966946602, 0.026418613269925117, -0.016279814764857292, 0.0064559392631053925, -0.041255027055740356, 0.007444450166076422, -0.053327105939388275, 0.018877936527132988, -0.053327105939388275, -0.00025655905483290553, -0.01765323244035244, 0.03322446718811989, 0.02237709052860737, -0.028798038139939308, 0.041709914803504944, -0.03639120236039162, -0.014346531592309475, 0.002079809783026576, -0.0215023010969162, -0.089858278632164, 0.0012411061907187104, -0.07544176280498505, 0.07005306333303452, 0.000510384445078671, -0.025788765400648117, 0.01745203137397766, -0.043739426881074905, 0.0037375339306890965, 0.00044395518489181995, 0.024196650832891464, -0.0009436780819669366, 0.008861607871949673, -0.018842944875359535, -0.06651891767978668, 0.04667871445417404, -0.01766197942197323, 0.015448764897882938, 0.04108006879687309, 0.007496937643736601, -0.07509184628725052, -0.049583014100790024, 0.02563130296766758, -0.04629380628466606, 0.06907330453395844, -0.02377675101161003, -0.04153496026992798, -0.05091269314289093, 0.027853265404701233, -0.022779492661356926, 0.025228900834918022, -0.016708459705114365, 0.01716335117816925, -0.04524406045675278, -0.0006331281620077789, -0.006775237154215574, -0.004181488882750273, -0.014862656593322754, 0.020697496831417084, 0.04258470609784126, -0.03140490874648094, 0.07222253829240799, 0.009517699480056763, -0.018930424004793167, 0.031439900398254395, 0.02172974683344364, -0.01907038874924183, -0.02839563600718975, 0.0004483291122596711, -0.021624771878123283, 0.02218463644385338, 0.002287572016939521, -0.07292237132787704, 0.018160609528422356, -0.0017495770007371902, 0.007304484024643898, -0.032367173582315445, -0.013882894068956375, 0.04118504375219345, -0.010366244241595268, -0.061690084636211395, 0.01677844300866127, 0.030320169404149055, -0.027118444442749023, 0.04457922279834747, 0.014678951352834702, -0.03331194818019867, 0.009465212002396584, 0.06148013845086098, -0.03604128584265709, 0.032752081751823425, -0.04191986471414566, -0.0026549831964075565, 0.012080829590559006, 0.006574035622179508, 0.034746598452329636, 0.01570245437324047, 0.07320230454206467, -0.012107073329389095, -0.026873502880334854, 0.00929025374352932, 0.002515017054975033, 0.021957192569971085, 0.012509475462138653, -0.026278646662831306, 0.051857464015483856, -0.05091269314289093, 0.09055810421705246, 0.10336501151323318, 0.006727123633027077, 0.024424094706773758, 0.009998832829296589, -0.018650490790605545, 0.027888257056474686, -0.0019617131911218166, -0.03915553539991379, 0.06998308002948761, -0.012990609742701054, -0.05661631375551224, -0.05917069688439369, -0.015238815918564796, 0.003925613593310118, 0.020540034398436546, -0.04751851037144661, 0.01766197942197323, -0.0023488071747124195, -0.026786023750901222, 0.07446199655532837, -0.06949319690465927, -0.030127717182040215, 0.05402693897485733, 0.04177989810705185, -0.028133198618888855, -0.03982037305831909, -0.02776578813791275, -0.06896832585334778, 0.027590829879045486, -0.00855980534106493, -0.06529421359300613, -0.004013092257082462, -0.07628155499696732, 0.015046362765133381, 0.04094010218977928, 0.013279289938509464, 0.016568494960665703, 0.019490288570523262, 0.015649966895580292, -0.025508832186460495, 0.07208257168531418, -0.00527497474104166, 0.0022591412998735905, 0.04744853079319, -0.013069340027868748, -0.0034904060885310173, 0.01803813874721527, -0.0007167798466980457, -0.001394194201566279, -0.00802181102335453, 0.03807079792022705, -0.00034417459391988814, -0.006049162708222866, 0.03495654836297035, 0.1084737777709961, -0.013454247266054153, 0.021274857223033905, 0.03563888370990753, -0.014818917028605938, 0.004610135685652494, 0.023426836356520653, -0.006972064264118671, -0.013987868092954159, 0.002504082163795829, -0.03339942544698715, 0.008371725678443909, -0.012089577503502369, -0.00027159450110048056, 0.03171982988715172, 0.011678426526486874, 0.03880561888217926, -0.02689099870622158, 0.045489002019166946, 0.000912513758521527, -0.003744094865396619, -0.04482416436076164, -0.051472555845975876, -0.012649442069232464, -0.058575838804244995, 0.008419839665293694, -0.027590829879045486, -0.028623079881072044, 0.06595905125141144, -0.04531404376029968, 0.04762348532676697, -0.047238580882549286, 0.05717617645859718, 0.03782585635781288, -0.007824983447790146, 0.0013307720655575395, -0.0208724532276392, 0.02033008448779583, 0.03353939205408096, -0.0190179031342268, 0.01565871387720108, -0.02669854462146759, 0.08915844559669495, -0.014696447178721428, -0.012439493089914322, -0.011311015114188194, -0.03243715688586235, -0.0064778090454638, -0.012806903570890427, -0.002937102457508445, 0.05388697236776352, 0.019315330311655998, 0.01485390868037939, -0.024529069662094116, 0.04230477288365364, -0.0056511336006224155, 0.02732839249074459, 0.03546392545104027, 0.02538636326789856, 0.042409747838974, -0.028728054836392403, 0.05840088054537773, -0.06823350489139557, -0.005034408066421747, 0.022149644792079926, 0.023601794615387917, -0.06585408002138138, 0.05728115141391754, -0.006910829339176416, -0.0065390439704060555, 0.006705253850668669, -0.034939054399728775, 0.018370559439063072, -0.01716335117816925, -0.051857464015483856, 0.08146030455827713, -0.05917069688439369, -0.034064263105392456, 0.014031607657670975, 0.04324954375624657, 0.026733536273241043, 0.010103807784616947, 0.056196413934230804, 0.06158510968089104, -0.019332826137542725, -0.03807079792022705, -0.007461945991963148, -0.04636378958821297, -0.03088003396987915, -0.03943546488881111, -0.09020819514989853, 0.0042449114844202995, -0.026331134140491486, -0.014678951352834702, -0.005659881513565779, 0.003604128723964095, -0.0002366029511904344, 0.0017845685360953212, 0.01266693789511919, -0.03604128584265709, -0.004247098229825497, -0.00004913851080345921, 0.02095993235707283, 0.05812094733119011, 0.017968155443668365, -0.06130518019199371, 0.04230477288365364, -0.023654282093048096, -0.006447191350162029, -0.03789583966135979, -0.012089577503502369, 0.01478392630815506, 0.028080711141228676, -0.06270483881235123, -0.031579867005348206, -0.07033299654722214, -0.006324721034616232, -0.021239865571260452, -0.013174314983189106, -0.004806962795555592, -0.01959526352584362, -0.06662389636039734, -0.03345191106200218, -0.09377732872962952, 0.006980812177062035, -0.05031783506274223, 0.0063509647734463215, -0.00013108158600516617, -0.02976030483841896, -0.047728460282087326, -0.006482183001935482, 0.013139323331415653, 0.004286463838070631, -0.014084095135331154, -0.029445381835103035, 0.014503993093967438, 0.0010349841322749853, -0.0008130065980367362, 0.02027759701013565, 0.02596372365951538, 0.006219746544957161, 0.05028284341096878, -0.023846734315156937, -0.014818917028605938, 0.06725373864173889, -0.01770571991801262, 0.016419779509305954, -0.014696447178721428 ]
20,292
start_sdk.cf_r2
StorageUtils
null
class StorageUtils(CFR2_Bucket): temp_folder: Path @classmethod def clean_extra_meta(cls, text: str): """S3 metadata can only contain ASCII characters. The overall size cannot exceed a certain threshold, see `when calling the PutObject operation: Your metadata headers exceed the maximum allowed metadata size.')` Examples: >>> bad_text = "Hello,\\n\\n\\nthis breaks" >>> StorageUtils.clean_extra_meta(bad_text) 'Hello, this breaks' >>> long_text = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec." >>> StorageUtils.clean_extra_meta(long_text) 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean m' >>> valid_text = "This is a valid string" >>> StorageUtils.clean_extra_meta(valid_text) 'This is a valid string' """ # noqa: E501 text = re.sub(r"(\r|\n)+", r" ", text) text = re.sub(r"[^\x00-\x7f]", r"", text) if len(text) >= 100: text = text[:100] return text @classmethod def set_extra_meta(cls, data: dict) -> dict: """S3 metadata can be attached as extra args to R2. Examples: >>> test = {"statute_category": "RA", "statute_serial": None} >>> StorageUtils.set_extra_meta(test) {'Metadata': {'statute_category': 'RA'}} Args: data (dict): ordinary dict Returns: dict: Will be added to the `extra_args` field when uploading to R2 """ return { "Metadata": { k: cls.clean_extra_meta(str(v)) for k, v in data.items() if v } } def make_temp_yaml_path_from_data(self, data: dict) -> Path: """Create a temporary yaml file into folder path. Args: data (dict): What to store in the yaml file Returns: Path: Location of the yaml file created """ temp_path = self.temp_folder / "temp.yaml" temp_path.unlink(missing_ok=True) # delete existing content, if any. with open(temp_path, "w+"): temp_path.write_text(yaml.safe_dump(data)) return temp_path def restore_temp_yaml(self, yaml_suffix: str) -> dict[str, Any] | None: """Based on the `yaml_suffix`, download the same into a temp file and return its contents based on the extension. A `yaml` extension should result in contents in `dict` format; The temp file is deleted after every successful extraction of the `src` as content.""" if not yaml_suffix.endswith(".yaml"): logger.error(f"Not {yaml_suffix=}") return None path = self.temp_folder / "temp.yaml" try: self.download(loc=yaml_suffix, local_file=str(path)) except Exception as e: logger.error(f"Could not download yaml; {e=}") return None content = yaml.safe_load(path.read_bytes()) path.unlink(missing_ok=True) return content def restore_temp_txt(self, readable_suffix: str) -> str | None: """Based on the `src` prefix, download the same into a temp file and return its contents based on the extension. An `md` or `html` extension results in `str`. The temp file is deleted after every successful extraction of the `src` as content.""" if readable_suffix.endswith(".html"): ext = ".html" elif readable_suffix.endswith(".md"): ext = ".md" else: logger.error(f"Not {readable_suffix=}") return None path = self.temp_folder / f"temp{ext}" try: self.download(loc=readable_suffix, local_file=str(path)) except Exception as e: logger.error(f"Could not download yaml; {e=}") return None content = path.read_text() path.unlink(missing_ok=True) return content
(_env_file: Union[str, os.PathLike, List[Union[str, os.PathLike]], Tuple[Union[str, os.PathLike], ...], NoneType] = '<object object at 0x7f74a8a56270>', _env_file_encoding: Optional[str] = None, _env_nested_delimiter: Optional[str] = None, _secrets_dir: Union[str, os.PathLike, NoneType] = None, *, acct: str = 'ACT', r2_region: str = 'apac', r2_access_key: str = 'ABC', r2_secret_key: str = 'XYZ', name: str, temp_folder: pathlib.Path) -> None
[ 0.004220827482640743, -0.04229561984539032, -0.08894822746515274, 0.00018384234863333404, 0.056558575481176376, -0.028751978650689125, -0.01017314475029707, 0.0741509199142456, 0.06954731792211533, -0.03485586494207382, 0.06132659688591957, 0.0502697229385376, -0.030848264694213867, 0.015598822385072708, -0.03563683480024338, 0.024538857862353325, 0.013975229114294052, 0.05088627710938454, 0.03275958076119423, 0.016492826864123344, -0.016071513295173645, 0.01949338987469673, 0.0022992335725575686, 0.011313769966363907, 0.032965101301670074, 0.023202991113066673, 0.0404459573328495, -0.019102904945611954, 0.03795918822288513, -0.0021695003379136324, -0.030128950253129005, -0.0146739911288023, 0.011426805518567562, 0.08376917243003845, -0.02842315100133419, -0.07937107980251312, -0.001788007328286767, 0.01128294225782156, -0.07871342450380325, 0.005066020879894495, -0.04237782955169678, 0.03596566244959831, 0.025155413895845413, -0.07998763769865036, 0.033540550619363785, 0.00844679307192564, -0.026018589735031128, 0.0025098896585404873, -0.02076760120689869, -0.027333904057741165, 0.054380085319280624, 0.012002255767583847, -0.014519852586090565, 0.028854738920927048, -0.013317571952939034, 0.03631504625082016, -0.025504793971776962, 0.06967063248157501, -0.027292801067233086, 0.013893022201955318, 0.011180183850228786, 0.041165269911289215, 0.008909208700060844, -0.00947952177375555, -0.022154849022626877, 0.010019006207585335, -0.025874726474285126, -0.02903970517218113, -0.00867800135165453, 0.024189477786421776, -0.03884291648864746, -0.047022536396980286, 0.021620502695441246, -0.012423568405210972, 0.00026910024462267756, -0.02283305861055851, -0.005441091023385525, -0.03144426643848419, 0.04132968559861183, -0.022134296596050262, 0.005084003321826458, -0.026347417384386063, 0.0318758524954319, -0.051009587943553925, 0.0485844723880291, 0.008544414304196835, 0.06395722925662994, -0.019976356998085976, 0.016225652769207954, 0.026224106550216675, -0.01258798222988844, 0.004899037070572376, -0.026224106550216675, -0.005127676296979189, 0.028361495584249496, -0.05129731446504593, -0.020623739808797836, -0.062189772725105286, -0.008436516858637333, -0.01957559771835804, -0.04079533740878105, 0.028793083503842354, -0.00522015942260623, 0.017181310802698135, 0.03723987564444542, -0.04332321137189865, -0.051585037261247635, -0.02655293606221676, -0.012670190073549747, -0.026532383635640144, -0.07686375826597214, -0.03312951326370239, -0.019452286884188652, 0.015054198913276196, 0.031115436926484108, -0.050968483090400696, -0.03364330902695656, -0.027148937806487083, -0.013338123448193073, -0.04805012792348862, 0.05417456477880478, -0.015290545299649239, 0.0007257357356138527, 0.0020038012880831957, 0.023572923615574837, 0.039480023086071014, 0.04013768211007118, 0.01199197955429554, 0.013872470706701279, 0.0012915526749566197, -0.01696551777422428, 0.017715658992528915, 0.004690950270742178, 0.00882700178772211, 0.016873033717274666, -0.01693468913435936, 0.05446229130029678, 0.05105069279670715, -0.0125674307346344, 0.0362328365445137, 0.04406307637691498, -0.01938035525381565, 0.009741556830704212, -0.0630529448390007, -0.037794776260852814, -0.02390175312757492, 0.0042182584293186665, -0.04266555234789848, -0.030005639418959618, -0.02225760743021965, 0.0023095093201845884, -0.011416529305279255, -0.016451722010970116, 0.06260080635547638, 0.0352463498711586, -0.0036941873840987682, -0.007275340147316456, -0.005965162068605423, -0.03382827714085579, 0.018434971570968628, -0.0037609809078276157, -0.036561667919158936, 0.006581716705113649, -0.00028194510377943516, 0.0020770172122865915, -0.00488619226962328, 0.05746285617351532, -0.049858685582876205, 0.007696652319282293, 0.037753671407699585, 0.024374444037675858, 0.052735939621925354, -0.05339359864592552, 0.002041051397100091, -0.0032420477364212275, 0.08101522922515869, 0.007295891642570496, -0.03413655236363411, 0.005369159858673811, -0.016749722883105278, -0.05520215630531311, -0.04233672469854355, -0.01640034280717373, 0.022401470690965652, 0.02628576196730137, 0.03715766966342926, 0.022689195349812508, 0.0360889732837677, 0.040856994688510895, 0.009227761998772621, 0.016266755759716034, -0.002404561499133706, -0.02207264117896557, 0.025073206052184105, 0.03857574239373207, -0.022401470690965652, 0.010019006207585335, -0.041165269911289215, 0.035760145634412766, 0.033314481377601624, -0.04373424872756004, 0.005446229130029678, 0.05853154882788658, -0.029594603925943375, 0.02766273356974125, -0.018486350774765015, 0.008703690953552723, 0.024086719378829002, -0.10917120426893234, 0.0702049732208252, -0.03991161286830902, 0.016102341935038567, -0.009685039520263672, -0.02926577441394329, 0.0606689378619194, -0.02252478152513504, 0.009525762870907784, 0.041966792196035385, -0.02217540144920349, 0.023305749520659447, 0.07641161978244781, -0.006771820597350597, -0.02505265362560749, 0.03972664475440979, -0.00246107904240489, 0.0008252835250459611, 0.028443701565265656, -0.00988028198480606, -0.011827565729618073, -0.004023016430437565, 0.02349071577191353, -0.02349071577191353, 0.04969427362084389, 0.04124747961759567, 0.030581090599298477, -0.012392740696668625, 0.033540550619363785, -0.035184696316719055, 0.041165269911289215, -0.023223543539643288, -0.024086719378829002, -0.007429478690028191, 0.015927651897072792, 0.0352463498711586, -0.014355437830090523, -0.035184696316719055, 0.018825456500053406, 0.03765091300010681, 0.01766427978873253, -0.06079224869608879, 0.06654675304889679, 0.042460035532712936, -0.0320197157561779, 0.04385755956172943, 0.015146682970225811, -0.04303548485040665, 0.04040485620498657, -0.07460306584835052, 0.0337049663066864, -0.02421003021299839, 0.015948202461004257, -0.09272975474596024, 0.02168215811252594, 0.04303548485040665, -0.01600985787808895, -0.032862339168787, -0.002075732685625553, 0.014437644742429256, -0.05914810299873352, 0.009258589707314968, 0.028032666072249413, 0.06042231619358063, -0.028978049755096436, -0.002969736233353615, -0.025114309042692184, -0.010645836591720581, 0.0015632219146937132, -0.019894151017069817, -0.0010674095246940851, -0.03343779221177101, -0.017756761983036995, -0.011909772641956806, 0.060545627027750015, -0.019287871196866035, 0.09083899110555649, -0.03812360391020775, -0.04447411373257637, -0.062354184687137604, 0.001568359904922545, 0.020901188254356384, -0.07345215976238251, -0.008970864117145538, -0.04402197152376175, -0.026532383635640144, 0.020983396098017693, 0.005764781963080168, -0.1102399006485939, -0.04509066790342331, 0.057175129652023315, -0.03169088810682297, -0.05335249379277229, 0.038020845502614975, 0.007871342822909355, 0.037979740649461746, -0.019719459116458893, 0.014252678491175175, 0.036726079881191254, -0.041658513247966766, 0.03290344402194023, 0.041884586215019226, 0.023860648274421692, -0.03477365896105766, 0.0401582345366478, 0.0704926997423172, 0.0014553249347954988, 0.02482658438384533, 0.013543641194701195, 0.07690486311912537, -0.007424340583384037, 0.03197861462831497, -0.022401470690965652, -0.005543850362300873, -0.045296184718608856, 0.02881363406777382, 0.08220723271369934, -0.07402761280536652, -0.03140316158533096, 0.007501409854739904, 0.044802941381931305, 0.036911047995090485, -0.01369777973741293, 0.030786609277129173, 0.007825100794434547, 0.01582489162683487, 0.014632887206971645, -0.023942856118083, -0.03508193790912628, -0.0776447281241417, 0.05807941034436226, -0.039212848991155624, 0.044761836528778076, 0.001877921400591731, 0.010871906764805317, 0.008493035100400448, -0.006612544413655996, -0.0030673572327941656, 0.10843133926391602, -0.04558391124010086, -0.0004062193329446018, 0.02336740493774414, 0.046447087079286575, -0.011940600350499153, 0.020449049770832062, 0.018208902329206467, 0.024086719378829002, -0.0606689378619194, -0.057709477841854095, 0.021003948524594307, 0.011385701596736908, -0.03867850452661514, 0.0037352910730987787, -0.030355021357536316, -0.031156541779637337, 0.026840660721063614, 0.016986070200800896, -0.04137079045176506, -0.050393033772706985, 0.05618864297866821, -0.014817853458225727, -0.034609243273735046, 0.025504793971776962, -0.02363457903265953, -0.027724388986825943, -0.10580071061849594, 0.033314481377601624, -0.01922621577978134, -0.045419495552778244, -0.006268301513046026, -0.04455631971359253, 0.03321172297000885, 0.031238747760653496, 0.06149100884795189, -0.06646455079317093, 0.0012151256669312716, 0.022709747776389122, -0.0005565044120885432, -0.006098749116063118, 0.015311096794903278, 0.0351024866104126, 0.00881158746778965, 0.025833623483777046, 0.012115290388464928, 0.044844046235084534, -0.01781841740012169, -0.017099104821681976, -0.025196516886353493, -0.038103051483631134, 0.012762673199176788, -0.007619583047926426, 0.017479313537478447, -0.007871342822909355, -0.038514088839292526, 0.014221850782632828, 0.019678356125950813, 0.022154849022626877, 0.01968863233923912, 0.06568358093500137, 0.04837895557284355, -0.015907099470496178, 0.08615317940711975, -0.04048706218600273, -0.022401470690965652, 0.008405689150094986, -0.0035323419142514467, -0.015331649221479893, 0.03421876206994057, 0.004945278633385897, -0.006997890770435333, -0.023531820625066757, 0.04455631971359253, -0.045337289571762085, -0.015434407629072666, -0.0018599386094138026, 0.01627703197300434, -0.021271120756864548, -0.031547024846076965, -0.013379227370023727, -0.022278159856796265, -0.036911047995090485, -0.002697424730286002, 0.022195952013134956, 0.01873297244310379, -0.08154957741498947, -0.029019152745604515, 0.017633451148867607, 0.020325738936662674, -0.020048288628458977, -0.0396033339202404, 0.00424137944355607, 0.04500845819711685, 0.0013988073915243149, 0.0010205256985500455, 0.04324100539088249, -0.005364021752029657, 0.003586290404200554, 0.014293782413005829, -0.07558955252170563, 0.036643873900175095, 0.026183003559708595, 0.0074911341071128845, 0.006427578162401915, 0.07830239087343216, -0.019164560362696648, -0.021784916520118713, -0.04153520241379738, -0.05244821310043335, 0.03547241911292076, -0.021497191861271858, -0.06938290596008301, -0.056558575481176376, -0.015054198913276196, 0.038945674896240234, 0.016102341935038567, -0.0019524217350408435, 0.005004365462809801, -0.0001875352463684976, 0.002615217585116625, -0.013728607445955276, -0.06654675304889679, -0.01911318115890026, 0.02540203556418419, -0.06477929651737213, -0.005338332150131464, 0.02980012074112892, 0.03236909583210945, 0.012125566601753235, 0.023346854373812675, -0.011118528433144093, -0.019246768206357956, -0.034383174031972885, 0.03781532496213913, -0.08829056471586227, -0.0053023663349449635, 0.01784924603998661, -0.0028258736710995436, -0.020829256623983383, 0.05146172642707825, -0.012454396113753319, 0.02118891477584839, -0.006925959140062332, -0.04435080289840698, 0.02908080816268921, -0.041206374764442444, 0.031855303794145584, -0.04414528235793114, -0.014180747792124748, -0.031177092343568802, 0.0627652183175087, -0.024764928966760635, -0.07501409947872162, 0.0034167380072176456, -0.027292801067233086, -0.006602268200367689, -0.003989619668573141, 0.036458905786275864, -0.007563065271824598, -0.04800902307033539, -0.016184547916054726, -0.0012793500209227204, -0.052612628787755966, -0.06477929651737213, 0.013307295739650726, 0.05877817049622536, -0.02425113320350647, -0.007927860133349895, 0.03502028062939644, -0.06802648305892944, 0.05594202131032944, 0.0011553969234228134, -0.016030410304665565, -0.03164978325366974, -0.030971575528383255, 0.006905407644808292, -0.06798537820577621, -0.0003426371840760112, -0.0360889732837677, 0.01834248937666416, -0.030827712267637253, 0.03325282409787178, 0.02363457903265953, -0.049324337393045425, -0.005456504877656698, 0.003987050615251064, -0.05807941034436226, 0.024806031957268715, 0.04554280638694763, -0.017376553267240524, -0.015290545299649239, 0.02624465897679329, -0.009638798423111439, 0.011231563054025173, 0.005533574149012566, -0.0040153092704713345, -0.0273133534938097, -0.07036939263343811, 0.014776749536395073, 0.053270287811756134, 0.04694033041596413, 0.0197297353297472, -0.012094738893210888, -0.013266191817820072, -0.055530983954668045, 0.03882236406207085, 0.017869796603918076, 0.0057596443220973015, -0.045419495552778244, -0.011673427186906338, -0.07476747781038284, 0.03351999819278717, -0.01964752934873104, 0.030355021357536316, 0.06523143500089645, -0.03312951326370239, 0.002480346243828535, 0.018178073689341545, 0.04398087039589882, -0.027559975162148476, 0.034650348126888275, -0.05113289877772331, 0.0021412414498627186, -0.002615217585116625, 0.040096577256917953, 0.03898677974939346, -0.019133733585476875, -0.01024507638067007, -0.015999581664800644, 0.005960024427622557, 0.006931097246706486, 0.013533365912735462, -0.0005092995124869049, 0.04124747961759567, -0.010126903653144836, 0.07423312962055206, -0.04891330376267433, -0.0017520416295155883, -0.03984995558857918, 0.032245784997940063, 0.05733954533934593, 0.018753524869680405, 0.034424278885126114, -0.025813071057200432, 0.0647381916642189, 0.016595585271716118, -0.09289417415857315, 0.037486497312784195, -0.01164259947836399, 0.0529414564371109, -0.04038430377840996, -0.006170680280774832, -0.015413856133818626, -0.013307295739650726, 0.0033602206967771053, -0.029183566570281982, 0.042048998177051544, -0.022935817018151283, 0.010686940513551235, -0.0037404289469122887, -0.03206082060933113, 0.005207314155995846, 0.016369514167308807, -0.024374444037675858, -0.019709184765815735, 0.02585417404770851, -0.0013114622561261058, 0.040939200669527054, 0.020849809050559998, -0.06391612440347672, -0.02819707989692688, 0.02727224864065647, -0.03204026818275452, -0.04303548485040665, -0.001686532748863101, -0.038288019597530365, 0.026306314393877983, -0.06658785790205002, 0.02624465897679329, -0.020664842799305916, -0.037712566554546356, -0.06346398591995239, -0.04435080289840698, 0.00592919671908021, -0.06292963773012161, 0.1029234528541565, 0.0077942730858922005, 0.02252478152513504, 0.041658513247966766, -0.0005924701108597219, 0.02531982772052288, -0.0001304558099946007, 0.029759017750620842, 0.06814979761838913, -0.05918920785188675, -0.07012277096509933, 0.05084517225623131, -0.08068639785051346, -0.016605861485004425, 0.04899550974369049, -0.05565429478883743, 0.03409545123577118, -0.0070030284114181995, -0.03615063056349754, 0.09018133580684662, 0.006782096810638905, -0.015434407629072666, -0.022463126108050346, 0.03197861462831497, 0.05183165892958641, -0.03781532496213913, -0.008020343258976936, -0.02842315100133419, 0.006967063061892986, -0.03682883828878403, -0.022195952013134956, 0.03220468387007713, -0.015639925375580788, -0.04973537474870682, 0.04940654709935188, 0.03306785970926285, 0.03436262160539627, 0.025032103061676025, 0.025525346398353577, -0.01861993782222271, 0.014735646545886993, -0.045337289571762085, -0.005651747342199087, -0.016862759366631508, 0.05298256129026413, 0.002633200492709875, 0.031320955604314804, 0.05458560213446617, 0.010111489333212376, 0.04328210651874542, -0.03156757727265358, 0.04780350625514984, 0.014262954704463482, 0.04124747961759567, 0.025915829464793205, 0.020161323249340057, -0.060463421046733856, -0.01700662076473236, 0.01308122556656599, 0.006211784202605486, 0.008898932486772537, -0.028299840167164803, -0.05766837298870087, -0.02838204614818096, 0.021024499088525772, 0.000734727131202817, 0.03497917577624321, -0.056065332144498825, 0.014519852586090565, -0.02053125575184822, 0.003378203371539712, -0.040240440517663956, -0.003262599464505911, -0.02336740493774414, -0.04854337126016617, -0.017191587015986443, -0.03742484375834465, -0.004857933614403009, 0.04578942805528641, 0.080604188144207, 0.07143808156251907, -0.03534910827875137, -0.00904279574751854, 0.010563629679381847, 0.002182345138862729, -0.019740011543035507, 0.03571904078125954, 0.00016128351853694767, -0.025196516886353493, 0.006951649207621813, 0.021826019510626793, 0.04603604972362518, -0.003285720245912671, 0.004274776205420494, -0.07632941752672195, -0.00527667673304677, 0.0003052264510188252, 0.02571031264960766, 0.003288289299234748, 0.030622193589806557, -0.032122474163770676, 0.035451870411634445, -0.004071827046573162, -0.07312333583831787, 0.028299840167164803, -0.014869232662022114, 0.009094174951314926, 0.07127366960048676, 0.01571185700595379, 0.008970864117145538, -0.045419495552778244, -0.001655705040320754, 0.04019933566451073, -0.015341924503445625, 0.05573650449514389, 0.06457377970218658, -0.03214302659034729, 0.0206442903727293, 0.05931251868605614, -0.01447874866425991, -0.04784460738301277, 0.04319990053772926, -0.008169343695044518, -0.012752396985888481, 0.012464671395719051, 0.009685039520263672, -0.025730863213539124, 0.02359347604215145, 0.006725579034537077, -0.053927943110466, 0.011108252219855785, 0.06687558442354202, 0.07817907631397247, 0.03773311898112297, -0.00850331038236618, 0.02957405149936676 ]
20,299
start_sdk.cf_r2
make_temp_yaml_path_from_data
Create a temporary yaml file into folder path. Args: data (dict): What to store in the yaml file Returns: Path: Location of the yaml file created
def make_temp_yaml_path_from_data(self, data: dict) -> Path: """Create a temporary yaml file into folder path. Args: data (dict): What to store in the yaml file Returns: Path: Location of the yaml file created """ temp_path = self.temp_folder / "temp.yaml" temp_path.unlink(missing_ok=True) # delete existing content, if any. with open(temp_path, "w+"): temp_path.write_text(yaml.safe_dump(data)) return temp_path
(self, data: dict) -> pathlib.Path
[ -0.012674636207520962, -0.017256934195756912, -0.0156897883862257, -0.03126960247755051, 0.0284285768866539, 0.014003503136336803, -0.026229074224829674, 0.04868233576416969, 0.02628406137228012, -0.004043878056108952, 0.045199789106845856, -0.016624577343463898, -0.01743106171488762, -0.01469084806740284, -0.011299947276711464, -0.0009302065009251237, 0.025110993534326553, 0.03258930519223213, -0.0065893447026610374, 0.011290782131254673, 0.04237709194421768, -0.031434565782547, -0.018457496538758278, 0.020656999200582504, 0.020015478134155273, 0.05894668400287628, -0.02500101923942566, 0.02302146516740322, 0.010328499600291252, -0.041204024106264114, -0.03656673803925514, -0.008472668938338757, 0.06466539204120636, 0.044539935886859894, 0.006318989209830761, 0.008257301524281502, -0.001985280541703105, 0.022178322076797485, -0.10044397413730621, -0.042010508477687836, 0.038747914135456085, -0.01664290763437748, -0.049965377897024155, 0.0069834222085773945, 0.0281169805675745, -0.004463158547878265, -0.017944280058145523, -0.01122663076967001, 0.022599894553422928, -0.032625962048769, 0.03323082625865936, -0.06609506905078888, -0.03775813803076744, 0.065251924097538, -0.01035599410533905, 0.052201539278030396, 0.005883670877665281, 0.028007006272673607, 0.011840658262372017, -0.016661236062645912, 0.007295018527656794, 0.017101136967539787, 0.0645187571644783, -0.04219380021095276, -0.0009044311009347439, -0.00025403115432709455, -0.04003095626831055, -0.023461366072297096, 0.0033794448245316744, 0.01685369201004505, -0.07786241173744202, -0.002440073760226369, 0.03400065377354622, 0.006021139677613974, 0.06356564164161682, -0.03543033078312874, 0.021371837705373764, -0.05011201277375221, 0.03493544086813927, -0.014003503136336803, -0.059129975736141205, -0.09655818343162537, -0.04274367541074753, 0.03632846102118492, -0.01981385610997677, 0.041863877326250076, 0.0728035494685173, 0.0030495193786919117, -0.014452568255364895, -0.023919595405459404, 0.06235591322183609, -0.00020419865904841572, -0.049012262374162674, 0.015543155372142792, 0.051175106316804886, -0.040654148906469345, -0.002084945561364293, 0.009577003307640553, -0.014287605881690979, -0.008550568483769894, -0.018063418567180634, 0.03374404460191727, -0.04424666985869408, 0.005054275039583445, 0.05388782545924187, -0.06657163053750992, 0.009604496881365776, -0.01771516539156437, -0.03988432139158249, -0.01253716740757227, -0.09003299474716187, -0.01461753062903881, -0.02380962111055851, 0.06382224708795547, 0.040727466344833374, -0.011373263783752918, -0.004692273214459419, -0.05014866963028908, 0.022031689062714577, -0.040984075516462326, -0.005594986025243998, 0.007954869419336319, -0.004802248440682888, 0.03211274370551109, 0.030133191496133804, 0.04054417461156845, 0.0616227462887764, 0.011125819757580757, -0.06323571503162384, -0.018897397443652153, 0.0124271921813488, 0.07998859882354736, -0.011354934424161911, -0.00044133258052170277, -0.0254775770008564, 0.02388293854892254, 0.09736467152833939, 0.07419656962156296, 0.002035686047747731, 0.027292167767882347, 0.029601646587252617, -0.039774347096681595, -0.06444544345140457, 0.019465602934360504, 0.06206264719367027, -0.008381023071706295, -0.016679564490914345, 0.05040527880191803, -0.002401124220341444, 0.025660868734121323, 0.04179055988788605, -0.034367237240076065, -0.004142397549003363, 0.02063867077231407, 0.05520752817392349, -0.04508981481194496, -0.023827949538826942, -0.02771373838186264, -0.009961916133761406, -0.032919228076934814, -0.0023392632137984037, -0.003104506991803646, 0.009091279469430447, -0.017696835100650787, -0.01695450209081173, 0.0019314386881887913, 0.026467353105545044, -0.0094761922955513, 0.06011975184082985, -0.01723860576748848, 0.003500875784084201, 0.004662488121539354, -0.05718708038330078, 0.02245326153934002, -0.04648283123970032, -0.06312573701143265, 0.0032373936846852303, -0.07837563008069992, 0.05535415932536125, -0.014443404041230679, -0.07617612183094025, 0.029198404401540756, -0.018970714882016182, 0.0581035390496254, 0.015350698493421078, -0.025605881586670876, -0.013004561886191368, 0.04043420031666756, 0.021060241386294365, 0.01421428844332695, -0.08226141333580017, 0.0026004542596638203, -0.0409107580780983, -0.005828683264553547, 0.028795162215828896, -0.025770844891667366, -0.005828683264553547, -0.044539935886859894, -0.015167406760156155, -0.01529571134597063, 0.005828683264553547, -0.029326707124710083, 0.0793287456035614, -0.020088795572519302, 0.02117021754384041, -0.028226956725120544, -0.0031411652453243732, 0.03805140405893326, -0.06312573701143265, 0.06561850756406784, 0.02371797524392605, -0.012665471993386745, 0.0037597755435854197, -0.044649913907051086, 0.03266262263059616, 0.0032603051513433456, -0.016138853505253792, 0.02069365791976452, -0.050845179706811905, 0.016789540648460388, -0.01186815183609724, 0.015873080119490623, 0.008408516645431519, 0.015066595748066902, 0.018769092857837677, -0.05304468423128128, -0.005480428691953421, -0.015909738838672638, -0.039554398506879807, -0.01326117105782032, 0.060816261917352676, -0.0390411801636219, 0.0473259761929512, -0.03863793611526489, 0.015176570974290371, -0.02652234211564064, 0.00784489419311285, -0.08695369213819504, 0.03962771221995354, 0.007519551087170839, -0.009448698721826077, -0.05212822183966637, 0.029583316296339035, 0.005026781000196934, -0.00943953450769186, -0.022324956953525543, 0.01361859031021595, -0.038747914135456085, 0.061842694878578186, -0.05557411164045334, 0.04721599817276001, 0.011529061943292618, -0.03900452330708504, 0.06891776621341705, 0.022178322076797485, -0.021005254238843918, 0.041753899306058884, -0.028648527339100838, 0.03240601345896721, -0.01621217094361782, 0.00021536801068577915, -0.01142825186252594, -0.009916093200445175, 0.024432813748717308, 0.0019280018750578165, -0.11965297162532806, -0.055610768496990204, 0.009091279469430447, -0.06616838276386261, -0.011162478476762772, 0.08973972499370575, 0.06125616282224655, 0.040250904858112335, -0.04421001300215721, 0.012601319700479507, -0.0031320007983595133, 0.018439168110489845, -0.03871125355362892, 0.04868233576416969, 0.0022774022072553635, -0.03440389409661293, -0.009705306962132454, 0.020437048748135567, -0.04959879443049431, 0.02835526131093502, -0.035155389457941055, -0.06308908015489578, 0.03130625933408737, 0.05388782545924187, -0.011758176609873772, -0.02388293854892254, -0.01285792887210846, -0.06880778819322586, -0.0215917881578207, -0.004314233548939228, 0.02325974591076374, -0.07141053676605225, -0.032772596925497055, 0.06378559023141861, -0.03885788843035698, 0.052678100764751434, -0.0015293420292437077, 0.02478106878697872, 0.03601686283946037, -0.01497494988143444, 0.04395340383052826, -0.03664005547761917, -0.016230499371886253, 0.009980245493352413, -0.025459248572587967, 0.0012956447899341583, -0.0740499347448349, 0.057773616164922714, 0.0692843496799469, 0.03838133066892624, 0.0002810953592415899, -0.009109608829021454, 0.0027768725994974375, 0.023296402767300606, 0.031984440982341766, -0.01508492510765791, 0.029766608029603958, -0.010401817038655281, -0.042157143354415894, 0.06759805977344513, -0.05238483101129532, 0.019923832267522812, -0.014745835214853287, 0.06195266917347908, 0.043513502925634384, -0.03346910700201988, 0.01250050961971283, 0.020968595519661903, 0.007120891474187374, 0.03678669035434723, -0.021371837705373764, -0.013627754524350166, -0.02435949631035328, 0.01740356907248497, -0.01413180772215128, 0.050771862268447876, -0.022508248686790466, 0.01919066533446312, -0.027420472353696823, 0.06649830937385559, 0.03992098197340965, 0.03616349771618843, -0.008408516645431519, 0.0034092296846210957, 0.04219380021095276, 0.020895279943943024, 0.013187853619456291, 0.021958371624350548, 0.002080363454297185, 0.016780376434326172, -0.05465765297412872, -0.0022464715875685215, 0.0308113731443882, -0.014645025134086609, 0.0156897883862257, 0.030609751120209694, -0.0035444076638668776, -0.02095026709139347, 0.017733493819832802, 0.001981843961402774, -0.011904810555279255, -0.049415502697229385, 0.037336565554142, 0.0035558633971959352, 0.01656959019601345, 0.025037676095962524, -0.011034173890948296, 0.018439168110489845, -0.04292696714401245, 0.05300802364945412, 0.01966722309589386, -0.008289377205073833, -0.01162070780992508, -0.014654189348220825, 0.028776831924915314, 0.006126532796770334, 0.021316850557923317, 0.020272087305784225, -0.0027677081525325775, 0.03442222252488136, -0.03647509217262268, -0.03321249783039093, -0.004098865669220686, 0.025825832039117813, -0.0094761922955513, -0.010777564719319344, 0.0007159840897656977, 0.0740499347448349, 0.008481834083795547, 0.025844160467386246, -0.02109690010547638, -0.008720112964510918, 0.028245285153388977, -0.014241782948374748, 0.06022972613573074, 0.04585963860154152, -0.032369352877140045, -0.038747914135456085, -0.018081748858094215, 0.050295304507017136, 0.028061993420124054, 0.027347154915332794, 0.005750784184783697, 0.021555129438638687, 0.023937925696372986, 0.00425695488229394, 0.003975143656134605, 0.08614720404148102, -0.008174819871783257, 0.03629180043935776, 0.029088428243994713, -0.01886073872447014, 0.014498391188681126, 0.03183780610561371, 0.005892835557460785, -0.014397581107914448, -0.023992912843823433, 0.008614720776677132, -0.0007177024381235242, 0.0008019021479412913, 0.009228748269379139, -0.028941795229911804, -0.0461895652115345, -0.047179341316223145, 0.038417987525463104, 0.01194146927446127, -0.049635451287031174, -0.014223453588783741, -0.039297789335250854, 0.0586167573928833, 0.01597389206290245, 0.01290375180542469, -0.02835526131093502, -0.04761924222111702, 0.06107286736369133, 0.04116736724972725, -0.01238136924803257, 0.06528858095407486, -0.00832145381718874, -0.0118314940482378, 0.0497087687253952, -0.08570730686187744, 0.027457131072878838, 0.06363895535469055, 0.03488045185804367, 0.03328581526875496, 0.014809987507760525, 0.04285365343093872, -0.034843795001506805, -0.00627316627651453, -0.04644617438316345, -0.04281699284911156, -0.05619730427861214, -0.01823754608631134, -0.009769459255039692, 0.015790598466992378, -0.012912916019558907, 0.08688037097454071, -0.011712353676557541, 0.056747179478406906, -0.06484868377447128, -0.04428333044052124, 0.017486048862338066, -0.0012475306866690516, -0.04094741493463516, 0.014599202200770378, -0.03616349771618843, -0.007757830899208784, 0.05337460711598396, -0.012610484845936298, 0.030408130958676338, 0.007840312086045742, 0.0581035390496254, 0.016221335157752037, -0.012885422445833683, 0.04314691945910454, -0.05971650779247284, -0.02978493832051754, 0.05018533021211624, -0.05113844573497772, 0.0029028858989477158, 0.0029349620454013348, 0.01138242892920971, -0.050918497145175934, 0.03233269602060318, 0.017055314034223557, 0.00002747588951024227, -0.08988635987043381, -0.02126186341047287, -0.04245040938258171, -0.019795527681708336, 0.009668649174273014, 0.07778909057378769, -0.01402183249592781, -0.07558958977460861, 0.01019103080034256, -0.02412121742963791, 0.028776831924915314, -0.00608987407758832, 0.011391593143343925, 0.026650646701455116, -0.013187853619456291, -0.02523929812014103, -0.02390126697719097, 0.0004751270462293178, -0.03064640983939171, -0.024872714653611183, 0.0023507189471274614, -0.0598631426692009, 0.03147122263908386, 0.05788359045982361, -0.016899514943361282, 0.034293919801712036, -0.021683434024453163, -0.047106023877859116, -0.08563398569822311, -0.011318276636302471, 0.019062360748648643, -0.0006329299067147076, -0.0275487769395113, 0.0018283369718119502, 0.013581931591033936, 0.007730336859822273, -0.027108876034617424, 0.06437212228775024, -0.010823388583958149, -0.04461325332522392, 0.04809579998254776, 0.01151073258370161, 0.025990795344114304, 0.01326117105782032, -0.030279826372861862, -0.04879231005907059, 0.010117714293301105, -0.04659280553460121, -0.02650401182472706, -0.02961997501552105, 0.01692700944840908, -0.03570526838302612, -0.025660868734121323, 0.05454767495393753, -0.008275629952549934, 0.06957761198282242, -0.007359170820564032, 0.01417763065546751, 0.007336259353905916, -0.036365117877721786, 0.03191112354397774, 0.039224471896886826, -0.05326463282108307, -0.043293554335832596, 0.035943545401096344, -0.04234043508768082, 0.01576310582458973, -0.01904403045773506, -0.05198159068822861, 0.02835526131093502, -0.008188567124307156, 0.015323204919695854, 0.015781434252858162, -0.018219217658042908, -0.06858783960342407, 0.0021433699876070023, -0.07243696600198746, 0.006186102516949177, 0.06569182872772217, -0.008353529497981071, 0.07437986135482788, -0.07507637143135071, 0.018695775419473648, -0.00967781338840723, 0.015424015000462532, 0.002747087739408016, 0.04340352863073349, 0.013765223324298859, 0.017101136967539787, 0.016038043424487114, 0.013050384819507599, -0.027658751234412193, -0.007913628593087196, -0.08688037097454071, 0.04410003870725632, 0.023534683510661125, -0.01766934059560299, 0.0027952019590884447, -0.03180114924907684, 0.09025294333696365, -0.008133579045534134, -0.020052136853337288, 0.03687833622097969, -0.041130706667900085, 0.07170379906892776, -0.021536801010370255, 0.016203006729483604, -0.0008677727309986949, -0.016679564490914345, 0.02157345972955227, -0.07188709080219269, 0.057920247316360474, -0.02278318628668785, -0.039847664535045624, 0.007734919432550669, 0.015653129667043686, -0.0355769619345665, -0.005562909878790379, -0.0032373936846852303, -0.015277381986379623, 0.052054908126592636, 0.010841717012226582, 0.04234043508768082, 0.024194534868001938, -0.013756059110164642, -0.041607268154621124, -0.026247402653098106, 0.022654881700873375, -0.053227975964546204, -0.055060893297195435, 0.018897397443652153, 0.023553011938929558, -0.04135065898299217, -0.010850882157683372, 0.039444420486688614, -0.010282676666975021, -0.054181091487407684, -0.04644617438316345, 0.006218178663402796, -0.054987575858831406, 0.026980571448802948, -0.0010035232407972217, -0.016771210357546806, 0.05821351334452629, -0.022031689062714577, 0.007281271740794182, 0.0455663725733757, -0.03695165365934372, -0.003356533357873559, -0.03535701334476471, -0.06345566362142563, 0.01981385610997677, -0.03550364449620247, -0.0008202313329093158, 0.050368621945381165, -0.04278033599257469, -0.01880575157701969, 0.014672518707811832, -0.019300639629364014, 0.011950633488595486, -0.020730316638946533, 0.01667040027678013, 0.025660868734121323, 0.05465765297412872, 0.11334772408008575, -0.031581196933984756, -0.02795201912522316, -0.052054908126592636, -0.04069080576300621, 0.02388293854892254, -0.06011975184082985, -0.0004490652063395828, 0.00644729332998395, 0.0026279480662196875, 0.015625637024641037, 0.056014012545347214, 0.008101503364741802, 0.007437069900333881, 0.006355647463351488, -0.01484664622694254, -0.029180074110627174, -0.024909373372793198, 0.02357134222984314, -0.03258930519223213, -0.015708118677139282, -0.03414728492498398, -0.012674636207520962, 0.011235794983804226, -0.026339050382375717, 0.011208301410079002, -0.008885076269507408, 0.02126186341047287, -0.00137812620960176, 0.07683597505092621, 0.06374893337488174, -0.021683434024453163, 0.009210418909788132, 0.03321249783039093, -0.03104965202510357, 0.02683393843472004, -0.008275629952549934, -0.007496639620512724, -0.05436438322067261, -0.06620503962039948, 0.03152621164917946, 0.035778582096099854, 0.03445888310670853, -0.046629466116428375, 0.018320027738809586, -0.011913974769413471, 0.040177591145038605, -0.03601686283946037, -0.024946030229330063, -0.0626491829752922, 0.02063867077231407, 0.024396155029535294, -0.025899149477481842, -0.01778848096728325, 0.05469430983066559, 0.005430023185908794, 0.04135065898299217, -0.024176204577088356, 0.005796607118099928, -0.02223331108689308, -0.09531179815530777, -0.02556922286748886, 0.005659138318151236, -0.05828683078289032, 0.00030930512002669275, 0.013966844417154789, -0.01504826731979847, -0.025844160467386246, 0.006946763955056667, -0.028483565896749496, -0.03581524267792702, -0.07459980994462967, 0.02676062099635601, 0.043916743248701096, -0.03550364449620247, -0.025202639400959015, -0.013361981138586998, -0.004234043415635824, 0.01489246916025877, 0.011538227088749409, -0.010979185812175274, 0.00678638368844986, -0.008257301524281502, 0.08116166293621063, 0.023791292682290077, 0.07639607042074203, -0.0011266724904999137, 0.008028185926377773, 0.05630727857351303, -0.046702783554792404, 0.05997311696410179, 0.02500101923942566, -0.04369679465889931, 0.018824080005288124, 0.030958006158471107, 0.025935808196663857, -0.051175106316804886, 0.04406337812542915, -0.04252372682094574, -0.00018486709450371563, 0.04340352863073349, -0.01966722309589386, -0.012949574738740921, -0.007125473581254482, 0.016184676438570023, -0.031342919915914536, 0.010456804186105728, 0.013013727031648159, 0.03390900418162346, 0.01880575157701969, -0.017440225929021835, 0.0094761922955513 ]
20,300
start_sdk.cf_r2
restore_temp_txt
Based on the `src` prefix, download the same into a temp file and return its contents based on the extension. An `md` or `html` extension results in `str`. The temp file is deleted after every successful extraction of the `src` as content.
def restore_temp_txt(self, readable_suffix: str) -> str | None: """Based on the `src` prefix, download the same into a temp file and return its contents based on the extension. An `md` or `html` extension results in `str`. The temp file is deleted after every successful extraction of the `src` as content.""" if readable_suffix.endswith(".html"): ext = ".html" elif readable_suffix.endswith(".md"): ext = ".md" else: logger.error(f"Not {readable_suffix=}") return None path = self.temp_folder / f"temp{ext}" try: self.download(loc=readable_suffix, local_file=str(path)) except Exception as e: logger.error(f"Could not download yaml; {e=}") return None content = path.read_text() path.unlink(missing_ok=True) return content
(self, readable_suffix: str) -> str | None
[ -0.02447078935801983, -0.015987107530236244, -0.005284478422254324, -0.04780091717839241, 0.04134903848171234, -0.008733202703297138, -0.011201668530702591, 0.06811898201704025, 0.06583765149116516, -0.03095831163227558, 0.03910335898399353, 0.0494762659072876, -0.03853302821516991, 0.016896072775125504, -0.00731182936578989, 0.049832724034786224, -0.025754036381840706, 0.014997938647866249, -0.026360012590885162, 0.02341924048960209, -0.03960239887237549, -0.044949259608983994, 0.020995331928133965, -0.011014528572559357, -0.0008716493612155318, 0.02354400046169758, -0.0005539011326618493, -0.0702933669090271, -0.030316688120365143, 0.005413694307208061, 0.030334511771798134, -0.028605693951249123, 0.010034271515905857, 0.07713735103607178, -0.03409513458609581, -0.007485602051019669, -0.00949067436158657, 0.0176268108189106, -0.08091579377651215, -0.07282421737909317, -0.031528644263744354, -0.024043040350079536, 0.045377008616924286, -0.006095418706536293, -0.01960514858365059, -0.04248970374464989, -0.0061756218783557415, -0.034184250980615616, 0.006331571843475103, -0.05992046371102333, 0.06569506973028183, 0.07343019545078278, -0.04487796872854233, -0.005061693023890257, -0.010114474222064018, 0.006215723231434822, -0.014810798689723015, 0.06619410961866379, -0.001155144302174449, 0.016290096566081047, -0.029514659196138382, -0.025878796353936195, -0.0255579836666584, 0.03373867645859718, -0.012110634706914425, -0.007102410774677992, 0.007267272099852562, -0.039816275238990784, 0.015309838578104973, 0.014204821549355984, -0.0076415520161390305, -0.010640248656272888, -0.009187685325741768, -0.0002382415405008942, 0.03307923302054405, -0.0476226881146431, -0.022314224392175674, -0.0781354308128357, -0.010150119662284851, 0.000176000758074224, -0.015069229528307915, -0.03286535665392876, 0.030049346387386322, 0.0075123365968465805, 0.006870713550597429, -0.0500822439789772, 0.10323001444339752, -0.020050719380378723, -0.00031607731943950057, 0.019676439464092255, 0.04698106646537781, -0.006135520525276661, -0.07599668204784393, -0.04698106646537781, 0.004727513995021582, -0.033489156514406204, -0.019123930484056473, 0.019195223227143288, -0.0019226412987336516, -0.05218534171581268, -0.04202630743384361, 0.040600478649139404, -0.015586093068122864, 0.07763639092445374, 0.04131339490413666, 0.0046339440159499645, 0.0067459531128406525, 0.0251480583101511, 0.00974019430577755, -0.06031256541609764, -0.009428294375538826, -0.025967910885810852, -0.025878796353936195, 0.010337259620428085, 0.0379270501434803, -0.054181501269340515, -0.03682203218340874, -0.025361932814121246, -0.03241978585720062, -0.0323663167655468, 0.008434669114649296, -0.01817931979894638, -0.08726073056459427, -0.006839523557573557, -0.02881956845521927, -0.006215723231434822, 0.05211405083537102, -0.026645179837942123, 0.041812434792518616, 0.011968052014708519, 0.0013734743697568774, 0.03817657008767128, 0.038782548159360886, 0.05165065452456474, -0.00021846930030733347, 0.018116939812898636, 0.026413481682538986, 0.046945419162511826, 0.01159377209842205, -0.0027781387325376272, -0.007940084673464298, -0.0030610766261816025, -0.0003973941202275455, -0.007547982037067413, -0.01595146209001541, -0.0500822439789772, 0.037214137613773346, -0.010827388614416122, -0.025985732674598694, 0.00941047165542841, 0.028516579419374466, -0.04527007043361664, -0.10693717002868652, 0.024328207597136497, 0.03373867645859718, -0.0006594458827748895, -0.017680279910564423, 0.06811898201704025, -0.022545920684933662, -0.012021520175039768, 0.00869310088455677, 0.014008769765496254, 0.011299694888293743, -0.005930557381361723, 0.030049346387386322, 0.0010270423954352736, 0.04252535104751587, -0.0214409027248621, 0.05026047304272652, 0.006656839046627283, -0.007712843827903271, 0.0628790557384491, -0.0247381329536438, -0.0028538857586681843, 0.015826702117919922, 0.014374138787388802, 0.04808608070015907, -0.010506576858460903, 0.012992866337299347, 0.037321072071790695, -0.03395255282521248, -0.05582120269536972, -0.06519602984189987, 0.02409650944173336, 0.04256099462509155, 0.025878796353936195, -0.0027937337290495634, 0.03420207276940346, 0.0005714455037377775, -0.031279124319553375, -0.019016994163393974, 0.010408551432192326, -0.05624895170331001, -0.04003014788031578, -0.02725115604698658, -0.03835479915142059, -0.001325575402006507, -0.046303797513246536, 0.024043040350079536, -0.054431021213531494, -0.024417322129011154, 0.017591165378689766, 0.06152452155947685, 0.0123690664768219, 0.030512740835547447, 0.006643471773713827, 0.008546062745153904, 0.015247458592057228, -0.1045132651925087, 0.08612006902694702, -0.00908965989947319, -0.008581708185374737, -0.01203934382647276, -0.037214137613773346, 0.047979146242141724, -0.008621810004115105, -0.1065807193517685, 0.06074031442403793, -0.03767753019928932, 0.017564430832862854, 0.006897447630763054, -0.03714284300804138, 0.00047536916099488735, 0.05015353485941887, 0.014694949612021446, -0.02976417914032936, -0.0005953949876129627, 0.00015887411427684128, -0.024132154881954193, -0.03168904781341553, 0.014810798689723015, -0.07934737950563431, 0.03397037461400032, -0.015897992998361588, 0.04084999859333038, 0.04569781944155693, 0.03445159271359444, -0.03380997106432915, 0.02924731746315956, 0.05546474829316139, -0.04951190948486328, 0.017822861671447754, 0.04644637927412987, 0.04256099462509155, 0.003727206028997898, 0.03921029716730118, 0.023615293204784393, 0.001953831175342202, 0.022670680657029152, -0.03274059668183327, 0.09417600184679031, 0.032063327729701996, -0.028783923014998436, 0.04199066385626793, 0.04591169208288193, 0.0005797999911010265, 0.021833006292581558, -0.08177129179239273, -0.0005472175544127822, -0.0068796249106526375, -0.014588012360036373, -0.0989525318145752, -0.008541606366634369, -0.01462365873157978, -0.026663001626729965, -0.03949546441435814, -0.052969545125961304, 0.023793520405888557, -0.041527267545461655, -0.035592254251241684, -0.03094048798084259, 0.042988743633031845, -0.021833006292581558, -0.03413078188896179, -0.000974130816757679, -0.018589245155453682, 0.012921575456857681, 0.006803877651691437, 0.030512740835547447, 0.005378048866987228, -0.0463750883936882, 0.02185082994401455, 0.06455440819263458, -0.002744720783084631, 0.06412665545940399, -0.03935287892818451, -0.032990116626024246, -0.07820671796798706, 0.037214137613773346, -0.024310383945703506, 0.007815324701368809, 0.023205365985631943, -0.009784751571714878, -0.04598298296332359, 0.003023202996701002, -0.033382222056388855, -0.09995061159133911, -0.05621330812573433, 0.05304083973169327, 0.02463119477033615, -0.0308157280087471, -0.018375370651483536, -0.015577181242406368, 0.029033442959189415, -0.04330955445766449, -0.0014581328723579645, -0.003972270525991917, -0.06687138229608536, 0.03867560997605324, 0.03413078188896179, 0.05553603917360306, -0.08804494142532349, 0.06826156377792358, 0.048121728003025055, -0.007227170746773481, 0.022046880796551704, 0.02684123069047928, 0.04306003451347351, 0.03386343643069267, -0.011166023090481758, -0.025718390941619873, 0.012164103798568249, -0.016111867502331734, 0.030120637267827988, 0.0665862113237381, -0.05357552319765091, -0.01564847305417061, 0.004533690400421619, 0.0676199421286583, 0.027554145082831383, -0.03675074130296707, -0.005382504314184189, -0.015256370417773724, -0.022670680657029152, -0.027411561459302902, -0.0002932417846750468, 0.013197829015552998, -0.04213324561715126, 0.04580475762486458, -0.07150532305240631, 0.02987111732363701, -0.001503804000094533, 0.008069301024079323, 0.017608987167477608, 0.08084450662136078, 0.07428568601608276, 0.08490811288356781, -0.01072045136243105, 0.03279406577348709, 0.008448036387562752, -0.01661090739071369, -0.019284337759017944, 0.03147517517209053, -0.017813950777053833, -0.01203934382647276, 0.029835471883416176, -0.010845211334526539, 0.06583765149116516, 0.016815871000289917, -0.04309568181633949, -0.03366738557815552, -0.03436248004436493, -0.0008582822047173977, 0.004531462676823139, 0.019694263115525246, -0.04765833169221878, -0.03461199998855591, 0.06216614320874214, -0.022189462557435036, -0.009049558080732822, -0.01841101609170437, 0.012164103798568249, 0.0018034508684650064, -0.038782548159360886, 0.006442964542657137, -0.03505757078528404, -0.08284066617488861, -0.010827388614416122, 0.0016229944303631783, 0.017199061810970306, 0.05136548727750778, 0.05257744342088699, -0.01256511826068163, 0.0337030328810215, 0.0368933230638504, 0.00018115268903784454, -0.05186452716588974, 0.012983955442905426, -0.0013757022097706795, -0.029282962903380394, 0.07877705246210098, 0.026502596214413643, 0.06594458967447281, -0.020104188472032547, 0.02292020060122013, -0.027072926983237267, -0.028391819447278976, 0.020710166543722153, -0.005199820268899202, 0.07228952646255493, -0.007815324701368809, 0.05988481640815735, -0.04027966782450676, -0.003203659551218152, -0.04224018380045891, 0.059564005583524704, 0.05974223464727402, -0.00849259365350008, -0.017154505476355553, 0.029550304636359215, -0.0465889610350132, 0.004362145438790321, 0.007984641939401627, -0.025433223694562912, 0.022207286208868027, 0.08127225190401077, 0.025433223694562912, -0.03122565522789955, -0.020300239324569702, 0.0004706349573098123, -0.05468054115772247, 0.002472922205924988, -0.005832531489431858, -0.022456806153059006, 0.02436385303735733, -0.01342061534523964, -0.027874955907464027, -0.015853436663746834, -0.05314777418971062, -0.00124203076120466, 0.03119000792503357, -0.06241566315293312, -0.02710857428610325, -0.006282559130340815, 0.06152452155947685, 0.00549389747902751, -0.02935425378382206, 0.0002926848246715963, -0.0647326335310936, -0.02106662280857563, 0.017181240022182465, -0.0003007607883773744, 0.05753219872713089, 0.049583204090595245, 0.009392648003995419, 0.0008716493612155318, -0.0323663167655468, 0.026413481682538986, -0.04591169208288193, 0.0010972199961543083, 0.01962297037243843, 0.06876060366630554, 0.006723674945533276, -0.002108667278662324, -0.002130945911630988, -0.03632299229502678, 0.043630365282297134, 0.0010175739880651236, -0.0740005224943161, 0.00212314841337502, -0.02976417914032936, 0.054466668516397476, 0.0597778782248497, -0.005689948797225952, 0.04544829949736595, -0.035752661526203156, -0.008452492766082287, 0.0020072998013347387, -0.07100628316402435, -0.029318608343601227, -0.006977650336921215, -0.09467504173517227, -0.008448036387562752, 0.018206054344773293, 0.004780982621014118, 0.01578214392066002, -0.015452421270310879, 0.00566321425139904, 0.027981894090771675, 0.009856042452156544, 0.040636125952005386, -0.0663723424077034, 0.0021654777228832245, 0.022064702585339546, -0.032455433160066605, -0.015336573123931885, 0.01579105667769909, 0.017733747139573097, -0.005890456028282642, 0.04159856215119362, -0.027037281543016434, 0.0577104277908802, -0.037606239318847656, -0.03596653416752815, -0.04598298296332359, 0.007329652085900307, -0.025967910885810852, 0.0686536654829979, -0.0001466208923375234, -0.05222098529338837, -0.007659375201910734, -0.06188097596168518, 0.0156662967056036, 0.020745811983942986, 0.0014046643627807498, -0.0027759107761085033, -0.012226483784615993, -0.0009156495216302574, -0.00601967191323638, 0.020050719380378723, -0.0008955988450907171, 0.06715654581785202, 0.04911980777978897, -0.016691111028194427, 0.017867419868707657, 0.044842321425676346, -0.03190292418003082, 0.022296400740742683, 0.03696461766958237, 0.018482308834791183, -0.007574716582894325, -0.0033952551893889904, 0.006518711801618338, -0.012181926518678665, 0.016040576621890068, -0.011549214832484722, -0.01567520759999752, 0.044200699776411057, 0.0022946936078369617, 0.04911980777978897, -0.017867419868707657, -0.03487934172153473, 0.029407722875475883, -0.04897722601890564, -0.01317109540104866, -0.01415135245770216, -0.026270898059010506, -0.021387435495853424, 0.04380859434604645, -0.013705780729651451, -0.02054975926876068, 0.012146280147135258, -0.0321524441242218, -0.014579101465642452, -0.036394283175468445, 0.005801341496407986, 0.003981181886047125, 0.07749380171298981, 0.05478747934103012, 0.04281051456928253, -0.026377836242318153, -0.04847818613052368, 0.022474629804491997, 0.022421160712838173, -0.021387435495853424, 0.008069301024079323, -0.08070191740989685, -0.01643267832696438, 0.014908824115991592, -0.013126538135111332, 0.012155191972851753, 0.0010025360388681293, -0.008198516443371773, 0.05343294143676758, 0.04872770607471466, 0.044949259608983994, 0.006010760087519884, -0.008185149170458317, -0.019569503143429756, -0.019159577786922455, 0.0313325934112072, 0.03411295637488365, 0.07884833961725235, -0.015996018424630165, 0.020122012123465538, 0.012164103798568249, 0.06305728852748871, 0.02067451924085617, 0.06238001585006714, 0.09396213293075562, 0.03502192348241806, -0.017600076273083687, 0.08077321201562881, 0.016530703753232956, 0.0173683799803257, -0.06241566315293312, 0.006830611731857061, -0.02739373967051506, -0.012493826448917389, -0.006652383133769035, -0.022153817117214203, 0.09282146394252777, 0.004803261253982782, -0.07428568601608276, 0.05795994773507118, -0.0437016598880291, 0.029158202931284904, -0.0008321048808284104, 0.0059973932802677155, -0.02750067599117756, -0.0005132427322678268, -0.03685767948627472, -0.030245397239923477, 0.016085132956504822, 0.007218259386718273, -0.014195909723639488, 0.0038475103210657835, -0.0455552339553833, 0.005801341496407986, 0.04170549660921097, -0.010863034054636955, -0.06523167341947556, 0.01999725215137005, -0.007258360739797354, 0.04633944109082222, 0.01908828504383564, 0.010444196872413158, -0.06177404150366783, -0.0484425388276577, -0.01605839841067791, -0.03222373500466347, 0.03486151993274689, -0.007409854792058468, 0.037178490310907364, -0.02684123069047928, 0.009428294375538826, 0.014231555163860321, 0.009766928851604462, -0.0337030328810215, 0.03017410635948181, -0.009891688823699951, -0.02081710286438465, 0.06569506973028183, 0.03274059668183327, 0.007481146603822708, -0.003101177979260683, 0.0428818054497242, 0.029960231855511665, 0.034701112657785416, -0.004297537729144096, 0.021547840908169746, -0.02698381245136261, -0.020852748304605484, -0.021494371816515923, -0.09496021270751953, 0.0004224575241096318, 0.06580200791358948, 0.011994786560535431, -0.004306449089199305, -0.013073069043457508, -0.0042128791101276875, 0.050866447389125824, 0.0007602564874105155, 0.02753632143139839, -0.003114545252174139, 0.026538241654634476, 0.1399451196193695, -0.03380997106432915, 0.020300239324569702, 0.0029986966401338577, 0.02053193747997284, -0.017805039882659912, -0.038639966398477554, -0.012939398176968098, 0.036679450422525406, -0.0042128791101276875, -0.03632299229502678, 0.02857004851102829, 0.02304496057331562, -0.03274059668183327, -0.02436385303735733, -0.018660536035895348, -0.02857004851102829, -0.09588699787855148, 0.021761715412139893, -0.012966131791472435, 0.01855359971523285, -0.03461199998855591, 0.027197686955332756, 0.006598914507776499, 0.057746075093746185, 0.04434328153729439, -0.007222714833915234, -0.016566351056098938, -0.050759512931108475, 0.04594733938574791, -0.0012019292917102575, 0.02657388709485531, 0.021939942613244057, -0.04858512058854103, -0.003281634533777833, 0.045091841369867325, -0.032330673187971115, -0.03591306880116463, -0.02290237881243229, -0.017038656398653984, 0.0173683799803257, 0.019302159547805786, 0.005672126077115536, -0.0445215106010437, 0.01683369278907776, -0.02737591601908207, 0.03229502588510513, -0.06765558570623398, -0.005765696056187153, -0.024845069274306297, -0.046303797513246536, -0.02447078935801983, -0.052969545125961304, -0.014766241423785686, 0.02292020060122013, 0.03261583670973778, 0.04227582737803459, 0.0035757117439061403, -0.016539616510272026, -0.0686536654829979, -0.016619818285107613, 0.003544521750882268, 0.022438984364271164, 0.01362557802349329, -0.0024194535799324512, -0.027233334258198738, -0.008211883716285229, 0.02881956845521927, -0.0043777404353022575, 0.016548527404665947, -0.05396762490272522, -0.03899642080068588, -0.007231626193970442, 0.03316834568977356, -0.010203588753938675, -0.004567108582705259, 0.05329035967588425, 0.0016642097616568208, -0.05190017446875572, -0.010640248656272888, 0.017181240022182465, 0.020478468388319016, 0.027732374146580696, 0.02776801958680153, -0.008452492766082287, 0.02634219080209732, -0.0004358246806077659, 0.06416230648756027, 0.02750067599117756, -0.028997797518968582, 0.032205913215875626, 0.005917190108448267, 0.027037281543016434, 0.016744578257203102, -0.0018803119892254472, -0.03013845905661583, 0.004382196348160505, 0.047729626297950745, -0.01722579635679722, -0.027482854202389717, 0.009856042452156544, -0.03120783157646656, -0.04808608070015907, 0.05229227617383003, 0.019302159547805786, -0.010845211334526539, -0.00246623856946826, 0.017680279910564423, -0.010604603216052055, -0.018482308834791183, -0.027732374146580696, -0.004513639956712723 ]
20,301
start_sdk.cf_r2
restore_temp_yaml
Based on the `yaml_suffix`, download the same into a temp file and return its contents based on the extension. A `yaml` extension should result in contents in `dict` format; The temp file is deleted after every successful extraction of the `src` as content.
def restore_temp_yaml(self, yaml_suffix: str) -> dict[str, Any] | None: """Based on the `yaml_suffix`, download the same into a temp file and return its contents based on the extension. A `yaml` extension should result in contents in `dict` format; The temp file is deleted after every successful extraction of the `src` as content.""" if not yaml_suffix.endswith(".yaml"): logger.error(f"Not {yaml_suffix=}") return None path = self.temp_folder / "temp.yaml" try: self.download(loc=yaml_suffix, local_file=str(path)) except Exception as e: logger.error(f"Could not download yaml; {e=}") return None content = yaml.safe_load(path.read_bytes()) path.unlink(missing_ok=True) return content
(self, yaml_suffix: str) -> dict[str, typing.Any] | None
[ 0.000558194937184453, -0.031715136021375656, -0.019974783062934875, -0.061236824840307236, -0.02405603975057602, 0.029108166694641113, -0.006625299341976643, 0.07716631144285202, 0.05368560180068016, -0.03665938973426819, 0.007052302826195955, 0.006202790420502424, -0.0681767538189888, -0.0013450615806505084, 0.01783527061343193, 0.05260685458779335, 0.008005195297300816, 0.04235876724123955, -0.029341895133256912, 0.02342677116394043, 0.013106766156852245, -0.008737843483686447, -0.00047110868035815656, 0.007182651665061712, 0.000011315948540868703, 0.00033233247813768685, -0.011227949522435665, -0.054692428559064865, 0.019129764288663864, 0.01459004171192646, 0.01995680294930935, -0.029198061674833298, 0.03789994865655899, 0.06591138988733292, -0.023498687893152237, 0.02177269384264946, -0.0004994819173589349, 0.04343751072883606, -0.07731013745069504, -0.06364602595567703, -0.0035800887271761894, -0.05282260477542877, 0.0404529795050621, 0.0063376338221132755, 0.04548712819814682, 0.010185161605477333, -0.021520985290408134, -0.04120810329914093, 0.014859728515148163, -0.050125736743211746, 0.05900741368532181, 0.011560562998056412, -0.0019057848257943988, 0.04512754827737808, -0.01271122507750988, 0.00008315334707731381, -0.043113887310028076, 0.07119724899530411, 0.016262099146842957, 0.06835655122995377, -0.016289066523313522, -0.03112182579934597, -0.02348070777952671, 0.022366004064679146, -0.015695756301283836, -0.015021540224552155, -0.03072628565132618, -0.052858561277389526, -0.025943845510482788, -0.01231568492949009, -0.02763388119637966, -0.015138404443860054, 0.0030834160279482603, 0.01733185537159443, 0.04189131036400795, -0.06720588356256485, -0.014275407418608665, -0.06066149100661278, -0.05185173079371452, -0.018158894032239914, -0.06627096980810165, -0.0492267832159996, -0.022276107221841812, 0.046601831912994385, -0.016208160668611526, -0.021107466891407967, 0.10449454188346863, 0.002863171976059675, 0.027220360934734344, 0.03836740553379059, 0.01574070379137993, 0.011407740414142609, -0.03112182579934597, -0.02621353231370449, 0.0231391042470932, -0.034501899033784866, -0.029791373759508133, 0.04365326091647148, 0.014608020894229412, -0.07752589136362076, -0.02736419439315796, -0.000010789217412821017, -0.031715136021375656, 0.09169342368841171, 0.023103145882487297, 0.007978226989507675, 0.018203841522336006, -0.017286907881498337, -0.031948864459991455, -0.041459809988737106, -0.02660907246172428, -0.013745023868978024, -0.027687817811965942, 0.039014652371406555, 0.034106358885765076, -0.07087362557649612, -0.008823244832456112, -0.01806899718940258, -0.027975482866168022, -0.050413403660058975, -0.015560912899672985, 0.021017570048570633, -0.02610565721988678, 0.027274299412965775, -0.005672406870871782, -0.00397562887519598, 0.06954316794872284, -0.0062072849832475185, -0.006877006497234106, 0.03288377821445465, -0.004288015887141228, 0.026573114097118378, -0.002148502739146352, 0.031157784163951874, 0.001118637272156775, -0.045235421508550644, 0.08220046013593674, 0.04861549288034439, -0.02017255313694477, -0.02605171874165535, -0.009528924711048603, 0.021862588822841644, -0.018842099234461784, -0.005973557010293007, -0.0022586246486753225, -0.0740019828081131, -0.004258799832314253, 0.0031935381703078747, -0.003647510427981615, 0.01259436085820198, 0.018140913918614388, -0.034465938806533813, -0.07101745158433914, -0.003402545116841793, 0.005856692790985107, 0.000011456410902610514, -0.010841398499906063, 0.04811207950115204, -0.03088809736073017, -0.023049209266901016, -0.01715206354856491, 0.03185896947979927, 0.014239449054002762, -0.055950965732336044, 0.01943540945649147, -0.0012843821896240115, 0.032344404608011246, -0.022132275626063347, 0.06037382781505585, 0.006760142743587494, -0.07116128504276276, 0.051887691020965576, -0.022042378783226013, -0.01800607144832611, 0.009155858308076859, -0.008481641300022602, 0.055591385811567307, -0.019129764288663864, 0.024865098297595978, 0.03495137393474579, -0.030061058700084686, -0.02912614680826664, -0.028928376734256744, 0.014518124982714653, 0.012774152681231499, 0.002854182617738843, -0.015309206210076809, 0.06663055717945099, -0.0018900531576946378, -0.032686010003089905, -0.025943845510482788, 0.02450551651418209, -0.054692428559064865, -0.01566878706216812, -0.02308516763150692, -0.057605043053627014, -0.03887081891298294, -0.022941334173083305, 0.06105703115463257, -0.04142385348677635, -0.03595820441842079, -0.022941334173083305, 0.04002148285508156, 0.004418364260345697, 0.008414220064878464, -0.032865799963474274, -0.006099410355091095, -0.007960247807204723, -0.07738205790519714, 0.04850761964917183, -0.005380246322602034, -0.006288191303610802, -0.028658689931035042, -0.09536115825176239, 0.03417827561497688, -0.022761544212698936, -0.040488939732313156, 0.03148140758275986, -0.04113618656992912, -0.00446106493473053, 0.016621680930256844, -0.0125404242426157, -0.027723776176571846, 0.023300915956497192, 0.002303572604432702, 0.002049617702141404, -0.002156368689611554, -0.01382592972368002, -0.038439322263002396, -0.046422041952610016, 0.02064001001417637, -0.04297005385160446, 0.06544393301010132, -0.04501967132091522, 0.08342303335666656, 0.05807249993085861, 0.022923355922102928, -0.03689311817288399, 0.06706205010414124, 0.04365326091647148, 0.017008230090141296, -0.0038003327790647745, 0.028802521526813507, 0.020675968378782272, -0.02274356409907341, 0.02855081483721733, 0.009331154637038708, -0.01456307340413332, 0.011551572941243649, -0.013331504538655281, 0.07939571887254715, 0.02085575833916664, 0.011371782049536705, 0.08227237313985825, 0.04217897355556488, -0.023103145882487297, 0.03340517356991768, -0.07464923709630966, 0.050017863512039185, -0.022617710754275322, -0.0005458343075588346, -0.04199918359518051, -0.0025125795509666204, 0.009969412349164486, -0.036731306463479996, -0.0350952073931694, -0.06184811145067215, -0.007321989629417658, -0.015174362808465958, -0.02820921130478382, 0.03459179401397705, 0.015695756301283836, -0.013115755282342434, -0.026519175618886948, 0.02069394662976265, 0.008620979264378548, 0.026950674131512642, -0.042322807013988495, 0.08399836719036102, 0.0068590277805924416, -0.02126927860081196, -0.0350952073931694, 0.06893187761306763, -0.01088634692132473, 0.05591500923037529, -0.03078022412955761, -0.07917996495962143, -0.046026501804590225, 0.05929508060216904, -0.04196322709321976, -0.0010978489881381392, -0.023175062611699104, -0.018572412431240082, -0.034969355911016464, -0.007582686375826597, 0.004121709149330854, -0.10586095601320267, -0.051887691020965576, 0.08061829209327698, 0.05764100328087807, 0.007699550595134497, -0.019525304436683655, 0.0024788687005639076, 0.07716631144285202, 0.0146170100197196, 0.03025882877409458, -0.0072275991551578045, -0.04692545905709267, -0.010742513462901115, -0.0058162398636341095, 0.03825952857732773, -0.09593649208545685, 0.061236824840307236, 0.05084490031003952, -0.02883847989141941, -0.01151561550796032, -0.003627283964306116, -0.00024384158314205706, 0.032236531376838684, -0.009457007981836796, -0.04257451370358467, 0.010463837534189224, -0.039877649396657944, 0.014688926748931408, 0.08745035529136658, -0.04599054530262947, -0.03743249177932739, 0.015821609646081924, 0.08910442888736725, 0.02258175238966942, -0.035886287689208984, -0.027508025988936424, -0.029054230079054832, 0.026950674131512642, -0.009645788930356503, -0.009286206215620041, -0.02547638863325119, -0.010904326103627682, 0.038043782114982605, -0.050233613699674606, 0.02660907246172428, -0.011695406399667263, 0.01410460565239191, -0.02074788510799408, 0.09241258352994919, 0.05857591703534126, 0.026932695880532265, -0.0350952073931694, 0.029323916882276535, -0.029791373759508133, -0.0018889295170083642, 0.031948864459991455, 0.04117214307188988, 0.00023091910406947136, -0.006575856823474169, 0.0021305235568434, 0.007582686375826597, 0.02781367115676403, 0.007681571412831545, -0.05336197465658188, -0.02445157989859581, -0.038439322263002396, -0.030366703867912292, 0.00266540190204978, 0.06177619472146034, -0.002690123161301017, -0.04063277319073677, -0.022204192355275154, -0.009012024849653244, -0.029503706842660904, -0.017808301374316216, 0.03619193285703659, -0.00520045543089509, -0.03789994865655899, -0.013367462903261185, -0.0385112389922142, -0.07393006980419159, 0.009205300360918045, 0.02479318156838417, 0.041351936757564545, 0.08845718204975128, 0.02605171874165535, -0.00723658874630928, 0.029791373759508133, 0.04217897355556488, -0.04735695570707321, -0.05113256722688675, -0.005892650689929724, 0.005735333543270826, 0.0027328236028552055, 0.05749716982245445, 0.02684280090034008, 0.05717354640364647, 0.00129674281924963, 0.030995972454547882, -0.03613799437880516, -0.0788923054933548, 0.01356523297727108, 0.006791606079787016, 0.04839974269270897, 0.007038818672299385, 0.0565262995660305, -0.0016596958739683032, -0.017583562061190605, -0.009987391531467438, -0.0005775786703452468, 0.03133757412433624, -0.004881326109170914, 0.002393468050286174, 0.06612713634967804, 0.00024243695952463895, -0.022761544212698936, -0.011884186416864395, -0.0343221053481102, 0.04811207950115204, 0.046422041952610016, 0.04530733823776245, 0.029611581936478615, -0.009358122944831848, -0.0061128949746489525, 0.008140038698911667, -0.002615959383547306, -0.0033148969523608685, -0.05774887651205063, -0.00042728459811769426, 0.00009769113967195153, -0.0319129079580307, -0.01864432916045189, -0.10248088091611862, -0.0015214815502986312, 0.013996731489896774, -0.0521034374833107, 0.02833506464958191, -0.01076948270201683, 0.0817689597606659, 0.010931294411420822, -0.015156383626163006, -0.011641468852758408, -0.02571011707186699, 0.02080182172358036, 0.014230459928512573, 0.032398343086242676, 0.050701070576906204, 0.01619018241763115, 0.002332788659259677, 0.019309556111693382, -0.049622323364019394, 0.030618412420153618, 0.04872336611151695, 0.023750394582748413, -0.010670597665011883, 0.02757994271814823, 0.04005743935704231, -0.003971134312450886, 0.010230109095573425, -0.03135555610060692, 0.012944953516125679, -0.02098161354660988, -0.07342665642499924, -0.023498687893152237, 0.0030519526917487383, -0.04081256315112114, 0.05692183971405029, 0.006036483682692051, 0.044660091400146484, -0.03318942338228226, -0.002391220536082983, 0.018311716616153717, -0.041639599949121475, -0.03416029363870621, 0.014661958441138268, -0.06206386163830757, -0.003096900414675474, 0.00259348563849926, -0.0032969180028885603, 0.006894985679537058, 0.041531726717948914, 0.022761544212698936, 0.05055723711848259, 0.016289066523313522, 0.04012935608625412, -0.03994956612586975, -0.03543681278824806, 0.04764462262392044, -0.03905060887336731, -0.0027283288072794676, 0.019183702766895294, -0.00007774557161610574, -0.022617710754275322, 0.05203152447938919, -0.031031930819153786, 0.01699025183916092, -0.029773393645882607, -0.021610882133245468, -0.03416029363870621, -0.05185173079371452, 0.005753312725573778, 0.08558052778244019, 0.03647959977388382, -0.05735333636403084, -0.014895686879754066, -0.055771175771951675, 0.01732286438345909, 0.008850213140249252, -0.034573815762996674, -0.008967077359557152, -0.0370369516313076, -0.0073085050098598, -0.00800968986004591, 0.025566283613443375, 0.00037531377165578306, 0.06217173486948013, 0.03363890200853348, -0.03761228173971176, 0.034969355911016464, 0.07026233524084091, 0.006557877641171217, 0.04512754827737808, 0.05379347503185272, 0.015264257788658142, 0.00489031570032239, -0.019453389570116997, 0.033890608698129654, 0.031193742528557777, -0.006980386562645435, -0.011587531305849552, 0.006387076340615749, 0.026986632496118546, -0.006557877641171217, 0.026411302387714386, 0.00779394106939435, -0.043006014078855515, 0.030744265764951706, -0.057605043053627014, -0.017808301374316216, -0.04365326091647148, -0.024811161682009697, -0.04372517764568329, -0.012108925729990005, -0.03140949085354805, -0.005649933125823736, 0.023264959454536438, -0.025566283613443375, 0.03538287431001663, -0.050701070576906204, 0.038906779140233994, -0.0246133916079998, 0.07087362557649612, 0.01567777805030346, 0.04678162559866905, -0.007933278568089008, -0.03523904085159302, 0.03378273546695709, -0.014841749332845211, -0.08881676942110062, -0.023013250902295113, -0.0379718653857708, -0.005416204687207937, 0.012342654168605804, -0.009474987164139748, 0.02799346297979355, 0.027148444205522537, -0.010499795898795128, 0.019507326185703278, 0.029791373759508133, 0.020244469866156578, 0.0020765862427651882, 0.010751503519713879, -0.023282937705516815, 0.03162524104118347, 0.027490047737956047, -0.0037261690013110638, 0.07874847203493118, -0.02114342525601387, 0.05807249993085861, 0.034735627472400665, 0.05095277726650238, 0.004218346904963255, 0.03272196650505066, 0.07853271812200546, 0.04041702300310135, -0.0020484940614551306, 0.0984535664319992, 0.001163023174740374, 0.0055600376799702644, -0.016675617545843124, 0.003757632337510586, -0.0010219996329396963, 0.0032519702799618244, -0.003908207640051842, -0.047392915934324265, 0.13858291506767273, -0.0147338742390275, -0.06425730884075165, 0.0289643332362175, -0.0482199527323246, 0.03140949085354805, 0.017745373770594597, 0.023121125996112823, -0.013232619501650333, 0.015111436136066914, -0.004872336983680725, -0.014796801842749119, -0.020100636407732964, -0.022995272651314735, -0.024307746440172195, 0.02731025591492653, -0.054512638598680496, 0.026483217254281044, 0.021467048674821854, -0.019075827673077583, -0.06814079731702805, 0.031247681006789207, -0.028712626546621323, 0.04696141555905342, 0.005492615979164839, 0.02098161354660988, -0.039014652371406555, -0.07116128504276276, -0.039697859436273575, -0.020316386595368385, 0.036965034902095795, 0.003652005223557353, 0.0321466363966465, -0.00817599706351757, -0.00004048809569212608, 0.013915825635194778, 0.01676551252603531, -0.05544755235314369, 0.017134085297584534, -0.012126904912292957, -0.009852548129856586, 0.07946763187646866, 0.002366499276831746, -0.0030879108235239983, 0.009609830565750599, 0.06177619472146034, 0.03185896947979927, 0.009358122944831848, -0.0027215867303311825, 0.03372879698872566, -0.03148140758275986, -0.012333664111793041, 0.03344113007187843, -0.05368560180068016, 0.008647948503494263, 0.06756547093391418, 0.025800012052059174, -0.01393380481749773, -0.018680287525057793, 0.061021074652671814, 0.02553032524883747, -0.032757923007011414, 0.020028719678521156, -0.032344404608011246, 0.009241258725523949, 0.09083042293787003, 0.0076546031050384045, 0.03772015869617462, -0.012010040692985058, 0.0015619344776496291, -0.029341895133256912, -0.08953592926263809, 0.00880526565015316, 0.041747476905584335, -0.02319304272532463, -0.03915848582983017, 0.019705096259713173, 0.023552624508738518, -0.024919036775827408, -0.022707605734467506, -0.037540365010499954, -0.046997375786304474, -0.04635012522339821, 0.012495475821197033, -0.08033063262701035, -0.01536314282566309, -0.030276808887720108, -0.002375488867983222, 0.0006989376270212233, 0.03568851947784424, 0.03381869196891785, -0.011560562998056412, 0.008333314210176468, -0.08795376867055893, 0.046745665371418, 0.038726985454559326, 0.0035598622635006905, 0.017484677955508232, -0.01385289803147316, 0.022941334173083305, 0.05620267614722252, -0.02655513398349285, -0.011614500544965267, -0.041639599949121475, -0.02526063844561577, 0.01800607144832611, 0.016109276562929153, -0.0025238164234906435, -0.03721674159169197, 0.011920144781470299, -0.03815165534615517, 0.01675652340054512, -0.015911506488919258, -0.015012550167739391, -0.02331889607012272, -0.04422859102487564, 0.01422146987169981, -0.035994164645671844, 0.005510594695806503, 0.007843383587896824, 0.026303427293896675, 0.04063277319073677, -0.024487538263201714, -0.02524266019463539, -0.039410192519426346, -0.05882762372493744, -0.01652279496192932, -0.004656587727367878, 0.021341195330023766, -0.05124044045805931, -0.008306344971060753, -0.028299108147621155, -0.003476708894595504, 0.014167532324790955, 0.015165372751653194, -0.018608370795845985, -0.0012113420525565743, -0.006458992604166269, 0.0379718653857708, 0.013556242920458317, 0.0043779113329946995, 0.03700099140405655, 0.006791606079787016, -0.0648326426744461, -0.01572272554039955, -0.012270737439393997, 0.021161403506994247, 0.05900741368532181, 0.005573521833866835, 0.03140949085354805, 0.042143017053604126, 0.0181319247931242, 0.07486498355865479, 0.045630961656570435, -0.040956396609544754, 0.023300915956497192, 0.0048049152828752995, 0.002323799068108201, -0.0017012725584208965, -0.03514914587140083, 0.006063452456146479, 0.015974432229995728, 0.05649033933877945, -0.06465285271406174, -0.027957504615187645, 0.04886719956994057, -0.04624225199222565, -0.027777712792158127, 0.006701710633933544, -0.0041127195581793785, -0.02542245015501976, -0.015560912899672985, 0.010409899987280369, 0.021053528413176537, 0.005267877131700516, -0.015354153700172901, 0.0073085050098598 ]
20,306
connectorx
ConnectionUrl
null
class ConnectionUrl(Generic[_BackendT], str): @overload def __new__( cls, *, backend: Literal["sqlite"], db_path: str | Path, ) -> ConnectionUrl[Literal["sqlite"]]: """ Help to build sqlite connection string url. Parameters ========== backend: must specify "sqlite". db_path: the path to the sqlite database file. """ @overload def __new__( cls, *, backend: Literal["bigquery"], db_path: str | Path, ) -> ConnectionUrl[Literal["bigquery"]]: """ Help to build BigQuery connection string url. Parameters ========== backend: must specify "bigquery". db_path: the path to the bigquery database file. """ @overload def __new__( cls, *, backend: _ServerBackendT, username: str, password: str = "", server: str, port: int, database: str = "", database_options: dict[str, str] | None = None, ) -> ConnectionUrl[_ServerBackendT]: """ Help to build server-side backend database connection string url. Parameters ========== backend: the database backend. username: the database username. password: the database password. server: the database server name. port: the database server port. database: the database name. database_options: the database options for connection. """ @overload def __new__( cls, raw_connection: str, ) -> ConnectionUrl: """ Build connection from raw connection string url Parameters ========== raw_connection: raw connection string """ def __new__( cls, raw_connection: str | None = None, *, backend: str = "", username: str = "", password: str = "", server: str = "", port: int | None = None, database: str = "", database_options: dict[str, str] | None = None, db_path: str | Path = "", ) -> ConnectionUrl: if raw_connection is not None: return super().__new__(cls, raw_connection) assert backend if backend == "sqlite": db_path = urllib.parse.quote(str(db_path)) connection = f"{backend}://{db_path}" else: connection = f"{backend}://{username}:{password}@{server}:{port}/{database}" if database_options: connection += "?" + urllib.parse.urlencode(database_options) return super().__new__(cls, connection)
(raw_connection: 'str | None' = None, *, backend: 'str' = '', username: 'str' = '', password: 'str' = '', server: 'str' = '', port: 'int | None' = None, database: 'str' = '', database_options: 'dict[str, str] | None' = None, db_path: 'str | Path' = '') -> 'ConnectionUrl'
[ -0.019207170233130455, -0.09912899881601334, -0.033191174268722534, 0.0034010768868029118, -0.030153591185808182, -0.011131638661026955, -0.03893295302987099, 0.02187431789934635, 0.02111492119729519, -0.08831223845481873, 0.011881774291396141, 0.06375224888324738, -0.03154272958636284, 0.06101101264357567, -0.006177040748298168, -0.012039209716022015, -0.005630645900964737, 0.03702520206570625, 0.03074629046022892, -0.03719189763069153, 0.009372062049806118, 0.0733465701341629, 0.016197368502616882, 0.021615011617541313, 0.05119442567229271, 0.0962395891547203, 0.00025091334828175604, -0.02192988432943821, 0.04071105271577835, -0.00022472227283287793, 0.007404114119708538, 0.03191316872835159, 0.011326118372380733, 0.0746430978178978, 0.06482651829719543, -0.011076073162257671, 0.013539480976760387, 0.05956630781292915, -0.06490059942007065, -0.04056287556886673, -0.0558619350194931, -0.053194787353277206, 0.023522764444351196, -0.04945337027311325, 0.05152781680226326, 0.010983463376760483, -0.023911723867058754, -0.023263458162546158, -0.06086283549666405, -0.017419811338186264, 0.050490595400333405, 0.04434133693575859, -0.011613206937909126, 0.04541560262441635, -0.031579773873090744, 0.03867364674806595, -0.016151063144207, 0.09238704293966293, -0.04426724836230278, 0.07342065870761871, -0.04130375012755394, -0.010575982742011547, -0.00248887506313622, 0.03026472218334675, -0.025615734979510307, 0.0019447954837232828, -0.07490240782499313, -0.0437486357986927, 0.00600571371614933, 0.00007177221414167434, 0.049490414559841156, 0.014011788181960583, -0.033746831119060516, -0.033672742545604706, 0.00213464442640543, -0.010983463376760483, -0.022281799465417862, 0.019021952524781227, -0.00917758233845234, -0.024263639003038406, 0.004593421705067158, -0.07638415694236755, -0.012131819501519203, -0.07393927127122879, 0.05808455869555473, -0.053454093635082245, -0.02765313908457756, -0.0008878917433321476, -0.014974924735724926, -0.012622648850083351, -0.0332837849855423, -0.0700126364827156, 0.0009064135956577957, 0.03402465954422951, 0.006450238171964884, -0.08060713857412338, -0.026393651962280273, -0.02402285486459732, -0.0040099830366671085, -0.018642254173755646, 0.0011888720327988267, -0.04419315978884697, -0.0672714039683342, -0.013585785403847694, -0.020948225632309914, -0.027134526520967484, 0.01904047280550003, -0.015104577876627445, -0.05034241825342178, -0.05723255127668381, -0.053935661911964417, -0.0009961288888007402, 0.018744124099612236, -0.0030375851783901453, -0.005403752904385328, 0.03619171679019928, -0.007617115508764982, -0.03350604698061943, 0.03774755448102951, -0.026930786669254303, -0.05456540361046791, 0.05234277993440628, -0.027764270082116127, 0.011853991076350212, 0.09186843037605286, 0.04445246607065201, 0.02885705977678299, -0.04863840714097023, -0.03997017815709114, -0.039044082164764404, 0.05712142214179039, 0.06297432631254196, -0.009242408908903599, 0.038303207606077194, 0.025782430544495583, 0.04041470214724541, -0.03800686076283455, 0.04804570972919464, -0.02346719801425934, 0.084756039083004, -0.030987074598670006, -0.006056648679077625, -0.01553984172642231, 0.0035700888838618994, 0.005000902805477381, -0.009038668125867844, 0.007117025088518858, -0.0874231830239296, -0.022911543026566505, 0.011289074085652828, 0.02172614261507988, -0.027078961953520775, -0.018382947891950607, 0.0309500303119421, -0.04878658428788185, -0.0208556167781353, -0.013011607341468334, -0.009946239180862904, 0.002877834253013134, 0.004375789780169725, -0.006278911139816046, -0.03450622782111168, -0.0062696500681340694, -0.023911723867058754, -0.03915521502494812, 0.021281618624925613, 0.014095136895775795, -0.08379290252923965, -0.01483601052314043, 0.002963497769087553, -0.010279633104801178, 0.030838899314403534, -0.000177838810486719, 0.04541560262441635, 0.016039932146668434, 0.025449037551879883, 0.036765895783901215, 0.016502978280186653, 0.00926556158810854, -0.05252799764275551, 0.04256323724985123, -0.030153591185808182, -0.010251849889755249, 0.016123279929161072, 0.05356522276997566, 0.04330411180853844, -0.00600571371614933, 0.039266347885131836, 0.06578965485095978, 0.034358054399490356, -0.029246019199490547, -0.008733057416975498, 0.015678755939006805, -0.025486081838607788, 0.01753094233572483, -0.07323543727397919, 0.03841434046626091, 0.014289615675807, 0.0026602023281157017, 0.09520236402750015, -0.026930786669254303, 0.02826436050236225, 0.013567263260483742, -0.04630465433001518, 0.029486803337931633, -0.037358593195676804, 0.0019262735731899738, -0.03302447870373726, -0.043563418090343475, -0.010640809312462807, -0.046860311180353165, -0.035413797944784164, -0.036636240780353546, 0.029449759051203728, -0.009436888620257378, -0.022429974749684334, -0.01469709724187851, 0.03237621486186981, -0.008719165809452534, 0.011455771513283253, 0.12076253443956375, -0.003718263702467084, 0.02576390840113163, -0.011696555651724339, 0.04400794208049774, -0.02315232716500759, 0.04982380568981171, 0.015021229162812233, -0.01709567755460739, -0.013067172840237617, -0.06075170636177063, -0.00015801463450770825, 0.06901245564222336, 0.0262454766780138, 0.05004606768488884, -0.03683998063206673, 0.0175031591206789, -0.007033676840364933, 0.04022948443889618, 0.011001985520124435, 0.020633352920413017, 0.017141982913017273, -0.027208615094423294, 0.008895124308764935, -0.044637687504291534, -0.04130375012755394, -0.03130194544792175, 0.009899934753775597, 0.013011607341468334, -0.004454507492482662, -0.04352637380361557, -0.017706898972392082, -0.017466114833950996, -0.022855976596474648, -0.002171688247472048, 0.0009637156035751104, -0.04004426300525665, -0.047527097165584564, -0.004713813774287701, -0.058232732117176056, -0.01308569498360157, -0.002391635440289974, -0.05523218959569931, 0.04485994949936867, -0.011696555651724339, -0.03856251388788223, -0.0005368445999920368, -0.025986172258853912, 0.010946420021355152, 0.015595407225191593, 0.06438198685646057, 0.07860677689313889, -0.028708884492516518, 0.042489148676395416, -0.038303207606077194, -0.05275025963783264, -0.017882857471704483, 0.009594324044883251, -0.02685669995844364, -0.07786590605974197, -0.05871430039405823, -0.04219280183315277, 0.031987253576517105, -0.06827158480882645, 0.03863660246133804, -0.013326479122042656, -0.05538036674261093, -0.042155757546424866, 0.022522583603858948, 0.010344459675252438, -0.0011610891669988632, -0.01046485174447298, -0.013437610119581223, 0.03698815777897835, -0.014419268816709518, 0.012548561207950115, -0.04004426300525665, 0.002123068319633603, 0.04297071695327759, -0.08757136017084122, -0.026319565251469612, -0.020262915641069412, 0.021022312343120575, 0.07219821214675903, 0.00532966572791338, -0.04478586092591286, 0.013715438544750214, -0.03606206551194191, 0.024448856711387634, 0.014456313103437424, -0.0019853119738399982, -0.010325937531888485, -0.015095316804945469, 0.021837275475263596, 0.042896632105112076, 0.05078694224357605, -0.044304292649030685, -0.04178531840443611, 0.0014632270904257894, 0.022837454453110695, -0.04919406399130821, 0.028282882645726204, 0.0007756029372103512, 0.002177476417273283, -0.006552108563482761, -0.03282073885202408, -0.0069734808057546616, -0.0033987616188824177, -0.02643069624900818, 0.037710510194301605, 0.025819474831223488, 0.07004968076944351, 0.03082037717103958, 0.004192886408418417, -0.016438152641057968, -0.019262736663222313, 0.014317398890852928, -0.004405887797474861, 0.008015335537493229, -0.03963678330183029, 0.05834386497735977, -0.017725421115756035, 0.0037483617197722197, -0.00771898590028286, 0.029208974912762642, -0.06101101264357567, 0.01722533069550991, -0.024115463718771935, 0.04130375012755394, 0.02737531065940857, -0.023059718310832977, -0.028894104063510895, -0.0027852249331772327, 0.013604307547211647, 0.05052763968706131, -0.034487705677747726, -0.05119442567229271, 0.010603765957057476, -0.011965122073888779, -0.023319022729992867, 0.05000902712345123, -0.031042639166116714, 0.015854712575674057, 0.02852366678416729, 0.008547838777303696, 0.029079321771860123, 0.05308365449309349, 0.004148896783590317, -0.033802397549152374, 0.02111492119729519, -0.0005704154609702528, -0.0740504041314125, 0.04330411180853844, -0.032450299710035324, 0.0015662548830732703, -0.053120698779821396, -0.03606206551194191, -0.012604126706719398, -0.06830862164497375, 0.016530761495232582, 0.04704552888870239, -0.008135727606713772, 0.06386338174343109, 0.04119262099266052, 0.014326659962534904, -0.013289435766637325, 0.038451384752988815, 0.025041555985808372, 0.03283926099538803, 0.04008130729198456, -0.023652417585253716, -0.038303207606077194, -0.007195743266493082, 0.016984546557068825, -0.008589513599872589, -0.021837275475263596, -0.025041555985808372, 0.028023576363921165, 0.0119466008618474, 0.035617537796497345, -0.022429974749684334, -0.05104624852538109, 0.06230754032731056, 0.0477493591606617, -0.026560349389910698, 0.010372241958975792, 0.09075712412595749, 0.07660641521215439, -0.01835516467690468, 0.007362439762800932, -0.028764450922608376, -0.005755668506026268, -0.10787132382392883, 0.030153591185808182, 0.0031116728205233812, 0.028616275638341904, 0.018253294751048088, 0.017141982913017273, -0.0026694631669670343, 0.057417768985033035, -0.01630849950015545, 0.020892659202218056, 0.036765895783901215, 0.016836371272802353, 0.002928769448772073, 0.05000902712345123, 0.002523603616282344, 0.009594324044883251, -0.016373325139284134, 0.0008803672390058637, 0.04493403434753418, -0.030931508168578148, -0.037099286913871765, -0.019077517092227936, 0.014067353680729866, -0.0038919062353670597, -0.003579349722713232, -0.0014539661351591349, 0.0564916767179966, -0.04534151777625084, -0.03000541590154171, -0.031135249882936478, -0.00347284902818501, -0.002822268521413207, 0.03274665027856827, -0.055343322455883026, -0.0403406135737896, -0.004528595134615898, 0.014215528964996338, 0.04263732582330704, -0.03600649908185005, 0.02865331992506981, 0.029097843915224075, 0.028542188927531242, -0.027764270082116127, -0.05789933726191521, 0.03596945479512215, -0.011761382222175598, 0.000649422756396234, 0.03187612444162369, 0.05441723018884659, 0.0044267247430980206, 0.04122966527938843, -0.030635159462690353, 0.008061639964580536, -0.013298696838319302, 0.05645463243126869, 0.0018174576107412577, -0.022152146324515343, 0.00026914579211734235, -0.06149258092045784, 0.03596945479512215, -0.032857783138751984, 0.04730483517050743, 0.012724518775939941, 0.006746587809175253, 0.0072559393011033535, -0.013632089830935001, -0.0079875523224473, -0.056676894426345825, -0.027467921376228333, 0.02300415188074112, 0.009946239180862904, 0.05026833340525627, 0.017771726474165916, -0.034876663237810135, 0.059158824384212494, 0.03787720575928688, 0.01604919321835041, -0.005450057797133923, -0.0228744987398386, 0.10305563360452652, 0.02872740663588047, 0.010881593450903893, -0.025912083685398102, -0.000478384958114475, -0.0417112335562706, 0.03100559674203396, 0.005964039359241724, -0.012122558429837227, 0.06890132278203964, -0.02374502643942833, -0.04415611922740936, 0.023300502449274063, 0.060307182371616364, -0.01389139611274004, -0.02448590099811554, 0.019929522648453712, -0.04119262099266052, -0.04630465433001518, -0.06275206804275513, 0.02967202104628086, 0.010270372033119202, -0.002470353152602911, -0.015512058511376381, 0.026319565251469612, -0.024374770000576973, 0.0009984440403059125, 0.006065909750759602, -0.028505144640803337, 0.03222803771495819, 0.0444154217839241, 0.0017074841307476163, -0.01385435275733471, -0.019281256943941116, -0.04085922613739967, 0.019559085369110107, 0.009936979040503502, 0.053305916488170624, 0.0619000606238842, 0.019818391650915146, 0.0008635817794129252, -0.01748463697731495, 0.008033857680857182, 0.023115282878279686, 0.03583980351686478, -0.06723435968160629, 0.003005172125995159, 0.05764003098011017, -0.01247447356581688, 0.003368663601577282, 0.043155938386917114, -0.053861573338508606, -0.057677075266838074, -0.0679381862282753, -0.009761020541191101, 0.007357809226959944, 0.09179434180259705, 0.01133537944406271, -0.014530399814248085, 0.03220951557159424, 0.03176499158143997, 0.046119436621665955, 0.008719165809452534, -0.03741415962576866, -0.017317939549684525, -0.001026226906105876, 0.01579914800822735, -0.0001433997240383178, 0.011983644217252731, 0.006306693889200687, -0.018512601032853127, -0.024115463718771935, 0.0625298023223877, 0.005561188794672489, 0.02044813521206379, 0.0403776578605175, 0.02037404663860798, -0.010261110961437225, 0.009677672758698463, -0.0023187054321169853, 0.0015500482404604554, 0.03220951557159424, 0.020151784643530846, 0.00011930683103855699, -0.015632450580596924, -0.049749720841646194, -0.010770462453365326, 0.03335787355899811, -0.014484095387160778, 0.008232966996729374, 0.054454270750284195, -0.019003430381417274, 0.01469709724187851, 0.004141951445490122, 0.002243460388854146, -0.005848277825862169, 0.040007222443819046, -0.0039243195205926895, -0.018308859318494797, -0.048934757709503174, 0.021281618624925613, -0.03826616704463959, -0.02643069624900818, 0.023763548582792282, 0.0004398942110128701, -0.0800885260105133, -0.0292645413428545, 0.04767527058720589, -0.015021229162812233, -0.06101101264357567, 0.039118170738220215, -0.039044082164764404, -0.046860311180353165, -0.00839503388851881, -0.00649191252887249, -0.021151965484023094, -0.0044151488691568375, -0.02939419448375702, -0.0497867651283741, 0.03445066139101982, 0.024837816134095192, -0.04293367639183998, -0.04426724836230278, -0.01207625400274992, -0.05223165079951286, -0.07897721976041794, 0.06408564001321793, 0.021540924906730652, -0.0653080865740776, -0.002611582400277257, 0.05341704934835434, 0.009436888620257378, 0.04378568008542061, -0.06779000908136368, 0.04445246607065201, 0.025004513561725616, -0.01610475778579712, -0.06701209396123886, -0.03274665027856827, 0.04656396061182022, 0.0060612792149186134, 0.00025264977011829615, 0.014484095387160778, 0.012298515997827053, -0.046526916325092316, 0.04178531840443611, 0.03432101011276245, 0.04482290521264076, 0.04056287556886673, -0.012122558429837227, -0.0017398972995579243, -0.0033223589416593313, 0.009640628471970558, -0.0010227540042251348, -0.020966747775673866, -0.015002707950770855, -0.08631187677383423, 0.015391666442155838, 0.006163149606436491, 0.017577245831489563, 0.09542462974786758, 0.06897541135549545, -0.02898671291768551, 0.02643069624900818, 0.04078513756394386, -0.00968693383038044, -0.0006077485741116107, 0.06108509749174118, -0.010650070384144783, 0.02750496380031109, -0.0238932017236948, 0.04337820038199425, 0.020022131502628326, -0.051898255944252014, 0.007936617359519005, 0.03182055801153183, -0.0605294443666935, 0.028894104063510895, 0.016262194141745567, 0.008158880285918713, -0.019336823374032974, -0.03511744737625122, -0.011844730004668236, 0.023041196167469025, -0.020077697932720184, 0.01694750227034092, -0.017855074256658554, -0.026541827246546745, 0.012298515997827053, 0.0860896110534668, -0.017623551189899445, -0.047341879457235336, 0.04041470214724541, -0.04193349555134773, -0.004653617739677429, 0.017206808552145958, 0.04193349555134773, 0.0035330450627952814, -0.05612124130129814, -0.0038733843248337507, 0.023504242300987244, 0.015549102798104286, 0.02226327732205391, -0.02313380502164364, -0.041340794414281845, -0.0023626950569450855, -0.0962395891547203, -0.009640628471970558, 0.01796620525419712, 0.019522041082382202, -0.019151603803038597, -0.02872740663588047, -0.01998508907854557, 0.06082579120993614, 0.03974791616201401, 0.048008665442466736, -0.04997198283672333, 0.0403406135737896, 0.004297072067856789, 0.009274821728467941, 0.002507396973669529, 0.03217247501015663, -0.01325239147990942, 0.02676408924162388, -0.023800591006875038, 0.003801611950621009, 0.022837454453110695, -0.06497468799352646, 0.0058621689677238464, -0.0038803298957645893, -0.02113344334065914, 0.031394556164741516, -0.004030819982290268, 0.01965169422328472, 0.00003478275175439194, -0.03848842903971672, -0.014039571397006512, 0.038784779608249664, 0.03711780905723572, -0.022893020883202553, 0.0511203370988369, -0.015104577876627445, -0.02044813521206379, 0.011177943088114262, -0.035284146666526794, 0.04108148813247681, -0.04956449940800667, 0.04797162115573883, 0.034006137400865555, -0.01809585839509964, 0.009677672758698463, 0.01036298181861639, 0.0013486230745911598, 0.007005894090980291, -0.02798653207719326, 0.05993674322962761, 0.020411090925335884, -0.004257712978869677, 0.020614832639694214, 0.0011211513774469495, 0.05204642936587334, -0.056269414722919464, 0.003630284918472171, 0.019466476514935493, -0.07645824551582336, 0.021615011617541313, -0.027634616941213608, -0.08505238592624664, -0.036228761076927185, -0.02280041202902794, 0.05575080215930939, 0.06127031892538071, -0.034487705677747726, 0.0012791660847142339, -0.029820196330547333, -0.010955681093037128, 0.02468964084982872 ]
20,307
connectorx
__new__
null
def __new__( cls, raw_connection: str | None = None, *, backend: str = "", username: str = "", password: str = "", server: str = "", port: int | None = None, database: str = "", database_options: dict[str, str] | None = None, db_path: str | Path = "", ) -> ConnectionUrl: if raw_connection is not None: return super().__new__(cls, raw_connection) assert backend if backend == "sqlite": db_path = urllib.parse.quote(str(db_path)) connection = f"{backend}://{db_path}" else: connection = f"{backend}://{username}:{password}@{server}:{port}/{database}" if database_options: connection += "?" + urllib.parse.urlencode(database_options) return super().__new__(cls, connection)
(cls, raw_connection: Optional[str] = None, *, backend: str = '', username: str = '', password: str = '', server: str = '', port: Optional[int] = None, database: str = '', database_options: Optional[dict[str, str]] = None, db_path: str | pathlib.Path = '') -> connectorx.ConnectionUrl
[ -0.0427117645740509, -0.08110394328832626, -0.01230709534138441, -0.0006045325426384807, -0.008532112464308739, -0.0471058264374733, -0.0071170758455991745, 0.04345652088522911, 0.021933067589998245, -0.090413399040699, -0.006111654918640852, 0.053808629512786865, -0.012418808415532112, 0.05425548553466797, 0.0032676176633685827, 0.0058323717676103115, -0.028468303382396698, 0.001930547528900206, 0.0050038304179906845, -0.016840798780322075, 0.022491635754704475, 0.07473628222942352, 0.006130273919552565, 0.04118501394987106, 0.055819474160671234, 0.09488192945718765, -0.011469244956970215, 0.004219509195536375, 0.033234741538763046, -0.0042683836072683334, 0.008978966623544693, 0.07562998682260513, 0.016915274783968925, 0.10590432584285736, 0.05712279677391052, 0.0022272863425314426, 0.020629744976758957, 0.06512892246246338, -0.03437049686908722, -0.0595804899930954, -0.04997313767671585, -0.03001367300748825, -0.00973768625408411, -0.0060883816331624985, 0.051462650299072266, 0.033998116850852966, -0.002897566882893443, -0.029287535697221756, -0.018423404544591904, -0.009663211181759834, 0.04248833656311035, 0.08728542178869247, -0.03178246691823006, 0.07261372357606888, -0.03928588703274727, -0.00635835574939847, -0.019996702671051025, 0.08557248115539551, -0.06062315031886101, 0.05771860107779503, -0.04561631381511688, 0.01080827321857214, 0.005446029361337423, 0.007796665653586388, -0.014411031268537045, -0.025824420154094696, -0.07306057959794998, -0.023366723209619522, 0.027891118079423904, -0.0074708350002765656, 0.06419797986745834, 0.0450577475130558, -0.012381570413708687, -0.048483625054359436, 0.0111899608746171, 0.009304797276854515, -0.034966301172971725, 0.013349753804504871, -0.014913741499185562, 0.011096866801381111, -0.016915274783968925, -0.05328730121254921, 0.013219421729445457, -0.033104412257671356, 0.03429602086544037, -0.06174028292298317, -0.04047749564051628, 0.00912791769951582, 0.004508101847022772, 0.0023133987560868263, -0.033849164843559265, -0.042041484266519547, -0.03692128509283066, 0.04408956319093704, 0.016514968127012253, -0.07849729806184769, -0.011674052104353905, -0.013321825303137302, 0.03189418092370033, -0.021802736446261406, -0.01458791084587574, -0.04345652088522911, -0.07641197741031647, -0.03906245902180672, -0.015621259808540344, -0.005939430091530085, 0.0520956926047802, -0.011599577032029629, -0.04602592810988426, -0.04166910797357559, -0.0106407031416893, 0.028989633545279503, -0.005725312978029251, 0.028710348531603813, -0.0046500712633132935, 0.028263496235013008, 0.001601225696504116, -0.036902666091918945, 0.06140514463186264, -0.04878152906894684, -0.07350742816925049, 0.006460759323090315, -0.04922838136553764, 0.011385459452867508, 0.0802847146987915, 0.04773886874318123, -0.0015209317207336426, -0.07760359346866608, -0.015034765005111694, 0.0031140116043388844, 0.050419989973306656, 0.042935192584991455, -0.01940089836716652, -0.018274454399943352, 0.0250982828438282, 0.028598636388778687, -0.01292151864618063, 0.07562998682260513, -0.024037005379796028, 0.0704539343714714, -0.03208037093281746, -0.025694087147712708, 0.005059686955064535, 0.023031583055853844, -0.0059254658408463, -0.003458461258560419, 0.006684186402708292, -0.03494768217206001, -0.025526516139507294, -0.005906847305595875, 0.02260334976017475, 0.01264223549515009, 0.02135588228702545, 0.05056894198060036, -0.012977375648915768, -0.006856411229819059, -0.0072427536360919476, -0.03805704042315483, 0.0023727465886622667, 0.051313698291778564, 0.01482995692640543, -0.024241812527179718, 0.016961820423603058, -0.02230544574558735, -0.03857836872339249, -0.006907613016664982, 0.013061161153018475, -0.08750884979963303, -0.003553883172571659, -0.020964885130524635, -0.03591586649417877, -0.020666982978582382, -0.009886637330055237, 0.06051143631339073, 0.013563871383666992, 0.01953122951090336, 0.046807922422885895, -0.002354127587750554, 0.021225549280643463, -0.0723530575633049, 0.053250063210725784, -0.03805704042315483, 0.06520339846611023, -0.022212352603673935, 0.07090078294277191, 0.011227198876440525, 0.02202616259455681, 0.05656423047184944, 0.08177422732114792, 0.03429602086544037, -0.003339765826240182, -0.0028836026322096586, -0.009588735178112984, -0.02474452368915081, 0.0427117645740509, -0.09242423623800278, 0.05008485168218613, -0.013340444304049015, 0.022696442902088165, 0.09585011750459671, 0.011283055879175663, 0.04762715473771095, -0.010491752065718174, -0.05466509982943535, 0.02571270614862442, -0.02744426392018795, -0.005208638496696949, -0.002899894258007407, 0.0003246671403758228, -0.020834553986787796, -0.013424229808151722, -0.049712471663951874, -0.0575324110686779, 0.027909737080335617, -0.029417866840958595, 0.02965991385281086, 0.005245876032859087, 0.03098185546696186, 0.010677941143512726, 0.02301296405494213, 0.08415744453668594, -0.008220246061682701, -0.00828541163355112, -0.04315861687064171, 0.02550789713859558, -0.005278459284454584, -0.01216745376586914, -0.022566111758351326, -0.03630686178803444, -0.030367432162165642, -0.05682489275932312, -0.04107329994440079, 0.011701980605721474, 0.03734952211380005, 0.04408956319093704, -0.0396210253238678, 0.0029557510279119015, -0.000046401797590078786, 0.01323804073035717, 0.010407967492938042, 0.03457530215382576, 0.022677823901176453, -0.03370021656155586, -0.0052877687849104404, -0.016235683113336563, -0.061218954622745514, -0.034742873162031174, 0.00701932655647397, 0.027183599770069122, -0.022826775908470154, -0.04628659412264824, -0.0007825758075341582, -0.037051618099212646, -0.011553029529750347, -0.004033320117741823, 0.05109027028083801, -0.074252188205719, -0.012446736916899681, -0.007573239039629698, -0.0628201812505722, -0.0137593699619174, 0.007214825134724379, -0.04192977026104927, -0.011357530951499939, 0.01840478554368019, -0.033085793256759644, -0.009886637330055237, -0.03556210547685623, 0.03248998522758484, 0.007605822291225195, 0.06609711050987244, 0.04651002213358879, 0.00244140368886292, 0.06479378789663315, -0.05310111120343208, -0.06855480372905731, -0.021039361134171486, 0.013051851652562618, -0.044946033507585526, -0.08050813525915146, -0.041818056255578995, -0.0223799217492342, 0.04263728857040405, -0.06200094893574715, 0.04781334474682808, -0.009663211181759834, -0.027816642075777054, -0.03466839715838432, 0.010826892219483852, 0.004426644183695316, -0.00701932655647397, 0.004245109856128693, -0.02757459692656994, 0.0162915401160717, -0.021877212449908257, -0.015286119654774666, -0.029231678694486618, -0.005446029361337423, 0.009230321273207664, -0.05756964907050133, -0.05377139523625374, -0.04531840980052948, -0.011227198876440525, 0.0745500922203064, 0.0167290847748518, -0.04058920964598656, -0.005436719860881567, -0.027909737080335617, 0.008862597867846489, -0.013498704880475998, 0.02452109567821026, 0.013210112228989601, 0.05030827596783638, 0.03139147162437439, 0.031354233622550964, 0.046547260135412216, -0.04010511934757233, -0.05190950259566307, 0.010026279836893082, 0.0297902449965477, -0.011971955187618732, 0.0362510047852993, -0.039397601038217545, 0.02563823014497757, 0.006660912651568651, 0.010985152795910835, -0.013154255226254463, 0.02008979767560959, -0.006409557536244392, 0.04952628165483475, 0.008136460557579994, 0.07395428419113159, 0.0014953307108953595, -0.014857885427772999, 0.01216745376586914, -0.022882632911205292, 0.0007383559131994843, -0.012763258069753647, -0.006712114904075861, -0.05403205752372742, 0.020462175831198692, 0.012819115072488785, 0.008271448314189911, -0.02452109567821026, 0.04185529425740242, -0.06419797986745834, -0.0187119971960783, -0.05466509982943535, 0.020536649972200394, -0.029399247840046883, -0.08572143316268921, -0.04636107012629509, -0.028784824535250664, 0.008331959135830402, 0.024688666686415672, -0.05406929552555084, -0.026587793603539467, 0.027407025918364525, -0.013098398223519325, -0.03965826332569122, 0.03090737946331501, -0.03137285262346268, 0.0238508153706789, 0.01025901548564434, -0.016096042469143867, 0.03591586649417877, 0.03457530215382576, 0.004000736866146326, -0.06646948307752609, 0.03215484693646431, -0.003765673143789172, -0.07302334159612656, 0.05514919385313988, -0.02668088860809803, 0.01323804073035717, -0.05354796722531319, -0.011729909107089043, -0.03029295615851879, -0.008839324116706848, -0.021933067589998245, 0.040365781635046005, 0.010249705985188484, 0.0600273460149765, 0.025600992143154144, 0.0027905080933123827, -0.010929296724498272, 0.020741458982229233, 0.058463357388973236, 0.0187119971960783, 0.017762433737516403, -0.05756964907050133, -0.047850582748651505, 0.013573180884122849, 0.003807565663009882, -0.015584022738039494, -0.008210936561226845, 0.00020451702584978193, 0.005911502055823803, -0.026438843458890915, 0.045355647802352905, -0.03857836872339249, -0.06654395908117294, 0.03813151270151138, 0.007047255057841539, -0.016170518472790718, -0.00409848615527153, 0.061516858637332916, 0.07291162759065628, 0.013061161153018475, -0.022677823901176453, -0.026085084304213524, -0.0007302101003006101, -0.08810465037822723, 0.051872264593839645, 0.015947090461850166, 0.03174522891640663, 0.007289300672709942, -0.013312515802681446, 0.009523569606244564, 0.033029936254024506, -0.04829743504524231, 0.011683361604809761, 0.02757459692656994, 0.001082223723642528, 0.0019177470821887255, 0.045765265822410583, 0.008169043809175491, -0.03254584223031998, 0.036623384803533554, -0.0009001076105050743, 0.024893473833799362, -0.01472755242139101, -0.017734505236148834, 0.00611630966886878, 0.037517089396715164, -0.00589288305491209, 0.043270330876111984, 0.014848575927317142, 0.0471058264374733, -0.04773886874318123, -0.03736814111471176, -0.05447891354560852, 0.009746995754539967, 0.01759486459195614, 0.012344333343207836, -0.06095828860998154, -0.03230379894375801, -0.031298376619815826, 0.004920045379549265, 0.05358520522713661, -0.03548762947320938, 0.024651428684592247, 0.0031861597672104836, -0.010622084140777588, -0.04367994889616966, -0.08609381318092346, 0.0020154963713139296, -0.023124678060412407, 0.04829743504524231, 0.026736745610833168, 0.03854113072156906, 0.021579308435320854, 0.044312991201877594, -0.039956167340278625, -0.023720482364296913, -0.007303264923393726, 0.03446359187364578, -0.015099930576980114, -0.031019093468785286, -0.01549092773348093, -0.056452516466379166, 0.015500237233936787, -0.05183502659201622, 0.04967523366212845, -0.020331842824816704, 0.024130098521709442, 0.008099223487079144, -0.006916922517120838, 0.0018630539998412132, -0.03695852309465408, -0.0500476136803627, 0.042935192584991455, 0.00047885492676869035, 0.03332783654332161, 0.026736745610833168, -0.04222767427563667, 0.04178081825375557, 0.0033118375577032566, -0.007005362305790186, 0.006558508612215519, -0.007149659097194672, 0.09242423623800278, -0.006693495903164148, 0.039472077041864395, -0.004868843127042055, -0.019382279366254807, -0.018972663208842278, 0.048334673047065735, 0.011580958031117916, -0.025414803996682167, 0.06371388584375381, -0.028226258233189583, 0.009360653348267078, 0.015993637964129448, 0.030255718156695366, -0.002308744005858898, -0.04803677275776863, 0.06695357710123062, 0.0017804326489567757, -0.023813577368855476, -0.01226054783910513, 0.02003394067287445, 0.007228789385408163, -0.01285635307431221, -0.03693990409374237, 0.034817349165678024, -0.05384586751461029, -0.004421989433467388, 0.0003034299297723919, -0.012819115072488785, 0.04907942935824394, 0.05012208968400955, 0.0036399955861270428, -0.04066368564963341, -0.02958543784916401, -0.016533587127923965, 0.026103703305125237, 0.018134811893105507, 0.05362244322896004, 0.029957816004753113, 0.023385342210531235, 0.007107766345143318, -0.01774381473660469, 0.004047284368425608, 0.02986472100019455, 0.06322979927062988, -0.06754938513040543, 0.014997527003288269, -0.00008873071055859327, -0.01802309788763523, 0.03034881316125393, 0.014513435773551464, -0.06110724061727524, -0.035524867475032806, -0.048260197043418884, -0.014634458348155022, 0.0111899608746171, 0.10173369199037552, -0.021784117445349693, -0.021467596292495728, 0.03936036303639412, 0.012446736916899681, -0.0024297668132930994, 0.008560040965676308, 0.0179765522480011, -0.03472425416111946, 0.013219421729445457, 0.005711348727345467, -0.022212352603673935, 0.0007924670935608447, 0.01860959455370903, -0.027667690068483353, -0.04829743504524231, 0.08147632330656052, -0.030795667320489883, 0.026010608300566673, 0.04822295904159546, -0.02059250697493553, -0.03435187786817551, 0.04297243058681488, -0.024018386378884315, 0.04900495335459709, 0.043084144592285156, 0.06058591231703758, 0.02113245613873005, -0.03666062280535698, -0.007717535365372896, 0.03693990409374237, 0.050271037966012955, -0.024204574525356293, 0.016002947464585304, 0.018981972709298134, -0.043828897178173065, -0.021374501287937164, -0.032452747225761414, -0.004808331839740276, -0.02405562251806259, 0.031298376619815826, 0.023925291374325752, -0.019233327358961105, -0.013666274957358837, -0.04643554612994194, -0.023459818214178085, -0.04111053794622421, 0.0020550615154206753, -0.03021848015487194, -0.07451285421848297, -0.0349290631711483, 0.061218954622745514, 0.021579308435320854, -0.07183173298835754, 0.024651428684592247, -0.012009193189442158, -0.030944617465138435, -0.0030046256724745035, -0.004887462127953768, -0.021858593448996544, 0.00831334013491869, -0.05864954739809036, -0.04017959535121918, 0.015444380231201649, 0.041557393968105316, -0.025247232988476753, 0.0037005071062594652, 0.0037773100193589926, -0.03677233308553696, -0.060809340327978134, 0.07227858155965805, 0.02701602876186371, -0.003837821539491415, -0.031279757618904114, 0.05257978290319443, 0.017324889078736305, 0.07976338267326355, -0.07819939404726028, 0.045839741826057434, 0.036139290779829025, -0.003090738086029887, -0.0726509615778923, -0.011357530951499939, 0.02453971467912197, -0.029901959002017975, -0.01014730241149664, 0.020127033814787865, -0.03438911586999893, -0.037796374410390854, 0.026029227301478386, 0.03928588703274727, 0.016766322776675224, 0.028095925226807594, -0.02036908082664013, 0.012297785840928555, 0.011636815033853054, 0.015127859078347683, -0.002307580318301916, -0.0522446446120739, -0.021672403439879417, -0.06572473049163818, -0.0028324006125330925, -0.021914448589086533, 0.014383102767169476, 0.05462786182761192, 0.057755839079618454, -0.03124251961708069, 0.010445204563438892, 0.0007715208339504898, -0.026904314756393433, 0.008648480288684368, 0.030814284458756447, -0.01365696545690298, -0.012269857339560986, 0.007149659097194672, 0.06628329306840897, 0.041967008262872696, -0.02051803097128868, 0.03612067177891731, 0.005632218439131975, -0.0396210253238678, -0.027704928070306778, 0.006786590442061424, 0.05127646028995514, 0.000659225566778332, -0.031354233622550964, 0.042935192584991455, 0.022845394909381866, -0.024148717522621155, -0.014252770692110062, -0.03349540755152702, -0.008089913986623287, 0.011180651374161243, 0.10620222240686417, -0.018572356551885605, -0.04866981506347656, 0.019382279366254807, -0.00518070999532938, 0.01583537831902504, -0.01102239079773426, 0.06561301648616791, 0.03230379894375801, -0.0249493308365345, -0.021504834294319153, 0.036977142095565796, -0.031279757618904114, 0.020815934985876083, -0.027909737080335617, -0.04885600134730339, 0.02280815690755844, -0.06203818693757057, 0.058239929378032684, 0.027220837771892548, 0.03377469256520271, 0.007042600307613611, -0.025340327993035316, -0.004740838427096605, 0.04353099688887596, -0.008085259236395359, 0.053808629512786865, -0.02759321592748165, 0.046398308128118515, 0.03148456662893295, -0.0011014245683327317, 0.01510924007743597, 0.005953394342213869, -0.01912161335349083, 0.013442848809063435, 0.006893649231642485, 0.021951686590909958, -0.013396301306784153, -0.0792420506477356, -0.053063876926898956, -0.0006307153380475938, -0.001601225696504116, -0.011227198876440525, -0.01192540768533945, 0.058388881385326385, 0.0013021596241742373, -0.026103703305125237, -0.03034881316125393, 0.008425054140388966, 0.04315861687064171, -0.025042425841093063, 0.04732925444841385, -0.021914448589086533, -0.0371260941028595, 0.027407025918364525, 0.0012079013977199793, 0.054441675543785095, -0.03608343377709389, 0.03612067177891731, 0.05321282520890236, -0.0125491414219141, 0.0010758235584944487, 0.020145652815699577, 0.007075183559209108, 0.01743660308420658, -0.03416568785905838, 0.03597172349691391, 0.02625265344977379, -0.016766322776675224, 0.033793311566114426, -0.013694203458726406, 0.05905916169285774, 0.007940961979329586, 0.03174522891640663, -0.008243519812822342, -0.07603960484266281, 0.012372261844575405, -0.018525809049606323, -0.042376626282930374, -0.04032854363322258, -0.017175938934087753, 0.058388881385326385, 0.04885600134730339, -0.013498704880475998, -0.024558333680033684, -0.022473016753792763, 0.013610418885946274, 0.01693389192223549 ]
20,385
connectorx
get_meta
Get metadata (header) of the given query (only for pandas) Parameters ========== conn the connection string. query a SQL query or a list of SQL queries. protocol backend-specific transfer protocol directive; defaults to 'binary' (except for redshift connection strings, where 'cursor' will be used instead).
def get_meta( conn: str | ConnectionUrl, query: str, protocol: Protocol | None = None, ) -> pd.DataFrame: """ Get metadata (header) of the given query (only for pandas) Parameters ========== conn the connection string. query a SQL query or a list of SQL queries. protocol backend-specific transfer protocol directive; defaults to 'binary' (except for redshift connection strings, where 'cursor' will be used instead). """ conn, protocol = rewrite_conn(conn, protocol) result = _get_meta(conn, query, protocol) df = reconstruct_pandas(result) return df
(conn: 'str | ConnectionUrl', query: 'str', protocol: 'Protocol | None' = None) -> 'pd.DataFrame'
[ 0.007994458079338074, -0.006059952545911074, 0.02978239394724369, -0.052294645458459854, 0.030178293585777283, 0.05431013181805611, 0.0019884922076016665, 0.01871522143483162, 0.00088571134256199, -0.024815663695335388, 0.01180498581379652, 0.008336370810866356, -0.035360969603061676, 0.010239385068416595, -0.011598038487136364, -0.030160298570990562, 0.02049676515161991, 0.06607912480831146, -0.0017365565290674567, -0.02179243601858616, 0.01475623156875372, 0.041461411863565445, -0.008925721049308777, 0.004714795853942633, 0.008772759698331356, 0.06075248494744301, -0.023142090067267418, -0.015700990334153175, 0.06651101261377335, 0.03771836683154106, 0.0003455679980106652, 0.01166102197021246, 0.012155896052718163, 0.0296564269810915, -0.1138029396533966, -0.005772026255726814, 0.04214523732662201, -0.0777401477098465, -0.04243316501379013, 0.014558282680809498, -0.06456751376390457, -0.06679894030094147, 0.005799019243568182, -0.06248004361987114, -0.006545828655362129, -0.03728647902607918, 0.046212200075387955, -0.06266000121831894, -0.010563302785158157, -0.024329787120223045, 0.04880353808403015, 0.05830511078238487, -0.001304666860960424, 0.011445077136158943, -0.008606302551925182, -0.07000212371349335, -0.015026163309812546, 0.059312853962183, -0.02371794357895851, 0.10163804888725281, -0.035306982696056366, 0.013676507398486137, -0.05452607572078705, 0.00413669366389513, -0.03858214616775513, -0.04743588715791702, 0.0781000554561615, -0.10458929091691971, -0.05344635248184204, -0.09645537286996841, 0.007796509191393852, 0.03725048899650574, 0.006869745906442404, 0.03143797069787979, -0.03940993547439575, -0.07428503036499023, -0.04858759418129921, -0.05333837866783142, 0.00854781735688448, -0.01809437945485115, -0.0365486666560173, 0.01825633831322193, 0.01557502243667841, -0.01009542215615511, -0.016834700480103493, -0.04426869377493858, 0.03282361850142479, 0.06485544145107269, 0.013181634247303009, 0.03115004487335682, -0.0016848198138177395, -0.06438755989074707, 0.014864204451441765, 0.025769419968128204, -0.02634527161717415, -0.02650723047554493, -0.036674633622169495, 0.06345179677009583, -0.027407001703977585, 0.04567233845591545, -0.03779035061597824, 0.0014486301224678755, -0.02378992550075054, 0.0725574716925621, -0.0283607579767704, -0.005695545580238104, 0.016195863485336304, -0.040021780878305435, -0.014549284242093563, -0.03473113104701042, -0.0009633165318518877, 0.03908601775765419, 0.033921338617801666, -0.010581297799944878, 0.09926265478134155, 0.003556341864168644, 0.017473537474870682, 0.005866501946002245, -0.031887855380773544, 0.008601803332567215, -0.04048966243863106, 0.04390878602862358, 0.044844549149274826, -0.044628605246543884, 0.01725759357213974, 0.029044583439826965, 0.01716761663556099, -0.10768450051546097, 0.011040180921554565, 0.035360969603061676, 0.04182131960988045, 0.011301114223897457, 0.014432314783334732, 0.01873321644961834, 0.009825491346418858, 0.05218667536973953, 0.03651267662644386, -0.032211773097515106, -0.011948948726058006, -0.0141803789883852, -0.03887007385492325, -0.0375744067132473, -0.029080573469400406, 0.00047012994764372706, -0.019345059990882874, -0.023879902437329292, 0.02992635779082775, -0.003797030309215188, 0.0027375509962439537, -0.05772925913333893, 0.043260954320430756, -0.08004356175661087, 0.0010741007281467319, -0.006545828655362129, 0.007787511218339205, -0.04250514507293701, -0.0036350716836750507, 0.0003973048005718738, -0.04081357643008232, 0.011112162843346596, 0.055713772773742676, -0.03330949321389198, -0.019381050020456314, 0.010599293746054173, -0.06377571076154709, 0.006541329436004162, 0.028666678816080093, -0.05830511078238487, 0.022404279559850693, 0.011346102692186832, 0.044484641402959824, 0.04560035467147827, 0.04167735576629639, -0.02056874707341194, 0.012074916623532772, 0.07169368863105774, 0.04257712885737419, -0.0247796718031168, -0.02188241295516491, -0.049631327390670776, 0.024671699851751328, -0.03248170390725136, -0.06255202740430832, 0.02373593859374523, -0.051070958375930786, 0.015925932675600052, -0.008817748166620731, -0.018355313688516617, 0.04502450302243233, 0.028846634551882744, 0.008205904625356197, 0.015323086641728878, -0.008723272010684013, 0.0075085824355483055, 0.02013685740530491, -0.08947315067052841, 0.024203820154070854, 0.032121796160936356, 0.033705394715070724, 0.04578030854463577, 0.0500992052257061, 0.06921032816171646, 0.0012855466920882463, 0.0363687127828598, -0.020964646711945534, -0.005227664951235056, -0.035181015729904175, -0.03458716720342636, -0.09847085177898407, -0.027874881401658058, 0.016897685825824738, -0.08234696835279465, -0.03714251518249512, -0.023178081959486008, -0.023753933608531952, 0.022944141179323196, -0.03419126942753792, 0.01745554246008396, 0.03140198066830635, -0.03282361850142479, 0.03779035061597824, -0.0635237768292427, 0.03424525633454323, 0.012488811276853085, 0.015242108143866062, -0.04801173880696297, 0.03714251518249512, -0.06651101261377335, 0.016213860362768173, -0.038474176079034805, 0.00827338732779026, -0.004656311124563217, -0.0059159891679883, -0.03393933176994324, -0.0015082398895174265, 0.046104226261377335, 0.004478606395423412, 0.03548693656921387, 0.06093243882060051, -0.04412473365664482, 0.008426348678767681, 0.02944048121571541, 0.01878720335662365, 0.02989036776125431, -0.049631327390670776, -0.03980583697557449, -0.0059159891679883, -0.022944141179323196, -0.04120947793126106, 0.009690525010228157, -0.04030970484018326, -0.029368501156568527, 0.06690691411495209, -0.004303151275962591, 0.049055472016334534, -0.024275800213217735, -0.0156560018658638, -0.02172045409679413, 0.0015509789809584618, -0.03908601775765419, -0.07694835215806961, -0.02654322236776352, 0.04970330744981766, -0.042829062789678574, 0.011346102692186832, -0.018319321796298027, 0.009393601678311825, 0.019650982692837715, -0.06607912480831146, -0.007904481142759323, 0.0659351646900177, 0.012884709984064102, -0.023933887481689453, -0.04243316501379013, 0.002070596208795905, -0.03469514101743698, -0.008372361771762371, -0.03127601370215416, -0.0314919576048851, -0.04430468752980232, -0.005385125055909157, -0.06820258498191833, -0.014396323822438717, -0.04675206169486046, -0.042865052819252014, 0.036674633622169495, -0.0019311318174004555, 0.04023772478103638, 0.03728647902607918, 0.030574193224310875, -0.03786233067512512, -0.04567233845591545, -0.05132289603352547, -0.007962966337800026, -0.053986214101314545, 0.013649514876306057, -0.014612268656492233, -0.01239883340895176, -0.003423625836148858, -0.016105886548757553, -0.019237088039517403, -0.02377193048596382, 0.008682782761752605, 0.06402765214443207, -0.03966187313199043, 0.04840764030814171, 0.013127647340297699, -0.016078894957900047, -0.04027371481060982, -0.04693201556801796, 0.005119692534208298, 0.07414107024669647, -0.005596570670604706, 0.02170245721936226, -0.0163488257676363, -0.02974640391767025, -0.05283450707793236, 0.035360969603061676, 0.0032504198607057333, 0.03446120023727417, -0.06669096648693085, 0.0653953030705452, -0.01736556552350521, -0.014729239046573639, 0.03176188841462135, 0.010554305277764797, -0.03732246905565262, -0.020964646711945534, 0.047687821090221405, 0.00672578252851963, 0.027514973655343056, 0.0361887589097023, 0.05524589121341705, 0.010617288760840893, -0.027730919420719147, -0.01873321644961834, 0.006415362004190683, -0.030304262414574623, 0.0072746421210467815, 0.010473325848579407, 0.0016420807223767042, -0.028936611488461494, 0.010320364497601986, -0.03940993547439575, 0.036584656685590744, -0.07435701042413712, -0.00927663128823042, -0.0043953778222203255, -0.011544052511453629, -0.0650353953242302, -0.002483365824446082, 0.0006641428917646408, 0.011400088667869568, 0.02666918933391571, 0.05056708678603172, -0.009123669937252998, -0.07050599902868271, 0.0629839152097702, -0.02663319930434227, 0.03948191925883293, 0.07831600308418274, 0.017302582040429115, 0.037214495241642, 0.010050433687865734, 0.018481280654668808, -0.030862119048833847, 0.013172635808587074, 0.016627753153443336, -0.0016060898778960109, -0.01590793766081333, -0.019579000771045685, 0.01093220803886652, -0.004030970856547356, -0.006559324916452169, -0.03606279194355011, -0.0032211774960160255, 0.000892459589522332, -0.01866123452782631, -0.0024653703439980745, -0.005610067397356033, 0.041533395648002625, 0.0007906730752438307, 0.013028672896325588, -0.01638481579720974, 0.013073661364614964, -0.03649467974901199, -0.006599814631044865, 0.015431059524416924, 0.019417041912674904, -0.023016123101115227, -0.058485064655542374, -0.05481400340795517, -0.05153883993625641, 0.0325176976621151, -0.053950224071741104, 0.0007962966337800026, 0.008016953244805336, -0.02202637493610382, -0.04196528345346451, -0.009546562097966671, 0.022476259618997574, -0.06672696024179459, 0.03890606388449669, -0.01851727068424225, -0.0025126084219664335, -0.034947074949741364, 0.00819240789860487, -0.06460350006818771, -0.009843486361205578, -0.02639925852417946, -0.0053446353413164616, -0.05668552592396736, 0.01705964282155037, 0.06114838644862175, -0.00037565408274531364, 0.06114838644862175, 0.025859396904706955, 0.006158927455544472, 0.00213470496237278, 0.09616744518280029, 0.02834276296198368, -0.009618544019758701, -0.02190040796995163, 0.03489308804273605, -0.011966943740844727, 0.03127601370215416, 0.007863991893827915, -0.008151918649673462, 0.013802475295960903, -0.010680272243916988, 0.024149833247065544, 0.024149833247065544, -0.06881442666053772, -0.003306655678898096, -0.01108516938984394, -0.03779035061597824, 0.0009785001166164875, 0.00619941670447588, 0.013154640793800354, 0.017563514411449432, 0.004478606395423412, 0.002189815742895007, 0.024149833247065544, 0.015377073548734188, -0.0037610395811498165, -0.035127028822898865, 0.048083722591400146, 0.007576065603643656, -0.046356163918972015, 0.003985981922596693, 0.05344635248184204, 0.02161248028278351, 0.06132834032177925, 0.008750265464186668, 0.0361887589097023, 0.016141878440976143, 0.04250514507293701, 0.017545519396662712, -0.029098568484187126, -0.019147111102938652, 0.0032729143276810646, 0.016321832314133644, -0.031905852258205414, -0.07212558388710022, 0.0035181015264242887, -0.02067672088742256, -0.04988326132297516, -0.006901237647980452, -0.0655752569437027, -0.001240558223798871, -0.01873321644961834, 0.030610183253884315, -0.027083083987236023, 0.0025823405012488365, -0.02522955648601055, -0.0066627985797822475, -0.04099353030323982, 0.01264177169650793, -0.005592071916908026, -0.005074704065918922, -0.013622521422803402, 0.02686714008450508, 0.03122202679514885, -0.0032324246130883694, 0.06769870966672897, 0.026237299665808678, 0.04027371481060982, 0.027568960562348366, 0.04167735576629639, -0.028468729928135872, 0.006514336448162794, 0.08429047465324402, -0.000326729059452191, 0.03303956240415573, 0.05459805950522423, 0.0379343144595623, 0.020694715902209282, 0.015152131207287312, 0.04999123513698578, 0.0009672529995441437, -0.0026993106584995985, -0.06420760601758957, -0.017671488225460052, -0.028558706864714622, 0.007643548306077719, -0.04865957424044609, 0.0381142683327198, 0.05161081999540329, 0.01656476967036724, -0.022548241540789604, -0.06751875579357147, 0.06341580301523209, -0.043296944350004196, 0.016303837299346924, -0.04340491443872452, -0.016726728528738022, -0.04869556427001953, 0.017248595133423805, -0.019471028819680214, -0.02038879320025444, 0.07594060897827148, 0.06867046654224396, -0.0205327570438385, -0.009114672429859638, -0.04185730963945389, 0.007850495167076588, -0.0054571065120399, 0.0038645132444798946, -0.0010977196507155895, -0.006073449272662401, -0.026309281587600708, -0.013595527969300747, 0.0034686143044382334, -0.015143132768571377, 0.024185823276638985, -0.01729358360171318, -0.006181421689689159, 0.03771836683154106, 0.008084435947239399, -0.02323206700384617, 0.01796841248869896, 0.022314302623271942, -0.014495298266410828, -0.027676932513713837, 0.013127647340297699, -0.00582601223140955, 0.01862524449825287, 0.061868201941251755, -0.014297349378466606, -0.003808277426287532, -0.030088316649198532, -0.016393814235925674, 0.030538201332092285, 0.012722751125693321, -0.01787843368947506, 0.06841852515935898, 0.024149833247065544, 0.0035136027727276087, 0.025409512221813202, -0.0467880517244339, 0.04711196944117546, -0.05168280377984047, 0.022278310731053352, 0.05650557205080986, -0.03109605982899666, 0.004204176366329193, 0.07133378088474274, 0.050783030688762665, -0.04516846686601639, -0.013523546978831291, 0.015970921143889427, 0.00898420624434948, 0.02019084431231022, 0.005358131602406502, 0.11869768798351288, -0.029404491186141968, -0.013181634247303009, 0.08414651453495026, 0.04570832848548889, 0.004201927222311497, 0.01900314725935459, 0.022512251511216164, 0.03768237680196762, 0.011067173443734646, -0.006955224089324474, 0.03419126942753792, -0.024653704836964607, -0.0005030278116464615, 0.0716577023267746, -0.022818172350525856, -0.06467548757791519, -0.05826912075281143, -0.011400088667869568, -0.0047777798026800156, 0.08011554181575775, 0.017833445221185684, -0.05373428016901016, -0.06460350006818771, -0.03467714414000511, -0.003072715364396572, -0.013793477788567543, 0.0078280009329319, -0.006298391614109278, -0.04840764030814171, -0.03753841295838356, -0.030448224395513535, -0.001308040926232934, 0.041749339550733566, 0.020046880468726158, -0.07133378088474274, -0.027820896357297897, 0.01337958313524723, -0.03154594451189041, 0.029368501156568527, 0.02661520428955555, -0.014468305744230747, -0.04549238458275795, -0.027694927528500557, 0.007976463064551353, -0.07007410377264023, 0.0360088050365448, -0.00863779429346323, 0.03154594451189041, 0.022458264604210854, -0.015170126222074032, 0.04038168862462044, 0.03230175003409386, 0.023142090067267418, -0.02978239394724369, -0.007711031008511782, 0.08429047465324402, 0.009852483868598938, 0.009951459243893623, -0.008592805825173855, -0.005205170717090368, -0.03557691350579262, -0.016870692372322083, 0.02528354339301586, 0.004084956832230091, 0.004746288061141968, -0.003034475026652217, -0.006064451299607754, 0.029404491186141968, -0.02359197475016117, -0.024005869403481483, -0.031024077907204628, 0.019507018849253654, -0.038222238421440125, 0.05020717903971672, -0.024419764056801796, 0.02161248028278351, -0.002780290087684989, 0.03264366462826729, 0.03140198066830635, 0.06679894030094147, -0.011903960257768631, -0.0035878338385373354, 0.021288564428687096, -0.000324760825606063, -0.006469347979873419, 0.03285960853099823, -0.03649467974901199, 0.06759074330329895, 0.015017164871096611, 0.06086045876145363, 0.007486088201403618, -0.04390878602862358, -0.019579000771045685, 0.005308644380420446, -0.00450559938326478, 0.02828877605497837, 0.07248549163341522, -0.032427720725536346, -0.023124095052480698, 0.0003365703159943223, -0.003149195807054639, 0.025571469217538834, -0.030664170160889626, 0.011580042541027069, 0.01705964282155037, 0.02197238989174366, 0.0727374255657196, 0.027407001703977585, 0.0567215159535408, -0.012200884521007538, -0.06327184289693832, 0.039913807064294815, -0.021450523287057877, -0.022566238418221474, -0.05333837866783142, 0.015341082587838173, 0.005844007711857557, 0.041389431804418564, 0.05017118901014328, 0.002244926756247878, 0.0026363267097622156, 0.013307602144777775, -0.02686714008450508, 0.013568535447120667, -0.0003002983285114169, -0.017941419035196304, -0.039625879377126694, 0.041173484176397324, 0.021054623648524284, 0.081411212682724, -0.017851442098617554, 0.06885042041540146, -0.02479766681790352, -0.022188333794474602, -0.003677810775116086, -0.00812042597681284, 0.0022696703672409058, 0.04336892440915108, 0.03118603676557541, 0.07932374626398087, -0.030880114063620567, -0.003266165964305401, 0.023034118115901947, -0.02681315317749977, 0.006055453792214394, 0.025967368856072426, -0.032337743788957596, -0.0165287796407938, 0.1042293831706047, -0.0036958062555640936, 0.0028117820620536804, 0.010662277229130268, 0.012002934701740742, -0.030250275507569313, 0.03714251518249512, -0.017230600118637085, 0.02360997162759304, -0.030430229380726814, 0.025373520329594612, 0.05038713291287422, -0.03732246905565262, 0.02067672088742256, 0.058701008558273315, 0.05927686393260956, 0.052510589361190796, -0.04423270374536514, 0.03296758234500885, -0.028558706864714622, -0.00295349583029747, 0.02211635187268257, -0.07298935949802399, 0.017581511288881302, -0.005722538568079472, -0.04077758640050888, 0.01581796072423458, -0.012425826862454414, -0.021648472175002098, -0.05143086612224579, 0.009933463297784328, 0.010419338941574097, 0.0051466855220496655, -0.015179123729467392, 0.02339402586221695, 0.022530246526002884, -0.006154428236186504, -0.022584233433008194, 0.032013826072216034, 0.03557691350579262, -0.013325597159564495, -0.017122628167271614, -0.08947315067052841, 0.014531289227306843, -0.03633272275328636 ]
20,389
connectorx
partition_sql
Partition the sql query Parameters ========== conn the connection string. query a SQL query or a list of SQL queries. partition_on the column on which to partition the result. partition_num how many partitions to generate. partition_range the value range of the partition column.
def partition_sql( conn: str | ConnectionUrl, query: str, partition_on: str, partition_num: int, partition_range: tuple[int, int] | None = None, ) -> list[str]: """ Partition the sql query Parameters ========== conn the connection string. query a SQL query or a list of SQL queries. partition_on the column on which to partition the result. partition_num how many partitions to generate. partition_range the value range of the partition column. """ partition_query = { "query": query, "column": partition_on, "min": partition_range and partition_range[0], "max": partition_range and partition_range[1], "num": partition_num, } return _partition_sql(conn, partition_query)
(conn: str | connectorx.ConnectionUrl, query: str, partition_on: str, partition_num: int, partition_range: Optional[tuple[int, int]] = None) -> list[str]
[ 0.02334984950721264, 0.036831084638834, -0.06851638853549957, 0.01728769950568676, 0.011569189839065075, 0.09142567962408066, -0.0010380770545452833, -0.0047096204943954945, -0.09361086785793304, -0.020829828456044197, 0.006286837160587311, 0.03721877932548523, 0.013860118575394154, -0.04419730231165886, -0.03633765131235123, 0.0007462039357051253, 0.06009282171726227, -0.04877915978431702, 0.05766091123223305, 0.02028352953493595, 0.02578175812959671, 0.03908676654100418, 0.022627325728535652, 0.015049639157950878, 0.009912672452628613, 0.05462983623147011, 0.013296197168529034, 0.018785614520311356, 0.027455899864435196, -0.04514891654253006, -0.001019903807900846, 0.03989740461111069, 0.031050894409418106, 0.044690731912851334, -0.06742379069328308, 0.02890094555914402, 0.06506237387657166, -0.021869556978344917, 0.03401147946715355, -0.005797811783850193, -0.0023327821400016546, 0.043351419270038605, -0.022803550586104393, -0.05114057660102844, 0.010317990556359291, 0.024125240743160248, 0.04691116884350777, -0.04493744671344757, -0.023420339450240135, 0.04567759484052658, 0.045078426599502563, 0.04546612128615379, -0.014098022133111954, -0.034645888954401016, -0.008000628091394901, -0.05043567717075348, 0.02634567953646183, -0.06488614529371262, -0.00858217105269432, 0.011040514335036278, -0.06470992416143417, 0.025023989379405975, -0.013084727339446545, 0.019296668469905853, -0.051493026316165924, -0.007282509934157133, -0.01507607288658619, -0.0462767593562603, -0.0907912626862526, 0.016697345301508904, 0.03505120798945427, 0.016609232872724533, -0.0006492800312116742, 0.012767521664500237, -0.038029417395591736, 0.01673259027302265, 0.016265593469142914, 0.03357091546058655, 0.013322630897164345, -0.04761607199907303, 0.039967894554138184, -0.0006977419834583998, 0.013807251118123531, -0.06294766813516617, 0.05212743952870369, -0.028019819408655167, -0.024142863228917122, 0.041835881769657135, -0.007282509934157133, -0.0207593385130167, 0.0030839424580335617, 0.027455899864435196, -0.02162284217774868, 0.012952557764947414, 0.029147662222385406, -0.012256468646228313, -0.049061119556427, -0.031650058925151825, -0.05716748163104057, 0.016494685783982277, -0.0278612170368433, 0.015269920229911804, 0.007375027984380722, -0.05417165160179138, 0.012688220478594303, -0.09960252791643143, -0.03915725648403168, 0.0027513171080499887, -0.0358794666826725, -0.031791042536497116, -0.009542599320411682, 0.06174933910369873, -0.0212351456284523, -0.020336396992206573, 0.0043747927993535995, 0.044690731912851334, -0.013031859882175922, -0.004612696822732687, 0.0250063668936491, -0.011075759306550026, 0.013727949932217598, -0.027050580829381943, 0.010036029852926731, -0.008648255839943886, -0.04701690375804901, 0.01455620862543583, 0.049801263958215714, -0.014115645550191402, 0.003978285938501358, -0.01989583484828472, 0.03339469060301781, 0.0311918742954731, -0.02759687975049019, 0.03341231495141983, -0.027702614665031433, 0.004484933335334063, -0.020812205970287323, 0.0160717461258173, -0.023367471992969513, -0.049589794129133224, -0.006088583264499903, -0.027491144835948944, -0.0330951064825058, 0.015666427090764046, 0.008480841293931007, -0.014758867211639881, 0.019173311069607735, 0.01445047277957201, 0.050541412085294724, 0.026292812079191208, -0.031033271923661232, 0.018468409776687622, 0.027226805686950684, -0.05445361137390137, 0.0025244271382689476, -0.025711268186569214, 0.03246069699525833, -0.047157883644104004, 0.039368726313114166, -0.037113044410943985, 0.0052427020855247974, -0.008718745782971382, -0.008507275953888893, 0.021517107263207436, -0.03813515231013298, 0.005956414621323347, 0.014036343432962894, -0.06139688938856125, -0.017129097133874893, -0.029993543401360512, 0.08353078365325928, 0.025499798357486725, 0.03965068981051445, 0.024283843114972115, -0.03852284699678421, 0.034681133925914764, 0.0129789924249053, -0.011648491024971008, -0.04363337904214859, -0.0088421031832695, -0.013965853489935398, -0.020565491169691086, 0.014239002950489521, 0.03506883233785629, -0.017578471451997757, -0.020424509420990944, -0.03235496208071709, -0.028090309351682663, 0.03637290000915527, -0.02227487601339817, -0.02613420970737934, -0.002667610300704837, 0.008388323709368706, -0.003471638076007366, -0.027491144835948944, -0.03380000963807106, -0.010511837899684906, 0.019966324791312218, -0.01971960812807083, 0.05988135188817978, 0.05480606108903885, 0.06583776324987411, 0.0236141886562109, -0.015084884129464626, 0.018697502091526985, 0.015974821522831917, -0.0651681125164032, -0.018820859491825104, 0.02764974720776081, -0.0434219092130661, -0.029024304822087288, -0.06115017458796501, 0.007476357743144035, 0.0698557049036026, 0.023596566170454025, 0.039580199867486954, 0.0021862948779016733, 0.01455620862543583, 0.06393453478813171, -0.03133285418152809, 0.030610332265496254, -0.023561319336295128, 0.013172839768230915, -0.00033097309642471373, 0.06552056223154068, -0.0307160671800375, 0.06139688938856125, -0.06315913796424866, -0.005524662788957357, 0.011948074214160442, -0.03609093651175499, -0.0425407849252224, 0.0203187745064497, 0.008326645009219646, 0.019701985642313957, 0.09022734314203262, -0.03159719333052635, -0.025147348642349243, 0.08747822791337967, -0.020741716027259827, -0.02738540805876255, 0.020477376878261566, 0.03600282594561577, -0.06583776324987411, -0.033694274723529816, 0.002912122756242752, -0.033429935574531555, 0.04324568435549736, -0.020248284563422203, 0.03508645296096802, -0.07010241597890854, -0.07655226439237595, 0.012890879064798355, -0.046734943985939026, 0.05131680145859718, 0.08776018768548965, -0.03362378478050232, 0.010855477303266525, -0.022539213299751282, 0.03552701696753502, -0.07105403393507004, -0.04775705188512802, -0.023279359564185143, -0.00948973186314106, 0.015833841636776924, -0.020354019477963448, -0.03068082220852375, 0.06115017458796501, -0.02028352953493595, -0.021340882405638695, 0.007392650470137596, 0.06879834830760956, -0.023032644763588905, -0.020565491169691086, 0.029306264594197273, -0.0003158287436235696, -0.0075027914717793465, -0.027790727093815804, -0.02699771337211132, -0.027314918115735054, 0.05304380878806114, -0.062066543847322464, -0.029411999508738518, -0.024072373285889626, 0.07394412904977798, -0.019349535927176476, -0.01980772241950035, -0.05727321654558182, 0.016397763043642044, -0.00029462663223966956, -0.06107968091964722, -0.036936819553375244, 0.003251356538385153, -0.008802453055977821, -0.025799380615353584, 0.06122066453099251, 0.05047092214226723, -0.034504909068346024, -0.035773731768131256, -0.04888489469885826, 0.036513879895210266, -0.009093225002288818, 0.0040663983672857285, 0.06153786927461624, -0.035985201597213745, 0.012256468646228313, 0.009198959916830063, -0.008670283481478691, 0.020354019477963448, -0.05797811597585678, -0.022891664877533913, -0.010538271628320217, 0.008881754241883755, 0.0002739752526395023, 0.02682148851454258, -0.0378531888127327, 0.047298867255449295, 0.05759042128920555, -0.013639836572110653, 0.056180618703365326, -0.018697502091526985, 0.08825362473726273, 0.00034969704574905336, 0.033218465745449066, -0.022380610927939415, -0.01467075478285551, -0.020776960998773575, 0.0012049403740093112, 0.029517734423279762, -0.025640778243541718, -0.026187077164649963, 0.03929823637008667, -0.02206340618431568, 0.021041298285126686, -0.03270741179585457, -0.0481095016002655, 0.026275189593434334, -0.018697502091526985, -0.02860136330127716, -0.005414521787315607, 0.047686561942100525, 0.007480763364583254, 0.04571283981204033, 0.006793484557420015, -0.00004123396138311364, 0.013366688042879105, -0.003156635444611311, 0.0037712210323661566, -0.042012106627225876, 0.028883323073387146, 0.012582485564053059, -0.008683500811457634, 0.011754225939512253, 0.022979777306318283, 0.05237415432929993, -0.018908971920609474, 0.011322474107146263, 0.00017925415886566043, -0.059000223875045776, 0.03198488801717758, 0.10065988451242447, -0.039227746427059174, 0.03929823637008667, 0.016477063298225403, 0.02994067594408989, 0.0023217680864036083, -0.0033438748214393854, -0.08219147473573685, 0.0519159696996212, 0.043562889099121094, -0.04479646682739258, -0.049977488815784454, 0.023279359564185143, 0.00234599900431931, -0.03753598406910896, -0.0307160671800375, -0.08959293365478516, 0.020354019477963448, 0.0005429941229522228, 0.056568317115306854, 0.05022420361638069, -0.033729519695043564, 0.11750701814889908, 0.03094515949487686, -0.05536998435854912, 0.01785162091255188, 0.001871292246505618, -0.06347634643316269, 0.02135850489139557, 0.01706741936504841, -0.038981031626462936, 0.06738854944705963, -0.010203443467617035, 0.027491144835948944, -0.04303421452641487, -0.012899690307676792, 0.012467938475310802, -0.04832097142934799, -0.015833841636776924, -0.020829828456044197, -0.022539213299751282, -0.0378531888127327, -0.02604609727859497, 0.016961682587862015, 0.0094456747174263, -0.0888175442814827, 0.04134245216846466, -0.014723622240126133, 0.019296668469905853, -0.02209865115582943, -0.002998032607138157, -0.07901941984891891, -0.0094456747174263, 0.04419730231165886, 0.014705999754369259, -0.019402403384447098, 0.025323573499917984, -0.014635509811341763, 0.0008954447112046182, 0.0203187745064497, 0.01724364422261715, -0.03439917415380478, 0.034346308559179306, 0.02717393822968006, -0.0325135663151741, -0.03602044656872749, 0.05473557114601135, -0.011586812324821949, -0.007247264496982098, -0.024319088086485863, -0.010864288546144962, 0.023896148428320885, -0.0509643517434597, -0.0088421031832695, 0.026680506765842438, 0.015763351693749428, 0.034117214381694794, 0.07024339586496353, 0.0188913494348526, -0.054277386516332626, 0.060515761375427246, 0.02162284217774868, 0.016961682587862015, -0.01677664741873741, 0.08959293365478516, 0.028495628386735916, -0.017957355827093124, -0.025728890672326088, -0.07542441785335541, -0.020213039591908455, 0.033341825008392334, 0.054488856345415115, -0.015005582943558693, 0.01356053538620472, 0.09008636325597763, 0.0012875460088253021, 0.011622057296335697, -0.012617730535566807, -0.021481862291693687, 0.03714828938245773, 0.05329052358865738, 0.05455934628844261, -0.04102524742484093, -0.01519061904400587, 0.031650058925151825, -0.0434923991560936, -0.04405631870031357, -0.017367001622915268, 0.00907560158520937, -0.047157883644104004, 0.009348751045763493, 0.055052779614925385, -0.03926299139857292, 0.02699771337211132, 0.02958822436630726, -0.006449845153838396, 0.030134523287415504, 0.014705999754369259, 0.040708038955926895, 0.04099000245332718, 0.013877741061151028, -0.011595623567700386, 0.01611580140888691, 0.01284682285040617, 0.013727949932217598, -0.03439917415380478, 0.01806309074163437, 0.036161426454782486, -0.058859243988990784, -0.04892013967037201, -0.00022840448946226388, 0.009278261102735996, 0.048638176172971725, -0.007819997146725655, -0.03374714031815529, -0.034769248217344284, 0.008000628091394901, 0.013860118575394154, 0.031738173216581345, -0.013296197168529034, -0.02435433305799961, 0.0538192018866539, -0.02179906703531742, 0.003330657724291086, 0.008626227267086506, 0.08014725893735886, 0.09762880951166153, 0.0735916793346405, 0.00929588358849287, -0.050541412085294724, -0.039967894554138184, 0.022803550586104393, -0.021816689521074295, 0.004106048960238695, -0.04585381969809532, -0.008216504007577896, -0.020635981112718582, 0.015340411104261875, 0.0016311852959915996, -0.023843280971050262, 0.009181337431073189, 0.033306580036878586, -0.019261423498392105, 0.01702336221933365, -0.018010223284363747, 0.0207593385130167, -0.031526703387498856, -0.0325840562582016, -0.005833056755363941, 0.061855074018239975, -0.048814404755830765, 0.04388009384274483, 0.07056060433387756, -0.04550136625766754, -0.003103767754510045, 0.05797811597585678, -0.06633119285106659, 0.05554620921611786, 0.015631182119250298, 0.019561005756258965, -0.03579135611653328, 0.034769248217344284, 0.01673259027302265, -0.027526389807462692, -0.024900631979107857, 0.061255909502506256, 0.05688552185893059, 0.032777901738882065, 0.005136967170983553, -0.04176539182662964, 0.0434219092130661, -0.01384249608963728, 0.05170449614524841, -0.037888433784246445, 0.01697930507361889, -0.01625678315758705, 0.008304616436362267, -0.04324568435549736, 0.000501140661071986, -0.0115515673533082, -0.019296668469905853, 0.013965853489935398, 0.03700730949640274, 0.03378238528966904, -0.02729729562997818, -0.008357483893632889, -0.0022622919641435146, -0.04292847961187363, 0.025112101808190346, -0.01746392622590065, 0.03053984045982361, 0.0250063668936491, 0.03452253341674805, -0.015199430286884308, 0.011745414696633816, -0.02669813111424446, -0.011560378596186638, -0.07112452387809753, -0.0036588774528354406, -0.029623469337821007, -0.04832097142934799, 0.025253083556890488, -0.006352921482175589, -0.012741087935864925, -0.015604748390614986, 0.07493098825216293, -0.038840051740407944, -0.030627954751253128, 0.04285798966884613, -0.004599479958415031, 0.04419730231165886, -0.027279673144221306, 0.0025134130846709013, 0.05047092214226723, 0.028566118329763412, -0.04793327674269676, -0.03487498313188553, -0.07380314916372299, -0.04698165878653526, -0.035544637590646744, -0.055616699159145355, 0.04839146137237549, -0.005366059951484203, 0.04687592387199402, 0.050541412085294724, 0.03189677745103836, -0.01971960812807083, 0.00305971154011786, -0.0064366282895207405, 0.0021466442849487066, -0.017181964591145515, 0.00957784429192543, -0.03270741179585457, 0.00992148369550705, 0.01876799203455448, -0.013419555500149727, -0.05064714699983597, -0.02812555432319641, 0.0396859347820282, -0.058083854615688324, 0.011075759306550026, 0.08656185865402222, 0.050541412085294724, -0.008687905967235565, -0.010670441202819347, 0.0221867635846138, -0.0011542756110429764, -0.015587125904858112, 0.015393278561532497, 0.010053652338683605, 0.009939106181263924, 0.04268176481127739, 0.027526389807462692, -0.008071118034422398, 0.022345365956425667, -0.03223160281777382, -0.0500127337872982, -0.032601676881313324, -0.006502713076770306, -0.07901941984891891, -0.008749585598707199, 0.0650271326303482, 0.03038123808801174, -0.08353078365325928, 0.0015584923094138503, -0.0642869845032692, 0.011137438006699085, -0.021006053313612938, -0.03246069699525833, 0.00840594619512558, 0.005744944326579571, 0.020036814734339714, 0.04324568435549736, 0.04698165878653526, 0.006022498942911625, 0.04698165878653526, -0.06738854944705963, -0.038240887224674225, -0.004824167117476463, -0.0198429673910141, 0.019120443612337112, 0.0017853823956102133, -0.03561513125896454, 0.015067261643707752, -0.01074974238872528, 0.044690731912851334, 0.002614742610603571, -0.029658714309334755, -0.034258194267749786, -0.006013687700033188, 0.019261423498392105, -0.043950583785772324, -0.010714497417211533, -0.029041927307844162, 0.03332420065999031, -0.0424702912569046, 0.024988744407892227, -0.011481077410280704, -0.0320730023086071, -0.034293439239263535, -0.010890722274780273, 0.005198645871132612, -0.003799857571721077, -0.017560848966240883, 0.027931706979870796, -0.013111161068081856, -0.050153713673353195, -0.0813455879688263, 0.004872628953307867, 0.03305986151099205, 0.014802923426032066, 0.01176303718239069, -0.03196726739406586, 0.01615985855460167, -0.04380960389971733, -0.009128469973802567, -0.013296197168529034, -0.009806936606764793, -0.008542520925402641, 0.03357091546058655, 0.0005094012012705207, 0.01776350848376751, 0.00957784429192543, 0.020635981112718582, 0.01559593714773655, -0.021041298285126686, 0.0043659815564751625, -0.059035468846559525, -0.004352764692157507, 0.018468409776687622, 0.00021449921769089997, -0.01862701214849949, 0.03905152156949043, 0.005418927408754826, 0.023367471992969513, -0.0048682233318686485, 0.02275068312883377, 0.042047351598739624, 0.012036186642944813, -0.002502399031072855, -0.0032579649705439806, -0.049589794129133224, 0.02491825446486473, -0.01862701214849949, -0.056568317115306854, 0.0212703924626112, 0.0405670590698719, 0.041659656912088394, -0.009304694831371307, 0.02438957989215851, -0.036831084638834, 0.027279673144221306, -0.013816062361001968, -0.03080417960882187, 0.10503026843070984, -0.024777274578809738, 0.018397919833660126, 0.06379355490207672, -0.018468409776687622, -0.007066634017974138, -0.03124474175274372, -0.038064662367105484, -0.06601399183273315, -0.044267792254686356, 0.01547257974743843, -0.039403971284627914, 0.0307160671800375, 0.0019406809005886316, -0.005414521787315607, 0.03341231495141983, -0.043915338814258575, -0.002753519918769598, -0.0500127337872982, 0.0071283127181231976, 0.01072330866008997, 0.022045783698558807, 0.013957042247056961, 0.025711268186569214, -0.02842513844370842, -0.018944216892123222, -0.030698444694280624, 0.1096121221780777, 0.029447244480252266, 0.011542756110429764, 0.044831711798906326, -0.05554620921611786, 0.07274580001831055, -0.045078426599502563 ]
20,390
connectorx
read_sql
Run the SQL query, download the data from database into a dataframe. Parameters ========== conn the connection string, or dict of connection string mapping for federated query. query a SQL query or a list of SQL queries. return_type the return type of this function; one of "arrow(2)", "pandas", "modin", "dask" or "polars(2)". protocol backend-specific transfer protocol directive; defaults to 'binary' (except for redshift connection strings, where 'cursor' will be used instead). partition_on the column on which to partition the result. partition_range the value range of the partition column. partition_num how many partitions to generate. index_col the index column to set; only applicable for return type "pandas", "modin", "dask". Examples ======== Read a DataFrame from a SQL query using a single thread: >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(postgres_url, query) Read a DataFrame in parallel using 10 threads by automatically partitioning the provided SQL on the partition column: >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(postgres_url, query, partition_on="partition_col", partition_num=10) Read a DataFrame in parallel using 2 threads by explicitly providing two SQL queries: >>> postgres_url = "postgresql://username:password@server:port/database" >>> queries = ["SELECT * FROM lineitem WHERE partition_col <= 10", "SELECT * FROM lineitem WHERE partition_col > 10"] >>> read_sql(postgres_url, queries)
def read_sql( conn: str | ConnectionUrl | dict[str, str] | dict[str, ConnectionUrl], query: list[str] | str, *, return_type: Literal[ "pandas", "polars", "polars2", "arrow", "arrow2", "modin", "dask" ] = "pandas", protocol: Protocol | None = None, partition_on: str | None = None, partition_range: tuple[int, int] | None = None, partition_num: int | None = None, index_col: str | None = None, ) -> pd.DataFrame | mpd.DataFrame | dd.DataFrame | pl.DataFrame | pa.Table: """ Run the SQL query, download the data from database into a dataframe. Parameters ========== conn the connection string, or dict of connection string mapping for federated query. query a SQL query or a list of SQL queries. return_type the return type of this function; one of "arrow(2)", "pandas", "modin", "dask" or "polars(2)". protocol backend-specific transfer protocol directive; defaults to 'binary' (except for redshift connection strings, where 'cursor' will be used instead). partition_on the column on which to partition the result. partition_range the value range of the partition column. partition_num how many partitions to generate. index_col the index column to set; only applicable for return type "pandas", "modin", "dask". Examples ======== Read a DataFrame from a SQL query using a single thread: >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(postgres_url, query) Read a DataFrame in parallel using 10 threads by automatically partitioning the provided SQL on the partition column: >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(postgres_url, query, partition_on="partition_col", partition_num=10) Read a DataFrame in parallel using 2 threads by explicitly providing two SQL queries: >>> postgres_url = "postgresql://username:password@server:port/database" >>> queries = ["SELECT * FROM lineitem WHERE partition_col <= 10", "SELECT * FROM lineitem WHERE partition_col > 10"] >>> read_sql(postgres_url, queries) """ if isinstance(query, list) and len(query) == 1: query = query[0] query = remove_ending_semicolon(query) if isinstance(conn, dict): assert partition_on is None and isinstance( query, str ), "Federated query does not support query partitioning for now" assert ( protocol is None ), "Federated query does not support specifying protocol for now" query = remove_ending_semicolon(query) result = _read_sql2(query, conn) df = reconstruct_arrow(result) if return_type == "pandas": df = df.to_pandas(date_as_object=False, split_blocks=False) if return_type == "polars": pl = try_import_module("polars") try: # api change for polars >= 0.8.* df = pl.from_arrow(df) except AttributeError: df = pl.DataFrame.from_arrow(df) return df if isinstance(query, str): query = remove_ending_semicolon(query) if partition_on is None: queries = [query] partition_query = None else: partition_query = { "query": query, "column": partition_on, "min": partition_range[0] if partition_range else None, "max": partition_range[1] if partition_range else None, "num": partition_num, } queries = None elif isinstance(query, list): queries = [remove_ending_semicolon(subquery) for subquery in query] partition_query = None if partition_on is not None: raise ValueError("Partition on multiple queries is not supported.") else: raise ValueError("query must be either str or a list of str") conn, protocol = rewrite_conn(conn, protocol) if return_type in {"modin", "dask", "pandas"}: try_import_module("pandas") result = _read_sql( conn, "pandas", queries=queries, protocol=protocol, partition_query=partition_query, ) df = reconstruct_pandas(result) if index_col is not None: df.set_index(index_col, inplace=True) if return_type == "modin": mpd = try_import_module("modin.pandas") df = mpd.DataFrame(df) elif return_type == "dask": dd = try_import_module("dask.dataframe") df = dd.from_pandas(df, npartitions=1) elif return_type in {"arrow", "arrow2", "polars", "polars2"}: try_import_module("pyarrow") result = _read_sql( conn, "arrow2" if return_type in {"arrow2", "polars", "polars2"} else "arrow", queries=queries, protocol=protocol, partition_query=partition_query, ) df = reconstruct_arrow(result) if return_type in {"polars", "polars2"}: pl = try_import_module("polars") try: df = pl.DataFrame.from_arrow(df) except AttributeError: # api change for polars >= 0.8.* df = pl.from_arrow(df) else: raise ValueError(return_type) return df
(conn: 'str | ConnectionUrl | dict[str, str] | dict[str, ConnectionUrl]', query: 'list[str] | str', *, return_type: "Literal['pandas', 'polars', 'polars2', 'arrow', 'arrow2', 'modin', 'dask']" = 'pandas', protocol: 'Protocol | None' = None, partition_on: 'str | None' = None, partition_range: 'tuple[int, int] | None' = None, partition_num: 'int | None' = None, index_col: 'str | None' = None) -> 'pd.DataFrame | mpd.DataFrame | dd.DataFrame | pl.DataFrame | pa.Table'
[ 0.029847031459212303, -0.004911696072667837, -0.0029671164229512215, 0.05724198371171951, 0.00627591647207737, 0.04136376455426216, 0.0061653717420995235, 0.004977017641067505, -0.06805524975061417, -0.06323149055242538, 0.005547326989471912, 0.027053268626332283, -0.05125247687101364, 0.054870299994945526, -0.024440398439764977, 0.026731684803962708, 0.012290545739233494, 0.032781485468149185, 0.04486099258065224, 0.0240786150097847, -0.008627500385046005, 0.009361114352941513, -0.008049653843045235, 0.037605248391628265, -0.006416609510779381, -0.0005583756719715893, 0.005672946106642485, -0.01370752602815628, -0.011838317848742008, -0.026430198922753334, 0.06073921173810959, -0.006366361863911152, 0.0010897432221099734, 0.04936316981911659, -0.08393347263336182, 0.009466634131968021, 0.017787624150514603, -0.07770277559757233, 0.03979604318737984, 0.003562549827620387, -0.062105946242809296, -0.0027812006883323193, 0.019727179780602455, -0.060176439583301544, -0.06439723074436188, 0.0190237145870924, 0.0298269335180521, -0.08329030126333237, -0.021405447274446487, 0.01597871445119381, 0.043052081018686295, 0.045102182775735855, -0.028982773423194885, 0.027193961665034294, 0.0171042587608099, -0.05515168607234955, -0.06250792741775513, -0.012109654024243355, -0.01300405990332365, 0.029022973030805588, -0.026932675391435623, 0.012290545739233494, -0.03704247623682022, 0.04988574609160423, -0.05294079706072807, 0.016933416947722435, 0.0709897056221962, -0.08803366869688034, -0.11979010701179504, -0.053342774510383606, -0.010984109714627266, 0.07179366797208786, -0.027435149997472763, 0.05085049942135811, -0.021485842764377594, -0.01497376337647438, 0.010461535304784775, 0.031374555081129074, -0.009180223569273949, -0.02498307079076767, 0.024581091478466988, 0.012893515639007092, -0.019375447183847427, -0.0018805137369781733, 0.031032873317599297, -0.0017234901897609234, 0.036198318004608154, 0.08136079460382462, -0.0215662382543087, -0.03561544790863991, -0.007270817179232836, -0.01541594136506319, -0.018671981990337372, 0.028219012543559074, 0.013225149363279343, -0.05366436019539833, -0.02663118951022625, -0.016189754009246826, -0.023415347561240196, 0.024018317461013794, -0.02878178469836712, 0.010190199129283428, -0.00888878758996725, -0.025284556671977043, 0.002409368986263871, -0.09543010592460632, 0.0037610274739563465, 0.00647188164293766, -0.011577030643820763, -0.07513010501861572, -0.07215545326471329, 0.04224812239408493, -0.022852575406432152, -0.014571783132851124, -0.0076225497759878635, 0.03032940812408924, -0.03728366643190384, -0.013084456324577332, -0.012099605053663254, 0.022490793839097023, -0.02371683344244957, 0.042408913373947144, -0.00012318496010266244, -0.04578554630279541, -0.007552203256636858, -0.005969406105577946, 0.015395842492580414, -0.0608598068356514, 0.03463059663772583, 0.01863178424537182, 0.06242752820253372, 0.0019508602563291788, -0.032902080565690994, 0.022510891780257225, -0.01508430764079094, 0.026028219610452652, 0.004889084491878748, 0.0008378775091841817, -0.02892247773706913, -0.005039826966822147, 0.007029629312455654, -0.03997693210840225, 0.009361114352941513, -0.013205050490796566, -0.017345447093248367, 0.001591590465977788, 0.01675252616405487, -0.026912575587630272, -0.03348495438694954, 0.033665843307971954, -0.006502029951661825, -0.041524555534124374, -0.03119366616010666, -0.03917297348380089, -0.0012348330346867442, -0.07878812402486801, -0.0019056374439969659, -0.022410398349165916, 0.015245099551975727, -0.026812080293893814, -0.0021003466099500656, -0.0316760428249836, -0.00856217835098505, 0.05478990450501442, -0.07963228225708008, 0.0027410027105361223, 0.002964604180306196, -0.05551346763968468, -0.028761684894561768, -0.000638457655441016, 0.0723162442445755, 0.04373544827103615, 0.03243980556726456, -0.02775673381984234, -0.07689881324768066, 0.05507129058241844, 0.04003722965717316, -0.019084010273218155, -0.023535942658782005, -0.04747386276721954, -0.01798861473798752, -0.04920237883925438, -0.056759607046842575, 0.009969109669327736, 0.009406337514519691, 0.03702237829566002, -0.05937247723340988, -0.019465891644358635, 0.10556000471115112, 0.014501436613500118, -0.0659247562289238, -0.00022784114116802812, 0.025163961574435234, 0.011607179418206215, -0.02104366384446621, -0.0786675289273262, 0.022912872955203056, 0.018099159002304077, -0.04884059727191925, 0.04932297393679619, 0.06142257899045944, 0.04654930904507637, 0.027857229113578796, -0.01612945646047592, -0.03690178319811821, -0.02015930786728859, -0.08075782656669617, -0.031655941158533096, 0.006843713112175465, -0.025023268535733223, -0.04884059727191925, -0.07846654206514359, 0.0002424443227937445, 0.016008863225579262, 0.022631486877799034, 0.03348495438694954, -0.03231921046972275, 0.03917297348380089, 0.08449624478816986, 0.036841485649347305, 0.053704556077718735, -0.04606693238019943, -0.027877328917384148, -0.005929208360612392, 0.052579011768102646, -0.06439723074436188, 0.04956416040658951, 0.0133256446570158, 0.04771505296230316, -0.032037824392318726, -0.006873861886560917, -0.06696990877389908, 0.05619683489203453, -0.03756505250930786, 0.025967922061681747, 0.05607623979449272, -0.03997693210840225, 0.017435891553759575, 0.06877881288528442, 0.001410699333064258, -0.010310792364180088, 0.010215322487056255, 0.01521495170891285, -0.03573604300618172, -0.0608598068356514, -0.01000930741429329, 0.018812675029039383, 0.016079209744930267, -0.021003466099500656, 0.005087562371045351, -0.017536386847496033, -0.029967626556754112, 0.018069010227918625, -0.022872675210237503, 0.039494555443525314, 0.034690894186496735, 0.010320842266082764, -0.032902080565690994, -0.01414970401674509, 0.008788292296230793, -0.04009752720594406, -0.024319803342223167, -0.011426287703216076, 0.00036303838714957237, -0.02040049619972706, 0.015325495973229408, -0.027817031368613243, -0.015194852836430073, -0.0067231194116175175, -0.025787031278014183, 0.0748889148235321, 0.05294079706072807, 0.013747723773121834, 0.012712624855339527, 0.04389623925089836, -0.017978565767407417, -0.005813639145344496, -0.047755248844623566, -0.023435447365045547, -0.022149110212922096, 0.010953960940241814, -0.040378913283348083, -0.027817031368613243, -0.043052081018686295, -0.014632079750299454, -0.0044217826798558235, -0.022852575406432152, -0.016270149499177933, 0.00647188164293766, 0.0054367827251553535, -0.00016055654850788414, -0.08232554793357849, 0.005185544956475496, 0.015425991266965866, -0.025967922061681747, 0.06761307269334793, 0.019938219338655472, -0.04855921119451523, -0.048519011586904526, -0.08320990949869156, -0.013456287793815136, -0.033545248210430145, 0.04212752729654312, 0.09655565023422241, -0.01964678429067135, -0.017697179690003395, 0.010411287657916546, -0.0418461412191391, -0.013858268037438393, -0.06077941134572029, 0.006150297354906797, 0.021144159138202667, -0.004122809506952763, 0.0145818330347538, -0.003637921065092087, -0.04337366670370102, -0.005492054857313633, 0.025787031278014183, 0.031253963708877563, 0.013074406422674656, -0.05772436037659645, 0.06640713661909103, 0.024400198832154274, -0.012742772698402405, 0.03704247623682022, 0.0024885088205337524, -0.015255149453878403, 0.01503405999392271, 0.06299030035734177, -0.02106376364827156, 0.02815871499478817, -0.00035707149072550237, 0.024560991674661636, -0.01541594136506319, -0.015114456415176392, -0.046750299632549286, 0.006617599632591009, -0.0443786159157753, 0.023515842854976654, 0.01736554503440857, 0.05342317000031471, -0.0018591585103422403, 0.0773811936378479, -0.012732723727822304, -0.012933713383972645, -0.000819662818685174, 0.01066252589225769, -0.008858638815581799, 0.000455054163467139, 0.016179703176021576, -0.016179703176021576, -0.002315154764801264, -0.028560694307088852, 0.0837726816534996, 0.017425842583179474, -0.02053114026784897, -0.04638851806521416, 0.04932297393679619, -0.03412812203168869, 0.0023189233615994453, 0.07533109188079834, -0.028198912739753723, 0.01701381243765354, 0.054106537252664566, 0.01216995157301426, -0.026671387255191803, 0.009210371412336826, -0.04023822024464607, 0.0202799029648304, -0.011094653978943825, -0.029646040871739388, -0.032299112528562546, 0.03909257799386978, -0.004185619298368692, -0.03585663437843323, -0.023777130991220474, -0.059412676841020584, 0.024018317461013794, 0.02295307070016861, 0.08401386439800262, 0.028641091659665108, -0.024701684713363647, 0.06451782584190369, 0.01927495189011097, 0.007632599677890539, 0.006416609510779381, -0.024540891870856285, -0.022530991584062576, 0.029485249891877174, 0.006316114217042923, -0.02992742694914341, 0.057925350964069366, 0.02068188227713108, 0.0013591956812888384, -0.035836536437273026, 0.011094653978943825, -0.020088961347937584, -0.01789817027747631, -0.01559683308005333, -0.043695248663425446, -0.012079506181180477, -0.021465744823217392, -0.00016770113143138587, -0.00912495143711567, -0.01813935674726963, -0.03979604318737984, 0.06584435701370239, -0.07147208601236343, -0.005095099564641714, -0.0456649549305439, 0.026450298726558685, -0.05603604391217232, -0.04136376455426216, 0.04662970453500748, -0.006597500294446945, 0.03720327094197273, 0.04082109034061432, 0.012099605053663254, 0.037866536527872086, 0.055634062737226486, 0.04094168543815613, -0.02649049647152424, -0.004075074568390846, 0.00971284694969654, -0.019053863361477852, 0.006476906128227711, 0.0077682677656412125, 0.02092307060956955, 0.0019596535712480545, -0.015305397100746632, -0.0010338429128751159, 0.0021882797591388226, -0.05020733177661896, -0.019837724044919014, -0.002475946908816695, 0.021968219429254532, 0.020842675119638443, 0.03225891292095184, 0.06709049642086029, -0.03879109025001526, 0.07504970580339432, 0.04148435965180397, 0.012581980787217617, -0.00685376301407814, 0.04252950847148895, -0.03121376410126686, -0.0035374260041862726, -0.01072282250970602, -0.08594337105751038, -0.030751487240195274, 0.04172554612159729, 0.019586486741900444, 0.01992817036807537, 0.04614732787013054, 0.003776101628318429, 0.008989282883703709, 0.03844940662384033, 0.049282774329185486, -0.03121376410126686, 0.026972873136401176, 0.026530694216489792, 0.0014220050070434809, -0.030650991946458817, -0.049443569034338, 0.04880039766430855, -0.004793614149093628, -0.04855921119451523, -0.013747723773121834, -0.04196673631668091, -0.030470101162791252, -0.021124061197042465, 0.01083336677402258, -0.049805350601673126, -0.0057533420622348785, 0.03690178319811821, 0.02269178442656994, -0.0196367334574461, 0.0023691710084676743, 0.004406708292663097, 0.01980757527053356, 0.00009539179154671729, -0.011506684124469757, 0.013456287793815136, 0.011778020299971104, 0.02586742676794529, -0.06391485780477524, 0.028460199013352394, 0.04486099258065224, 0.015506386756896973, -0.03704247623682022, -0.010863515548408031, 0.0418461412191391, 0.05044851824641228, 0.028480298817157745, 0.016521386802196503, 0.027555745095014572, 0.004371535032987595, 0.02397811971604824, 0.08859644085168839, -0.053463369607925415, -0.0104514854028821, -0.02395802177488804, -0.012923664413392544, -0.012250347062945366, 0.004605185706168413, 0.018993565812706947, 0.081159807741642, 0.055593863129615784, -0.0015865657478570938, -0.06319129467010498, -0.06628654152154922, 0.04124316945672035, 0.0068185897544026375, -0.01248148549348116, -0.03207802027463913, 0.0022548579145222902, 0.032540298998355865, 0.0418863408267498, -0.027455249801278114, -0.03814792260527611, 0.04220792278647423, 0.0020337686873972416, -0.017687130719423294, 0.019556337967514992, -0.015526486560702324, 0.006667846813797951, -0.02055123820900917, -0.003786151297390461, 0.025163961574435234, 0.034570299088954926, -0.06142257899045944, 0.04855921119451523, 0.05667921155691147, -0.09719882160425186, 0.03704247623682022, 0.0009182735811918974, -0.036198318004608154, 0.02930435910820961, 0.006637698505073786, -0.013998961076140404, 0.01351658534258604, 0.07275842130184174, -0.040519606322050095, -0.071110300719738, -0.028500398620963097, -0.04070049896836281, 0.04005732759833336, 0.01878252625465393, 0.017596684396266937, -0.005145346745848656, -0.0011996597750112414, -0.04461980611085892, 0.0787077248096466, 0.0069894311018288136, -0.0019835212733596563, -0.0342688150703907, -0.00754215382039547, 0.003997190855443478, 0.0000511111575178802, -0.011114752851426601, -0.014441139996051788, -0.0342487134039402, 0.04550416022539139, 0.008773218840360641, -0.012913614511489868, 0.013144752942025661, 0.049403369426727295, 0.020219605416059494, 0.009180223569273949, -0.031897131353616714, 0.04033871367573738, 0.01255183294415474, 0.030650991946458817, -0.025163961574435234, 0.034550201147794724, -0.012290545739233494, 0.0010746689513325691, -0.0043639978393912315, -0.0036328963469713926, -0.04260990396142006, -0.007220569998025894, 0.04924257844686508, 0.013586931861937046, -0.01571742631494999, -0.017184654250741005, 0.06556297093629837, -0.021526040509343147, 0.021244654431939125, 0.034570299088954926, -0.021023565903306007, 0.006115124095231295, -0.027193961665034294, 0.030228912830352783, 0.025807131081819534, 0.030530398711562157, 0.016682179644703865, -0.02092307060956955, -0.06286970525979996, 0.0027183913625776768, -0.01072282250970602, -0.07428594678640366, 0.021907921880483627, -0.021244654431939125, -0.06524138897657394, 0.00836118869483471, 0.0013466337695717812, 0.00618044612929225, -0.0016003837808966637, 0.0013591956812888384, 0.013697476126253605, 0.023133961483836174, 0.02588752657175064, -0.019496040418744087, -0.0020902971737086773, 0.03921316936612129, -0.042167726904153824, -0.0698239654302597, -0.03844940662384033, 0.029766635969281197, -0.06270891427993774, -0.03308297321200371, 0.05483010411262512, 0.06230693310499191, -0.004708193242549896, -0.024400198832154274, 0.06817584484815598, 0.0027384902350604534, -0.02765623852610588, 0.0014383355155587196, 0.008727995678782463, 0.03155544772744179, 0.038389112800359726, 0.03728366643190384, 0.02383742667734623, 0.05973426252603531, -0.07287901639938354, -0.005426732823252678, -0.013406040146946907, -0.0038162998389452696, -0.045222774147987366, -0.0005483261775225401, 0.022108912467956543, 0.050810299813747406, -0.05278000235557556, 0.0027510521467775106, -0.034570299088954926, -0.008672723546624184, -0.0028314481023699045, 0.026530694216489792, 0.06110099330544472, 0.03272119164466858, 0.013174901716411114, 0.023777130991220474, 0.03656009957194328, 0.01370752602815628, 0.07203485816717148, -0.006466856691986322, -0.006667846813797951, 0.005446832161396742, 0.029083268716931343, 0.04409722983837128, 0.009727921336889267, -0.007376336958259344, 0.055754657834768295, 0.020983368158340454, 0.008577252738177776, -0.021606437861919403, 0.036982182413339615, 0.0507299043238163, 0.010602228343486786, -0.004791101906448603, 0.017918268218636513, -0.0058789607137441635, 0.022289803251624107, 0.07537129521369934, -0.03615812212228775, -0.00517047056928277, -0.05820673704147339, -0.01014497596770525, 0.0035173268988728523, 0.009612351655960083, 0.06813564896583557, 0.0014634592225775123, -0.015858119353652, 0.02080247737467289, -0.019757328554987907, 0.001405674614943564, -0.029384754598140717, 0.017345447093248367, -0.04932297393679619, 0.01146648544818163, -0.007180371787399054, -0.04880039766430855, 0.041685350239276886, -0.037846438586711884, -0.02994752675294876, -0.024641387164592743, -0.04642871767282486, -0.008079802617430687, 0.052579011768102646, -0.008034579455852509, -0.005132785066962242, 0.056397825479507446, 0.05374475568532944, 0.08843564987182617, 0.03601742908358574, -0.025405149906873703, -0.015124506317079067, -0.01662188209593296, -0.04353445768356323, -0.02928425930440426, -0.0196367334574461, 0.023415347561240196, 0.03350505232810974, 0.045463964343070984, -0.025666438043117523, -0.0009647525148466229, 0.05177505314350128, -0.04021812230348587, -0.01319500058889389, -0.015144605189561844, -0.027053268626332283, 0.030731387436389923, 0.03185693174600601, -0.056357625871896744, 0.02687237784266472, 0.011536831967532635, 0.02142554521560669, 0.019697031006217003, 0.043212875723838806, -0.012893515639007092, 0.04017792269587517, -0.008657649159431458, 0.0031530323904007673, 0.0875512957572937, -0.06584435701370239, 0.026611091569066048, 0.040579903870821, -0.021244654431939125, -0.002447054721415043, -0.034570299088954926, -0.027435149997472763, -0.09559089690446854, -0.05302119255065918, -0.011958912014961243, -0.024299705401062965, 0.026671387255191803, -0.03374623879790306, 0.000310906587401405, 0.04538356885313988, -0.007074852008372545, -0.026952773332595825, -0.06254812330007553, 0.0456649549305439, 0.010984109714627266, 0.04614732787013054, -0.0061653717420995235, 0.036580201238393784, -0.02980683371424675, -0.033424656838178635, -0.029103368520736694, 0.08859644085168839, 0.040640201419591904, 0.015446090139448643, 0.007838614284992218, -0.06407564878463745, -0.0065321787260472775, -0.012300594709813595 ]
20,391
connectorx
read_sql_pandas
Run the SQL query, download the data from database into a dataframe. First several parameters are in the same name and order with `pandas.read_sql`. Parameters ========== Please refer to `read_sql` Examples ======== Read a DataFrame from a SQL query using a single thread: >>> # from pandas import read_sql >>> from connectorx import read_sql_pandas as read_sql >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(query, postgres_url)
def read_sql_pandas( sql: list[str] | str, con: str | ConnectionUrl | dict[str, str] | dict[str, ConnectionUrl], index_col: str | None = None, protocol: Protocol | None = None, partition_on: str | None = None, partition_range: tuple[int, int] | None = None, partition_num: int | None = None, ) -> pd.DataFrame: """ Run the SQL query, download the data from database into a dataframe. First several parameters are in the same name and order with `pandas.read_sql`. Parameters ========== Please refer to `read_sql` Examples ======== Read a DataFrame from a SQL query using a single thread: >>> # from pandas import read_sql >>> from connectorx import read_sql_pandas as read_sql >>> postgres_url = "postgresql://username:password@server:port/database" >>> query = "SELECT * FROM lineitem" >>> read_sql(query, postgres_url) """ return read_sql( con, sql, return_type="pandas", protocol=protocol, partition_on=partition_on, partition_range=partition_range, partition_num=partition_num, index_col=index_col, )
(sql: 'list[str] | str', con: 'str | ConnectionUrl | dict[str, str] | dict[str, ConnectionUrl]', index_col: 'str | None' = None, protocol: 'Protocol | None' = None, partition_on: 'str | None' = None, partition_range: 'tuple[int, int] | None' = None, partition_num: 'int | None' = None) -> 'pd.DataFrame'
[ -0.0018295738846063614, 0.014434773474931717, 0.012916335836052895, 0.0567011758685112, 0.028523573651909828, 0.06004558503627777, -0.013377632945775986, -0.014338670298457146, -0.043092891573905945, -0.06281337141990662, 0.007794009055942297, -0.011119196191430092, -0.04324666038155556, 0.017308274284005165, -0.030657075345516205, 0.0009057772695086896, 0.02748565375804901, 0.03132980316877365, 0.03940251097083092, 0.017250612378120422, 0.026582280173897743, 0.04509184882044792, 0.008101540617644787, 0.01815398596227169, -0.007106867618858814, 0.032483045011758804, -0.01442516315728426, 0.013041269965469837, -0.020412422716617584, -0.03286746144294739, 0.059468962252140045, 0.014367501251399517, 0.026351630687713623, 0.053702738136053085, -0.09964030236005783, 0.0008216865244321525, 0.025121504440903664, -0.07054010778665543, -0.002717331750318408, -0.021142810583114624, -0.07534529268741608, 0.00575180584564805, 0.037192124873399734, -0.06650374829769135, -0.08003515005111694, 0.01135945599526167, 0.03259836882352829, -0.03319421410560608, -0.02410280518233776, -0.0043030427768826485, 0.04486120119690895, 0.05474065989255905, -0.041363026946783066, 0.013387243263423443, 0.02560202218592167, -0.0405941978096962, -0.03857601806521416, 0.010340756736695766, -0.001056539942510426, 0.032310061156749725, -0.019134243950247765, 0.004127653315663338, -0.03313655033707619, 0.005184793844819069, -0.03223317489027977, 0.018173206597566605, 0.03890277072787285, -0.058046627789735794, -0.08649332076311111, -0.08587825298309326, 0.011157638393342495, 0.05843104049563408, -0.011695818975567818, 0.05843104049563408, -0.03142590448260307, -0.016251133754849434, -0.014713474549353123, 0.004761937540024519, -0.01003322470933199, 0.009019331075251102, -0.018346194177865982, -0.002221196424216032, -0.006006480194628239, 0.009860238060355186, 0.01303165964782238, -0.028465911746025085, 0.001992950215935707, 0.09318213164806366, 0.03177187964320183, -0.02218073047697544, 0.001632561325095594, 0.004982976242899895, -0.02016255259513855, 0.010648288764059544, -0.022757353261113167, -0.04943573474884033, -0.025352152064442635, 0.013742826879024506, -0.021873198449611664, 0.03361706808209419, -0.06619621813297272, 0.00996595248579979, -0.0023569429758936167, -0.001294997171498835, -0.056393641978502274, -0.07865125685930252, 0.025083061307668686, 0.02633241005241871, -0.029253961518406868, -0.06227518990635872, -0.028331367298960686, 0.04470743611454964, -0.029984349384903908, 0.0037504462525248528, 0.027139680460095406, 0.07034789770841599, -0.044053930789232254, -0.04774431139230728, -0.017019962891936302, 0.024352673441171646, -0.017087236046791077, 0.024813972413539886, -0.031195256859064102, -0.03386693820357323, -0.003952264320105314, 0.017039183527231216, 0.022603586316108704, -0.09325901418924332, 0.030445648357272148, 0.045284055173397064, 0.08234164118766785, 0.021200472488999367, -0.017250612378120422, 0.021315798163414, 0.0564320832490921, 0.009841017425060272, 0.026870591565966606, -0.01906697079539299, -0.06112194433808327, -0.04228562116622925, -0.023891376331448555, -0.052241962403059006, -0.015664901584386826, 0.021873198449611664, -0.02039320208132267, -0.00666479067876935, -0.009274005889892578, -0.038153164088726044, -0.05431780219078064, 0.01651061326265335, 0.01810593530535698, -0.017346715554594994, -0.05312611907720566, -0.07692138850688934, -0.010465691797435284, -0.07399983704090118, 0.0011520428815856576, 0.0060881683602929115, 0.005256871692836285, -0.004291029646992683, 0.00912023987621069, -0.011618935503065586, -0.027639420703053474, 0.015674510970711708, -0.05285702645778656, 0.023084105923771858, 0.015943601727485657, -0.05262637883424759, -0.018769050016999245, -0.002137105679139495, 0.04874378815293312, 0.048359375447034836, 0.06208297982811928, -0.0141752939671278, -0.009937121532857418, 0.04024822264909744, 0.03182953968644142, -0.012224389240145683, -0.041363026946783066, -0.0460144467651844, -0.010494522750377655, -0.012012960389256477, -0.06519673764705658, -0.020681513473391533, -0.00043817274854518473, 0.028523573651909828, -0.05139625072479248, -0.00198333989828825, 0.0655042752623558, 0.008144787512719631, -0.027600979432463646, -0.0027822016272693872, 0.04566847160458565, -0.013704385608434677, -0.012829842045903206, -0.09887146949768066, 0.03786485269665718, -0.0009111830731853843, 0.0009604362421669066, 0.06754167377948761, 0.08841539174318314, 0.03282902017235756, 0.016308795660734177, -0.014550098218023777, -0.03086850419640541, -0.027216564863920212, -0.047628987580537796, -0.024756310507655144, -0.005963233765214682, -0.03922952339053154, -0.007068426348268986, -0.11048080027103424, -0.011907246895134449, 0.012205168604850769, 0.00736154243350029, 0.033943820744752884, -0.02016255259513855, 0.02729344740509987, 0.08195722103118896, 0.02125813625752926, 0.0351162888109684, -0.043092891573905945, -0.03215629234910011, 0.011311403475701809, 0.04274692013859749, -0.03899887576699257, 0.029465390369296074, 0.016020484268665314, 0.049128204584121704, -0.02414124645292759, 0.0018427881877869368, -0.048820674419403076, 0.04543782398104668, -0.020047228783369064, 0.0395178347826004, 0.05089651048183441, -0.02294955961406231, -0.0017803207738325, 0.09387408196926117, -0.03177187964320183, 0.024333452805876732, 0.01737554557621479, 0.0314643457531929, -0.02802383527159691, -0.044246137142181396, 0.003836939577013254, -0.007866086438298225, -0.0023185014724731445, -0.027677861973643303, 0.006933880969882011, -0.01138828694820404, -0.008019852451980114, -0.00233291694894433, -0.021046707406640053, 0.048359375447034836, 0.05085806921124458, 0.00991789996623993, -0.03109915368258953, -0.026716824620962143, 0.020912162959575653, -0.048397816717624664, 0.023564623668789864, 0.04636041820049286, -0.03163733333349228, -0.026774486526846886, -0.000518659595400095, -0.020470084622502327, -0.024256570264697075, -0.0014163281302899122, 0.0037864851765334606, 0.12754881381988525, 0.008192839100956917, 0.04267003759741783, -0.006400505546480417, 0.020546969026327133, -0.04051731526851654, -0.0024578517768532038, -0.037019141018390656, -0.007745957002043724, -0.02016255259513855, 0.0097593292593956, -0.050050798803567886, -0.029523052275180817, -0.060699086636304855, -0.023526182398200035, 0.00985062774270773, 0.0022163912653923035, 0.01906697079539299, 0.00578544195741415, 0.01138828694820404, -0.006222713738679886, -0.08626266568899155, -0.009086603298783302, 0.004101224709302187, -0.05097339674830437, 0.0403251051902771, 0.03229083865880966, -0.04970482736825943, -0.050781186670064926, -0.07657542079687119, -0.02675526589155197, -0.024544881656765938, -0.008841538801789284, 0.08234164118766785, -0.05474065989255905, 0.008245696313679218, 0.0006769303581677377, -0.05016612261533737, -0.012628024443984032, -0.0834948793053627, 0.02125813625752926, 0.03813394159078598, 0.028504353016614914, 0.032079409807920456, -0.01175348088145256, -0.030464868992567062, -0.019547490403056145, 0.005905571393668652, 0.027043577283620834, 0.031252920627593994, -0.06585024297237396, 0.07722891867160797, 0.0023749624378979206, -0.06365907937288284, 0.09856393933296204, 0.032944343984127045, 0.009240369312465191, 0.003976290114223957, 0.06734946370124817, -0.025582801550626755, 0.018711388111114502, -0.0024097999557852745, 0.030234219506382942, -0.04847469925880432, -0.03832615166902542, -0.06750322878360748, -0.011436338536441326, -0.03784563019871712, 0.008899201638996601, 0.01135945599526167, 0.03442434221506119, 0.00760180177167058, 0.0572393573820591, -0.02162333019077778, -0.039171863347291946, -0.024314232170581818, -0.00013266813766676933, -0.03909498080611229, 0.008841538801789284, -0.013886982575058937, -0.007894917391240597, 0.02642851322889328, -0.02410280518233776, 0.06542739272117615, -0.004709080792963505, 0.003865770762786269, -0.02112358994781971, 0.057815976440906525, -0.014444383792579174, -0.019326452165842056, 0.09879458695650101, -0.018451908603310585, 0.014261786825954914, 0.022988000884652138, 0.0030056426767259836, -0.021738654002547264, 0.04970482736825943, -0.0786128118634224, 0.027139680460095406, -0.004442392848432064, -0.033078890293836594, -0.001843989477492869, 0.03663472458720207, 0.015501524321734905, -0.058969222009181976, -0.013685164973139763, -0.05985337495803833, 0.006535050459206104, 0.041363026946783066, 0.024083584547042847, 0.0431697741150856, -0.026678383350372314, 0.07761333882808685, 0.05935363844037056, 0.00937010906636715, -0.028792664408683777, -0.03621187061071396, -0.03169499710202217, 0.03277135640382767, 0.04267003759741783, -0.035231612622737885, 0.013425684534013271, -0.012339713051915169, -0.0069771273992955685, -0.04543782398104668, -0.05474065989255905, 0.0053818062879145145, -0.0006787322927266359, -0.042554713785648346, -0.029599934816360474, 0.015069058164954185, -0.0097593292593956, 0.00948543380945921, -0.05435624346137047, -0.03753810003399849, 0.027216564863920212, 0.027639420703053474, -0.10010159760713577, -0.035923559218645096, -0.025294490158557892, 0.031983308494091034, -0.03648095950484276, 0.024391114711761475, 0.01838463544845581, -0.001671002828516066, 0.030003570020198822, 0.033770836889743805, -0.010657899081707, 0.006530245300382376, 0.037057582288980484, 0.037518877536058426, -0.022891897708177567, -0.01897086761891842, 0.00390901742503047, -0.009288420900702477, 0.05262637883424759, 0.014281007461249828, -0.007673879154026508, 0.023487741127610207, 0.0024542477913200855, -0.027562536299228668, -0.008082319982349873, -0.05793130025267601, 0.004019536543637514, 0.01646256074309349, -0.004925313871353865, 0.03680771216750145, 0.007966995239257812, 0.07127049565315247, -0.04493808373808861, 0.0468217171728611, 0.025678904727101326, -0.0014211332891136408, 0.05181910842657089, 0.011330625042319298, -0.015001785010099411, 0.027600979432463646, -0.021008266136050224, -0.07484555244445801, 0.007116477936506271, 0.023814493790268898, 0.04459210857748985, 0.05697026476264, 0.009956342168152332, 0.025640463456511497, 0.01135945599526167, 0.033905379474163055, 0.060199350118637085, -0.00042435782961547375, -0.00578544195741415, 0.040171340107917786, -0.029753701761364937, -0.013954254798591137, -0.08603201806545258, 0.0133968535810709, -0.003279538359493017, -0.037749528884887695, -0.012503089383244514, -0.04220873862504959, -0.04028666391968727, -0.002066229237243533, 0.023622285574674606, -0.050089240074157715, -0.024333452805876732, -0.018365414813160896, 0.04636041820049286, 0.007241412531584501, 0.037019141018390656, 0.004396743606775999, 0.012810621410608292, -0.03638485446572304, 0.021738654002547264, 0.025448255240917206, 0.028562014922499657, 0.03615420684218407, -0.03232927992939949, 0.007020374294370413, 0.021046707406640053, 0.04055575653910637, -0.024218128994107246, -0.017663856968283653, 0.01601087488234043, 0.026409292593598366, 0.02871578186750412, 0.041132379323244095, 0.03073395974934101, -0.00521362479776144, 0.016952689737081528, 0.05066586285829544, -0.04070952162146568, -0.01556879747658968, -0.0330212265253067, 0.002192365238443017, -0.030253440141677856, -0.00001009839525067946, -0.007356737274676561, 0.04051731526851654, 0.05043521523475647, -0.012791400775313377, -0.0575084462761879, -0.039902251213788986, 0.056393641978502274, -0.038614459335803986, 0.008827123790979385, -0.005987259559333324, -0.0015773017657920718, 0.012858672998845577, -0.0010613451013341546, -0.02675526589155197, -0.046898599714040756, 0.05366429686546326, 0.016039704903960228, 0.004519275855273008, 0.04493808373808861, 0.0002545246097724885, 0.01989346370100975, -0.02815837971866131, 0.02331475354731083, 0.013185425661504269, 0.0507427453994751, -0.01714489795267582, 0.042400944977998734, 0.04243938624858856, -0.09556550532579422, 0.06381284445524216, 0.004891677759587765, -0.016443340107798576, 0.02089294232428074, 0.02185397781431675, 0.011801532469689846, 0.009427771903574467, 0.06961750984191895, -0.04013289883732796, -0.07853592932224274, -0.02089294232428074, -0.03311733156442642, 0.024429557844996452, 0.003490966511890292, -0.0006733264308422804, -0.006323622539639473, 0.014732695184648037, -0.03292512148618698, 0.04374639689922333, 0.04747522249817848, 0.011551663279533386, -0.02821604162454605, 0.016616327688097954, 0.03527005389332771, -0.025659684091806412, -0.006347648333758116, 0.013156594708561897, -0.05312611907720566, 0.05739312246441841, 0.015443862415850163, -0.057546887546777725, 0.032079409807920456, 0.0699634850025177, -0.0006135619478300214, 0.001791132497601211, -0.028062276542186737, 0.007001153659075499, 0.021431121975183487, 0.01564568094909191, -0.029023313894867897, 0.06442791223526001, 0.009533485397696495, 0.028427470475435257, 0.014675033278763294, -0.030964607372879982, -0.02838902920484543, -0.011763091199100018, 0.047436781227588654, 0.023718390613794327, -0.004468821454793215, -0.0030032400973141193, 0.06023779138922691, 0.02954227291047573, -0.012791400775313377, 0.022661250084638596, -0.036692388355731964, -0.03553914278745651, -0.01742359809577465, 0.037518877536058426, 0.03342486172914505, 0.02089294232428074, 0.020220216363668442, -0.02944616973400116, -0.08095774799585342, 0.03342486172914505, 0.029388507828116417, -0.05677805840969086, -0.01102309301495552, -0.02762020006775856, -0.050281450152397156, -0.0036495374515652657, 0.024448778480291367, 0.02204618602991104, -0.0320025272667408, 0.019326452165842056, -0.004031549673527479, 0.03598121926188469, -0.0014259384479373693, -0.011051923967897892, 0.010071665979921818, 0.030426427721977234, -0.03213707357645035, -0.06542739272117615, -0.0197589173913002, -0.00014415553596336395, -0.007524918764829636, -0.008437903597950935, 0.04701392352581024, 0.04859002307057381, 0.009807380847632885, -0.04947417601943016, 0.04589911922812462, 0.0022872677072882652, -0.002083047293126583, -0.02318020910024643, -0.00784206110984087, 0.06485076993703842, 0.06938686221837997, 0.05262637883424759, 0.015895549207925797, 0.018480738624930382, -0.07818996161222458, -0.033078890293836594, 0.017932947725057602, -0.049858592450618744, -0.04489964246749878, 0.0017695091664791107, -0.008932837285101414, 0.06039155647158623, -0.05135780945420265, -0.01039841864258051, -0.018499959260225296, -0.042554713785648346, -0.006804141215980053, 0.01138828694820404, 0.006265960168093443, 0.028927208855748177, 0.0014379514614120126, 0.01601087488234043, 0.03452044352889061, -0.004761937540024519, 0.035558365285396576, 0.007404788862913847, 0.001129818963818252, 0.024525661021471024, 0.023603064939379692, 0.024352673441171646, 0.0025203190743923187, 0.029888246208429337, 0.044015489518642426, 0.04747522249817848, -0.02218073047697544, -0.02085449919104576, 0.012820231728255749, 0.015895549207925797, 0.029523052275180817, 0.002119086217135191, 0.014194514602422714, -0.0400560162961483, 0.02519838698208332, 0.09587303549051285, -0.00797660555690527, 0.0001167509617516771, -0.07088607549667358, 0.018692167475819588, -0.01819242723286152, 0.004384730476886034, 0.06731101870536804, 0.007202971260994673, -0.02139268070459366, 0.005415442865341902, -0.01102309301495552, 0.025448255240917206, -0.029561493545770645, 0.03498174250125885, -0.04751366376876831, 0.00921634305268526, 0.015069058164954185, -0.04466899484395981, 0.06781075894832611, -0.007159724831581116, -0.01442516315728426, -0.04070952162146568, -0.021911639720201492, 0.011561273597180843, 0.042862243950366974, -0.03786485269665718, -0.020777616649866104, 0.07365386188030243, 0.029753701761364937, 0.09656498581171036, -0.017346715554594994, -0.003613498527556658, -0.0005730182165279984, 0.016251133754849434, -0.053702738136053085, -0.011013482697308064, -0.024756310507655144, 0.01692385971546173, 0.031349021941423416, 0.05474065989255905, -0.02410280518233776, -0.025275269523262978, 0.028062276542186737, -0.05447157099843025, -0.022199951112270355, -0.008500371128320694, 0.014530877582728863, 0.003827329259365797, 0.028907988220453262, -0.023852935060858727, -0.025909554213285446, 0.04374639689922333, 0.057777535170316696, -0.01054257433861494, 0.024352673441171646, -0.006131415255367756, 0.02808149717748165, -0.008807903155684471, -0.03967159986495972, 0.05747000500559807, -0.02446799911558628, -0.0006474985857494175, 0.042093414813280106, -0.012983608059585094, -0.0017731130355969071, -0.025851892307400703, -0.013041269965469837, -0.08034268021583557, -0.026236306875944138, 0.015415031462907791, -0.04374639689922333, 0.013233477249741554, -0.012137895449995995, -0.013358412310481071, 0.02698591537773609, -0.02546747773885727, -0.018548011779785156, -0.0845712423324585, 0.024218128994107246, 0.001093179453164339, 0.04324666038155556, -0.017308274284005165, 0.038614459335803986, -0.02602487802505493, -0.018038662150502205, -0.025352152064442635, 0.05862324684858322, 0.04232406243681908, 0.005136742256581783, -0.027697082608938217, -0.07972761988639832, 0.003976290114223957, -0.01970125548541546 ]
20,392
connectorx
reconstruct_arrow
null
def reconstruct_arrow(result: _ArrowInfos) -> pa.Table: import pyarrow as pa names, ptrs = result if len(names) == 0: return pa.Table.from_arrays([]) rbs = [] for chunk in ptrs: rb = pa.RecordBatch.from_arrays( [pa.Array._import_from_c(*col_ptr) for col_ptr in chunk], names ) rbs.append(rb) return pa.Table.from_batches(rbs)
(result: '_ArrowInfos') -> 'pa.Table'
[ -0.049810390919446945, -0.004122699145227671, -0.037357792258262634, -0.06436213850975037, -0.05119796469807625, 0.018572159111499786, 0.009970972314476967, 0.05372406169772148, 0.020635733380913734, 0.015592430718243122, 0.008952528238296509, 0.04497166723012924, -0.02454940602183342, 0.03193201869726181, -0.013751225546002388, 0.00511890696361661, 0.06421982496976852, 0.03061559982597828, -0.02554561384022236, 0.05770889297127724, -0.007307006511837244, -0.0154323261231184, 0.012541544623672962, 0.024531617760658264, -0.01403585635125637, 0.025527825579047203, -0.012541544623672962, 0.0029085709247738123, 0.05180280655622482, -0.012781701982021332, 0.017780529335141182, 0.012888438068330288, 0.002248138654977083, 0.08083514869213104, -0.02010205015540123, -0.009108185768127441, 0.011660967953503132, -0.027751503512263298, -0.008071951568126678, 0.026915399357676506, 0.020368890836834908, -0.043050408363342285, -0.03817610442638397, -0.015396746806800365, -0.016197271645069122, -0.045256298035383224, 0.028285184875130653, -0.08111977577209473, 0.001797843724489212, -0.021365098655223846, -0.016811005771160126, -0.00944618508219719, 0.013457699678838253, 0.05557416379451752, -0.018180793151259422, -0.027573607861995697, -0.007307006511837244, 0.0174158476293087, -0.02076025865972042, 0.017807213589549065, -0.017442531883716583, -0.001350884442217648, 0.00284853158518672, 0.04159167408943176, 0.0379270538687706, -0.044224511831998825, -0.0006204061792232096, -0.040702205151319504, -0.07528484612703323, -0.000880020612385124, -0.04262346029281616, 0.03760684281587601, -0.023802250623703003, 0.009045922197401524, -0.0070757437497377396, 0.04564766585826874, -0.008200924843549728, -0.03330180421471596, 0.05852720886468887, -0.037322212010622025, -0.018323108553886414, 0.04561208561062813, -0.021667519584298134, 0.00999765656888485, -0.002179204486310482, 0.02417582832276821, 0.03155843913555145, 0.04692850261926651, -0.03600579500198364, 0.0023726646322757006, -0.012372544966638088, -0.028712131083011627, -0.04561208561062813, 0.00284853158518672, -0.03424464166164398, 0.008063056506216526, -0.01545011531561613, -0.037464529275894165, -0.03835400193929672, 0.02840971201658249, -0.0025572297163307667, -0.007218059152364731, -0.01036234013736248, -0.00007206106965895742, 0.02741350419819355, -0.019301526248455048, 0.041805148124694824, -0.04216093569993973, 0.05831373482942581, -0.020119840279221535, -0.07051727920770645, 0.03433359041810036, -0.021703097969293594, -0.04578997939825058, 0.027502451092004776, -0.02289498969912529, 0.05884741619229317, -0.05130470171570778, -0.08681239187717438, 0.004329501185566187, 0.06589203327894211, -0.018696686252951622, 0.0012541544856503606, -0.0005737089668400586, -0.034013379365205765, 0.004660829436033964, 0.06663918495178223, -0.009953183121979237, 0.06920086592435837, -0.015903746709227562, 0.005608116276562214, -0.011198443360626698, -0.05158933252096176, -0.004780908115208149, 0.00015204399824142456, 0.029566023498773575, 0.08745281398296356, -0.04393988102674484, -0.004963249433785677, -0.08439303189516068, -0.02458498440682888, 0.0026306111831218004, 0.0758541077375412, -0.0031376099213957787, 0.021738676354289055, -0.03458264097571373, 0.04152051731944084, 0.020884783938527107, 0.018661106005311012, 0.016010481864213943, -0.02189878188073635, -0.040666624903678894, -0.0045896717347204685, 0.02472729980945587, -0.014391644857823849, -0.02175646647810936, -0.05479142814874649, -0.03461822122335434, 0.028534237295389175, -0.0009711913880892098, -0.0013153055915609002, -0.02579466626048088, -0.061942778527736664, -0.010646970942616463, -0.0399906262755394, 0.01317306887358427, 0.024638352915644646, -0.05169606953859329, -0.06322361528873444, -0.03271475061774254, 0.05902531370520592, 0.01001544576138258, 0.01361780520528555, -0.012746122665703297, -0.0655006617307663, 0.02527877315878868, 0.01475632842630148, 0.014062540605664253, 0.03020644374191761, -0.009535131976008415, 0.01958615705370903, 0.029672760516405106, -0.03141612559556961, 0.00821426697075367, 0.049810390919446945, 0.00519895926117897, -0.00651537673547864, 0.004311711993068457, 0.06880949437618256, 0.0012919569853693247, -0.0355076938867569, -0.004378422163426876, 0.043050408363342285, 0.04714197665452957, 0.05699731782078743, -0.02976170741021633, -0.011910020373761654, 0.05251438170671463, -0.04376198351383209, 0.014213750138878822, -0.06767097115516663, -0.0055947741493582726, 0.006599876563996077, 0.02245025336742401, 0.005274564493447542, 0.006266324780881405, 0.004267238080501556, -0.009748605079948902, 0.004816486965864897, 0.026808664202690125, 0.016561955213546753, -0.003773581702262163, -0.048565130680799484, -0.009695236571133137, -0.0410224124789238, 0.010851548984646797, -0.04361966997385025, 0.04390430077910423, 0.08752396702766418, 0.0003657950437627733, 0.027982765808701515, -0.022734884172677994, -0.030526652932167053, -0.04888533800840378, 0.0019034685101360083, 0.01084265485405922, -0.009917604736983776, 0.0027729265857487917, 0.0033844381105154753, -0.030455496162176132, 0.010131077840924263, -0.07329243421554565, -0.061907198280096054, -0.05493374541401863, 0.05913204699754715, 0.004571882076561451, -0.029014552012085915, -0.017353583127260208, 0.012167966924607754, 0.013849067501723766, 0.005105564836412668, -0.0003388329641893506, 0.019568366929888725, -0.008943633176386356, -0.028178449720144272, -0.0006365278386510909, -0.015245537273585796, -0.015966009348630905, -0.0668882355093956, 0.02196994051337242, -0.030455496162176132, -0.012737228535115719, 0.08047936111688614, -0.0033866618759930134, 0.06404192745685577, -0.02782266028225422, 0.05290574952960014, -0.028427500277757645, 0.01944384165108204, -0.016117218881845474, 0.024193618446588516, -0.028427500277757645, 0.03945694491267204, 0.006395298056304455, 0.02744908258318901, -0.01760263554751873, -0.017406951636075974, 0.027431292459368706, -0.022130044177174568, 0.019319316372275352, 0.05625016242265701, 0.01249707117676735, -0.07293663918972015, -0.0030242023058235645, 0.0162061657756567, 0.020119840279221535, 0.00601727282628417, 0.02065352164208889, -0.039634838700294495, -0.03721547871828079, -0.010460182093083858, -0.009526236914098263, -0.021293941885232925, -0.004683066159486771, -0.003820278914645314, -0.032394543290138245, -0.007573847658932209, -0.007173585705459118, 0.0008972540963441133, -0.011349652893841267, 0.03627263754606247, -0.0058082472532987595, -0.05372406169772148, -0.013164174742996693, 0.0012730556773021817, 0.025634560734033585, -0.017656004056334496, -0.008908054791390896, -0.057495422661304474, -0.023321935907006264, -0.03700200468301773, -0.018429843708872795, 0.055325113236904144, 0.07635220885276794, -0.025349929928779602, 0.02620382234454155, -0.022005518898367882, -0.021044889464974403, -0.006208509206771851, -0.02744908258318901, 0.03134496510028839, 0.009108185768127441, -0.04351293295621872, -0.0013753449311479926, 0.019016895443201065, -0.027182241901755333, -0.024424880743026733, 0.05265669897198677, 0.06514487415552139, 0.012452597729861736, -0.0458611361682415, 0.006702166050672531, 0.02241467498242855, 0.03714431822299957, -0.008432187139987946, -0.012523755431175232, 0.005617010872811079, -0.026257190853357315, 0.005995036102831364, -0.03710874170064926, -0.019088052213191986, -0.007031270302832127, 0.01591264083981514, 0.012817280367016792, -0.009232711978256702, 0.0154323261231184, 0.007093533407896757, 0.0038603052962571383, 0.005665931850671768, 0.000744932156521827, 0.06062636151909828, -0.0061996146105229855, 0.030010759830474854, -0.010415708646178246, -0.009641868062317371, 0.026257190853357315, -0.02310846373438835, 0.0004661385319195688, 0.04806702584028244, 0.010744812898337841, -0.0008689022506587207, -0.09435510635375977, 0.005448011215776205, 0.09592057764530182, 0.03771357983350754, -0.01174102071672678, -0.039634838700294495, -0.0212049949914217, -0.012755017727613449, 0.04116472974419594, 0.03476053476333618, 0.005132249090820551, -0.011420810595154762, -0.015227748081088066, 0.04134262353181839, -0.04561208561062813, -0.03703758120536804, 0.010931601747870445, -0.05262111872434616, 0.035258639603853226, -0.00045752176083624363, 0.000136964677949436, 0.06557182222604752, -0.0085789505392313, 0.015165484510362148, 0.011340758763253689, -0.008956975303590298, 0.029316972941160202, -0.003402227535843849, 0.016588639467954636, 0.00984644703567028, -0.045434191823005676, 0.025474457070231438, 0.04006178304553032, 0.05016617849469185, 0.03817610442638397, -0.03949252516031265, 0.01899910531938076, -0.02869434282183647, 0.0028818869031965733, -0.002441598568111658, 0.03949252516031265, -0.0014098118990659714, -0.04810260608792305, 0.050877753645181656, 0.029050130397081375, -0.04468703642487526, -0.009517342783510685, -0.02307288348674774, -0.04329945892095566, -0.02189878188073635, -0.04041757434606552, -0.09037027508020401, 0.01719347946345806, -0.05407985299825668, -0.0143115920946002, 0.03369317203760147, -0.015005379915237427, -0.0013141937088221312, -0.05226533114910126, 0.038567472249269485, 0.0360235869884491, 0.00020499533275142312, -0.00063374824821949, 0.02840971201658249, 0.10339213907718658, -0.022806042805314064, 0.008694581687450409, -0.004714197479188442, 0.024887405335903168, 0.059630151838064194, 0.06169372424483299, -0.02778708189725876, -0.01515659037977457, 0.03385327383875847, 0.025705719366669655, -0.028089502826333046, 0.03888768330216408, 0.04013294354081154, -0.027360135689377785, 0.039528101682662964, -0.04052431136369705, -0.009045922197401524, -0.08716817945241928, -0.048707444220781326, 0.02631055936217308, 0.030437706038355827, 0.03696642443537712, 0.062085092067718506, -0.009552921168506145, 0.028712131083011627, 0.057673316448926926, -0.003420016961172223, -0.015147695317864418, 0.03714431822299957, 0.0029419262427836657, -0.029156867414712906, -0.007502689957618713, -0.06297456473112106, -0.024335933849215508, 0.017851687967777252, 0.003288819920271635, 0.07144232839345932, -0.06041288748383522, 0.028053922578692436, 0.010184445418417454, -0.006928980816155672, 0.0036468321923166513, -0.02072468027472496, 0.0513758584856987, 0.07912736386060715, -0.02671971544623375, 0.032803699374198914, -0.005243433173745871, 0.04707081988453865, -0.003044215263798833, -0.03481390327215195, 0.030740126967430115, -0.011660967953503132, -0.009437290020287037, 0.00960628967732191, -0.06233414635062218, 0.02917465753853321, 0.04155609756708145, 0.05589437484741211, -0.005354616791009903, -0.00911707989871502, -0.02079583704471588, -0.005728194955736399, -0.020778048783540726, -0.0037491212133318186, -0.03563221916556358, -0.011972283013164997, -0.055253952741622925, -0.010086603462696075, 0.04006178304553032, -0.00834324024617672, -0.00830766186118126, 0.011367442086338997, -0.0210270993411541, -0.06432656198740005, 0.05358174815773964, -0.027022136375308037, 0.021952150389552116, 0.06610549986362457, -0.00765389995649457, 0.05354616791009903, 0.05810026079416275, 0.02234351821243763, -0.028801079839468002, 0.030384337529540062, -0.03598800674080849, -0.05461353436112404, -0.03700200468301773, 0.005354616791009903, 0.05390195921063423, 0.0658564493060112, -0.0029930707532912493, -0.06923644244670868, 0.00029602713766507804, -0.08040820062160492, 0.00972192082554102, -0.08602965623140335, 0.030882442370057106, -0.06610549986362457, -0.03113149292767048, 0.01789616234600544, 0.0010373458499088883, -0.03927905112504959, -0.01882121153175831, 0.016072744503617287, 0.06005709990859032, -0.06293898820877075, -0.012310282327234745, -0.051945120096206665, 0.030224232003092766, 0.010273393243551254, 0.018100740388035774, 0.0568905808031559, -0.05906089022755623, -0.026097087189555168, -0.003473385237157345, 0.04326388239860535, -0.013849067501723766, 0.008383266627788544, -0.007493795361369848, 0.03253685683012009, -0.003222109517082572, 0.06329477578401566, -0.019764050841331482, 0.03806937113404274, 0.047533344477415085, -0.10218245536088943, -0.03378211706876755, 0.0062841144390404224, 0.00948176346719265, -0.0027795976493507624, 0.02289498969912529, 0.017077848315238953, 0.01084265485405922, -0.048707444220781326, -0.03072233684360981, 0.05383079871535301, -0.03152286261320114, -0.08325450867414474, 0.01719347946345806, 0.03299938142299652, -0.08873365074396133, 0.029334761202335358, -0.03347969800233841, 0.029921812936663628, -0.029921812936663628, 0.014026961289346218, -0.0018879027338698506, 0.016188377514481544, 0.04888533800840378, 0.012674964964389801, 0.09399931877851486, -0.016873270273208618, -0.005621458403766155, 0.006564297713339329, -0.026737505570054054, 0.008685686625540257, -0.022290149703621864, 0.035365376621484756, -0.06539392471313477, -0.0021113823167979717, -0.01800289750099182, 0.047391027212142944, -0.04721313342452049, 0.03516969457268715, 0.023606566712260246, -0.025510035455226898, -0.01416927669197321, 0.023393094539642334, -0.03387106582522392, -0.04216093569993973, 0.03627263754606247, 0.07948315143585205, -0.025812456384301186, -0.028463080525398254, 0.018269740045070648, -0.016597533598542213, 0.030295390635728836, 0.016695374622941017, -0.034226853400468826, -0.04472261294722557, 0.01848321221768856, -0.0710509642958641, -0.021400678902864456, -0.04924112930893898, 0.024353722110390663, 0.0016321797156706452, 0.007978556677699089, -0.014871959574520588, -0.0617293044924736, 0.01317306887358427, -0.004193856846541166, 0.0534394308924675, 0.07147791236639023, 0.015396746806800365, 0.02161415107548237, -0.01098497025668621, -0.0027640319894999266, -0.03020644374191761, -0.05326153710484505, -0.03988388925790787, -0.029708338901400566, -0.032946016639471054, 0.023837829008698463, -0.039670418947935104, -0.0022603687830269337, 0.03502737730741501, 0.0010384577326476574, -0.06952106952667236, -0.0012608254328370094, 0.021845413371920586, -0.03196759521961212, 0.0458611361682415, -0.023766672238707542, 0.0001577421644469723, -0.05614342540502548, 0.009953183121979237, -0.0011718784226104617, 0.00021597473823931068, -0.017611531540751457, -0.020493417978286743, 0.04273019731044769, 0.04436682537198067, 0.009917604736983776, -0.00949955265969038, 0.006564297713339329, -0.007231401279568672, 0.008076398633420467, -0.015476799570024014, -0.07564063370227814, 0.011749914847314358, -0.031006967648863792, -0.0022859410382807255, 0.06745749711990356, 0.0019234815845265985, 0.07197601348161697, -0.025936981663107872, 0.07777536660432816, 0.01988857612013817, 0.10410371422767639, -0.04354851320385933, -0.0145695386454463, -0.032287806272506714, 0.025349929928779602, 0.020422259345650673, -0.04048873111605644, -0.06418424844741821, 0.02216562256217003, 0.04806702584028244, 0.031843069940805435, 0.04112914949655533, 0.11634284257888794, -0.055182795971632004, 0.000016060863345046528, -0.01598379760980606, 0.060946568846702576, 0.002721782075241208, -0.07713494449853897, 0.056356899440288544, 0.006986796855926514, 0.004267238080501556, -0.015352273359894753, 0.03661063686013222, 0.0004394543939270079, -0.01392911933362484, 0.028943395242094994, 0.024709511548280716, 0.011207337491214275, -0.0462169274687767, -0.028765499591827393, 0.003306609345600009, 0.03892326354980469, -0.018678896129131317, -0.1075904443860054, 0.04390430077910423, 0.04262346029281616, 0.06279666721820831, 0.03319506719708443, -0.09165111929178238, 0.013093017041683197, 0.03050886280834675, -0.09456858038902283, -0.017869478091597557, 0.04105799272656441, 0.04208977892994881, -0.046501558274030685, -0.010335655882954597, -0.056499212980270386, 0.042943671345710754, 0.04112914949655533, 0.032803699374198914, -0.03027760051190853, -0.06578529626131058, -0.011251810938119888, 0.028427500277757645, 0.028676552698016167, -0.03186085820198059, 0.030081916600465775, 0.026506243273615837, 0.008427740074694157, 0.006626560818403959, 0.0030864651780575514, -0.03145170211791992, 0.022361306473612785, 0.010460182093083858, 0.013235332444310188, 0.03595242649316788, 0.06749308109283447, -0.06532277166843414, 0.051020070910453796, -0.011207337491214275, 0.051909543573856354, -0.034262433648109436, -0.0004297257983125746, 0.00029296960565261543, -0.023980144411325455, -0.039812732487916946, 0.02755581960082054, -0.0019412710098549724, -0.013733436353504658, 0.020155418664216995, -0.020440049469470978, 0.039634838700294495, 0.020351102575659752, -0.05955899506807327, -0.002888557966798544, -0.004967696964740753, 0.05553858354687691, -0.0617293044924736, -0.01279059611260891, 0.03778474032878876, -0.014907537959516048, 0.0061151147820055485, 0.02620382234454155, -0.001770047820173204, 0.022058887407183647, -0.03920789435505867, -0.013262016698718071, 0.045220717787742615, -0.02341088280081749, 0.014462802559137344, 0.017727162688970566, -0.06333035230636597, -0.04838723689317703, -0.04120030626654625, 0.045327454805374146, -0.03337296098470688, 0.026488453149795532, -0.022112255915999413, -0.02906792052090168, 0.04041757434606552, 0.01062028668820858 ]
20,393
connectorx
reconstruct_pandas
null
def reconstruct_pandas(df_infos: _DataframeInfos) -> pd.DataFrame: import pandas as pd data = df_infos["data"] headers = df_infos["headers"] block_infos = df_infos["block_infos"] nrows = data[0][0].shape[-1] if isinstance(data[0], tuple) else data[0].shape[-1] blocks = [] for binfo, block_data in zip(block_infos, data): if binfo.dt == 0: # NumpyArray blocks.append( pd.core.internals.make_block(block_data, placement=binfo.cids) ) elif binfo.dt == 1: # IntegerArray blocks.append( pd.core.internals.make_block( pd.core.arrays.IntegerArray(block_data[0], block_data[1]), placement=binfo.cids[0], ) ) elif binfo.dt == 2: # BooleanArray blocks.append( pd.core.internals.make_block( pd.core.arrays.BooleanArray(block_data[0], block_data[1]), placement=binfo.cids[0], ) ) elif binfo.dt == 3: # DatetimeArray blocks.append( pd.core.internals.make_block( pd.core.arrays.DatetimeArray(block_data), placement=binfo.cids ) ) else: raise ValueError(f"unknown dt: {binfo.dt}") block_manager = pd.core.internals.BlockManager( blocks, [pd.Index(headers), pd.RangeIndex(start=0, stop=nrows, step=1)] ) df = pd.DataFrame(block_manager) return df
(df_infos: '_DataframeInfos') -> 'pd.DataFrame'
[ 0.025587672367691994, -0.013867839239537716, 0.003726039780303836, -0.031164955347776413, -0.07619775086641312, -0.015431740321218967, 0.016289059072732925, 0.052494294941425323, -0.07883565127849579, 0.004291304852813482, 0.005516046192497015, 0.0012541821924969554, -0.06617370992898941, 0.02132933959364891, -0.0187479630112648, -0.0048801228404045105, -0.036779921501874924, 0.023043978959321976, -0.01573321409523487, -0.034575387835502625, -0.007843054831027985, -0.03325643762946129, -0.014725158922374249, 0.017683379352092743, -0.0022163107059895992, 0.05170292407274246, -0.03365212306380272, 0.034952230751514435, 0.012643098831176758, 0.009576534852385521, 0.029638739302754402, -0.007923133671283722, 0.006288575474172831, 0.00992040429264307, -0.01646805927157402, -0.03629002720117569, -0.01046682707965374, -0.0442037396132946, -0.041415099054574966, 0.032427381724119186, -0.00014676286082249135, -0.052607350051403046, -0.032766539603471756, -0.023288926109671593, -0.04522121697664261, -0.013726523146033287, 0.00935513898730278, -0.049178071320056915, -0.0023340743500739336, 0.026021040976047516, 0.015318687073886395, -0.00803147628903389, -0.013330837711691856, 0.02238450199365616, -0.011832884512841702, 0.0337274894118309, -0.03736402839422226, 0.04529658332467079, 0.007061104290187359, 0.018898699432611465, 0.03468844294548035, 0.04759532958269119, -0.019916176795959473, 0.005544309504330158, -0.027566099539399147, -0.012492360547184944, 0.016194848343729973, -0.045447323471307755, -0.012859783135354519, -0.03284190967679024, 0.02351503260433674, 0.04179194197058678, 0.00018371119222138077, 0.07762975245714188, -0.04687932878732681, -0.030430110171437263, -0.07340911030769348, 0.01176693756133318, 0.03402896597981453, -0.00007382304465863854, -0.06104864180088043, -0.004828306846320629, 0.020123440772294998, 0.017494957894086838, 0.009303322993218899, -0.004632819443941116, 0.039116352796554565, 0.07589627802371979, 0.009552981704473495, -0.036855291575193405, 0.010344353504478931, -0.01551652979105711, 0.0050308601930737495, -0.020839443430304527, 0.00524283479899168, 0.011286461725831032, 0.01177635882049799, 0.031994011253118515, -0.03706255555152893, 0.03103305958211422, -0.015931056812405586, -0.003683644812554121, -0.027415363118052483, 0.018201539292931557, -0.0779312327504158, 0.025229670107364655, 0.047972172498703, -0.0182863287627697, 0.004413779359310865, -0.04525890201330185, -0.036459606140851974, -0.009826193563640118, -0.04782143607735634, -0.022629451006650925, -0.004293660167604685, 0.012106096372008324, 0.024815142154693604, -0.0048659914173185825, -0.09496455639600754, -0.007998502813279629, 0.021819237619638443, 0.0016745981993153691, -0.034255072474479675, 0.007042262237519026, -0.051024604588747025, 0.009147875010967255, 0.03734518960118294, -0.07050741463899612, 0.04156583547592163, 0.003073629457503557, 0.004639885388314724, 0.010033457539975643, -0.015912216156721115, 0.032333169132471085, -0.0048801228404045105, -0.022233765572309494, -0.011069776490330696, -0.02924305386841297, -0.021517762914299965, -0.03024168871343136, -0.012520624324679375, -0.03378401696681976, 0.023816507309675217, -0.02172502689063549, -0.016241952776908875, 0.01763627491891384, 0.008620294742286205, -0.009571824222803116, -0.046238694339990616, -0.0167695339769125, 0.022949766367673874, -0.009015980176627636, 0.011371252126991749, 0.05562209710478783, 0.025191985070705414, -0.05151450261473656, -0.007028130814433098, -0.008116265758872032, 0.020387232303619385, 0.0006153147551231086, -0.02247871272265911, -0.009854456409811974, -0.061500854790210724, -0.009958088397979736, -0.09277886152267456, 0.008271713741123676, -0.016684744507074356, -0.09270349144935608, -0.03938014432787895, -0.0030642084311693907, 0.024249877780675888, 0.12307707965373993, -0.020820600911974907, 0.006406338885426521, -0.006500549614429474, 0.04669090732932091, 0.00993924681097269, -0.05200439691543579, -0.013500417582690716, -0.06538233906030655, -0.015271581709384918, 0.04296015575528145, -0.04367615655064583, -0.008323529735207558, -0.031146112829446793, 0.0018700857181102037, -0.024833984673023224, -0.021875763311982155, 0.06334738433361053, 0.02392956055700779, -0.039154037833213806, 0.02362808585166931, 0.0224221870303154, 0.004274818114936352, 0.05117534473538399, -0.010683512315154076, 0.021894605830311775, 0.02847052365541458, -0.03186211362481117, -0.01946396566927433, 0.03802350535988808, -0.03531023487448692, 0.02988368645310402, -0.022893240675330162, 0.0031678404193371534, -0.014178735204041004, -0.028244417160749435, 0.004244199488312006, -0.08252871781587601, 0.018474750220775604, -0.031240323558449745, -0.028960419818758965, 0.0017723419005051255, 0.018823331221938133, 0.011399514973163605, 0.009529429487884045, -0.008568478748202324, -0.006481707561761141, 0.05731789022684097, -0.00992982555180788, 0.05603662505745888, -0.03858876973390579, -0.029751792550086975, -0.005082676187157631, -0.030430110171437263, 0.002299922751262784, -0.008120976388454437, 0.018408803269267082, 0.054679986089468, -0.03374633193016052, -0.025700723752379417, -0.05803389474749565, -0.06436486542224884, -0.06168927624821663, 0.03747708350419998, -0.03808003291487694, 0.01651516556739807, -0.03297380357980728, 0.012605413794517517, -0.017381904646754265, 0.016976797953248024, -0.0164492167532444, 0.05313492938876152, 0.01946396566927433, -0.005035570822656155, -0.06545770913362503, 0.006613602861762047, 0.006472286768257618, -0.053247980773448944, 0.006378075573593378, -0.004842438735067844, -0.021084392443299294, 0.01687316596508026, 0.0018159145256504416, 0.03600739315152168, -0.04424142464995384, 0.04985639080405235, 0.015865109860897064, 0.0014155182288959622, -0.03303033113479614, -0.004489148035645485, -0.0374017134308815, 0.01287862565368414, -0.013735944405198097, -0.011116882786154747, 0.014687473885715008, -0.02506009116768837, -0.01793774962425232, -0.04103825241327286, 0.030128635466098785, 0.04375152662396431, 0.011248777620494366, -0.001132885692641139, 0.013500417582690716, 0.012398149818181992, -0.0025036537554115057, 0.059654321521520615, -0.08275482803583145, -0.06334738433361053, 0.01269962452352047, 0.02511661686003208, -0.041678886860609055, -0.017278272658586502, -0.014131629839539528, 0.034292757511138916, -0.012445255182683468, -0.00992982555180788, 0.04891428351402283, 0.026642832905054092, -0.013604049570858479, -0.07638616859912872, -0.007894870825111866, -0.026397885754704475, 0.005506625398993492, -0.037269819527864456, 0.03858876973390579, -0.027151571586728096, 0.01950164884328842, -0.03862645477056503, -0.050270918756723404, -0.05795852467417717, -0.019577018916606903, 0.07600932568311691, 0.11425893753767014, -0.026661675423383713, -0.02764146775007248, -0.009260928258299828, -0.009265638887882233, -0.022723661735653877, -0.04439216107130051, 0.060822535306215286, 0.08109671622514725, 0.0716756284236908, -0.04891428351402283, 0.04182962328195572, -0.04725617170333862, -0.015215055085718632, 0.04676627367734909, 0.055885884910821915, 0.06255601346492767, -0.03476380929350853, -0.024099139496684074, 0.02362808585166931, -0.0063027068972587585, 0.05045934021472931, 0.058938317000865936, 0.03389706835150719, -0.032427381724119186, -0.02988368645310402, 0.03751476854085922, -0.028508208692073822, -0.004018093459308147, 0.07374826818704605, -0.007150604855269194, 0.018182696774601936, 0.0028239707462489605, -0.04831133410334587, -0.03031705692410469, 0.009326876141130924, -0.06511855125427246, -0.002020823070779443, 0.03698718547821045, 0.007084657438099384, -0.041678886860609055, 0.001395498518832028, -0.014809948392212391, 0.005077965557575226, -0.01609121635556221, -0.03357675299048424, 0.04529658332467079, -0.0179189071059227, -0.004927228204905987, -0.0074049741961061954, 0.08147355914115906, 0.018861016258597374, -0.020387232303619385, 0.021480077877640724, 0.020085757598280907, -0.02313818968832493, 0.019162490963935852, 0.07906176149845123, 0.05769473686814308, 0.023458505049347878, -0.03254043310880661, 0.026039883494377136, -0.03178674727678299, -0.025210827589035034, 0.04951723292469978, -0.004505634773522615, 0.0032078800722956657, 0.02136702463030815, 0.026737043634057045, 0.05162755399942398, -0.01064582820981741, -0.025229670107364655, -0.01869143545627594, -0.04518353193998337, -0.009077217429876328, -0.012492360547184944, 0.0024965880438685417, -0.0018006052123382688, -0.04156583547592163, 0.060370322316884995, -0.027019675821065903, 0.06395033746957779, -0.0344623364508152, -0.009270349517464638, 0.004420844838023186, -0.025191985070705414, -0.02654862217605114, 0.005534888245165348, -0.046238694339990616, -0.0712234154343605, 0.023100504651665688, -0.00588346878066659, -0.0051439134404063225, 0.036497291177511215, 0.028715472668409348, -0.0013177745277062058, -0.027509573847055435, -0.022365659475326538, -0.06067179888486862, -0.013019941747188568, -0.025738408789038658, -0.0344623364508152, -0.020443757995963097, 0.07133647054433823, -0.05166523903608322, 0.007339026778936386, -0.0155071085318923, 0.05460461974143982, 0.043186262249946594, 0.026096411049365997, -0.005751573480665684, 0.026265989989042282, 0.05886295065283775, 0.028545893728733063, 0.013886681757867336, -0.011324145831167698, 0.0008897038642317057, 0.08667399734258652, -0.013632312417030334, -0.038739509880542755, 0.00011136019020341337, 0.01677895523607731, 0.014923001639544964, -0.05648883432149887, -0.00006734605267411098, -0.006811445578932762, 0.004870702046900988, 0.0209524966776371, -0.0175514854490757, -0.06493012607097626, -0.009590666741132736, 0.027170414105057716, -0.032427381724119186, 0.021819237619638443, 0.007946686819195747, 0.023477347567677498, 0.05765705183148384, 0.03922940418124199, 0.023401979357004166, 0.016543427482247353, -0.018926963210105896, -0.013217784464359283, -0.04186730831861496, 0.02016112580895424, -0.012793836183845997, -0.06251832842826843, -0.010137089528143406, 0.06308359652757645, -0.009114901535212994, 0.07891102135181427, -0.020066915079951286, -0.0702059417963028, 0.009816772304475307, 0.048763543367385864, 0.012765572406351566, -0.0034575387835502625, 0.0373075045645237, 0.012803256511688232, -0.03971930220723152, -0.00205615209415555, 0.028225576505064964, 0.0365726575255394, 0.030976533889770508, 0.017466694116592407, -0.08328240364789963, -0.02732115238904953, -0.011851727031171322, 0.017344221472740173, -0.05916442349553108, -0.007814791053533554, -0.005497204139828682, 0.012068412266671658, 0.011814042925834656, -0.04480668902397156, -0.03222011774778366, -0.030562005937099457, 0.019350912421941757, -0.07193941622972488, -0.007640501484274864, -0.03174906224012375, 0.015921637415885925, -0.01642095483839512, -0.017089851200580597, -0.010287826880812645, 0.004710543435066938, 0.033086854964494705, -0.035347916185855865, -0.06127474829554558, 0.009656613692641258, -0.01867259480059147, 0.046577852219343185, 0.04556037485599518, 0.07732827961444855, 0.011003829538822174, 0.029280737042427063, 0.07276847213506699, -0.08252871781587601, 0.014715737663209438, 0.04115130752325058, -0.018192118033766747, -0.0821518748998642, 0.0024612590204924345, -0.009048953652381897, 0.049894075840711594, 0.016345584765076637, -0.033878229558467865, -0.0022587054409086704, -0.05795852467417717, -0.009722561575472355, -0.07966470718383789, 0.046201009303331375, -0.057016417384147644, 0.04748227819800377, -0.03922940418124199, -0.025644198060035706, -0.005073255393654108, -0.004084040876477957, 0.04051067307591438, 0.01942628063261509, 0.029657581821084023, -0.0068491301499307156, 0.021611973643302917, 0.017485536634922028, 0.05087386816740036, 0.024909352883696556, 0.04156583547592163, -0.03561170771718025, -0.054039351642131805, -0.028715472668409348, 0.07476574182510376, -0.010212457738816738, 0.0343681238591671, -0.046577852219343185, 0.07853417843580246, -0.0321635901927948, -0.01793774962425232, -0.04002077504992485, -0.013076468370854855, 0.0021739157382398844, 0.022554080933332443, -0.057016417384147644, -0.03259696066379547, -0.02958221174776554, 0.005228702910244465, 0.024023771286010742, 0.04865049198269844, 0.03024168871343136, -0.0014967751922085881, -0.022987451404333115, 0.05207976698875427, 0.025587672367691994, -0.006891524884849787, -0.016176005825400352, 0.017014482989907265, -0.0011187540367245674, 0.01950164884328842, 0.007715870160609484, 0.04182962328195572, -0.010608144104480743, 0.047331538051366806, -0.019916176795959473, -0.030844638124108315, 0.039116352796554565, 0.043223947286605835, 0.08275482803583145, -0.024607878178358078, -0.005647941492497921, -0.004651661496609449, 0.02805599570274353, 0.032031696289777756, -0.015158528462052345, 0.05905137211084366, 0.006387496832758188, 0.0030100371222943068, -0.014301209710538387, -0.008205766789615154, -0.06813330203294754, 0.0477837510406971, -0.0075368694961071014, -0.00248245638795197, -0.03619581460952759, -0.01566726714372635, -0.0351029708981514, -0.06587223708629608, 0.007503895554691553, 0.06753034889698029, 0.024023771286010742, 0.0064298915676772594, 0.006787892896682024, 0.024080296978354454, 0.019520491361618042, -0.005393572151660919, 0.04077446460723877, -0.04966796934604645, -0.03621465712785721, -0.03188095614314079, 0.024193350225687027, -0.02771683782339096, 0.01643037609755993, -0.029318422079086304, 0.04378921166062355, 0.03802350535988808, -0.042470257729291916, 0.05207976698875427, -0.00035270192893221974, 0.012058991007506847, 0.002508364384993911, 0.08418682962656021, 0.06568381935358047, 0.01328373234719038, 0.011635041795670986, 0.0004898965125903487, -0.05539599061012268, -0.02468324638903141, -0.013180100359022617, 0.011531409807503223, -0.02016112580895424, -0.014687473885715008, 0.012822099030017853, 0.0007548645953647792, 0.012671361677348614, -0.06900003552436829, -0.017429010942578316, 0.03655381500720978, -0.05430314317345619, -0.010570459067821503, -0.03259696066379547, 0.01789064332842827, -0.012407571077346802, 0.027905259281396866, -0.014725158922374249, -0.022893240675330162, 0.015808584168553352, -0.0010698821861296892, 0.026642832905054092, 0.02924305386841297, 0.05950358510017395, 0.06794487684965134, -0.09519065916538239, 0.02434408850967884, -0.03182443231344223, -0.06067179888486862, -0.07031898945569992, 0.059239793568849564, -0.050986919552087784, -0.02652977965772152, 0.0544915646314621, 0.0017723419005051255, 0.04156583547592163, -0.018879856914281845, -0.023646928369998932, 0.04906501993536949, 0.04748227819800377, -0.05539599061012268, 0.04529658332467079, 0.013010520488023758, -0.011898832395672798, 0.06236759573221207, -0.0494418628513813, -0.0017334799049422145, 0.03617697209119797, 0.08109671622514725, 0.014988948591053486, 0.014357736334204674, 0.07778049260377884, 0.016373848542571068, 0.04405300319194794, 0.011917674914002419, 0.06063411384820938, -0.04951723292469978, -0.004672858864068985, 0.047670699656009674, 0.0038791324477642775, -0.08818136900663376, -0.03828729689121246, 0.025700723752379417, 0.04145278036594391, 0.01120167225599289, 0.0955675020813942, -0.02581377699971199, 0.026435568928718567, 0.0040039620362222195, -0.012511203065514565, 0.010391458868980408, -0.05117534473538399, 0.02916768379509449, -0.07989081740379333, 0.0651562362909317, 0.03178674727678299, 0.001766453729942441, 0.043902263045310974, -0.04035993665456772, 0.0031254454515874386, 0.03634655103087425, -0.04672858864068985, -0.005963548086583614, 0.05660188943147659, -0.008017344400286674, -0.0448443740606308, -0.000014085629118198995, 0.009713140316307545, 0.04563574492931366, 0.006966893561184406, 0.035743601620197296, 0.044693633913993835, -0.01603468880057335, -0.0023847126867622137, 0.02847052365541458, 0.0182863287627697, 0.020745232701301575, 0.05151450261473656, -0.015083160251379013, 0.04149046540260315, -0.03105190210044384, 0.03024168871343136, -0.01045740582048893, 0.009779088199138641, 0.007452079560607672, 0.05505682900547981, 0.023816507309675217, 0.05984274297952652, -0.04465595260262489, 0.013029363006353378, 0.036440763622522354, 0.06564613431692123, 0.012680782936513424, -0.0310142170637846, 0.028244417160749435, 0.005784547422081232, 0.0028592997696250677, 0.00040569555130787194, 0.042432576417922974, -0.018606645986437798, 0.005431256722658873, 0.017504379153251648, -0.013783049769699574, 0.06658823788166046, -0.008450714871287346, 0.0035847234539687634, -0.04929112643003464, 0.02057565376162529, -0.06021958589553833, 0.0006865616887807846, 0.040548358112573624, -0.0160817950963974, 0.023797664791345596, 0.01978428289294243, 0.01982196606695652, -0.02769799530506134, -0.08607105165719986, 0.029337264597415924, -0.0014402486849576235, -0.03751476854085922, 0.029808318242430687, 0.0012647808762267232, -0.06617370992898941, -0.03333180397748947, 0.03698718547821045, -0.01643037609755993, 0.047670699656009674, 0.05803389474749565, -0.07589627802371979, -0.012096675112843513, -0.02129165641963482, 0.009816772304475307 ]
20,394
connectorx
remove_ending_semicolon
Removes the semicolon if the query ends with it. Parameters ========== query SQL query
def remove_ending_semicolon(query: str) -> str: """ Removes the semicolon if the query ends with it. Parameters ========== query SQL query """ if query.endswith(";"): query = query[:-1] return query
(query: str) -> str
[ -0.013359434902668, 0.047281160950660706, 0.010056325234472752, 0.05928303301334381, -0.0626034364104271, -0.04624353349208832, -0.020960045978426933, 0.05295351520180702, -0.011396592482924461, -0.018798325210809708, 0.009649922139942646, -0.011362005025148392, -0.032391227781772614, -0.0009430507197976112, 0.017224593088030815, 0.02824072167277336, 0.017129477113485336, -0.003534413641318679, -0.008776586502790451, 0.012269928120076656, -0.010030385106801987, 0.035175520926713943, -0.0030588351655751467, 0.014682408422231674, 0.006831038277596235, 0.011828936636447906, 0.005049780011177063, 0.0004550422600004822, 0.02215331606566906, 0.0030091155786067247, 0.004768756218254566, -0.008923583664000034, -0.0146391736343503, 0.008344242349267006, 0.02116757072508335, 0.0493909977376461, 0.037596650421619415, 0.043891582638025284, 0.06744569540023804, -0.02116757072508335, -0.022430015727877617, 0.049978986382484436, 0.020562289282679558, -0.014051185920834541, 0.0619116872549057, -0.008305331692099571, -0.006653776858001947, -0.007233118172734976, 0.007189883850514889, 0.035798098891973495, 0.06799909472465515, 0.04977146163582802, -0.034967996180057526, -0.013151910156011581, -0.024418799206614494, -0.11282453685998917, 0.04157421737909317, -0.010134147480130196, -0.012961678206920624, 0.04506755620241165, 0.03648984804749489, -0.020043475553393364, -0.01452676486223936, 0.02111569046974182, 0.035728923976421356, -0.0021563165355473757, -0.004535290412604809, 0.04313065484166145, -0.000872794829774648, 0.014794818125665188, -0.04313065484166145, 0.05219259113073349, -0.046381883323192596, 0.004526643548160791, 0.015313630923628807, -0.08875161409378052, 0.014725643210113049, 0.027030158787965775, -0.047281160950660706, -0.038807213306427, 0.04150504246354103, -0.03994860127568245, 0.05129331350326538, -0.033082976937294006, 0.015382805839180946, -0.0229315347969532, -0.005832322873175144, 0.012581215240061283, -0.10915826261043549, -0.0193171389400959, 0.0020655242260545492, -0.013973363675177097, -0.005840969737619162, -0.026251938194036484, 0.023294704034924507, 0.01692195050418377, 0.036040209233760834, -0.01865997537970543, -0.028136959299445152, -0.02298341691493988, 0.07339474558830261, 0.06786074489355087, 0.028067784383893013, -0.036835722625255585, 0.012823328375816345, -0.02829260379076004, 0.025024080649018288, -0.044617921113967896, -0.01779528707265854, -0.0018439479172229767, -0.03301380202174187, -0.015002342872321606, -0.045413434505462646, -0.05789953097701073, 0.004600142128765583, 0.03515822812914848, -0.017388882115483284, -0.013644782826304436, 0.081142358481884, -0.0046087889932096004, -0.03258145600557327, 0.046658582985401154, -0.0495639368891716, 0.005326480139046907, 0.04776538535952568, -0.045690134167671204, 0.0027864582370966673, 0.0065543376840651035, 0.0025919033214449883, -0.026770751923322678, -0.02033746987581253, 0.016161026433110237, -0.0017315384466201067, -0.040294479578733444, -0.028033196926116943, 0.0756775289773941, -0.061565812677145004, -0.020614171400666237, 0.011223655194044113, 0.00007140434172470123, -0.021720971912145615, 0.009831506758928299, -0.03565974906086922, 0.020683346316218376, -0.052676815539598465, -0.011707880534231663, -0.0372161865234375, -0.023208236321806908, -0.036870311945676804, -0.025058668106794357, -0.05060156434774399, -0.057069431990385056, 0.014059833250939846, -0.03576350957155228, 0.03642067313194275, 0.008093482814729214, 0.020942751318216324, -0.04596683382987976, 0.03017762303352356, -0.048180434852838516, 0.03697407618165016, -0.04489462077617645, 0.03216640651226044, -0.0047341687604784966, -0.04517132043838501, -0.008011337369680405, 0.027030158787965775, 0.043822407722473145, -0.011128539219498634, 0.030402442440390587, 0.025473719462752342, 0.03384390100836754, 0.033152151852846146, 0.033221326768398285, -0.03780417516827583, 0.05748448148369789, 0.004816314205527306, 0.06277637183666229, 0.051777537912130356, 0.0060182311572134495, 0.01066160760819912, -0.042992305010557175, 0.06277637183666229, -0.006217109505087137, 0.042819369584321976, -0.06281096488237381, -0.03614397346973419, -0.050982024520635605, 0.033169444650411606, 0.003017762443050742, -0.03270251303911209, -0.049978986382484436, -0.010073619894683361, -0.03180323913693428, 0.008690117858350277, -0.04489462077617645, 0.05233094096183777, 0.04319982975721359, -0.00009896628762362525, -0.01498504914343357, -0.04807667434215546, 0.033273208886384964, 0.0308693740516901, -0.04880301281809807, 0.036801137030124664, 0.03251228109002113, 0.0051405723206698895, -0.05118954926729202, -0.01757046766579151, 0.01788175478577614, -0.01585838384926319, 0.012607156299054623, 0.05506335571408272, -0.020199120044708252, 0.01511475257575512, -0.018953969702124596, 0.05845293402671814, 0.05651603266596794, 0.017337001860141754, 0.041159167885780334, -0.007008299231529236, -0.05208882689476013, 0.028603890910744667, -0.0024622001219540834, 0.017501292750239372, 0.007981074042618275, 0.006268990691751242, 0.051016613841056824, 0.06495539098978043, -0.06813744455575943, -0.0037505857180804014, -0.03000468574464321, 0.020717933773994446, -0.051846712827682495, 0.040259890258312225, -0.020199120044708252, -0.0016937083564698696, 0.005655061919242144, -0.007812459487468004, -0.0029507491271942854, 0.0048768422566354275, -0.0020179664716124535, 0.0043342504650354385, -0.035175520926713943, -0.047211986035108566, 0.005737207364290953, 0.03429353982210159, 0.009900681674480438, -0.010480022989213467, 0.054337017238140106, -0.020683346316218376, 0.011240948922932148, 0.04243890568614006, 0.01555574405938387, 0.07235712558031082, 0.02118486538529396, -0.03894556313753128, 0.046520233154296875, 0.009511572308838367, 0.027808377519249916, -0.0024686853867024183, -0.05731154605746269, -0.007016946095973253, 0.023363878950476646, 0.013419963419437408, 0.01542604062706232, -0.06831037998199463, 0.013463198207318783, 0.018175749108195305, 0.002516243141144514, 0.016377197578549385, -0.07052398473024368, -0.022672129794955254, 0.0029702044557780027, 0.0008538797846995294, 0.07560835033655167, -0.09221036732196808, -0.016256140545010567, -0.00773463724181056, 0.0075746700167655945, 0.00931269396096468, -0.05340315401554108, 0.028863297775387764, -0.019282549619674683, 0.019749483093619347, 0.06481704115867615, 0.028621185570955276, -0.08902831375598907, 0.007725990377366543, 0.04437580704689026, 0.05388737842440605, -0.03565974906086922, -0.023398466408252716, -0.012243987061083317, 0.0002673778508324176, -0.01952466368675232, 0.10210239887237549, -0.005901498254388571, 0.039256852120161057, -0.007012622430920601, 0.004626082722097635, 0.020942751318216324, -0.017864461988210678, 0.005819352809339762, -0.00771302031353116, -0.03249498829245567, -0.035728923976421356, 0.01855621300637722, 0.013238378800451756, -0.000569613475818187, -0.04880301281809807, 0.021046515554189682, -0.06606218963861465, -0.05765742063522339, -0.0168441291898489, 0.03258145600557327, 0.017354294657707214, -0.02561206929385662, -0.01414630189538002, -0.013791779056191444, -0.023190941661596298, -0.03012574277818203, -0.002695665927603841, -0.04773079603910446, -0.0798972025513649, -0.0670306384563446, -0.022274373099207878, 0.05817623436450958, 0.01456999871879816, 0.0008155092364177108, 0.0013521563960239291, -0.020769814029335976, -0.04506755620241165, 0.007877310737967491, 0.06647723913192749, -0.03446647897362709, 0.028534715995192528, -0.011206361465156078, 0.009537512436509132, 0.008244803175330162, 0.008084836415946484, -0.02026829496026039, 0.033255916088819504, 0.02758355811238289, 0.0334288515150547, 0.028897885233163834, -0.042023856192827225, 0.004604465328156948, 0.007155296392738819, -0.02732415311038494, 0.04070952907204628, -0.012581215240061283, -0.010073619894683361, -0.02118486538529396, 0.05783035606145859, 0.005594533868134022, -0.0709044486284256, 0.0051794834434986115, -0.028067784383893013, 0.009598040953278542, 0.07968968152999878, 0.006463545374572277, 0.04240431636571884, 0.022412722930312157, 0.006913183256983757, 0.04337276890873909, -0.05917927250266075, -0.036766547709703445, -0.022775892168283463, 0.0016883040079846978, -0.02395186759531498, -0.045655544847249985, 0.05578969419002533, -0.03476047143340111, -0.01757046766579151, 0.060493599623441696, 0.023588698357343674, 0.06568172574043274, 0.0011165288742631674, 0.01609184965491295, -0.005157866049557924, -0.008128070272505283, -0.008452328853309155, -0.024972200393676758, -0.008370183408260345, 0.03818463906645775, 0.024280449375510216, -0.05295351520180702, -0.02040664479136467, 0.0035711629316210747, -0.02474738098680973, -0.0353657528758049, 0.007323910482227802, -0.03000468574464321, -0.07505495101213455, 0.036593612283468246, -0.032356638461351395, -0.01412036083638668, -0.007548729423433542, 0.04174715280532837, -0.005192453507333994, -0.0008533393265679479, 0.05935220792889595, 0.0238999854773283, 0.02554289437830448, -0.0795513316988945, -0.008759292773902416, -0.028569303452968597, -0.03479506075382233, -0.004377484787255526, 0.03249498829245567, -0.12423842400312424, -0.05471748113632202, 0.03711242601275444, 0.06377941370010376, -0.010030385106801987, 0.0391530878841877, -0.025473719462752342, 0.028655773028731346, 0.06675393879413605, -0.017077594995498657, -0.0022633217740803957, -0.04178174212574959, 0.044860031455755234, -0.06658100336790085, 0.04790373519062996, -0.011578177101910114, 0.07588504999876022, -0.04254266619682312, -0.01542604062706232, 0.010748076252639294, 0.003549545770511031, -0.019680306315422058, 0.03178594261407852, -0.008923583664000034, 0.01597944088280201, 0.05049780011177063, -0.006532720755785704, 0.042923130095005035, -0.050082750618457794, 0.0024124805349856615, -0.0021433462388813496, -0.026079000905156136, -0.028828710317611694, 0.050982024520635605, -0.049148887395858765, 0.0389801524579525, 0.019974300637841225, 0.03477776423096657, 0.037389125674963, -0.018383273854851723, -0.00421751756221056, -0.07768360525369644, 0.004496379289776087, 0.030575379729270935, -0.04441039264202118, 0.06045901030302048, 0.0016007543308660388, 0.01552980300039053, 0.014699702151119709, -0.03152653947472572, 0.0721495971083641, -0.0497368760406971, 0.03728536143898964, 0.034916117787361145, 0.013644782826304436, 0.042819369584321976, -0.061669573187828064, -0.02915729209780693, 0.007674109190702438, -0.02486843802034855, -0.05841834470629692, -0.03548680990934372, 0.0247819684445858, 0.03202805668115616, 0.033065684139728546, 0.004548260942101479, -0.004470438696444035, 0.042853955179452896, 0.08965089172124863, -0.01853891834616661, -0.018227631226181984, -0.07360227406024933, 0.006355459336191416, 0.036040209233760834, 0.0018601608462631702, 0.04520590603351593, -0.053472328931093216, 0.011362005025148392, -0.02464361861348152, 0.058764223009347916, -0.002965881023555994, 0.04257725551724434, -0.023709755390882492, 0.04520590603351593, -0.015313630923628807, 0.034846942871809006, -0.021997671574354172, 0.022724010050296783, 0.0008382072555832565, -0.005110308062285185, -0.0016742527950555086, -0.11718256771564484, -0.008102130144834518, 0.030298680067062378, -0.012918444350361824, 0.05668896809220314, 0.05042862519621849, -0.01407712697982788, 0.03206264600157738, -0.018089281395077705, -0.01546062808483839, -0.0016223714919760823, -0.02569853886961937, -0.018988557159900665, -0.03835757449269295, -0.03168218210339546, -0.01508881151676178, 0.04977146163582802, 0.039533551782369614, -0.0370432510972023, 0.020890871062874794, -0.08522368222475052, 0.03161300718784332, -0.02754897065460682, -0.010073619894683361, -0.0019617616198956966, 0.011180420406162739, 0.05108578875660896, -0.012788740918040276, -0.0077605778351426125, 0.03247769549489021, 0.017155416309833527, -0.018071986734867096, 0.013921482488512993, -0.00011538185208337381, -0.008482593111693859, -0.043856993317604065, -0.030540792271494865, -0.020838988944888115, 0.0032533900812268257, 0.03012574277818203, 0.011387946084141731, 0.013342141173779964, -0.02388269267976284, 0.06938259303569794, -0.01964571885764599, 0.032408520579338074, -0.00022103596711531281, 0.06519750505685806, -0.06606218963861465, 0.07076609879732132, 0.006627836264669895, -0.022862359881401062, 0.020631464198231697, -0.058141645044088364, -0.03866886347532272, 0.042023856192827225, -0.024366918951272964, 0.02920917235314846, -0.05122413858771324, 0.011655999347567558, -0.00010045246744994074, -0.002548668999224901, -0.0336017906665802, -0.00045017836964689195, -0.033359676599502563, -0.021738264709711075, -0.012408277951180935, 0.02841365896165371, -0.0007214743527583778, -0.02843095362186432, 0.07159619778394699, 0.04157421737909317, -0.02374434284865856, -0.020164532586932182, 0.009814213030040264, 0.020821696147322655, 0.04243890568614006, -0.015313630923628807, -0.011880817823112011, 0.06516291201114655, -0.028655773028731346, 0.045413434505462646, -0.04579389467835426, 0.009096521884202957, -0.02568124420940876, -0.032270170748233795, -0.01848703809082508, -0.022430015727877617, -0.023329291492700577, -0.015279043465852737, 0.061634987592697144, -0.017553173005580902, -0.0019941874779760838, 0.026130883023142815, 0.008430711925029755, 0.03548680990934372, -0.026909101754426956, 0.047211986035108566, -0.04942558705806732, 0.004420719109475613, 0.044617921113967896, 0.05765742063522339, 0.03185511752963066, -0.04776538535952568, -0.06360647827386856, 0.037735000252723694, -0.047384921461343765, -0.015235808677971363, 0.024090217426419258, 0.06294931471347809, -0.04544802010059357, 0.04579389467835426, -0.03624773770570755, -0.009615334682166576, 0.002520566573366523, -0.02585418149828911, -0.026372995227575302, 0.017094889655709267, 0.0283098965883255, 0.018884792923927307, -0.003177729668095708, -0.004072682000696659, -0.03270251303911209, 0.031388185918331146, -0.031578417867422104, -0.04876842349767685, 0.007354174740612507, -0.0652666762471199, -0.05146625265479088, 0.011880817823112011, -0.010687547735869884, -0.0006939123850315809, -0.03576350957155228, -0.02391728013753891, -0.020856283605098724, -0.016480959951877594, -0.029797160997986794, -0.032235581427812576, 0.011336064897477627, 0.060597360134124756, -0.06018231064081192, -0.033169444650411606, -0.04330359399318695, -0.0587296336889267, -0.012053756043314934, -0.0004688232147600502, -0.03911850228905678, -0.03361908346414566, 0.028949765488505363, 0.028085077181458473, 0.04088246449828148, 0.03555598482489586, 0.020942751318216324, -0.021098395809531212, -0.019663013517856598, 0.01776069961488247, 0.026113588362932205, -0.012944384478032589, 0.08958171308040619, -0.03655902296304703, -0.00887170247733593, 0.04887218773365021, 0.03521011024713516, 0.008569061756134033, -0.00399269862100482, 0.02300070971250534, 0.06284555047750473, -0.06125452369451523, 0.00389109761454165, -0.003586295060813427, -0.04319982975721359, -0.04451415687799454, -0.040259890258312225, -0.08875161409378052, 0.018279511481523514, -0.011794349178671837, 0.029433991760015488, -0.007501171436160803, -0.006013907492160797, -0.0020925458520650864, 0.019075024873018265, -0.0010381664615124464, -0.007708696648478508, 0.05779577046632767, -0.025058668106794357, 0.020129945129156113, -0.004660670179873705, -0.01698247902095318, -0.019766775891184807, -0.057207781821489334, -0.033930372446775436, -0.009615334682166576, 0.054337017238140106, 0.01776069961488247, -0.05914468318223953, -0.02658051997423172, -0.02649405226111412, 0.04347652941942215, 0.009589393623173237, 0.05305727943778038, -0.02208414115011692, 0.011318770237267017, -0.0013543181121349335, 0.03161300718784332, 0.03367096558213234, -0.04790373519062996, -0.0333423838019371, 0.00033939018612727523, -0.03728536143898964, 0.02820613421499729, 0.017587760463356972, 0.015745975077152252, 0.06346812844276428, -0.006930477451533079, -0.0009381868876516819, -0.06000937148928642, 0.020614171400666237, -0.013584254309535027, -0.016264788806438446, -0.023294704034924507, -0.00552103528752923, 0.029849043115973473, -0.025231607258319855, -0.02929564192891121, 0.025940651074051857, -0.002998306881636381, 0.038599688559770584, 0.02481655590236187, -0.09975045174360275, 0.08301008492708206, 0.012027814984321594, 0.06381399929523468, 0.06426364183425903, -0.01011685375124216, -0.03188970685005188, 0.016480959951877594, -0.0423351414501667, -0.0033290502615273, -0.06934800744056702, -0.011604118160903454, 0.011854877695441246, -0.007764901500195265, 0.05568592995405197, -0.03870345279574394, 0.04952935129404068, -0.0337747260928154, -0.015668153762817383, 0.016679838299751282, 0.004338573664426804, 0.009113815613090992, -0.002371407812461257, 0.015832444652915, -0.009234871715307236, 0.000670133507810533, 0.037596650421619415, 0.03182053193449974, -0.015175281092524529, -0.04257725551724434, -0.01022061612457037, 0.06281096488237381, 0.09905870258808136, -0.06222297623753548, 0.04800749942660332, 0.008115100674331188, -0.004850901663303375, -0.038565099239349365 ]
20,395
connectorx
rewrite_conn
null
def rewrite_conn( conn: str | ConnectionUrl, protocol: Protocol | None = None ) -> tuple[str, Protocol]: if not protocol: # note: redshift/clickhouse are not compatible with the 'binary' protocol, and use other database # drivers to connect. set a compatible protocol and masquerade as the appropriate backend. backend, connection_details = conn.split(":", 1) if conn else ("", "") if "redshift" in backend: conn = f"postgresql:{connection_details}" protocol = "cursor" elif "clickhouse" in backend: conn = f"mysql:{connection_details}" protocol = "text" else: protocol = "binary" return conn, protocol
(conn: str | connectorx.ConnectionUrl, protocol: Optional[Literal['csv', 'binary', 'cursor', 'simple', 'text']] = None) -> tuple[str, typing.Literal['csv', 'binary', 'cursor', 'simple', 'text']]
[ 0.005027487874031067, -0.058005958795547485, -0.014849158935248852, 0.006367846392095089, -0.06243417412042618, -0.040000323206186295, -0.03701768070459366, 0.04856397956609726, 0.01807882823050022, -0.07758525758981705, 0.0180696789175272, 0.032589469105005264, 0.0018675813917070627, 0.031052401289343834, 0.012442918494343758, -0.014666175469756126, -0.0067109414376318455, 0.015050441958010197, 0.0008777518523856997, 0.011811623349785805, 0.028801696375012398, 0.022287461906671524, 0.020402725785970688, -0.0388658232986927, 0.00005074949513073079, 0.09237036854028702, -0.004862802103161812, 0.0025937994942069054, 0.04856397956609726, 0.0013986846897751093, 0.020091652870178223, -0.03621255233883858, 0.03392525017261505, 0.026898661628365517, 0.0061894371174275875, 0.027996566146612167, 0.005356859415769577, 0.06408102810382843, 0.03392525017261505, -0.03359587863087654, -0.055370986461639404, -0.042196132242679596, -0.03396184742450714, -0.0451238788664341, 0.004622635897248983, 0.038573045283555984, -0.04625837877392769, -0.010128169320523739, -0.018133724108338356, -0.038939014077186584, 0.027722090482711792, 0.002833966165781021, 0.010329452343285084, 0.055041614919900894, 0.03224179893732071, -0.031052401289343834, 0.0021226154640316963, 0.10847297310829163, -0.039085403084754944, 0.033248208463191986, 0.0027424742002040148, -0.031564757227897644, -0.03882922604680061, 0.0480516217648983, -0.02468455396592617, -0.04303785786032677, -0.014199566096067429, -0.09171162545681, -0.028271041810512543, -0.008906750939786434, 0.019359717145562172, 0.01709071360528469, -0.032296691089868546, -0.06108009070158005, -0.013577420264482498, -0.009487724862992764, 0.0005300820339471102, 0.015425559133291245, 0.0368712954223156, 0.005516970530152321, 0.03568189963698387, -0.04922272264957428, 0.008577379398047924, -0.013092512264847755, 0.023092592135071754, -0.07524306327104568, -0.019195031374692917, 0.03147326409816742, -0.059579622000455856, -0.028197849169373512, 0.001580525073222816, -0.09258995205163956, 0.04578262194991112, 0.03150986135005951, -0.011958010494709015, -0.020732097327709198, -0.027978267520666122, -0.04666094481945038, 0.0019087528344243765, -0.057896167039871216, -0.0348401702940464, 0.01749327965080738, -0.1203303411602974, -0.014373400248587132, 0.0036596818827092648, -0.04479450732469559, 0.041830163449048996, -0.01197630912065506, -0.03048514947295189, -0.04483110457658768, -0.026166725903749466, -0.03692619130015373, -0.019579298794269562, -0.018453946337103844, 0.04666094481945038, 0.0035293058026582003, 0.012845483608543873, -0.05357774347066879, 0.014721070416271687, 0.008376097306609154, -0.07085143774747849, 0.029497036710381508, 0.004890250042080879, -0.00024588487576693296, 0.07425494492053986, 0.05324837192893028, 0.04592900723218918, -0.004935996141284704, -0.004281827714294195, -0.005635910201817751, 0.03055834397673607, 0.028088059276342392, -0.040402889251708984, 0.006514233537018299, -0.0013769553042948246, 0.02589225023984909, -0.02472115121781826, 0.04918612539768219, -0.009560919366776943, -0.0348401702940464, -0.016093451529741287, -0.014080625958740711, -0.04911293089389801, 0.029057873412966728, 0.012314829975366592, -0.014071476645767689, -0.010292855091392994, -0.0017543600406497717, 0.01349507737904787, -0.011180328205227852, 0.06071412190794945, -0.02559947408735752, -0.02376963384449482, 0.013147407211363316, -0.02417219802737236, 0.015654290094971657, -0.03275415301322937, -0.008055875077843666, -0.008490461856126785, 0.016752194613218307, 0.0498814657330513, -0.06045794486999512, 0.028765099123120308, -0.010997343808412552, -0.0034286645241081715, 0.011710981838405132, 0.06009197607636452, -0.020585710182785988, 0.06020176783204079, -0.024629659950733185, 0.007328513078391552, 0.0601651705801487, 0.020000161603093147, 0.03634064272046089, 0.057859569787979126, 0.09171162545681, 0.03562700375914574, -0.0638248547911644, -0.01206780131906271, -0.015178530476987362, 0.054382871836423874, -0.0174200851470232, 0.033906951546669006, 0.05873789265751839, 0.01848139427602291, 0.013065064325928688, 0.013559121638536453, -0.0058875130489468575, 0.07692651450634003, -0.010256258770823479, 0.04545325040817261, 0.01705411821603775, -0.017392639070749283, -0.06799688935279846, 0.014455743134021759, -0.06850924342870712, 0.028984680771827698, 0.018453946337103844, 0.0236598439514637, 0.06825307011604309, 0.005375157576054335, 0.023458560928702354, -0.011674385517835617, 0.05460245534777641, 0.057676587253808975, -0.02644120156764984, 0.04270848631858826, -0.039048805832862854, -0.06071412190794945, -0.001965935342013836, 0.029698317870497704, -0.0044053420424461365, -0.016166644170880318, -0.020055057480931282, 0.011308416724205017, 0.010320303030312061, -0.03161965310573578, 0.0462217815220356, 0.002749335952103138, -0.019158434122800827, 0.006994566880166531, -0.002833966165781021, 0.05108916014432907, -0.011006493121385574, 0.10503286868333817, -0.08146452158689499, 0.0048948246985673904, -0.040146712213754654, 0.016898581758141518, 0.024812642484903336, -0.017319444566965103, -0.012571007013320923, -0.010494138114154339, 0.012671648524701595, 0.07926870882511139, -0.027356121689081192, -0.040366291999816895, -0.02468455396592617, 0.08205007016658783, -0.00776767497882247, 0.0006398725090548396, 0.0330103300511837, -0.0027196011506021023, 0.007259894162416458, -0.024044109508395195, -0.03085111826658249, 0.022946204990148544, -0.0361393578350544, -0.034272920340299606, 0.033394597470760345, -0.057822972536087036, -0.007813421078026295, -0.01322060078382492, -0.027319524437189102, -0.0005209328373894095, 0.00767618278041482, -0.1250879317522049, 0.03731045871973038, -0.024812642484903336, -0.04435534402728081, -0.02431858703494072, 0.07008291035890579, -0.011893966235220432, -0.04669754207134247, 0.01511448621749878, -0.06056773662567139, 0.003511007409542799, -0.0022667155135422945, 0.0011768164113163948, 0.0363040454685688, 0.05302879214286804, 0.042598698288202286, -0.02677057310938835, 0.06082391366362572, 0.009634112939238548, -0.03716406971216202, 0.006148265674710274, -0.004940570332109928, 0.043257441371679306, -0.06408102810382843, -0.01179332472383976, -0.015370664186775684, -0.019231628626585007, -0.06876542419195175, -0.015123635530471802, -0.034016743302345276, -0.004972592927515507, -0.003154188394546509, 0.015608543530106544, 0.02325727790594101, -0.00441906601190567, -0.003266266081482172, -0.008897601626813412, 0.04783204197883606, -0.06181202828884125, 0.08417268097400665, 0.029698317870497704, 0.039304982870817184, 0.02677057310938835, -0.04300126060843468, -0.06151925399899483, 0.016962625086307526, 0.03516954183578491, 0.057566795498132706, 0.04673413932323456, 0.006221459247171879, -0.001327778329141438, -0.05138193443417549, -0.017511578276753426, 0.029497036710381508, -0.01613919623196125, -0.02596544288098812, -0.01122607383877039, 0.020439323037862778, -0.0004614630015566945, -0.002151206834241748, -0.010741166770458221, 0.01712731085717678, 0.00011243514745729044, 0.03183923289179802, -0.02508712001144886, 0.021006574854254723, -0.04241571202874184, 0.019524402916431427, 0.014400848187506199, -0.02428198978304863, -0.02325727790594101, -0.0063724210485816, 0.03754833713173866, 0.02957022935152054, -0.028014864772558212, 0.07670693099498749, -0.0007490911521017551, 0.025215208530426025, 0.01529747061431408, -0.028454026207327843, -0.03048514947295189, -0.013778702355921268, -0.014483191072940826, -0.012635051272809505, 0.012223337776958942, -0.009981782175600529, 0.033284805715084076, -0.02351345680654049, 0.059543024748563766, -0.032040514051914215, -0.0696803405880928, 0.01745668239891529, -0.01179332472383976, 0.0006919085863046348, -0.023641545325517654, -0.041171420365571976, -0.04336722940206528, 0.0341082364320755, 0.026093531399965286, 0.011665236204862595, -0.04958869144320488, -0.05946983024477959, 0.020640606060624123, -0.003032961394637823, 0.014638727530837059, -0.011628638952970505, 0.041061632335186005, 0.023202383890748024, 0.020183145999908447, 0.02475774846971035, -0.0009200669010169804, 0.014949800446629524, -0.00119397125672549, -0.035700198262929916, -0.014894905500113964, 0.014446593821048737, 0.025544580072164536, -0.037328753620386124, -0.04417236149311066, -0.0028728502802550793, 0.013714658096432686, -0.015709184110164642, -0.004990891087800264, -0.06148265674710274, 0.04911293089389801, -0.02150063030421734, 0.06656961143016815, 0.03882922604680061, 0.003181635867804289, -0.03110729530453682, -0.003524731146171689, 0.008321201428771019, 0.024227093905210495, 0.021958092227578163, -0.06473977118730545, 0.013055915012955666, 0.001293468871153891, -0.011143730953335762, -0.054090097546577454, 0.02677057310938835, 0.014483191072940826, -0.016422823071479797, -0.03458399325609207, 0.021464034914970398, -0.03330310434103012, -0.04750267043709755, 0.012717394158244133, 0.017539026215672493, -0.03705427795648575, 0.06254396587610245, 0.05237004905939102, 0.12318488955497742, 0.014949800446629524, -0.032223500311374664, -0.07758525758981705, -0.031125593930482864, -0.0256726685911417, -0.007689906749874353, 0.017511578276753426, 0.031820934265851974, 0.058628104627132416, 0.042525503784418106, 0.001315198140218854, 0.056432295590639114, -0.01832585781812668, -0.0060064527206122875, 0.026715677231550217, 0.07802441716194153, 0.010594778694212437, 0.020128250122070312, 0.039231788367033005, -0.038353465497493744, -0.010979046113789082, 0.039890531450510025, -0.001327778329141438, -0.04472131282091141, -0.001851570326834917, -0.057969361543655396, 0.06803348660469055, -0.0009583791834302247, 0.04790523648262024, 0.06353207677602768, 0.029185963794589043, -0.005128129385411739, 0.03754833713173866, -0.014291057363152504, -0.042086340487003326, -0.0182526633143425, 0.0616290420293808, -0.020439323037862778, -0.002582363085821271, -0.039890531450510025, -0.021921494975686073, 0.029698317870497704, 0.014711921103298664, 0.008170239627361298, -0.013193152844905853, 0.0174200851470232, 0.009624963626265526, -0.059543024748563766, 0.02651439607143402, 0.01741093583405018, 0.003730588126927614, 0.002509169513359666, 0.055114809423685074, -0.01639537513256073, 0.05914045870304108, 0.005132704041898251, -0.038975611329078674, -0.07301065325737, 0.0183350071310997, -0.017227953299880028, -0.028508922085165977, -0.006171138491481543, -0.029185963794589043, -0.012863782234489918, 0.005123554728925228, 0.03015577793121338, 0.0002498876419849694, 0.010164766572415829, -0.01832585781812668, -0.025855652987957, -0.0031770614441484213, -0.020658904686570168, -0.09917738288640976, 0.014620428904891014, 0.01621239073574543, 0.009954335168004036, 0.05196748301386833, -0.0046660942025482655, 0.0010515867033973336, -0.025398192927241325, -0.023842828348279, 0.007982681505382061, -0.009679858572781086, 0.11542636901140213, -0.0003245108528062701, -0.03187583014369011, 0.023641545325517654, 0.013723807409405708, -0.02559947408735752, 0.007904913276433945, -0.029442140832543373, 0.0030238120816648006, 0.035078052431344986, -0.06232438236474991, -0.013348689302802086, -0.029057873412966728, 0.023092592135071754, -0.02677057310938835, -0.011473102495074272, 0.01723710261285305, -0.010000080801546574, 0.017548175528645515, -0.07330343127250671, 0.040000323206186295, 0.01502299401909113, 0.010201362892985344, -0.04991805925965309, 0.014007432386279106, -0.0032822771463543177, 0.013851895928382874, -0.00560388807207346, -0.054456066340208054, 0.038024093955755234, -0.01683453656733036, 0.025142014026641846, -0.02431858703494072, 0.009254420176148415, -0.011756728403270245, 0.02223256789147854, 0.02230576053261757, 0.0037351627834141254, -0.03257117047905922, -0.04611199349164963, 0.02527010254561901, -0.017850099131464958, 0.026843765750527382, 0.057969361543655396, -0.00865514762699604, -0.0181520227342844, 0.013623165898025036, -0.03624914959073067, -0.002011681441217661, -0.029954496771097183, 0.04603879898786545, -0.0700463131070137, -0.055444180965423584, -0.07238850742578506, 0.027228033170104027, 0.018975449725985527, 0.08688084781169891, -0.05251643434166908, -0.06671600043773651, -0.07096122950315475, 0.039634354412555695, 0.04519706964492798, 0.014538086019456387, -0.05302879214286804, 0.0016640116227790713, -0.009570067748427391, -0.009707306511700153, 0.0030764201655983925, 0.008975369855761528, 0.015507902018725872, -0.07026588916778564, -0.05328496918082237, 0.0344742052257061, -0.002071151277050376, 0.005974430590867996, 0.05189428851008415, -0.0023513457272201777, -0.019524402916431427, 0.04395277798175812, 0.042854875326156616, -0.010338601656258106, 0.05152831971645355, -0.029112769290804863, 0.012232487089931965, -0.05295559763908386, -0.00041743245674297214, 0.03456569463014603, 0.03584658354520798, 0.010054975748062134, 0.0017543600406497717, 0.056322503834962845, -0.03462059050798416, -0.0008314339793287218, 0.03751173987984657, 0.016496015712618828, -0.019231628626585007, 0.039817340672016144, 0.025855652987957, -0.042928069829940796, -0.04589240998029709, 0.033540982753038406, -0.0045242817141115665, -0.06060433387756348, 0.041647180914878845, -0.04461152106523514, -0.055370986461639404, 0.023055996745824814, 0.004105705767869949, 0.01245206780731678, -0.039414774626493454, -0.011582893319427967, 0.030649835243821144, -0.057530198246240616, -0.03096090815961361, -0.004176612012088299, -0.012635051272809505, -0.0007313645328395069, -0.012479514814913273, -0.06331249326467514, 0.005704529117792845, 0.053394757211208344, 0.008540783077478409, -0.05193088576197624, -0.027594001963734627, 0.0005641056341119111, -0.04589240998029709, 0.039048805832862854, -0.02633141167461872, -0.06375166028738022, -0.008110770024359226, 0.04347702115774155, -0.0017269124509766698, 0.015398111194372177, -0.06305631995201111, 0.06536191701889038, 0.00584176741540432, -0.04849078506231308, -0.002328472677618265, -0.034382712095975876, 0.029442140832543373, -0.022982802242040634, 0.059579622000455856, -0.02563607133924961, -0.01562684215605259, -0.042598698288202286, 0.0017303433269262314, 0.0023536328226327896, -0.026203323155641556, -0.0067566875368356705, 0.041281212121248245, 0.03333970159292221, 0.032955434173345566, -0.043879587203264236, 0.004890250042080879, -0.015635991469025612, 0.056944649666547775, -0.07096122950315475, -0.016852835193276405, -0.024812642484903336, 0.028966382145881653, 0.031198788434267044, 0.07897593826055527, 0.021756809204816818, 0.05302879214286804, 0.05430968105792999, -0.0016434259014204144, -0.00238794251345098, 0.028454026207327843, -0.027447614818811417, 0.028527220711112022, -0.006788710132241249, 0.059286847710609436, 0.041793566197156906, -0.018380751833319664, 0.03639553487300873, -0.0015187680255621672, -0.05251643434166908, 0.014034880325198174, -0.06693558394908905, 0.03672490641474724, -0.03656022250652313, -0.020402725785970688, -0.018170321360230446, 0.05094277113676071, -0.04669754207134247, 0.021116364747285843, 0.032223500311374664, -0.01606600359082222, -0.0341082364320755, 0.056066326797008514, -0.003286851802840829, -0.026752274483442307, -0.02318408526480198, -0.009254420176148415, -0.041244614869356155, -0.013156556524336338, 0.04494089260697365, 0.03456569463014603, -0.025873951613903046, 0.020146548748016357, 0.039085403084754944, 0.001976228319108486, 0.026679081842303276, -0.03604786843061447, -0.02333047240972519, 0.0030260994099080563, -0.023787932470440865, 0.02556287869811058, 0.013302943669259548, 0.05247983708977699, -0.007991829887032509, 0.0025686391163617373, -0.016111750155687332, 0.039744146168231964, -0.03344949334859848, 0.05222366005182266, -0.07780483365058899, 0.03564530238509178, 0.030796222388744354, -0.0462217815220356, -0.004867376759648323, -0.010850956663489342, -0.010997343808412552, 0.034712083637714386, -0.0012179878540337086, -0.009679858572781086, -0.013184004463255405, -0.06415422260761261, 0.019963564351201057, -0.028234446421265602, -0.042488906532526016, 0.028801696375012398, 0.022324059158563614, 0.008069598115980625, -0.03125368431210518, 0.03224179893732071, -0.025288401171565056, 0.04468471556901932, 0.040366291999816895, -0.019140135496854782, 0.05343135446310043, -0.021043170243501663, 0.05068659409880638, 0.019835475832223892, 0.00238794251345098, 0.023970916867256165, -0.03048514947295189, 0.019286522641777992, 0.013632315210998058, 0.006646897178143263, 0.019158434122800827, -0.010530734434723854, 0.0029437565244734287, -0.010411795228719711, -0.07268128544092178, 0.04852738231420517, 0.03670660778880119, -0.03030216693878174, 0.020604008808732033, -0.001979659078642726, 0.03641383349895477, -0.02409900538623333, -0.04442853853106499, 0.034638889133930206, -0.056139521300792694, 0.0005498100072145462, 0.013540823012590408, -0.026971856132149696, 0.010997343808412552, 0.004412204027175903, 0.11205945909023285, 0.037731319665908813, -0.027667194604873657, 0.007612138520926237, -0.08607571572065353, -0.021006574854254723, 0.004048523027449846 ]
20,396
connectorx
try_import_module
null
def try_import_module(name: str): try: return importlib.import_module(name) except ModuleNotFoundError: raise ValueError(f"You need to install {name.split('.')[0]} first")
(name: str)
[ 0.07757173478603363, -0.033415790647268295, 0.017947830259799957, -0.0072879609651863575, -0.019963838160037994, -0.030257971957325935, 0.03193500638008118, 0.020588265731930733, 0.007158615160733461, -0.019892476499080658, 0.02319302037358284, 0.010071123018860817, -0.0065386476926505566, -0.014495638199150562, -0.004959738347679377, -0.03348715603351593, 0.06494046002626419, 0.06294228881597519, -0.006730436347424984, -0.015780175104737282, -0.0018442912260070443, 0.035306915640830994, 0.030614787712693214, 0.012167415581643581, -0.01107912790030241, 0.07114905118942261, 0.08235306292772293, 0.015084384009242058, -0.036038387566804886, -0.04759921506047249, 0.07207677513360977, -0.010508222505450249, 0.009509138762950897, 0.059730950742959976, -0.011739237233996391, -0.032149095088243484, 0.001053163898177445, -0.059445496648550034, -0.011926565319299698, -0.05655528977513313, 0.04103380814194679, 0.07225517928600311, 0.047135356813669205, -0.03643088415265083, -0.0018933534156531096, -0.05523507297039032, -0.08520758897066116, 0.00004442773570190184, -0.018251122906804085, 0.048526935279369354, 0.017162835225462914, 0.020909400656819344, 0.03502146154642105, 0.027314241975545883, 0.07443175464868546, 0.045636728405952454, 0.016663294285535812, -0.006850861478596926, -0.018625780940055847, 0.03609190881252289, 0.019928157329559326, 0.014567001722753048, -0.01112372986972332, -0.0055574048310518265, -0.0555918887257576, -0.04410242289304733, 0.017269879579544067, -0.05594870448112488, -0.0244597177952528, -0.029722748324275017, -0.048348527401685715, 0.06408409774303436, -0.051916684955358505, -0.04328174516558647, 0.06965042650699615, 0.04360288009047508, -0.008420851081609726, -0.054628483951091766, 0.02115917205810547, 0.015182508155703545, -0.006092628464102745, 0.022479388862848282, -0.005321014206856489, -0.0115073062479496, -0.04752785339951515, -0.008501133881509304, 0.006056946702301502, -0.004464656580239534, 0.006494045723229647, 0.005610927008092403, 0.00283222459256649, -0.012176335789263248, -0.02865230105817318, 0.06529727578163147, 0.029972519725561142, -0.009696466848254204, 0.08021216839551926, -0.03885722905397415, -0.07161290943622589, 0.05213077366352081, -0.0020795664750039577, 0.059945039451122284, -0.04877670854330063, -0.02053474448621273, -0.051738277077674866, -0.017599934712052345, 0.025601526722311974, -0.003044083947315812, 0.02815276011824608, -0.016368919983506203, -0.028134917840361595, -0.03703746944665909, -0.035039301961660385, -0.003701962996274233, -0.005490501876920462, -0.06222866103053093, 0.05933845415711403, -0.003365218173712492, 0.016458123922348022, 0.035217709839344025, -0.010642028413712978, 0.010936401784420013, 0.04959738254547119, -0.0011485005961731076, 0.07700082659721375, 0.032059893012046814, -0.010927480645477772, -0.044958777725696564, 0.05066782981157303, -0.016422443091869354, 0.08014080673456192, -0.06608226895332336, -0.022300980985164642, -0.007042650133371353, -0.06882975250482559, 0.008612639270722866, -0.016279716044664383, 0.046457406133413315, 0.014932737685739994, -0.017278801649808884, -0.03500362113118172, -0.028331167995929718, 0.0003707538126036525, 0.02747480943799019, 0.006391461472958326, 0.0005544581799767911, -0.015004100278019905, 0.030828876420855522, -0.0034053600393235683, -0.0043977536261081696, 0.04856261983513832, -0.032059893012046814, -0.00347449304535985, 0.04913352429866791, -0.06390569359064102, -0.0031645093113183975, 0.02472732961177826, -0.03018660843372345, -0.012765081599354744, -0.03321954235434532, 0.0015867148758843541, -0.03443271666765213, 0.011712475679814816, -0.020820196717977524, -0.032827045768499374, -0.04246107116341591, -0.013175420463085175, -0.026832541450858116, -0.025333914905786514, 0.012069291435182095, 0.033237382769584656, 0.04017744958400726, -0.0027697819750756025, -0.011471625417470932, 0.04231834411621094, -0.027867306023836136, -0.037073154002428055, 0.051738277077674866, 0.014558080583810806, 0.021284056827425957, -0.007042650133371353, 0.05484257638454437, -0.021373260766267776, -0.014361832290887833, 0.017715899273753166, 0.06758089363574982, -0.008777666836977005, 0.017073631286621094, 0.0030463142320513725, 0.030472062528133392, -0.03703746944665909, 0.03568157181143761, 0.08156806975603104, 0.012907808646559715, -0.00579825509339571, 0.038286324590444565, -0.029704907909035683, 0.028366848826408386, -0.013362748548388481, 0.038464732468128204, -0.03514634817838669, 0.03412942215800285, -0.026957426220178604, 0.13516178727149963, -0.00685978215187788, -0.010517142713069916, -0.009616183117032051, 0.009830272756516933, -0.019642705097794533, -0.03953517973423004, -0.050025563687086105, -0.019392933696508408, -0.015146827325224876, 0.09013164788484573, -0.008090795949101448, 0.026065386831760406, 0.07885627448558807, -0.00950021855533123, 0.07964126765727997, -0.021962007507681847, 0.0081576993688941, 0.08306669443845749, 0.07357539981603622, 0.03366556391119957, 0.07336130738258362, -0.039999041706323624, -0.04877670854330063, -0.010008680634200573, 0.019232366234064102, 0.020374177023768425, 0.037929508835077286, -0.052737362682819366, -0.0030017122626304626, -0.01292564906179905, 0.004007486626505852, -0.01971406862139702, -0.008510055020451546, -0.010294132865965366, -0.00709617231041193, -0.04192584753036499, 0.030918080359697342, 0.0431390181183815, -0.04888375103473663, 0.025690730661153793, -0.03632383793592453, -0.04085540026426315, -0.002925888868048787, -0.05673369765281677, -0.052951451390981674, 0.0017506270669400692, -0.01708255149424076, 0.052773043513298035, -0.0057536531239748, -0.001262235571630299, -0.013148658908903599, -0.0537007637321949, -0.006998048163950443, 0.03550316393375397, 0.05073919519782066, 0.05152418836951256, -0.048848070204257965, -0.015316314063966274, -0.012515311129391193, -0.04888375103473663, -0.04809875786304474, -0.034539759159088135, 0.0028924373909831047, 0.05998072028160095, 0.05398621782660484, 0.021426783874630928, 0.014611603692173958, -0.0028790568467229605, 0.08763393759727478, -0.019999520853161812, 0.0016012104460969567, -0.03778678551316261, 0.011105888523161411, 0.051738277077674866, 0.005856237839907408, 0.08941801637411118, -0.013737404718995094, 0.0038736804854124784, -0.04346015304327011, 0.043210383504629135, -0.06372728943824768, 0.007350403815507889, 0.009473457001149654, -0.03329090401530266, -0.04110516980290413, 0.07514538615942001, 0.002716259565204382, -0.013148658908903599, -0.004205964971333742, -0.054485760629177094, -0.02174791693687439, 0.033683404326438904, -0.010534984059631824, 0.010722312144935131, 0.04549400135874748, -0.015218189917504787, 0.024834373965859413, 0.013737404718995094, -0.029134003445506096, 0.02351415529847145, 0.013782006688416004, -0.08121125400066376, -0.042032890021800995, -0.028456052765250206, -0.03209557384252548, 0.022532911971211433, -0.04688558354973793, 0.020499061793088913, -0.003795627038925886, -0.04071267321705818, 0.06333478540182114, 0.03213125467300415, 0.08056898415088654, -0.0034990240819752216, -0.011899803765118122, 0.01428154855966568, 0.002635976066812873, 0.08064035326242447, -0.017430447041988373, -0.011837361380457878, -0.01611022837460041, 0.010356576181948185, 0.010543904267251492, -0.019375093281269073, -0.0053923772647976875, 0.037429969757795334, -0.03000820055603981, 0.040676992386579514, 0.047313764691352844, 0.0172341987490654, -0.004266177769750357, -0.044744689017534256, 0.0440310575067997, -0.03384397178888321, -0.028902072459459305, -0.02089156024158001, 0.04349583387374878, -0.0282954853028059, 0.0014083069982007146, -0.020962923765182495, 0.021355420351028442, 0.03989199548959732, 0.02422778680920601, 0.0155660854652524, -0.01953566074371338, -0.008964994922280312, -0.01090072002261877, -0.028277644887566566, -0.07478857040405273, -0.037751100957393646, -0.00593206100165844, 0.07111337035894394, -0.005526183173060417, -0.00009770617907634005, -0.015262791886925697, -0.04039153829216957, 0.01587829925119877, -0.033772606402635574, -0.015405518002808094, -0.041533347219228745, -0.08599258959293365, -0.04656444862484932, 0.035859979689121246, 0.018929073587059975, -0.007564492989331484, 0.024923577904701233, -0.006610011216253042, -0.013790926896035671, -0.017002267763018608, -0.024923577904701233, 0.0030017122626304626, 0.051595550030469894, 0.012176335789263248, -0.018964754417538643, -0.0071140131913125515, -0.016636531800031662, 0.013603598810732365, 0.008376249112188816, 0.022586435079574585, -0.018929073587059975, 0.0155660854652524, -0.045101504772901535, -0.014602682553231716, -0.007778582628816366, -0.022372344508767128, -0.03907132148742676, 0.001997052924707532, -0.04435219243168831, 0.004736728500574827, 0.017368005588650703, 0.00727458018809557, 0.0038491494487971067, -0.007497590035200119, 0.017519650980830193, -0.023496314883232117, 0.05712619423866272, -0.00950021855533123, 0.028010033071041107, 0.059231407940387726, -0.0020360795315355062, -0.026743337512016296, 0.07268335670232773, 0.0028344548773020506, -0.024263467639684677, 0.0017740430776029825, -0.022140415385365486, -0.0138979721814394, 0.029722748324275017, -0.020855877548456192, -0.09526979178190231, -0.0311321709305048, 0.04103380814194679, -0.01685062237083912, 0.005494961980730295, -0.011141570284962654, -0.021355420351028442, -0.019642705097794533, -0.05773278325796127, -0.02463812567293644, 0.011230774223804474, 0.01010680478066206, 0.04838421195745468, -0.005682290066033602, 0.022675639018416405, -0.030811036005616188, -0.015646368265151978, -0.031114330515265465, -0.01243502739816904, 0.07550220191478729, -0.03907132148742676, 0.0205704253166914, -0.02594050206243992, -0.029187524691224098, 0.01543227955698967, -0.05826800689101219, -0.07607311010360718, 0.04299629479646683, -0.025779934599995613, 0.021052127704024315, -0.002571303164586425, 0.0470283105969429, -0.004304089583456516, -0.014798931777477264, 0.018215442076325417, -0.03375476598739624, -0.06279956549406052, -0.05348667502403259, -0.03227398172020912, 0.022479388862848282, 0.010642028413712978, -0.0077830427326262, -0.0115073062479496, -0.01643136329948902, 0.03678769990801811, 0.04574377462267876, 0.01903611794114113, -0.0325237512588501, 0.027956509962677956, 0.03478953242301941, 0.012720479629933834, 0.08028353750705719, 0.004446815699338913, 0.022764842957258224, -0.03132842108607292, 0.025601526722311974, 0.021355420351028442, 0.025797775015234947, -0.00630671763792634, 0.041854482144117355, -0.006926685106009245, -0.001653617830015719, 0.020766673609614372, 0.006708135362714529, 0.027902988716959953, 0.10504654794931412, 0.03627031669020653, 0.0077072191052138805, -0.03643088415265083, 0.02201552875339985, 0.007381625007838011, -0.030989443883299828, -0.05791119113564491, -0.014558080583810806, -0.013398430310189724, 0.0019167694263160229, -0.028438212350010872, -0.015780175104737282, -0.007234438322484493, 0.021819280460476875, 0.0411408506333828, 0.039642225950956345, -0.023531995713710785, 0.004065468907356262, 0.03921404480934143, 0.0177069790661335, 0.0029102780390530825, 0.008960534818470478, 0.044780369848012924, 0.04028449207544327, -0.028848549351096153, -0.0025824536569416523, 0.0013302535517141223, 0.05098896473646164, -0.00727458018809557, 0.07054246217012405, 0.027724580839276314, -0.033504996448755264, 0.027813784778118134, -0.03971358761191368, 0.00972322840243578, 0.04381696879863739, -0.023621199652552605, -0.004440125543624163, 0.031292736530303955, 0.0043330807238817215, -0.004888375289738178, -0.010383336804807186, -0.041354939341545105, -0.0026471265591681004, -0.017653457820415497, -0.026011865586042404, -0.018063794821500778, 0.04924056679010391, -0.010097884573042393, 0.022443708032369614, 0.02891991287469864, 0.04945465922355652, 0.0018253353191539645, -0.006828560493886471, -0.002745250938460231, 0.05773278325796127, -0.039463818073272705, -0.03644872456789017, 0.05912436172366142, -0.10419018566608429, -0.03209557384252548, 0.00005223308107815683, -0.04331742599606514, 0.05445007607340813, -0.01116833183914423, -0.024852214381098747, 0.024085059762001038, -0.1024061068892479, 0.03254159167408943, -0.06244274973869324, -0.04181880131363869, 0.021551668643951416, 0.028134917840361595, -0.045601047575473785, -0.020695311948657036, 0.029526500031352043, -0.061657752841711044, -0.04128357768058777, -0.016574090346693993, -0.0000977758681983687, -0.024156423285603523, 0.0017417066264897585, -0.024352671578526497, 0.028277644887566566, -0.01876850612461567, -0.03370124474167824, -0.07921309024095535, -0.043745607137680054, -0.02513766661286354, 0.04160471260547638, -0.027100153267383575, 0.00958942249417305, -0.030900239944458008, 0.056162793189287186, 0.026386521756649017, 0.008376249112188816, 0.056840743869543076, 0.04888375103473663, -0.02909832075238228, 0.009143402799963951, 0.02148030512034893, 0.01547688152641058, -0.041890162974596024, -0.034450557082891464, 0.014888135716319084, 0.013558996841311455, -0.07600174844264984, -0.017698058858513832, 0.0012209787964820862, -0.03302329406142235, 0.014977339655160904, -0.017983511090278625, -0.039642225950956345, 0.08320942521095276, 0.006828560493886471, 0.05969526991248131, 0.04795603081583977, -0.05334394797682762, 0.03889291360974312, 0.053272586315870285, 0.011453784070909023, -0.016163751482963562, -0.036752019077539444, -0.00427063787356019, -0.05626983568072319, 0.03942813724279404, 0.06151502951979637, -0.016217274591326714, -0.04181880131363869, -0.0010314204264432192, 0.014593762345612049, -0.003708653384819627, -0.02065962925553322, -0.013844449073076248, 0.008996215648949146, -0.04256811365485191, 0.014290468767285347, -0.010677710175514221, -0.04010608419775963, 0.028010033071041107, 0.009482377208769321, 0.013469792902469635, 0.0450301431119442, -0.026190273463726044, -0.02351415529847145, 0.04010608419775963, -0.02328222431242466, -0.034004535526037216, 0.002039424842223525, -0.023050295189023018, 0.001277846284210682, 0.0027787024155259132, 0.021997688338160515, 0.055163707584142685, -0.0691508874297142, 0.0018309105653315783, -0.03355851769447327, 0.043745607137680054, -0.0302401315420866, 0.03027581237256527, 0.05919572710990906, -0.02797435224056244, 0.04388833045959473, -0.00941101461648941, 0.004413364455103874, 0.016181591898202896, 0.004678746219724417, 0.0035458561033010483, -0.013121897354722023, 0.0890612006187439, -0.00866170134395361, -0.02053474448621273, -0.014950578100979328, 0.015004100278019905, -0.0013547847047448158, 0.024174263700842857, -0.015940742567181587, -0.043745607137680054, -0.019018277525901794, -0.0499185174703598, -0.00976783037185669, -0.009696466848254204, -0.042211297899484634, -0.0032091112807393074, 0.05098896473646164, -0.021551668643951416, -0.04056994616985321, 0.02861662022769451, -0.08342351019382477, 0.012194177135825157, -0.03241670876741409, -0.008666161447763443, 0.009946238249540329, 0.008474373258650303, -0.0013402890181168914, 0.019838953390717506, 0.04146198555827141, 0.003305005608126521, -0.03899995610117912, 0.0077072191052138805, 0.004114530980587006, 0.006806259509176016, 0.0027630915865302086, -0.019392933696508408, 0.04774194210767746, -0.009919476695358753, 0.01958918198943138, 0.0013692802749574184, -0.009067579172551632, 0.08570713549852371, -0.05352235585451126, 0.01520926970988512, 0.05591301992535591, -0.02139110118150711, 0.03364771977066994, -0.015414438210427761, 0.0034209706354886293, -0.010410098358988762, 0.014094220474362373, -0.0035436260513961315, -0.029954679310321808, 0.051773957908153534, -0.04699262976646423, -0.027688898146152496, 0.0302401315420866, -0.045101504772901535, 0.001518696895800531, -0.07521675527095795, 0.03753701224923134, -0.05901731923222542, 0.008108637295663357, -0.05523507297039032, -0.049882836639881134, 0.048312846571207047, 0.02233666367828846, -0.018045954406261444, 0.016208354383707047, -0.06201456859707832, 0.029276728630065918, -0.004585081711411476, -0.023050295189023018, -0.007849945686757565, -0.03475385159254074, -0.026386521756649017, 0.021319739520549774, -0.044958777725696564, -0.03006172366440296, -0.049882836639881134, -0.037929508835077286, 0.01611022837460041, 0.04895511642098427, -0.03569941222667694, -0.0074396077543497086, -0.008559117093682289, 0.05783982574939728, 0.06333478540182114, -0.013657120987772942, 0.050560787320137024, 0.05998072028160095, 0.051595550030469894, -0.030846718698740005, 0.006333478726446629, -0.05288008973002434, -0.021997688338160515, -0.024156423285603523, 0.03136410191655159, 0.00444904575124383, 0.0651545450091362, -0.01503086183220148, -0.03543179854750633, 0.024745170027017593, 0.030935922637581825, -0.001223208848387003, 0.03404022008180618, 0.046278998255729675, 0.01599426381289959, -0.04517287015914917, -0.06943633407354355, 0.04078403487801552, -0.014272628352046013, -0.02428130991756916, -0.015262791886925697, 0.018929073587059975, 0.009625103324651718, -0.08420851081609726, -0.06122957542538643, -0.06808044016361237, -0.016832781955599785, -0.012194177135825157 ]
20,399
pypopulation.implementation
get_population
Get population for either Alpha-2 or Alpha-3 `country_code` caseless. None if `country_code` does not exist in either map.
def get_population(country_code: str) -> t.Optional[int]: """ Get population for either Alpha-2 or Alpha-3 `country_code` caseless. None if `country_code` does not exist in either map. """ return get_population_a2(country_code) or get_population_a3(country_code)
(country_code: str) -> Optional[int]
[ 0.03491935133934021, -0.046159181743860245, -0.027631986886262894, -0.0031937353778630495, 0.007150614634156227, -0.03536047413945198, 0.028478944674134254, -0.08850705623626709, 0.05953405052423477, -0.0786258801817894, 0.023997128009796143, -0.0031363891903311014, -0.029625866562128067, -0.018844803795218468, 0.03393123298883438, -0.018950672820210457, -0.018827158957719803, 0.016683297231793404, -0.013180775567889214, -0.011839759536087513, 0.024738214910030365, 0.003811308415606618, 0.0005511288763955235, 0.02798488549888134, -0.01856248453259468, 0.04171265289187431, 0.007631439715623856, -0.026273325085639954, -0.008632790297269821, 0.02955528534948826, 0.00020608746854122728, -0.033507753163576126, -0.030649272724986076, 0.034531161189079285, 0.004234787076711655, 0.027384957298636436, 0.023344265297055244, 0.01072812732309103, -0.0900598093867302, 0.010763417929410934, -0.06151028349995613, -0.03666619956493378, -0.002289431868121028, -0.020926907658576965, -0.016445090994238853, -0.027826081961393356, -0.001243968727067113, -0.07940226048231125, 0.03186677396297455, -0.031160976737737656, 0.035042863339185715, 0.0021504778414964676, -0.004067160189151764, -0.00004211352643324062, -0.012854344211518764, -0.008421051315963268, 0.013030793517827988, 0.01477764267474413, 0.009687075391411781, 0.007035922724753618, -0.04827657341957092, -0.05607564002275467, -0.04764135554432869, -0.09231836348772049, -0.027332022786140442, -0.013480739668011665, 0.018703643232584, -0.007221194449812174, 0.012272060848772526, 0.019850565120577812, 0.005584625527262688, 0.02930825762450695, -0.026326261460781097, 0.0201328843832016, 0.05205259472131729, 0.025655752047896385, 0.007777010556310415, -0.02461470104753971, 0.056534409523010254, -0.015598133206367493, -0.014636483043432236, -0.02251495234668255, 0.036913227289915085, -0.0057478416711091995, 0.0209092628210783, -0.018438968807458878, 0.05974578857421875, -0.0028342194855213165, 0.06899174302816391, -0.025726333260536194, -0.012889633886516094, 0.023132525384426117, 0.032996051013469696, 0.028955357149243355, 0.07093268632888794, 0.02526756376028061, 0.020115239545702934, 0.02457941137254238, 0.039806999266147614, -0.03888946399092674, -0.004479610826820135, -0.020838681608438492, 0.018103715032339096, -0.014989382587373257, 0.009210661984980106, 0.02930825762450695, 0.045100484043359756, 0.06426289677619934, -0.02989053912460804, 0.004636209923774004, -0.06362767517566681, -0.10361112654209137, 0.015324636362493038, -0.010534033179283142, 0.025355787947773933, 0.021138645708560944, 0.005778720136731863, 0.04845302551984787, -0.019391797482967377, 0.029325902462005615, -0.08695429563522339, 0.033066630363464355, -0.028884777799248695, -0.007896114140748978, 0.052617233246564865, 0.040583379566669464, 0.04224200174212456, -0.052793681621551514, -0.029167097061872482, 0.02625568024814129, 0.09245952218770981, 0.019938789308071136, -0.014751175418496132, -0.005500812083482742, -0.016612717881798744, 0.0006076478748582304, 0.037407286465168, 0.009616496041417122, 0.05776955559849739, 0.030455177649855614, -0.0012958007864654064, -0.018386034294962883, 0.01914476789534092, 0.026273325085639954, 0.031055105850100517, 0.0032268196810036898, 0.030014054849743843, 0.023167815059423447, 0.0054081762209534645, -0.02362658455967903, 0.019303571432828903, 0.0013388103106990457, -0.017397917807102203, -0.0042303758673369884, -0.006065450608730316, -0.0532524511218071, 0.004918528720736504, -0.05402882769703865, 0.02376774325966835, -0.05406411737203598, 0.013666011393070221, 0.031778547912836075, -0.017627302557229996, -0.007349120453000069, 0.005875767208635807, -0.043300699442625046, -0.02876126393675804, 0.01111631654202938, 0.05872238427400589, -0.006991810165345669, -0.024473540484905243, -0.03532518446445465, 0.014601193368434906, 0.01951531134545803, -0.009898815304040909, 0.048982370644807816, 0.007018277421593666, -0.04633563011884689, -0.006078684236854315, 0.009766478091478348, 0.011725067161023617, -0.008619556203484535, -0.08300182968378067, 0.040653958916664124, -0.02288549579679966, 0.04820599406957626, 0.054593466222286224, -0.007856412790715694, 0.04450055584311485, 0.04841773584485054, 0.024526476860046387, 0.011363346129655838, -0.038677722215652466, -0.011310410685837269, 0.029325902462005615, -0.0383601151406765, 0.04128917679190636, 0.020926907658576965, -0.04873534291982651, 0.007119736168533564, -0.039524681866168976, 0.013357224874198437, -0.01336604729294777, 0.04397120699286461, -0.026502709835767746, 0.0645805075764656, -0.028443654999136925, -0.00697857653722167, -0.031019816175103188, -0.011072204448282719, -0.01791844330728054, -0.03998345136642456, 0.027967240661382675, -0.029255321249365807, 0.05932231247425079, -0.051770273596048355, -0.029572930186986923, 0.0022398054134100676, 0.0036260366905480623, 0.032590217888355255, 0.028178980574011803, -0.05893412232398987, 0.061933763325214386, 0.05593448132276535, 0.08603676408529282, 0.015121719799935818, -0.045241642743349075, 0.04545338451862335, -0.009925282560288906, 0.05572274327278137, -0.04188910499215126, 0.041571494191884995, 0.04654736816883087, -0.09048328548669815, 0.015598133206367493, -0.027967240661382675, 0.017089130356907845, -0.04929998144507408, 0.006537452805787325, -0.0020975430961698294, -0.019321216270327568, -0.006387470755726099, 0.028178980574011803, 0.048029545694589615, -0.09429459273815155, -0.005337596405297518, -0.043406568467617035, -0.03176090493798256, 0.039454102516174316, -0.0034959050826728344, -0.04030105844140053, -0.01573929190635681, -0.0013851283583790064, 0.021756218746304512, -0.0020876177586615086, 0.005721373949199915, -0.025585172697901726, -0.029396481812000275, 0.03656033053994179, 0.014636483043432236, -0.005725785158574581, 0.019091833382844925, 0.020556362345814705, 0.01716853305697441, -0.02713792771100998, -0.018685998395085335, 0.0341959074139595, -0.0007758262800052762, 0.030119923874735832, -0.005231726914644241, -0.010772240348160267, 0.043300699442625046, 0.02978467009961605, -0.030966881662607193, 0.02159741520881653, -0.012386752292513847, 0.05946347117424011, 0.014812933281064034, -0.0034650263842195272, 0.0022695811931043863, 0.004512695129960775, 0.006603621412068605, -0.04573570191860199, -0.013913040980696678, -0.018315454944968224, 0.0242441575974226, 0.011054559610784054, -0.016639184206724167, 0.07467341423034668, -0.003559868084266782, 0.01594221033155918, -0.010119376704096794, -0.039595261216163635, 0.018103715032339096, -0.0011888282606378198, -0.031196266412734985, 0.06355709582567215, 0.010392873547971249, 0.015095251612365246, 0.013401336967945099, 0.009034212678670883, -0.0006451433873735368, 0.08801299333572388, 0.0032510815653949976, 0.016921503469347954, 0.05903999134898186, 0.009184194728732109, -0.013860105536878109, -0.02112100087106228, 0.0488412119448185, -0.05155853554606438, -0.017353804782032967, -0.005553747061640024, 0.014301229268312454, 0.022320857271552086, -0.042524322867393494, 0.032996051013469696, 0.048170704394578934, -0.00810785312205553, 0.007785832975059748, -0.022214988246560097, -0.02787901647388935, 0.0015373160131275654, 0.012969035655260086, -0.048947080969810486, -0.019162412732839584, -0.03638388216495514, 0.03484876826405525, 0.07361471652984619, -0.05046454817056656, -0.08646024018526077, -0.044324107468128204, -0.010092909447848797, 0.03754844516515732, 0.059145860373973846, -0.027279088273644447, -0.004349479451775551, -0.020891617983579636, 0.01958589069545269, -0.01618923805654049, -0.01802431233227253, -0.0154569735750556, -0.015112897381186485, 0.0307374969124794, 0.08695429563522339, -0.004331834614276886, -0.007750542834401131, -0.01768023706972599, -0.011539795435965061, -0.050076358020305634, -0.01311019528657198, -0.0032157916575670242, 0.028955357149243355, 0.01788315363228321, 0.056393250823020935, 0.0614749938249588, 0.008818062022328377, 0.00938711129128933, 0.057416658848524094, 0.07693196833133698, 0.06736841052770615, -0.05985166132450104, -0.012889633886516094, -0.001526287873275578, 0.024473540484905243, -0.006488929037004709, -0.004892061464488506, 0.06486282497644424, -0.03433706611394882, -0.04015989974141121, 0.011363346129655838, -0.03733670711517334, -0.04591215029358864, -0.0009164344519376755, 0.005650794133543968, -0.013904218561947346, 0.029202386736869812, 0.03576630726456642, -0.04284192994236946, 0.01686856895685196, -0.0084298737347126, 0.03331365808844566, -0.06295716762542725, 0.024914665147662163, -0.053781796246767044, -0.009616496041417122, -0.007265307009220123, 0.009034212678670883, -0.08688371628522873, -0.0064933402463793755, 0.01311019528657198, 0.020750457420945168, -0.0017258963780477643, -0.04464171454310417, 0.03368420526385307, 0.04185381531715393, -0.08321356773376465, -0.033984169363975525, 0.021915024146437645, 0.047041427344083786, -0.0042811050079762936, -0.05416998639702797, 0.028037820011377335, 0.01910947822034359, -0.02193266898393631, 0.007997572422027588, 0.007516747340559959, 0.02223263308405876, 0.0005651896935887635, 0.010057619772851467, -0.04072453826665878, 0.0010631080949679017, -0.010816352441906929, -0.041395045816898346, -0.05286426097154617, -0.014857045374810696, 0.054522886872291565, 0.028708329424262047, -0.005399353802204132, -0.03414297103881836, 0.0440770760178566, -0.0446770042181015, -0.00035868867416866124, 0.016136303544044495, 0.03525460511445999, -0.09620025008916855, 0.01781257428228855, 0.007587327156215906, -0.0034209140576422215, 0.02860245853662491, -0.018950672820210457, -0.041677363216876984, 0.009201839566230774, -0.04548867419362068, 0.05586390197277069, 0.013163130730390549, -0.01740673929452896, 0.020521072670817375, 0.07008572667837143, -0.013727768324315548, 0.05900470167398453, 0.04495932534337044, -0.009492981247603893, 0.010039974935352802, -0.005906646139919758, -0.05491107329726219, -0.00042072171345353127, 0.020591653883457184, 0.02622039057314396, -0.026802673935890198, 0.01940944232046604, -0.05113505572080612, -0.03172561526298523, 0.0042656660079956055, 0.09994097799062729, 0.04280664026737213, -0.08674255758523941, 0.05205259472131729, -0.02325603924691677, -0.021209226921200752, -0.021244516596198082, 0.040583379566669464, 0.09133024513721466, -0.011963274329900742, 0.01555402111262083, 0.07876704633235931, -0.011504505760967731, -0.0010570426238700747, 0.009272419847548008, 0.014186536893248558, -0.03290782496333122, 0.019885854795575142, -0.02046813815832138, -0.02036226913332939, -0.0011105288285762072, -0.03176090493798256, -0.020150529220700264, 0.01601278968155384, 0.026343906298279762, -0.022938430309295654, 0.05064099654555321, 0.07474399358034134, 0.03659562021493912, -0.037724897265434265, -0.012607314623892307, -0.0595693401992321, 0.00860191136598587, 0.03620743006467819, -0.047958966344594955, 0.007318241521716118, -0.015501085668802261, -0.007031511515378952, 0.04735903814435005, -0.06239253282546997, -0.03839540481567383, -0.0063565922901034355, 0.06599210202693939, -0.04400649666786194, 0.013613076880574226, -0.0126867163926363, -0.010348761454224586, 0.04178323596715927, -0.00336577370762825, -0.01219265814870596, 0.02475585974752903, -0.02519698441028595, -0.015862807631492615, -0.008249012753367424, 0.009431224316358566, 0.02016817405819893, -0.038677722215652466, -0.0026842374354600906, 0.05053512752056122, -0.050041068345308304, 0.016577428206801414, 0.07305008172988892, 0.06323949247598648, -0.011530973017215729, -0.07919052243232727, 0.022867850959300995, 0.029061228036880493, -0.035378117114305496, 0.025144049897789955, 0.08483690768480301, 0.04111272469162941, -0.019056541845202446, 0.025920426473021507, -0.02611452154815197, -0.0570637583732605, -0.005355241242796183, -0.05769897624850273, -0.0153687484562397, 0.01219265814870596, 0.06878000497817993, -0.0037297005765140057, -0.05402882769703865, -0.03289018198847771, -0.024808796122670174, -0.023485423997044563, 0.028143690899014473, 0.017327338457107544, -0.02577926777303219, 0.030031699687242508, -0.002165917307138443, 0.043547727167606354, -0.04488874599337578, -0.0450299046933651, 0.03712496906518936, 0.012660249136388302, 0.027014413848519325, 0.02230321243405342, -0.01785668544471264, 0.05222904309630394, -0.02780843712389469, 0.09457691758871078, 0.034390002489089966, -0.023750098422169685, 0.046300340443849564, 0.012422042898833752, 0.005655205342918634, 0.0008872099569998682, -0.0599222406744957, -0.07153261452913284, 0.015633422881364822, -0.06426289677619934, -0.009784122928977013, -0.08631908148527145, -0.001427035080268979, 0.024191221222281456, -0.01791844330728054, 0.007468223571777344, -0.013833638280630112, 0.006669790018349886, 0.0018416913226246834, -0.07848472148180008, -0.0201328843832016, -0.027967240661382675, -0.043512437492609024, 0.05942818149924278, 0.046018023043870926, -0.022550242021679878, 0.023097235709428787, 0.05240549147129059, -0.0011392019223421812, -0.02625568024814129, 0.03557221218943596, -0.04400649666786194, -0.050923317670822144, 0.013807171024382114, -0.03846598416566849, 0.04404178634285927, -0.028549524024128914, 0.02666151523590088, -0.07022688537836075, -0.018650708720088005, 0.03984228894114494, -0.019232992082834244, 0.007428522687405348, -0.015007027424871922, -0.02696147933602333, -0.01833309978246689, -0.0005436849314719439, -0.011672132648527622, -0.025655752047896385, 0.11229243874549866, 0.04552396386861801, -0.007291774265468121, 0.011945628561079502, 0.013851283118128777, -0.008279891684651375, -0.038642432540655136, -0.05109976604580879, -0.013030793517827988, -0.06990928202867508, 0.02461470104753971, -0.044324107468128204, 0.03638388216495514, -0.027420246973633766, -0.051876142621040344, -0.0315668098628521, -0.04958229884505272, 0.022673755884170532, -0.003817925462499261, 0.044253528118133545, 0.043230120092630386, -0.007843178696930408, 0.03509579971432686, -0.016842102631926537, -0.013030793517827988, 0.007547625806182623, 0.03373713791370392, 0.04580628126859665, -0.005372886545956135, -0.058228325098752975, -0.011945628561079502, 0.001296903588809073, 0.04393591731786728, 0.03430177643895149, -0.04594743996858597, 0.0015582693740725517, -0.07305008172988892, 0.020185818895697594, -0.0014909979654476047, 0.01672741025686264, 0.009122437797486782, 0.010181134566664696, -0.025955716148018837, 0.04594743996858597, 0.02475585974752903, -0.05685202032327652, -0.04100685566663742, -0.034019459038972855, 0.01074577309191227, 0.023009011521935463, -0.01900360733270645, 0.005774308927357197, 0.07552037388086319, 0.006180142518132925, -0.03110804222524166, -0.024967599660158157, -0.03396652266383171, 0.006903585512191057, -0.011380990967154503, 0.014133602380752563, 0.03424884006381035, -0.021244516596198082, 0.010851642116904259, -0.09118908643722534, 0.0179890226572752, -0.0017236907733604312, -0.0254969485104084, 0.0061889649368822575, 0.02860245853662491, -0.0005638112197630107, -0.03368420526385307, 0.05251136049628258, 0.012536734342575073, 0.031813837587833405, -0.02713792771100998, 0.024879375472664833, 0.07890820503234863, -0.019744696095585823, 0.019532956182956696, -0.0006958725862205029, 0.0465826615691185, 0.03659562021493912, -0.03634858876466751, -0.022391438484191895, 0.037654317915439606, 0.050782155245542526, 0.00037137098843231797, -0.062110211700201035, 0.025073468685150146, 0.01958589069545269, -0.021756218746304512, 0.030172858387231827, -0.050923317670822144, 0.037689607590436935, -0.007018277421593666, 0.013507206924259663, -0.030031699687242508, 0.0027636399026960135, -0.009757655672729015, -0.02893771231174469, -0.019321216270327568, 0.0017997846007347107, -0.05688730999827385, 0.013613076880574226, 0.051770273596048355, 0.011672132648527622, -0.058404773473739624, -0.019056541845202446, -0.05198201164603233, -0.013763058930635452, -0.04940585047006607, 0.023238394409418106, -0.02322074957191944, 0.06888587027788162, -0.040618669241666794, -0.01866835355758667, -0.02196795865893364, -0.01785668544471264, -0.016242174431681633, -0.04273606091737747, -0.01281905360519886, 0.02454412169754505, 0.015545197762548923, -0.11328055709600449, -0.060028109699487686, 0.07241486012935638, -0.05946347117424011, -0.02839071862399578, 0.013066083192825317, 0.010719304904341698, -0.04668853059411049, -0.006109562702476978, -0.010481098666787148, 0.022462017834186554, 0.01232499536126852, -0.041642073541879654, 0.016092192381620407, 0.020450493320822716, 0.06394528597593307, -0.01278376393020153, 0.02717321738600731, 0.02479114942252636, 0.030455177649855614, -0.031813837587833405, -0.030278729274868965, -0.004027459304779768, 0.006824183277785778, 0.0437241792678833, 0.11003389209508896, 0.010975156910717487, -0.026026297360658646, -0.02108571119606495, -0.046018023043870926, -0.02622039057314396, -0.025973360985517502, 0.017865508794784546, -0.0490882433950901, 0.026785029098391533, -0.0024857318494468927, -0.016498025506734848, 0.02475585974752903, -0.01215736847370863, 0.010013507679104805, 0.008915109559893608 ]
20,400
pypopulation.implementation
get_population_a2
Get population for Alpha-2 `country_code` caseless. None if `country_code` does not exist in the map.
def get_population_a2(country_code: str) -> t.Optional[int]: """ Get population for Alpha-2 `country_code` caseless. None if `country_code` does not exist in the map. """ return _a2_map.get(_normalize(country_code))
(country_code: str) -> Optional[int]
[ 0.04150218889117241, -0.007393119856715202, -0.016870031133294106, -0.0028608725406229496, 0.0361885204911232, -0.05185168981552124, 0.02877369336783886, -0.08619952201843262, 0.03757771477103233, -0.06140240281820297, 0.017703548073768616, -0.011764741502702236, -0.034764595329761505, -0.006016949191689491, 0.03365324065089226, -0.00760149909183383, -0.002300853608176112, -0.00926419161260128, -0.015741311013698578, 0.021497786045074463, 0.019466089084744453, -0.018181083723902702, -0.0033427495509386063, -0.0027219532057642937, -0.026898279786109924, 0.028704233467578888, -0.010722845792770386, -0.011217746883630753, -0.01153031550347805, -0.01930980570614338, -0.007284589111804962, -0.03865433856844902, -0.014873065054416656, 0.05341453105211258, 0.0453224740922451, 0.0237725917249918, 0.010618655942380428, 0.0056956978514790535, -0.08050382882356644, 0.010401594452559948, -0.023216914385557175, -0.025717465206980705, -0.017616724595427513, -0.012676401063799858, 0.002096815500408411, -0.0230606310069561, -0.01727810874581337, -0.0797397717833519, 0.027870716527104378, -0.028270110487937927, 0.009021082893013954, -0.0023377540055662394, 0.013093159534037113, 0.02378995716571808, 0.006954655516892672, -0.009845917113125324, -0.007462579756975174, 0.0037573373410850763, 0.02099420316517353, -0.011061461642384529, -0.04681585729122162, -0.07008486986160278, -0.04153691977262497, -0.08619952201843262, -0.011148286983370781, 0.014256609603762627, 0.017252059653401375, 0.011608457192778587, 0.005387470126152039, 0.042092595249414444, 0.009724361822009087, 0.02510969154536724, -0.033097561448812485, 0.03167363628745079, 0.026394696906208992, 0.04761464521288872, -0.0037985790986567736, -0.0005366849363781512, 0.0427524633705616, -0.013197348453104496, -0.03085748478770256, -0.021636705845594406, 0.04810086265206337, -0.017686184495687485, 0.0006115712458267808, 0.0051400200463831425, 0.0672370195388794, -0.004497517365962267, 0.009298921562731266, -0.027315039187669754, 0.01296292245388031, 0.01707841083407402, 0.030319172888994217, 0.03386161848902702, 0.06973756849765778, -0.01438684668391943, 0.018771491944789886, 0.007688323967158794, 0.06588255614042282, -0.05424804985523224, 0.016687700524926186, -0.050427764654159546, 0.029503019526600838, -0.004601707216352224, 0.019969671964645386, 0.021185217425227165, 0.04469733685255051, 0.057755764573812485, -0.0317951925098896, 0.028096461668610573, -0.05629711225628853, -0.05271993577480316, 0.0036205884534865618, -0.01624489389359951, -0.02224447950720787, 0.026203682646155357, 0.03782082349061966, 0.05226844549179077, -0.01129588857293129, 0.04695477709174156, -0.06949446350336075, 0.02748868800699711, -0.02925991080701351, -0.00190146011300385, 0.0221750196069479, 0.03130897507071495, 0.019622374325990677, -0.06334727257490158, -0.03415682166814804, 0.009324968792498112, 0.08515763282775879, -0.006303470581769943, -0.0008818130008876324, 0.015142221003770828, -0.017738278955221176, -0.04660747945308685, 0.06879986077547073, -0.004571318626403809, 0.061541322618722916, 0.0377860926091671, -0.009107907302677631, -0.013822486624121666, 0.011113557033240795, -0.015489519573748112, 0.01399613544344902, -0.0336185097694397, 0.018024800345301628, 0.030753295868635178, 0.02552645094692707, -0.034261010587215424, -0.002585204318165779, 0.02302590012550354, 0.011426125653088093, 0.010948590002954006, 0.013301538303494453, -0.05640130117535591, 0.01854574866592884, -0.0576515756547451, 0.03709149733185768, -0.045461393892765045, -0.0003426860785111785, 0.029919778928160667, -0.021984005346894264, -0.025335436686873436, 0.014308704063296318, -0.05549832433462143, -0.026550982147455215, 0.027870716527104378, 0.056123461574316025, -0.030214982107281685, -0.0558803528547287, -0.06966810673475266, 0.020664269104599953, 0.01416978519409895, -0.028287475928664207, 0.06491012126207352, 0.011165651492774487, -0.01522036362439394, 0.028547948226332664, 0.0005380415823310614, 0.027783891186118126, -0.002813118975609541, -0.09738253802061081, 0.0403561033308506, -0.023651037365198135, 0.057408466935157776, 0.06418079137802124, 0.004610389471054077, 0.04028664529323578, 0.03212512657046318, 0.052858855575323105, 0.028148556128144264, -0.03044072724878788, -0.010870447382330894, 0.014942524023354053, -0.03952258825302124, 0.027384499087929726, 0.030979039147496223, -0.03410472720861435, 0.027367133647203445, -0.041745297610759735, 0.023269008845090866, -0.014230562373995781, 0.03577176108956337, 0.014404211193323135, 0.057755764573812485, -0.012711131013929844, -0.01979602314531803, -0.01399613544344902, -0.0017516876105219126, -0.02962457574903965, -0.021636705845594406, 0.038029201328754425, -0.05233790725469589, 0.06386822462081909, -0.03959204629063606, -0.032298773527145386, 0.005200797226279974, 0.0008492537308484316, 0.06136767193675041, 0.03427837789058685, -0.053657639771699905, 0.04160637781023979, 0.029815590009093285, 0.08189301937818527, 0.02965930476784706, -0.02630787342786789, 0.043030302971601486, -0.016652969643473625, 0.061541322618722916, -0.04903857037425041, 0.02672463096678257, 0.01175605971366167, -0.10543987154960632, 0.02755814790725708, 0.01190366130322218, 0.02347738854587078, -0.04681585729122162, -0.04497517645359039, 0.02300853468477726, -0.002659005345776677, -0.004388986621052027, 0.019969671964645386, 0.03907109797000885, -0.10884339362382889, -0.015289823524653912, -0.04223151504993439, -0.03921001777052879, 0.04942059889435768, -0.004182778298854828, -0.024901313707232475, -0.02177562564611435, 0.009394428692758083, 0.057755764573812485, -0.020438525825738907, -0.015654487535357475, -0.061888620257377625, -0.046294908970594406, 0.0026720289606601, 0.013926675543189049, -0.004540930036455393, 0.043447062373161316, -0.031100593507289886, 0.012745860032737255, 0.002217284869402647, 0.020316971465945244, 0.01604519784450531, 0.011851566843688488, 0.07223811745643616, -0.03120478428900242, -0.015411377884447575, 0.0048534986563026905, 0.04316922277212143, -0.010219262912869453, 0.03044072724878788, 0.005443906411528587, 0.0775170624256134, -0.002758853603154421, 0.00009191204298986122, 0.0022107730619609356, 0.01029740460216999, 0.027245579287409782, -0.0453224740922451, -0.021289408206939697, -0.012068628333508968, 0.00011633148096734658, 0.005222503561526537, -0.01891041174530983, 0.06247902661561966, -0.005795546341687441, 0.022817520424723625, 0.01173001155257225, -0.01070548128336668, 0.047058966010808945, 0.008374238386750221, -0.01542005967348814, 0.03851541876792908, 0.025213882327079773, 0.01070548128336668, 0.005422200076282024, -0.01398745272308588, 0.03712622448801994, 0.07939247041940689, 0.03667473793029785, 0.048309240490198135, 0.034382566809654236, -0.009316286072134972, 0.011330618523061275, -0.011486902832984924, 0.05629711225628853, -0.03337540104985237, -0.010766258463263512, -0.002133716130629182, 0.0055741434916853905, 0.009333651512861252, -0.033913712948560715, 0.03549392148852348, 0.038029201328754425, 0.004098123870790005, 0.020785823464393616, -0.027453958988189697, -0.02382468804717064, -0.0010825949721038342, -0.008769290521740913, -0.008986352942883968, -0.005383129231631756, 0.0019264222355559468, 0.03483405336737633, 0.09911903738975525, -0.05758211761713028, -0.06852202117443085, -0.0485176220536232, -0.03120478428900242, 0.02056008018553257, 0.03467776998877525, -0.04730207473039627, -0.02010859176516533, -0.02880842238664627, 0.0040872711688280106, -0.008395944721996784, -0.04657274857163429, -0.021306771785020828, -0.004862180911004543, 0.004106806591153145, 0.07223811745643616, 0.0034881809260696173, -0.021966639906167984, -0.03855014964938164, -0.03615378960967064, -0.06515322625637054, -0.013857216574251652, -0.03415682166814804, 0.025595910847187042, 0.03580649197101593, 0.04688531905412674, 0.05789468437433243, 0.007592816837131977, 0.02627314254641533, 0.04813559353351593, 0.053727101534605026, 0.055324673652648926, -0.04431530833244324, -0.024432459846138954, -0.02837429940700531, 0.04431530833244324, 0.01560239214450121, -0.018615208566188812, 0.054838456213474274, -0.05678332969546318, -0.03868906944990158, -0.004549612291157246, -0.03467776998877525, -0.017851151525974274, 0.004862180911004543, 0.014760192483663559, -0.02009122632443905, 0.008070352487266064, 0.04848289117217064, -0.035163987427949905, 0.020299606025218964, 0.010583925992250443, 0.04125908017158508, -0.07501650601625443, 0.02677672542631626, -0.03587595000863075, 0.01852838322520256, -0.014421576634049416, 0.01340572815388441, -0.07793381810188293, -0.005604532081633806, 0.004315185826271772, 0.0552552156150341, 0.006715887691825628, -0.05136546865105629, 0.04605180025100708, 0.049142759293317795, -0.08668574690818787, -0.03248978778719902, 0.016870031133294106, 0.028582679107785225, -0.03775136172771454, -0.024380365386605263, 0.04143273085355759, 0.0048491572961211205, -0.024849219247698784, -0.02431090548634529, 0.013119206763803959, 0.02681145630776882, -0.017356250435113907, 0.028895247727632523, -0.055324673652648926, -0.0003738887025974691, 0.012190182693302631, -0.04330814257264137, -0.0411548912525177, 0.01234646700322628, 0.05303250253200531, 0.003976569510996342, -0.014074278064072132, -0.03702203556895256, 0.031934112310409546, -0.031170053407549858, -0.026012668386101723, -0.02420671656727791, 0.030232347548007965, -0.09675740450620651, -0.013700931333005428, 0.029919778928160667, -0.012059945613145828, -0.004052541218698025, -0.021237311884760857, -0.03252451866865158, 0.02387678250670433, -0.04803140461444855, 0.03488614782691002, 0.02182772010564804, -0.009611490182578564, -0.020299606025218964, 0.09495145082473755, -0.01252011675387621, 0.04862181097269058, 0.0600479356944561, 0.01175605971366167, 0.02175826020538807, -0.004349915776401758, -0.0781421959400177, -0.0061298212967813015, 0.03248978778719902, 0.033948443830013275, -0.029086261987686157, 0.03625797852873802, -0.056505490094423294, -0.010844400152564049, -0.02132413722574711, 0.07022378593683243, 0.03203830122947693, -0.07932300865650177, 0.038827989250421524, -0.012190182693302631, -0.020421160385012627, -0.04653801769018173, 0.031882017850875854, 0.06504903733730316, 0.004801403731107712, 0.04407219961285591, 0.06178443133831024, 0.007223811931908131, 0.0019698345568031073, 0.015463472343981266, 0.016852667555212975, -0.05893658101558685, -0.015281140804290771, -0.002389848930761218, -0.031152689829468727, 0.0007374669658020139, 0.0009181707864627242, -0.031048499047756195, 0.00338833243586123, 0.024883948266506195, -0.006650769151747227, 0.044245846569538116, 0.05754738673567772, 0.03085748478770256, -0.04556558281183243, 0.00020593724912032485, -0.05397021025419235, 0.011391395702958107, 0.022070828825235367, -0.06369457393884659, -0.0006582394707947969, -0.014673368073999882, 0.00926419161260128, 0.03962677717208862, -0.049524787813425064, -0.03990461677312851, 0.01378775667399168, 0.07071000337600708, -0.028287475928664207, 0.0026807114481925964, -0.010766258463263512, -0.03196883946657181, 0.010184532962739468, -0.009889328852295876, -0.031812556087970734, 0.014751509763300419, -0.025370165705680847, -0.0584503635764122, -0.012155452743172646, 0.0029107967857271433, 0.04410693049430847, -0.032211948186159134, -0.0018276592018082738, 0.05563724413514137, -0.04313449189066887, 0.03986988589167595, 0.09349279850721359, 0.05720008909702301, -0.018215814605355263, -0.08085112273693085, 0.01891041174530983, 0.0121294055134058, -0.053206153213977814, 0.02995450794696808, 0.07032797485589981, 0.04490571469068527, -0.05417858809232712, 0.01602783240377903, -0.010427641682326794, -0.03823758289217949, -0.03827231004834175, -0.04070340096950531, -0.009073177352547646, 0.005331034306436777, 0.05785995349287987, -0.01503803115338087, -0.02915572188794613, -0.027297673746943474, -0.01439552940428257, -0.04817032441496849, 0.017521217465400696, 0.01318866666406393, -0.03537236899137497, 0.02061217464506626, -0.015159586444497108, 0.023946242406964302, -0.026168953627347946, -0.05542886629700661, 0.014629955403506756, -0.004727602936327457, 0.022748062387108803, 0.030197618529200554, -0.00986328162252903, 0.07362731546163559, -0.04112016037106514, 0.057790495455265045, 0.03045809082686901, -0.02587374858558178, 0.01749517023563385, 0.008074693381786346, 0.009420475922524929, -0.017955340445041656, -0.02912099100649357, -0.06706336885690689, 0.005413517821580172, -0.06036050617694855, 0.01497725397348404, -0.06831364333629608, 0.0027697067707777023, 0.011382712982594967, -0.0041328538209199905, 0.008252684026956558, -0.049177490174770355, 0.009368381462991238, -0.013735661283135414, -0.0960628092288971, -0.0030649106483906507, -0.004080759361386299, -0.03415682166814804, 0.06504903733730316, 0.052094798535108566, -0.019952308386564255, 0.04730207473039627, 0.05431750789284706, 0.01671374775469303, -0.023598942905664444, -0.004330379888415337, -0.03757771477103233, -0.045878153294324875, 0.010375547222793102, -0.05265047401189804, 0.0435512512922287, -0.04685058817267418, 0.01498593669384718, -0.07661408185958862, -0.04393327981233597, 0.005604532081633806, -0.019622374325990677, 0.008968987502157688, -0.03342749550938606, -0.014629955403506756, 0.005665309261530638, -0.011773424223065376, -0.00987196434289217, -0.01727810874581337, 0.10099444538354874, 0.03664000704884529, 0.0019796022679656744, -0.01559370942413807, -0.011981802992522717, 0.030701201409101486, -0.03370533511042595, -0.026116859167814255, -0.010401594452559948, -0.07633624225854874, 0.01606256328523159, -0.026533616706728935, 0.050462495535612106, -0.03089221566915512, -0.043829090893268585, -0.003913621883839369, -0.06862621009349823, 0.03285445272922516, 0.014109008014202118, 0.04778829589486122, 0.03278499096632004, -0.021549880504608154, 0.045773960649967194, 0.00009557496377965435, -0.005604532081633806, 0.03047545626759529, 0.01854574866592884, 0.04900383949279785, -0.023216914385557175, -0.08564385026693344, 0.005769498646259308, -0.0063902949914336205, 0.020698999986052513, 0.04039083421230316, -0.02880842238664627, 0.05101817101240158, -0.05146966129541397, -0.00045555815449915826, -0.012051262892782688, 0.03952258825302124, -0.0019958820194005966, 0.005600190721452236, -0.02882578782737255, 0.05150438845157623, -0.001210118760354817, -0.038480691611766815, -0.0340179018676281, -0.026985105127096176, 0.017052363604307175, 0.03785555437207222, -0.05025411397218704, 0.0015118344454094768, 0.07088365405797958, 0.03290654718875885, -0.049559518694877625, -0.04056448116898537, -0.015133538283407688, -0.0007960736402310431, -0.038063932210206985, 0.010540514253079891, 0.042613543570041656, -0.010783622972667217, 0.0393836684525013, -0.06612566113471985, 0.003084446070715785, -0.00018097515567205846, -0.024883948266506195, 0.00942915864288807, 0.029398830607533455, 0.016149386763572693, -0.032246679067611694, 0.045843422412872314, -0.00546561274677515, 0.023182185366749763, -0.019466089084744453, 0.05591508373618126, 0.045843422412872314, -0.02014332264661789, 0.02056008018553257, -0.024050431326031685, 0.03278499096632004, 0.047927211970090866, -0.021063663065433502, -0.008061669766902924, 0.011677917093038559, 0.02266123704612255, 0.00699372636154294, -0.048760730773210526, 0.004784038756042719, 0.006468437146395445, -0.013119206763803959, 0.02146305702626705, -0.032211948186159134, 0.036049600690603256, -0.004606048576533794, 0.01482096966356039, -0.019865483045578003, 0.012659035623073578, 0.02464083954691887, -0.02502286806702614, -0.008986352942883968, 0.03591068089008331, -0.07230757921934128, 0.00666813412681222, 0.041780028492212296, 0.010766258463263512, -0.07050162553787231, 0.004148048348724842, -0.04928167909383774, -0.01885831728577614, -0.03872380033135414, 0.045843422412872314, -0.028877882286906242, 0.0574779249727726, -0.04518355429172516, 0.01173001155257225, -0.033549048006534576, -0.0071196225471794605, -0.016366448253393173, -0.04112016037106514, -0.03342749550938606, 0.05021938309073448, 0.005578484386205673, -0.10189742594957352, -0.04740626737475395, 0.0332191176712513, -0.06286105513572693, -0.03893217816948891, -0.004571318626403809, 0.04942059889435768, -0.05053195357322693, 0.014647320844233036, -0.03172573074698448, 0.009142637252807617, 0.04688531905412674, -0.04084232077002525, 0.03729987516999245, 0.028113825246691704, 0.06796634942293167, 0.012363831512629986, -0.0118862958624959, 0.03377479314804077, 0.014525766484439373, -0.030770661309361458, -0.0016550951404497027, 0.02266123704612255, -0.005912759341299534, 0.05195587873458862, 0.11189962178468704, 0.03861961141228676, -0.06240956857800484, -0.03740406408905983, -0.02422408014535904, -0.029694033786654472, -0.024901313707232475, 0.010757575742900372, -0.019934942945837975, 0.0443500392138958, 0.002804436720907688, -0.015958372503519058, 0.022470222786068916, -0.0040829298086464405, 0.016453273594379425, 0.011261158622801304 ]
20,401
pypopulation.implementation
get_population_a3
Get population for Alpha-3 `country_code` caseless. None if `country_code` does not exist in the map.
def get_population_a3(country_code: str) -> t.Optional[int]: """ Get population for Alpha-3 `country_code` caseless. None if `country_code` does not exist in the map. """ return _a3_map.get(_normalize(country_code))
(country_code: str) -> Optional[int]
[ 0.007440867833793163, -0.02273191697895527, -0.047256190329790115, 0.006777351256459951, 0.030590713024139404, -0.018406130373477936, 0.01244309637695551, -0.09306471049785614, 0.052426449954509735, -0.07514113187789917, 0.031452424824237823, -0.007962202653288841, -0.04832471162080765, -0.028367500752210617, 0.010228500701487064, -0.004371025133877993, -0.020784450694918633, 0.037294819951057434, -0.004519670270383358, -0.020767217501997948, 0.012107028625905514, -0.0010943720117211342, -0.03977654501795769, 0.013589170761406422, 0.003556709038093686, 0.01377874705940485, -0.014821416698396206, -0.00748826190829277, -0.0015747754368931055, 0.012649906799197197, -0.010374991223216057, -0.018095916137099266, -0.02285255491733551, 0.07693348824977875, -0.011072976514697075, 0.007122035138309002, 0.03339988738298416, -0.03588161617517471, -0.04449871554970741, -0.005161644425243139, -0.02645450457930565, -0.014459498226642609, -0.028005583211779594, -0.009099660441279411, 0.012468947097659111, -0.023455752059817314, 0.039259519428014755, -0.05287453904747963, 0.022490637376904488, -0.05004813149571419, 0.029625598341226578, 0.014881735667586327, 0.036708857864141464, 0.0012010086793452501, -0.016122598201036453, -0.026713017374277115, -0.0043861051090061665, -0.003940170165151358, -0.004743714816868305, -0.0036622686311602592, -0.038122061640024185, -0.03229689970612526, -0.027540259063243866, -0.09430556744337082, -0.01708771474659443, -0.008044064976274967, 0.025454921647906303, 0.008927318267524242, 0.008444759994745255, -0.012219050899147987, 0.015390144661068916, 0.009909668006002903, -0.004267619922757149, -0.012813631445169449, 0.062422290444374084, 0.024713849648833275, 0.012675757519900799, -0.009237533435225487, 0.024076184257864952, 0.018285490572452545, -0.032641585916280746, -0.016208769753575325, 0.027850475162267685, 0.01528673991560936, 0.02309383451938629, -0.026402801275253296, 0.03760503605008125, -0.0037872164975851774, 0.039018239825963974, -0.026626845821738243, 0.004256848711520433, 0.022163188084959984, 0.011770961806178093, 0.04201699048280716, 0.07017768174409866, 0.006398198660463095, 0.04622213914990425, -0.007048789877444506, 0.07279728353023529, -0.0356748029589653, -0.003707508323714137, -0.026075351983308792, 0.01830272562801838, -0.027660898864269257, 0.013434062711894512, 0.017423780634999275, 0.026868125423789024, 0.05287453904747963, -0.001072829240001738, 0.023421283811330795, -0.05308135226368904, -0.05773458629846573, 0.0041254376992583275, 0.01732899248600006, 0.02786771021783352, -0.003115082625299692, 0.020956793799996376, 0.05256432667374611, -0.028126223012804985, 0.038122061640024185, -0.055287331342697144, 0.03570927307009697, -0.03774290904402733, 0.025661731138825417, 0.03148689121007919, 0.038983773440122604, 0.04863492771983147, -0.04370594397187233, -0.01548493281006813, 0.01252064947038889, 0.07955309003591537, 0.006393889896571636, -0.019905507564544678, -0.03505437448620796, -0.029935814440250397, 0.002800558228045702, 0.053012415766716, 0.002000244800001383, 0.023852139711380005, 0.033451590687036514, -0.004760948941111565, 0.004396876320242882, 0.007613210007548332, 0.015777913853526115, 0.035140544176101685, -0.02230106107890606, 0.018354428932070732, -0.02574790269136429, -0.024903425946831703, -0.05311581864953041, 0.04339572787284851, 0.00815177895128727, -0.01044392865151167, 0.0000867095950525254, -0.013959705829620361, -0.05949247628450394, 0.0028350267093628645, -0.08493015915155411, 0.02312830276787281, -0.046704694628715515, 0.0009941982571035624, 0.04398168995976448, -0.019733164459466934, 0.022938726469874382, -0.012262136675417423, -0.05428774654865265, -0.030952632427215576, 0.0053727636113762856, 0.013615021482110023, -0.02583407238125801, -0.03681226074695587, -0.029970282688736916, 0.005420157685875893, 0.03970760852098465, -0.020801685750484467, 0.05938906967639923, -0.021508287638425827, -0.03591608256101608, 0.02666131593286991, 0.001642635208554566, 0.018009744584560394, -0.0074968789704144, -0.0524609200656414, 0.056666065007448196, -0.03433053568005562, 0.01165893953293562, 0.045257020741701126, 0.01313246414065361, 0.03595055267214775, 0.034003086388111115, 0.0348992645740509, 0.011090210638940334, -0.030625183135271072, -0.010469779372215271, 0.018612941727042198, -0.06049206107854843, 0.05363284423947334, 0.0003484540793579072, -0.04046591371297836, 0.0019119195640087128, -0.03570927307009697, -0.012468947097659111, 0.014855884946882725, 0.02853984385728836, -0.024196824058890343, 0.024610444903373718, -0.013158315792679787, -0.05142686888575554, -0.031607531011104584, 0.03327925130724907, -0.023490222170948982, -0.014726628549396992, 0.022094251587986946, -0.02666131593286991, 0.030866460874676704, -0.055011581629514694, -0.017802933230996132, 0.011460746638476849, 0.05363284423947334, 0.0551149882376194, -0.004898822866380215, -0.053288161754608154, 0.04249954968690872, 0.06600700318813324, 0.07348664849996567, 0.02340405061841011, -0.03176264092326164, 0.07686455547809601, -0.020991262048482895, 0.04880726709961891, -0.020629342645406723, 0.048703864216804504, 0.02014678530395031, -0.07989777624607086, 0.0529090091586113, -0.012089794501662254, 0.012451712973415852, -0.03657098114490509, 0.0013442679774016142, -0.0047350977547466755, 0.00732022849842906, -0.01264128927141428, 0.058113738894462585, 0.06852319836616516, -0.09292683005332947, 0.02386937476694584, -0.05766564980149269, -0.03029773198068142, 0.03460628539323807, -0.016363877803087234, -0.033330950886011124, 0.01618291810154915, -0.006113834213465452, 0.03414095938205719, -0.018440598621964455, 0.019061030820012093, 0.008332737721502781, -0.03317584469914436, 0.006178462412208319, 0.0213187113404274, -0.01638111099600792, 0.0031732479110360146, 0.050944309681653976, 0.015407378785312176, 0.0004561678506433964, 0.013201400637626648, 0.03305520489811897, -0.002906117821112275, 0.03770843893289566, -0.007122035138309002, 0.002259835135191679, 0.04718725383281708, 0.05608010292053223, -0.03774290904402733, 0.03681226074695587, -0.019853804260492325, 0.0330207385122776, 0.011365958489477634, 0.0010243580909445882, 0.032159026712179184, -0.00047017066390253603, 0.018199320882558823, -0.058148209005594254, -0.005773458629846573, -0.020646577700972557, 0.016941223293542862, 0.0018343656556680799, 0.0014175133546814322, 0.06504189223051071, -0.0004491664585657418, -0.007268526125699282, -0.03014262393116951, -0.03469245508313179, -0.027230042964220047, 0.01888868771493435, -0.02002614550292492, 0.03148689121007919, 0.04081059619784355, 0.02555832639336586, 0.04339572787284851, -0.0008557859691791236, 0.013408211059868336, 0.08506803214550018, 0.012529266998171806, 0.016949839890003204, 0.09251321107149124, -0.017975276336073875, -0.0011837744386866689, -0.026488972827792168, 0.03465798497200012, -0.02512747049331665, -0.011348724365234375, 0.0005703444476239383, -0.0034016012214124203, 0.04505021125078201, -0.019078264012932777, 0.03915611281991005, 0.01630355790257454, 0.010021690279245377, -0.018664643168449402, -0.017802933230996132, -0.053288161754608154, -0.013459914363920689, 0.0023675488773733377, -0.03296903520822525, -0.048703864216804504, -0.007932042703032494, 0.004306396935135126, 0.07072917371988297, -0.07403814792633057, -0.08355142921209335, -0.031607531011104584, -0.049875788390636444, 0.04081059619784355, 0.019629759714007378, -0.03915611281991005, 0.0015112243127077818, -0.03626076877117157, 0.048738330602645874, 0.0007157580694183707, -0.03112497366964817, -0.0006629783310927451, -0.010616269893944263, 0.055563077330589294, 0.0319177471101284, -0.0016663322458043694, -0.009832113981246948, -0.05308135226368904, -0.0345718152821064, -0.04249954968690872, -0.00811300240457058, -0.02838473580777645, 0.03891483321785927, 0.030470075085759163, 0.0594235397875309, 0.04277529567480087, 0.044946808367967606, -0.020594874396920204, 0.05139239877462387, 0.07066024094820023, 0.073555588722229, -0.0766577422618866, -0.001708340598270297, -0.0075830500572919846, 0.03522671386599541, -0.006191388238221407, 0.018785282969474792, 0.05118558928370476, -0.03508884087204933, -0.01101265661418438, 0.005101324524730444, -0.06576572358608246, -0.03300350159406662, 0.015803765505552292, 0.01830272562801838, -0.02050870470702648, 0.012512032873928547, 0.04022463411092758, -0.052081767469644547, 0.0010491322027519345, -0.010021690279245377, 0.01873358152806759, -0.0739002674818039, 0.003024603007361293, -0.03688119724392891, 0.008875615894794464, -0.002565742237493396, 0.003205562010407448, -0.06442146003246307, 0.011684791184961796, 0.029625598341226578, 0.039569735527038574, 0.031073272228240967, -0.07672668248414993, 0.03002198413014412, 0.06972959637641907, -0.08182800561189651, -0.0340203195810318, 0.047014910727739334, 0.05508051812648773, -0.020284660160541534, -0.06359421461820602, 0.03389967978000641, -0.01062488742172718, -0.024782786145806313, -0.004075889475643635, 0.008091459050774574, 0.013235869817435741, 0.0018494456307962537, -0.0010475164745002985, -0.0367777943611145, 0.017751231789588928, 0.011469363234937191, -0.04622213914990425, -0.02666131593286991, -0.0008514774381183088, 0.0616295151412487, -0.01550216693431139, -0.03339988738298416, -0.014924821443855762, 0.02900516614317894, -0.04343019798398018, -0.012089794501662254, 0.009892433881759644, 0.04997919499874115, -0.08934211730957031, 0.0013367279898375273, 0.01350299920886755, 0.0010841392213478684, 0.0377773754298687, -0.025196406990289688, -0.05287453904747963, 0.023903843015432358, -0.02645450457930565, 0.04084506630897522, 0.062146544456481934, -0.01811314933001995, 0.01365810725837946, 0.05015153810381889, -0.002811329672113061, 0.07438282668590546, 0.044981274753808975, -0.014855884946882725, 0.017311759293079376, -0.011426277458667755, -0.028867293149232864, -0.005398614797741175, 0.01897485926747322, 0.03884589672088623, -0.0013905848609283566, 0.02097402699291706, -0.04205146059393883, -0.03308967500925064, -0.02774707041680813, 0.09168597310781479, 0.03763950243592262, -0.08775657415390015, 0.0426374226808548, -0.012942887842655182, -0.029970282688736916, -0.035536929965019226, 0.04367147386074066, 0.09423663467168808, -0.038122061640024185, 0.022921493276953697, 0.07100492715835571, -0.03438223898410797, -0.006906607653945684, -0.023938311263918877, -0.009177214466035366, -0.040121227502822876, 0.0235246904194355, -0.022352764382958412, -0.023765968158841133, 0.00010313594248145819, -0.02567896619439125, -0.023541923612356186, 0.013847683556377888, 0.011710641905665398, -0.002964283339679241, 0.06145717576146126, 0.05742437019944191, 0.044981274753808975, -0.01952635496854782, -0.013752895407378674, -0.004928982816636562, -0.004011261276900768, 0.031193910166621208, -0.040086761116981506, -0.01885421946644783, -0.03253817930817604, -0.0011083747958764434, 0.05321922525763512, -0.029849642887711525, -0.02300766296684742, 0.0163466427475214, 0.07438282668590546, -0.03688119724392891, -0.013451296836137772, -0.013244486413896084, -0.00850507989525795, 0.028057286515831947, -0.011529683135449886, -0.013184166513383389, 0.024800021201372147, -0.039604201912879944, -0.03143519163131714, -0.027023233473300934, 0.037225883454084396, 0.025920243933796883, -0.03636417165398598, 0.018681878224015236, 0.06655850261449814, -0.05625244602560997, 0.03276222199201584, 0.0594235397875309, 0.030211560428142548, -0.022077016532421112, -0.08920424431562424, 0.033813510090112686, 0.024765552952885628, -0.03695013374090195, 0.006131068337708712, 0.06386996060609818, 0.02343851886689663, -0.028040051460266113, 0.042982108891010284, -0.029849642887711525, -0.05304688215255737, 0.001532767084427178, -0.038708023726940155, -0.011831281706690788, 0.028350267559289932, 0.09030723571777344, 0.009220299310982227, -0.03543352708220482, -0.01638972945511341, -0.009918284602463245, -0.012020858004689217, 0.0029922889079898596, 0.013571936637163162, -0.016605157405138016, 0.022473404183983803, -0.03763950243592262, 0.0647316724061966, -0.057010751217603683, -0.05707968771457672, 0.03284839540719986, 0.00017543882131576538, 0.05425327643752098, 0.02500683069229126, -0.007919116877019405, 0.05228857696056366, -0.016605157405138016, 0.11836452037096024, 0.029349850490689278, 0.011245318688452244, 0.024748317897319794, 0.015786532312631607, -0.008319812826812267, 0.004265465773642063, -0.04632554203271866, -0.07672668248414993, 0.005558031145483255, -0.07121173292398453, -0.050461750477552414, -0.07789860665798187, 0.0005183725734241307, 0.033572230488061905, -0.018561238422989845, 0.022369997575879097, -0.013606404885649681, 0.03167646750807762, 0.02817792445421219, -0.09402982145547867, -0.05287453904747963, -0.03253817930817604, -0.05828608199954033, 0.06159504875540733, 0.04177571460604668, -0.0051745702512562275, 0.02050870470702648, 0.0486004576086998, 0.013037675991654396, 0.002759627066552639, 0.039500799030065536, -0.006389581598341465, -0.019664227962493896, 0.005088399164378643, -0.07989777624607086, 0.0367777943611145, -0.03681226074695587, 0.022404465824365616, -0.03936292231082916, -0.021267008036375046, 0.028781121596693993, 0.012184582650661469, 0.00764336995780468, -0.01716526784002781, -0.046463415026664734, 0.00034387625055387616, 0.02736791782081127, -0.028367500752210617, 0.01968146115541458, 0.10044094920158386, 0.0356748029589653, -0.01352023333311081, -0.0041125123389065266, 0.02555832639336586, -0.01925060711801052, -0.01713079959154129, -0.056390319019556046, -0.04056932032108307, -0.09209959208965302, 0.0038367649540305138, -0.03360670059919357, 0.021611692383885384, -0.02045700140297413, -0.040741659700870514, -0.008031139150261879, -0.04732512682676315, -0.007742466405034065, -0.01393385510891676, 0.054115403443574905, 0.05773458629846573, -0.03140072152018547, 0.03963867202401161, -0.004332248121500015, -0.030711352825164795, -0.010754143819212914, 0.042430613189935684, 0.053805187344551086, -0.02552385814487934, -0.05397753044962883, -0.024558741599321365, 0.012580969370901585, 0.025058533996343613, 0.0502549409866333, -0.019198903813958168, -0.02986687794327736, -0.055287331342697144, 0.018561238422989845, -0.010745527222752571, 0.010573185048997402, 0.04019016772508621, -0.005377071909606457, -0.03164200112223625, 0.03712247684597969, 0.010168180800974369, -0.062422290444374084, -0.04232720658183098, -0.054666899144649506, -0.007208206225186586, 0.017191119492053986, -0.02743685431778431, 0.0032400304917246103, 0.06666190177202225, 0.010400842875242233, -0.020095083862543106, -0.04287870228290558, -0.062387820333242416, 0.01928507536649704, -0.06138823926448822, -0.0023610859643667936, 0.09196171909570694, -0.036122892051935196, 0.00901348888874054, -0.08134544640779495, -0.0015650811837986112, 0.00665240315720439, -0.06338740885257721, 0.007066024001687765, 0.03377903997898102, 0.027350682765245438, -0.012072560377418995, 0.041879117488861084, 0.03352052718400955, 0.02666131593286991, -0.0050366963259875774, 0.016200153157114983, 0.06345634162425995, -0.0215944591909647, 0.020336361601948738, -0.00513579323887825, 0.029849642887711525, 0.01688951998949051, -0.057803522795438766, -0.010935102589428425, 0.03963867202401161, 0.045808516442775726, -0.016639625653624535, -0.007910500280559063, 0.0077338493429124355, 0.007001395802944899, -0.019336778670549393, -0.0011557688703760505, -0.02688536047935486, 0.07748498767614365, -0.0010792920365929604, 0.008703273721039295, -0.017027394846081734, -0.007578741759061813, -0.01940571516752243, -0.0229731947183609, -0.01327033806592226, 0.006945384666323662, -0.051599208265542984, 0.010599035769701004, 0.0073029943741858006, 0.004980685189366341, -0.06435251981019974, -0.022783618420362473, -0.06707552820444107, -0.0002638987498357892, -0.036639921367168427, 0.04077612981200218, -0.020008912310004234, 0.051840487867593765, -0.026402801275253296, 0.006686871405690908, -0.04260295629501343, 0.009246150963008404, -0.03462351858615875, -0.031193910166621208, -0.023386815562844276, 0.03739822655916214, -0.01771676354110241, -0.0913412868976593, -0.07527900487184525, 0.07017768174409866, -0.03877696022391319, -0.0068850647658109665, 0.0041275923140347, 0.016906755045056343, -0.024610444903373718, 0.03564033657312393, -0.006449901033192873, -0.009168596938252449, -0.005622659344226122, -0.03393414989113808, 0.0034382238518446684, 0.011159148067235947, 0.03591608256101608, -0.02959113009274006, 0.03715694695711136, 0.003509314963594079, 0.014786947518587112, -0.014528434723615646, -0.00599750317633152, 0.005071165040135384, -0.0061439941637218, 0.06945384293794632, 0.11002316325902939, 0.022766385227441788, -0.029349850490689278, -0.027385151013731956, -0.033330950886011124, 0.012727460823953152, 0.013390976935625076, 0.019181670621037483, -0.07934627681970596, 0.004282699897885323, -0.006561923772096634, -0.006346495822072029, 0.0030956941191107035, -0.03143519163131714, 0.007208206225186586, -0.007656295783817768 ]
20,403
nn_names.generator
generate_name
null
def generate_name(min_length: int = 4, max_length: int = 10) -> str: try: length = randint(min_length, max_length) letters, letters2 = nn() # first character first_char = randint(0, 26) name = chr(97 + first_char).upper() # second character ran = randint(0, 1000) secondchar = 0 curar = letters[first_char] while ran >= curar[secondchar]: secondchar += 1 name += chr(97 + secondchar) # rest of the characters for _ in range(2, length): ran = randint(0, 1000) nextchar = 0 curar = letters2[first_char][secondchar] while ran >= curar[nextchar]: nextchar += 1 first_char = secondchar secondchar = nextchar name += chr(97 + nextchar) return name except IndexError: return generate_name(min_length, max_length)
(min_length: int = 4, max_length: int = 10) -> str
[ -0.003145188558846712, 0.022255530580878258, -0.0038052350282669067, -0.007180775515735149, -0.009302670136094093, -0.028882576152682304, 0.005205065477639437, 0.008571745827794075, 0.057658836245536804, -0.04787774011492729, 0.026029756292700768, 0.10617447644472122, 0.004704493097960949, 0.050287578254938126, 0.030105212703347206, 0.0006041198503226042, 0.0788157656788826, -0.011083466932177544, -0.01949130930006504, -0.005360109731554985, 0.018729375675320625, 0.06361254304647446, -0.004066595807671547, -0.011428995057940483, -0.015867697075009346, 0.09511758387088776, -0.019987450912594795, 0.036608222872018814, 0.0009817639365792274, -0.035527341067790985, 0.035261549055576324, -0.04422755166888237, 0.02087341994047165, 0.04727528244256973, 0.038167525082826614, -0.0350666344165802, 0.026614496484398842, -0.018197795376181602, -0.059395331889390945, -0.036005761474370956, 0.03441102057695389, -0.046247560530900955, -0.03453505411744118, -0.026543619111180305, -0.02973310463130474, -0.027890291064977646, 0.05815497785806656, 0.024364136159420013, -0.02092657797038555, -0.003822954371571541, 0.03607663884758949, -0.002004503970965743, -0.004620326217263937, -0.020625349134206772, 0.004646905232220888, 0.02647274173796177, -0.01996973156929016, -0.013404704630374908, 0.014884271658957005, -0.009639337658882141, -0.008531877771019936, -0.036094360053539276, -0.015442431904375553, -0.04578685760498047, 0.010968291200697422, 0.012235226109623909, 0.0038827573880553246, 0.005408838391304016, 0.034446459263563156, 0.05000406503677368, 0.08498210459947586, 0.06304552406072617, 0.003145188558846712, 0.010888554155826569, 0.04865739494562149, 0.0654553547501564, -0.06598693877458572, -0.047310721129179, 0.08391894400119781, -0.06775887310504913, -0.014760236255824566, -0.03524383157491684, 0.003539444413036108, -0.058828312903642654, 0.013883127830922604, -0.03820296376943588, -0.09455056488513947, -0.06350623071193695, 0.01082653645426035, -0.050323016941547394, -0.04727528244256973, 0.02422238141298294, 0.0370689257979393, 0.039514198899269104, -0.04171140119433403, -0.03674997761845589, 0.0287762600928545, 0.007118757348507643, 0.03923068940639496, 0.026401864364743233, 0.008350254036486149, 0.007955998182296753, -0.04823213070631027, 0.06914098560810089, -0.022237811237573624, -0.010667061433196068, -0.01640813797712326, 0.012678210623562336, -0.02517922781407833, -0.010587324388325214, -0.07697294652462006, -0.026012036949396133, 0.09752742201089859, -0.04192403331398964, 0.011420135386288166, -0.020625349134206772, 0.006113183218985796, 0.024753961712121964, -0.019119201228022575, -0.05790690705180168, 0.058048661798238754, -0.07505925744771957, -0.04536158964037895, -0.03933700546622276, 0.0033733253367245197, 0.03419838845729828, -0.00461146654561162, -0.01727638766169548, 0.03423382714390755, -0.006928274407982826, 0.014361551031470299, 0.04525527358055115, 0.013688214123249054, 0.025888001546263695, 0.05170512571930885, -0.017435861751437187, -0.013821110129356384, 0.05992691591382027, 0.0009341431432403624, 0.015991732478141785, 0.03051275759935379, -0.00284838886000216, 0.056524794548749924, -0.018676217645406723, -0.008611614815890789, 0.01844586618244648, 0.04327070713043213, -0.007840821519494057, 0.027270112186670303, -0.04426299035549164, 0.02560449205338955, -0.0038716825656592846, 0.024771681055426598, -0.020164644345641136, 0.0023876852355897427, -0.029981177300214767, -0.019597625359892845, -0.057091813534498215, -0.010170918889343739, -0.07109011709690094, 0.011597328819334507, -0.008018015883862972, -0.05181144177913666, -0.047452475875616074, 0.04918897524476051, 0.010029164142906666, 0.0417468398809433, -0.0013455647276714444, 0.03791945427656174, 0.010356972925364971, -0.012873123399913311, 0.010764517821371555, 0.03003433533012867, 0.014113479293882847, -0.016434717923402786, -0.025533614680171013, -0.0418531559407711, -0.04940160736441612, 0.024364136159420013, -0.023336412385106087, -0.015442431904375553, -0.05156337097287178, -0.01130495872348547, -0.0311683751642704, 0.016638489440083504, 0.01895972713828087, 0.013156633824110031, 0.07442136108875275, 0.03198346495628357, -0.05202407389879227, -0.07151538133621216, 0.0394078828394413, -0.009355828166007996, 0.004549448844045401, 0.005050020758062601, -0.0014286243822425604, 0.015469010919332504, 0.03923068940639496, -0.0224858820438385, -0.048976343125104904, -0.019686222076416016, 0.09391266852617264, -0.03674997761845589, -0.051492493599653244, 0.03455277532339096, 0.01080881617963314, 0.01991657353937626, 0.008456570096313953, -0.020802542567253113, -0.044156674295663834, 0.03129240870475769, 0.012058032676577568, 0.012075752019882202, 0.00516519695520401, -0.0023433868773281574, -0.03325926139950752, -0.011668206192553043, 0.0056657688692212105, 0.031664516776800156, 0.019597625359892845, -0.03866367042064667, 0.009045738726854324, 0.061344463378190994, -0.025941159576177597, 0.04224298149347305, 0.019260955974459648, -0.021210087463259697, 0.028971172869205475, -0.021192368119955063, -0.00024156486324500293, 0.022415004670619965, -0.05181144177913666, 0.04465281590819359, -0.022273249924182892, -0.06382517516613007, -0.02018236368894577, 0.02218465320765972, -0.028669944033026695, 0.014441288076341152, -0.010277235880494118, -0.08597438782453537, 0.008398981764912605, 0.009249512106180191, 0.03159363940358162, 0.0034597073681652546, 0.020200083032250404, -0.011269520036876202, -0.003840673714876175, -0.04525527358055115, -0.0217062309384346, -0.03607663884758949, 0.01762191578745842, -0.05113810673356056, 0.02299974486231804, -0.020164644345641136, 0.03430470451712608, -0.011251800693571568, -0.048976343125104904, -0.0026025327388197184, 0.01024179719388485, -0.04217210412025452, 0.0260474756360054, -0.08512385934591293, 0.054788295179605484, 0.014521025121212006, -0.02113921009004116, -0.023903431370854378, 0.057269006967544556, -0.010764517821371555, -0.08937650918960571, 0.07399609684944153, 0.07077117264270782, -0.012598473578691483, -0.01940271258354187, 0.04844476282596588, -0.007140906527638435, 0.039514198899269104, 0.028067484498023987, -0.008075603283941746, -0.06407324969768524, -0.03099118173122406, 0.010667061433196068, -0.026242388412356377, 0.03646646812558174, 0.033702243119478226, -0.01010890118777752, 0.00569677772000432, -0.07938278466463089, 0.023584483191370964, -0.006166341248899698, -0.009586179628968239, -0.04557422176003456, -0.011615048162639141, 0.03625383600592613, 0.003278083633631468, -0.002846173942089081, 0.06949537247419357, 0.005147477611899376, -0.005364539567381144, 0.0003294695634394884, -0.023708518594503403, 0.011473293416202068, 0.0017065969295799732, -0.05712725222110748, -0.03566909581422806, -0.06063568964600563, -0.03549190238118172, -0.05312267690896988, -0.01579681970179081, -0.0077034966088831425, -0.0359526053071022, -0.008071173913776875, 0.03579312935471535, 0.02386799268424511, 0.08845510333776474, 0.05326443165540695, 0.023584483191370964, 0.023035183548927307, 0.05563882738351822, 0.03760050609707832, -0.03003433533012867, -0.010472148656845093, -0.013351546600461006, -0.02565765008330345, 0.018942007794976234, -0.02191886305809021, -0.03979770839214325, 0.028315555304288864, 0.01173908356577158, -0.003592602675780654, -0.08795896172523499, -0.028226958587765694, -0.0034907162189483643, -0.007535162847489119, -0.043908603489398956, 0.06088376045227051, 0.040258411318063736, 0.021670792251825333, 0.005918269976973534, 0.01779910922050476, 0.03281627595424652, -0.042207542806863785, -0.012802246026694775, 0.0361829549074173, 0.048976343125104904, 0.009346968494355679, 0.03146960213780403, -0.01567278429865837, -0.018853411078453064, -0.07300381362438202, 0.009090038016438484, -0.0008472074405290186, 0.022982025519013405, -0.006184060592204332, 0.04649563133716583, 0.01796744205057621, 0.03664366155862808, 0.037777699530124664, -0.016292961314320564, 0.052059512585401535, -0.011996014975011349, -0.04405035823583603, 0.00889955461025238, 0.0008737865136936307, -0.030016615986824036, -0.013918566517531872, 0.003887187223881483, 0.010596184059977531, 0.004073240328580141, -0.036608222872018814, -0.021369561553001404, 0.013635056093335152, -0.01835726946592331, -0.011074607260525227, -0.043766848742961884, 0.0018417071551084518, -0.010383551940321922, -0.014529884792864323, -0.04284543916583061, -0.04571598023176193, -0.01684226281940937, -0.011074607260525227, 0.011322678066790104, 0.03962051495909691, -0.044971764087677, -0.03488944098353386, 0.005617040675133467, -0.015336115844547749, -0.04383772611618042, 0.04869283363223076, -0.015238659456372261, -0.019952012225985527, 0.048763711005449295, 0.048763711005449295, 0.025285543873906136, 0.01979253813624382, -0.06928274035453796, -0.01351988036185503, -0.03377312049269676, 0.0607774443924427, -0.05758795887231827, 0.024186942726373672, -0.0126073332503438, 0.013785671442747116, -0.008022445254027843, 0.014441288076341152, 0.09653513878583908, -0.008717930875718594, 0.030672231689095497, 0.04422755166888237, -0.07789435982704163, 0.03033556416630745, -0.027110638096928596, -0.054752856492996216, 0.06453394889831543, 0.018640778958797455, -0.015238659456372261, -0.017161210998892784, 0.015158922411501408, -0.013652775436639786, -0.038911741226911545, -0.01832183077931404, 0.04171140119433403, 0.03485400229692459, -0.017683932557702065, 0.020501313731074333, 0.02556905336678028, 0.030495038256049156, -0.007362398784607649, -0.030849425122141838, -0.024417294189333916, -0.0053158113732934, -0.011712504550814629, -0.0401875339448452, 0.03240872919559479, -0.004476356320083141, -0.011118905618786812, 0.04040016606450081, -0.0008959357510320842, -0.0370689257979393, 0.04727528244256973, 0.021458158269524574, -0.0017542177811264992, 0.0772564634680748, -0.006680203136056662, 0.004358965437859297, -0.03524383157491684, -0.03336557745933533, 0.01438813004642725, -0.022361846640706062, 0.030140651389956474, 0.05482373386621475, 0.009559600614011288, -0.014228655025362968, 0.10560745745897293, -0.0013090185821056366, -0.07328732311725616, 0.004970283713191748, -0.027624500915408134, -0.03823840245604515, -0.04117982089519501, 0.11297871172428131, 0.02904205024242401, 0.045078080147504807, -0.013245230540633202, 0.09419617801904678, 0.010941712185740471, 0.04305807128548622, 0.007380118127912283, 0.03099118173122406, 0.038167525082826614, -0.012164348736405373, 0.009444424882531166, -0.02512606792151928, 0.02551589533686638, -0.059962354600429535, -0.05096091330051422, 0.04692089557647705, 0.026242388412356377, 0.006821957882493734, 0.03880542516708374, -0.0005277050076983869, 0.023726237937808037, 0.006534018088132143, -0.014219795353710651, 0.015787960961461067, -0.04571598023176193, 0.062088679522275925, -0.06609325855970383, 0.013511020690202713, 0.012651631608605385, -0.0012159919133409858, -0.01901288516819477, 0.039088934659957886, -0.0520949512720108, 0.010968291200697422, 0.0686802864074707, 0.008429991081357002, -0.03336557745933533, 0.009267231449484825, -0.009949427098035812, 0.0010365832131356, 0.022539040073752403, -0.05641847848892212, 0.022627636790275574, 0.032798558473587036, -0.05634760111570358, -0.07094836235046387, 0.003780870931223035, -0.020820261910557747, 0.002192772226408124, -0.01835726946592331, 0.054363030940294266, -0.03233785182237625, -0.005537303630262613, 0.031699955463409424, 0.022946586832404137, -0.010879694484174252, 0.01468935888260603, -0.009240652434527874, -0.028723102062940598, -0.002770866733044386, -0.037175241857767105, 0.010312674567103386, -0.01853446289896965, -0.0009197461185976863, 0.05695005878806114, 0.0012536455178633332, 0.0007541807717643678, 0.0654553547501564, -0.021847985684871674, 0.05751708149909973, 0.03627155348658562, 0.02344272844493389, -0.037742260843515396, -0.038132086396217346, -0.0907231792807579, -0.00802687555551529, 0.038557350635528564, 0.0027930159121751785, 0.03324154019355774, -0.016292961314320564, 0.014618481509387493, -0.07084205001592636, -0.03760050609707832, -0.028262397274374962, 0.039124373346567154, -0.0016866626683622599, 0.009967146441340446, -0.01787884533405304, -0.009913988411426544, -0.016851121559739113, -0.03643102943897247, -0.07197608798742294, -0.062478505074977875, -0.01645243726670742, -0.043164387345314026, -0.03524383157491684, -0.008558456785976887, 0.08944738656282425, 0.005679058376699686, -0.007349109277129173, 0.058403048664331436, -0.012182068079710007, -0.029963457956910133, 0.05737532675266266, -0.05489461123943329, 0.028138361871242523, -0.011553030461072922, -0.02686256729066372, -0.04539702832698822, 0.03915981203317642, 0.0715862587094307, 0.02135184220969677, -0.09036879241466522, -0.0163638386875391, 0.018888849765062332, -0.007668057922273874, 0.037352435290813446, 0.026242388412356377, -0.005063310265541077, 0.06605781614780426, -0.0018328474834561348, -0.05213038995862007, 0.018428146839141846, -0.01217320840805769, -0.022237811237573624, 0.004638045560568571, -0.04132157564163208, -0.015353835187852383, -0.0108531154692173, 0.059005506336688995, -0.009595039300620556, -0.06751080602407455, 0.02369079925119877, 0.039088934659957886, 0.011074607260525227, 0.0020986380986869335, -0.06995607912540436, -0.004633615724742413, -0.014095759950578213, 0.03520839288830757, -0.013918566517531872, 0.05092547461390495, 0.07364170998334885, 0.0764768049120903, -0.013324967585504055, -0.03276311978697777, -0.029839422553777695, 0.03419838845729828, -0.03403891250491142, 0.008403412066400051, -0.057552520185709, -0.047204405069351196, -0.019473589956760406, -0.027961168438196182, -0.005125328432768583, -0.04061279818415642, 0.0023699658922851086, -0.028315555304288864, -0.048196692019701004, 0.03210750222206116, 0.029414156451821327, 0.004859537817537785, 0.010711359791457653, -0.026313267648220062, 0.02108605206012726, 0.0252146665006876, -0.0015803464921191335, -0.006569456774741411, -0.0457514189183712, -0.01191627699881792, -0.027713097631931305, -0.055213563144207, -0.004250434227287769, 0.044156674295663834, 0.03579312935471535, 0.026703093200922012, -0.03671453893184662, 0.002281369175761938, -0.01293514110147953, -0.007264942396432161, 0.0013954004971310496, 0.032142940908670425, -0.038167525082826614, 0.02847502939403057, 0.01988113485276699, 0.02904205024242401, -0.054008644074201584, -0.06903467327356339, -0.024328697472810745, 0.012421279214322567, 0.05982059985399246, -0.011836539953947067, 0.06619957089424133, -0.05312267690896988, 0.0026468310970813036, -0.08647052943706512, 0.02569308876991272, -0.009067888371646404, 0.03081398643553257, -0.05273285135626793, 0.045645102858543396, -0.04387316480278969, -0.02092657797038555, 0.004828528966754675, 0.039514198899269104, -0.030831705778837204, -0.03200118616223335, -0.012252945452928543, 0.005962568335235119, -0.0342869833111763, 0.03721068054437637, -0.07240135222673416, -0.0015781315742060542, 0.006556167267262936, 0.011969435028731823, 0.019066043198108673, 0.02369079925119877, -0.014095759950578213, 0.048940904438495636, -0.029024330899119377, 0.001572594279423356, -0.06754624098539352, 0.06836133450269699, 0.04128613695502281, -0.030105212703347206, -0.02551589533686638, 0.04539702832698822, 0.03051275759935379, -0.008088893257081509, -0.004793089814484119, 0.009967146441340446, 0.03809664770960808, -0.003962494432926178, 0.018995165824890137, 0.004549448844045401, 0.02087341994047165, -0.07746909558773041, -0.013493301346898079, 0.009692496620118618, 0.02595887891948223, -0.013883127830922604, 0.014202076010406017, -0.05181144177913666, -0.015096904709935188, -0.05308723822236061, 0.0322846956551075, 0.06127358600497246, -0.021334122866392136, 0.05716269090771675, 0.014733657240867615, 0.016000593081116676, 0.019987450912594795, -0.020891139283776283, -0.07477574795484543, -0.022840270772576332, 0.05142161622643471, 0.014166637323796749, 0.03894717991352081, 0.006658053956925869, 0.01649673469364643, 0.0347299687564373, -0.02730555087327957, -0.05393776670098305, -0.013714793138206005, -0.03221381828188896, -0.03841559588909149, -0.06180516630411148, 0.008558456785976887, -0.03671453893184662, 0.019509028643369675, -0.006883976049721241, 0.02464764565229416, 0.010206357575953007, -0.006782089360058308, -0.019367273896932602, 0.02464764565229416, -0.03607663884758949, -0.01805603876709938, -0.021759388968348503, 0.03997490182518959, 0.004704493097960949, 0.03671453893184662, 0.010986010544002056, 0.07055854052305222, 0.004361180122941732, 0.02005832828581333, 0.018374988809227943, 0.006170771084725857, 0.05000406503677368, 0.0362892746925354, -0.0008256119908764958, 0.011375836096704006, 0.019331835210323334, -0.015504450537264347, -0.03093802183866501, 0.016718227416276932, -0.006029016338288784, -0.04716896638274193, 0.000798479188233614, 0.016416998580098152, 0.010002585127949715, 0.013962864875793457, -0.03146960213780403, 0.023407289758324623, 0.02973310463130474, 0.018118057399988174 ]
20,405
cron_descriptor.CasingTypeEnum
CasingTypeEnum
null
class CasingTypeEnum(object): Title = 1 Sentence = 2 LowerCase = 3
()
[ 0.013658365234732628, -0.02586503140628338, -0.03207901120185852, -0.09644947946071625, -0.011365742422640324, -0.08256981521844864, 0.025050662457942963, -0.04503808170557022, 0.05385449901223183, -0.07414288073778152, -0.06199817731976509, 0.05211954191327095, -0.015658877789974213, -0.013684920035302639, -0.02349274232983589, -0.01850031316280365, -0.03951454535126686, 0.024253997951745987, -0.005550093948841095, -0.026643991470336914, 0.01585361734032631, 0.07021266967058182, 0.0016862725606188178, -0.03721306845545769, 0.0679820105433464, 0.04316149652004242, -0.022890817373991013, -0.008568566292524338, 0.0024364646524190903, -0.04482563957571983, -0.050667840987443924, -0.016986651346087456, -0.05169465392827988, 0.000048304682422894984, -0.0017692584078758955, -0.039656173437833786, 0.003527452005073428, 0.011374594643712044, 0.04567541182041168, 0.051340579986572266, -0.07247873395681381, 0.033707745373249054, -0.06787578761577606, 0.008241048082709312, -0.03538959473371506, -0.01263155322521925, -0.02871531806886196, -0.008254325948655605, 0.0021532063838094473, -0.02349274232983589, -0.0009228026610799134, -0.02618369646370411, 0.011613593436777592, -0.07046052068471909, -0.018287869170308113, -0.03792121633887291, -0.014729435555636883, 0.05700574815273285, -0.05697034299373627, 0.07612568885087967, -0.01876586675643921, 0.02287311479449272, -0.03609773889183998, -0.0723017007112503, -0.006953108124434948, -0.015950987115502357, 0.007510772906243801, 0.04047054052352905, 0.017482353374361992, 0.02126208133995533, 0.007559457793831825, -0.017668241634964943, 0.004211255349218845, 0.03340678662061691, 0.048578813672065735, 0.01233944296836853, -0.03912506252527237, 0.03845232352614403, 0.006709682755172253, 0.0021908264607191086, 0.03227375075221062, 0.024519553408026695, 0.011675556190311909, -0.014198326505720615, -0.005589927081018686, -0.013773438520729542, -0.01913764327764511, -0.058103375136852264, 0.04787066578865051, 0.022625263780355453, -0.0326809361577034, -0.03388478234410286, -0.01311840396374464, -0.0009493581601418555, -0.019261570647358894, 0.007891401648521423, 0.03877099230885506, -0.05024295672774315, -0.01403014175593853, -0.002635630778968334, 0.01613687537610531, 0.03489389270544052, 0.031264644116163254, -0.03919587656855583, -0.02004053071141243, -0.019651049748063087, -0.0028901207260787487, 0.0056430380791425705, -0.002156525617465377, 0.035283371806144714, -0.030078498646616936, -0.04404667764902115, 0.010914299637079239, -0.020500825718045235, 0.006528220605105162, -0.021102748811244965, -0.0065370723605155945, 0.01172866765409708, -0.06288336217403412, 0.0068424600176513195, -0.008369400165975094, 0.025811919942498207, -0.0209434162825346, 0.02862679958343506, 0.027299026027321815, 0.05604975298047066, 0.024431034922599792, -0.009320970624685287, 0.013198070228099823, 0.0890139490365982, 0.006913274992257357, -0.026891842484474182, -0.0066565717570483685, -0.027865542098879814, 0.03542499989271164, 0.032503899186849594, -0.01218896172940731, 0.026643991470336914, -0.010303523391485214, 0.09135082364082336, 0.039904024451971054, 0.03278715908527374, 0.026059770956635475, -0.03427426517009735, -0.030698126181960106, 0.04741037264466286, 0.021031934767961502, -0.025794215500354767, -0.038098253309726715, 0.0413203164935112, -0.0030737959314137697, 0.00922360084950924, 0.007453236263245344, 0.0548459030687809, 0.0014837870839983225, -0.050667840987443924, -0.044223714619874954, -0.07768361270427704, -0.012171258218586445, 0.04142653942108154, 0.04443615674972534, 0.017871832475066185, -0.060617294162511826, -0.026891842484474182, 0.03923128545284271, 0.030928274616599083, 0.017650537192821503, -0.023935332894325256, 0.015331359580159187, -0.05707656219601631, -0.0321144200861454, -0.027263619005680084, -0.013082996010780334, 0.07357636094093323, 0.03179575130343437, 0.03742551431059837, -0.017190242186188698, 0.08816417306661606, 0.05707656219601631, -0.017048614099621773, 0.038948025554418564, 0.03340678662061691, -0.06638868153095245, 0.02436022087931633, 0.020890304818749428, -0.004740152042359114, 0.07258495688438416, 0.025174587965011597, 0.0256348829716444, -0.03661114722490311, 0.008426936343312263, -0.013286588713526726, -0.03151249513030052, -0.010276967659592628, -0.010595633648335934, 0.0014705093344673514, -0.013746882788836956, -0.045215118676424026, -0.022607559338212013, 0.037496328353881836, -0.031317755579948425, 0.08504832535982132, 0.018907496705651283, 0.042063869535923004, 0.0295827966183424, 0.031052200123667717, 0.05151761695742607, -0.050526212900877, -0.05435020104050636, -0.044188305735588074, -0.021740080788731575, -0.02652006596326828, 0.030414868146181107, 0.0203769002109766, 0.03354841470718384, -0.08278226107358932, -0.035637445747852325, 0.0156854335218668, -0.023014742881059647, 0.04139113053679466, 0.02625451050698757, 0.007948937825858593, 0.034681446850299835, -0.01187029667198658, 0.047622814774513245, -0.004158144351094961, -0.022076450288295746, -0.029157908633351326, -0.03473455831408501, 0.0014262502081692219, -0.03473455831408501, -0.02439562790095806, 0.0058864629827439785, 0.026909545063972473, -0.008922639302909374, -0.0209434162825346, 0.007125718519091606, 0.010684152133762836, -0.06097136437892914, -0.01603950560092926, 0.03553122282028198, 0.011082484386861324, -0.011303779669106007, 0.05204872786998749, -0.030043091624975204, -0.0030118331778794527, 0.02503295987844467, 0.02133289724588394, -0.02126208133995533, -0.0255463644862175, -0.030467979609966278, -0.05265065282583237, -0.001588902436196804, -0.02287311479449272, 0.010383189655840397, -0.023298000916838646, -0.07562998682260513, -0.00013097934424877167, 0.014393066056072712, -0.03388478234410286, -0.0518362820148468, 0.0027219359762966633, 0.03735470026731491, 0.06040484830737114, 0.01201192568987608, 0.006178573239594698, 0.050738658756017685, 0.03546040877699852, 0.02248363383114338, -0.017756760120391846, 0.10848795622587204, 0.0040165153332054615, -0.02928183414041996, 0.02685643546283245, -0.016915835440158844, 0.039656173437833786, -0.03855854645371437, 0.010533670894801617, 0.01773020438849926, -0.037460919469594955, 0.05293390899896622, 0.027245914563536644, -0.038948025554418564, 0.011888000182807446, 0.053783684968948364, 0.01622539386153221, 0.03535418584942818, -0.037814993411302567, -0.018925201147794724, 0.022926224395632744, -0.020465418696403503, 0.011188706383109093, 0.017933795228600502, -0.01788068562746048, 0.019934307783842087, 0.01714598387479782, 0.056616269052028656, -0.02315637283027172, 0.04698548465967178, -0.037460919469594955, -0.01632276363670826, 0.02561718039214611, 0.05335879698395729, -0.006187424995005131, -0.09779495745897293, 0.007563883904367685, -0.0087810093536973, -0.011640149168670177, 0.0033924616873264313, 0.04843718186020851, -0.042630385607481, 0.04500267654657364, -0.0351240374147892, 0.02400614693760872, -0.014269140549004078, 0.060263220220804214, -0.024448739364743233, -0.00047357261064462364, -0.0255463644862175, 0.08101189881563187, -0.03080434910953045, -0.07435532659292221, -0.025988956913352013, -0.03307041525840759, -0.008325140923261642, -0.026042066514492035, -0.03156560659408569, 0.009905191138386726, 0.03307041525840759, -0.03369004279375076, -0.02928183414041996, -0.018712757155299187, 0.036239366978406906, 0.00732045853510499, -0.02499755099415779, -0.003611544379964471, 0.036504924297332764, 0.02745835855603218, -0.001590008963830769, 0.016738800331950188, 0.021757783368229866, -0.022306596860289574, -0.042063869535923004, 0.005368631333112717, 0.024572664871811867, 0.004293134901672602, -0.0203769002109766, -0.0011695473222061992, 0.0939001515507698, -0.027033472433686256, -0.011693259701132774, -0.06164410337805748, 0.04900369793176651, -0.0007092524319887161, 0.03604462742805481, -0.03639870136976242, 0.03200819715857506, -0.07647976279258728, 0.03415033966302872, -0.009374082088470459, 0.07796686887741089, -0.05895315110683441, 0.006302498746663332, 0.006992941256612539, -0.06221062317490578, -0.006687553133815527, 0.012720071710646152, -0.0011241816682741046, 0.034663744270801544, 0.004357310477644205, 0.041178688406944275, 0.024147776886820793, -0.0338139683008194, -0.05141139402985573, -0.00010034372826339677, -0.0001930804137373343, 0.037814993411302567, 0.0058908890932798386, -0.008608398959040642, 0.05325257405638695, -0.03089286759495735, -0.0004398250312078744, 0.0016597170615568757, 0.08738520741462708, -0.03969157859683037, -0.01186144445091486, 0.03476996719837189, 0.03629247844219208, 0.010011413134634495, 0.05888233706355095, -0.03149479255080223, 0.008665936067700386, 0.015242841094732285, -0.03542499989271164, 0.026626287028193474, -0.0015291526215150952, -0.07258495688438416, -0.03307041525840759, 0.04103705659508705, 0.048862069845199585, 0.0023811408318579197, -0.019615642726421356, -0.007377995643764734, 0.032521601766347885, -0.01773020438849926, 0.042736608535051346, 0.005983833223581314, 0.010905447416007519, -0.02287311479449272, 0.0024785108398646116, 0.013277736492455006, -0.009940599091351032, -0.00801975280046463, -0.09793658554553986, -0.03584988787770271, -0.0332474522292614, 0.048897478729486465, 0.03689440339803696, -0.015773950144648552, -0.009338675066828728, -0.017004353925585747, -0.03264552727341652, 0.05367746204137802, 0.05711197108030319, -0.016012949869036674, 0.01853572018444538, 0.07205384969711304, -0.0030760089866816998, 0.0345575213432312, -0.014047845266759396, -0.02590043842792511, 0.016632577404379845, -0.06359150260686874, -0.09899879992008209, 0.032503899186849594, -0.007829438894987106, -0.054987531155347824, -0.039018843322992325, -0.043763417750597, -0.0034610633738338947, -0.007572735659778118, 0.02193482033908367, -0.036504924297332764, 0.05169465392827988, 0.015977542847394943, -0.03542499989271164, -0.009745858609676361, -0.0033968875650316477, 0.033778563141822815, -0.03556663170456886, 0.00342565611936152, 0.045462969690561295, 0.021403711289167404, -0.01913764327764511, 0.04142653942108154, -0.015163174830377102, -0.07669220864772797, -0.008493325673043728, -0.016889281570911407, -0.01773020438849926, 0.014251437038183212, 0.011675556190311909, -0.05619138106703758, -0.00955111812800169, -0.03923128545284271, 0.07449695467948914, 0.013507883995771408, 0.019527124240994453, 0.04471941664814949, -0.0031092031858861446, -0.05300472304224968, 0.011277223937213421, 0.04556919261813164, -0.002777259796857834, -0.023970739915966988, 0.05980292335152626, -0.018323276191949844, -0.013003329746425152, -0.06925667077302933, -0.004988003056496382, 0.05866989120841026, -0.021793192252516747, -0.042063869535923004, -0.010542523115873337, 0.007816161029040813, -0.017933795228600502, 0.01910223625600338, 0.0456400066614151, -0.00571827869862318, -0.02586503140628338, 0.02225348725914955, 0.02740524895489216, 0.011790630407631397, -0.005740407854318619, 0.07860419899225235, 0.04440075159072876, -0.03535418584942818, 0.04277201369404793, -0.07127489149570465, 0.012073888443410397, 0.05619138106703758, -0.027971765026450157, -0.061219215393066406, -0.04744577780365944, 0.04776444286108017, -0.005696149077266455, 0.007276199758052826, -0.020553935319185257, -0.008980175480246544, -0.05049080774188042, -0.017668241634964943, 0.0244133323431015, 0.043763417750597, -0.06458290666341782, 0.003053879365324974, 0.00585548160597682, -0.0035208130721002817, -0.004204616416245699, -0.05339420586824417, 0.04932236671447754, -0.03319434076547623, -0.06008618324995041, -0.030591905117034912, 0.024253997951745987, -0.0053819091990590096, 0.03608003631234169, -0.03473455831408501, -0.040541354566812515, 0.031335458159446716, 0.0156854335218668, 0.004348458722233772, -0.050455398857593536, -0.00899787899106741, 0.07049592584371567, 0.03358381986618042, -0.0072894771583378315, -0.022589854896068573, 0.0023877795320004225, 0.052261169999837875, 0.05463346093893051, 0.016880428418517113, -0.02618369646370411, -0.03177804872393608, -0.0025050663389265537, 0.06582216918468475, 0.011206409893929958, -0.012082740664482117, -0.07591324299573898, -0.06571594625711441, 0.027918653562664986, -0.0006898890715092421, -0.028538281098008156, -0.04988888278603554, -0.05148221179842949, -0.010498263873159885, 0.017269909381866455, -0.01139229815453291, -0.005151761695742607, 0.05622678995132446, 0.027971765026450157, -0.0034544244408607483, -0.022926224395632744, 0.009033286944031715, 0.023953037336468697, -0.03834610432386398, 0.024431034922599792, -0.02963590808212757, 0.01848260872066021, 0.029175613075494766, -0.012401405721902847, 0.07527591288089752, -0.02343963086605072, 0.046348150819540024, 0.03264552727341652, -0.0014804676175117493, 0.05151761695742607, -0.0033924616873264313, 0.040576763451099396, -0.007864845916628838, 0.012109295465052128, -0.03742551431059837, 0.008515454828739166, -0.08965127915143967, -0.04574622958898544, -0.001713934470899403, -0.01767709292471409, -0.040187280625104904, 0.0053199464455246925, 0.009666192345321178, -0.014242585748434067, -0.022997040301561356, 0.051021914929151535, 0.017101723700761795, -0.026891842484474182, -0.06263551115989685, -0.018270164728164673, 0.06943371146917343, -0.03979780152440071, -0.04659600183367729, 0.013038737699389458, -0.01816394366323948, 0.02253674529492855, -0.01679190993309021, 0.07038971036672592, 0.08618136495351791, 0.025156885385513306, 0.0057050008326768875, -0.022395115345716476, -0.013631809502840042, 0.030379461124539375, 0.015711987391114235, -0.015331359580159187, 0.007802883163094521, -0.014304548501968384, 0.04316149652004242, 0.0002602989552542567, 0.036823589354753494, -0.06642408668994904, -0.007643550168722868, -0.0627417340874672, -0.04840177670121193, -0.01617228239774704, 0.0006771645857952535, 0.019792679697275162, -0.04280742257833481, 0.027210507541894913, -0.012578442692756653, -0.025971252471208572, 0.004049709532409906, -0.11847281455993652, 0.018854385241866112, 0.032521601766347885, -0.007488643284887075, -0.0929795652627945, -0.03307041525840759, 0.05612056702375412, -0.023244891315698624, 0.03372545167803764, 0.005629760213196278, 0.04953480884432793, -0.015402174554765224, -0.011162150651216507, 0.04383423551917076, 0.04224090650677681, -0.024289406836032867, 0.02283770591020584, -0.015472988598048687, -0.04783525690436363, -0.009737006388604641, -0.04627733677625656, -0.03110531158745289, 0.06129003316164017, -0.018624238669872284, 0.0039036546368151903, 0.004669337533414364, 0.031034495681524277, -0.01359640248119831, 0.014667472802102566, 0.05452723801136017, -0.06674275547266006, -0.03792121633887291, 0.0011717602610588074, 0.03940832242369652, -0.04100165143609047, 0.03884180635213852, 0.00016140748630277812, 0.02745835855603218, -0.03613314777612686, 0.03661114722490311, -0.017358427867293358, 0.03048568218946457, 0.06624705344438553, 0.018960608169436455, -0.02811339497566223, -0.05612056702375412, 0.02839665301144123, 0.02621910348534584, 0.027352137491106987, 0.08122433722019196, -0.012454517185688019, -0.01387080829590559, 0.0019794891122728586, -0.002558177337050438, -0.009033286944031715, 0.07315147668123245, 0.00250727916136384, -0.026077475398778915, -0.03234456479549408, -0.010825781151652336, -0.035867590457201004, -0.03629247844219208, -0.0029830648563802242, -0.021368304267525673, -0.006957533769309521, 0.03393789380788803, -0.007338162511587143, 0.02894546464085579, -0.023191779851913452, 0.0014738288009539247, 0.02154534123837948, 0.025333920493721962, -0.030379461124539375, -0.009285563603043556, 0.005222576204687357, 0.015242841094732285, 0.0076789576560258865, 0.014109808020293713, 0.016437837854027748, 0.09687436372041702, 0.010932003147900105, -0.0012680238578468561, 0.039904024451971054, -0.03052109107375145, -0.006514942739158869, 0.013773438520729542, -0.011356890201568604, -0.011410001665353775, 0.08341959118843079, -0.0001118234358727932, -0.011808333918452263, 0.08235737681388855, -0.03618625923991203, 0.03360152617096901, 0.04666681960225105, 0.005740407854318619, -0.0388772115111351, -0.011197557672858238, 0.043055273592472076, -0.07478021085262299, -0.023368816822767258, 0.01080807764083147, -0.03834610432386398, -0.055624864995479584, 0.010816928930580616, -0.033442191779613495, 0.007661254145205021, 0.012666960246860981, -0.031264644116163254, -0.011365742422640324, 0.03972698748111725, -0.012144703418016434, 0.03142397478222847, -0.01201192568987608, -0.05222576484084129, -0.07421369850635529, 0.06787578761577606, 0.03393789380788803, 0.0005836671916767955, 0.021014230325818062, 0.022660670801997185, -0.008493325673043728, 0.0047445776872336864, -0.015552655793726444, -0.04061216861009598, 0.03476996719837189, -0.010631040669977665, -0.00941834133118391, -0.023209484294056892, -0.01617228239774704, 0.022607559338212013, -0.00045559232239611447, -0.06653030961751938, -0.014481584541499615, 0.04585244879126549, 0.03735470026731491, -0.008227771148085594, 0.015216286294162273, -0.0005991578800603747 ]
20,406
cron_descriptor.DescriptionTypeEnum
DescriptionTypeEnum
DescriptionTypeEnum
class DescriptionTypeEnum(enum.IntEnum): """ DescriptionTypeEnum """ FULL = 1 TIMEOFDAY = 2 SECONDS = 3 MINUTES = 4 HOURS = 5 DAYOFWEEK = 6 MONTH = 7 DAYOFMONTH = 8 YEAR = 9
(value, names=None, *, module=None, qualname=None, type=None, start=1)
[ 0.06681359559297562, -0.01705622300505638, -0.04259877651929855, -0.0519578792154789, 0.003978547640144825, -0.08341486752033234, 0.02709311805665493, -0.05622889846563339, -0.049246709793806076, -0.04467857629060745, -0.03060278296470642, 0.03699074313044548, -0.013797249644994736, -0.008212427608668804, 0.011773157864809036, 0.007167884614318609, -0.0339638888835907, -0.010788965970277786, -0.03786351531744003, -0.00334950047545135, 0.013258730061352253, 0.01084467489272356, -0.03667505830526352, 0.001429863041266799, 0.026016078889369965, 0.06703643500804901, -0.021912187337875366, -0.03114130161702633, -0.03635937348008156, -0.0812607854604721, -0.041633155196905136, -0.0024976178538054228, -0.05671171098947525, -0.011401765048503876, -0.04382437467575073, -0.029265766963362694, -0.044381462037563324, 0.010371149517595768, -0.06666503846645355, 0.07784397155046463, -0.019498132169246674, -0.002968822605907917, -0.03888484463095665, -0.0008907628944143653, -0.009925478138029575, -0.0499894954264164, 0.0104732820764184, -0.06064847484230995, 0.017334768548607826, -0.03190265968441963, 0.036953601986169815, -0.0060304938815534115, -0.02022234909236431, -0.04311872646212578, -0.07063894718885422, 0.010519706644117832, -0.005450191907584667, 0.060054246336221695, -0.021206539124250412, 0.06447382271289825, -0.048392508178949356, 0.039776191115379333, -0.006276541389524937, -0.028615830466151237, -0.02592323161661625, 0.008732377551496029, 0.02685171365737915, 0.009493733756244183, 0.028040170669555664, 0.04538422450423241, 0.023732012137770653, -0.0007712207734584808, 0.01578420214354992, 0.04085322842001915, 0.057788748294115067, -0.04063039273023605, -0.05140078812837601, -0.0012058665743097663, 0.019386714324355125, 0.008597747422754765, 0.025607546791434288, 0.0159420445561409, 0.04486427456140518, 0.012385956011712551, 0.0017443865071982145, -0.007497495971620083, 0.01756688766181469, -0.05073228105902672, 0.029562881216406822, 0.015273536555469036, -0.003467882052063942, -0.018987467512488365, -0.032775431871414185, -0.0208908561617136, -0.009489091113209724, -0.03156840428709984, -0.021466514095664024, -0.01486500445753336, -0.0420045480132103, -0.03218120336532593, -0.008709165267646313, -0.012571652419865131, -0.01822611130774021, -0.04111320525407791, 0.004199062008410692, -0.021410806104540825, -0.0008605871698819101, -0.056006062775850296, -0.009507660754024982, 0.013630122877657413, -0.0027784837875515223, -0.045124247670173645, -0.03468810394406319, -0.018773915246129036, 0.004020329099148512, 0.052812084555625916, 0.050286609679460526, 0.017678305506706238, 0.004679551813751459, -0.0010520867072045803, 0.011336770839989185, 0.020482324063777924, -0.0017548318719491363, 0.02635033242404461, 0.03847631439566612, 0.04360153526067734, -0.01286876667290926, -0.001055568573065102, 0.002887580543756485, 0.05039802938699722, 0.001674750237725675, 0.0015714565524831414, 0.023991987109184265, 0.008839152753353119, 0.021522223949432373, 0.011132504791021347, 0.02267354167997837, 0.03537518158555031, -0.025700394064188004, 0.07401861995458603, -0.01897818222641945, 0.03944193571805954, 0.021856477484107018, -0.022097883746027946, -0.01705622300505638, 0.028170159086585045, -0.020500892773270607, 0.026888852939009666, -0.0299157053232193, 0.0798494964838028, -0.007766755763441324, -0.02427053265273571, -0.020779438316822052, 0.039776191115379333, 0.05117795243859291, -0.05277494341135025, 0.024716204032301903, -0.05478046461939812, -0.020129499956965446, 0.023862000554800034, 0.05689740553498268, -0.007126103155314922, 0.01155032217502594, -0.016759108752012253, 0.020166639238595963, 0.06614509224891663, -0.007061109412461519, -0.03231118991971016, 0.014159358106553555, -0.033091116696596146, -0.023434897884726524, -0.008867007680237293, 0.046424124389886856, 0.03266401216387749, 0.03466953709721565, 0.04880103841423988, 0.0019498132169246674, 0.0634339228272438, 0.044641438871622086, -0.010296870954334736, 0.0420045480132103, 0.05414909869432449, -0.1016131192445755, 0.009758350439369678, -0.005951572675257921, 0.02519901469349861, 0.004236201290041208, -0.01822611130774021, 0.010510421358048916, -0.036470793187618256, 0.003514306154102087, 0.012553082779049873, -0.01431719958782196, 0.005849439650774002, -0.019498132169246674, -0.008681311272084713, 0.0033077187836170197, -0.026703156530857086, 0.046535540372133255, 0.03270115330815315, -0.0016909986734390259, 0.08950570970773697, 0.032404039055109024, -0.0017559925327077508, 0.059125762432813644, 0.02161507122218609, 0.050955116748809814, -0.06250543892383575, -0.06625650823116302, -0.03862487152218819, -0.037807807326316833, -0.02616463601589203, 0.020853716880083084, 0.029098641127347946, 0.027798766270279884, -0.052440691739320755, -0.07305300235748291, 0.004203704185783863, -0.06105700880289078, 0.01708407700061798, 0.01705622300505638, -0.0033773549366742373, 0.020668020471930504, -0.08029516786336899, 0.07910670340061188, -0.018532510846853256, -0.0027158111333847046, -0.08824297785758972, -0.05270066484808922, 0.019702397286891937, -0.057900168001651764, -0.04504996910691261, -0.023936279118061066, -0.005264495499432087, -0.013277299702167511, 0.06283969432115555, 0.010788965970277786, -0.0014507538871839643, -0.047649722546339035, 0.000501670700032264, -0.004665624350309372, -0.010677548125386238, -0.025477558374404907, 0.04649840295314789, -0.006842915900051594, -0.03349964693188667, -0.002025252440944314, 0.023174922913312912, -0.03448383882641792, -0.03786351531744003, -0.06243116036057472, -0.05663743242621422, 0.0067547098733484745, 0.0010428018867969513, 0.02666601724922657, 0.007386078126728535, -0.06302539259195328, -0.02142937481403351, 0.009321964345872402, -0.04059325531125069, -0.009057346731424332, -0.050100915133953094, 0.019182447344064713, 0.044641438871622086, 0.016461994498968124, -0.004721333272755146, 0.03877342864871025, 0.017613312229514122, 0.019498132169246674, -0.03660077974200249, 0.16519559919834137, -0.00431047985330224, -0.06937620788812637, -0.0034794881939888, -0.00614191172644496, 0.012738779187202454, 0.008802013471722603, -0.03881056606769562, -0.0022596942726522684, -0.021355096250772476, -0.019182447344064713, 0.003985511139035225, -0.0005414213519543409, 0.0398133285343647, 0.022450705990195274, 0.051697906106710434, -0.013110172934830189, 0.031234150752425194, -0.04081609100103378, 0.03370391204953194, -0.009916192851960659, 0.028040170669555664, 0.04111320525407791, -0.019943803548812866, 0.06859628856182098, 0.0652908906340599, 0.07283016294240952, 0.01164317037910223, 0.005779803264886141, 0.01321230549365282, -0.020500892773270607, 0.03866200894117355, 0.035226624459028244, 0.0014182570157572627, -0.08616317063570023, 0.005742663983255625, 0.031178440898656845, -0.02358345501124859, 0.0022202336695045233, 0.024196254089474678, -0.020166639238595963, 0.03654507175087929, 0.000680693716276437, 0.0339638888835907, 0.008101009763777256, 0.03563515841960907, -0.04059325531125069, 0.005733379162847996, -0.018142547458410263, 0.03595084324479103, -0.0011211426462978125, -0.021206539124250412, 0.02180076763033867, -0.05166076496243477, 0.023304909467697144, -0.05024947226047516, -0.017260489985346794, 0.026127496734261513, 0.01000904105603695, -0.042487356811761856, -0.010241162031888962, -0.07037897408008575, 0.06421384960412979, 0.00870452355593443, -0.006425098516047001, -0.021057981997728348, 0.05214357748627663, -0.011559606529772282, -0.008862365037202835, 0.034001030027866364, 0.07390720397233963, -0.02440051920711994, -0.023991987109184265, 0.021577931940555573, 0.054520491510629654, -0.01748332567512989, 0.015087840147316456, 0.017204780131578445, 0.10109317302703857, -0.0010364186018705368, 0.01588633470237255, -0.035412322729825974, 0.008087082765996456, 0.005176289938390255, 0.036470793187618256, -0.003198622027412057, 0.05106653645634651, -0.0851975530385971, 0.03208835422992706, 0.00588193628937006, 0.013193735852837563, -0.014326484873890877, 0.014085079543292522, -0.016192734241485596, -0.036526501178741455, -0.006197620648890734, 0.0067732795141637325, 0.0060862028039991856, 0.05942287668585777, 0.02365773357450962, 0.009814059361815453, 0.03962763026356697, -0.009219830855727196, -0.02943289466202259, 0.032886847853660583, -0.034316711127758026, -0.004382437095046043, 0.03355535492300987, -0.06361962109804153, 0.016276298090815544, -0.01857893355190754, -0.0029966772999614477, -0.03914482146501541, 0.05251497030258179, -0.017826862633228302, -0.008467759937047958, 0.07620984315872192, 0.0026902779936790466, -0.08163218200206757, 0.036340802907943726, -0.016536273062229156, 0.00790602806955576, -0.03895912319421768, -0.025774672627449036, -0.012163120321929455, -0.014605029486119747, -0.054334793239831924, 0.004208346828818321, 0.019813815131783485, 0.02009236067533493, 0.028782956302165985, 0.006536516826599836, -0.015069270506501198, 0.013527989387512207, 0.004644733387976885, 0.04553278163075447, 0.014261490665376186, -0.0010364186018705368, -0.0578630268573761, 0.003542160615324974, 0.01740904711186886, -0.04490141198039055, 0.0037394631654024124, -0.028615830466151237, -0.02076086774468422, -0.04742688313126564, 0.02464192546904087, -0.010677548125386238, 0.016889097169041634, -0.024344811215996742, -0.0029734650161117315, -0.04141031950712204, 0.055820368230342865, 0.10228163003921509, -0.02538471110165119, -0.008384197019040585, 0.06525374948978424, 0.0317726694047451, -0.025756103917956352, -0.015477802604436874, 0.01985095627605915, 0.05125223100185394, -0.07260733097791672, -0.07346153259277344, 0.06012852489948273, -0.05478046461939812, -0.03944193571805954, -0.041930269449949265, -0.048392508178949356, -0.016675544902682304, 0.008272779174149036, 0.008867007680237293, 0.06339678168296814, 0.032032646238803864, 0.050286609679460526, -0.06896767765283585, -0.017251204699277878, 0.024976179003715515, 0.04597845301032066, -0.02451193705201149, -0.05221785604953766, 0.03223691135644913, 0.03665648773312569, -0.04932098835706711, 0.031791239976882935, -0.05923718214035034, -0.0535920076072216, 0.022766390815377235, -0.010974663309752941, -0.0499894954264164, 0.04219024255871773, 0.023639163002371788, -0.05203215777873993, -0.04508711025118828, 0.00586800929158926, 0.019683828577399254, 0.016146309673786163, -0.06517946720123291, 0.007590344175696373, 0.03448383882641792, -0.027445942163467407, 0.039664771407842636, 0.07710118591785431, -0.012831627391278744, -0.03130842745304108, 0.0026693870313465595, -0.004271019250154495, 0.02906150184571743, -0.04412148892879486, -0.006114057265222073, 0.10064750164747238, -0.008658098988234997, -0.017279058694839478, 0.02616463601589203, -0.014428617432713509, 0.00964693259447813, -0.021577931940555573, 0.01388081256300211, -0.029377184808254242, -0.03156840428709984, -0.003340215655043721, -0.004795611836016178, 0.03457668796181679, -0.042673055082559586, 0.08133506774902344, -0.0009603990474715829, -0.01164317037910223, 0.029228627681732178, -0.048689622431993484, 0.0439729318022728, 0.03284971043467522, -0.05013805255293846, -0.0238434299826622, -0.040333278477191925, 0.04490141198039055, -0.016239158809185028, 0.016109170392155647, -0.04891245812177658, 0.006661861669272184, -0.038550592958927155, -0.009804775007069111, 0.03140127658843994, 0.03125271946191788, -0.022896377369761467, 0.00891807395964861, -0.003607154358178377, 0.0299157053232193, 0.0036141180898994207, 0.05102939531207085, 0.04928385093808174, -0.024957608431577682, -0.06432526558637619, 0.012970900163054466, 0.010807535611093044, 0.00477704219520092, -0.011689594015479088, -0.06075989454984665, -0.04716691002249718, 0.004015686921775341, 0.019498132169246674, 0.04902387410402298, -0.014846434816718102, 0.01830967515707016, 0.03933051601052284, 0.014298629947006702, -0.009860483929514885, -0.03539375215768814, -0.03899626433849335, 0.007010042667388916, 0.06499377638101578, 0.007302514743059874, -0.019999513402581215, 0.029711438342928886, 0.025644686073064804, 0.013732255436480045, 0.04129889979958534, 0.012859482318162918, -0.033815331757068634, 0.03556087985634804, -0.016777677461504936, 0.009349818341434002, 0.00817064568400383, -0.02248784527182579, -0.05128937214612961, -0.031419847160577774, 0.06488235294818878, 0.020779438316822052, -0.006062990520149469, 0.07227307558059692, -0.001960258698090911, -0.03015711158514023, 0.01299875508993864, 0.004452073480933905, 0.05158648639917374, -0.007093606051057577, 0.00485596340149641, -0.017223350703716278, -0.0013904025545343757, -0.020779438316822052, -0.0009679429931566119, 0.0028156230691820383, -0.01905246078968048, 0.0654023066163063, 0.003384318668395281, 0.01607203111052513, 0.020927995443344116, -0.018811054527759552, 0.021540792658925056, -0.006852200720459223, -0.006898624822497368, -0.06432526558637619, -0.0084213363006711, -0.03702788054943085, -0.10198451578617096, 0.0011635045520961285, 0.005965500138700008, -0.019368143752217293, -0.012924476526677608, 0.012023848481476307, -0.0017374228918924928, 0.030695630237460136, 0.031197011470794678, 0.02451193705201149, -0.008815941400825977, -0.05277494341135025, 0.0010474442970007658, 0.007348938845098019, -0.04946954548358917, -0.05738021805882454, 0.04412148892879486, 0.0025208299048244953, 0.05180932208895683, -0.018374668434262276, 0.06347106397151947, 0.0457184761762619, 0.01318445149809122, 0.04705549031496048, -0.02770591713488102, -0.016759108752012253, -0.0015517263673245907, -0.0028179443906992674, -0.010417573153972626, 0.0004137550131417811, 0.017548318952322006, 0.0535920076072216, -0.0026415325701236725, 0.03023139014840126, -0.03071420080959797, -0.016081316396594048, -0.04504996910691261, -0.08237496763467789, 0.026944560930132866, -0.013555844314396381, -0.004096928983926773, -0.03219977393746376, 0.008839152753353119, -0.05203215777873993, -0.01702836900949478, 0.003827668959274888, -0.12716495990753174, 0.03754783049225807, 0.059311460703611374, -0.02826300635933876, -0.07086177915334702, -0.03754783049225807, -0.005213429220020771, -0.02365773357450962, -0.006949691567569971, 0.0024558361619710922, 0.05154934525489807, 0.0013254086952656507, 0.04482713341712952, -0.04538422450423241, 0.022822098806500435, -0.032775431871414185, 0.04854106530547142, -0.03496665135025978, -0.0775468572974205, -0.012255968526005745, -0.031939797103405, -0.01615559495985508, 0.0635453388094902, 0.02211645245552063, -0.0013439783360809088, -0.03208835422992706, 0.012710925191640854, -0.014428617432713509, 0.00689398217946291, 0.01256236806511879, -0.028244437649846077, -0.012274538166821003, -0.02402912639081478, 0.04835536703467369, -0.0317726694047451, -0.0060304938815534115, 0.0005170486983843148, 0.011466758325695992, 0.008709165267646313, 0.07461284846067429, -0.0061744083650410175, 0.025106165558099747, 0.023936279118061066, 0.09552227705717087, 0.016118455678224564, -0.06224546581506729, 0.07138173282146454, -0.0031405920162796974, 0.05485474318265915, 0.06919051706790924, 0.0042872680351138115, 0.025570407509803772, -0.013435141183435917, -0.04326728358864784, 0.0012058665743097663, 0.04111320525407791, -0.0024790482129901648, -0.04820680990815163, -0.03739927336573601, -0.005338774062693119, -0.041001785546541214, -0.012515943497419357, -0.05634031817317009, -0.05504044145345688, -0.0032729008235037327, 0.013342292979359627, -0.0015830625779926777, -0.0019590980373322964, 0.026814574375748634, 0.028950084000825882, -0.01388081256300211, 0.025756103917956352, 0.00485596340149641, -0.005844797007739544, 0.03500378876924515, 0.02906150184571743, 0.014948568306863308, -0.0034516334999352694, 0.018105408176779747, 0.07037897408008575, -0.00009161510388366878, 0.01695409044623375, 0.07851247489452362, -0.067816361784935, -0.021169399842619896, 0.0249947477132082, -0.026591738685965538, 0.017316197976469994, 0.04679551720619202, 0.009159479290246964, -0.005041659809648991, 0.035115208476781845, -0.013583698309957981, 0.002056588651612401, 0.042970169335603714, -0.054891884326934814, 0.0067918491549789906, -0.04523566737771034, 0.04293302819132805, -0.039961885660886765, -0.02746451087296009, 0.026925992220640182, -0.041076064109802246, -0.010213307105004787, 0.002310760784894228, -0.007864246144890785, 0.05099225789308548, 0.03925623744726181, 0.033518217504024506, 0.025106165558099747, -0.0017211743397638202, -0.007641410920768976, 0.057900168001651764, -0.020110931247472763, -0.012367386370897293, -0.08074083924293518, 0.026925992220640182, -0.007576417177915573, 0.0007480087224394083, 0.008295990526676178, 0.02285923808813095, 0.004291910212486982, -0.05923718214035034, -0.04081609100103378, -0.034855231642723083, 0.004008722957223654, -0.03260830417275429, -0.03180981054902077, -0.03611796721816063, -0.04133604094386101, 0.062394022941589355, 0.024121975526213646, -0.05199502035975456, 0.02298922650516033, -0.0030732769519090652, -0.018031129613518715, 0.011048941873013973, -0.04738974571228027, -0.013472280465066433 ]
20,408
cron_descriptor.ExpressionDescriptor
ExpressionDescriptor
Converts a Cron Expression into a human readable string
class ExpressionDescriptor: """ Converts a Cron Expression into a human readable string """ _special_characters = ['/', '-', ',', '*'] _expression = '' _options = None _expression_parts = [] def __init__(self, expression, options=None, **kwargs): """Initializes a new instance of the ExpressionDescriptor Args: expression: The cron expression string options: Options to control the output description Raises: WrongArgumentException: if kwarg is unknown """ if options is None: options = Options() self._expression = expression self._options = options self._expression_parts = [] # if kwargs in _options, overwrite it, if not raise exception for kwarg in kwargs: if hasattr(self._options, kwarg): setattr(self._options, kwarg, kwargs[kwarg]) else: raise WrongArgumentException("Unknown {} configuration argument".format(kwarg)) # Initializes localization self.get_text = GetText(options.locale_code, options.locale_location) # Parse expression parser = ExpressionParser(self._expression, self._options) self._expression_parts = parser.parse() def _(self, message): return self.get_text.trans.gettext(message) def get_description(self, description_type=DescriptionTypeEnum.FULL): """Generates a humanreadable string for the Cron Expression Args: description_type: Which part(s) of the expression to describe Returns: The cron expression description Raises: Exception: """ choices = { DescriptionTypeEnum.FULL: self.get_full_description, DescriptionTypeEnum.TIMEOFDAY: self.get_time_of_day_description, DescriptionTypeEnum.HOURS: self.get_hours_description, DescriptionTypeEnum.MINUTES: self.get_minutes_description, DescriptionTypeEnum.SECONDS: self.get_seconds_description, DescriptionTypeEnum.DAYOFMONTH: self.get_day_of_month_description, DescriptionTypeEnum.MONTH: self.get_month_description, DescriptionTypeEnum.DAYOFWEEK: self.get_day_of_week_description, DescriptionTypeEnum.YEAR: self.get_year_description, } return choices.get(description_type, self.get_seconds_description)() def get_full_description(self): """Generates the FULL description Returns: The FULL description Raises: FormatException: if formatting fails """ try: time_segment = self.get_time_of_day_description() day_of_month_desc = self.get_day_of_month_description() month_desc = self.get_month_description() day_of_week_desc = self.get_day_of_week_description() year_desc = self.get_year_description() description = "{0}{1}{2}{3}{4}".format( time_segment, day_of_month_desc, day_of_week_desc, month_desc, year_desc) description = self.transform_verbosity(description, self._options.verbose) description = ExpressionDescriptor.transform_case(description, self._options.casing_type) except Exception: description = self._( "An error occurred when generating the expression description. Check the cron expression syntax." ) raise FormatException(description) return description def get_time_of_day_description(self): """Generates a description for only the TIMEOFDAY portion of the expression Returns: The TIMEOFDAY description """ seconds_expression = self._expression_parts[0] minute_expression = self._expression_parts[1] hour_expression = self._expression_parts[2] description = StringBuilder() # handle special cases first if any(exp in minute_expression for exp in self._special_characters) is False and \ any(exp in hour_expression for exp in self._special_characters) is False and \ any(exp in seconds_expression for exp in self._special_characters) is False: # specific time of day (i.e. 10 14) description.append(self._("At ")) description.append( self.format_time( hour_expression, minute_expression, seconds_expression)) elif seconds_expression == "" and "-" in minute_expression and \ "," not in minute_expression and \ any(exp in hour_expression for exp in self._special_characters) is False: # minute range in single hour (i.e. 0-10 11) minute_parts = minute_expression.split('-') description.append(self._("Every minute between {0} and {1}").format( self.format_time(hour_expression, minute_parts[0]), self.format_time(hour_expression, minute_parts[1]))) elif seconds_expression == "" and "," in hour_expression and "-" not in hour_expression and \ any(exp in minute_expression for exp in self._special_characters) is False: # hours list with single minute (o.e. 30 6,14,16) hour_parts = hour_expression.split(',') description.append(self._("At")) for i, hour_part in enumerate(hour_parts): description.append(" ") description.append(self.format_time(hour_part, minute_expression)) if i < (len(hour_parts) - 2): description.append(",") if i == len(hour_parts) - 2: description.append(self._(" and")) else: # default time description seconds_description = self.get_seconds_description() minutes_description = self.get_minutes_description() hours_description = self.get_hours_description() description.append(seconds_description) if description and minutes_description: description.append(", ") description.append(minutes_description) if description and hours_description: description.append(", ") description.append(hours_description) return str(description) def get_seconds_description(self): """Generates a description for only the SECONDS portion of the expression Returns: The SECONDS description """ def get_description_format(s): if s == "0": return "" try: if int(s) < 20: return self._("at {0} seconds past the minute") else: return self._("at {0} seconds past the minute [grThen20]") or self._("at {0} seconds past the minute") except ValueError: return self._("at {0} seconds past the minute") return self.get_segment_description( self._expression_parts[0], self._("every second"), lambda s: s, lambda s: self._("every {0} seconds").format(s), lambda s: self._("seconds {0} through {1} past the minute"), get_description_format, lambda s: self._(", second {0} through second {1}") or self._(", {0} through {1}") ) def get_minutes_description(self): """Generates a description for only the MINUTE portion of the expression Returns: The MINUTE description """ seconds_expression = self._expression_parts[0] def get_description_format(s): if s == "0" and seconds_expression == "": return "" try: if int(s) < 20: return self._("at {0} minutes past the hour") else: return self._("at {0} minutes past the hour [grThen20]") or self._("at {0} minutes past the h
(expression, options=None, **kwargs)
[ 0.08302769064903259, -0.022150004282593727, 0.02282664366066456, -0.024378934875130653, 0.02362269163131714, -0.0804007351398468, 0.021831585094332695, 0.01300541590899229, -0.013025317341089249, -0.03916550800204277, 0.011393421329557896, 0.062091656029224396, 0.043464161455631256, 0.006562411319464445, -0.02406051754951477, 0.06658931821584702, 0.03385189175605774, -0.04903648793697357, -0.022030597552657127, -0.033414069563150406, 0.016776688396930695, -0.07805239409208298, -0.028418874368071556, 0.016090096905827522, 0.011075002141296864, 0.05214107036590576, 0.005786265712231398, -0.020000677555799484, -0.039802342653274536, -0.04477763548493385, 0.0015162205090746284, 0.010766534134745598, -0.06181304156780243, -0.01699560135602951, -0.02406051754951477, -0.02571231499314308, -0.030886618420481682, -0.01141332183033228, -0.03964313492178917, 0.06627090275287628, 0.02642875723540783, 0.015174644067883492, 0.02873729169368744, -0.014468152076005936, -0.055683478713035583, -0.03653855249285698, 0.011333717033267021, 0.04629012569785118, 0.0003725250717252493, -0.0606587715446949, 0.05870845913887024, -0.023523185402154922, -0.025990931317210197, -0.0009359769755974412, -0.06519623845815659, 0.038648076355457306, 0.04183226451277733, 0.11256103217601776, 0.06810180842876434, -0.046369731426239014, -0.004771306179463863, 0.04907628893852234, -0.03132444620132446, 0.06097719073295593, -0.027563123032450676, -0.013254180550575256, 0.01911507546901703, -0.03311555087566376, 0.032976243644952774, 0.010468016378581524, 0.01138347014784813, -0.009477932937443256, 0.003641914576292038, -0.014995533041656017, 0.01543335895985365, -0.05679794400930405, -0.0695744976401329, -0.016109999269247055, 0.04037947952747345, -0.019164828583598137, -0.03202098608016968, 0.036140527576208115, 0.04410099610686302, -0.027543222531676292, 0.06451959908008575, -0.03966303542256355, 0.0726790800690651, 0.003082194132730365, -0.019572801887989044, 0.051066406071186066, -0.03703607991337776, -0.03942422196269035, 0.003564797341823578, 0.0356828011572361, -0.03552359342575073, -0.02356298826634884, -0.05998213216662407, -0.03301604464650154, -0.016040343791246414, -0.024776959791779518, 0.028060652315616608, -0.013692006468772888, -0.03610072657465935, -0.03277723118662834, 0.012080010958015919, -0.005383267067372799, -0.05373316630721092, 0.02240872010588646, 0.04286712408065796, -0.03411060944199562, -0.07681852579116821, -0.01547316089272499, -0.0509071983397007, -0.0722014531493187, -0.0009409522754140198, 0.004731503780931234, -0.030647804960608482, 0.0009310016757808626, -0.008313714526593685, -0.04609111323952675, 0.01364225335419178, -0.01815981976687908, -0.04863846302032471, 0.033394165337085724, 0.004778768867254257, 0.03423001617193222, -0.043702974915504456, -0.02125445194542408, 0.053016722202301025, -0.04999174550175667, -0.018189670518040657, 0.03612062707543373, 0.05158383771777153, 0.02666757069528103, 0.0038608273025602102, -0.03235930576920509, 0.013662154786288738, 0.02169227786362171, -0.04191186651587486, 0.06571366637945175, 0.011801394633948803, -0.0014813934685662389, -0.041076019406318665, -0.0010783947072923183, -0.028239762410521507, -0.05747458338737488, 0.021950991824269295, 0.028398972004652023, -0.03357327729463577, 0.03259811922907829, 0.0014988069888204336, -0.0124282818287611, -0.034986261278390884, -0.03825005143880844, 0.09664008766412735, -0.014965681359171867, 0.0011070027248933911, 0.027801936492323875, -0.01796080730855465, -0.00673157162964344, 0.044180601835250854, -0.03727489337325096, -0.010089893825352192, 0.015114939771592617, 0.031165234744548798, 0.05492723360657692, 0.018806608393788338, -0.027304407209157944, -0.00016713874356355518, 0.014597509987652302, -0.01291586086153984, 0.006771373562514782, -0.03393149748444557, 0.05309632793068886, -0.003042391734197736, 0.044300008565187454, 0.019473297521471977, 0.03904610127210617, -0.01547316089272499, -0.011980505660176277, 0.006622115150094032, -0.0007842305349186063, -0.0926598533987999, 0.02252812683582306, -0.029254723340272903, -0.018667299300432205, 0.019134975969791412, -0.018358830362558365, -0.014876126311719418, 0.007418161723762751, -0.04073769971728325, -0.026647670194506645, 0.008811243809759617, 0.04099641367793083, -0.01572192646563053, -0.02149326540529728, -0.02101563848555088, -0.01735382154583931, 0.023543085902929306, 0.010885940864682198, -0.06742516905069351, 0.05827063322067261, 0.034986261278390884, -0.039503827691078186, 0.047643404453992844, -0.011254113167524338, -0.0021580334287136793, 0.027423815801739693, -0.10022230446338654, 0.011741691268980503, -0.031145334243774414, -0.009527686052024364, -0.002701584016904235, 0.04696676507592201, -0.005836018826812506, -0.014209437184035778, 0.03588181361556053, 0.02302565611898899, -0.08653029799461365, 0.00039740154170431197, 0.021891288459300995, -0.014080079272389412, 0.00039553578244522214, -0.03210059180855751, 0.0507877916097641, 0.00015299026563297957, 0.04939470812678337, 0.015393556095659733, 0.0038309756200760603, -0.022667434066534042, -0.0007425624644383788, -0.03771271929144859, -0.009910783730447292, 0.009060008451342583, 0.017582684755325317, -0.0023035607300698757, -0.007015163078904152, 0.01967230811715126, 0.016697082668542862, -0.0040772524662315845, -0.051185812801122665, 0.01845833659172058, -0.019622555002570152, 0.02282664366066456, 0.007895790040493011, -0.05333514139056206, -0.009144588373601437, 0.02228931337594986, -0.058429840952157974, -0.04219048470258713, 0.019453395158052444, 0.01698565110564232, -0.0035523592960089445, -0.017493130639195442, -0.05452921241521835, -0.024458540603518486, 0.013244230300188065, 0.017134908586740494, 0.039921749383211136, -0.04843945428729057, 0.035842012614011765, -0.02557300589978695, -0.026150140911340714, -0.0045648314990103245, 0.04350396245718002, 0.012000407092273235, -0.008323664776980877, -0.011741691268980503, -0.020179787650704384, -0.018906112760305405, 0.04903648793697357, 0.03713558614253998, -0.06073837727308273, 0.010706830769777298, -0.044857241213321686, 0.055444665253162384, 0.014388547278940678, -0.04545427858829498, -0.01111480500549078, -0.0099605368450284, 0.000712710723746568, 0.03612062707543373, 0.01190090086311102, -0.001628164667636156, 0.04410099610686302, 0.0077714077197015285, -0.022030597552657127, 0.015134841203689575, -0.009582414291799068, 0.060260750353336334, -0.033712584525346756, -0.01343329157680273, 0.055763084441423416, -0.02770243212580681, 0.06316632032394409, 0.06543505191802979, 0.0124282818287611, -0.024617750197649002, -0.02302565611898899, -0.026886483654379845, -0.014776620082557201, 0.037613216787576675, 0.06344493478536606, -0.007333581801503897, -0.10770514607429504, 0.005880796350538731, 0.032001085579395294, -0.008751540444791317, 0.08653029799461365, -0.04648913815617561, 0.03355337679386139, -0.014637311920523643, 0.039384420961141586, 0.010209301486611366, 0.02740391343832016, 0.038269951939582825, 0.007164421956986189, 0.02607053518295288, 0.038269951939582825, 0.013473093509674072, -0.0058857714757323265, -0.00040579732740297914, 0.0719626396894455, -0.023702295497059822, 0.07407215982675552, -0.04545427858829498, -0.04338455572724342, -0.0009838641854003072, -0.00715447124093771, -0.04505625367164612, -0.01967230811715126, -0.020876329392194748, 0.003082194132730365, 0.01251783687621355, 0.009433155879378319, -0.05655913054943085, -0.014478102326393127, -0.043265148997306824, -0.006472856272011995, -0.026627767831087112, 0.09528680890798569, 0.012746701017022133, -0.0605393648147583, 0.015124890953302383, 0.06694754213094711, -0.04258850961923599, 0.06010153889656067, -0.007781358435750008, 0.03787193074822426, -0.01059737429022789, 0.012736749835312366, -0.042787518352270126, -0.007726630195975304, 0.0037240067031234503, 0.007970419712364674, -0.0032637922558933496, 0.007985345087945461, -0.09090855717658997, -0.010985447093844414, -0.014866175130009651, 0.01485622487962246, 0.05218087136745453, -0.014786571264266968, 0.0040648141875863075, -0.03192147985100746, -0.04720557853579521, 0.012696947902441025, 0.0509071983397007, 0.055444665253162384, -0.03343397006392479, -0.017871253192424774, 0.05707656219601631, 0.08079876005649567, -0.03174236789345741, -0.004141931422054768, -0.040916807949543, 0.04366317018866539, 0.043145742267370224, -0.09472957998514175, -0.018378732725977898, 0.05962391197681427, 0.03325485810637474, -0.05480782687664032, 0.03956352919340134, -0.023901307955384254, -0.015453260391950607, 0.039125703275203705, 0.018906112760305405, -0.015463210642337799, -0.008079876191914082, -0.0014851249288767576, -0.031264740973711014, 0.014587558805942535, 0.0031792123336344957, 0.004691701382398605, 0.0014341282658278942, 0.00322896521538496, 0.024995872750878334, -0.056121304631233215, 0.0009851079666987062, 0.009278921410441399, -0.036259934306144714, 0.0027189976535737514, 0.010318757966160774, -0.0003541786572895944, -0.027801936492323875, 0.07880864292383194, 0.06901726126670837, -0.04183226451277733, 0.06730576604604721, -0.0061295609921216965, -0.08438096940517426, -0.02881689742207527, -0.030369188636541367, -0.0690968707203865, -0.06181304156780243, -0.02412022091448307, 0.014726866967976093, 0.0012500423472374678, 0.04780261591076851, -0.034130509942770004, -0.04513585940003395, 0.03926501423120499, 0.044300008565187454, 0.012249171733856201, 0.017940906807780266, -0.023164963349699974, -0.0037613215390592813, -0.03156325966119766, -0.005015095230191946, -0.020557910203933716, 0.01074663270264864, -0.08382373303174973, -0.018060313537716866, 0.01303526759147644, -0.05309632793068886, -0.000993192894384265, -0.009467982687056065, 0.010577472858130932, 0.001850808970630169, 0.022508226335048676, 0.03558329492807388, 0.09369471669197083, 0.007234076038002968, -0.003977746702730656, -0.01285615749657154, -0.014667163603007793, -0.005562377627938986, -0.027801936492323875, 0.003423001617193222, -0.04390198364853859, 0.07546524703502655, 0.03721519187092781, -0.00788086373358965, -0.0031244840938597918, -0.04227009043097496, 0.06451959908008575, 0.03880728408694267, 0.003480217419564724, 0.005393217783421278, 0.027304407209157944, 0.06205185502767563, 0.0015311464667320251, 0.015582617372274399, -0.029792053624987602, 0.02441873773932457, 0.008661985397338867, -0.019333988428115845, -0.055086445063352585, 0.027304407209157944, -0.014010424725711346, 0.02716509997844696, 0.0020746972877532244, 0.01759263686835766, -0.009965511970221996, -0.02175198122859001, 0.0356828011572361, 0.03862817585468292, -0.00944310612976551, -0.027423815801739693, 0.05293711647391319, -0.031702566891908646, 0.01181134581565857, -0.01485622487962246, 0.001823444850742817, 0.022488323971629143, 0.03836945816874504, -0.07733595371246338, -0.015811480581760406, -0.044300008565187454, -0.07120639085769653, -0.005303662270307541, 0.04449902102351189, -0.03259811922907829, -0.029214920476078987, -0.01868719980120659, -0.013771611265838146, 0.006930583156645298, 0.0015224396483972669, -0.007049990352243185, -0.020737022161483765, 0.008348541334271431, 0.008567454293370247, 0.0007717923144809902, 0.0515042319893837, 0.009050058200955391, 0.03357327729463577, 0.044737834483385086, -0.007562445476651192, -0.060937389731407166, -0.04171285778284073, -0.04867826774716377, 0.019652407616376877, -0.020020579919219017, -0.05643972381949425, -0.018129967153072357, 0.028777094557881355, 0.018597645685076714, 0.005388242192566395, 0.014388547278940678, -0.0028881574980914593, 0.0016406028298661113, -0.010318757966160774, -0.022428620606660843, -0.007826135493814945, -0.004074764903634787, -0.02423962764441967, -0.03594151511788368, -0.001904293429106474, -0.02935422956943512, 0.06559426337480545, -0.015045286156237125, 0.05835023522377014, 0.01111480500549078, 0.026627767831087112, 0.05476802587509155, -0.04258850961923599, -0.0605393648147583, -0.031165234744548798, 0.06336533278226852, -0.0076121981255710125, 0.00788086373358965, -0.003781222738325596, -0.018378732725977898, -0.026946187019348145, 0.0025946153327822685, 0.05504664033651352, 0.010408313013613224, 0.0018532966496422887, -0.034628041088581085, 0.04708617180585861, 0.04390198364853859, 0.02989155985414982, -0.0008545065647922456, 0.0037339574191719294, 0.04362336918711662, 0.027563123032450676, 0.02089622989296913, 0.03253841772675514, 0.00748781580477953, 0.0015958251897245646, 0.007015163078904152, 0.0035249951761215925, -0.006701719481498003, 0.005067335907369852, 0.007069891318678856, -0.017771746963262558, 0.0513848252594471, -0.05492723360657692, 0.01312482263892889, -0.03432952240109444, -0.009935660287737846, 0.05178285017609596, -0.015910986810922623, -0.0599423311650753, -0.03154335916042328, -0.024816760793328285, 0.013920869678258896, 0.009920733980834484, 0.03132444620132446, 0.006955459713935852, 0.017632437869906425, -0.017582684755325317, -0.06869884580373764, 0.017493130639195442, 0.046250324696302414, 0.04931510612368584, 0.050827592611312866, 0.010796385817229748, 0.002878207014873624, -0.003241403494030237, 0.030986124649643898, 0.022866446524858475, 0.0028135282918810844, 0.01929418556392193, 0.05230028182268143, 0.02356298826634884, -0.03241901099681854, -0.017622487619519234, 0.031463753432035446, -0.08485859632492065, 0.00484344782307744, 0.006333548109978437, 0.02571231499314308, 0.01931408792734146, -0.013244230300188065, 0.06495742499828339, -0.0407974012196064, -0.018975768238306046, -0.0019403642509132624, 0.025612808763980865, 0.010318757966160774, 0.024637650698423386, 0.04171285778284073, -0.007647025398910046, -0.02654816396534443, -0.016468219459056854, 0.026468558236956596, 0.03009057231247425, -0.06953469663858414, -0.043026335537433624, 0.08939606696367264, -0.06818141788244247, 0.022627633064985275, -0.058310434222221375, 0.02101563848555088, -0.01491592824459076, -0.06268869340419769, -0.04330494999885559, -0.07387314736843109, 0.030408991500735283, 0.02740391343832016, -0.04529506713151932, -0.01875685527920723, -0.05425059422850609, -0.0019814104307442904, 0.01779164746403694, -0.01367210503667593, -0.02654816396534443, 0.007796284276992083, 0.003435439895838499, -0.03739430382847786, -0.01991112343966961, -0.0009496590355411172, -0.04306613653898239, 0.06340513378381729, -0.044618427753448486, -0.09703811258077621, 0.021035538986325264, 0.033215057104825974, -0.005661883391439915, 0.055444665253162384, -0.016607528552412987, 0.02296595275402069, -0.04561348631978035, 0.032916538417339325, -0.04708617180585861, -0.04386218264698982, 0.001128769596107304, 0.023403778672218323, 0.03325485810637474, -0.02276694029569626, 0.023125162348151207, -0.023662492632865906, -0.007358458358794451, -0.020329046994447708, 0.037732623517513275, 0.05444960668683052, 0.03878738358616829, 0.03564300015568733, 0.033951397985219955, -0.07299749553203583, 0.1107301190495491, 0.02692628651857376, -0.0036095750983804464, 0.05476802587509155, 0.004868324380367994, 0.03432952240109444, 0.018120016902685165, -0.00001403188070980832, 0.053613755851984024, 0.0004365819622762501, 0.006433053873479366, -0.023483382537961006, -0.03094632178544998, 0.01687619462609291, -0.01172179076820612, -0.025254586711525917, -0.0011455612257122993, -0.08366452902555466, -0.018906112760305405, 0.003913067746907473, -0.0505489781498909, 0.018100116401910782, 0.03369268402457237, -0.008428146131336689, -0.07474879920482635, 0.00400262326002121, 0.02654816396534443, 0.0007655732333660126, 0.00168289290741086, -0.003000101773068309, 0.022806743159890175, 0.010866040363907814, 0.008995329961180687, -0.014229337684810162, -0.032239899039268494, -0.022150004282593727, 0.03659825399518013, -0.0029528364539146423, 0.049116093665361404, 0.09664008766412735, 0.025015773251652718, -0.05170324444770813, 0.008477899245917797, -0.09313748776912689, -0.009343599900603294, 0.027722332626581192, 0.018179720267653465, 0.020597713068127632, 0.03249861299991608, 0.0034180262591689825, 0.05098680406808853, -0.007467914838343859, -0.02344358153641224, 0.08509740978479385, -0.03329465910792351, -0.02947363629937172, 0.05190225690603256, -0.04414080083370209, -0.04672795161604881, 0.059464700520038605, 0.012468084692955017, 0.0025672512128949165, 0.03813064470887184, -0.008856021799147129, 0.0016804052283987403, -0.03415041044354439, 0.04294672980904579, -0.0005594094982370734, -0.012696947902441025, 0.01537365559488535, -0.01936384104192257, -0.0015622420469298959, -0.04605131223797798, 0.034727543592453, -0.023344075307250023, 0.024498343467712402, -0.007000237237662077, 0.014607460238039494, -0.000760597933549434, -0.06392256170511246, -0.052578896284103394, 0.019403642043471336, 0.009099811315536499, -0.044419415295124054, 0.0075027416460216045, 0.04871806874871254, -0.021791784092783928, 0.02965274639427662, 0.038329657167196274, -0.001850808970630169, 0.052658502012491226, 0.058429840952157974, 0.027662629261612892, 0.002711534732952714, -0.040658093988895416, 0.02686658315360546 ]
20,409
cron_descriptor.ExpressionDescriptor
_
null
def _(self, message): return self.get_text.trans.gettext(message)
(self, message)
[ -0.022945033386349678, -0.035125069320201874, 0.06523482501506805, 0.026187071576714516, 0.04245099797844887, -0.06215399503707886, 0.043525706976652145, 0.018252138048410416, 0.11721491068601608, -0.06050610914826393, -0.004894403275102377, -0.006833357270807028, -0.034319035708904266, -0.019577613100409508, -0.0495440773665905, 0.04417053237557411, -0.013236830942332745, 0.0012672608718276024, -0.03576989099383354, -0.00905890017747879, 0.009564909152686596, -0.0019691800698637962, 0.030396347865462303, -0.0642317682504654, 0.00259273499250412, 0.03700580820441246, 0.008736487478017807, -0.022192737087607384, 0.04044487699866295, -0.07093078643083572, -0.03460562601685524, -0.012269592843949795, -0.016944576054811478, 0.040731463581323624, -0.01730281300842762, 0.05058296397328377, -0.024915333837270737, -0.05011725425720215, 0.008727531880140305, -0.08096139878034592, 0.009014120325446129, 0.008055838756263256, 0.012771123088896275, -0.005145168397575617, 0.0245750080794096, 0.012448710389435291, -0.010281381197273731, 0.0708233118057251, -0.03997916728258133, 0.06498406082391739, 0.007670734543353319, 0.01773269660770893, -0.007711036130785942, -0.056493863463401794, -0.11993750929832458, 0.037184927612543106, 0.01275321189314127, -0.002888279967010021, -0.013756273314356804, 0.012063606642186642, 0.009023075923323631, -0.004872013349086046, -0.04266593977808952, 0.06430341303348541, -0.00985149759799242, 0.010066439397633076, 0.05878657475113869, -0.026581132784485817, 0.03480265662074089, -0.017365504056215286, 0.038653694093227386, -0.01811780035495758, -0.0731518492102623, 0.009072333574295044, 0.04381229728460312, -0.02910669706761837, -0.02004331909120083, 0.0020050036255270243, -0.004589902237057686, 0.01966717280447483, -0.006287046708166599, -0.07282943278551102, -0.0029576884116977453, -0.01466977596282959, 0.001455334946513176, -0.08970236778259277, 0.0032644281163811684, -0.036755044013261795, -0.012242725118994713, -0.005131734535098076, -0.029017139226198196, -0.05086955055594444, -0.02507654018700123, 0.06530647724866867, -0.05857163295149803, -0.02500489167869091, -0.003723418340086937, -0.02040155604481697, -0.011929268017411232, 0.024879509583115578, 0.06595130264759064, 0.060792695730924606, 0.03397871181368828, -0.06519900262355804, 0.048326075077056885, -0.07189802080392838, -0.027154309675097466, 0.0002371916052652523, 0.04485118389129639, 0.02473621442914009, -0.010335116647183895, -0.018395433202385902, -0.01753566600382328, 0.010997854173183441, -0.015959426760673523, -0.06652447581291199, -0.034050360321998596, 0.02237185649573803, 0.009296231903135777, 0.039692580699920654, -0.03107699751853943, -0.015475807711482048, -0.06158081814646721, -0.07673421502113342, -0.03433694690465927, 0.011150103993713856, -0.010182865895330906, -0.0572819821536541, 0.041125524789094925, -0.06444671005010605, -0.02407347783446312, -0.018314829096198082, 0.031130732968449593, -0.056959569454193115, 0.030145583674311638, -0.01725803315639496, 0.04284505918622017, 0.03954928740859032, 0.03886863589286804, 0.16263927519321442, 0.04384811967611313, 0.05352050065994263, -0.011490428820252419, 0.0024606355000287294, 0.018556639552116394, -0.06602294743061066, 0.0557415671646595, 0.027279693633317947, 0.03994334489107132, 0.005230249837040901, 0.011472516693174839, 0.01796554960310459, 0.041519585996866226, 0.03061128966510296, -0.004386155400425196, 0.006533334031701088, -0.03894028440117836, -0.008552891202270985, -0.010317204520106316, -0.005678045097738504, 0.06441088020801544, 0.0005723384092561901, -0.03976422920823097, 0.039656758308410645, 0.04438547417521477, 0.0313635878264904, 0.060792695730924606, -0.015816131606698036, -0.0015762395923957229, -0.005619831848889589, -0.041161347180604935, -0.035125069320201874, -0.051657672971487045, 0.017661048099398613, -0.00021983953774906695, 0.016711723059415817, -0.024180948734283447, 0.06587965041399002, 0.017741652205586433, 0.032026324421167374, -0.025022804737091064, 0.045925892889499664, -0.05144273117184639, 0.02941119857132435, 0.020419467240571976, 0.0218703243881464, 0.03693415969610214, 0.01757149025797844, -0.005422801710665226, -0.0418061725795269, -0.002915147691965103, -0.0008614463149569929, 0.008028971031308174, 0.039155226200819016, -0.07501468062400818, 0.01621914841234684, 0.004504821263253689, -0.0646616518497467, 0.019953761249780655, -0.0061795758083462715, -0.04098223149776459, 0.01153520867228508, 0.01808197610080242, 0.06856642663478851, 0.0271005742251873, -0.012708432041108608, 0.005454147234559059, 0.005270551424473524, -0.052159201353788376, -0.036289334297180176, -0.019183553755283356, 0.037758104503154755, 0.01401599496603012, 0.008212566375732422, 0.01242184266448021, -0.02543477527797222, -0.027799135074019432, -0.002253530081361532, -0.03347717970609665, 0.025184011086821556, 0.002789765130728483, -0.024145126342773438, 0.0109351621940732, -0.0321158841252327, 0.022085266187787056, -0.004025680013000965, 0.029052961617708206, 0.023177888244390488, -0.043060000985860825, -0.0006918438011780381, -0.0051093450747430325, -0.0013691342901438475, -0.0014172722585499287, 0.02973361127078533, -0.055025093257427216, -0.06261970102787018, -0.05871492624282837, 0.013048756867647171, 0.017061002552509308, 0.036629658192396164, -0.0016344530740752816, -0.011606855317950249, 0.008351383730769157, 0.07737904042005539, 0.05914480984210968, -0.025882571935653687, -0.047896191477775574, 0.029214167967438698, 0.026294542476534843, 0.06727677583694458, -0.01664903201162815, 0.019846290349960327, -0.048326075077056885, -0.0120994308963418, -0.0002472669875714928, -0.02964405156672001, 0.018664110451936722, -0.0039114924147725105, -0.017822254449129105, 0.014445877633988857, -0.05516838654875755, -0.006479598581790924, -0.06544976681470871, 0.0344444178044796, 0.005857163108885288, 0.009573864750564098, -0.0410180538892746, 0.025846747681498528, 0.01927311159670353, 0.019129818305373192, 0.15002936124801636, 0.014750379137694836, -0.027745399624109268, 0.030951615422964096, 0.02140461839735508, 0.03634307160973549, -0.01261887326836586, 0.013084580190479755, -0.027118487283587456, 0.027387164533138275, 0.020419467240571976, 0.0034010056406259537, -0.020580673590302467, 0.02133296988904476, 0.019022347405552864, -0.007196071092039347, 0.03739986941218376, -0.01383687648922205, -0.04664236307144165, 0.012386019341647625, 0.026097513735294342, 0.013765228912234306, 0.013299521990120411, 0.034086182713508606, -0.002765136305242777, -0.029464934021234512, -0.0344444178044796, 0.01768791675567627, 0.03397871181368828, -0.011033677496016026, -0.004607814364135265, 0.0313456729054451, 0.013523419387638569, -0.01675650291144848, -0.05638639256358147, 0.037793926894664764, -0.01920146495103836, 0.05778351053595543, 0.013192051090300083, -0.0016534843016415834, -0.04076728969812393, 0.018484992906451225, 0.020097054541110992, 0.03811633959412575, -0.025990042835474014, 0.08769623935222626, 0.023697329685091972, -0.013783141039311886, 0.025327304378151894, 0.008311081677675247, 0.011544164270162582, -0.03797304630279541, 0.002751702442765236, 0.019362671300768852, -0.01641617715358734, -0.022783827036619186, -0.06878136843442917, -0.022586798295378685, 0.04553183168172836, -0.022927122190594673, 0.011409825645387173, 0.011714326217770576, -0.04313164949417114, -0.08296751976013184, -0.06251223385334015, 0.04424218088388443, 0.04083893448114395, 0.024485450237989426, -0.0001284612953895703, 0.007137857843190432, -0.023446565493941307, 0.01578926481306553, -0.05201590806245804, 0.01730281300842762, -0.03768645599484444, 0.03238455951213837, -0.042558468878269196, 0.016111677512526512, 0.05721033364534378, -0.053663793951272964, -0.0045272111892700195, -0.047896191477775574, 0.05470268055796623, -0.021082205697894096, -0.022855475544929504, 0.0004852982237935066, -0.02577510103583336, -0.013174138963222504, 0.025022804737091064, 0.05344885215163231, 0.006372127681970596, -0.010379896499216557, -0.0011217274004593492, 0.01776851899921894, -0.05717451125383377, 0.01970299519598484, -0.015341469086706638, 0.04216441139578819, -0.0057496922090649605, -0.003544300328940153, 0.020544851198792458, -0.004746630787849426, 0.0023195799440145493, 0.031918853521347046, -0.04603336378931999, 0.010496322996914387, 0.0025904960930347443, 0.01338908076286316, -0.03236664831638336, -0.005888509098440409, 0.07143231481313705, -0.003011423861607909, -0.01733863539993763, 0.036558013409376144, 0.008306603878736496, 0.05298314616084099, 0.010012703947722912, 0.02357194758951664, 0.0040100072510540485, 0.009278319776058197, -0.0003691512974910438, -0.05950304493308067, 0.06362276524305344, -0.011705370619893074, -0.005024263635277748, -0.06097181513905525, -0.0034323513973504305, -0.032026324421167374, 0.038152165710926056, -0.03951346129179001, 0.029232081025838852, 0.023751065135002136, -0.06817236542701721, -0.018556639552116394, 0.0047242408618330956, 0.011983003467321396, -0.012556181289255619, 0.07745068520307541, -0.002281517256051302, 0.05061878636479378, -0.008955907076597214, -0.006058671046048403, -0.029966464266180992, -0.07017848640680313, -0.0060810609720647335, -0.018449168652296066, -0.045424360781908035, 0.031023262068629265, -0.055598270148038864, -0.02194197289645672, -0.03750734031200409, -0.029232081025838852, 0.03623560070991516, -0.046964775770902634, 0.02724386937916279, -0.012780079618096352, 0.002827827585861087, -0.039871696382761, 0.07444150000810623, -0.018825316801667213, -0.07075166702270508, -0.06283464282751083, 0.01656842790544033, -0.04273758828639984, 0.012117342092096806, -0.033351797610521317, -0.03238455951213837, -0.00021704081154894084, -0.0646258220076561, -0.004298835527151823, 0.008351383730769157, 0.005494448821991682, 0.03926269710063934, -0.01691770926117897, -0.0003683116810861975, -0.01877158135175705, -0.008078227750957012, -0.009708203375339508, 0.005928810685873032, -0.004177930764853954, 0.053663793951272964, 0.09622226655483246, 0.002076650969684124, -0.022748004645109177, 0.04313164949417114, -0.04094640538096428, -0.005413845647126436, -0.04370482638478279, -0.012206900864839554, 0.003190541872754693, -0.019559701904654503, 0.06358694285154343, -0.03100535087287426, 0.012959197163581848, 0.032259177416563034, -0.0030427693855017424, -0.024127213284373283, 0.03256367892026901, -0.02240767888724804, -0.03890446200966835, -0.01846707984805107, -0.000012043245988024864, -0.05964634194970131, 0.016201235353946686, -0.037722282111644745, -0.009976880624890327, -0.03293982520699501, 0.010594838298857212, -0.03399662300944328, 0.007540873717516661, 0.04173452779650688, -0.031059086322784424, -0.03517880290746689, -0.03267114982008934, -0.007984191179275513, 0.012905461713671684, 0.03650427609682083, 0.03374585881829262, 0.037793926894664764, -0.04603336378931999, 0.04768124967813492, 0.054989270865917206, 0.01447274535894394, 0.019792554900050163, -0.0049705286510288715, -0.0028099159244447947, -0.05180096626281738, -0.026831896975636482, -0.03159644082188606, -0.020992645993828773, -0.011991959996521473, -0.026455748826265335, 0.011284442618489265, -0.013299521990120411, 0.0006543409544974566, -0.02140461839735508, 0.03847457841038704, 0.04553183168172836, 0.11298772692680359, -0.06319288164377213, 0.005198903847485781, 0.02933955192565918, -0.0015549693489447236, -0.025828836485743523, 0.02253306284546852, -0.028085725381970406, -0.0542011484503746, 0.010872471146285534, 0.011732238344848156, 0.027852870523929596, 0.008543935604393482, -0.013308477587997913, -0.03197258710861206, -0.007563263643532991, 0.006528856232762337, 0.009958968497812748, -0.07232790440320969, 0.03387124091386795, 0.00865140650421381, 0.057353630661964417, -0.03181138262152672, -0.052123378962278366, 0.05477432906627655, 0.01298606488853693, -0.05441609025001526, 0.04571095108985901, -0.12409304827451706, -0.030879966914653778, -0.09808509051799774, 0.03387124091386795, -0.011311310343444347, -0.006587069481611252, -0.042056940495967865, -0.02566763013601303, 0.03929851949214935, 0.05445191636681557, -0.05137108266353607, -0.018484992906451225, -0.056959569454193115, 0.012959197163581848, -0.036755044013261795, -0.06720512360334396, -0.04370482638478279, -0.03944181650876999, 0.02350030094385147, 0.011857621371746063, -0.09557744115591049, 0.04044487699866295, 0.012162121944129467, 0.03693415969610214, -0.025685541331768036, 0.00424957787618041, 0.030826231464743614, 0.041662879288196564, -0.0021449397318065166, 0.026348277926445007, -0.031023262068629265, 0.02577510103583336, -0.0018225270323455334, 0.005812383722513914, 0.0476096011698246, -0.06251223385334015, 0.03904775530099869, 0.04990231245756149, -0.02240767888724804, 0.057461101561784744, 0.03901193290948868, -0.021458353847265244, 0.038725342601537704, 0.06122257933020592, -0.0071512917056679726, 0.02806781232357025, 0.05731780454516411, 0.03668339550495148, -0.027620017528533936, 0.009520129300653934, -0.008020014502108097, 0.012780079618096352, 0.03854622319340706, 0.0015583278145641088, -0.04051652178168297, -0.004836190026253462, 0.042558468878269196, 0.039191048592329025, 0.04460041597485542, -0.01338908076286316, 0.04284505918622017, 0.01318309549242258, 0.019810466095805168, -0.02307041734457016, -0.007321454118937254, 0.032886091619729996, -0.0030785929411649704, 0.05731780454516411, 0.048791781067848206, 0.031990498304367065, 0.0027964820619672537, -0.028426049277186394, -0.0245750080794096, 0.05663715675473213, -0.014875761233270168, -0.04331076517701149, -0.03603857010602951, -0.0241988617926836, 0.011472516693174839, -0.0023957050871104, 0.029697787016630173, -0.041125524789094925, 0.011553119868040085, 0.0030830709729343653, -0.044994477182626724, -0.012672608718276024, -0.05448773875832558, 0.018261093646287918, 0.023052504286170006, 0.02090308628976345, 0.02256888523697853, -0.055025093257427216, -0.037793926894664764, -0.007119946181774139, -0.03491012752056122, 0.01621914841234684, 0.01133817806839943, 0.00838272925466299, 0.004146584775298834, 0.028157372027635574, 0.014580216258764267, 0.03157852962613106, -0.010281381197273731, -0.003942837938666344, -0.02810363657772541, -0.02450336143374443, -0.05606397986412048, -0.04950825497508049, -0.05445191636681557, 0.124666228890419, -0.06476911902427673, -0.04284505918622017, 0.009663423523306847, -0.025255657732486725, 0.021225498989224434, 0.02477203868329525, -0.02504071593284607, 0.06054193153977394, 0.012108386494219303, 0.023518212139606476, -0.018055109307169914, 0.03150688111782074, 0.023357005789875984, -0.020849350839853287, 0.010039571672677994, -0.026455748826265335, -0.027351340278983116, -0.04947242885828018, 0.02323162369430065, -0.020222438499331474, 0.032026324421167374, -0.030020199716091156, 0.018046151846647263, -0.03007393516600132, 0.026061689481139183, 0.029590316116809845, -0.024019742384552956, -0.040158286690711975, 0.015251909382641315, 0.018879052251577377, 0.046857304871082306, -0.003931642975658178, 0.03575197979807854, 0.033262237906455994, 0.01530564483255148, 0.001863948185928166, -0.02020452544093132, 0.009591776877641678, 0.020992645993828773, 0.07823880761861801, -0.0028479783795773983, 0.05563409626483917, -0.012529313564300537, -0.051156140863895416, -0.01503696758300066, -0.030485907569527626, -0.09178013354539871, -0.020079143345355988, 0.0476096011698246, 0.025918394327163696, 0.00005985764437355101, -0.08662153035402298, -0.01338908076286316, -0.03293982520699501, 0.018046151846647263, 0.007661778479814529, 0.044457122683525085, -0.01884322799742222, -0.034157831221818924, -0.021386705338954926, 0.021619560196995735, -0.03426530212163925, -0.02373315393924713, 0.008414074778556824, 0.012000915594398975, -0.024879509583115578, 0.00878574512898922, -0.0026240807492285967, 0.017911814153194427, -0.05900151655077934, 0.011929268017411232, 0.05040384456515312, 0.003913731314241886, -0.005530272610485554, -0.002409138949587941, -0.027279693633317947, 0.01734759286046028, -0.028999226167798042, 0.04513777047395706, 0.036629658192396164, -0.010057483799755573, -0.04048069939017296, 0.04044487699866295, -0.026043778285384178, -0.03274279460310936, 0.01447274535894394, -0.05058296397328377, 0.014329451136291027, 0.06856642663478851, -0.027494635432958603, 0.02434215508401394, 0.02686772122979164, 0.025094451382756233, 0.026384102180600166, -0.023159975185990334, 0.020222438499331474, -0.0016523648519068956, -0.03861787170171738, -0.00973507110029459, 0.02640201337635517, -0.01453543733805418, -0.0029442545492202044, -0.006260178983211517, 0.030790409073233604, 0.0008116290555335581, 0.016192279756069183, -0.015592234209179878, -0.02957240492105484, 0.006479598581790924, -0.016657987609505653, 0.021691206842660904, -0.03854622319340706, -0.011015765368938446, 0.0576760396361351, -0.008078227750957012, -0.01106950081884861, 0.035357922315597534, 0.03901193290948868, 0.03666548430919647, 0.027691664174199104, 0.00015336991054937243, 0.03145314380526543 ]
20,410
cron_descriptor.ExpressionDescriptor
__init__
Initializes a new instance of the ExpressionDescriptor Args: expression: The cron expression string options: Options to control the output description Raises: WrongArgumentException: if kwarg is unknown
def __init__(self, expression, options=None, **kwargs): """Initializes a new instance of the ExpressionDescriptor Args: expression: The cron expression string options: Options to control the output description Raises: WrongArgumentException: if kwarg is unknown """ if options is None: options = Options() self._expression = expression self._options = options self._expression_parts = [] # if kwargs in _options, overwrite it, if not raise exception for kwarg in kwargs: if hasattr(self._options, kwarg): setattr(self._options, kwarg, kwargs[kwarg]) else: raise WrongArgumentException("Unknown {} configuration argument".format(kwarg)) # Initializes localization self.get_text = GetText(options.locale_code, options.locale_location) # Parse expression parser = ExpressionParser(self._expression, self._options) self._expression_parts = parser.parse()
(self, expression, options=None, **kwargs)
[ 0.05474470555782318, -0.019584625959396362, 0.07528727501630783, -0.05325457453727722, 0.02291969023644924, -0.04207856208086014, 0.013464430347084999, -0.010173716582357883, 0.009703614749014378, -0.02157147228717804, 0.05712182819843292, 0.04314294457435608, 0.012506486847996712, 0.004084565211087465, -0.0450233519077301, 0.024871056899428368, 0.006758824922144413, -0.00916255358606577, -0.03478754684329033, -0.03216207027435303, -0.010138236917555332, -0.05375128611922264, -0.026041876524686813, 0.020240996032953262, 0.034184396266937256, 0.0359051488339901, 0.012639534659683704, -0.01778404787182808, -0.010448682121932507, -0.019850721582770348, -0.01753569208085537, 0.009535087272524834, -0.07521631568670273, 0.02206818386912346, -0.05375128611922264, -0.03980788215994835, -0.0244453027844429, 0.012169432826340199, -0.038956377655267715, 0.03934665024280548, 0.03372316434979439, 0.0157262422144413, 0.030938033014535904, 0.0016342696035280824, -0.03592288866639137, -0.03778555616736412, -0.016560008749365807, 0.004102305043488741, -0.02662728726863861, -0.06854619085788727, 0.032907139509916306, 0.022529415786266327, 0.045342668890953064, -0.014147409237921238, -0.079828642308712, 0.06833331286907196, 0.07422289252281189, 0.11204393208026886, 0.03572775050997734, 0.011051831766963005, -0.03643734008073807, 0.0450233519077301, -0.02169565111398697, 0.015256140381097794, -0.024267906323075294, -0.008794454857707024, -0.02194400690495968, 0.00016741840227041394, 0.030689677223563194, 0.013659567572176456, 0.02300838753581047, -0.013792615383863449, -0.025012973695993423, -0.04420732706785202, 0.02609509602189064, -0.04583938047289848, -0.06929125636816025, 0.01683497242629528, 0.05300621688365936, 0.035993847995996475, -0.07628069818019867, 0.05055813863873482, -0.007996168918907642, -0.006368551403284073, 0.07663549482822418, -0.06918482482433319, 0.039985280483961105, -0.019229833036661148, 0.03294261917471886, 0.0680849626660347, -0.06400483101606369, -0.05939250811934471, -0.045378148555755615, -0.01725185662508011, -0.034273095428943634, -0.020808665081858635, 0.018121100962162018, 0.006377421319484711, 0.012045254930853844, 0.006794304121285677, 0.027230435982346535, -0.020028118044137955, 0.0072244917973876, -0.005259820260107517, -0.017349423840641975, -0.03107994981110096, -0.019903941079974174, -0.022281059995293617, 0.016781754791736603, -0.017092198133468628, -0.03450371325016022, 0.0666303038597107, -0.001963562797755003, -0.03556809574365616, 0.007118053734302521, 0.02160695195198059, -0.0667012631893158, -0.007268841378390789, 0.021465035155415535, -0.04183020815253258, 0.022564895451068878, 0.03155892342329025, -0.06563688069581985, 0.08131877332925797, -0.014413504861295223, 0.04754238948225975, -0.030015569180250168, -0.06322428584098816, 0.0695396140217781, -0.06169866770505905, 0.05978278070688248, -0.0014790473505854607, 0.02943015843629837, 0.00006818696419941261, 0.029323721304535866, -0.03425535559654236, 0.05697990953922272, -0.007588155567646027, -0.053077176213264465, 0.055134981870651245, 0.01195655670017004, 0.03258782625198364, -0.02300838753581047, -0.011078441515564919, -0.06404031068086624, -0.017837265506386757, -0.006293157581239939, 0.01364182773977518, -0.01954914629459381, 0.015220660716295242, 0.007157967891544104, -0.02008133754134178, -0.04083678498864174, -0.06215989962220192, 0.09196259081363678, 0.004674410447478294, 0.0066213421523571014, 0.009969710372388363, 0.012648404575884342, -0.005672268569469452, 0.02643214911222458, 0.035834189504384995, -0.047116637229919434, 0.0198862012475729, 0.015123092569410801, 0.03267652168869972, 0.027691667899489403, -0.09423327445983887, -0.022955168038606644, 0.03725336492061615, -0.01802353374660015, -0.034556932747364044, -0.03191371634602547, 0.061024561524391174, -0.01691480167210102, 0.051551561802625656, 0.04807458072900772, 0.08593109250068665, -0.013783745467662811, 0.025917697697877884, 0.010874434374272823, -0.006510469131171703, -0.05197731405496597, 0.017092198133468628, 0.01683497242629528, -0.015939118340611458, 0.008843239396810532, 0.03494720533490181, -0.021890787407755852, -0.0018460373394191265, -0.014706209301948547, -0.0526159442961216, 0.000374751107301563, 0.034095700830221176, -0.04466855898499489, -0.038920897990465164, -0.047116637229919434, -0.026857903227210045, -0.009419779293239117, 0.07060399651527405, -0.05428347364068031, 0.060031138360500336, 0.02066674828529358, -0.037146925926208496, -0.0011907771695405245, -0.001903691329061985, 0.016364870592951775, 0.01786387525498867, -0.06318880617618561, 0.006550383288413286, 0.0019114523893222213, 0.01167272124439478, -0.021837567910552025, 0.04307198524475098, -0.036366380751132965, 0.014040971174836159, 0.03963048383593559, 0.037430763244628906, -0.02927050180733204, 0.03054776042699814, 0.04906800389289856, 0.002499080030247569, 0.04686828330159187, -0.02284873090684414, 0.03675665333867073, -0.016267303377389908, 0.06851071119308472, 0.025580644607543945, -0.011309057474136353, -0.011779159307479858, -0.03631316125392914, 0.002070001093670726, 0.0077123334631323814, -0.012036385014653206, 0.0553123764693737, -0.03148796409368515, 0.000027198560928809457, 0.04782622680068016, -0.03888541832566261, 0.02535002864897251, -0.008275569416582584, 0.04857129231095314, -0.013925663195550442, 0.03123960830271244, 0.005960538517683744, -0.01589476875960827, 0.00034980467171408236, 0.032126594334840775, -0.043817054480314255, -0.05442539229989052, 0.01537144836038351, -0.015398058108985424, -0.0157262422144413, -0.008754541166126728, -0.06563688069581985, 0.018875038251280785, 0.046371571719646454, 0.012479877099394798, 0.06013757735490799, -0.034060221165418625, 0.04679732397198677, -0.03732432425022125, 0.020968323573470116, 0.00017795134044717997, 0.03810486942529678, -0.017996923997998238, -0.01737603358924389, -0.01811223104596138, 0.019460448995232582, 0.01647130958735943, -0.007463977672159672, 0.058470044285058975, 0.01917661353945732, 0.04034007340669632, -0.06666578352451324, 0.00807156227529049, -0.017429253086447716, -0.04885512590408325, -0.0024857751559466124, 0.005712182726711035, 0.04062390699982643, 0.004998160060495138, -0.005889579653739929, 0.019371749833226204, 0.04445568099617958, 0.004825197625905275, -0.026609547436237335, 0.0539996400475502, -0.013012068346142769, 0.02655632793903351, -0.024055030196905136, 0.06308236718177795, 0.03668569400906563, -0.016648706048727036, 0.07081687450408936, 0.032694261521101, 0.020365172997117043, -0.021926267072558403, 0.0024214687291532755, 0.029483377933502197, -0.0141385393217206, -0.0014856996713206172, 0.02194400690495968, -0.007463977672159672, -0.10941845923662186, 0.02687564305961132, 0.026237012818455696, 0.041723769158124924, 0.0797576829791069, -0.008958547376096249, 0.08167356997728348, 0.040233634412288666, -0.029997829347848892, 0.02547420561313629, 0.00989875104278326, 0.0617341473698616, 0.008226784877479076, -0.02272455208003521, 0.031683098524808884, -0.005650093778967857, -0.011060701683163643, -0.003751946147531271, 0.04197212681174278, -0.06063428521156311, 0.04917444288730621, 0.00613350048661232, -0.03696953132748604, -0.0044947960413992405, 0.019655585289001465, -0.025420986115932465, 0.015256140381097794, -0.008692451752722263, 0.013038678094744682, 0.003113317070528865, -0.0020711098331958055, -0.04913896322250366, 0.016356000676751137, -0.008621493354439735, -0.030122006312012672, -0.031683098524808884, 0.04009171575307846, 0.005898449569940567, -0.08628588914871216, 0.003785208100453019, -0.0007838729070499539, -0.056163884699344635, 0.03099125251173973, -0.05761853978037834, 0.051445122808218, -0.016932541504502296, -0.00010207256127614528, -0.04605225473642349, -0.007259971462190151, -0.017340553924441338, 0.029607554897665977, -0.014191757887601852, -0.033936042338609695, -0.08437000215053558, 0.0048651122488081455, -0.039204731583595276, 0.020063597708940506, 0.029820432886481285, -0.02412598952651024, -0.0018903865711763501, -0.05580908805131912, -0.07223604619503021, 0.02831255830824375, 0.05705086886882782, 0.05474470555782318, -0.02128763683140278, 0.012843540869653225, 0.019584625959396362, 0.04009171575307846, -0.005623484030365944, -0.008634798228740692, -0.0263079721480608, -0.007699029054492712, 0.012541966512799263, -0.06453701853752136, -0.04041103273630142, 0.0009019527351483703, 0.00012043591414112598, -0.05084197223186493, 0.02210366353392601, -0.050238825380802155, -0.008874284103512764, 0.01954914629459381, 0.04704567790031433, 0.07422289252281189, 0.01703898049890995, -0.002288420917466283, -0.03045906126499176, 0.036401860415935516, -0.013686176389455795, -0.00884767435491085, 0.0052952999249100685, 0.0023349877446889877, 0.026325711980462074, -0.05428347364068031, 0.006124630570411682, 0.003658812725916505, 0.006856393069028854, 0.006532643921673298, 0.014227237552404404, 0.01992168091237545, -0.0237534549087286, 0.04850033298134804, 0.05197731405496597, 0.0010122715029865503, 0.0566251166164875, 0.02749653160572052, -0.07557111233472824, -0.024480782449245453, -0.04335582256317139, -0.07145550101995468, -0.03831774741411209, 0.024995233863592148, -0.03888541832566261, -0.017917094752192497, -0.00205337000079453, -0.02927050180733204, -0.02712399885058403, -0.0012018645647913218, 0.0205780491232872, 0.04197212681174278, 0.037608157843351364, -0.0033971520606428385, -0.013526519760489464, 0.0003672671737149358, 0.009171423502266407, -0.09685874730348587, 0.021713390946388245, -0.07769987732172012, 0.010306764394044876, 0.028188379481434822, -0.05247402563691139, -0.009277861565351486, -0.014874736778438091, -0.009331081062555313, 0.026698244735598564, -0.018573462963104248, -0.010901044122874737, 0.11452748626470566, 0.011078441515564919, -0.07386810332536697, -0.029376938939094543, -0.006860828027129173, -0.023079346865415573, -0.0308670736849308, -0.015628673136234283, 0.015602064318954945, 0.09118204563856125, 0.06116647645831108, -0.015167441219091415, 0.0025966481771320105, -0.0628340095281601, 0.026804683730006218, 0.013561999425292015, 0.01836058683693409, 0.028720570728182793, -0.02687564305961132, 0.0125508364289999, 0.010661558248102665, -0.046655405312776566, -0.06829783320426941, 0.023026127368211746, 0.022014964371919632, 0.02556290477514267, -0.018342847004532814, -0.033403851091861725, -0.03384734317660332, 0.034432753920555115, -0.021589212119579315, 0.014209497720003128, -0.039914321154356, 0.026449888944625854, 0.017544561997056007, -0.0025833435356616974, -0.028454475104808807, -0.05311265587806702, 0.002363814739510417, -0.0011552978539839387, 0.02696434035897255, -0.003785208100453019, -0.030370362102985382, -0.014537682756781578, 0.04928088188171387, -0.060740724205970764, -0.016444699838757515, -0.008413051255047321, -0.05598648637533188, 0.0526159442961216, 0.03679213300347328, -0.01741151325404644, 0.038920897990465164, 0.010998612269759178, 0.006062541622668505, 0.04420732706785202, 0.002194178756326437, -0.0020201080478727818, -0.02013455703854561, 0.0011752549326047301, 0.050806496292352676, -0.019584625959396362, 0.038672540336847305, -0.008829934522509575, 0.008155826479196548, 0.025083933025598526, -0.02173112891614437, -0.04491691663861275, -0.03434405475854874, -0.05467374995350838, 0.005800880957394838, -0.009543957188725471, -0.016888191923499107, 0.002614388009533286, 0.0038827762473374605, 0.021376335993409157, -0.022174622863531113, 0.06329524517059326, -0.004536927677690983, 0.060740724205970764, -0.010280154645442963, -0.05499306321144104, 0.013677307404577732, -0.01795257441699505, -0.015265010297298431, -0.013162855990231037, 0.041723769158124924, 0.006652386859059334, 0.0772031620144844, -0.05886031687259674, 0.04236239939928055, 0.0065015992149710655, -0.008404182270169258, 0.06790756434202194, -0.05552525445818901, 0.02753201127052307, 0.004386140499264002, 0.04005623608827591, -0.0015566585352644324, 0.0397724024951458, -0.011965426616370678, -0.04732951521873474, -0.012142823077738285, -0.042291440069675446, 0.04605225473642349, 0.021589212119579315, 0.03931117057800293, -0.018094491213560104, 0.07010728865861893, 0.011832378804683685, -0.009144813753664494, 0.010448682121932507, -0.00781877152621746, 0.04672636464238167, 0.01647130958735943, 0.014723949134349823, 0.014874736778438091, -0.0026498674415051937, 0.0009058333234861493, -0.008621493354439735, -0.02119893953204155, 0.03322645276784897, 0.010058408603072166, 0.00613350048661232, 0.020879624411463737, 0.00870575662702322, -0.04236239939928055, 0.0009812270291149616, -0.015779461711645126, -0.021642431616783142, 0.045129790902137756, 0.03345707058906555, -0.03382960334420204, -0.01938948966562748, 0.0021664605010300875, -0.015566584654152393, 0.017198637127876282, 0.05009690672159195, 0.012932240031659603, -0.036029327660799026, -0.06797852367162704, -0.066843181848526, -0.02325674332678318, 0.04158185049891472, 0.05506402254104614, 0.06354359537363052, -0.007845381274819374, 0.004111174959689379, 0.0022795512340962887, 0.020347433164715767, 0.0061867195181548595, 0.027070779353380203, -0.007685724180191755, -0.02041839249432087, 0.0071668378077447414, -0.029323721304535866, -0.03331515192985535, -0.04012719541788101, -0.09423327445983887, 0.01789935491979122, -0.006168979685753584, 0.038672540336847305, 0.012213781476020813, -0.04218500107526779, 0.018875038251280785, -0.017961444333195686, -0.026662765070796013, 0.007038224954158068, 0.03931117057800293, -0.0218553077429533, 0.022777771577239037, 0.044562119990587234, 0.0024369910825043917, -0.03388282284140587, -0.0023571623023599386, 0.02020551636815071, -0.005521480925381184, -0.029660774394869804, -0.03696953132748604, 0.09664587676525116, -0.04601677507162094, 0.02930598147213459, -0.054318953305482864, 0.0020367391407489777, 0.02880926989018917, -0.054354432970285416, -0.03193145617842674, -0.01577059179544449, 0.024480782449245453, 0.040198154747486115, -0.06762372702360153, -0.0333506315946579, -0.03054776042699814, -0.009889881126582623, 0.033528029918670654, 0.032339468598365784, 0.014129669405519962, -0.025491945445537567, -0.0017052284674718976, -0.03775007650256157, -0.028135159984230995, -0.001541136298328638, -0.030263924971222878, 0.06914934515953064, -0.04477499797940254, -0.08515054732561111, 0.03198467567563057, 0.00938430055975914, 0.023611538112163544, 0.01901695691049099, -0.030973512679338455, 0.043320342898368835, -0.058470044285058975, 0.054638270288705826, -0.06134387478232384, -0.012364569120109081, 0.03955952450633049, -0.02210366353392601, -0.004337355960160494, 0.01142436545342207, -0.006634647026658058, -0.042539793998003006, -0.016364870592951775, -0.03209111467003822, 0.029412418603897095, 0.026609547436237335, -0.0028738309629261494, 0.053325530141592026, 0.016737405210733414, -0.03313775733113289, 0.047400470823049545, 0.034184396266937256, -0.011495323851704597, 0.0321088545024395, -0.01889277808368206, -0.009872142225503922, 0.0565541572868824, 0.03445049375295639, 0.006452815141528845, -0.014963435009121895, -0.0006014866521582007, -0.020932843908667564, -0.0629759281873703, -0.010209196247160435, 0.017668738961219788, 0.03631316125392914, 0.030405841767787933, -0.08181548863649368, -0.04591033607721329, 0.06237277761101723, -0.04062390699982643, -0.0192653127014637, 0.03782103583216667, -0.03500042483210564, -0.07358426600694656, -0.06340167671442032, 0.02144729532301426, 0.025491945445537567, 0.0007772205281071365, 0.016684185713529587, 0.002163134515285492, 0.005423912778496742, -0.0022862034384161234, -0.04516527056694031, -0.024764617905020714, 0.012364569120109081, 0.020719967782497406, -0.00994310062378645, 0.02971399389207363, 0.05981826037168503, 0.020099077373743057, -0.058966755867004395, 0.009402039460837841, 0.007840946316719055, -0.00445488141849637, 0.04857129231095314, -0.020613528788089752, 0.0023527273442596197, 0.07166837900876999, -0.03244590759277344, 0.04598129540681839, -0.01074138656258583, 0.021784348413348198, 0.038637060672044754, -0.07933192700147629, -0.007690159138292074, 0.019691064953804016, -0.08039630949497223, -0.021873047575354576, 0.042823631316423416, 0.03610028326511383, -0.00761476531624794, 0.014537682756781578, -0.05424799770116806, -0.02004585787653923, -0.06148579344153404, 0.03849514573812485, 0.03696953132748604, -0.006115760654211044, 0.01537144836038351, -0.01296771876513958, -0.0013548694550991058, 0.029696254059672356, 0.04438472539186478, -0.0397724024951458, 0.010510770604014397, 0.03267652168869972, -0.014954565092921257, -0.055667173117399216, -0.030033309012651443, 0.005933928769081831, 0.06194702535867691, -0.017358293756842613, -0.07471960783004761, 0.04204308241605759, 0.05389320105314255, -0.022298799827694893, 0.024267906323075294, -0.018254149705171585, -0.011282447725534439, -0.0010416528675705194, 0.028454475104808807, 0.010173716582357883, -0.0237534549087286, 0.019779762253165245, -0.0037940777838230133 ]
20,411
cron_descriptor.ExpressionDescriptor
__repr__
null
def __repr__(self): return self.get_description()
(self)
[ 0.034373339265584946, -0.058925725519657135, 0.059852879494428635, 0.000597176665905863, 0.0509934164583683, -0.06380186229944229, 0.027127811685204506, -0.014310779049992561, 0.07994119077920914, -0.0432671420276165, -0.04683839902281761, 0.021358858793973923, -0.011941387318074703, 0.03416730463504791, -0.028947778046131134, 0.04031398892402649, -0.005717443767935038, -0.08928140252828598, -0.019847942516207695, 0.01794212870299816, -0.0034017073921859264, 0.01288571022450924, 0.03059604950249195, -0.04361053183674812, -0.006550164427608252, 0.043164122849702835, -0.003989762626588345, -0.03387542441487312, -0.0013156129280105233, 0.0036957350093871355, -0.062016237527132034, -0.06060833856463432, -0.023985791951417923, 0.015177838504314423, -0.014465304091572762, 0.0497572124004364, -0.035231813788414, 0.016894789412617683, -0.027402522042393684, -0.00544273154810071, 0.0051808967255055904, 0.0029638849664479494, 0.0032986903097480536, -0.03454503417015076, -0.014224931597709656, -0.03241601586341858, 0.05250433087348938, -0.024140316992998123, -0.022904112935066223, -0.07348546385765076, 0.04106944426894188, 0.07025759667158127, -0.041790563613176346, 0.0004311154189053923, -0.06981118768453598, -0.0026999039109796286, 0.0482119582593441, 0.05621294304728508, 0.021702248603105545, 0.06610257923603058, -0.07121908664703369, 0.02300713025033474, 0.016062067821621895, -0.04367920756340027, -0.003311567474156618, -0.015443965792655945, -0.029102303087711334, 0.008477441035211086, 0.027093471959233284, 0.031008118763566017, 0.0310596264898777, -0.017452796921133995, -0.010396132245659828, 0.05356884002685547, 0.007593211717903614, -0.056315962225198746, -0.021564893424510956, -0.01979643478989601, 0.04855534806847572, -0.06843762844800949, -0.020775096490979195, 0.03217564523220062, 0.004131411202251911, -0.025050301104784012, 0.016465550288558006, -0.08186417818069458, 0.003285813145339489, -0.026200657710433006, -0.03087076172232628, 0.04031398892402649, -0.0185430608689785, 0.02317882515490055, -0.025393690913915634, 0.039146460592746735, -0.06112342327833176, -0.023367689922451973, -0.030338507145643234, -0.0562472827732563, 0.05301941931247711, -0.0038974767085164785, 0.013469473458826542, 0.04553351551294327, -0.02439785934984684, -0.004290229175239801, -0.03463088348507881, -0.0018972298130393028, -0.03241601586341858, 0.017221009358763695, -0.0002521770366001874, 0.010919801890850067, -0.013263438828289509, 0.04278639703989029, -0.0019272764911875129, -0.03397843986749649, 0.031437356024980545, -0.0364680178463459, -0.009683597832918167, -0.0017148038605228066, 0.02656121738255024, -0.032673560082912445, -0.02347070723772049, -0.007095295935869217, -0.040382664650678635, -0.03811629116535187, -0.02036302722990513, 0.05065002664923668, -0.04206527769565582, -0.007876507937908173, -0.006468609441071749, -0.08419922739267349, 0.042683377861976624, -0.020500384271144867, -0.030046625062823296, 0.0420309379696846, 0.05858233571052551, -0.006490071304142475, 0.06520976126194, -0.00966642890125513, 0.02159923128783703, 0.11084629595279694, 0.005811876151710749, -0.016963467001914978, 0.03578123822808266, 0.05590389296412468, -0.04034832492470741, -0.045327480882406235, 0.0009056911803781986, 0.04034832492470741, 0.004303106106817722, -0.032209981232881546, 0.03301694989204407, 0.0009346646838821471, 0.04755951464176178, -0.027883268892765045, 0.014885957352817059, 0.02286977507174015, -0.010499149560928345, -0.011829786002635956, 0.005262451712042093, -0.023762589320540428, -0.01928134821355343, -0.03897476568818092, 0.01960757002234459, -0.002446653787046671, -0.0010081715881824493, 0.040520019829273224, 0.032536204904317856, -0.05789555609226227, 0.008438809774816036, 0.011117251589894295, -0.03117981366813183, -0.08392451703548431, -0.0778808519244194, 0.036983102560043335, 0.003925377037376165, 0.08619089424610138, 0.016422627493739128, 0.1174393817782402, -0.011829786002635956, -0.016173670068383217, 0.017821941524744034, -0.030544541776180267, -0.10926669836044312, 0.028913438320159912, 0.05023795738816261, -0.043026767671108246, 0.05154284089803696, -0.014971804805099964, 0.03147169575095177, -0.00031280683469958603, 0.012971557676792145, 0.0015710092848166823, -0.025101810693740845, 0.030956609174609184, -0.0164569653570652, -0.059543829411268234, 0.009906801395118237, -0.021255841478705406, -0.010378963313996792, 0.04869270324707031, -0.009237191639840603, 0.04155019298195839, -0.010121420957148075, 0.02577142044901848, 0.03493993356823921, 0.028054963797330856, -0.011177345179021358, -0.01933285780251026, -0.010765276849269867, -0.04900175333023071, -0.00027551682433113456, 0.01267967652529478, 0.00582475308328867, -0.0021472605876624584, 0.05930345505475998, -0.045052770525217056, -0.06606823951005936, -0.01613074541091919, -0.0642826110124588, 0.031883761286735535, 0.025050301104784012, -0.05271036550402641, 0.008734983392059803, -0.03856269642710686, -0.03825364634394646, -0.009958310052752495, 0.04282073304057121, -0.021976960822939873, 0.001579594099894166, -0.014405210502445698, -0.009898217394948006, -0.05480504408478737, -0.013984558172523975, 0.02115282416343689, 0.0042730593122541904, 0.038837410509586334, -0.05188623070716858, 0.01794212870299816, -0.044091276824474335, -0.0036506650503724813, -0.03191810101270676, -0.0012072304962202907, 0.014722846448421478, 0.01620800793170929, -0.013769939541816711, -0.04340449720621109, 0.012241854332387447, 0.04361053183674812, -0.009383131749927998, -0.03332599997520447, 0.030699066817760468, -0.067064069211483, -0.01727251708507538, -0.014379456639289856, 0.03969588503241539, -0.08467997610569, -0.03363505005836487, -0.030819253996014595, 0.04676971957087517, 0.017512891441583633, -0.006623134948313236, -0.007906555198132992, -0.017109407112002373, 0.06967383623123169, 0.043782226741313934, 0.029840592294931412, -0.03348052501678467, 0.016311025246977806, -0.007043787743896246, -0.010310284793376923, 0.14518529176712036, 0.007288453169167042, -0.07451563328504562, 0.013314947485923767, -0.050134941935539246, -0.014688507653772831, -0.012714015319943428, -0.021221501752734184, -0.05126812681555748, -0.05350016430020332, 0.015538398176431656, -0.005889138672500849, -0.0005794706521555781, -0.0055843801237642765, 0.013272023759782314, -0.03009813465178013, 0.009142759256064892, 0.015598490834236145, -0.010241607204079628, 0.019264180213212967, 0.04955117776989937, 0.04436599090695381, -0.014559736475348473, 0.013100328855216503, 0.08461129665374756, 0.015100575983524323, 0.009099835529923439, 0.04151585325598717, -0.029703235253691673, 0.006631719414144754, -0.026956114917993546, -0.04244300350546837, 0.025565385818481445, 0.042683377861976624, -0.08536675572395325, 0.018577398732304573, 0.006571626290678978, 0.029720405116677284, 0.00466581154614687, 0.010275945998728275, 0.0022642279509454966, 0.03487125411629677, 0.04237432777881622, 0.11503565311431885, -0.016929127275943756, 0.02053472213447094, -0.0065115331672132015, 0.001461553736589849, 0.044262971729040146, 0.06225660815834999, -0.03866571560502052, 0.003865283913910389, 0.0024101685266941786, 0.02070641703903675, 0.05195491015911102, -0.0309051014482975, -0.05549182742834091, 0.026973284780979156, 0.04992890730500221, 0.016371117904782295, -0.02350504696369171, -0.05586955323815346, 0.03088793158531189, 0.01852589100599289, -0.02532501332461834, -0.000032746127544669434, 0.023865606635808945, -0.023092977702617645, -0.03725781664252281, -0.05350016430020332, 0.08104003965854645, 0.01790778897702694, -0.04491541162133217, -0.0022835435811430216, 0.0068377535790205, 0.032038286328315735, -0.006747613660991192, -0.0150662362575531, 0.047662533819675446, -0.02347070723772049, -0.03217564523220062, -0.03224432095885277, 0.01912682317197323, 0.02146187610924244, -0.03044152446091175, -0.003727927803993225, -0.0148344486951828, 0.04220263287425041, -0.033755239099264145, 0.01680894009768963, 0.03303411975502968, -0.022182995453476906, -0.010979895479977131, 0.025548215955495834, -0.05851365625858307, -0.010121420957148075, -0.007623258046805859, 0.03602161258459091, 0.05188623070716858, -0.01742704212665558, -0.04446900635957718, 0.004614303354173899, -0.03148886561393738, -0.04340449720621109, -0.020929621532559395, 0.0009362743003293872, 0.0012394232908263803, 0.009735106490552425, -0.04553351551294327, -0.014963219873607159, 0.03609028831124306, 0.02038019709289074, -0.020912451669573784, 0.021530553698539734, -0.008099711500108242, -0.0015313047915697098, -0.010748106986284256, 0.05082172155380249, -0.025891607627272606, -0.0033072750084102154, -0.0395585298538208, -0.01825117878615856, -0.05700274184346199, 0.006189604755491018, -0.040210969746112823, -0.06548447161912918, 0.03890608996152878, -0.01481727883219719, -0.06349281221628189, -0.004610010888427496, 0.030630389228463173, -0.022904112935066223, -0.005974986124783754, -0.009460395202040672, -0.005515702068805695, 0.008893800899386406, 0.02905079536139965, 0.0377042219042778, -0.010138589888811111, -0.035472188144922256, 0.013186176307499409, -0.02395145408809185, -0.06884969770908356, -0.07657597213983536, 0.0285872183740139, -0.02221733331680298, -0.017993636429309845, 0.014825863763689995, 0.005129388067871332, 0.010318869724869728, -0.012404964305460453, 0.025582555681467056, 0.04865836352109909, 0.04165320843458176, -0.03533483296632767, 0.032948270440101624, 0.0016353948740288615, 0.025256335735321045, 0.07671333104372025, -0.010344624519348145, -0.03191810101270676, 0.013100328855216503, -0.008893800899386406, -0.015401042066514492, 0.04093208909034729, -0.06802555918693542, 0.00695794029161334, -0.052573010325431824, -0.027574216946959496, 0.0716998353600502, 0.031300000846385956, -0.013950219377875328, 0.027299506589770317, 0.020311519503593445, 0.023539384827017784, -0.00957199651747942, -0.0377042219042778, -0.019109653308987617, 0.06678935885429382, -0.010576412081718445, 0.0008155512623488903, 0.04306110739707947, 0.059063080698251724, -0.03365221992135048, -0.015383872203528881, -0.028690235689282417, -0.01320334617048502, -0.043026767671108246, -0.0197792649269104, 0.006936478428542614, -0.031265661120414734, 0.0457395501434803, -0.030664727091789246, -0.0010907998075708747, 0.006425685714930296, -0.0019498113542795181, 0.03315430507063866, 0.02068924903869629, -0.07678200304508209, 0.030802084133028984, 0.049516838043928146, 0.0003015393449459225, -0.011529319919645786, -0.03705178201198578, -0.0010054889135062695, 0.03890608996152878, -0.0448123961687088, 0.007357130758464336, -0.018628908321261406, -0.03447635844349861, -0.0395585298538208, -0.05823894590139389, -0.01871475577354431, -0.0017309002578258514, -0.02551387809216976, 0.02669857256114483, 0.007537410594522953, 0.0349227637052536, 0.02300713025033474, -0.020586231723427773, -0.0137527696788311, 0.056453317403793335, -0.05030663684010506, -0.02161640115082264, 0.0032901056110858917, 0.010155759751796722, 0.00964925903826952, -0.0233333520591259, -0.04278639703989029, -0.008082542568445206, -0.0028479909524321556, -0.03042435459792614, 0.03401277959346771, -0.02917098067700863, 0.03722347691655159, -0.025908775627613068, 0.036983102560043335, 0.03320581465959549, 0.02237185835838318, -0.019229840487241745, 0.02007114700973034, -0.028999285772442818, 0.05449599400162697, -0.01405323576182127, -0.015692923218011856, -0.030681896954774857, 0.011786862276494503, 0.042683377861976624, -0.003697881242260337, 0.01350381225347519, 0.03409862890839577, -0.00033346388954669237, -0.03075057454407215, -0.0261148102581501, -0.020946791395545006, 0.038837410509586334, -0.03456220403313637, 0.010791030712425709, -0.045052770525217056, 0.053671859204769135, 0.025874437764286995, -0.027471201494336128, 0.007721982896327972, 0.010988480411469936, -0.0364680178463459, 0.07856763154268265, -0.0766446515917778, 0.0298234224319458, -0.040107954293489456, 0.05319111421704292, 0.0429580919444561, -0.04491541162133217, -0.023814097046852112, -0.02470691129565239, 0.0028072132263332605, -0.01866324618458748, 0.006983694154769182, -0.001537743373773992, 0.017736094072461128, -0.016551397740840912, 0.038700055330991745, -0.019710587337613106, -0.015169253572821617, -0.0330684594810009, 0.03217564523220062, 0.10047591477632523, 0.01674884743988514, 0.017160916700959206, 0.03233017027378082, 0.03784158080816269, 0.014997558668255806, 0.0085761658847332, 0.040073614567518234, -0.004828921984881163, 0.06963949650526047, 0.07053230702877045, 0.009314454160630703, 0.041481513530015945, -0.04896741732954979, -0.05003192275762558, 0.007314207032322884, -0.015495474450290203, 0.03952419012784958, 0.041481513530015945, -0.022028468549251556, 0.04196225851774216, 0.017667416483163834, 0.04443466663360596, 0.005309667903929949, -0.02408880926668644, -0.05387789383530617, 0.017667416483163834, 0.008627673611044884, -0.036055952310562134, -0.03918080031871796, 0.0008343303925357759, -0.05607558786869049, 0.002134383423253894, 0.021582061424851418, -0.04120679944753647, -0.008078250102698803, -0.02613198012113571, -0.017100822180509567, -0.03040718473494053, 0.06812857836484909, -0.04319846257567406, -0.004305252339690924, -0.03742951154708862, -0.007829292677342892, 0.0469757542014122, 0.008245652541518211, 0.006739028729498386, 0.04385090619325638, 0.029840592294931412, 0.02932550758123398, 0.013615413568913937, 0.01382144819945097, 0.014722846448421478, -0.026956114917993546, 0.017684586346149445, -0.04127547889947891, 0.017572984099388123, -0.0006540506728924811, -0.05823894590139389, -0.017221009358763695, -0.054770708084106445, 0.0048417989164590836, 0.0030540248844772577, -0.0012802009005099535, 0.027110641822218895, 0.028037793934345245, 0.03722347691655159, -0.04292375221848488, 0.04216829314827919, -0.04539616033434868, 0.002953154034912586, -0.02608047053217888, -0.04577388986945152, 0.028054963797330856, -0.013555320911109447, 0.04869270324707031, 0.025702742859721184, 0.008069665171205997, -0.04649500921368599, -0.03845968097448349, -0.027574216946959496, 0.01777043379843235, 0.020036807283759117, -0.02020850218832493, 0.056762367486953735, 0.004760243929922581, -0.006747613660991192, -0.0683002695441246, -0.006550164427608252, -0.036055952310562134, 0.024586724117398262, -0.0386313758790493, -0.05576653778553009, 0.01653422974050045, -0.04124113917350769, -0.041618868708610535, 0.034991443157196045, 0.016139330342411995, 0.02206280827522278, 0.004092779476195574, 0.0008080396219156682, -0.01794212870299816, 0.04127547889947891, -0.06102040410041809, 0.002007758477702737, -0.031265661120414734, -0.05195491015911102, 0.00015278172213584185, -0.050272297114133835, 0.06455732136964798, 0.04676971957087517, -0.02996077761054039, 0.01684327982366085, 0.00286086811684072, -0.03718913719058037, 0.030149642378091812, 0.057243116199970245, 0.007176851388067007, -0.007794953417032957, -0.05404958873987198, 0.010602166876196861, -0.00544273154810071, 0.007425808813422918, 0.028982117772102356, -0.01474001631140709, 0.04000493511557579, 0.005395515356212854, -0.0333775095641613, -0.04312978684902191, 0.031162643805146217, 0.05071870610117912, -0.034510694444179535, -0.0012576659210026264, 0.001366048352792859, -0.08804520219564438, -0.06510674953460693, -0.036365002393722534, -0.015340948477387428, 0.013160422444343567, 0.06960515677928925, 0.0015742286341264844, 0.024672571569681168, -0.10026988387107849, 0.059063080698251724, -0.015220762230455875, 0.034974273294210434, 0.03907778486609459, 0.027454031631350517, 0.010155759751796722, 0.05590389296412468, 0.04694141447544098, 0.012465056963264942, -0.007674766704440117, 0.012568074278533459, -0.02675008215010166, 0.0296688973903656, 0.1322738379240036, -0.012533735483884811, -0.07808689028024673, 0.016645830124616623, -0.044262971729040146, 0.027247997000813484, 0.03444201871752739, -0.024020131677389145, 0.028810421004891396, -0.014233515597879887, -0.0021880383137613535, 0.05947514995932579, 0.011323285289108753, 0.015941880643367767, 0.10411585122346878, -0.08392451703548431, -0.039146460592746735, -0.012473641894757748, -0.006816291715949774, -0.014087575487792492, 0.01693771220743656, -0.04065737873315811, -0.006005032919347286, 0.008571873418986797, -0.008365838788449764, 0.01763307675719261, -0.005502825137227774, 0.06019626930356026, 0.012353455647826195, 0.02178809605538845, 0.03504294902086258, 0.01947021298110485, 0.02039736695587635, 0.013795693404972553, 0.016929127275943756, -0.013941634446382523, 0.05610992759466171, -0.006211066618561745, 0.028690235689282417, 0.034819748252630234, 0.02395145408809185, -0.02922249026596546, 0.02206280827522278, 0.03866571560502052, -0.028175150975584984, 0.01912682317197323, 0.03845968097448349, 0.0057303206995129585, -0.015160668641328812, -0.02839835360646248, -0.04244300350546837, 0.040863409638404846, 0.015504059381783009, -0.04003927484154701, 0.0735541433095932, -0.03059604950249195, 0.006198189686983824 ]
20,412
cron_descriptor.ExpressionDescriptor
__str__
null
def __str__(self): return self.get_description()
(self)
[ 0.0036895370576530695, -0.04242967441678047, 0.05276734009385109, -0.018517298623919487, 0.04956509917974472, -0.07483495026826859, 0.04065452143549919, -0.019631121307611465, 0.09711139649152756, -0.06404478847980499, -0.05422923341393471, 0.010006998665630817, -0.025600513443350792, 0.006069462280720472, 0.014436183497309685, 0.02960331365466118, -0.01980515569448471, -0.1031678095459938, 0.005273253191262484, 0.017168529331684113, 0.0024451883509755135, 0.0014510147739201784, 0.020640522241592407, -0.03686056286096573, -0.010859768837690353, 0.060390062630176544, 0.002782380674034357, -0.047963980585336685, -0.0043747988529503345, 0.019161228090524673, -0.02111041732132435, -0.04420483112335205, -0.020744943991303444, 0.025269847363233566, -0.04465731978416443, 0.04065452143549919, -0.0459451787173748, 0.018813157454133034, -0.04500538855791092, -0.0031217485666275024, -0.017577510327100754, 0.017673229798674583, -0.028663525357842445, -0.026279248297214508, -0.023407675325870514, -0.045840755105018616, 0.0016065583331510425, 0.01246959064155817, -0.003833115566521883, -0.03219643235206604, 0.018360666930675507, 0.05530824884772301, -0.050122011452913284, -0.01910901628434658, -0.05600438639521599, -0.016106916591525078, 0.04695457965135574, 0.03280555084347725, 0.01661161705851555, 0.06352268904447556, -0.06877853721380234, 0.006321812514215708, 0.021441083401441574, -0.03741747513413429, -0.028767945244908333, 0.002849819138646126, -0.013557308353483677, 0.0284894909709692, 0.06049448251724243, 0.05621322616934776, 0.04813801497220993, -0.046258438378572464, 0.00619563739746809, 0.06220002472400665, 0.024991391226649284, -0.0467805452644825, -0.05440326780080795, -0.029429277405142784, 0.04632805287837982, -0.05384635552763939, -0.002936836564913392, 0.022450484335422516, -0.011521100997924805, -0.03038647025823593, -0.008536404930055141, -0.09718100726604462, -0.006752548739314079, -0.044796548783779144, -0.014714638702571392, 0.0344240739941597, -0.01416642963886261, 0.02420823462307453, -0.02791517600417137, 0.047963980585336685, -0.0583016462624073, -0.01248699426651001, -0.024451883509755135, -0.047650717198848724, 0.03710421174764633, 0.024156024679541588, 0.013296255841851234, 0.058893363922834396, -0.013870570808649063, 0.011738644912838936, -0.022241642698645592, -0.021876169368624687, -0.0323878675699234, 0.012173731811344624, 0.014984392561018467, 0.019735541194677353, -0.008719141595065594, 0.0019524524686858058, 0.001995961181819439, -0.02234606258571148, 0.016315758228302002, -0.048346858471632004, -0.019926980137825012, 0.005186235997825861, 0.023877568542957306, -0.046884965151548386, 0.005486445967108011, -0.015489093959331512, -0.05711820721626282, -0.036268845200538635, 0.015027902089059353, 0.07177193462848663, -0.05210600793361664, -0.022728940472006798, 0.030125416815280914, -0.05690936744213104, 0.024991391226649284, -0.012556607834994793, -0.013896675780415535, 0.020362067967653275, 0.08137865364551544, -0.01764712482690811, 0.053567901253700256, -0.0010637874947860837, 0.04368272423744202, 0.12627962231636047, -0.009328262880444527, 0.005421182606369257, 0.05621322616934776, 0.03759150952100754, -0.015158427879214287, -0.03496358171105385, -0.0012922080932185054, 0.03435446321964264, -0.009371771477162838, -0.012721940875053406, 0.050122011452913284, 0.002364697400480509, 0.030595311895012856, -0.01467113010585308, 0.022450484335422516, 0.02050129510462284, -0.023268448188900948, -0.016689933836460114, 0.006461040582507849, -0.01654200442135334, -0.0012769800378009677, -0.058962978422641754, 0.018865367397665977, 0.008014300838112831, 0.00833191443234682, 0.050156816840171814, 0.02347728982567787, -0.02760191261768341, 0.023668726906180382, 0.005621322896331549, -0.05161871016025543, -0.05179274454712868, -0.07295536994934082, 0.041942376643419266, 0.003926659468561411, 0.08799197524785995, 0.023686131462454796, 0.09070691466331482, 0.0029150822665542364, -0.022989992052316666, -0.014618920162320137, -0.004964341409504414, -0.07358189672231674, 0.037661124020814896, 0.07420842349529266, -0.02459111250936985, 0.03793957829475403, -0.0011377522023394704, 0.017255546525120735, 0.0018948034849017859, 0.006961390376091003, -0.0014836463378742337, -0.037034597247838974, 0.027027597650885582, -0.020971188321709633, -0.04949548467993736, 0.020083611831068993, -0.03901859372854233, 0.010381173342466354, 0.048729732632637024, -0.01783856377005577, 0.04535345733165741, -0.014001096598803997, 0.027619317173957825, 0.046571701765060425, 0.03619923070073128, 0.007252898532897234, -0.0041833603754639626, -0.012774151749908924, -0.041629113256931305, 0.014427482150495052, 0.029046401381492615, -0.01596768945455551, -0.0006917881546542048, 0.07212000340223312, -0.05280214548110962, -0.0332232341170311, -0.014879971742630005, -0.050470080226659775, 0.025461286306381226, 0.03612961620092392, -0.04966951906681061, 0.01603730395436287, -0.03297958895564079, -0.016977090388536453, 0.0041594309732317924, 0.05022643133997917, -0.04403079301118851, 0.003574238857254386, 0.002423434052616358, -0.03191797435283661, -0.0685000792145729, -0.02709721215069294, 0.05127064138650894, 0.009754648432135582, 0.04173353686928749, -0.05196677893400192, -0.011146926321089268, -0.06961390376091003, -0.0411418192088604, -0.028002193197607994, -0.0190742090344429, -0.007570512127131224, 0.025043603032827377, -0.012243345379829407, -0.061051394790410995, -0.004494447726756334, 0.018273649737238884, 0.0051166219636797905, -0.040584906935691833, 0.061086200177669525, -0.03853129595518112, -0.009859069250524044, 0.00005221042738412507, 0.02250269427895546, -0.08868811279535294, -0.024991391226649284, -0.027741141617298126, 0.029812155291438103, -0.014558007940649986, -0.03264892101287842, -0.015445585362613201, -0.03640807047486305, 0.0636967197060585, 0.015219340100884438, -0.00912812352180481, -0.013478992506861687, 0.010920681059360504, 0.007466091308742762, -0.009345666505396366, 0.14577151834964752, -0.0034415374975651503, -0.08249247819185257, 0.016820460557937622, -0.04260370880365372, -0.021058205515146255, -0.014592815190553665, -0.011547205969691277, -0.0749741718173027, -0.044796548783779144, -0.010241945274174213, -0.01414902601391077, 0.008170931600034237, -0.0011246996000409126, 0.021354064345359802, -0.05315021798014641, 0.02231125719845295, 0.00865387823432684, -0.009885174222290516, 0.0283676665276289, 0.04859050363302231, 0.02988176792860031, -0.01860431581735611, 0.005934585351496935, 0.05972873046994209, 0.019892172887921333, 0.019021999090909958, 0.04535345733165741, -0.016124321147799492, -0.02323364093899727, -0.05301098898053169, -0.01254790648818016, 0.008875773288309574, -0.002308136085048318, -0.07191116362810135, 0.004955640062689781, -0.02037947066128254, -0.01711631938815117, 0.012382573448121548, 0.02173694223165512, -0.013992395251989365, 0.02589637227356434, 0.027880368754267693, 0.1277415156364441, -0.016463687643408775, 0.05666571855545044, -0.024730339646339417, 0.02474774233996868, 0.028054403141140938, 0.06101658567786217, -0.03438926860690117, -0.011921381577849388, -0.01733386144042015, 0.008997596800327301, 0.04368272423744202, -0.01758621260523796, -0.06220002472400665, 0.04176834225654602, 0.04559710621833801, 0.010407278314232826, -0.010442085564136505, -0.05099218338727951, 0.045457880944013596, -0.007635775022208691, -0.03894897922873497, -0.011834363453090191, 0.04009760916233063, -0.03527684509754181, -0.02119743451476097, -0.028750542551279068, 0.09370031207799911, -0.0004764201585203409, -0.04629324749112129, 0.014201236888766289, 0.008009949699044228, 0.0389837883412838, -0.0020699258893728256, -0.03103039786219597, 0.03693017736077309, -0.02709721215069294, -0.0019470138940960169, -0.059311047196388245, 0.02347728982567787, 0.00978945568203926, -0.00912812352180481, -0.0018273650202900171, -0.01794298365712166, 0.06307020038366318, -0.020936381071805954, -0.013113519176840782, -0.00030265733948908746, -0.0634530708193779, 0.005229744594544172, 0.028280649334192276, -0.027166826650500298, 0.023668726906180382, -0.0022820308804512024, 0.03303179889917374, 0.049077801406383514, -0.04577114060521126, -0.020623119547963142, 0.022607116028666496, -0.017786351963877678, -0.03393677994608879, -0.01480165682733059, 0.013174431398510933, 0.012121520936489105, 0.01945708692073822, -0.06407959759235382, 0.01312222145497799, 0.017925580963492393, 0.005821462720632553, -0.012556607834994793, 0.03967992588877678, -0.012252047657966614, 0.016655126586556435, 0.003258800832554698, 0.038426876068115234, -0.024921778589487076, -0.007057109382003546, -0.021945783868432045, -0.02412121742963791, -0.0645320862531662, 0.0013759622815996408, -0.031361065804958344, -0.06912660598754883, 0.009484894573688507, -0.012704537250101566, -0.04959990829229355, 0.009980893693864346, 0.016246145591139793, -0.04559710621833801, -0.003735220991075039, -0.00620433920994401, -0.016994494944810867, 0.040515292435884476, 0.01876094751060009, 0.042638517916202545, -0.015445585362613201, -0.0056822351180016994, 0.007453038822859526, -0.034563302993774414, -0.04211641103029251, -0.07253769040107727, 0.03397158533334732, -0.0029498892836272717, -0.019735541194677353, 0.0008326475508511066, -0.005677883978933096, 0.00643493514508009, -0.018778350204229355, 0.04535345733165741, 0.03762631490826607, 0.05207119882106781, -0.027619317173957825, 0.026383670046925545, 0.02915082313120365, 0.03096078336238861, 0.08868811279535294, -0.02227644994854927, -0.017977790907025337, 0.02091897837817669, -0.04685015603899956, -0.008488545194268227, 0.04716341942548752, -0.061747532337903976, 0.019474489614367485, -0.04183795675635338, -0.03498098626732826, 0.04681535065174103, 0.026105213910341263, -0.0357467383146286, 0.02674914337694645, 0.036616913974285126, 0.027201633900403976, -0.02995138242840767, -0.040863361209630966, -0.003517677541822195, 0.05704859644174576, 0.00618693558499217, -0.015819760039448738, 0.05248888581991196, 0.025496091693639755, -0.04176834225654602, 0.009397877380251884, -0.029638119041919708, 0.013696535490453243, -0.04041087254881859, -0.01692488044500351, 0.012417379766702652, -0.03578154742717743, 0.05548228323459625, -0.03616442158818245, 0.01825624704360962, 0.02316402643918991, 0.010407278314232826, -0.009249947965145111, 0.0306475218385458, -0.07253769040107727, 0.03529424965381622, 0.04389156773686409, -0.018238842487335205, -0.021980591118335724, -0.03249229118227959, -0.00817528273910284, 0.03971473127603531, -0.04538826644420624, -0.0074921962805092335, 0.0004938236088491976, -0.023564307019114494, -0.025339461863040924, -0.05774473398923874, -0.01254790648818016, 0.03247488662600517, -0.004122448619455099, 0.010442085564136505, 0.012826361693441868, 0.034528497606515884, -0.006552408915013075, -0.016559407114982605, 0.011738644912838936, 0.020936381071805954, -0.03230085223913193, -0.03651249408721924, -0.010337664745748043, 0.013096115551888943, -0.014296955429017544, -0.019596314057707787, -0.06258290261030197, 0.018151825293898582, 0.0031739589758217335, -0.03416302427649498, 0.0381484180688858, -0.013592114672064781, 0.04604959860444069, -0.03257930651307106, 0.01262622233480215, 0.029777348041534424, 0.015219340100884438, -0.030438680201768875, 0.0069352854043245316, -0.022172028198838234, 0.04399598762392998, -0.011051207780838013, -0.009310860186815262, -0.012861168943345547, 0.008162230253219604, 0.04274293780326843, 0.008927983231842518, 0.04253409430384636, 0.0033175377175211906, -0.013522501103579998, -0.033762745559215546, -0.027862966060638428, -0.004226869437843561, 0.026923177763819695, -0.03619923070073128, 0.01704670488834381, -0.04632805287837982, 0.07191116362810135, 0.019474489614367485, -0.010181033983826637, 0.0061086202040314674, 0.03832245618104935, -0.020797153934836388, 0.0792902410030365, -0.10539545118808746, 0.020623119547963142, -0.02158031053841114, 0.04991316795349121, 0.031239239498972893, -0.042011991143226624, -0.014871270395815372, -0.025148022919893265, -0.000133721245219931, -0.015567409805953503, -0.007387775462120771, 0.019004596397280693, 0.007609670050442219, -0.008566861040890217, 0.011564609594643116, -0.011895275674760342, -0.023616516962647438, -0.04876454174518585, 0.011381873860955238, 0.08033444732427597, -0.00785766914486885, 0.02231125719845295, 0.054646916687488556, 0.02744528278708458, 0.002308136085048318, -0.0019089437555521727, 0.04695457965135574, 0.03929704800248146, 0.06362710893154144, 0.07413880527019501, -0.0009338052477687597, 0.039088208228349686, -0.039853960275650024, -0.05659610405564308, -0.000944138562772423, -0.041594307869672775, 0.004964341409504414, 0.0636967197060585, -0.03609481081366539, 0.04357830435037613, 0.04709380492568016, 0.033797550946474075, -0.02323364093899727, 0.01310481783002615, -0.06731664389371872, 0.03438926860690117, 0.020083611831068993, -0.032092008739709854, -0.05102699249982834, -0.013391975313425064, -0.026888370513916016, -0.005377674009650946, 0.019718138501048088, -0.05228004232048988, -0.010381173342466354, -0.005155779886990786, -0.03435446321964264, -0.025043603032827377, 0.07184155285358429, -0.054681722074747086, -0.012182433158159256, -0.053602706640958786, -0.011756048537790775, 0.02471293695271015, 0.009841665625572205, -0.0006379461847245693, 0.0403064489364624, 0.05127064138650894, 0.036686528474092484, 0.04504019767045975, 0.007405179087072611, 0.015219340100884438, -0.03623403608798981, 0.03759150952100754, -0.03832245618104935, 0.012904677540063858, 0.004772903397679329, -0.021005995571613312, -0.02667952887713909, -0.04695457965135574, 0.04316062107682228, -0.024886971339583397, 0.010668330825865269, -0.011007698252797127, 0.030543100088834763, 0.06373152881860733, -0.028750542551279068, 0.05276734009385109, -0.07608799636363983, 0.018830562010407448, -0.022711535915732384, -0.0481032095849514, 0.013748746365308762, -0.05137506127357483, 0.031204432249069214, 0.009798157028853893, 0.005160130560398102, -0.03546828404068947, -0.03616442158818245, -0.022137220948934555, 0.03223123773932457, 0.019700735807418823, -0.018117018043994904, 0.021180029958486557, -0.008427632972598076, -0.0031674327328801155, -0.0658547505736351, 0.01188657432794571, -0.05562150850892067, 0.039401471614837646, -0.06101658567786217, -0.05770992860198021, -0.00649584736675024, -0.05165351554751396, -0.04044567793607712, 0.03289256989955902, 0.005825813859701157, 0.03863571584224701, 0.031830959022045135, -0.013217939995229244, -0.004698938690125942, 0.03419782966375351, -0.034911371767520905, -0.010407278314232826, -0.009832964278757572, -0.06522823125123978, 0.01177345123142004, -0.060041993856430054, 0.0569789819419384, 0.03231825679540634, -0.029464084655046463, -0.0053385160863399506, 0.0004524903779383749, -0.021597713232040405, 0.04455289989709854, 0.05409000441431999, 0.03339727222919464, -0.010998996905982494, -0.03835726156830788, 0.02138887159526348, 0.0026910125743597746, 0.015697935596108437, 0.03835726156830788, -0.03405860438942909, 0.046258438378572464, -0.016298355534672737, -0.014253446832299232, -0.01756010763347149, 0.03042127564549446, 0.0639403685927391, -0.04803359508514404, -0.01565442606806755, 0.022902974858880043, -0.07100618630647659, -0.06488016247749329, -0.056422069668769836, -0.045805949717760086, 0.004929534625262022, 0.09042846411466599, 0.0060433573089540005, 0.010163630358874798, -0.06846527755260468, 0.03445888310670853, -0.011764749884605408, 0.027271246537566185, 0.05429884418845177, 0.01695968769490719, -0.006139076314866543, 0.035416074097156525, 0.010198436677455902, -0.00909331627190113, -0.0034458881709724665, 0.011051207780838013, -0.04775513708591461, 0.05760550498962402, 0.09133344143629074, -0.02880275249481201, -0.06595917791128159, 0.031865764409303665, -0.07218962162733078, 0.042325254529714584, 0.02791517600417137, 0.01117303129285574, 0.027741141617298126, 0.005107920151203871, -0.014966989867389202, 0.011999696493148804, 0.00949359592050314, 0.04135065898299217, 0.07908139377832413, -0.07873332500457764, -0.027149422094225883, -0.02243308164179325, -0.016489794477820396, 0.006482794880867004, 0.01625484600663185, -0.024034200236201286, 0.003939711954444647, 0.020744943991303444, -0.010276752524077892, 0.022259045392274857, 0.0035764144267886877, 0.07748027890920639, 0.014192534610629082, 0.02307700924575329, 0.0448661632835865, 0.026279248297214508, 0.02208501100540161, 0.014662428759038448, 0.017760246992111206, 0.02890717424452305, 0.03473733738064766, -0.02744528278708458, 0.008227493613958359, 0.03351909667253494, 0.014375271275639534, -0.023372868075966835, 0.01957891136407852, 0.0018186632078140974, -0.03299698978662491, -0.0013368044747039676, 0.046571701765060425, 0.002993397880345583, 0.022259045392274857, 0.001519541023299098, -0.05770992860198021, 0.036303650587797165, 0.01015492808073759, -0.018552105873823166, 0.07163270562887192, -0.022763747721910477, 0.005273253191262484 ]
20,413
cron_descriptor.ExpressionDescriptor
format_time
Given time parts, will construct a formatted time description Args: hour_expression: Hours part minute_expression: Minutes part second_expression: Seconds part Returns: Formatted time description
def format_time( self, hour_expression, minute_expression, second_expression='' ): """Given time parts, will construct a formatted time description Args: hour_expression: Hours part minute_expression: Minutes part second_expression: Seconds part Returns: Formatted time description """ hour = int(hour_expression) period = '' if self._options.use_24hour_time_format is False: period = self._("PM") if (hour >= 12) else self._("AM") if period: # add preceding space period = " " + period if hour > 12: hour -= 12 if hour == 0: hour = 12 minute = str(int(minute_expression)) # Removes leading zero if any second = '' if second_expression is not None and second_expression: second = "{}{}".format(":", str(int(second_expression)).zfill(2)) return "{0}:{1}{2}{3}".format(str(hour).zfill(2), minute.zfill(2), second, period)
(self, hour_expression, minute_expression, second_expression='')
[ 0.06189834326505661, -0.00021974480478093028, 0.006963563617318869, -0.012780186720192432, -0.00017977827519644052, -0.0895705446600914, 0.028873756527900696, 0.04591400548815727, -0.06601276248693466, -0.027763227000832558, 0.03917801007628441, 0.015228812582790852, 0.015347147360444069, -0.0026010957080870867, 0.016403060406446457, 0.05964087322354317, 0.040015459060668945, -0.10122199356555939, -0.0189336109906435, -0.03367998078465462, 0.04871763661503792, -0.059313174337148666, 0.018005134537816048, -0.0001236686803167686, -0.010577334091067314, 0.0226111002266407, -0.012197614647448063, -0.016940120607614517, -0.02079056017100811, -0.04387500137090683, 0.06186193227767944, 0.010304253548383713, -0.06856151670217514, 0.01898822747170925, -0.0187151450663805, 0.005388796795159578, -0.04052520915865898, -0.010249637067317963, -0.04329242929816246, 0.0518125519156456, 0.030311983078718185, -0.005848483182489872, 0.015547406859695911, -0.011205420829355717, -0.0225018672645092, -0.015001244843006134, 0.044384751468896866, 0.05709211900830269, -0.010941442102193832, -0.04788018763065338, 0.03389844670891762, -0.0021789581514894962, -0.04977354779839516, -0.005602710414677858, -0.06386452168226242, 0.0189336109906435, 0.08942490071058273, 0.013208013959228992, 0.041872408241033554, -0.03437178581953049, -0.03251483663916588, 0.020244399085640907, -0.02275674417614937, 0.07515186816453934, -0.02186467871069908, -0.0043260566890239716, -0.024722926318645477, 0.005661877803504467, 0.03593745082616806, 0.006981768645346165, 0.015820488333702087, -0.014973937533795834, 0.009994762018322945, -0.01770474575459957, 0.000931888644117862, 0.05629108101129532, -0.07901141047477722, 0.03635617345571518, 0.0454406663775444, 0.027417324483394623, -0.062408093363046646, -0.0024281444493681192, -0.024650104343891144, 0.02665269747376442, 0.0005344990058802068, -0.03804927319288254, 0.06393734365701675, -0.01513778604567051, -0.02867349609732628, 0.04638734459877014, -0.04700632765889168, -0.052213072776794434, 0.025669606402516365, 0.032059699296951294, -0.016667038202285767, -0.01940695010125637, -0.0651024878025055, -0.05924035608768463, -0.06881639361381531, -0.006344580091536045, 0.003920986782759428, -0.07966680824756622, -0.006035088561475277, -0.012461592443287373, -0.0262885894626379, -0.04321960732340813, -0.016166390851140022, 0.03267868235707283, 0.03682951256632805, -0.01199735514819622, -0.007696330547332764, -0.012661851942539215, -0.05734699219465256, -0.04729761555790901, 0.01186081487685442, 0.01887899450957775, 0.010322459042072296, 0.02670731395483017, 0.033607158809900284, -0.05822085216641426, 0.016111774370074272, -0.021773651242256165, 0.004266889300197363, 0.006512979976832867, -0.01695832423865795, 0.03790363296866417, -0.05745622515678406, -0.06317272037267685, 0.0034817818086594343, -0.05891265720129013, -0.0365564338862896, 0.05800238624215126, 0.04332884028553963, 0.024158557876944542, 0.019479772076010704, -0.01764102652668953, 0.00925289187580347, -0.012898522429168224, 0.014791883528232574, 0.10500871390104294, -0.03475409746170044, -0.04241856932640076, -0.040707264095544815, 0.006995422765612602, 0.0225018672645092, -0.03586462885141373, 0.03271509334445, -0.0071729253977537155, -0.00608970457687974, 0.08119606226682663, -0.03231457620859146, 0.039214421063661575, 0.04354730248451233, -0.020353632047772408, 0.06819740682840347, 0.013799688778817654, 0.03914159908890724, 0.03917801007628441, 0.013180705718696117, -0.02062671259045601, 0.040707264095544815, 0.012042868882417679, 0.0038754732813686132, 0.005434310529381037, 0.042782679200172424, 0.039906226098537445, 0.007455109152942896, 0.013490197248756886, 0.022993413731455803, -0.020299015566706657, -0.008524675853550434, -0.04351089149713516, -0.01856040023267269, 0.0006883915048092604, 0.027526557445526123, -0.0450037345290184, -0.0015827314928174019, 0.017340637743473053, 0.03271509334445, -0.05741981416940689, 0.044166289269924164, -0.007577995769679546, -0.08039502054452896, 0.06211680546402931, -0.04591400548815727, 0.01249800343066454, 0.024904979392886162, -0.016994735226035118, -0.04791659861803055, -0.03906877711415291, 0.0007401630864478648, -0.028400415554642677, -0.029802231118083, 0.023685218766331673, 0.024959595873951912, -0.0025897175073623657, 0.005953163839876652, -0.025942686945199966, 0.0342443473637104, 0.08651203662157059, -0.07256670296192169, 0.0379764549434185, -0.005152126774191856, -0.02643423341214657, 0.07256670296192169, 0.0009739886154420674, 0.036228734999895096, 0.011933635920286179, -0.08789564669132233, -0.01924310252070427, -0.025778839364647865, -0.028455032035708427, 0.030311983078718185, 0.06921690702438354, 0.012461592443287373, 0.03539128601551056, -0.00985822081565857, 0.038413383066654205, -0.02911042608320713, -0.02366701327264309, -0.005953163839876652, 0.007992167957127094, -0.019971318542957306, -0.0025988200213760138, 0.03597385808825493, 0.04453039541840553, -0.010968750342726707, 0.020025935024023056, -0.05756545811891556, -0.015602023340761662, 0.02548755332827568, 0.015811385586857796, -0.019916702061891556, 0.01667614094913006, -0.01722230389714241, 0.01907925307750702, 0.011760684661567211, -0.030858144164085388, -0.019589005038142204, -0.023685218766331673, -0.018250908702611923, 0.03581001237034798, -0.022465456277132034, -0.020808765664696693, 0.004237305838614702, -0.07922987639904022, -0.013708662241697311, -0.00437157042324543, -0.03459025174379349, -0.02313905581831932, -0.018897200003266335, 0.0738774910569191, 0.019698236137628555, 0.00350453844293952, -0.032806120812892914, 0.00028687718440778553, -0.0005103199509903789, 0.024340612813830376, -0.012224922887980938, -0.018787967041134834, 0.012880316935479641, -0.06040550023317337, -0.02366701327264309, -0.06328195333480835, 0.0732221007347107, -0.01028604805469513, -0.04551348835229874, 0.0014245720813050866, 0.004223651718348265, -0.02703501097857952, 0.05778392404317856, 0.016703449189662933, -0.004888148512691259, 0.009393983520567417, -0.013071473687887192, 0.02889196202158928, 0.013289937749505043, -0.017741156741976738, 0.019862085580825806, -0.034681275486946106, -0.016393957659602165, 0.02292059175670147, -0.007737292908132076, 0.0059895748272538185, 0.059677284210920334, 0.014737267047166824, -0.015911515802145004, 0.04962790757417679, 0.039323654025793076, 0.06102448329329491, -0.04453039541840553, -0.013799688778817654, 0.030676089227199554, -0.005202191416174173, -0.0038527166470885277, 0.05097510665655136, -0.02089979313313961, 0.002434971509501338, 0.013390067964792252, -0.058075208216905594, -0.051848962903022766, 0.06284502148628235, 0.013371862471103668, -0.015046758577227592, -0.034572046250104904, -0.014518802054226398, -0.007004525512456894, 0.014009051024913788, 0.07857448607683182, 0.00334524130448699, 0.028491443023085594, -0.0448945015668869, -0.0004059234051965177, 0.022957002744078636, 0.04234574735164642, 0.0826524943113327, -0.005780212581157684, 0.022028528153896332, -0.01929771900177002, -0.0027990795206278563, -0.00364563032053411, -0.03417152538895607, 0.054506950080394745, 0.005507132038474083, 0.0450037345290184, -0.06051473319530487, -0.060915250331163406, -0.009694372303783894, 0.006522082723677158, 0.011068879626691341, -0.037612345069646835, 0.011323755607008934, 0.035427697002887726, 0.013362759724259377, -0.023066235706210136, -0.04926379770040512, 0.000856791390106082, -0.032751504331827164, -0.011514912359416485, 0.029820436611771584, 0.06018703430891037, -0.00288555514998734, -0.059094712138175964, -0.020244399085640907, 0.020553890615701675, -0.030403008684515953, -0.02510523982346058, -0.018096162006258965, 0.03976058214902878, 0.01861501671373844, 0.022702127695083618, -0.07726369798183441, 0.018223600462079048, -0.03591924533247948, -0.0007742982124909759, 0.02153698168694973, 0.05614543706178665, -0.05745622515678406, -0.002965203719213605, -0.007473314646631479, 0.033133819699287415, 0.05337821692228317, 0.019789263606071472, -0.04740684852004051, -0.0025259985122829676, -0.02789066545665264, 0.04088931530714035, 0.05039253085851669, 0.024777542799711227, -0.03757593408226967, -0.026033714413642883, 0.0010872033890336752, 0.07424160093069077, 0.009694372303783894, 0.013908921740949154, 0.029601972550153732, 0.005830277688801289, 0.04893610253930092, -0.09408547729253769, -0.08185145258903503, 0.044384751468896866, -0.002108412329107523, -0.03138609975576401, 0.02958376705646515, -0.025123445317149162, 0.012206717394292355, 0.023594191297888756, 0.0075461361557245255, -0.013617634773254395, 0.005029240157455206, -0.03406229242682457, -0.01818718947470188, 0.03925083205103874, -0.036283351480960846, 0.015447277575731277, 0.029838642105460167, -0.013626737520098686, -0.005325078032910824, -0.025997303426265717, 0.01274377666413784, 0.027745021507143974, -0.09495934098958969, -0.01614818535745144, 0.003957397770136595, -0.01527432631701231, 0.01614818535745144, 0.00539789954200387, 0.05101151764392853, -0.03608309105038643, -0.014892012812197208, 0.03124045766890049, -0.08403610438108444, -0.041289836168289185, -0.003085814416408539, 0.0034840574953705072, -0.025232676416635513, -0.002664814703166485, 0.005730147939175367, -0.019971318542957306, 0.07260311394929886, -0.05046535283327103, -0.02792707458138466, -0.005607261788100004, 0.0023416688200086355, 0.0258516613394022, -0.011087085120379925, 0.011341961100697517, 0.010804901830852032, 0.014782780781388283, 0.028272977098822594, -0.03528205305337906, 0.013972640037536621, -0.05723775923252106, 0.03757593408226967, 0.030985582619905472, 0.0004665132437366992, 0.044967323541641235, 0.030803527683019638, 0.022155964747071266, -0.010195020586252213, 0.06604917347431183, 0.02361239679157734, 0.04376576840877533, 0.023102646693587303, -0.025087034329771996, -0.021791856735944748, -0.029929669573903084, 0.0066449688747525215, 0.0033293114975094795, 0.0454406663775444, 0.004039322026073933, 0.06670456379652023, 0.02037183754146099, -0.025396525859832764, 0.02020798809826374, -0.06106089428067207, 0.07588008791208267, 0.022155964747071266, 0.028964782133698463, -0.0227203331887722, -0.04012468829751015, 0.06812458485364914, 0.01929771900177002, 0.021136462688446045, -0.03184123709797859, -0.005853034555912018, 0.02341213822364807, -0.02488677389919758, -0.04857199266552925, -0.020444657653570175, -0.008005822077393532, 0.03648361191153526, -0.044967323541641235, 0.015265223570168018, 0.03284253180027008, 0.005620915442705154, 0.04114419221878052, 0.04591400548815727, -0.017295125871896744, -0.04638734459877014, -0.00876589771360159, 0.016803579404950142, -0.005975920706987381, -0.016375752165913582, 0.06601276248693466, 0.045404255390167236, 0.04602323845028877, -0.05476182699203491, 0.03093096613883972, -0.06299066543579102, -0.04595041647553444, -0.04398423433303833, -0.001955942017957568, -0.038631848990917206, -0.045877594500780106, -0.016184596344828606, -0.050028424710035324, 0.0022790879011154175, -0.04660581052303314, 0.00978539977222681, -0.02537832036614418, 0.04857199266552925, 0.06677738577127457, -0.02745373547077179, 0.01621190458536148, 0.02068132907152176, 0.02372162975370884, 0.006340028718113899, 0.017176790162920952, 0.007632611785084009, -0.04150829836726189, -0.03262406587600708, -0.045768361538648605, -0.011787992902100086, 0.018787967041134834, 0.008542881347239017, -0.0018273665336892009, -0.054834648966789246, 0.017286023125052452, 0.016776271164417267, -0.006863433867692947, 0.01508316956460476, 0.032005082815885544, 0.006103358697146177, -0.010513615794479847, 0.0026101984549313784, -0.0038231329526752234, -0.005029240157455206, -0.030057106167078018, -0.049118153750896454, 0.07016359269618988, 0.04329242929816246, 0.009931042790412903, 0.0513756237924099, -0.012579928152263165, -0.005416105035692453, -0.06415580958127975, 0.0006616523023694754, -0.058075208216905594, 0.012853008694946766, -0.009657962247729301, 0.02932889014482498, -0.02836400456726551, -0.06095166131854057, -0.022884180769324303, 0.01609356887638569, 0.023157261312007904, -0.010322459042072296, 0.015174196101725101, -0.024085737764835358, 0.01610267162322998, 0.008547432720661163, 0.04591400548815727, 0.014273029752075672, -0.0043852245435118675, 0.053014110773801804, -0.018214497715234756, -0.009903734549880028, 0.014455083757638931, -0.004305575974285603, 0.017313329502940178, 0.024904979392886162, 0.044603217393159866, 0.005748353432863951, -0.03124045766890049, -0.0590583011507988, 0.005552645307034254, 0.06688661873340607, -0.03477230295538902, 0.01287121418863535, -0.029183248057961464, 0.0039642248302698135, 0.06368247419595718, -0.007682676427066326, -0.0448945015668869, -0.0377579890191555, 0.013335451483726501, 0.019916702061891556, 0.024668309837579727, 0.06481120735406876, -0.015656638890504837, 0.030858144164085388, -0.010140405036509037, -0.06248091533780098, 0.004125797655433416, 0.028291182592511177, 0.08032219856977463, -0.02142774872481823, -0.04482168331742287, 0.010122199542820454, 0.025451142340898514, 0.013417376205325127, 0.04846275970339775, 0.03712080046534538, 0.021955706179142, 0.011478501372039318, 0.01458252128213644, 0.004321505781263113, 0.002774046966806054, 0.01860591396689415, -0.04882686957716942, 0.01753179542720318, 0.021027231588959694, 0.023375727236270905, 0.03844979405403137, -0.01790500618517399, 0.049664318561553955, -0.008060438558459282, -0.07183849066495895, -0.022155964747071266, 0.03480871394276619, 0.03417152538895607, 0.029893258586525917, 0.07129232585430145, 0.023266494274139404, 0.022137759253382683, -0.019206691533327103, -0.03027557209134102, 0.00909359473735094, -0.06390093266963959, -0.08753153681755066, 0.11760684847831726, -0.0654301866889, 0.06710508465766907, -0.0039346409030258656, -0.006185282953083515, -0.00839268695563078, -0.03357074782252312, -0.031094813719391823, -0.0830894187092781, 0.010240534320473671, 0.038413383066654205, -0.05206742882728577, -0.024722926318645477, -0.06830663979053497, -0.03983340412378311, -0.0368841290473938, 0.022520072758197784, -0.038522616028785706, -0.006740547250956297, -0.038777489215135574, -0.051412034779787064, -0.00855198409408331, -0.0001924367097672075, 0.001955942017957568, 0.013808791525661945, -0.028491443023085594, -0.04988278076052666, -0.02410394325852394, -0.018432961776852608, -0.020444657653570175, 0.012024663388729095, -0.0002479062823113054, 0.021555187180638313, -0.07456929981708527, 0.011979149654507637, -0.029765820130705833, -0.09845477342605591, 0.007869281806051731, 0.024904979392886162, 0.03866825997829437, -0.021573392674326897, 0.018214497715234756, 0.019006432965397835, -0.019552594050765038, -0.041763175278902054, 0.013271733187139034, 0.05516234412789345, 0.03444460779428482, 0.0220649391412735, 0.027162449434399605, -0.0651024878025055, 0.0806863084435463, 0.019807469099760056, -0.03972417116165161, 0.04190881922841072, 0.028509648516774178, 0.00024648397811688483, -0.022847769781947136, 0.004398878663778305, 0.0802493765950203, -0.037248238921165466, -0.021191079169511795, -0.0451129674911499, 0.001994628459215164, 0.004025667905807495, 0.018951816484332085, -0.0022301608696579933, -0.011178112588822842, -0.09466805309057236, 0.014609829522669315, -0.042782679200172424, -0.06590352952480316, -0.011879020370543003, 0.041289836168289185, -0.027854254469275475, -0.027308091521263123, 0.009298405610024929, 0.040852904319763184, 0.002594268647953868, -0.04252780228853226, 0.0258516613394022, -0.0026670903898775578, 0.020135166123509407, 0.004733402747660875, -0.03038480319082737, -0.027107832953333855, -0.007300363387912512, 0.06342759728431702, -0.048426348716020584, 0.00016370632511097938, 0.016357546672225, 0.026470644399523735, 0.004180413670837879, 0.018624119460582733, -0.06528454273939133, 0.006121564190834761, 0.01653049886226654, 0.04857199266552925, 0.05865778028964996, 0.032223548740148544, 0.009421291761100292, 0.03804927319288254, -0.06215321645140648, -0.024431640282273293, 0.03497256338596344, -0.027435529977083206, -0.0185512974858284, 0.011105290614068508, -0.05428848788142204, -0.021282106637954712, 0.03895954415202141, 0.015510995872318745, 0.004153105430305004, 0.044967323541641235, 0.015210607089102268, -0.03573719039559364, -0.027217065915465355, 0.044129878282547, 0.021846473217010498, -0.008579292334616184, 0.024122148752212524, 0.04824429750442505, -0.0258516613394022, -0.026507055386900902, 0.018624119460582733, -0.023284699767827988, 0.009193724021315575, -0.02068132907152176, 0.032806120812892914, -0.011524015106260777, -0.06776048243045807, -0.021391339600086212, 0.02521447092294693, 0.05122997984290123, -0.01593882218003273, -0.06142500042915344, 0.003918711096048355, -0.030676089227199554, 0.018533091992139816, 0.024012915790081024, 0.06222603842616081, 0.08578381687402725, 0.03664746135473251, -0.0009722818504087627, 0.01439136452972889, -0.04263703525066376, 0.018369242548942566 ]
20,414
cron_descriptor.ExpressionDescriptor
generate_between_segment_description
Generates the between segment description :param between_expression: :param get_between_description_format: :param get_single_item_description: :return: The between segment description
def generate_between_segment_description( self, between_expression, get_between_description_format, get_single_item_description ): """ Generates the between segment description :param between_expression: :param get_between_description_format: :param get_single_item_description: :return: The between segment description """ description = "" between_segments = between_expression.split('-') between_segment_1_description = get_single_item_description(between_segments[0]) between_segment_2_description = get_single_item_description(between_segments[1]) between_segment_2_description = between_segment_2_description.replace(":00", ":59") between_description_format = get_between_description_format(between_expression) description += between_description_format.format(between_segment_1_description, between_segment_2_description) return description
(self, between_expression, get_between_description_format, get_single_item_description)
[ 0.006147252861410379, -0.006548810284584761, 0.006706870626658201, -0.02674204483628273, 0.00022694426297675818, -0.029732368886470795, 0.023068217560648918, -0.02542630210518837, -0.07757756114006042, -0.028809640556573868, 0.01642969623208046, 0.05157028138637543, 0.004188590217381716, 0.006621432490646839, -0.0020611879881471395, 0.049485597759485245, 0.0349440760910511, -0.1141449585556984, -0.023546669632196426, -0.009372531436383724, -0.031355686485767365, 0.0021893447265028954, -0.019343126565217972, -0.052766408771276474, 0.013695686124265194, 0.0008228732040151954, -0.06964892894029617, -0.02428143471479416, 0.01186731643974781, -0.03595224395394325, 0.010978762991726398, -0.04832364246249199, -0.06749589741230011, -0.022982779890298843, 0.007710765115916729, 0.04791354015469551, 0.026349030435085297, 0.007480083033442497, -0.016788534820079803, 0.08639474213123322, 0.016549309715628624, -0.03051839768886566, 0.0516728051006794, 0.009953508153557777, -0.01843748614192009, -0.007621055468916893, 0.012824219651520252, -0.03885712847113609, -0.010252540931105614, -0.003599069081246853, 0.1185193732380867, -0.01549842394888401, -0.03207336366176605, -0.003870334243401885, -0.04603390768170357, -0.003141976660117507, 0.04753761366009712, 0.112094447016716, 0.07060582935810089, 0.05317651107907295, 0.00490413187071681, 0.057755980640649796, -0.013652967289090157, 0.00015218615590129048, -0.010696818120777607, 0.016267364844679832, -0.012328680604696274, -0.009432337246835232, 0.05365496501326561, 0.04856286942958832, 0.0807216688990593, -0.005929386243224144, -0.005318505689501762, 0.03075762279331684, 0.030945586040616035, -0.013046358712017536, -0.035302914679050446, 0.02231636457145214, 0.060284942388534546, -0.0011822461383417249, -0.015934158116579056, -0.019223514944314957, 0.033952996134757996, -0.021393636241555214, 0.05884958431124687, -0.04319737106561661, -0.030979761853814125, -0.03625981882214546, 0.004724712576717138, 0.010107296518981457, -0.018898850306868553, -0.01566929928958416, -0.04244551807641983, -0.0140118058770895, -0.01881341263651848, -0.022230926901102066, -0.03971150889992714, -0.027169233188033104, -0.025614265352487564, 0.005822588689625263, 0.019531089812517166, -0.02286316640675068, -0.02681039460003376, -0.0180615596473217, 0.004417136311531067, -0.04302649572491646, -0.008471162058413029, 0.020744306966662407, -0.006715414114296436, -0.027476809918880463, -0.030176645144820213, -0.04876792058348656, -0.04453020170331001, -0.05102347955107689, -0.043812524527311325, 0.06411255896091461, 0.021120233461260796, 0.008159313350915909, -0.004312475211918354, -0.0868048444390297, 0.04012161120772362, -0.07805601507425308, -0.05628645047545433, 0.002197888446971774, -0.05932803824543953, -0.012533730827271938, -0.019633615389466286, -0.0033982901368290186, 0.006826483644545078, -0.040634237229824066, 0.01117526926100254, 0.010867693461477757, -0.012055279687047005, -0.009748457930982113, -0.01257645059376955, -0.01594270020723343, -0.04165949299931526, 0.015575318597257137, -0.017207181081175804, 0.09514357894659042, -0.01860836148262024, -0.027562247589230537, -0.020522169768810272, 0.04552128165960312, -0.07251963764429092, -0.0036780990194529295, -0.0425480455160141, 0.04808441549539566, 0.04306067153811455, 0.05054502561688423, -0.03602059558033943, 0.03694332391023636, 0.0503058023750782, -0.04500865563750267, 0.08783010393381119, -0.05027162656188011, 0.016822710633277893, 0.01809573546051979, -0.0034196495544165373, 0.02009497955441475, 0.04586303234100342, -0.00044934963807463646, 0.0012388486647978425, 0.04015578702092171, 0.03673827275633812, 0.0536891408264637, -0.005070735700428486, -0.00410101655870676, 0.03082597255706787, -0.023495405912399292, 0.0007470471318811178, 0.012550818733870983, -0.05960143730044365, 0.019633615389466286, -0.015472793020308018, -0.037831876426935196, -0.024896586313843727, 0.03906217962503433, 0.0067752208560705185, -0.07757756114006042, 0.0739549919962883, 0.058131907135248184, 0.008945342153310776, 0.004378689453005791, -0.05567129701375961, -0.049383070319890976, 0.001301859156228602, -0.004724712576717138, -0.007924359291791916, -0.04230881854891777, 0.008189217187464237, -0.001549628796055913, -0.02380298264324665, 0.034363098442554474, 0.005506468936800957, -0.014148506335914135, 0.02663951925933361, 0.026161067187786102, 0.0020665277261286974, 0.049758996814489365, -0.015959788113832474, 0.05618392303586006, -0.02998868189752102, 0.008620678447186947, 0.04439350217580795, 0.026143979281187057, 0.005626081954687834, 0.021581599488854408, -0.06284807622432709, 0.005540643818676472, -0.02012915536761284, 0.02076139487326145, 0.009466513060033321, 0.043504949659109116, 0.030877236276865005, 0.01874506287276745, -0.052595533430576324, 0.06995650380849838, -0.06934135407209396, -0.020248768851161003, 0.007864553481340408, -0.04008743539452553, 0.028912166133522987, -0.04001908376812935, 0.028040699660778046, 0.030364608392119408, 0.03195375204086304, -0.02636611834168434, -0.0432315468788147, 0.0432315468788147, -0.027169233188033104, -0.026109803467988968, 0.017839420586824417, 0.026229416951537132, 0.013328303582966328, -0.033747948706150055, -0.055261194705963135, -0.033679597079753876, 0.01110691949725151, -0.02383715845644474, -0.04476942867040634, 0.038686253130435944, 0.0012324408162385225, -0.051980383694171906, 0.04890462011098862, -0.0513310544192791, -0.02930517867207527, 0.003838295117020607, -0.027596423402428627, 0.0112265320494771, -0.01039778534322977, 0.002268374664708972, -0.011773334816098213, -0.00698027154430747, 0.003750721225515008, 0.015412986278533936, -0.007313479203730822, -0.012986551970243454, 0.014413363300263882, 0.00538685591891408, 0.027169233188033104, -0.037934400141239166, -0.027664773166179657, -0.01117526926100254, 0.029493141919374466, 0.010534485802054405, 0.0013670054031535983, 0.003391882171854377, -0.010440504178404808, -0.006283953320235014, 0.05075007677078247, 0.00781756266951561, -0.03467067703604698, -0.0476059652864933, 0.01860836148262024, 0.043812524527311325, 0.005732879042625427, -0.07272469252347946, -0.005843948107212782, -0.02238471433520317, -0.015301917679607868, 0.011901491321623325, -0.029031777754426003, 0.034123875200748444, 0.06592383980751038, 0.004494030494242907, 0.014327925629913807, -0.04620478302240372, 0.011773334816098213, 0.051912032067775726, -0.05468021705746651, 0.0023986673913896084, -0.018984287977218628, 0.01847166195511818, 0.0068093957379460335, 0.0374901257455349, 0.07272469252347946, -0.0035050874575972557, -0.0034239215310662985, 0.011747702956199646, -0.0621303990483284, 0.04271892085671425, 0.014396276324987411, 0.04008743539452553, -0.10751497745513916, 0.019633615389466286, 0.035405442118644714, -0.019103901460766792, 0.010132928378880024, -0.05399671569466591, -0.06999067962169647, 0.023051129654049873, 0.02829701267182827, 0.020658869296312332, 0.05594469979405403, 0.07614220678806305, -0.06530868262052536, 0.07251963764429092, 0.046614885330200195, 0.010218366049230099, 0.004051889758557081, 0.029869068413972855, -0.014532976783812046, 0.02417890913784504, 0.08728329837322235, 0.003235958283767104, -0.07368159294128418, 0.009261461906135082, 0.043334074318408966, 0.0509893037378788, 0.006006280425935984, -0.021872086450457573, -0.016421152278780937, -0.0003812663780990988, -0.0014257439179345965, -0.03591806814074516, 0.020641783252358437, 0.008466890081763268, -0.0018422534922137856, -0.00020411633886396885, 0.08222537487745285, 0.006309584714472294, -0.03940393403172493, -0.03366250917315483, 0.023307442665100098, -0.0069290087558329105, 0.023085305467247963, -0.020915184170007706, -0.022914428263902664, 0.0045196618884801865, -0.04603390768170357, 0.03988238424062729, 0.037831876426935196, 0.0006375798839144409, 0.0009270005975849926, -0.00410101655870676, 0.000766804616432637, -0.06770094484090805, -0.025272512808442116, 0.02103479579091072, 0.02957857958972454, 0.009526318870484829, -0.0024157550651580095, -0.011072744615375996, -0.018557099625468254, -0.028143225237727165, -0.011892947368323803, 0.014191225171089172, -0.003141976660117507, -0.0007491830619983375, -0.052219606935977936, -0.02106897160410881, 0.08051662147045135, 0.031218986958265305, 0.018847588449716568, -0.027801472693681717, -0.03861790522933006, -0.014199769124388695, -0.05652567371726036, 0.017215725034475327, -0.040497537702322006, 0.035132039338350296, -0.013054901733994484, 0.033987171947956085, -0.018010297790169716, -0.018762150779366493, 0.03649904578924179, 0.03268851712346077, -0.021393636241555214, 0.00604472728446126, -0.02082974649965763, 0.003400426125153899, -0.046819936484098434, 0.02262393943965435, -0.046580709517002106, -0.05850783362984657, -0.005369768477976322, 0.0013990446459501982, 0.03977986052632332, -0.006963184103369713, 0.01725844293832779, -0.030039945617318153, -0.017173005267977715, -0.008825728669762611, -0.0009494280093349516, -0.03967733308672905, 0.014985796995460987, 0.07060582935810089, -0.005322777666151524, -0.01355898566544056, -0.04777684062719345, -0.07737250626087189, -0.020607607439160347, 0.019018463790416718, -0.024554835632443428, -0.08058497309684753, 0.04429097846150398, 0.05837113410234451, -0.07245128601789474, 0.05071590095758438, 0.020334206521511078, -0.027579335495829582, 0.06202787160873413, 0.008539511822164059, 0.003825479419901967, -0.03113354928791523, 0.0035947971045970917, 0.0166347473859787, 0.03725089877843857, -0.02272646501660347, 0.030244994908571243, 0.016002507880330086, -0.07791931182146072, -0.024264346808195114, -0.006053271237760782, -0.020077893510460854, 0.06746172159910202, -0.012046735733747482, 0.06711997091770172, 0.01830078475177288, 0.020248768851161003, 0.028929252177476883, 0.049383070319890976, 0.04408592730760574, -0.05054502561688423, -0.03591806814074516, -0.014584239572286606, -0.06971728056669235, 0.044017575681209564, -0.05375748872756958, 0.0008111255010589957, 0.041078515350818634, 0.01666892319917679, -0.009073498658835888, -0.0028301284182816744, -0.040975987911224365, 0.07573210448026657, -0.05081842839717865, -0.010209822095930576, 0.058131907135248184, 0.024930762127041817, 0.032671429216861725, -0.035371266305446625, 0.06506945937871933, -0.021154409274458885, -0.0209322702139616, 0.03157782554626465, -0.017181549221277237, -0.055602945387363434, 0.03735342249274254, 0.012320136651396751, -0.0063565755262970924, -0.018796324729919434, 0.033372022211551666, 0.020334206521511078, 0.014464626088738441, 0.040736760944128036, -0.0022213838528841734, 0.020949358120560646, -0.003821207443252206, -0.007014446891844273, -0.05338156223297119, -0.09022235870361328, 0.021256934851408005, -0.0170533936470747, 0.05297145992517471, -0.01670309714972973, 0.02103479579091072, -0.049793172627687454, -0.04893879592418671, -0.06701744347810745, -0.038207802921533585, -0.0022384715266525745, -0.05321068689227104, 0.010944587178528309, -0.023341618478298187, 0.0032039189245551825, -0.03591806814074516, -0.014686765149235725, -0.030450046062469482, -0.002420026808977127, -0.02829701267182827, 0.04278727248311043, -0.02221383899450302, 0.034192223101854324, 0.0779876634478569, -0.007903000339865685, 0.023187829181551933, -0.02940770424902439, -0.03058674745261669, 0.007962807081639767, -0.020334206521511078, 0.013772579841315746, 0.035678841173648834, -0.07518529891967773, -0.01937730237841606, 0.014054524712264538, 0.05857618525624275, 0.02857041358947754, 0.015028515830636024, -0.005168989300727844, -0.026143979281187057, -0.022435976192355156, -0.03449980169534683, 0.00903077982366085, -0.022367626428604126, -0.06435178220272064, -0.010158559307456017, -0.04723003879189491, -0.06465935707092285, -0.0038938296493142843, 0.02002662979066372, 0.08851360529661179, 0.006480460055172443, -0.027203409001231194, 0.07552704960107803, 0.0053270491771399975, 0.025973103940486908, -0.044154275208711624, 0.029629843309521675, 0.055397894233465195, -0.0042441245168447495, -0.027510983869433403, -0.002704107668250799, 0.0021412859205156565, 0.043504949659109116, 0.03328658267855644, -0.006207059137523174, 0.04292397201061249, 0.007159690838307142, 0.04473525285720825, 0.05871288478374481, 0.03149238973855972, -0.027476809918880463, 0.055329546332359314, 0.030638009309768677, -0.006232690531760454, 0.005519284401088953, 0.04449602589011192, 0.0715627372264862, -0.0018903121817857027, 0.05450934171676636, 0.02214548923075199, 0.05450934171676636, 0.04743508994579315, 0.0658554881811142, -0.008586502633988857, 0.0027895455714315176, -0.028809640556573868, -0.004989570006728172, 0.02103479579091072, -0.024794060736894608, 0.027100883424282074, 0.0031398406717926264, -0.054885268211364746, -0.028895078226923943, -0.003276541130617261, -0.029185567051172256, -0.025682615116238594, 0.02019750513136387, -0.03588389232754707, 0.027579335495829582, -0.011363232508301735, -0.03684079647064209, 0.019343126565217972, 0.05427011474967003, -0.0168825164437294, 0.01871088705956936, 0.030415872111916542, 0.002960421144962311, 0.0037357695400714874, -0.013533353805541992, 0.008445530198514462, 0.02072722092270851, 0.01843748614192009, 0.03248346596956253, 0.049827348440885544, -0.014379188418388367, -0.0459313839673996, 0.019360214471817017, -0.015148129314184189, 0.04818694293498993, 0.04511117935180664, 0.08318228274583817, 0.05037415027618408, 0.030740534886717796, 0.04757178947329521, -0.08694154769182205, -0.09377657622098923, -0.028279924765229225, 0.02528960071504116, 0.05184368044137955, 0.024708623066544533, 0.03210753947496414, -0.012080910615622997, -0.01001331489533186, -0.012217611074447632, -0.02235053852200508, 0.03470484912395477, 0.004425680264830589, -0.004613643512129784, 0.006138708908110857, -0.0698881521821022, 0.010961675085127354, -0.05936221033334732, 0.007296391762793064, 0.005784141831099987, -0.05703830346465111, 0.026126891374588013, -0.03340619429945946, 0.043470773845911026, 0.031560737639665604, 0.001523997518233955, -0.04986152425408363, -0.028484975919127464, 0.0008586503099650145, 0.0415227897465229, 0.038173627108335495, -0.019701967015862465, 0.040907640010118484, -0.0034196495544165373, -0.02711797133088112, -0.06486441195011139, -0.026895832270383835, 0.005288602318614721, 0.0014364237431436777, 0.005087823607027531, -0.046444009989500046, -0.03991656005382538, 0.05331321433186531, 0.007497170474380255, 0.03960898146033287, -0.016113577410578728, -0.0017215724801644683, -0.01968487910926342, -0.0332694947719574, -0.03149238973855972, -0.040975987911224365, -0.0265028178691864, 0.018181173130869865, 0.00048192281974479556, -0.026195241138339043, -0.0054466621950268745, -0.0006936484714969993, -0.03330367058515549, -0.025750964879989624, 0.03234676644206047, 0.051946207880973816, -0.016301540657877922, 0.009278549812734127, 0.10013315081596375, -0.046512361615896225, 0.06117349490523338, 0.009551950730383396, 0.003782760351896286, -0.0119869289919734, 0.03279104456305504, -0.009927877224981785, 0.008825728669762611, 0.012055279687047005, 0.03424348682165146, 0.014045980758965015, -0.009654476307332516, -0.04904131963849068, 0.028912166133522987, -0.019052637740969658, -0.032192979007959366, -0.04487195238471031, -0.01492599118500948, -0.0012837036047130823, -0.0072494009509682655, -0.016976498067378998, -0.07320313900709152, -0.004511117935180664, -0.009312724694609642, -0.024776974692940712, -0.02722049690783024, -0.049519773572683334, -0.023888420313596725, 0.01215780433267355, -0.0209322702139616, 0.009782632812857628, 0.011645177379250526, 0.0064761885441839695, -0.011346145533025265, -0.0045282053761184216, 0.02151324786245823, -0.03687497228384018, 0.03885712847113609, -0.03988238424062729, 0.04552128165960312, 0.0023196374531835318, 0.01590852625668049, -0.06401003152132034, 0.035678841173648834, -0.03619147092103958, -0.05898628383874893, 0.046478185802698135, 0.02681039460003376, 0.005275786854326725, -0.0054722935892641544, -0.010594292543828487, 0.03096267394721508, -0.06168612092733383, -0.049075495451688766, 0.046854112297296524, 0.0030373153276741505, -0.008449802175164223, -0.04818694293498993, -0.02089809626340866, -0.052766408771276474, 0.04429097846150398, 0.0016606979770585895, -0.006202787160873413, 0.04172784090042114, 0.008791553787887096, -0.06154942139983177, -0.013755491934716702, 0.03123607486486435, 0.00008650581730762497, 0.002560999244451523, 0.057858504354953766, 0.01677999272942543, 0.019736140966415405, -0.057448405772447586, 0.0391647070646286, -0.027716035023331642, 0.007317751180380583, -0.03564466908574104, -0.030843060463666916, -0.008765922859311104, -0.02016333118081093, -0.03349163383245468, 0.009483600035309792, 0.004959666635841131, -0.041078515350818634, 0.008548055775463581, 0.037866052240133286, -0.05413341522216797, -0.00940670631825924, 0.04569215700030327, 0.032842304557561874, 0.07778260856866837, 0.02563135139644146, 0.014498801901936531, 0.05416759103536606, 0.004472671076655388, 0.043949224054813385 ]
20,415
cron_descriptor.ExpressionDescriptor
get_day_of_month_description
Generates a description for only the DAYOFMONTH portion of the expression Returns: The DAYOFMONTH description
def get_day_of_month_description(self): """Generates a description for only the DAYOFMONTH portion of the expression Returns: The DAYOFMONTH description """ expression = self._expression_parts[3] if expression == "L": description = self._(", on the last day of the month") elif expression == "LW" or expression == "WL": description = self._(", on the last weekday of the month") else: regex = re.compile(r"(\d{1,2}W)|(W\d{1,2})") m = regex.match(expression) if m: # if matches day_number = int(m.group().replace("W", "")) day_string = self._("first weekday") if day_number == 1 else self._("weekday nearest day {0}").format(day_number) description = self._(", on the {0} of the month").format(day_string) else: # Handle "last day offset"(i.e.L - 5: "5 days before the last day of the month") regex = re.compile(r"L-(\d{1,2})") m = regex.match(expression) if m: # if matches off_set_days = m.group(1) description = self._(", {0} days before the last day of the month").format(off_set_days) else: description = self.get_segment_description( expression, self._(", every day"), lambda s: s, lambda s: self._(", every day") if s == "1" else self._(", every {0} days"), lambda s: self._(", between day {0} and {1} of the month"), lambda s: self._(", on day {0} of the month"), lambda s: self._(", {0} through {1}") ) return description
(self)
[ 0.06459547579288483, 0.018103191629052162, 0.05266382917761803, 0.007499359548091888, 0.006821424700319767, -0.06706409901380539, 0.018299559131264687, -0.027210893109440804, -0.04810062795877457, -0.037702515721321106, 0.034934669733047485, 0.028445200994610786, 0.03706665709614754, -0.007284290622919798, 0.009687451645731926, 0.06074294075369835, 0.019187886267900467, -0.011959701776504517, -0.008958087302744389, 0.03042757511138916, -0.014072987250983715, -0.03250345587730408, -0.00014712933625560254, -0.011772684752941132, 0.021600399166345596, 0.016513552516698837, -0.009224586188793182, -0.013165957294404507, -0.021375980228185654, -0.04791361093521118, -0.016953039914369583, -0.028482604771852493, -0.05823691934347153, 0.0004067607515025884, 0.0007708583725616336, 0.022404570132493973, 0.034934669733047485, 0.041405439376831055, -0.09380744397640228, 0.04896090552210808, 0.02788415178656578, -0.013240763917565346, 0.05745144933462143, 0.03205461800098419, -0.05075626075267792, -0.053075265139341354, 0.02296561934053898, -0.019468411803245544, 0.0017813316080719233, -0.01748603768646717, 0.019225290045142174, -0.029380282387137413, 0.027566224336624146, -0.07581646740436554, -0.000525107083376497, 0.01864553987979889, 0.02433083951473236, 0.06272531300783157, 0.0514669232070446, 0.05988266319036484, -0.037833426147699356, 0.030708100646734238, 0.007765857968479395, 0.02930547669529915, -0.06145360320806503, 0.05176614969968796, 0.018972817808389664, -0.0093180937692523, 0.020889736711978912, 0.027977660298347473, -0.008584055118262768, -0.020964542403817177, 0.005909719504415989, 0.002206793986260891, 0.005699326284229755, -0.029847824946045876, -0.038487982004880905, -0.023489264771342278, 0.015157682821154594, -0.008467169478535652, -0.03889942169189453, 0.01522313803434372, -0.003389673074707389, -0.03386867791414261, 0.05464620515704155, -0.05131731182336807, 0.03471025079488754, 0.022759901359677315, -0.006526873912662268, -0.010875006206333637, -0.04933493584394455, -0.03203591704368591, -0.005213083233684301, 0.04944714903831482, -0.0684480145573616, -0.008911333046853542, -0.04869908094406128, 0.02507890574634075, -0.00009146273077931255, 0.027061279863119125, 0.029604703187942505, -0.011370599269866943, -0.014568581245839596, -0.010080186650156975, 0.00757416570559144, -0.0010846953373402357, -0.0647076889872551, -0.023507967591285706, -0.02143208496272564, -0.028052465990185738, -0.07387149333953857, -0.0033920106943696737, -0.01636393927037716, -0.032653070986270905, -0.019748935475945473, 0.05995747074484825, -0.006405313033610582, -0.009874467737972736, -0.018832555040717125, -0.03399958834052086, 0.001063656061887741, -0.01596185378730297, -0.05539426952600479, 0.00340603687800467, 0.043051183223724365, -0.02575216442346573, -0.014035584405064583, -0.03298969939351082, 0.01224022638052702, -0.033307626843452454, -0.009930573403835297, 0.03654301166534424, 0.04002152010798454, -0.02992263063788414, -0.020740123465657234, -0.011997104622423649, -0.007181431166827679, -0.017149407416582108, -0.0885709896683693, 0.07155249267816544, -0.023003023117780685, 0.0007591698667965829, -0.0329148955643177, 0.017663702368736267, -0.06145360320806503, 0.007153378799557686, 0.02193702943623066, 0.08400778472423553, 0.00835963524878025, 0.018047086894512177, -0.0027327777352184057, -0.01864553987979889, 0.006999090313911438, -0.07286160439252853, 0.05326228216290474, 0.011632422916591167, 0.018477223813533783, 0.06149100512266159, -0.028482604771852493, 0.007302992045879364, 0.04424808919429779, 0.001992893870919943, -0.04839985445141792, 0.02880053222179413, 0.02371368557214737, 0.05337449163198471, 0.042938973754644394, -0.04529538378119469, 0.025004098191857338, -0.004899830557405949, -0.0448465421795845, 0.04847466200590134, -0.019243991002440453, 0.01598055474460125, -0.03394348546862602, 0.09358302503824234, 0.02077752724289894, 0.042527537792921066, -0.02232976257801056, 0.03828226402401924, 0.020440896973013878, 0.05322488024830818, -0.0923113152384758, -0.005853614769876003, -0.04099400341510773, 0.02092714048922062, -0.051429521292448044, -0.013203361071646214, -0.036711327731609344, -0.005820886697620153, -0.010669288225471973, 0.01853332854807377, 0.04765179008245468, 0.001217944547533989, -0.08026745915412903, -0.02522851713001728, -0.011323845945298672, 0.024143822491168976, 0.015167033299803734, -0.03218552842736244, -0.0009958625305444002, 0.07794845104217529, -0.007148703560233116, 0.048250243067741394, 0.014026232995092869, 0.036954447627067566, -0.04249013587832451, 0.042303118854761124, -0.13345493376255035, -0.006134139373898506, 0.039123840630054474, -0.0008947568130679429, -0.02178741618990898, 0.02827688679099083, -0.00004248049299349077, 0.007125326432287693, -0.0032003188971430063, 0.08071629703044891, -0.08617717772722244, 0.018692294135689735, -0.07102884352207184, -0.002239521825686097, 0.03626248985528946, -0.02040349319577217, 0.055992722511291504, -0.04424808919429779, 0.04881129041314125, -0.021226366981863976, -0.0042218961752951145, -0.03691704571247101, -0.0583491288125515, -0.05468360707163811, -0.007709752768278122, -0.014811702072620392, 0.039385661482810974, -0.005886342376470566, -0.00706454599276185, -0.0024966695345938206, 0.006550251040607691, 0.020497001707553864, -0.04566941410303116, -0.026070091873407364, -0.008668212220072746, 0.038338370621204376, 0.046978529542684555, -0.013857918791472912, 0.018692294135689735, 0.008887956850230694, -0.027061279863119125, -0.02739790827035904, -0.02926807291805744, -0.03802044317126274, 0.050382230430841446, -0.009004841558635235, 0.023919403553009033, -0.02195573039352894, 0.008916009217500687, 0.08797253668308258, 0.032129425555467606, -0.04742737114429474, 0.06796177476644516, -0.010856304317712784, -0.006241673603653908, -0.03740328922867775, -0.012576855719089508, 0.023040425032377243, 0.009304068051278591, -0.014241302385926247, 0.03983450308442116, -0.0015008070040494204, 0.0769011601805687, -0.0015019758138805628, -0.051915764808654785, 0.005086847115308046, 0.0001788344670785591, 0.04978377744555473, -0.008733667433261871, -0.04260234534740448, -0.041255827993154526, 0.0372723750770092, 0.005559063516557217, -0.0007001428166404366, -0.014680790714919567, 0.06294973194599152, -0.009967976249754429, 0.033176716417074203, 0.004614630714058876, -0.045444995164871216, 0.0258643738925457, 0.02547163888812065, 0.0012202822836115956, -0.035065583884716034, 0.0226850938051939, 0.011688527651131153, 0.01608341373503208, 0.036954447627067566, 0.06085515022277832, -0.04009632393717766, -0.010014730505645275, -0.017916174605488777, -0.050382230430841446, 0.0512051023542881, 0.08079110085964203, -0.0060733589343726635, -0.0923113152384758, 0.008640159852802753, 0.05442178621888161, -0.008219372481107712, 0.05176614969968796, -0.04249013587832451, -0.014007531106472015, -0.025209816172719002, 0.03566403687000275, -0.0689716637134552, -0.03740328922867775, -0.005474906414747238, -0.02218014933168888, 0.02827688679099083, 0.031231746077537537, -0.014428318478167057, 0.017775913700461388, 0.029511194676160812, 0.021245067939162254, -0.017775913700461388, 0.06190244108438492, 0.004301378037780523, -0.03689834475517273, -0.005259837489575148, 0.04320079833269119, -0.01661641150712967, 0.017785264179110527, -0.05337449163198471, -0.018916713073849678, 0.04047035798430443, 0.005998552311211824, -0.1474437564611435, 0.020871035754680634, -0.06410923600196838, 0.0011606707703322172, 0.014091689139604568, 0.05475841462612152, -0.004579565022140741, -0.06762514263391495, 0.008911333046853542, 0.06388481706380844, 0.004137738607823849, 0.03489726781845093, 0.0403207466006279, -0.0021436759270727634, 0.028202079236507416, 0.037085361778736115, 0.005091522820293903, -0.02702387608587742, -0.06440846621990204, 0.0070879231207072735, 0.0182434543967247, 0.0034036992583423853, -0.034429725259542465, -0.027678433805704117, 0.037534199655056, 0.0018491250229999423, 0.029118459671735764, -0.022105343639850616, 0.021993134170770645, 0.022292360663414, -0.051915764808654785, -0.011510862037539482, 0.048998307436704636, 0.10794588923454285, -0.06624122709035873, -0.014671440236270428, 0.004397224169224501, 0.06063073128461838, 0.00005749294359702617, 0.00044474846799857914, -0.012791924178600311, 0.04275196045637131, -0.000308577116811648, -0.04207869991660118, -0.0036865617148578167, -0.009551865048706532, 0.014353511855006218, -0.01826215535402298, 0.02180611714720726, 0.00302499090321362, 0.010529025457799435, 0.0623512826859951, 0.02487318590283394, -0.040769584476947784, 0.017906824126839638, 0.0013780774315819144, -0.0024990071542561054, 0.017083952203392982, 0.012857380323112011, -0.00015706458361819386, -0.02674335055053234, -0.021656503900885582, -0.016148868948221207, -0.05337449163198471, -0.00945368129760027, 0.02713608555495739, 0.02193702943623066, -0.047464773058891296, 0.010024080984294415, -0.028239483013749123, -0.0025223842822015285, -0.003501882776618004, 0.019674129784107208, -0.05296305567026138, 0.055469077080488205, 0.03800174221396446, -0.052402008324861526, -0.04286416992545128, -0.052402008324861526, -0.029698211699724197, -0.044061072170734406, 0.023863298818469048, -0.012399190105497837, 0.035159092396497726, 0.0029010926373302937, -0.03130655363202095, -0.030334066599607468, 0.08714966475963593, 0.0258643738925457, 0.013409079052507877, -0.01878580078482628, -0.005133601371198893, 0.01139865256845951, -0.06358558684587479, 0.03220423310995102, 0.017327073961496353, 0.032260335981845856, -0.11557616293430328, -0.005839588586241007, 0.021600399166345596, -0.03433622047305107, -0.0030039516277611256, -0.0007071559084579349, 0.01376441027969122, -0.029249371960759163, -0.018159296363592148, 0.045332785695791245, 0.06343597918748856, 0.010744094848632812, -0.04948455095291138, -0.024424348026514053, 0.011379950679838657, -0.050270020961761475, -0.06377260386943817, -0.04821283742785454, -0.03269047290086746, 0.0713280737400055, -0.0006674149190075696, -0.0257334616035223, 0.03218552842736244, -0.02204923890531063, 0.056853000074625015, -0.007480657659471035, 0.03499077633023262, -0.001182878972031176, 0.04320079833269119, 0.05131731182336807, 0.0029338204767555, -0.0011723593343049288, -0.03714146465063095, -0.019187886267900467, 0.0010385257191956043, -0.03411179780960083, -0.019580621272325516, 0.013315570540726185, 0.015185735188424587, 0.01096851471811533, 0.033550750464200974, -0.00277251866646111, -0.005727378651499748, -0.024405645206570625, -0.03803914412856102, -0.01941230706870556, 0.04791361093521118, -0.02474227547645569, 0.012193472124636173, 0.04447250813245773, 0.019805042073130608, -0.06025669723749161, -0.026275809854269028, 0.04551980271935463, 0.015559768304228783, -0.04600604623556137, -0.016766024753451347, -0.05505764111876488, -0.031250447034835815, 0.06541834771633148, 0.04551980271935463, -0.08198800683021545, 0.017944227904081345, -0.024517854675650597, -0.005493607837706804, -0.006765319965779781, 0.019206589087843895, 0.020384792238473892, -0.04727775603532791, -0.03336373344063759, 0.009827714413404465, -0.004109686240553856, -0.015569118782877922, -0.029193267226219177, 0.028837935999035835, 0.007130001671612263, 0.04780140146613121, -0.0519905723631382, 0.008537300862371922, -0.03757160156965256, 0.011062022298574448, 0.01554106641560793, -0.05049443989992142, 0.011856842786073685, 0.022872110828757286, 0.040395550429821014, 0.031231746077537537, 0.0380578450858593, -0.00215770211070776, -0.0466793030500412, -0.028744427487254143, -0.03693574666976929, -0.03186760097742081, 0.025022799149155617, -0.08281087875366211, -0.039871904999017715, -0.011856842786073685, -0.03536481037735939, 0.025153711438179016, -0.013539990410208702, 0.05427217110991478, 0.0188980121165514, -0.028837935999035835, 0.045444995164871216, -0.04144284501671791, -0.012286980636417866, -0.05023261532187462, 0.08251165598630905, -0.021076753735542297, -0.00402085343375802, -0.03209201991558075, 0.00939290039241314, -0.017018496990203857, 0.05131731182336807, 0.08236204087734222, -0.001657433225773275, 0.058760564774274826, -0.0004465017409529537, 0.022348465397953987, 0.028576111420989037, 0.017448633909225464, -0.008065083995461464, 0.054945431649684906, 0.02498539723455906, -0.0007194288773462176, 0.040395550429821014, -0.0012518413132056594, -0.022759901359677315, -0.053561508655548096, 0.021245067939162254, 0.07334785163402557, 0.037534199655056, 0.0015615873271599412, 0.03031536564230919, -0.008916009217500687, -0.03018445335328579, -0.023264845833182335, 0.025022799149155617, -0.005213083233684301, -0.039348259568214417, 0.061416201293468475, -0.029062354937195778, -0.010472920723259449, 0.03211072459816933, -0.025452937930822372, -0.04035814851522446, 0.04974637180566788, 0.012558153830468655, -0.04462212324142456, -0.022385867312550545, 0.015662627294659615, -0.06586719304323196, -0.004904506262391806, 0.0769011601805687, 0.023545369505882263, 0.002714076079428196, 0.004203194752335548, -0.03461674228310585, -0.012520750984549522, 0.01586834527552128, 0.024630066007375717, 0.0017076939111575484, 0.0026836858596652746, 0.014568581245839596, -0.03179279342293739, 0.0013161281822249293, -0.004771256819367409, -0.02195573039352894, -0.04462212324142456, 0.04821283742785454, 0.03031536564230919, 0.03471025079488754, 0.018411768600344658, 0.006769995205104351, 0.04106881096959114, -0.02663114108145237, -0.02967950887978077, -0.013932724483311176, -0.029006250202655792, -0.020983245223760605, 0.06762514263391495, 0.03437362238764763, 0.01337167527526617, -0.009939923882484436, 0.023133933544158936, 0.025153711438179016, -0.00912172719836235, -0.018075138330459595, -0.05288824811577797, 0.04069477692246437, -0.03207331895828247, -0.003263436956331134, -0.03171798959374428, 0.0102110980078578, -0.004287351854145527, -0.033288925886154175, -0.005189706105738878, -0.0009964469354599714, -0.0131940096616745, 0.06489470601081848, -0.04073218256235123, -0.051018085330724716, -0.014540527947247028, 0.03216682747006416, 0.022124044597148895, -0.023881999775767326, -0.03173669055104256, -0.00406293198466301, -0.028744427487254143, 0.04918532446026802, 0.024536557495594025, -0.052551619708538055, -0.03680483624339104, 0.07514320313930511, -0.017944227904081345, -0.05891017988324165, 0.009547189809381962, 0.004105011001229286, -0.014877158217132092, 0.00835963524878025, 0.019318798556923866, 0.024499153718352318, -0.02419992722570896, -0.0001883313962025568, -0.001992893870919943, -0.028688322752714157, -0.015606521628797054, -0.03764640912413597, 0.0029221319127827883, -0.03233514353632927, -0.016896935179829597, -0.06085515022277832, 0.026575036346912384, -0.02118896320462227, 0.023900700733065605, 0.03800174221396446, 0.03611287474632263, -0.01686888374388218, 0.031100833788514137, -0.04106881096959114, 0.11752112954854965, 0.01865489035844803, -0.04020853340625763, 0.02246067486703396, 0.050270020961761475, 0.06399702280759811, 0.046716708689928055, 0.003298502415418625, 0.07824768126010895, -0.017448633909225464, 0.004528135526925325, 0.0032517483923584223, -0.012333733960986137, 0.03254086151719093, -0.041891682893037796, 0.005423476919531822, -0.008574703708291054, -0.06515652686357498, -0.04828764498233795, -0.005652572028338909, 0.016887584701180458, 0.021226366981863976, 0.07364707440137863, 0.006059332750737667, -0.08363375067710876, 0.02588307484984398, 0.022161448374390602, -0.004862427711486816, 0.02292821556329727, 0.019113080576062202, 0.019169185310602188, 0.019561920315027237, 0.007728454656898975, -0.05891017988324165, -0.03686093911528587, -0.013755058869719505, -0.021974431350827217, 0.019711533561348915, 0.028052465990185738, 0.05790029093623161, 0.00026985889417119324, -0.06571757793426514, 0.038974225521087646, -0.06732591986656189, -0.042938973754644394, -0.009051595814526081, 0.015082876197993755, -0.015428856015205383, 0.02685556188225746, -0.039348259568214417, 0.02457396127283573, -0.0009251469746232033, -0.025527743622660637, 0.022535480558872223, -0.028707023710012436, -0.009687451645731926, 0.03044627606868744, -0.0364869087934494, -0.03341984003782272, 0.04978377744555473, 0.07016856968402863, 0.01394207589328289, 0.008051058277487755, 0.04159245640039444, 0.014559229835867882, -0.012642311863601208, -0.034055694937705994, -0.02103934995830059, -0.023283546790480614, 0.04103140905499458, 0.02345186099410057, 0.017280319705605507, 0.0035860403440892696, 0.07278680056333542, -0.05790029093623161, 0.03742199018597603, -0.006092060822993517, -0.02702387608587742, 0.0025200466625392437, -0.0567781925201416, 0.013558692298829556, 0.00018964636547025293, -0.02992263063788414, -0.05401035025715828, 0.04454731568694115, 0.0013137905625626445, 0.025322025641798973, 0.02156299538910389, -0.001382752787321806, -0.02410641871392727, 0.01268906518816948, 0.02535942941904068, 0.01685953140258789, -0.01477429922670126, -0.01394207589328289, 0.02419992722570896 ]
20,416
cron_descriptor.ExpressionDescriptor
get_day_of_week_description
Generates a description for only the DAYOFWEEK portion of the expression Returns: The DAYOFWEEK description
def get_day_of_week_description(self): """Generates a description for only the DAYOFWEEK portion of the expression Returns: The DAYOFWEEK description """ if self._expression_parts[5] == "*": # DOW is specified as * so we will not generate a description and defer to DOM part. # Otherwise, we could get a contradiction like "on day 1 of the month, every day" # or a dupe description like "every day, every day". return "" def get_day_name(s): exp = s if "#" in s: exp, _ = s.split("#", 2) elif "L" in s: exp = exp.replace("L", '') return ExpressionDescriptor.number_to_day(int(exp)) def get_format(s): if "#" in s: day_of_week_of_month = s[s.find("#") + 1:] try: day_of_week_of_month_number = int(day_of_week_of_month) choices = { 1: self._("first"), 2: self._("second"), 3: self._("third"), 4: self._("forth"), 5: self._("fifth"), } day_of_week_of_month_description = choices.get(day_of_week_of_month_number, '') except ValueError: day_of_week_of_month_description = '' formatted = "{}{}{}".format(self._(", on the "), day_of_week_of_month_description, self._(" {0} of the month")) elif "L" in s: formatted = self._(", on the last {0} of the month") else: formatted = self._(", only on {0}") return formatted return self.get_segment_description( self._expression_parts[5], self._(", every day"), lambda s: get_day_name(s), lambda s: self._(", every {0} days of the week").format(s), lambda s: self._(", {0} through {1}"), lambda s: get_format(s), lambda s: self._(", {0} through {1}") )
(self)
[ 0.05419178307056427, -0.012177299708127975, 0.06538072228431702, -0.010116669349372387, 0.011049081571400166, -0.05135725066065788, 0.02301192656159401, -0.02856910228729248, -0.01817270927131176, 0.0051422519609332085, 0.048149753361940384, 0.0356367826461792, 0.05587012320756912, -0.015133045613765717, 0.007585171144455671, 0.04800056666135788, 0.03494679927825928, -0.0016643552808091044, -0.016764767467975616, 0.003354351967573166, -0.016969896852970123, -0.0646347925066948, 0.011347453109920025, -0.00925885047763586, 0.010265855118632317, 0.05449015274643898, -0.04016830772161484, 0.004960431717336178, -0.03477896377444267, -0.07000549137592316, -0.025473494082689285, -0.04087693989276886, -0.05124536156654358, -0.006517559289932251, 0.013622538186609745, 0.03548759967088699, -0.01299782283604145, 0.021314937621355057, -0.0776512622833252, 0.03852726146578789, 0.027524800971150398, 0.0017878998769447207, 0.028009654954075813, -0.013408083468675613, -0.06097973883152008, -0.026368608698248863, 0.039795342832803726, 0.017370834946632385, -0.015711141750216484, -0.028363971039652824, 0.03796781226992607, 0.01984172686934471, 0.006965117063373327, -0.06303104758262634, -0.04967890679836273, 0.011412722058594227, 0.007725032977759838, 0.06004732847213745, 0.05318477749824524, 0.06545531749725342, -0.03860185295343399, 0.045911964029073715, 0.023888394236564636, 0.04442010447382927, -0.05490041524171829, 0.05031294748187065, 0.03686756640672684, -0.01168312132358551, -0.00017045655113179237, 0.027170483022928238, 0.007482605986297131, 0.006718027871102095, 0.0008613155223429203, 0.009995455853641033, -0.011822983622550964, -0.042033128440380096, -0.04673248529434204, -0.043002840131521225, 0.0390494130551815, -0.010993137024343014, -0.013165656477212906, 0.014993184246122837, 0.006634111050516367, -0.0390121154487133, 0.06448560953140259, -0.044904958456754684, 0.0388629287481308, 0.037762682884931564, 0.024466488510370255, 0.003328710561618209, -0.014303199015557766, -0.00485786609351635, -0.03054581582546234, 0.018638914451003075, -0.054975006729364395, -0.011505963280797005, -0.04318932071328163, 0.023832449689507484, 0.01168312132358551, 0.022788148373365402, 0.03317521512508392, -0.017016516998410225, -0.028457213193178177, -0.006135270465165377, -0.001839182572439313, -0.003610765328630805, -0.04277905821800232, -0.012736747041344643, -0.027841821312904358, -0.03276495635509491, -0.04673248529434204, -0.03765079379081726, -0.008965141139924526, -0.0421450212597847, 0.003801909741014242, 0.0259769968688488, 0.0089418301358819, 0.0039068059995770454, 0.008983789011836052, -0.048858385533094406, 0.013519973494112492, -0.01980442926287651, -0.08026202023029327, 0.042033128440380096, -0.0005032110493630171, -0.0005766385002061725, -0.01818203367292881, -0.015767086297273636, 0.054303672164678574, -0.02304922230541706, 0.030601760372519493, 0.010415040887892246, 0.03934778273105621, -0.005683050956577063, 0.009585194289684296, -0.01972983591258526, -0.014051447622478008, -0.002106085419654846, -0.06314293295145035, 0.05359503626823425, -0.043935250490903854, -0.015608576126396656, -0.03436870500445366, 0.055609047412872314, -0.05445285886526108, 0.00680194515734911, -0.016009513288736343, 0.06866281479597092, -0.0033636761363595724, 0.0178556889295578, -0.006974441464990377, -0.0022587678395211697, 0.006219187751412392, -0.05225236341357231, 0.06981900334358215, -0.014051447622478008, 0.011934872716665268, 0.012279865331947803, -0.007118965033441782, -0.015599251724779606, 0.04274176433682442, -0.007874218747019768, -0.01185095589607954, 0.05381881818175316, 0.005202858708798885, 0.06206133961677551, 0.015608576126396656, -0.0616883747279644, 0.06418723613023758, 0.01395820640027523, -0.02526836283504963, 0.04318932071328163, -0.02687211148440838, 0.038452669978141785, -0.04374876618385315, 0.06579098850488663, 0.020363876596093178, 0.04993998259305954, -0.015990864485502243, 0.017380159348249435, 0.0009603843209333718, 0.047851379960775375, -0.10196857154369354, -0.004286763723939657, -0.026331312954425812, 0.02498864009976387, -0.03211226686835289, -0.023105166852474213, -0.018359191715717316, 0.005990746896713972, -0.03608434274792671, 0.016335858032107353, 0.028401266783475876, 0.04013101011514664, -0.0421823151409626, -0.03043392486870289, -0.027412910014390945, 0.010582875460386276, -0.009678435511887074, -0.030918778851628304, -0.008783320896327496, 0.10002915561199188, 0.01595356874167919, 0.05683983117341995, -0.010312476195394993, 0.013939558528363705, -0.010098021477460861, 0.03188848868012428, -0.1233767494559288, -0.0129698496311903, 0.018946610391139984, 0.011487315408885479, -0.021837087348103523, 0.015496686100959778, 0.01526358351111412, -0.011776362545788288, 0.011272860690951347, 0.046210333704948425, -0.10249072313308716, -0.005338058341294527, -0.07108708471059799, 0.009808973409235477, 0.049828093498945236, -0.07399620860815048, 0.06642502546310425, -0.051394544541835785, 0.039422377943992615, -0.05654146149754524, -0.007058358285576105, -0.018070142716169357, -0.04345039650797844, -0.05296099931001663, 0.02041982114315033, -0.016699498519301414, 0.03472302109003067, 0.015300880186259747, -0.02103521302342415, -0.02204221859574318, 0.05016376078128815, 0.011366101913154125, -0.0389748178422451, -0.03308197483420372, 0.0014091075863689184, 0.02239653468132019, 0.019617946818470955, -0.013836992904543877, -0.0074126748368144035, 0.019039852544665337, -0.04095153138041496, -0.03382790461182594, -0.016708821058273315, -0.07112438231706619, 0.019916318356990814, -0.02308651991188526, 0.01475075725466013, 0.0024662294890731573, 0.011767039075493813, 0.07668155431747437, 0.026331312954425812, -0.04665789380669594, 0.05057402327656746, 0.011142322793602943, -0.022303294390439987, 0.003769275266677141, -0.02006550505757332, 0.004676045849919319, -0.004773949272930622, -0.0009801980340853333, 0.009836945682764053, -0.011925548315048218, 0.05232695862650871, 0.00955722201615572, -0.03022879548370838, 0.013035118579864502, -0.00357113778591156, 0.012550264596939087, -0.006289118435233831, -0.007505916059017181, -0.04826164245605469, 0.0138090206310153, -0.015086425468325615, 0.008550217375159264, -0.019263630732893944, 0.10965164005756378, 0.002666698070243001, 0.026778871193528175, -0.006610800512135029, -0.010797330178320408, 0.027767227962613106, 0.013408083468675613, 0.009118989109992981, -0.010303151793777943, 0.04415902867913246, -0.016317209228873253, -0.006088649854063988, 0.06295645236968994, 0.06239700689911842, -0.02849450893700123, -0.008932506665587425, 0.019953615963459015, -0.014834674075245857, 0.06851363182067871, 0.04975350201129913, 0.008680755272507668, -0.09846270084381104, 0.008335762657225132, 0.04512873664498329, 0.0074080126360058784, 0.031217152252793312, -0.05038754269480705, -0.03446194529533386, -0.043375805020332336, 0.04158557206392288, -0.04020560160279274, 0.013473352417349815, -0.029725292697548866, -0.020997917279601097, 0.023198409005999565, 0.044345512986183167, 0.006116622127592564, 0.01003275252878666, 0.045911964029073715, -0.013743751682341099, -0.011356777511537075, 0.05900302901864052, -0.012279865331947803, -0.025809163227677345, -0.008373059332370758, 0.028382619842886925, -0.01475075725466013, 0.007906853221356869, -0.04345039650797844, -0.0005440040840767324, 0.04807515814900398, 0.004062985070049763, -0.08622945845127106, 0.040056414902210236, -0.006083987653255463, -0.023534078150987625, -0.022545721381902695, 0.04897027462720871, 0.021203046664595604, -0.06981900334358215, 0.0023298643063753843, 0.07358594983816147, -0.026126181706786156, -0.0016095760511234403, 0.0323173962533474, 0.027767227962613106, -0.02362731844186783, 0.04475577175617218, -0.028662342578172684, -0.005589809734374285, -0.030303388833999634, 0.054378263652324677, 0.030060959979891777, 0.035841915756464005, -0.02461567521095276, -0.024746213108301163, 0.02948286570608616, 0.0455017015337944, 0.026816166937351227, -0.012223920784890652, 0.01621464267373085, 0.017771771177649498, -0.04110071808099747, -0.0048671904951334, 0.06344130635261536, 0.07082600891590118, -0.044867660850286484, -0.006764648482203484, 0.01591627113521099, 0.03785592317581177, -0.027356965467333794, 0.00043124050716869533, -0.04826164245605469, 0.03541300445795059, 0.015161017887294292, -0.041063420474529266, -0.010993137024343014, 0.011142322793602943, 0.06523153930902481, -0.016755443066358566, 0.05385611206293106, 0.01056422758847475, -0.031963080167770386, 0.04468118026852608, 0.02565997652709484, -0.02856910228729248, 0.004335715435445309, 0.01379969622939825, 0.0029813870787620544, 0.013417407870292664, 0.052028585225343704, -0.0000895989578566514, -0.05751116946339607, -0.01595356874167919, -0.002850849414244294, -0.0646347925066948, -0.004393991082906723, 0.03119850344955921, -0.00447091506794095, -0.0357113778591156, 0.0021830094046890736, -0.007384702563285828, -0.009958159178495407, 0.018629590049386024, 0.015673844143748283, -0.026051590219140053, 0.04837353155016899, 0.02924043871462345, -0.05971166118979454, -0.0841408520936966, -0.028419915586709976, -0.011319480836391449, -0.03479761257767677, 0.004412639420479536, 0.013930234126746655, 0.03785592317581177, -0.010377745144069195, -0.03338034823536873, -0.044308215379714966, 0.07004278153181076, 0.07593562453985214, 0.010592199862003326, -0.020941972732543945, -0.00535670667886734, 0.04065316170454025, -0.020997917279601097, 0.0323546938598156, 0.02789776585996151, 0.012568912468850613, -0.10129722952842712, -0.023869745433330536, 0.04501684755086899, -0.08197765797376633, -0.006690055597573519, -0.008335762657225132, 0.01102110929787159, -0.04042937979102135, -0.010732061229646206, 0.030377980321645737, 0.08995909988880157, -0.015487362630665302, -0.05542256683111191, -0.048858385533094406, -0.001263418118469417, -0.005790278315544128, -0.06355319917201996, -0.05732468515634537, -0.016466394066810608, 0.050089169293642044, 0.032485231757164, -0.03731512650847435, 0.009305471554398537, -0.007678412366658449, 0.055683642625808716, 0.0033030693884938955, 0.0194314643740654, 0.01595356874167919, 0.06776770204305649, 0.03837807476520538, -0.014144688844680786, -0.006787959020584822, -0.027338318526744843, -0.0178370401263237, -0.0063124289736151695, -0.04315202310681343, 0.00014430531882680953, 0.008312452584505081, 0.038900226354599, 0.029352327808737755, 0.03765079379081726, -0.013100387528538704, -0.0008811292937025428, -0.03119850344955921, -0.059226807206869125, 0.009743704460561275, 0.020289283245801926, -0.023273002356290817, 0.033193863928318024, 0.012046761810779572, 0.02372055873274803, -0.05572093650698662, -0.044308215379714966, 0.013743751682341099, 0.01627058908343315, -0.02500728890299797, -0.0357300266623497, -0.02756209671497345, -0.012550264596939087, 0.029594754800200462, 0.029109900817275047, -0.08197765797376633, 0.017995551228523254, -0.03494679927825928, 0.02815883979201317, 0.0015454727690666914, 0.0068951863795518875, 0.00987424235790968, -0.06276997178792953, -0.04419632628560066, -0.0008618982974439859, 0.0324106402695179, 0.03304467722773552, -0.019953615963459015, 0.048485420644283295, 0.04583737254142761, 0.05422907695174217, -0.0552360825240612, 0.02010280080139637, -0.049529723823070526, -0.002580449916422367, -0.0028555116150528193, -0.015655197203159332, -0.041697461158037186, 0.022657610476017, 0.06888659298419952, 0.036494601517915726, 0.03804240748286247, 0.010983812622725964, -0.008965141139924526, -0.014461709186434746, 0.012643505819141865, -0.018629590049386024, 0.003804240608587861, -0.06564179807901382, -0.023459484800696373, -0.015599251724779606, -0.026424555107951164, 0.028643693774938583, -0.005836898926645517, 0.08138091117143631, 0.0177904199808836, -0.02008415386080742, 0.03916130214929581, -0.06769310683012009, -0.03705405071377754, -0.06728284806013107, 0.07847178727388382, 0.010181938298046589, -0.007174910046160221, -0.024914046749472618, -0.0016258932882919908, -0.01591627113521099, 0.032951436936855316, 0.06657421588897705, -0.005920815747231245, 0.06601476669311523, -0.014312523417174816, 0.026200775057077408, 0.02366461418569088, 0.03699810430407524, -0.02372055873274803, 0.04635952040553093, 0.023757856339216232, -0.008321776986122131, 0.05676523968577385, 0.00436834990978241, 0.006662083324044943, -0.07645777612924576, -0.014303199015557766, 0.043301209807395935, 0.013753076083958149, 0.013417407870292664, 0.026704277843236923, -0.018676210194826126, -0.05038754269480705, -0.029967719689011574, -0.017128407955169678, -0.025212418287992477, -0.0034872207324951887, 0.0941363126039505, 0.005603795871138573, -0.03300738334655762, 0.024522433057427406, -0.04438280686736107, -0.05713820457458496, 0.051730215549468994, 0.007729694712907076, -0.05698901787400246, -0.025063233450055122, 0.008755347691476345, -0.06690987944602966, -0.006923158653080463, 0.03822888806462288, 0.04348769411444664, 0.000513700710143894, -0.026517795398831367, -0.02370191179215908, -0.005874195136129856, -0.03047122247517109, 0.0008415017509832978, 0.0178836602717638, -0.0007820604951120913, 0.0030070284847170115, -0.009356753900647163, -0.024149470031261444, -0.030005015432834625, -0.029762588441371918, -0.07037845253944397, 0.06911037117242813, 0.06131540983915329, 0.018685534596443176, 0.04773949086666107, 0.029408272355794907, 0.038751039654016495, -0.028102895244956017, -0.026704277843236923, -0.030657704919576645, -0.014489681459963322, 0.011132998391985893, 0.05900302901864052, 0.07272813469171524, -0.0007197054801508784, -0.010088697075843811, 0.013715779408812523, -0.005738995503634214, -0.051096174865961075, -0.03610299155116081, -0.07959068566560745, 0.06616394966840744, -0.06676069647073746, -0.01526358351111412, -0.06239700689911842, -0.011086378246545792, 0.011869603767991066, -0.04304013401269913, -0.027972357347607613, 0.0068439035676419735, 0.014051447622478008, 0.06411264836788177, -0.04773949086666107, -0.04669519141316414, -0.03660649433732033, 0.030900131911039352, 0.023776505142450333, 0.00389515096321702, -0.03155282139778137, -0.0036037720274180174, 0.006955793127417564, 0.07179571688175201, -0.012102707289159298, -0.042368799448013306, -0.01621464267373085, 0.06105433404445648, -0.03537571057677269, -0.09615031629800797, -0.03433140739798546, 0.0031002697069197893, -0.03505868837237358, -0.0009918531868606806, 0.003776268335059285, 0.02469026856124401, -0.0034475931897759438, 0.03185119107365608, -0.005655078217387199, -0.045315220952034, -0.02786046825349331, -0.004347370471805334, 0.03209361806511879, -0.03541300445795059, -0.018368514254689217, -0.06288186460733414, 0.01618667133152485, 0.023869745433330536, 0.033902499824762344, 0.04609844461083412, 0.016326533630490303, -0.052699923515319824, 0.02590240351855755, -0.028345322236418724, 0.11062135547399521, -0.0057110232301056385, -0.05422907695174217, 0.02075549028813839, 0.0259769968688488, 0.07712911814451218, 0.03446194529533386, -0.011440694332122803, 0.04423362389206886, -0.01748272404074669, -0.031608764082193375, -0.007990770041942596, -0.030377980321645737, 0.0028788219206035137, -0.03994452580809593, -0.05352044478058815, 0.0009906876366585493, -0.06955792754888535, -0.06627584248781204, -0.013352138921618462, -0.022937333211302757, 0.05102157965302467, 0.061128925532102585, -0.04773949086666107, -0.0356927290558815, -0.010452337563037872, 0.021986274048686028, -0.017380159348249435, 0.03352953493595123, 0.02105386182665825, 0.04285365343093872, 0.01821000501513481, 0.023571373894810677, -0.02469026856124401, -0.04662059620022774, -0.00385086121968925, 0.017398806288838387, 0.04572547972202301, 0.0045128739438951015, 0.05158102884888649, -0.03190713748335838, -0.016802063211798668, -0.006424318067729473, -0.06851363182067871, -0.014797377400100231, 0.0009463981259614229, -0.002347347093746066, 0.014881294220685959, 0.0421077236533165, -0.042331501841545105, 0.004030350595712662, -0.005449947901070118, -0.04020560160279274, 0.07578644156455994, -0.017762446776032448, 0.0018415135564282537, 0.03119850344955921, -0.048448123037815094, -0.028009654954075813, 0.023217057809233665, 0.061613779515028, 0.02178114280104637, 0.01952470652759075, 0.02398163452744484, 0.04956701770424843, 0.0014405763940885663, -0.04050397500395775, -0.05344585329294205, -0.019002554938197136, 0.022769499570131302, -0.004965093452483416, 0.009114326909184456, 0.00713295117020607, 0.03830348327755928, -0.013044442981481552, 0.013007146306335926, 0.003962750546634197, 0.0035338413435965776, -0.005934801883995533, -0.04080234467983246, 0.0017587620532140136, 0.012755394913256168, -0.002482546726241708, -0.03986993432044983, 0.0308255385607481, -0.0075292265973985195, -0.005314747802913189, 0.027487503364682198, -0.0010443013161420822, 0.0050117140635848045, 0.024522433057427406, 0.026704277843236923, 0.03151552379131317, -0.012457023374736309, 0.004240143112838268, 0.02269490621984005 ]
20,417
cron_descriptor.ExpressionDescriptor
get_description
Generates a humanreadable string for the Cron Expression Args: description_type: Which part(s) of the expression to describe Returns: The cron expression description Raises: Exception:
def get_description(self, description_type=DescriptionTypeEnum.FULL): """Generates a humanreadable string for the Cron Expression Args: description_type: Which part(s) of the expression to describe Returns: The cron expression description Raises: Exception: """ choices = { DescriptionTypeEnum.FULL: self.get_full_description, DescriptionTypeEnum.TIMEOFDAY: self.get_time_of_day_description, DescriptionTypeEnum.HOURS: self.get_hours_description, DescriptionTypeEnum.MINUTES: self.get_minutes_description, DescriptionTypeEnum.SECONDS: self.get_seconds_description, DescriptionTypeEnum.DAYOFMONTH: self.get_day_of_month_description, DescriptionTypeEnum.MONTH: self.get_month_description, DescriptionTypeEnum.DAYOFWEEK: self.get_day_of_week_description, DescriptionTypeEnum.YEAR: self.get_year_description, } return choices.get(description_type, self.get_seconds_description)()
(self, description_type=<DescriptionTypeEnum.FULL: 1>)
[ 0.07024289667606354, -0.015341020189225674, 0.06544546782970428, -0.05867895483970642, 0.03530045598745346, -0.09594850242137909, 0.027943210676312447, -0.039883069694042206, 0.003582405624911189, -0.020281651988625526, 0.015341020189225674, 0.06637631356716156, 0.005195718724280596, 0.004824276547878981, -0.005392627790570259, 0.022841472178697586, 0.002519543282687664, -0.06759357452392578, -0.02726297825574875, -0.024005025625228882, 0.020263750106096268, -0.030789444223046303, -0.022411851212382317, -0.03762756660580635, 0.01540367305278778, 0.0854228064417839, 0.032472122460603714, -0.025580300018191338, -0.017918741330504417, -0.03419060260057449, 0.004730296786874533, 0.016137607395648956, -0.08134141564369202, 0.00934423878788948, -0.02316368743777275, 0.024398844689130783, -0.04195956885814667, 0.021606313064694405, -0.03105795755982399, 0.06601829826831818, 0.025258084759116173, 0.027101870626211166, -0.014114812016487122, -0.03080734610557556, -0.04854707792401314, -0.06046903878450394, -0.0030118164140731096, -0.010686801746487617, -0.0007495976751670241, -0.085207998752594, 0.048618681728839874, 0.0007781271124258637, -0.01608390547335148, -0.038809020072221756, -0.06476523727178574, -0.0004989859298802912, 0.03845100477337837, 0.09129428118467331, 0.04471629858016968, 0.02914256788790226, -0.0553135946393013, 0.021427305415272713, -0.02067546918988228, 0.0189569890499115, -0.002409900538623333, -0.0027119773440063, -0.006014682352542877, -0.02740618586540222, 0.07246259599924088, 0.027334582060575485, 0.037949781864881516, -0.0006321233813650906, -0.03132646903395653, -0.014660787768661976, 0.027979012578725815, -0.05252106487751007, -0.05191243439912796, -0.046291571110486984, 0.06755776703357697, -0.01606600359082222, -0.0342085063457489, 0.035568967461586, 0.029876502230763435, -0.04106452688574791, 0.04700760543346405, -0.0750403180718422, 0.03324186056852341, -0.038200393319129944, 0.004591565579175949, 0.03462022542953491, -0.03827199712395668, -0.08048217743635178, -0.021158792078495026, 0.012485835701227188, -0.05273587256669998, -0.03601649031043053, -0.06365538388490677, -0.04056330397725105, 0.019905734807252884, -0.006551707163453102, 0.042675603181123734, 0.013076563365757465, -0.0017419754294678569, -0.02595621719956398, 0.028211724013090134, -0.0340115949511528, -0.04135093837976456, 0.004390181042253971, 0.000467939127702266, -0.011277529411017895, -0.05273587256669998, -0.011277529411017895, -0.03488873690366745, -0.08714129030704498, 0.027334582060575485, 0.04099292308092117, -0.03848680481314659, 0.032865941524505615, -0.013371927663683891, -0.03367147967219353, -0.0037927404046058655, 0.018831683322787285, -0.02405872941017151, 0.03291964530944824, -0.009738056920468807, 0.07321443408727646, -0.05932338163256645, -0.012575339525938034, 0.039274442940950394, -0.05574321374297142, -0.00130340491887182, 0.009290535934269428, 0.03274063766002655, 0.060934457927942276, -0.011196975596249104, 0.01487559825181961, 0.007858469150960445, 0.053881529718637466, -0.00675309170037508, 0.07045770436525345, -0.02960798889398575, 0.005625338759273291, -0.00382854207418859, -0.00001952660022652708, -0.012620092369616032, -0.05513458698987961, 0.027083970606327057, 0.023271091282367706, -0.010060272179543972, 0.015922797843813896, 0.025813011452555656, -0.012199422344565392, -0.02677965722978115, -0.02703026868402958, 0.07990934699773788, -0.026672251522541046, 0.00411495566368103, 0.03315235674381256, -0.040133681148290634, -0.0024747911375015974, 0.019440311938524246, 0.03809298574924469, 0.00263589876703918, -0.021427305415272713, 0.04059910401701927, 0.04016948491334915, 0.08313149958848953, -0.052843280136585236, 0.05019395425915718, -0.0012429895577952266, -0.0455397367477417, -0.030324023216962814, -0.022680364549160004, 0.057103678584098816, 0.005289698019623756, 0.0854228064417839, 0.008954894728958607, 0.04335583373904228, -0.02001313865184784, -0.0004413675924297422, 0.010704701766371727, 0.012521637603640556, -0.11936280131340027, 0.057962920516729355, 0.0006203759694471955, -0.021140892058610916, 0.0165135245770216, -0.029643790796399117, -0.00908915139734745, -0.013882101513445377, -0.04468049481511116, 0.028193822130560875, -0.02599201910197735, 0.0357658788561821, 0.0019500727066770196, -0.054955579340457916, -0.011904058046638966, -0.014624985866248608, -0.01571693830192089, 0.029035162180662155, -0.022483455017209053, 0.09745217114686966, 0.018008245155215263, 0.017990343272686005, 0.05828513577580452, -0.01137598417699337, 0.011716099455952644, 0.0030811820179224014, -0.06798738986253738, 0.0019467163365334272, -0.00926368497312069, 0.02572350762784481, -0.016316615045070648, 0.023145785555243492, -0.009183131158351898, -0.0067038643173873425, -0.038415201008319855, 0.02042485773563385, -0.08671166747808456, 0.02042485773563385, -0.015484226867556572, -0.02808641828596592, 0.03683992847800255, -0.03551526740193367, 0.06444302201271057, -0.004971958231180906, 0.03472762927412987, -0.022877274081110954, -0.023324795067310333, -0.006086285691708326, -0.044608891010284424, -0.04170895740389824, -0.028122220188379288, 0.026457441970705986, 0.023557504639029503, 0.007088732440024614, -0.046649590134620667, 0.04303361847996712, 0.02300257980823517, 0.02316368743777275, -0.03916703909635544, 0.014991953037679195, -0.005195718724280596, 0.03698313608765602, -0.010105024091899395, -0.03737695515155792, -0.009299485944211483, 0.02831912785768509, -0.06236652657389641, -0.04894089698791504, 0.03467392548918724, -0.025258084759116173, -0.00649352977052331, -0.01725640892982483, -0.015144110657274723, 0.032490022480487823, 0.009747006930410862, -0.026690151542425156, 0.02808641828596592, -0.052664272487163544, 0.03888062387704849, -0.008507373742759228, -0.004408081993460655, 0.015493176877498627, 0.02932157553732395, -0.043105222284793854, -0.003987411968410015, 0.008176208473742008, -0.022716166451573372, -0.03195299953222275, 0.1178591325879097, 0.08470677584409714, -0.052234649658203125, -0.0006539400783367455, -0.014759242534637451, 0.02742408588528633, -0.0039941249415278435, -0.02531178668141365, -0.014410176314413548, -0.035586871206760406, -0.006139988079667091, 0.02932157553732395, 0.029303675517439842, -0.019404510036110878, 0.03214990720152855, -0.0037121865898370743, -0.02379021607339382, 0.030467228963971138, -0.017301160842180252, 0.08563761413097382, 0.002535206498578191, 0.03419060260057449, 0.014508631080389023, -0.04020528495311737, 0.06816639751195908, 0.03941765055060387, 0.05449015647172928, -0.017086351290345192, -0.002385286847129464, 0.023109983652830124, -0.05209144577383995, 0.04056330397725105, 0.03723374754190445, -0.029894402250647545, -0.11499499529600143, 0.0189569890499115, 0.04675699397921562, -0.03377888351678848, 0.031219065189361572, 0.017614426091313362, 0.030145013704895973, -0.005916227586567402, 0.025616101920604706, 0.06361958384513855, 0.00462736701592803, 0.03317025676369667, -0.006748616695404053, 0.027119772508740425, 0.0057103680446743965, 0.00842234492301941, -0.003387733828276396, -0.006229492370039225, 0.06515906006097794, -0.004721346311271191, 0.07060091197490692, -0.03134436905384064, -0.075827956199646, 0.0014544432051479816, 0.02126619778573513, -0.012136769481003284, -0.007997199892997742, -0.04092131927609444, 0.02046065963804722, 0.02361120842397213, 0.02595621719956398, -0.012083066627383232, 0.05363091453909874, -0.036302901804447174, -0.019261304289102554, 0.002040695631876588, 0.06512325257062912, 0.009720155969262123, -0.0484754741191864, 0.01714005321264267, 0.05685306712985039, -0.01629871502518654, 0.05252106487751007, -0.01628081314265728, 0.06397759914398193, -0.023861819878220558, -0.0052986484952270985, -0.0523778572678566, -0.022053834050893784, -0.004535625223070383, -0.004810850601643324, -0.00029955935315229, 0.006054959259927273, -0.08800052851438522, 0.006748616695404053, -0.0020787350367754698, 0.013667291030287743, 0.022483455017209053, 0.01688944175839424, 0.018598971888422966, -0.05993201211094856, -0.00422236043959856, -0.0023987125605344772, 0.06487264484167099, 0.10174837708473206, -0.0048511275090277195, -0.0035756926517933607, 0.09329918026924133, 0.014079010114073753, -0.027298780158162117, -0.006296620238572359, -0.058428339660167694, 0.016522474586963654, -0.013640440069139004, -0.058428339660167694, 0.00626976927742362, -0.0001615271030459553, 0.004900354892015457, -0.046936001628637314, 0.053738322108983994, -0.05678146332502365, 0.008556601591408253, 0.029070964083075523, 0.04396446421742439, -0.04152994975447655, -0.008690857328474522, -0.013354026712477207, -0.03485293686389923, -0.007648133672773838, 0.007352769840508699, -0.002389762084931135, -0.030252419412136078, -0.007026079576462507, 0.00330046727322042, -0.06992068141698837, 0.009800709784030914, -0.019673023372888565, -0.003674147417768836, -0.009107052348554134, -0.012584290467202663, 0.011017967015504837, 0.005938603542745113, 0.03515724837779999, 0.04575454816222191, -0.0036763849202543497, -0.016647780314087868, 0.007858469150960445, -0.06687753647565842, -0.012020413763821125, -0.04557553678750992, -0.03737695515155792, -0.03891642764210701, -0.013031811453402042, -0.013828398659825325, 0.018052997067570686, 0.03143387660384178, -0.003338506678119302, -0.02166001684963703, 0.030270319432020187, 0.05481237173080444, 0.01309446431696415, 0.02955428697168827, 0.03952505439519882, 0.020747072994709015, -0.010570446029305458, -0.00015187743701972067, -0.025669803842902184, 0.04940631613135338, -0.10232120007276535, -0.010668900795280933, 0.05814192816615105, -0.07410947978496552, 0.02429143898189068, 0.005705892574042082, -0.032221511006355286, 0.015153060667216778, 0.007755538914352655, 0.012136769481003284, 0.05169762670993805, 0.00547318160533905, -0.010033420287072659, -0.006583034060895443, 0.001376127009280026, -0.024577852338552475, 0.010346685536205769, -0.00021425067097879946, -0.049442119896411896, 0.0760427713394165, 0.06440722197294235, -0.013309274800121784, 0.02910676598548889, -0.026529043912887573, 0.003732325043529272, 0.0150993587449193, -0.006341372616589069, -0.014920350164175034, 0.028623443096876144, 0.03891642764210701, -0.009961817413568497, -0.021230395883321762, -0.008355217054486275, -0.00041619452531449497, -0.007375145796686411, -0.02635003626346588, -0.010275081731379032, 0.033474572002887726, -0.017560724169015884, 0.02407662943005562, 0.012861753813922405, 0.015063556842505932, -0.012020413763821125, 0.00313488463871181, 0.014607084915041924, 0.049227308481931686, -0.00958589930087328, -0.04790264740586281, 0.02507907710969448, -0.016996847465634346, 0.0011372626759111881, -0.013837349601089954, -0.0032669033389538527, 0.002385286847129464, -0.016388218849897385, -0.003935947082936764, -0.020711271092295647, -0.006341372616589069, -0.03769917041063309, 0.032669033855199814, 0.037555962800979614, -0.015886995941400528, 0.007460175082087517, -0.004177608527243137, -0.013345075771212578, 0.018267806619405746, -0.025580300018191338, 0.036267101764678955, -0.0071245343424379826, -0.009630652144551277, 0.03538995981216431, 0.007970348931849003, 0.04725821688771248, -0.03299124911427498, 0.005450805649161339, 0.02699446678161621, 0.010158726945519447, -0.05713948234915733, -0.017507022246718407, -0.011751901358366013, 0.027943210676312447, -0.04761623218655586, -0.05574321374297142, -0.030324023216962814, 0.0660540983080864, 0.036660920828580856, 0.011993562802672386, 0.0242377370595932, -0.005231520626693964, 0.016012301668524742, -0.01626291312277317, -0.012020413763821125, 0.0035466039553284645, 0.003651771228760481, 0.0002710299158934504, -0.01679098792374134, -0.017345914617180824, 0.023861819878220558, 0.06745036691427231, -0.018419964239001274, 0.041780561208724976, 0.026529043912887573, -0.006180264987051487, 0.0390954352915287, -0.09115107357501984, -0.01636136695742607, -0.0061578890308737755, 0.03510354831814766, -0.0044036065228283405, -0.03504984453320503, 0.025025373324751854, -0.011492338962852955, -0.02703026868402958, 0.022447653114795685, 0.08270187675952911, 0.004694495350122452, 0.007540728896856308, -0.04679279401898384, 0.05699627473950386, 0.015385772101581097, 0.002602334599941969, -0.027692599222064018, -0.017059501260519028, 0.08656845986843109, 0.03359987586736679, 0.009702255018055439, 0.04951372370123863, -0.002611285075545311, -0.013407728634774685, -0.009245784021914005, 0.01872427761554718, 0.04063490778207779, 0.012745398096740246, 0.010060272179543972, -0.03651771321892738, 0.04002627730369568, -0.04700760543346405, -0.018330460414290428, -0.033904191106557846, -0.008113555610179901, 0.0830598995089531, -0.004385705571621656, -0.031577080488204956, -0.019279204308986664, -0.019655121490359306, 0.016271863132715225, -0.008851964958012104, 0.02699446678161621, -0.048797689378261566, -0.02615312673151493, -0.015761690214276314, -0.07214038819074631, -0.022429753094911575, 0.005491082556545734, 0.006068384740501642, 0.02273406647145748, 0.00867743231356144, 0.0015003141015768051, 0.023915521800518036, 0.045002710074186325, 0.0020317453891038895, 0.004931681323796511, 0.03673252463340759, -0.005110689904540777, 0.019279204308986664, -0.03934604674577713, -0.07081571966409683, 0.0523778572678566, -0.07085152715444565, -0.007035030052065849, 0.03062833659350872, 0.05978880450129509, -0.007075306959450245, -0.029643790796399117, 0.02740618586540222, -0.02042485773563385, -0.0027723924722522497, -0.01147443801164627, -0.000037165220419410616, 0.03683992847800255, 0.01876007951796055, 0.027083970606327057, -0.0026336610317230225, -0.0334208682179451, -0.0037927404046058655, -0.0032646656036376953, -0.003137122141197324, -0.08878816664218903, -0.057103678584098816, 0.07099472731351852, -0.021642114967107773, 0.003819591598585248, -0.06669852882623672, 0.02719137631356716, -0.04571874439716339, -0.08041056990623474, -0.0016770849470049143, -0.07554154098033905, 0.033546172082424164, 0.03594488650560379, -0.038594212383031845, -0.04579034820199013, -0.04324842989444733, -0.006542757153511047, 0.018366262316703796, 0.02106928825378418, -0.025472894310951233, -0.011823505163192749, -0.004126143641769886, 0.0026291857939213514, -0.03231101483106613, -0.011537090875208378, -0.022680364549160004, 0.050730980932712555, -0.031219065189361572, -0.10597297549247742, -0.010901611298322678, -0.04686439782381058, -0.02464945614337921, 0.047329820692539215, 0.01639716885983944, 0.041171930730342865, -0.022179139778017998, 0.031129561364650726, -0.0229667779058218, -0.013667291030287743, -0.020478561520576477, -0.01890328712761402, 0.007348294835537672, -0.044358279556035995, 0.005397103261202574, -0.041386742144823074, 0.00016865947691258043, -0.014311721548438072, 0.008391018956899643, 0.02166001684963703, 0.007079781964421272, -0.015054605901241302, 0.08298829197883606, -0.012100967578589916, 0.1303897202014923, 0.005182293243706226, -0.011429686099290848, 0.06777258217334747, -0.048618681728839874, 0.05642344802618027, 0.043713849037885666, -0.006054959259927273, 0.06494424492120743, -0.02527598664164543, -0.018813783302903175, 0.0021917340345680714, 0.01876007951796055, 0.007442274130880833, -0.018437864258885384, -0.017775533720850945, -0.03304494917392731, -0.05151861533522606, -0.03895222768187523, -0.00494510680437088, -0.052664272487163544, -0.004757148213684559, 0.07496871799230576, -0.01479504443705082, -0.029178369790315628, 0.004815326072275639, 0.020389055833220482, 0.011528140865266323, -0.0020608340855687857, 0.012584290467202663, 0.012843852862715721, 0.031147461384534836, 0.02427353896200657, -0.02318158745765686, -0.008203059434890747, 0.001953429076820612, 0.009406891651451588, 0.0012687220005318522, 0.04450148716568947, 0.08348951488733292, 0.014499680139124393, -0.06770097464323044, -0.0012608903925865889, -0.06634051352739334, 0.009227883070707321, 0.03549736365675926, -0.005585061851888895, 0.003866581479087472, 0.029214169830083847, -0.018151450902223587, 0.04024108871817589, 0.000034385695471428335, 0.0050525120459496975, 0.07278481125831604, -0.075827956199646, -0.019028592854738235, 0.01938661001622677, -0.020317453891038895, -0.013264521956443787, 0.019225502386689186, 0.02873084880411625, -0.025168580934405327, 0.043105222284793854, -0.0005188446375541389, 0.011017967015504837, -0.03143387660384178, 0.012584290467202663, -0.027979012578725815, -0.03281223773956299, 0.04790264740586281, 0.004009787924587727, 0.008404443971812725, -0.018419964239001274, 0.0057103680446743965, -0.04811745882034302, 0.018974890932440758, 0.013810497708618641, 0.006941050756722689, -0.011420736089348793, -0.053093891590833664, -0.040062081068754196, 0.0024792663753032684, 0.018813783302903175, -0.05724688619375229, 0.005164392292499542, 0.025848813354969025, -0.010382487438619137, 0.06630471348762512, 0.052879080176353455, -0.04804585501551628, 0.03759176284074783, 0.028587641194462776, 0.0015808679163455963, -0.03812878951430321, -0.0484754741191864, -0.03884482383728027 ]
20,418
cron_descriptor.ExpressionDescriptor
get_full_description
Generates the FULL description Returns: The FULL description Raises: FormatException: if formatting fails
def get_full_description(self): """Generates the FULL description Returns: The FULL description Raises: FormatException: if formatting fails """ try: time_segment = self.get_time_of_day_description() day_of_month_desc = self.get_day_of_month_description() month_desc = self.get_month_description() day_of_week_desc = self.get_day_of_week_description() year_desc = self.get_year_description() description = "{0}{1}{2}{3}{4}".format( time_segment, day_of_month_desc, day_of_week_desc, month_desc, year_desc) description = self.transform_verbosity(description, self._options.verbose) description = ExpressionDescriptor.transform_case(description, self._options.casing_type) except Exception: description = self._( "An error occurred when generating the expression description. Check the cron expression syntax." ) raise FormatException(description) return description
(self)
[ 0.06260214000940323, -0.02735464833676815, 0.0674675926566124, -0.03344547003507614, 0.034004095941782, -0.10213842988014221, 0.030165797099471092, -0.05546614155173302, 0.017614735290408134, -0.04418550431728363, -0.008861428126692772, 0.03708554804325104, -0.01216362789273262, 0.002799886977300048, -0.00842894334346056, 0.044798191636800766, 0.03198583796620369, -0.06123260408639908, -0.03306704759597778, 0.009343468584120274, 0.021804429590702057, -0.0182814821600914, -0.04126623272895813, -0.04245556518435478, 0.00917678140103817, 0.04299617186188698, 0.0334634929895401, -0.04310429468750954, -0.018704956397414207, -0.04724893718957901, -0.015082898549735546, -0.0015812716446816921, -0.05038445070385933, 0.025300346314907074, -0.013983666896820068, 0.024615578353405, -0.015947867184877396, 0.008834397420287132, -0.0696660503745079, 0.02593105286359787, 0.029589150100946426, 0.0037459468003362417, -0.003426088485866785, -0.023390205577015877, -0.03470688313245773, -0.04742913693189621, 0.03849112614989281, -0.0004175615613348782, 0.003009371692314744, -0.03802260011434555, 0.06061991676688194, 0.020470935851335526, -0.013866535387933254, -0.020506976172327995, -0.06926960498094559, 0.020903419703245163, 0.04598752409219742, 0.09096591919660568, 0.034094199538230896, 0.013316920027136803, -0.04159059748053551, 0.04119415208697319, -0.010604881681501865, -0.0021342660766094923, -0.038707368075847626, 0.016389362514019012, -0.005000602453947067, -0.03052620030939579, 0.05618695169687271, 0.02113768272101879, 0.01301958691328764, 0.0037684720009565353, -0.024903900921344757, 0.011812234297394753, 0.011217568069696426, -0.06602597236633301, -0.08887557685375214, -0.04739309847354889, 0.07009853422641754, -0.060151390731334686, -0.06285442411899567, 0.0028539474587887526, 0.030165797099471092, -0.0490509569644928, 0.06707114726305008, -0.08217206597328186, 0.022399095818400383, -0.00452081486582756, 0.017236310988664627, 0.04277992993593216, -0.014335060492157936, -0.024129033088684082, -0.027138404548168182, 0.03393201529979706, -0.03061630204319954, -0.0289043840020895, -0.04735705628991127, -0.020831339061260223, 0.014100798405706882, 0.0020385340321809053, 0.02290366031229496, 0.006374641787260771, -0.023786649107933044, 0.00022131044534035027, 0.009577730670571327, 0.01665065437555313, -0.025462526828050613, 0.00417843135073781, 0.014803585596382618, -0.043428655713796616, -0.058926019817590714, -0.025444507598876953, -0.017191261053085327, -0.0760452002286911, 0.017245320603251457, 0.0023493822664022446, -0.015001807361841202, 0.031030766665935516, -0.002585897222161293, -0.048330146819353104, 0.048077866435050964, -0.012803344987332821, -0.07943299412727356, -0.002344877226278186, 0.02142600528895855, 0.02758890949189663, -0.05218646675348282, -0.019515864551067352, 0.04746517911553383, -0.07900051027536392, 0.004896986298263073, 0.028417838737368584, 0.018867138773202896, 0.023732589557766914, 0.01145183015614748, -0.05139357969164848, 0.034238360822200775, 0.019155461341142654, -0.029859453439712524, 0.09240753203630447, -0.014605363830924034, -0.015479343011975288, 0.00029564372380264103, 0.0046492088586091995, -0.04414946213364601, -0.03497718647122383, 0.02279553934931755, 0.03232821822166443, 0.000829491822514683, 0.008510034531354904, 0.03351755067706108, -0.02564273029565811, -0.038815487176179886, -0.05150170251727104, 0.08721771836280823, -0.021876510232686996, 0.0076270452700555325, 0.020524995401501656, -0.020759258419275284, -0.010388638824224472, 0.03708554804325104, -0.013875545933842659, -0.019209522753953934, -0.008987569250166416, 0.03841904550790787, 0.02922874689102173, 0.010857163928449154, -0.06137676537036896, 0.03384191542863846, -0.007667590398341417, -0.047717463225126266, -0.020344793796539307, -0.04292409121990204, 0.06317878514528275, 0.019263582304120064, 0.09975976496934891, 0.004034270066767931, 0.05460117384791374, -0.0365629643201828, 0.0005377900088205934, 0.0042752898298203945, -0.0035229469649493694, -0.07431525737047195, 0.01962398551404476, 0.009487629868090153, -0.012046496383845806, 0.019425764679908752, -0.023480307310819626, -0.002806644421070814, -0.005937652196735144, -0.030021635815501213, 0.008401913568377495, -0.010433689691126347, 0.05326768010854721, -0.013893566094338894, -0.058853939175605774, 0.002162422752007842, -0.020705197006464005, 0.03413023799657822, -0.015686575323343277, -0.043356575071811676, 0.07200867682695389, 0.033031005412340164, 0.00009777360537555069, 0.03616651892662048, 0.04177079722285271, 0.004901491571217775, 0.02131788432598114, -0.10790489614009857, 0.006807126570492983, 0.009793972596526146, 0.002217609668150544, -0.03414825722575188, 0.011037365533411503, -0.008784842677414417, -0.007897348143160343, 0.030057676136493683, 0.024741720408201218, -0.10624703764915466, 0.043284494429826736, -0.024111013859510422, -0.060115352272987366, 0.05622299015522003, -0.03467084467411041, 0.03389597684144974, 0.00113020371645689, 0.052474793046712875, -0.01520003005862236, -0.007140500005334616, -0.030183816328644753, -0.03670712560415268, -0.0674675926566124, -0.036022357642650604, 0.023210003972053528, 0.03353557363152504, 0.02311990223824978, -0.040257103741168976, 0.014163868501782417, 0.01302859652787447, -0.011740153655409813, -0.05636715143918991, -0.004689754452556372, 0.008194681257009506, 0.020705197006464005, 0.00844245869666338, -0.07229699939489365, -0.009136236272752285, 0.016506493091583252, -0.048149947077035904, -0.052763115614652634, 0.013569202274084091, 0.005185309331864119, 0.001441615168005228, 0.006374641787260771, -0.01699303835630417, -0.01452427264302969, 0.0057169049978256226, -0.023426245898008347, 0.02129986323416233, -0.03240029886364937, 0.06620617210865021, -0.01985824853181839, -0.03467084467411041, 0.022543257102370262, 0.04144643619656563, 0.006126864347606897, -0.0084559740498662, -0.017371462658047676, -0.003223361447453499, -0.02302980236709118, 0.08692939579486847, 0.05460117384791374, -0.05229458957910538, -0.002233377192169428, -0.04883471503853798, 0.029931534081697464, -0.0014213424874469638, -0.015596473589539528, -0.013145728036761284, -0.014073767699301243, 0.018777037039399147, 0.011722133494913578, 0.020128551870584488, 0.023606447502970695, 0.06407979130744934, -0.0053429859690368176, -0.037193670868873596, -0.040581464767456055, -0.01808325946331024, 0.06353918462991714, 0.0021230035927146673, 0.049627602100372314, 0.03395003825426102, -0.02872418239712715, 0.055574264377355576, 0.06152092665433884, 0.06274630129337311, -0.03472490608692169, -0.019407743588089943, -0.002004746114835143, -0.03378785401582718, 0.03688732907176018, 0.052727073431015015, -0.017632754519581795, -0.1125180646777153, 0.0008486383012495935, 0.019227541983127594, -0.02445339784026146, 0.04533879831433296, -0.013217808678746223, 0.010271508246660233, -0.010965284891426563, 0.08411824703216553, 0.05597070977091789, -0.0005462369881570339, 0.017344431951642036, -0.014992797747254372, 0.017903057858347893, 0.051321499049663544, -0.0017457058420404792, -0.018686937168240547, 0.023858731612563133, 0.08173958212137222, -0.020759258419275284, 0.06739550828933716, -0.02764297090470791, -0.06361126899719238, -0.00833433773368597, 0.020885398611426353, -0.0010648805182427168, -0.011704113334417343, -0.06995437294244766, 0.02148006483912468, 0.015902817249298096, -0.007518923841416836, -0.03531957045197487, 0.03530155122280121, -0.05658339336514473, -0.026219375431537628, -0.02157016657292843, 0.10538206994533539, 0.01817336119711399, -0.049411360174417496, 0.015893807634711266, 0.04133831337094307, -0.01989428885281086, 0.05831333249807358, -0.03685128688812256, 0.05323163792490959, -0.060115352272987366, -0.005856561474502087, -0.05384432524442673, -0.03050818108022213, -0.0025611193850636482, 0.017686815932393074, 0.0066990056075155735, 0.0013402515323832631, -0.03038203902542591, -0.023300105705857277, 0.012361849658191204, 0.0019360440783202648, 0.0013762919697910547, -0.019461805000901222, 0.03953629732131958, -0.02719246596097946, 0.0003057800931856036, -0.016200149431824684, 0.07525230944156647, 0.05654735490679741, -0.010253488086163998, -0.03485104441642761, 0.04717685654759407, 0.04984384402632713, -0.05153774097561836, -0.0488707534968853, -0.04883471503853798, 0.0014213424874469638, -0.008410923182964325, -0.0671071857213974, -0.03519342839717865, 0.020128551870584488, 0.03558987379074097, -0.05445701256394386, 0.031481269747018814, -0.05016820877790451, 0.00010002613271353766, 0.011046376079320908, 0.0196960661560297, -0.048258066177368164, 0.01073102280497551, -0.002005872316658497, -0.040617506951093674, -0.02119174227118492, 0.017272351309657097, -0.01675877533853054, -0.018614856526255608, 0.027156425639986992, 0.0099831847473979, -0.07827970385551453, -0.007730661425739527, 0.005388036835938692, -0.02755286917090416, 0.002615179866552353, -0.02585897222161293, 0.002264912473037839, -0.05052861198782921, 0.0849832147359848, 0.03223811835050583, -0.0009139614994637668, 0.07363049685955048, 0.029877474531531334, -0.04667229205369949, -0.04876263067126274, -0.001403322210535407, -0.027859212830662727, -0.02439933642745018, -0.012740273959934711, -0.019353684037923813, 0.01857881434261799, 0.013488112017512321, -0.020218651741743088, -0.0023989377077668905, 0.01359623298048973, 0.0545290932059288, -0.01676778681576252, 0.017182251438498497, -0.014091787859797478, 0.019299622625112534, 0.0182814821600914, 0.002446240745484829, -0.038707368075847626, 0.018614856526255608, -0.08930806070566177, -0.0023628973867744207, 0.02735464833676815, -0.0880826860666275, 0.04450986906886101, 0.017254332080483437, -0.004482522141188383, 0.018614856526255608, 0.012460961006581783, 0.023336146026849747, 0.09255169332027435, 0.00911821611225605, -0.027859212830662727, 0.012749283574521542, -0.0183265320956707, -0.0276249498128891, -0.015812715515494347, 0.016497483476996422, -0.024831820279359818, 0.07013458013534546, 0.04602356255054474, -0.03468886390328407, 0.0031625432893633842, -0.04418550431728363, 0.05679963529109955, -0.0009235346806235611, -0.016281241551041603, -0.0018673421582207084, 0.009469609707593918, 0.03490510582923889, 0.0045027947053313255, 0.02773307077586651, 0.0022896903101354837, -0.05633111298084259, 0.02149808593094349, -0.011496881023049355, -0.05600674822926521, 0.026759982109069824, 0.00828478205949068, 0.0006813884247094393, -0.0036693611182272434, 0.011208557523787022, 0.008077549748122692, -0.007221590727567673, 0.0010294032981619239, 0.04270784929394722, 0.029733313247561455, -0.0153171606361866, -0.017182251438498497, -0.05006008595228195, -0.013235828839242458, -0.010100316256284714, 0.016137080267071724, 0.03220207989215851, 0.010235467925667763, -0.027967333793640137, -0.0368332676589489, -0.009721891954541206, -0.019497845321893692, 0.03032797947525978, 0.003811269998550415, -0.0432124137878418, -0.011668073013424873, -0.014028717763721943, 0.005068178288638592, 0.01811029016971588, -0.014019707217812538, 0.023570407181978226, -0.007559469435364008, -0.04450986906886101, 0.0258950125426054, -0.011632032692432404, 0.03468886390328407, -0.02894042432308197, 0.018777037039399147, 0.020236672833561897, 0.03488708660006523, -0.03384191542863846, -0.006955793127417564, -0.027084344998002052, -0.0029035029001533985, -0.0021353925112634897, -0.026687899604439735, 0.0006712520262226462, 0.04004086181521416, 0.04876263067126274, 0.057087961584329605, 0.030237877741456032, -0.023696549236774445, 0.02901250496506691, -0.020651137456297874, -0.0034711388871073723, -0.020741237327456474, 0.014235949143767357, -0.003885603277012706, 0.0005073809297755361, -0.026417598128318787, -0.0009922366589307785, 0.05737628415226936, -0.012460961006581783, 0.06732342392206192, 0.0182814821600914, -0.02749880962073803, 0.06534120440483093, -0.07900051027536392, -0.03769823536276817, -0.061773210763931274, 0.03849112614989281, 0.03546373173594475, 0.002883230336010456, 0.006946783047169447, -0.024885881692171097, -0.013578212819993496, 0.030796503648161888, 0.05982702970504761, -0.004529824946075678, 0.03470688313245773, -0.05034840852022171, 0.034418560564517975, 0.02769703045487404, 0.008636175654828548, -0.009370498359203339, -0.009001084603369236, 0.057484403252601624, 0.02274147979915142, 0.0461316853761673, 0.01991230994462967, 0.007050399202853441, -0.015542413108050823, 0.005563733633607626, 0.029282808303833008, 0.03149929270148277, 0.028093475848436356, 0.041842877864837646, -0.013037607073783875, 0.046636249870061874, -0.05319559946656227, -0.00003197527621523477, -0.05078089237213135, 0.012596112675964832, 0.07431525737047195, -0.007329712156206369, -0.026922162622213364, -0.02587699145078659, -0.006388157140463591, 0.018867138773202896, 0.015145969577133656, 0.03182365372776985, -0.013506132178008556, -0.05615090951323509, -0.003191825933754444, -0.07229699939489365, -0.03029193915426731, 0.028111495077610016, 0.017425522208213806, 0.031553350389003754, 0.022579297423362732, -0.014434171840548515, -0.0022164832334965467, 0.011992435902357101, 0.032796744257211685, -0.019101399928331375, 0.034418560564517975, 0.03618454188108444, -0.011857284232974052, -0.026796022430062294, -0.018975259736180305, 0.03142721205949783, -0.08721771836280823, 0.02284960076212883, 0.034310441464185715, 0.06361126899719238, -0.005248380359262228, -0.006951287854462862, 0.05979098752140999, -0.01459635328501463, -0.026976224035024643, 0.0036626034416258335, 0.0020283975172787905, 0.021768389269709587, 0.02128184400498867, -0.0011116204550489783, -0.024957962334156036, -0.02284960076212883, 0.008852417580783367, -0.011938375420868397, -0.016083018854260445, -0.044870272278785706, -0.027048304677009583, 0.08887557685375214, -0.07597311586141586, 0.004924016539007425, -0.06653054058551788, 0.040509384125471115, -0.01384851522743702, -0.045266713947057724, -0.02292168140411377, -0.05308747664093971, 0.022038690745830536, 0.00927138701081276, -0.03697742894291878, -0.029246767982840538, -0.03203989565372467, -0.010127346031367779, 0.027877232059836388, 0.033103086054325104, -0.03838300332427025, 0.015082898549735546, 0.011433809995651245, -0.008582115173339844, -0.029589150100946426, -0.011352719739079475, -0.0361124612390995, 0.0397525392472744, -0.05478137731552124, -0.09925520420074463, 0.002932785777375102, -0.022236913442611694, -0.028165556490421295, 0.03982461988925934, 0.008118094876408577, 0.045086514204740524, -0.004829410929232836, 0.034238360822200775, -0.03672514483332634, -0.0289944838732481, -0.017812957987189293, -0.01305562723428011, 0.022597316652536392, -0.06007931008934975, 0.025534607470035553, -0.03049015998840332, 0.03404013812541962, -0.0057169049978256226, -0.00030352757312357426, 0.05009612813591957, 0.015749646350741386, -0.007406297605484724, 0.06548536568880081, 0.0031557856127619743, 0.10033641755580902, 0.008361367508769035, -0.02904854528605938, 0.045158594846725464, -0.0017907563596963882, 0.052691034972667694, 0.04584336280822754, -0.015587463974952698, 0.10185010731220245, -0.02730058692395687, 0.0085010239854455, -0.036004338413476944, 0.00021511601516976953, 0.007307186722755432, -0.037554074078798294, 0.0026264425832778215, -0.0228856410831213, -0.05499761924147606, -0.04742913693189621, -0.043572816997766495, -0.01820039190351963, -0.0009545069187879562, 0.07907259464263916, -0.03690534830093384, -0.02283157967031002, 0.012650173157453537, 0.03357161208987236, -0.02605719305574894, 0.006739550735801458, 0.03924797102808952, 0.022579297423362732, 0.040581464767456055, 0.01133469957858324, 0.0146323936060071, 0.003356260247528553, -0.0016465948428958654, -0.045266713947057724, -0.008843407966196537, 0.06757570803165436, 0.10033641755580902, 0.01810128055512905, -0.06083615869283676, 0.03211197629570961, -0.07355841249227524, -0.0029981089755892754, 0.007388277444988489, 0.012578092515468597, -0.006919752806425095, 0.0017400744836777449, -0.00463569350540638, 0.028489919379353523, -0.005351996049284935, 0.02000240981578827, 0.07481982558965683, -0.07377465814352036, -0.013713364489376545, 0.02757089026272297, -0.02302980236709118, -0.015100918710231781, 0.03407617658376694, 0.018614856526255608, -0.005162784364074469, 0.041842877864837646, 0.020506976172327995, 0.017713846638798714, 0.007892843335866928, 0.008487509563565254, -0.016074009239673615, -0.010947264730930328, 0.054420970380306244, 0.0057934909127652645, 0.035860177129507065, 0.008861428126692772, 0.03486906737089157, -0.03838300332427025, 0.02111966162919998, -0.032994966953992844, 0.0019382965983822942, 0.002761594019830227, -0.026291456073522568, -0.02892240323126316, 0.008703751489520073, 0.006212460342794657, -0.07626143842935562, 0.018867138773202896, 0.03212999925017357, -0.0057169049978256226, 0.011082416400313377, 0.0365629643201828, -0.05081693455576897, 0.04598752409219742, 0.06678282469511032, -0.00650979345664382, 0.016055988147854805, -0.031156906858086586, 0.0003632194420788437 ]
20,419
cron_descriptor.ExpressionDescriptor
get_hours_description
Generates a description for only the HOUR portion of the expression Returns: The HOUR description
def get_hours_description(self): """Generates a description for only the HOUR portion of the expression Returns: The HOUR description """ expression = self._expression_parts[2] return self.get_segment_description( expression, self._("every hour"), lambda s: self.format_time(s, "0"), lambda s: self._("every {0} hours").format(s), lambda s: self._("between {0} and {1}"), lambda s: self._("at {0}"), lambda s: self._(", hour {0} through hour {1}") or self._(", {0} through {1}") )
(self)
[ 0.06594379991292953, -0.044074513018131256, 0.05153224244713783, -0.034399617463350296, 0.014478745870292187, -0.05979621410369873, 0.04588855430483818, 0.0025635946076363325, -0.06325633078813553, -0.0016103825764730573, 0.057175930589437485, 0.02000485733151436, 0.04971820116043091, -0.047366663813591, -0.027059465646743774, 0.02311224490404129, 0.023851297795772552, -0.09291928261518478, -0.04199172183871269, -0.057007960975170135, 0.01997126266360283, -0.09735360741615295, 0.004014408681541681, -0.029125459492206573, -0.030973095446825027, 0.03157777711749077, 0.00087972660548985, -0.016754698008298874, -0.011598113924264908, -0.06399538367986679, -0.04572058841586113, -0.026488378643989563, -0.11226906627416611, 0.000534869555849582, -0.021365389227867126, -0.00006797409878345206, -0.015595725737512112, 0.0018423867877572775, -0.012026429176330566, 0.09574113041162491, 0.03322385251522064, 0.03601210191845894, -0.019064242020249367, -0.019920872524380684, -0.024791913107037544, -0.01267310231924057, 0.048038531094789505, 0.00529515603557229, 0.020794300362467766, -0.0649024099111557, 0.057343896478414536, -0.011942446231842041, -0.024002468213438988, -0.020760707557201385, -0.00950692594051361, -0.020962268114089966, 0.07014297693967819, 0.03278713673353195, 0.05418611690402031, 0.01128737535327673, -0.04656042158603668, 0.01132096815854311, -0.00517757935449481, 0.052103329449892044, 0.016695909202098846, 0.026236427947878838, -0.006613696459680796, 0.009364154189825058, 0.05485798791050911, -0.010884254239499569, 0.048139311373233795, -0.0178716778755188, -0.001957864034920931, 0.00830176379531622, -0.034567587077617645, -0.04965101182460785, -0.04262999817728996, -0.013252587988972664, 0.062282122671604156, -0.026656344532966614, -0.06376022845506668, 0.024288011714816093, 0.0051985750906169415, 0.006752268876880407, 0.034097280353307724, -0.04226046800613403, 0.0714867115020752, -0.07464448362588882, -0.03614647313952446, 0.04068158194422722, -0.02037438377737999, -0.04142063483595848, -0.04152141511440277, 0.002922623883932829, -0.005618492607027292, -0.010363557375967503, -0.07256169617176056, -0.007915440015494823, -0.002899528481066227, -0.009977233596146107, 0.032031286507844925, -0.034533992409706116, -0.02057594433426857, 0.020357586443424225, 0.008683888241648674, -0.027160245925188065, -0.02097906544804573, -0.017300589010119438, 0.022524360567331314, -0.017787693068385124, -0.008381547406315804, 0.034735552966594696, -0.04578777402639389, -0.09063493460416794, 0.0360792875289917, 0.031141061335802078, 0.04229406267404556, 0.02937740832567215, 0.011866861023008823, -0.061139948666095734, 0.03021724335849285, -0.017518946900963783, -0.030603567138314247, 0.01997126266360283, 0.007121796254068613, 0.039237067103385925, -0.08982869237661362, -0.018862681463360786, -0.004350342322140932, -0.06063604727387428, 0.015914862975478172, 0.031695351004600525, 0.014772688038647175, 0.005920832976698875, -0.03701990097761154, -0.02287708967924118, 0.05119630694389343, 0.006840451620519161, 0.008175788447260857, 0.09708486497402191, -0.04027846083045006, -0.000024342076358152553, -0.061879001557826996, 0.03305588290095329, 0.004766060505062342, -0.043402645736932755, -0.008314360864460468, 0.043369051069021225, 0.02917584963142872, 0.034567587077617645, -0.010615507140755653, 0.01057351566851139, 0.03604569286108017, -0.030737940222024918, 0.05868763104081154, -0.02077750489115715, 0.011253781616687775, 0.048643212765455246, 0.011850063689053059, -0.056470468640327454, 0.03668396919965744, 0.013924455270171165, -0.01884588599205017, 0.007121796254068613, -0.018425967544317245, 0.03644881397485733, 0.03510507941246033, 0.0025908893439918756, 0.02077750489115715, -0.00016468628018628806, -0.03564257547259331, -0.028100861236453056, -0.04938226565718651, 0.0398753397166729, 0.03728865087032318, 0.025295814499258995, -0.0025719930417835712, 0.07813819497823715, -0.00529515603557229, -0.0357433557510376, 0.03124184161424637, -0.00018305766570847481, -0.09029900282621384, 0.03648240864276886, -0.019652126356959343, -0.03550820052623749, 0.03246799856424332, -0.034970708191394806, -0.05119630694389343, -0.03330783545970917, -0.043201085180044174, 0.006626293994486332, -0.0045603010803461075, 0.0607704222202301, 0.02680751495063305, -0.024304809048771858, -0.014016836881637573, 0.02741219662129879, -0.031460199505090714, 0.02537979744374752, -0.07007578760385513, 0.038195669651031494, -0.01817401684820652, -0.01507502794265747, 0.04938226565718651, 0.008158992044627666, 0.017451759427785873, 0.007747472729533911, -0.08519280701875687, 0.0008996726828627288, -0.00895263534039259, 0.002905827248468995, -0.024355199187994003, 0.06439850479364395, 0.010649100877344608, 0.07739914208650589, -0.03480273857712746, 0.04588855430483818, -0.04430966451764107, 0.011136204935610294, -0.01820761151611805, -0.02104625105857849, 0.0405472069978714, -0.03480273857712746, 0.051901768893003464, 0.00031388812931254506, 0.028739135712385178, 0.004341944120824337, -0.04572058841586113, -0.01492385845631361, 0.0002543123555369675, 0.005383338779211044, -0.0150246387347579, -0.021533355116844177, -0.003684773575514555, 0.065910205245018, -0.04199172183871269, -0.011413349770009518, 0.05045725405216217, -0.006155986338853836, -0.031661760061979294, 0.04202531650662422, -0.04158860072493553, 0.0016082830261439085, -0.012715093791484833, -0.07041171938180923, -0.019265802577137947, 0.009817664511501789, -0.04622448980808258, -0.03001568280160427, -0.007188982795923948, -0.020088840276002884, 0.023935282602906227, -0.009019821882247925, -0.01333657093346119, 0.01345414761453867, 0.004791255574673414, 0.0105567192658782, 0.018526747822761536, -0.025228627026081085, 0.02304505743086338, -0.0008613552199676633, -0.019316192716360092, -0.008381547406315804, 0.039270658046007156, 0.018425967544317245, -0.00031520036282017827, -0.002691669389605522, -0.03557538613677025, -0.02260834351181984, 0.04011049494147301, -0.00758790411055088, -0.06933673471212387, -0.015646114945411682, 0.01660352759063244, 0.05640328302979469, 0.03668396919965744, -0.03258557617664337, -0.04686276242136955, 0.008381547406315804, -0.01260591484606266, 0.010791872628033161, -0.01918181963264942, -0.011530927382409573, 0.029730139300227165, 0.05952746421098709, -0.011329366825520992, 0.052372075617313385, 0.00506000267341733, 0.027798520401120186, -0.009364154189825058, 0.007991025224328041, -0.010976635850965977, -0.026051664724946022, 0.08707403391599655, 0.0735023096203804, 0.017015045508742332, 0.005912434309720993, -0.008410941809415817, 0.00693703256547451, -0.0034790141507983208, 0.05482439324259758, -0.013664106838405132, -0.022322800010442734, -0.12039867043495178, 0.011060619726777077, 0.009943639859557152, 0.04508231207728386, 0.08485687524080276, -0.01267310231924057, 0.016561536118388176, -0.030301226302981377, 0.010363557375967503, -0.01881229132413864, 0.022793106734752655, 0.04555261880159378, -0.008360551670193672, 0.042764369398355484, 0.02778172306716442, 0.004619089420884848, 0.008263970725238323, 0.020895080640912056, 0.05035647377371788, -0.023784112185239792, 0.03604569286108017, -0.061979781836271286, -0.043066710233688354, -0.01884588599205017, -0.007558510173112154, -0.03688552975654602, -0.02591729164123535, -0.052640821784734726, 0.02774813026189804, -0.007461929228156805, 0.004530906677246094, -0.023935282602906227, 0.052002549171447754, 0.03124184161424637, -0.06342429667711258, 0.02484230324625969, 0.06785862147808075, -0.005975421983748674, -0.042663589119911194, 0.03557538613677025, 0.052943162620067596, -0.04578777402639389, -0.013966446742415428, -0.0025195032358169556, -0.004400732461363077, 0.031964100897312164, 0.02460714988410473, -0.05159942805767059, 0.04944945126771927, -0.01700664684176445, 0.05465642735362053, 0.024271216243505478, 0.024103248491883278, -0.052271295338869095, -0.02230600267648697, 0.027764927595853806, 0.05035647377371788, 0.0005569152417592704, 0.006769065745174885, -0.018661120906472206, -0.033761344850063324, -0.03658318892121315, 0.05133068189024925, 0.048441652208566666, 0.025127846747636795, -0.02707626298069954, -0.05012131854891777, 0.01363891176879406, 0.04968460649251938, -0.0023704327177256346, 0.019332988187670708, -0.020323993638157845, 0.04252921789884567, 0.033727750182151794, -0.07545072585344315, -0.0022612542379647493, 0.04165579006075859, 0.039102692157030106, -0.02443918213248253, 0.04249562323093414, -0.04226046800613403, 0.013185400515794754, 0.02341458387672901, 0.003262756858021021, -0.0002952542854472995, -0.003972416743636131, 0.012631109915673733, -0.026521971449255943, -0.03428204357624054, 0.004732467234134674, -0.014243592508137226, 0.0005330324056558311, -0.011446943506598473, 0.009196187369525433, -0.04871039837598801, 0.03021724335849285, 0.023800907656550407, -0.06722035259008408, 0.034567587077617645, -0.01333657093346119, 0.01820761151611805, -0.04182375594973564, 0.03755739703774452, 0.061643850058317184, 0.0035776947624981403, -0.02091187797486782, -0.016485949978232384, -0.0837818831205368, -0.04051361232995987, 0.008667091839015484, -0.008625099435448647, -0.07786945253610611, 0.017686912789940834, 0.008465531282126904, -0.05959465354681015, 0.06339070200920105, 0.0003792377538047731, -0.07229294627904892, -0.003254358423873782, 0.04528387263417244, 0.047400254756212234, 0.004253761377185583, -0.03728865087032318, 0.01594005711376667, 0.019282598048448563, 0.01165690179914236, -0.03557538613677025, 0.029461393132805824, -0.061610255390405655, -0.018929868936538696, 0.043268270790576935, -0.0456869937479496, 0.0628868043422699, -0.003682674141600728, 0.03567616641521454, 0.028991084545850754, 0.05519391968846321, 0.052271295338869095, 0.08284126967191696, 0.011480537243187428, 0.016485949978232384, -0.017888473346829414, -0.010917847976088524, -0.018459560349583626, 0.024321606382727623, -0.02591729164123535, -0.0025404992047697306, 0.024371996521949768, 0.028453590348362923, -0.0450151264667511, 0.03339181840419769, -0.02697548270225525, 0.07209138572216034, 0.0300492774695158, -0.007928037084639072, 0.003661678172647953, -0.02057594433426857, 0.09621143341064453, 0.014159608632326126, -0.022490765899419785, -0.032501593232154846, -0.04168938100337982, 0.024321606382727623, -0.047568224370479584, -0.025530967861413956, 0.018224406987428665, 0.004337744787335396, 0.03394610807299614, -0.02121421881020069, 0.02087828516960144, 0.02257475070655346, -0.02054235152900219, 0.027983283624053, 0.07410699129104614, 0.007596302777528763, -0.04014408588409424, 0.028705541044473648, -0.02104625105857849, -0.019551346078515053, -0.022860294207930565, 0.028823118656873703, 0.056974370032548904, -0.030973095446825027, -0.03984174504876137, -0.03678474947810173, -0.08573029935359955, -0.053010351955890656, -0.024422386661171913, -0.005362343043088913, -0.05996417999267578, -0.00420967023819685, -0.002104835119098425, 0.04649323597550392, 0.004201272036880255, -0.004446923267096281, 0.04242843762040138, -0.05485798791050911, 0.04011049494147301, 0.05378299951553345, -0.021600542590022087, 0.016947859898209572, -0.0017311087576672435, 0.07639133930206299, 0.008709083311259747, 0.02010563760995865, 0.0053875381126999855, -0.00811699964106083, -0.03974096477031708, 0.004866840783506632, 0.0249094907194376, -0.04666120186448097, -0.00741153908893466, 0.01864432543516159, 0.004841645713895559, 0.027025872841477394, 0.0357433557510376, 0.003210267284885049, -0.007461929228156805, 0.01335336733609438, 0.001568390871398151, 0.014310779049992561, 0.0021772708278149366, -0.026589158922433853, -0.03762458264827728, -0.026757124811410904, -0.010800271295011044, 0.0758538469672203, 0.012345566414296627, 0.03984174504876137, 0.051968954503536224, -0.051968954503536224, 0.062114156782627106, -0.057511862367391586, -0.0745101124048233, -0.10017545521259308, 0.05993058532476425, -0.013084621168673038, -0.00555130559951067, 0.02677392214536667, -0.01803964376449585, -0.017888473346829414, 0.03665037453174591, 0.030889110639691353, -0.012244786135852337, 0.02134859189391136, -0.024623945355415344, 0.03661678358912468, 0.032333627343177795, 0.04205890744924545, -0.05465642735362053, 0.021029453724622726, 0.057310301810503006, -0.0004941900842823088, -0.0177037101238966, -0.021533355116844177, 0.03691912069916725, -0.014117617160081863, -0.00830596312880516, 0.027227433398365974, 0.0063113560900092125, -0.014235193841159344, -0.006449928507208824, -0.02294427715241909, 0.03772536292672157, -0.020525554195046425, 0.012043225578963757, -0.03762458264827728, 0.019584938883781433, 0.0821022167801857, -0.018896274268627167, -0.06574223935604095, -0.015570530667901039, -0.008578908629715443, 0.0077852653339505196, 0.04592214897274971, 0.015343775041401386, -0.02801687642931938, 0.018929868936538696, -0.033727750182151794, -0.047131508588790894, -0.021281404420733452, 0.04622448980808258, 0.044074513018131256, 0.032635968178510666, 0.0000059255899031995796, 0.015898065641522408, 0.034433212131261826, -0.03547460585832596, 0.03140980750322342, 0.04921429976820946, 0.021634135395288467, 0.015033036470413208, -0.026085257530212402, -0.026589158922433853, -0.03769177198410034, 0.015847675502300262, -0.04605652019381523, 0.032501593232154846, 0.03510507941246033, 0.02487589605152607, 0.02423762157559395, 0.007503920700401068, 0.047601815313100815, -0.003002408193424344, -0.06607817113399506, -0.06258445978164673, 0.031527385115623474, 0.01637677103281021, 0.031460199505090714, 0.005820052698254585, 0.0015589427202939987, 0.0032606571912765503, 0.03550820052623749, 0.022121239453554153, -0.004274757578969002, -0.0298813097178936, -0.06785862147808075, 0.0628868043422699, -0.06879923492670059, 0.03567616641521454, -0.03534023463726044, -0.031863320618867874, 0.016192007809877396, -0.034970708191394806, -0.009716884233057499, -0.05586578696966171, 0.022658733651041985, 0.04098392277956009, -0.07498042285442352, -0.033929310739040375, -0.037792548537254333, -0.020794300362467766, -0.003239661455154419, 0.006315554957836866, -0.023616144433617592, -0.007327555678784847, -0.06308836489915848, -0.005803255829960108, -0.04242843762040138, 0.01110261119902134, -0.0059292311780154705, 0.03977455943822861, -0.052506450563669205, -0.06644770503044128, -0.025984477251768112, -0.03701990097761154, 0.006592700257897377, 0.021869288757443428, -0.010481134057044983, 0.02013923041522503, -0.04985257238149643, 0.00040994418668560684, -0.04242843762040138, -0.0491471104323864, -0.047299474477767944, 0.004971819929778576, 0.00677746394649148, -0.026320410892367363, -0.04095032811164856, 0.005967023782432079, 0.018392374739050865, -0.0039535206742584705, 0.013529732823371887, 0.023431381210684776, 0.011018628254532814, 0.017754100263118744, 0.03597850725054741, -0.04125266894698143, 0.07236013561487198, 0.011791275814175606, -0.04837446287274361, 0.03685193508863449, -0.010229183360934258, 0.043033115565776825, 0.002565694274380803, -0.006386940833181143, 0.07041171938180923, -0.03557538613677025, 0.004257960710674524, -0.019719311967492104, 0.007865049876272678, 0.03330783545970917, -0.03411407396197319, -0.024926286190748215, 0.016779892146587372, -0.04871039837598801, -0.05532829463481903, -0.007314958143979311, -0.04125266894698143, 0.03678474947810173, 0.07679446041584015, -0.013017433695495129, -0.048240091651678085, -0.0059712231159210205, 0.04928148537874222, 0.0014602621085941792, -0.020559147000312805, 0.04195813089609146, 0.005446326453238726, 0.005807455163449049, 0.023599348962306976, -0.012261582538485527, 0.001116979867219925, -0.04142063483595848, 0.009179390966892242, -0.0114217484369874, -0.01012000534683466, 0.026857905089855194, -0.02017282322049141, -0.03480273857712746, 0.03816207870841026, -0.05858685076236725, 0.015528539195656776, 0.012832670472562313, 0.03287111967802048, 0.03325744345784187, 0.04951664060354233, -0.022692326456308365, 0.02917584963142872, -0.016889071092009544, -0.06960547715425491, 0.09748798608779907, -0.016712704673409462, 0.0025551964063197374, 0.0003750385658349842, -0.02931022271513939, -0.05086037516593933, -0.002662275219336152, 0.03769177198410034, 0.011295773088932037, 0.04995335265994072, 0.03344220668077469, -0.01267310231924057, -0.027328213676810265, 0.0319473035633564, -0.017216606065630913, 0.018728308379650116, 0.032199252396821976, 0.007642493583261967, -0.012841069139540195, 0.015192605555057526, -0.011278976686298847, -0.03564257547259331, 0.04091673344373703, 0.013907658867537975, -0.00344752031378448, -0.03238401561975479, -0.017552539706230164, 0.016754698008298874, -0.015444555319845676, 0.02338099107146263, -0.023464974015951157, -0.03174574300646782, 0.03530663996934891, -0.05522751435637474, 0.04605652019381523, -0.003542001824826002, 0.033761344850063324, 0.07256169617176056, 0.00883505865931511, 0.0075333151035010815, -0.007033613510429859, -0.010313167236745358, 0.00741153908893466 ]
20,420
cron_descriptor.ExpressionDescriptor
get_minutes_description
Generates a description for only the MINUTE portion of the expression Returns: The MINUTE description
def get_minutes_description(self): """Generates a description for only the MINUTE portion of the expression Returns: The MINUTE description """ seconds_expression = self._expression_parts[0] def get_description_format(s): if s == "0" and seconds_expression == "": return "" try: if int(s) < 20: return self._("at {0} minutes past the hour") else: return self._("at {0} minutes past the hour [grThen20]") or self._("at {0} minutes past the hour") except ValueError: return self._("at {0} minutes past the hour") return self.get_segment_description( self._expression_parts[1], self._("every minute"), lambda s: s, lambda s: self._("every {0} minutes").format(s), lambda s: self._("minutes {0} through {1} past the hour"), get_description_format, lambda s: self._(", minute {0} through minute {1}") or self._(", {0} through {1}") )
(self)
[ 0.08297856152057648, -0.025500468909740448, 0.06927893310785294, -0.001451814197935164, 0.04177321121096611, -0.05927040055394173, 0.04482545703649521, 0.02102857083082199, -0.026973355561494827, -0.023300010710954666, 0.012501795776188374, 0.0665815994143486, 0.04095691069960594, -0.0010420011822134256, -0.005616491660475731, 0.030025603249669075, 0.06033513695001602, -0.10945503413677216, -0.0358106791973114, -0.030912885442376137, 0.02961745485663414, -0.04251852631568909, 0.011845206841826439, -0.019733138382434845, -0.012448558583855629, 0.045180369168519974, 0.015554043464362621, -0.031125832349061966, -0.031161323189735413, -0.03935980424284935, -0.028836647048592567, 0.0014972874196246266, -0.06157733127474785, -0.03311334177851677, -0.025323012843728065, -0.00702283252030611, -0.02360168658196926, -0.018153777346014977, -0.11413988471031189, 0.012484049424529076, 0.04049552604556084, 0.018136031925678253, -0.017417334020137787, -0.004247860051691532, -0.02780739963054657, -0.0272572860121727, 0.06345836818218231, 0.027115320786833763, 0.04070847108960152, -0.03126779943704605, 0.08113301545381546, 0.009564894251525402, -0.05369827151298523, -0.006534827873110771, -0.05234960466623306, 0.02628127671778202, 0.045570775866508484, 0.05408867448568344, 0.07311198860406876, 0.004385388456285, -0.023016080260276794, 0.03772720694541931, -0.008642121218144894, 0.030841901898384094, 0.00101427361369133, -0.005603182129561901, 0.007750403136014938, -0.005128486547619104, 0.047771234065294266, -0.0018144905334338546, 0.004238986875861883, -0.04156026244163513, 0.004707028158009052, 0.01966215670108795, -0.009813332930207253, -0.05508243292570114, -0.08503705263137817, -0.013673006556928158, 0.07172782719135284, -0.015305604785680771, -0.05490497499704361, 0.01188069861382246, 0.04024708643555641, -0.04099240154027939, 0.02633451297879219, -0.053449831902980804, 0.06310345232486725, -0.04347679018974304, -0.0262280385941267, 0.025269774720072746, -0.046777475625276566, -0.0056874738074839115, -0.015420950949192047, 0.04791319742798805, -0.04982972517609596, 0.02512780949473381, -0.0838303491473198, -0.014444941654801369, -0.00842917338013649, 0.013637515716254711, 0.016556670889258385, -0.015518552623689175, -0.048587530851364136, -0.012670379132032394, 0.029156068339943886, 0.01636146940290928, -0.030575718730688095, 0.001640361500903964, 0.04862302169203758, -0.018242506310343742, -0.028925374150276184, -0.02922705002129078, -0.05540185421705246, -0.04997168853878975, -0.00027893908554688096, 0.03644952178001404, -0.0021505483891814947, -0.012714742682874203, 0.017293114215135574, -0.05522439628839493, 0.0307709202170372, -0.038508012890815735, -0.021543193608522415, 0.0007841349579393864, 0.0001256750983884558, 0.05348532646894455, -0.03103710524737835, -0.040211595594882965, 0.02024776302278042, -0.054656535387039185, -0.02365492284297943, 0.01809166744351387, 0.05724739655852318, 0.024808388203382492, -0.04347679018974304, -0.013087401166558266, 0.03754974901676178, -0.005789511371403933, -0.009192235767841339, 0.11328808963298798, -0.05004267394542694, 0.0035602166317403316, -0.05540185421705246, 0.01480872742831707, -0.029688436537981033, -0.08184283971786499, 0.014098902232944965, 0.06470055878162384, 0.013823844492435455, 0.0004558408400043845, -0.02413405478000641, -0.0067877029068768024, 0.0479486882686615, -0.046883951872587204, 0.09781390428543091, -0.016707509756088257, 0.04116985946893692, 0.08148792386054993, -0.004911102820187807, -0.04730984568595886, 0.0600866973400116, 0.005745147354900837, -0.027275031432509422, -0.008584448136389256, 0.01882811263203621, 0.033965133130550385, 0.027665434405207634, -0.0006576973828487098, -0.031001612544059753, -0.002999011194333434, -0.009351946413516998, -0.019466955214738846, -0.01630823314189911, 0.028783408924937248, -0.011330584064126015, 0.03286490589380264, -0.02326451987028122, 0.07453163713216782, -0.017994066700339317, -0.0102126095443964, 0.022891860455274582, -0.0009765641298145056, -0.08461115509271622, 0.008739721961319447, -0.030912885442376137, -0.005771765485405922, 0.025961855426430702, -0.0368044339120388, -0.03357473015785217, -0.04312187805771828, -0.01042555645108223, 0.01672525517642498, 0.004911102820187807, 0.03245675563812256, -0.02479064278304577, -0.01412552036345005, 0.0025531523860991, -0.003917347639799118, 0.027292776852846146, 0.043654248118400574, -0.07289904356002808, 0.02928028628230095, -0.004871175158768892, 0.0035624350421130657, 0.06977581232786179, 0.006499336566776037, 0.000014496306903311051, 0.037088364362716675, -0.09603933990001678, 0.002054056618362665, -0.025056827813386917, 0.011348329484462738, 0.019679902121424675, 0.050610531121492386, -0.006326316390186548, 0.03620108217000961, 0.0006549246027134359, 0.054833993315696716, -0.06235813722014427, 0.0048578656278550625, -0.0026951173786073923, -0.019147533923387527, 0.019804121926426888, -0.04177321121096611, 0.022856369614601135, 0.007426545489579439, 0.009706858545541763, -0.028676936402916908, -0.03126779943704605, -0.021064061671495438, 0.016104158014059067, -0.061080452054739, 0.00944067444652319, -0.02102857083082199, -0.04801966995000839, 0.010035152547061443, -0.011383820325136185, -0.005705219693481922, 0.03540252894163132, -0.02310480922460556, -0.07382181286811829, 0.03137427195906639, -0.0300433486700058, 0.06892402470111847, 0.02528752014040947, -0.07588031142950058, -0.03334403783082962, -0.019999323412775993, -0.01966215670108795, 0.013770608231425285, 0.022377237677574158, 0.01927175186574459, 0.014915200881659985, 0.00543459877371788, -0.004412007052451372, 0.015775863081216812, -0.024400239810347557, 0.032811667770147324, 0.005328124854713678, -0.03975020721554756, 0.05220763757824898, -0.048090655356645584, -0.03416033461689949, -0.052917465567588806, 0.04368973895907402, 0.03227929770946503, -0.00852233823388815, 0.0113572021946311, -0.00988431554287672, -0.029369015246629715, 0.08716652542352676, 0.009396309964358807, -0.07073407620191574, -0.02397434413433075, -0.012413066811859608, 0.02047845534980297, 0.0024732970632612705, -0.022625677287578583, -0.017115658149123192, -0.02683139033615589, -0.016272742301225662, 0.009165617637336254, 0.014116647653281689, -0.0025908618699759245, 0.035828422755002975, 0.05270451679825783, 0.013726243749260902, 0.019804121926426888, -0.008380373008549213, 0.041950665414333344, -0.02589087188243866, -0.02654745988547802, -0.017656899988651276, -0.021969087421894073, 0.059696294367313385, 0.057353872805833817, 0.00502201309427619, -0.004347679205238819, -0.0373368039727211, -0.005305943079292774, -0.0015971065731719136, 0.02211105264723301, -0.018153777346014977, 0.010878070257604122, -0.08716652542352676, 0.015554043464362621, -0.0061887879855930805, 0.0029324651695787907, 0.042554017156362534, -0.013761734589934349, 0.0027616634033620358, -0.02796711027622223, 0.032758429646492004, -0.03854350373148918, 0.016716381534934044, 0.053236886858940125, 0.003768727881833911, 0.04872949793934822, 0.05174625292420387, 0.002652971539646387, 0.03715934604406357, 0.002286967821419239, 0.029528725892305374, 0.00016262204735539854, 0.043547771871089935, -0.02397434413433075, -0.0776548683643341, -0.0011457022046670318, -0.017470572143793106, -0.03999864682555199, -0.051462322473526, -0.02605058252811432, 0.008682048879563808, -0.025642434135079384, -0.018437707796692848, -0.03059346415102482, 0.02512780949473381, -0.020070305094122887, -0.03114357776939869, 0.015633899718523026, 0.10583493113517761, -0.051604289561510086, -0.035012125968933105, 0.04127633199095726, 0.04826810956001282, -0.007200288586318493, 0.054833993315696716, -0.025464976206421852, 0.05068151652812958, -0.018313487991690636, 0.008908305317163467, -0.04074396193027496, 0.003251886460930109, -0.024719661101698875, 0.01866840198636055, 0.05032660439610481, 0.017115658149123192, -0.043157368898391724, -0.045251354575157166, 0.011658878065645695, 0.017186641693115234, 0.028180059045553207, 0.02951098047196865, -0.02353070303797722, 0.010532030835747719, -0.005301506724208593, 0.03389415144920349, 0.052030183374881744, 0.032101843506097794, -0.033805422484874725, -0.04006962850689888, 0.03437328338623047, 0.05036209523677826, 0.02720404788851738, -0.035065360367298126, -0.011543530970811844, 0.024488966912031174, 0.008841759525239468, -0.09909158945083618, -0.027133066207170486, 0.025269774720072746, 0.014196502976119518, -0.01614852249622345, 0.033627964556217194, -0.030806411057710648, 0.03206635266542435, 0.004041566979140043, -0.009955297224223614, -0.05905745178461075, -0.0059226034209132195, -0.00677439384162426, -0.0433703176677227, -0.04997168853878975, -0.007422109134495258, -0.022235272452235222, -0.0019608919974416494, 0.011099890805780888, -0.0009577093878760934, -0.03992766514420509, 0.009298709221184254, 0.03465721383690834, -0.07254412770271301, -0.023938853293657303, -0.01971539296209812, -0.003850801382213831, -0.04844556748867035, 0.05185272544622421, 0.06583628058433533, -0.008855069056153297, 0.0017679082229733467, 0.008708667010068893, -0.07779683917760849, -0.022643422707915306, -0.0027683181688189507, -0.014214248396456242, -0.08354642242193222, 0.0011689933016896248, -0.01428523100912571, -0.04624510928988457, 0.03691090643405914, -0.021543193608522415, -0.046174123883247375, 0.03339727222919464, -0.00041397224413231015, 0.014010174199938774, -0.011951681226491928, -0.005283760838210583, -0.026618443429470062, -0.034816924482584, 0.021064061671495438, -0.04965226724743843, 0.021206026896834373, -0.07431869208812714, 0.009094635024666786, 0.026245784014463425, -0.05376925319433212, 0.010895815677940845, 0.013362457975745201, -0.0033006868325173855, 0.0013908136170357466, 0.06047710403800011, 0.0499361976981163, 0.0837593674659729, 0.02743474207818508, -0.014249740168452263, -0.030522480607032776, -0.02234174683690071, -0.020939841866493225, -0.011366074904799461, 0.018384471535682678, -0.022803133353590965, 0.056856993585824966, 0.057460345327854156, -0.020513946190476418, 0.049013424664735794, -0.0032119587995111942, 0.062216173857450485, 0.03744327649474144, 0.005035322159528732, -0.04241205379366875, 0.019910594448447227, 0.07389279454946518, 0.00527045177295804, 0.010523158125579357, -0.03794015571475029, 0.027984855696558952, 0.019200770184397697, -0.008562265895307064, -0.06501998007297516, 0.024719661101698875, 0.015376587398350239, 0.023300010710954666, -0.025429485365748405, 0.0002715912996791303, 0.021330244839191437, -0.009378564544022083, -0.014835345558822155, 0.06931442767381668, 0.06722044199705124, -0.002369041321799159, 0.012581651099026203, -0.026352258399128914, -0.004006075672805309, -0.0028548280242830515, -0.0008950451156124473, 0.05430162325501442, -0.02179163135588169, -0.06615570187568665, -0.02731052227318287, -0.08666965365409851, -0.06995327025651932, 0.03192438557744026, 0.040211595594882965, -0.03740778565406799, -0.04422210529446602, 0.006659047212451696, 0.01685834676027298, -0.015562916174530983, 0.012350957840681076, 0.058383118361234665, -0.057282887399196625, 0.037798188626766205, 0.00993755180388689, -0.010860324837267399, 0.02124151773750782, -0.020336490124464035, 0.042447544634342194, 0.008761904202401638, 0.022075561806559563, -0.029031848534941673, 0.0027838454116135836, -0.0206914022564888, -0.046387072652578354, 0.02938676066696644, -0.07509949803352356, -0.034674957394599915, 0.036768943071365356, 0.02846398763358593, 0.018331235274672508, -0.022749895229935646, 0.0011379384668543935, -0.02814456634223461, -0.000013066605788480956, -0.015172512270510197, -0.003287377767264843, -0.00576289277523756, -0.03171143680810928, -0.02562468685209751, -0.03064670041203499, -0.013167256489396095, 0.07616423815488815, 0.02644098736345768, 0.02463093213737011, 0.025606941431760788, -0.027523469179868698, 0.05004267394542694, -0.03458622843027115, -0.04911990091204643, -0.06026415526866913, 0.06402622908353806, -0.0206914022564888, 0.009556020610034466, 0.015598407946527004, 0.026210293173789978, -0.027931619435548782, 0.04358326271176338, 0.023938853293657303, 0.028889883309602737, 0.01872163824737072, -0.02496809884905815, 0.054230641573667526, 0.027825145050883293, -0.029848147183656693, -0.039714716374874115, 0.03526056557893753, 0.05036209523677826, 0.013814971782267094, -0.010878070257604122, 0.005390234757214785, 0.021578684449195862, 0.011117636226117611, 0.017106786370277405, 0.0868116170167923, 0.0123687032610178, -0.03048698976635933, 0.007577383425086737, -0.007896805182099342, 0.03321981802582741, -0.04571273922920227, 0.037904661148786545, 0.006171042565256357, -0.018916839733719826, 0.06920795142650604, -0.027576707303524017, -0.06047710403800011, -0.041524771600961685, 0.017869848757982254, 0.03872096166014671, 0.009414056316018105, 0.04411563277244568, 0.02353070303797722, 0.045357827097177505, 0.04205714166164398, -0.06934991478919983, -0.013513295911252499, 0.05866704881191254, 0.007475345861166716, 0.023175790905952454, -0.008575575426220894, 0.019502446055412292, 0.035881660878658295, 0.019466955214738846, 0.03559773042798042, 0.009183363057672977, 0.03586391359567642, 0.047700248658657074, -0.010975671000778675, -0.03378767520189285, -0.024240529164671898, 0.03797564655542374, -0.04837458208203316, 0.0005312597495503724, 0.0229450985789299, 0.04063748940825462, -0.024719661101698875, -0.006486027035862207, 0.055153414607048035, -0.029812656342983246, -0.0363430492579937, 0.0044940803200006485, 0.03192438557744026, 0.0046316091902554035, 0.031125832349061966, 0.035721950232982635, -0.014959565363824368, -0.002058492973446846, -0.012262229807674885, 0.021525448188185692, 0.026795899495482445, -0.06395524740219116, -0.05178174376487732, 0.055366359651088715, -0.07247314602136612, 0.0047292099334299564, -0.0025553705636411905, -0.0001451536954846233, -0.018952330574393272, -0.04691944271326065, -0.02234174683690071, -0.05149781331419945, 0.01795857585966587, 0.010230354964733124, -0.017949704080820084, -0.06626217812299728, -0.0640617161989212, -0.018020685762166977, 0.00911238044500351, -0.016716381534934044, -0.05870253965258598, 0.0026130438782274723, -0.035775188356637955, -0.043334826827049255, -0.03508310765028, -0.008398118428885937, -0.03652050346136093, 0.033415019512176514, -0.056360118091106415, -0.0363430492579937, -0.005603182129561901, 0.01937822625041008, -0.012475176714360714, 0.052030183374881744, 0.0031786856707185507, 0.019733138382434845, -0.02260793000459671, -0.008526774123311043, -0.048090655356645584, -0.028872137889266014, -0.040318068116903305, 0.0017080167308449745, 0.020070305094122887, -0.06115143746137619, -0.0025664614513516426, 0.011951681226491928, 0.022288508713245392, -0.02764768898487091, -0.000876190431881696, 0.06026415526866913, 0.03227929770946503, 0.0102126095443964, 0.0640617161989212, -0.04017610475420952, 0.0989496260881424, 0.0009238817729055882, -0.026263529434800148, 0.06768182665109634, 0.016849474981427193, 0.0153854601085186, -0.0015948883956298232, 0.0029502108227461576, 0.07552539557218552, -0.03146300092339516, 0.012049281969666481, -0.01269699726253748, -0.00425451435148716, 0.03235027939081192, -0.026973355561494827, 0.003251886460930109, -0.020815622061491013, -0.03754974901676178, -0.006481590680778027, -0.014249740168452263, -0.014143265783786774, 0.033698949962854385, 0.048481058329343796, 0.0204252190887928, -0.051923710852861404, 0.04439956322312355, 0.039111364632844925, -0.013770608231425285, -0.033627964556217194, 0.03378767520189285, -0.011064399033784866, -0.023388737812638283, 0.01147254928946495, -0.026760408654808998, 0.0403890497982502, -0.018899094313383102, 0.020993078127503395, -0.006765521131455898, 0.02365492284297943, 0.08624375611543655, 0.00816742517054081, -0.04145378991961479, 0.02578439749777317, -0.057460345327854156, 0.0036622541956603527, 0.009493911638855934, 0.023743651807308197, 0.016459070146083832, 0.008979287929832935, -0.005975840613245964, 0.017577044665813446, -0.03644952178001404, -0.03458622843027115, 0.08858618140220642, 0.00859775673598051, -0.021259263157844543, 0.020017068833112717, -0.05944785475730896, -0.04851654917001724, 0.046387072652578354, 0.017994066700339317, -0.01204040925949812, 0.05366278067231178, 0.036378540098667145, -0.018792619928717613, -0.026458732783794403, 0.038508012890815735, 0.003369451267644763, -0.01188069861382246, 0.05607618764042854, 0.030575718730688095, 0.017612535506486893, -0.031995367258787155, 0.02058492973446846, -0.04936834052205086, 0.02528752014040947, -0.019200770184397697, 0.010301337577402592, 0.010478793643414974, -0.029741672798991203, -0.008176298812031746, -0.023796888068318367, -0.014586906880140305, -0.0600157156586647, -0.001645907061174512, 0.03762073442339897, -0.02704433724284172, 0.02567792497575283, 0.0005448462325148284, 0.020283253863453865, 0.07914550602436066, 0.026245784014463425, -0.03000785782933235, 0.02244821935892105, -0.04887146130204201, 0.010922434739768505 ]
20,421
cron_descriptor.ExpressionDescriptor
get_month_description
Generates a description for only the MONTH portion of the expression Returns: The MONTH description
def get_month_description(self): """Generates a description for only the MONTH portion of the expression Returns: The MONTH description """ return self.get_segment_description( self._expression_parts[4], '', lambda s: datetime.date(datetime.date.today().year, int(s), 1).strftime("%B"), lambda s: self._(", every {0} months").format(s), lambda s: self._(", month {0} through month {1}") or self._(", {0} through {1}"), lambda s: self._(", only in {0}"), lambda s: self._(", month {0} through month {1}") or self._(", {0} through {1}") )
(self)
[ 0.04946145787835121, 0.02305169776082039, 0.045403800904750824, -0.019588695839047432, 0.03641398623585701, -0.03882759436964989, 0.02880587801337242, -0.038127996027469635, -0.019955983385443687, -0.04001690819859505, 0.0493914969265461, 0.02777397260069847, 0.02095290832221508, -0.020725540816783905, -0.007249566726386547, 0.016580432653427124, 0.058626167476177216, -0.05761175602674484, -0.006668027024716139, 0.034245237708091736, -0.01633557304739952, -0.0209354180842638, -0.0020539709366858006, -0.02941802330315113, -0.00008840601367410272, 0.015968285501003265, -0.005741062108427286, -0.016300594434142113, -0.005146405193954706, -0.021669995039701462, -0.03017009049654007, -0.011753217317163944, -0.06562212854623795, -0.01620439998805523, -0.017271284013986588, 0.03777819871902466, 0.009803093038499355, 0.03686872497200966, -0.10871726274490356, 0.030135110020637512, 0.06306860595941544, -0.02644474059343338, 0.023698823526501656, 0.017323752865195274, -0.04428444430232048, -0.06509743630886078, 0.05320429801940918, -0.02170497551560402, 0.01916893757879734, -0.005675475113093853, 0.04222063720226288, -0.003928670194000006, 0.016125693917274475, -0.06621678918600082, -0.03686872497200966, 0.04760752618312836, 0.0665665864944458, 0.07387737184762955, 0.06149451434612274, 0.08458118885755539, -0.03429770842194557, 0.04610339552164078, -0.0074026030488312244, -0.01855679228901863, -0.032006531953811646, 0.03735844045877457, 0.022789349779486656, -0.006401306018233299, 0.04876186326146126, 0.0267595574259758, -0.010292810387909412, -0.009112241677939892, 0.005159522872418165, 0.05187506601214409, -0.012295404449105263, -0.08493098616600037, -0.04683797061443329, -0.00787483062595129, 0.03338823467493057, -0.03414030000567436, -0.03520718216896057, -0.007909810170531273, -0.011630788445472717, -0.042255617678165436, 0.036623865365982056, -0.0846511498093605, 0.027581583708524704, -0.011578318662941456, -0.022999228909611702, 0.028630977496504784, -0.047152791172266006, -0.02257947064936161, -0.00550494808703661, 0.062369007617235184, -0.09843319654464722, -0.020305782556533813, -0.059955403208732605, 0.022194692865014076, -0.02245704084634781, 0.054463572800159454, 0.02301671728491783, -0.011613298207521439, -0.03637900575995445, 0.0026715833228081465, 0.014735247008502483, 0.023733804002404213, -0.05439361184835434, -0.02822870947420597, 0.00276996404863894, -0.021127808839082718, -0.05344915762543678, 0.017857195809483528, -0.021285217255353928, -0.07387737184762955, -0.007901065982878208, 0.05992042273283005, -0.009269651025533676, -0.034402646124362946, -0.018311932682991028, -0.030135110020637512, 0.022631939500570297, -0.020113393664360046, -0.00869685597717762, 0.014315488748252392, 0.013764557428658009, 0.004151666536927223, 0.019133958965539932, -0.019291367381811142, 0.010520178824663162, -0.043165091425180435, -0.02557024359703064, 0.008753698319196701, 0.03125446289777756, -0.0332832932472229, -0.021302707493305206, -0.03879261389374733, 0.03552200272679329, -0.026637129485607147, -0.07132384181022644, 0.073177769780159, -0.048517003655433655, 0.0027415428776293993, -0.04879684001207352, 0.014752736315131187, -0.06597193330526352, -0.025972511619329453, 0.010616373270750046, 0.07660579681396484, 0.012750142253935337, -0.004661060404032469, 0.017761001363396645, -0.02481817826628685, 0.03777819871902466, -0.0859803855419159, 0.05264462158083916, 0.025220446288585663, 0.03784815967082977, 0.057716693729162216, 0.000904556130990386, 0.0013489091070368886, 0.06348836421966553, 0.04697789251804352, -0.0455087386071682, 0.04830712452530861, 0.011796942912042141, 0.059955403208732605, 0.04438938573002815, -0.05337919667363167, -0.01025783084332943, -0.007197096943855286, -0.007463817950338125, 0.014534112997353077, -0.021879874169826508, 0.008574427105486393, -0.03368556126952171, 0.08849892765283585, 0.001466966001316905, 0.07800498604774475, -0.002914255717769265, 0.05568786337971687, 0.013414759188890457, 0.029925230890512466, -0.09388582408428192, -0.02095290832221508, -0.031079566106200218, -0.000033579253795323893, -0.02201979234814644, -0.01636180840432644, -0.017787234857678413, -0.022824328392744064, 0.03254871815443039, 0.03165673092007637, 0.03459503501653671, 0.013921965844929218, -0.0656571090221405, -0.05264462158083916, -0.011595808900892735, 0.0003161847416777164, 0.01796213537454605, -0.0011248196242377162, -0.012076781131327152, 0.06999460607767105, -0.025605224072933197, 0.04428444430232048, 0.04886680096387863, 0.025447815656661987, -0.01946626603603363, 0.0469079315662384, -0.11361443996429443, -0.0016342132585123181, 0.03018758073449135, 0.010808763094246387, 0.008067219518125057, 0.03282855451107025, -0.020183352753520012, 0.04134614020586014, -0.0024595181457698345, 0.052364781498909, -0.05859119072556496, 0.013554678298532963, -0.024153562262654305, -0.00912973191589117, 0.04159099981188774, -0.01632682792842388, 0.03464750573039055, -0.027004417032003403, 0.05691215768456459, -0.01770853064954281, -0.024625789374113083, -0.023716313764452934, -0.055792804807424545, -0.018906589597463608, -0.030642317607998848, -0.016108203679323196, 0.005356284324079752, -0.029453003779053688, 0.0036706943064928055, -0.005942196119576693, -0.007183979265391827, -0.0013554678298532963, -0.029208146035671234, -0.0037887510843575, 0.003871828317642212, 0.047187771648168564, 0.0268819872289896, -0.03672880679368973, -0.003467374015599489, 0.017761001363396645, -0.019536226987838745, 0.011517103761434555, -0.0317966528236866, -0.03316086530685425, 0.03296847641468048, -0.005216364748775959, 0.01799711398780346, 0.0016538893105462193, 0.004446808714419603, 0.057576775550842285, 0.016991445794701576, -0.03205899894237518, 0.04351488873362541, -0.04561367630958557, -0.02987276203930378, -0.006222034338861704, 0.04351488873362541, 0.019291367381811142, 0.012531518936157227, 0.003992071375250816, 0.040331725031137466, -0.010747548192739487, 0.09164711087942123, 0.01048519928008318, -0.06208917126059532, -0.018801650032401085, 0.020725540816783905, 0.025780122727155685, -0.002739356830716133, -0.05659734085202217, -0.042430516332387924, 0.025482794269919395, 0.014883911237120628, -0.029662882909178734, 0.0111498162150383, 0.03405284881591797, 0.019833555445075035, 0.023891212418675423, 0.018941570073366165, -0.026934457942843437, 0.006309484131634235, 0.019081488251686096, -0.010660098865628242, 0.0020386672113090754, -0.012977511622011662, 0.01492763590067625, 0.027826443314552307, 0.044354405254125595, 0.03844281658530235, -0.014114354737102985, -0.05701709911227226, -0.00942706037312746, -0.036798764020204544, 0.030834706500172615, 0.0234539657831192, -0.0017118246760219336, -0.08458118885755539, 0.020708050578832626, 0.04652315378189087, 0.01915144920349121, 0.02808879129588604, -0.007848596200346947, 0.005338794086128473, -0.01651047170162201, 0.02347145602107048, -0.05201498419046402, -0.019553717225790024, -0.0074157207272946835, -0.04442436620593071, 0.02731923572719097, 0.036309048533439636, -0.0353471040725708, 0.026112431660294533, -0.02957543358206749, 0.011132325977087021, -0.007774263620376587, 0.032601188868284225, 0.016256868839263916, -0.09549489617347717, -0.0038040548097342253, 0.019676145166158676, -0.006305111572146416, -0.015408608131110668, -0.025220446288585663, -0.01255775336176157, 0.02850854955613613, -0.008574427105486393, -0.12012068182229996, 0.016764076426625252, -0.0487268827855587, -0.011569573543965816, 0.02807130105793476, 0.04606841504573822, -0.045088980346918106, -0.06432788074016571, 0.027371704578399658, 0.028018832206726074, 0.012828847393393517, 0.035766858607530594, 0.029907740652561188, -0.0030694787856191397, 0.019693635404109955, 0.011569573543965816, 0.019536226987838745, 0.009610704146325588, -0.040786463767290115, 0.007546895183622837, 0.023978663608431816, 0.009016047231853008, -0.026217371225357056, -0.07513663917779922, 0.05512818694114685, 0.020917929708957672, 0.05128040909767151, 0.014289254322648048, 0.012216700240969658, 0.04914664104580879, -0.03728848323225975, -0.025482794269919395, 0.07618603855371475, 0.08542070537805557, -0.07541648298501968, -0.006257014349102974, 0.024590808898210526, 0.029365554451942444, 0.027826443314552307, -0.04648817330598831, -0.009374590590596199, -0.00204413291066885, -0.019641166552901268, -0.06562212854623795, -0.025780122727155685, -0.006331346463412046, -0.010817507281899452, -0.012750142253935337, 0.007389485836029053, -0.04194079712033272, 0.050755709409713745, 0.02583259344100952, -0.02850854955613613, -0.054463572800159454, 0.017472418025135994, -0.006300739012658596, -0.014534112997353077, -0.04456428438425064, 0.0012264797696843743, -0.012776377610862255, -0.03938727080821991, 0.0024398420937359333, -0.028456078842282295, -0.02067307010293007, -0.025307895615696907, 0.025377854704856873, 0.01753363199532032, -0.04816720634698868, -0.034560058265924454, -0.03342321142554283, -0.017192577943205833, 0.026357289403676987, 0.006532480474561453, -0.010205361060798168, 0.0505458302795887, 0.04075148329138756, -0.061144717037677765, -0.03449009731411934, -0.04236055538058281, -0.004870939068496227, -0.06821063905954361, 0.042710352689027786, -0.053554095327854156, 0.011849411763250828, -0.002067088382318616, 0.008124061860144138, -0.007087784819304943, 0.06471265852451324, 0.019063998013734818, 0.03520718216896057, -0.03851277753710747, -0.009269651025533676, -0.014883911237120628, -0.03018758073449135, 0.015828365460038185, 0.0035242163576185703, 0.04501902312040329, -0.08786929398775101, 0.0037734475918114185, 0.04239553585648537, -0.0654122531414032, 0.00583288399502635, -0.028333649039268494, 0.008316450752317905, 0.009750623255968094, 0.013834516517817974, 0.0544285923242569, 0.07835478335618973, -0.009479530155658722, -0.06432788074016571, 0.001955590210855007, 0.010091676376760006, -0.02822870947420597, -0.03153430297970772, -0.047642506659030914, -0.051490288227796555, 0.09038784354925156, 0.007389485836029053, -0.06380318105220795, 0.06044511869549751, -0.026392269879579544, 0.06418795883655548, -0.03018758073449135, 0.02140764705836773, 0.013712087646126747, 0.013327308930456638, 0.06163443252444267, -0.025780122727155685, 0.00612583989277482, 0.007236449047923088, -0.015085045248270035, 0.022806838154792786, -0.026672108098864555, 0.002748101716861129, 0.02555275522172451, 0.009252160787582397, 0.007262683939188719, 0.012365364469587803, -0.009531999006867409, -0.001935914158821106, -0.023279067128896713, -0.05019603297114372, 0.013248604722321033, 0.039457231760025024, 0.007367623504251242, 0.0017336870077997446, 0.06208917126059532, -0.0030279401689767838, -0.018836630508303642, -0.0287009384483099, 0.07303785532712936, 0.02553526498377323, -0.028735917061567307, -0.002295550424605608, -0.0665665864944458, -0.043934646993875504, 0.05019603297114372, 0.04190581664443016, -0.0740872472524643, 0.0021436067763715982, -0.017306262627243996, 0.00810657162219286, 0.012732652947306633, 0.0016965209506452084, 0.05726195499300957, -0.051210448145866394, 0.0024289109278470278, 0.006305111572146416, -0.020620601251721382, -0.007490052841603756, -0.04634825512766838, 0.03235632926225662, -0.03461252525448799, 0.02583259344100952, -0.055373046547174454, 0.0011958724353462458, -0.03480491414666176, -0.02317412756383419, 0.04858696088194847, -0.04858696088194847, 0.002212473191320896, -0.01768229715526104, 0.03879261389374733, 0.03777819871902466, 0.035714391618967056, -0.001872513210400939, -0.04337497055530548, -0.027126846835017204, -0.05086065083742142, -0.00958446878939867, 0.0007706490578129888, -0.07807494699954987, -0.029907740652561188, -0.0233315359801054, -0.02647971920669079, 0.0081765316426754, -0.018924079835414886, 0.051350366324186325, 0.018241973593831062, -0.06299864500761032, 0.06194925308227539, -0.02303420752286911, -0.016886506229639053, 0.0007651834166608751, 0.07646587491035461, -0.021302707493305206, -0.0005673288833349943, 0.009042281657457352, 0.014805206097662449, -0.02955794334411621, 0.07807494699954987, 0.0535191148519516, 0.000681013276334852, 0.07576628029346466, 0.009785602800548077, 0.017577357590198517, -0.001466966001316905, -0.015592251904308796, -0.0327061265707016, 0.05411377176642418, 0.04977627471089363, -0.005351911764591932, 0.02511550672352314, 0.02854352816939354, -0.008902362547814846, -0.02689947746694088, 0.042745333164930344, 0.08681990206241608, 0.03718354180455208, 0.004097010940313339, 0.04438938573002815, -0.007673696614801884, -0.026672108098864555, 0.011176050640642643, 0.00966317392885685, 0.05589774250984192, -0.07352756708860397, 0.05246972292661667, -0.006510618142783642, -0.015128769911825657, 0.01796213537454605, 0.005710454657673836, -0.021879874169826508, 0.029068225994706154, 0.05421871319413185, -0.021215258166193962, 0.0004126525018364191, 0.02466076985001564, -0.06835056096315384, -0.03445511683821678, 0.08849892765283585, -0.030222559347748756, -0.02257947064936161, 0.0487268827855587, -0.014525367878377438, 0.0007061550277285278, 0.012636457569897175, 0.047327689826488495, -0.014315488748252392, 0.009444549679756165, -0.00023379086633212864, -0.043165091425180435, -0.02628733031451702, -0.04075148329138756, -0.02913818508386612, -0.013414759188890457, 0.06586699187755585, 0.02453834004700184, 0.04921659827232361, -0.014254274778068066, -0.004639198072254658, 0.025377854704856873, -0.00988179724663496, -0.023576395586133003, 0.006029645446687937, -0.06317354738712311, -0.00824211910367012, 0.03193657100200653, 0.005356284324079752, 0.0011117021786049008, -0.007148999720811844, 0.0036007347516715527, 0.0028377375565469265, -0.014481643214821815, -0.02731923572719097, -0.052679602056741714, 0.05225984379649162, -0.04596347734332085, 0.010817507281899452, -0.01693897508084774, 0.008919852785766125, -0.009470785036683083, -0.06677646934986115, 0.020393231883645058, -0.038687676191329956, -0.016527961939573288, 0.02955794334411621, -0.016125693917274475, -0.05523312836885452, -0.008062846958637238, -0.006895395927131176, 0.0036313419695943594, 0.0077217938378453255, -0.020830480381846428, 0.009016047231853008, -0.02779146283864975, -0.020603111013770103, -0.01076503749936819, -0.05526810511946678, -0.03823293745517731, 0.06002536043524742, -0.03637900575995445, -0.03326580300927162, 0.022247161716222763, 0.013921965844929218, -0.0034280219115316868, -0.0016462375642731786, 0.010896212421357632, 0.04281529411673546, -0.02731923572719097, 0.00816778652369976, -0.016379298642277718, 0.01605573482811451, -0.031132034957408905, -0.04582355543971062, 0.011849411763250828, -0.06716124713420868, -0.033825479447841644, -0.02126772701740265, 0.04519392177462578, -0.03256620839238167, 0.004765999503433704, 0.041101280599832535, -0.00366194942034781, 0.02037574164569378, 0.05820641294121742, 0.007660579401999712, 0.0983632355928421, -0.01765606179833412, -0.033930420875549316, 0.04061156511306763, 0.036798764020204544, 0.056702278554439545, 0.046872951090335846, 0.017297517508268356, 0.07310780882835388, -0.06737112253904343, 0.014778971672058105, 0.006121467333287001, -0.02319161780178547, 0.03984200954437256, -0.07373744994401932, 0.026532189920544624, -0.03546953201293945, -0.04816720634698868, -0.036938685923814774, 0.009925521910190582, 0.03139438480138779, 0.02807130105793476, 0.06845549494028091, 0.07104400545358658, -0.06471265852451324, 0.023558905348181725, 0.007800498511642218, 0.0019523109076544642, -0.003445511683821678, 0.018014604225754738, 0.0232091061770916, 0.020253311842679977, -0.022492021322250366, -0.04617335647344589, -0.002997332951053977, -0.024118581786751747, -0.026339801028370857, 0.0005359016940928996, 0.020847968757152557, 0.0603751614689827, -0.002533850260078907, -0.03414030000567436, 0.06166941300034523, -0.06597193330526352, -0.025360366329550743, 0.0014494761126115918, 0.018696710467338562, -0.00046266269055195153, 0.020760519430041313, -0.02616490051150322, 0.010590138845145702, -0.005308186635375023, -0.026269840076565742, 0.042290594428777695, -0.011385929770767689, 0.023978663608431816, 0.04292023181915283, -0.06016528233885765, -0.007275801617652178, 0.05411377176642418, 0.04131115972995758, 0.014577837660908699, 0.013169900514185429, 0.017778491601347923, -0.00870122853666544, 0.00024403886345680803, 0.013659617863595486, -0.018784159794449806, -0.0018987481016665697, 0.05198000371456146, 0.04012184590101242, 0.029802801087498665, 0.006152074784040451, 0.035609450191259384, -0.07422716915607452, 0.04159099981188774, 0.0008138272678479552, -0.02420603111386299, -0.003441139357164502, -0.0445992648601532, -0.0038652694784104824, -0.011517103761434555, -0.017306262627243996, -0.043934646993875504, 0.04617335647344589, 0.014088120311498642, -0.0059203337877988815, -0.0060777426697313786, -0.018364403396844864, -0.017629826441407204, 0.015697192400693893, -0.0015238082269206643, 0.019728615880012512, -0.0008056288352236152, -0.005351911764591932, 0.010931191965937614 ]
20,422
cron_descriptor.ExpressionDescriptor
get_seconds_description
Generates a description for only the SECONDS portion of the expression Returns: The SECONDS description
def get_seconds_description(self): """Generates a description for only the SECONDS portion of the expression Returns: The SECONDS description """ def get_description_format(s): if s == "0": return "" try: if int(s) < 20: return self._("at {0} seconds past the minute") else: return self._("at {0} seconds past the minute [grThen20]") or self._("at {0} seconds past the minute") except ValueError: return self._("at {0} seconds past the minute") return self.get_segment_description( self._expression_parts[0], self._("every second"), lambda s: s, lambda s: self._("every {0} seconds").format(s), lambda s: self._("seconds {0} through {1} past the minute"), get_description_format, lambda s: self._(", second {0} through second {1}") or self._(", {0} through {1}") )
(self)
[ 0.04125746712088585, -0.02605641447007656, 0.04374071955680847, -0.011813187040388584, 0.052715905010700226, -0.015378428623080254, 0.018110007047653198, 0.006660438142716885, 0.007148219738155603, -0.016557972878217697, 0.010917442850768566, 0.05087120458483696, 0.02554202638566494, -0.03756806254386902, 0.013586939312517643, 0.03185658156871796, 0.0881909430027008, -0.07669702917337418, -0.06201036646962166, -0.05051645264029503, 0.02126728557050228, -0.019067833200097084, -0.007667042315006256, -0.04888460040092468, -0.020415883511304855, 0.01903235726058483, -0.014757615514099598, -0.048458900302648544, -0.05009075254201889, -0.05055192857980728, -0.005418811924755573, -0.0015365125145763159, -0.0769098773598671, -0.02543560229241848, -0.02564845234155655, 0.01892593316733837, -0.04303121939301491, -0.04022869095206261, -0.05718575790524483, 0.044769495725631714, 0.02346673794090748, 0.010207941755652428, -0.019103307276964188, -0.008443058468401432, -0.04707537591457367, -0.010908573865890503, 0.0574340857565403, 0.0011861965758726, 0.01892593316733837, -0.03834851458668709, 0.07612942904233932, -0.0069131976924836636, -0.04604659974575043, -0.011032736860215664, -0.04718180000782013, 0.004354560747742653, 0.03017151914536953, 0.08159258216619492, 0.06452909111976624, 0.030827807262539864, 0.027528628706932068, 0.030810069292783737, -0.017968107014894485, 0.10053625702857971, -0.04313764348626137, -0.011813187040388584, 0.021462397649884224, -0.006585053633898497, 0.030969707295298576, -0.028752516955137253, 0.011343142949044704, -0.04703989997506142, -0.008496271446347237, 0.036131326109170914, -0.025914514437317848, -0.050693828612565994, -0.07648418098688126, -0.008948578499257565, 0.039661090821027756, -0.012584769167006016, -0.032229069620370865, 0.017968107014894485, 0.0569019578397274, -0.025009900331497192, 0.0440245196223259, -0.03973204270005226, 0.042782895267009735, -0.017134442925453186, -0.0323532335460186, 0.07087912410497665, -0.05679553374648094, -0.0028047452215105295, -0.005937634501606226, 0.032956309616565704, -0.046472299844026566, 0.04938125237822533, -0.07392998039722443, -0.03703593835234642, -0.013666758313775063, -0.0067180851474404335, 0.05934973806142807, 0.010305498726665974, -0.005210395902395248, -0.002645107451826334, 0.006017453037202358, 0.019990183413028717, -0.041434843093156815, -0.0008946360903792083, 0.06378411501646042, -0.010438529774546623, 0.0025564199313521385, -0.016345122829079628, -0.008864324539899826, -0.054596081376075745, -0.026570802554488182, -0.008172561414539814, 0.050374552607536316, -0.006283516064286232, -0.007077269721776247, -0.03916444256901741, 0.010243416763842106, -0.03465911000967026, -0.029160480946302414, 0.0356878861784935, -0.03380770981311798, 0.039661090821027756, -0.04977147653698921, -0.012487213127315044, 0.01576865464448929, -0.013533726334571838, 0.005809037480503321, -0.02048683352768421, 0.08975184708833694, 0.02497442625463009, 0.03428662195801735, -0.014677796512842178, 0.04022869095206261, 0.020877059549093246, -0.036237750202417374, 0.11855757236480713, -0.034978386014699936, 0.01800358109176159, -0.07286572456359863, 0.02689007855951786, -0.007507404778152704, -0.02091253362596035, -0.013063682243227959, 0.043776195496320724, 0.030863281339406967, 0.04728822410106659, -0.03739069029688835, 0.020788371562957764, 0.03895159065723419, -0.005906593520194292, 0.08286968618631363, -0.04246361926198006, 0.03728426247835159, 0.033115945756435394, -0.014296439476311207, -0.026233790442347527, 0.051474280655384064, -0.004090715199708939, -0.029781293123960495, -0.03563467413187027, 0.01285083219408989, 0.038525890558958054, -0.011405223980545998, 0.03130672127008438, -0.017302948981523514, 0.005103970877826214, -0.009063871577382088, 0.0033036128152161837, -0.019227469339966774, 0.02096574753522873, 0.016353992745280266, 0.01084649283438921, 0.016584578901529312, 0.07932218164205551, -0.01497933454811573, -0.05062287673354149, 0.044343795627355576, 0.004580714274197817, -0.10770221054553986, 0.022970085963606834, -0.03183884546160698, 0.00041655453969724476, 0.005374467931687832, -0.01945805735886097, -0.011325405910611153, -0.036432862281799316, 0.00866034347563982, 0.046117547899484634, 0.015671096742153168, 0.0303843691945076, 0.0031905360519886017, -0.000012696876183326822, -0.018606657162308693, -0.018606657162308693, 0.04491139575839043, 0.010988392867147923, -0.052715905010700226, 0.03332879766821861, -0.016832904890179634, -0.013897345401346684, 0.06193941459059715, 0.008496271446347237, 0.013400695286691189, 0.03057948127388954, -0.1360112875699997, -0.001434521866030991, -0.05154522880911827, -0.010252285748720169, 0.048246052116155624, 0.013223320245742798, 0.018198693171143532, 0.010128122754395008, 0.00574695598334074, 0.0231474619358778, -0.06545144319534302, -0.03254834562540054, 0.045230671763420105, -0.02554202638566494, 0.04249909520149231, -0.05697290971875191, 0.011751106008887291, -0.009791110642254353, 0.025808090344071388, -0.03912896662950516, -0.012283231131732464, -0.01981280744075775, -0.006735822651535273, -0.028486454859375954, -0.0020021223463118076, -0.011449567973613739, 0.009059437550604343, -0.01037644874304533, -0.024850264191627502, -0.0032282283063977957, 0.04987790063023567, -0.05143880471587181, -0.07960598170757294, 0.03611358627676964, -0.04186054319143295, 0.05087120458483696, 0.005436549428850412, -0.07761938124895096, -0.004108452703803778, -0.015910554677248, -0.05484440550208092, 0.03527992591261864, 0.030827807262539864, -0.021551085636019707, 0.022065473720431328, -0.007693648803979158, 0.0008929732139222324, -0.005099536385387182, -0.01110368687659502, 0.06165561452507973, 0.0008170344517566264, -0.0228813998401165, 0.01981280744075775, -0.035297662019729614, -0.06828944385051727, -0.03480101004242897, 0.02064647153019905, 0.021462397649884224, -0.007148219738155603, -0.020930271595716476, -0.010864229872822762, -0.012549294158816338, 0.07946408540010452, -0.01774638704955578, -0.06704781949520111, -0.017302948981523514, -0.016353992745280266, 0.003866779152303934, 0.004028633702546358, -0.012478344142436981, 0.014163408428430557, 0.009329934604465961, 0.004607320297509432, 0.017400505021214485, -0.021302759647369385, 0.01396829541772604, 0.07176599651575089, 0.03324010968208313, 0.00881998147815466, 0.01768430508673191, 0.009817716665565968, 0.04150579497218132, -0.036645714193582535, -0.03959014266729355, 0.05197092890739441, -0.020309459418058395, 0.04239267110824585, 0.059065937995910645, -0.002303660148754716, -0.025009900331497192, -0.027475416660308838, 0.001703910413198173, 0.010323235765099525, 0.0378873385488987, -0.006926501169800758, 0.037426162511110306, -0.06736709177494049, 0.01716991886496544, 0.0031195860356092453, -0.0034033863339573145, 0.019333895295858383, -0.0259499903768301, -0.03990941494703293, -0.017968107014894485, 0.02069968357682228, -0.003407820826396346, -0.02215415984392166, 0.05888856202363968, -0.049806952476501465, 0.025506552308797836, 0.029160480946302414, 0.032796673476696014, 0.013879608362913132, -0.0020642036106437445, 0.01601697877049446, -0.006168222054839134, 0.06413886696100235, -0.011201242916285992, -0.06335841864347458, -0.011751106008887291, -0.0026295871939510107, -0.03231775760650635, -0.025417864322662354, -0.030366631224751472, 0.024690626189112663, -0.014181146398186684, 0.0007843308849260211, -0.05094215273857117, 0.03382544964551926, -0.004432162269949913, -0.017852813005447388, -0.012070381082594395, 0.0780450850725174, -0.0579662099480629, -0.05658268555998802, -0.0009827694157138467, 0.0423571951687336, -0.029869981110095978, 0.016717610880732536, -0.03531539812684059, 0.08960994333028793, -0.016877248883247375, 0.03260155767202377, -0.0384904146194458, 0.014713271521031857, 0.029142742976546288, 0.005791299976408482, 0.07506518065929413, 0.020149821415543556, -0.047004424035549164, -0.03724879026412964, -0.03105839528143406, 0.027191616594791412, 0.0540994331240654, 0.020043395459651947, -0.019883757457137108, 0.022029997780919075, 0.006585053633898497, 0.02336031198501587, 0.00037858515861444175, 0.017542405053973198, -0.010057172738015652, -0.04551447182893753, 0.015600147657096386, 0.07059532403945923, 0.012052644044160843, -0.016008110716938972, -0.03556372597813606, -0.006509669125080109, -0.0050064148381352425, -0.048458900302648544, -0.028752516955137253, 0.02107217162847519, 0.021870359778404236, -0.03689403831958771, 0.05622793361544609, 0.002376827411353588, 0.01110368687659502, -0.016300778836011887, -0.017036886885762215, -0.00923237856477499, -0.014234358444809914, -0.018482495099306107, -0.03542182594537735, -0.028131704777479172, -0.0038224351592361927, -0.009755635634064674, -0.02694329060614109, -0.02163977175951004, 0.014136802405118942, -0.02075289748609066, 0.04264099523425102, 0.026553064584732056, -0.04977147653698921, -0.01711670495569706, -0.0038756479043513536, -0.0231474619358778, -0.03969656676054001, 0.05807263404130936, 0.057717885822057724, -0.020451359450817108, 0.02610962651669979, -0.0037448336370289326, -0.08223113417625427, -0.049700528383255005, 0.005879987496882677, -0.0006008584168739617, -0.07499422878026962, -0.031661469489336014, 0.01945805735886097, -0.05275138095021248, 0.029142742976546288, -0.006132747046649456, -0.04331501945853233, 0.03983846679329872, 0.030100569128990173, 0.06080421432852745, 0.024530988186597824, -0.007232473231852055, 0.006930935196578503, 0.017657699063420296, 0.04562089592218399, -0.05867571011185646, 0.024282662197947502, -0.09847870469093323, -0.009418622590601444, 0.03724879026412964, -0.04207339510321617, -0.002410085406154394, 0.002758184215053916, -0.002202778123319149, -0.011893006041646004, 0.03781639039516449, 0.06112349033355713, 0.06091063842177391, 0.026517590507864952, 0.019529007375240326, -0.04519519582390785, -0.009604866616427898, 0.005361164920032024, 0.005884421989321709, -0.04193149507045746, -0.008354371413588524, 0.024406826123595238, 0.0557667575776577, -0.000709500745870173, 0.012008300051093102, -0.015130103565752506, 0.07329142838716507, 0.030295681208372116, -0.014456077478826046, -0.042215295135974884, 0.02866383083164692, 0.0401577427983284, 0.0017737518064677715, 0.009418622590601444, -0.01956448331475258, 0.008176996372640133, 0.022437961772084236, -0.03183884546160698, -0.07016962021589279, 0.018322857096791267, 0.017569012939929962, 0.03141314536333084, 0.0029577312525361776, -0.020415883511304855, 0.024069812148809433, -0.018500231206417084, -0.01789715699851513, 0.02995866909623146, 0.033417485654354095, 0.006833379156887531, 0.02309424988925457, -0.04867175221443176, -0.022118685767054558, 0.013356351293623447, 0.006075100041925907, 0.04306669533252716, -0.045017823576927185, -0.041115567088127136, 0.013649020344018936, -0.08322443813085556, -0.04661419987678528, -0.005946503020823002, 0.041115567088127136, -0.04870722442865372, -0.025666188448667526, -0.015617884695529938, 0.007777901832014322, -0.009214640595018864, -0.009897535666823387, 0.06552239507436752, -0.07134030014276505, 0.011201242916285992, 0.04487592354416847, -0.029692605137825012, 0.026020940393209457, -0.011272192932665348, 0.018287381157279015, 0.00631899107247591, 0.024176238104701042, -0.034925173968076706, 0.030455319210886955, -0.008314461447298527, -0.031821109354496, 0.018447019159793854, -0.045798271894454956, -0.05278685688972473, 0.042321719229221344, 0.014012639410793781, 0.03313368558883667, -0.008434190414845943, 0.00044316082494333386, -0.043669771403074265, -0.014323046430945396, 0.027120666578412056, 0.025666188448667526, -0.03444626182317734, -0.04994885250926018, -0.032530609518289566, -0.002410085406154394, -0.01691272482275963, 0.07247550040483475, 0.0024632979184389114, 0.02673044055700302, 0.036752138286828995, -0.01660231687128544, 0.026659490540623665, -0.029284643009305, -0.07293667644262314, -0.0462949238717556, 0.04072534292936325, 0.00954278465360403, 0.00674912566319108, 0.024477776139974594, 0.06122991442680359, 0.001610788400284946, 0.04391809552907944, 0.015094628557562828, 0.013480514287948608, 0.025577502325177193, -0.014216621406376362, 0.022615335881710052, 0.04079629108309746, 0.003678317880257964, -0.08861663937568665, 0.02366185002028942, 0.05633435770869255, 0.003662797622382641, -0.003046418773010373, -0.01889045722782612, 0.010580429807305336, 0.005729218479245901, -0.015644490718841553, 0.10415470600128174, -0.010394185781478882, 0.002319180639460683, 0.004620623774826527, 0.029869981110095978, 0.007782336324453354, -0.05452513322234154, 0.015351822599768639, 0.013515989296138287, -0.017914893105626106, 0.05718575790524483, 0.026020940393209457, -0.055057257413864136, -0.008514008484780788, 0.013400695286691189, 0.02616284042596817, 0.019777333363890648, 0.024672888219356537, 0.011777712032198906, 0.018322857096791267, 0.03806471452116966, -0.05104857683181763, -0.009516178630292416, 0.05580223351716995, 0.006771297659724951, 0.011112554930150509, -0.01773751899600029, 0.01586621068418026, 0.028220392763614655, 0.004050805699080229, 0.01246060710400343, -0.0035962818656116724, 0.018180957064032555, 0.00685111666098237, -0.009125953540205956, -0.004028633702546358, -0.0131080262362957, 0.05778883397579193, -0.0747104287147522, 0.021923573687672615, 0.04526614770293236, 0.05942068621516228, -0.01862439513206482, -0.005937634501606226, 0.09244794398546219, -0.03469458594918251, -0.04097366705536842, -0.01009264774620533, 0.025737140327692032, 0.03105839528143406, 0.012478344142436981, 0.02174619771540165, 0.012939520180225372, 0.0060440595261752605, 0.01627417281270027, 0.003953249659389257, -0.00202762009575963, -0.0591014102101326, -0.05062287673354149, 0.07620038092136383, -0.0524321049451828, -0.004507546778768301, -0.04931030049920082, 0.01800358109176159, -0.00881554652005434, -0.06335841864347458, -0.016735348850488663, -0.10280665755271912, 0.027298040688037872, 0.0401577427983284, -0.018766295164823532, -0.08109593391418457, -0.07265287637710571, 0.005516368430107832, -0.01560901664197445, 0.008469665423035622, -0.05676005780696869, 0.042782895267009735, 0.01659344881772995, -0.01064251083880663, -0.05555390939116478, 0.016061322763562202, -0.04955862835049629, 0.02366185002028942, -0.05044550448656082, -0.03778091445565224, -0.008788940496742725, 0.043882619589567184, -0.005990847013890743, 0.038525890558958054, 0.013622414320707321, -0.005223699379712343, -0.038206614553928375, -0.014660059474408627, -0.016371728852391243, -0.038100190460681915, -0.017764125019311905, 0.009525047615170479, 0.06055588647723198, -0.04597564786672592, 0.0016329602804034948, 0.017959237098693848, 0.01857118122279644, -0.03817113861441612, 0.0192452073097229, 0.07091459631919861, 0.048139624297618866, -0.018074531108140945, 0.05424133315682411, -0.045017823576927185, 0.0540994331240654, 0.0070373606868088245, -0.017072360962629318, 0.04615302383899689, 0.010252285748720169, 0.037639014422893524, 0.0368230901658535, -0.001111366436816752, 0.03439304977655411, -0.014190014451742172, 0.008562787435948849, -0.054383233189582825, -0.02215415984392166, 0.0038978196680545807, -0.024477776139974594, -0.010908573865890503, -0.02600320242345333, -0.07769033312797546, -0.04186054319143295, -0.037319738417863846, -0.04494687169790268, 0.019422583281993866, 0.05487988144159317, -0.0211785975843668, -0.02570166438817978, 0.017125574871897697, 0.04821057617664337, -0.008868759498000145, -0.003846824401989579, 0.037639014422893524, 0.019901495426893234, -0.005192658398300409, 0.009808847680687904, -0.012105856090784073, 0.03325784578919411, -0.05832096189260483, 0.049026500433683395, -0.031661469489336014, 0.021675247699022293, 0.0529642291367054, -0.00036306484253145754, -0.006585053633898497, -0.011192373931407928, -0.03237096965312958, -0.012238888069987297, 0.0010975089389830828, 0.023324836045503616, 0.02516953833401203, 0.017728649079799652, 0.0018679824424907565, 0.022615335881710052, -0.013932820409536362, -0.07861268520355225, 0.07634227722883224, 0.013560333289206028, 0.032122645527124405, 0.04906197637319565, -0.06601904332637787, -0.051155004650354385, 0.02215415984392166, 0.011955087073147297, -0.0418250672519207, 0.011218980886042118, 0.04253457114100456, -0.01892593316733837, -0.03542182594537735, 0.04782034829258919, -0.02871704287827015, -0.010500610806047916, 0.07875458151102066, 0.009409753605723381, 0.004161665216088295, -0.03724879026412964, 0.02075289748609066, -0.03396734967827797, 0.010261154733598232, 0.01136974897235632, -0.03781639039516449, 0.009125953540205956, -0.02304103597998619, -0.03453494980931282, -0.036220014095306396, -0.023289361968636513, -0.07116292417049408, 0.0005709263496100903, 0.014163408428430557, -0.038206614553928375, 0.02476157620549202, 0.03224680945277214, 0.006762429140508175, 0.10550276190042496, 0.04778487607836723, 0.005467589944601059, 0.039554666727781296, -0.0535673052072525, 0.009746766649186611 ]
20,423
cron_descriptor.ExpressionDescriptor
get_segment_description
Returns segment description Args: expression: Segment to descript all_description: * get_single_item_description: 1 get_interval_description_format: 1/2 get_between_description_format: 1-2 get_description_format: format get_single_item_description get_range_format: function that formats range expressions depending on cron parts Returns: segment description
def get_segment_description( self, expression, all_description, get_single_item_description, get_interval_description_format, get_between_description_format, get_description_format, get_range_format ): """Returns segment description Args: expression: Segment to descript all_description: * get_single_item_description: 1 get_interval_description_format: 1/2 get_between_description_format: 1-2 get_description_format: format get_single_item_description get_range_format: function that formats range expressions depending on cron parts Returns: segment description """ description = None if expression is None or expression == '': description = '' elif expression == "*": description = all_description elif any(ext in expression for ext in ['/', '-', ',']) is False: description = get_description_format(expression).format(get_single_item_description(expression)) elif "/" in expression: segments = expression.split('/') description = get_interval_description_format(segments[1]).format(get_single_item_description(segments[1])) # interval contains 'between' piece (i.e. 2-59/3 ) if "-" in segments[0]: between_segment_description = self.generate_between_segment_description( segments[0], get_between_description_format, get_single_item_description ) if not between_segment_description.startswith(", "): description += ", " description += between_segment_description elif any(ext in segments[0] for ext in ['*', ',']) is False: range_item_description = get_description_format(segments[0]).format( get_single_item_description(segments[0]) ) range_item_description = range_item_description.replace(", ", "") description += self._(", starting {0}").format(range_item_description) elif "," in expression: segments = expression.split(',') description_content = '' for i, segment in enumerate(segments): if i > 0 and len(segments) > 2: description_content += "," if i < len(segments) - 1: description_content += " " if i > 0 and len(segments) > 1 and (i == len(segments) - 1 or len(segments) == 2): description_content += self._(" and ") if "-" in segment: between_segment_description = self.generate_between_segment_description( segment, get_range_format, get_single_item_description ) between_segment_description = between_segment_description.replace(", ", "") description_content += between_segment_description else: description_content += get_single_item_description(segment) description = get_description_format(expression).format(description_content) elif "-" in expression: description = self.generate_between_segment_description( expression, get_between_description_format, get_single_item_description ) return description
(self, expression, all_description, get_single_item_description, get_interval_description_format, get_between_description_format, get_description_format, get_range_format)
[ 0.04074506461620331, -0.011160604655742645, 0.018512431532144547, -0.04039075970649719, -0.0009477656567469239, -0.0421268530189991, 0.031763434410095215, -0.050594739615917206, -0.045634470880031586, -0.05987752974033356, 0.0315331369638443, 0.06629044562578201, -0.0023406269028782845, -0.025509953498840332, -0.01760009676218033, 0.04556361213326454, 0.03319837152957916, -0.060975875705480576, -0.032773204147815704, -0.0035541211254894733, -0.01946905441582203, -0.018264418467879295, -0.010212838649749756, -0.01867186836898327, 0.03055879846215248, 0.01111631654202938, 0.0195044856518507, -0.05020500719547272, -0.02774207480251789, -0.03429671376943588, 0.02997419610619545, -0.03250747546553612, -0.08694642782211304, -0.030045056715607643, -0.014473355375230312, 0.02412816509604454, 0.021045710891485214, 0.027635782957077026, -0.008653897792100906, 0.1240067183971405, -0.021010281518101692, -0.02593511901795864, 0.020443392917513847, -0.026253994554281235, -0.023065250366926193, 0.012878983281552792, 0.012746118940412998, -0.004862834699451923, 0.0018346351571381092, -0.008193301036953926, 0.07695502787828445, -0.028610121458768845, -0.04896494001150131, -0.05551958084106445, -0.057574547827243805, 0.03468644991517067, 0.04354407265782356, 0.13364380598068237, 0.07241992652416229, 0.029797043651342392, 0.030487937852740288, 0.0537126250565052, 0.005031129810959101, 0.013481302186846733, -0.01754694990813732, 0.03107254020869732, 0.008401455357670784, -0.029655320569872856, 0.0051817093044519424, 0.047866594046354294, 0.035005323588848114, -0.022268064320087433, -0.012409529648721218, -0.0034921178594231606, 0.02644886076450348, -0.022941242903470993, -0.0426228791475296, 0.02240978553891182, 0.0555904395878315, -0.020248524844646454, -0.0014526501763612032, -0.010053401812911034, 0.059594087302684784, -0.037768904119729996, 0.07252621650695801, -0.028220385313034058, -0.0134281562641263, -0.0243053175508976, 0.01448221318423748, 0.06065700203180313, -0.015022528357803822, -0.03883181884884834, -0.03496989607810974, -0.0147390840575099, -0.015252826735377312, -0.013020705431699753, -0.053996067494153976, -0.054846398532390594, -0.013791318982839584, -0.015013670548796654, 0.003892925102263689, 0.016829483211040497, -0.0302222091704607, -0.05764541029930115, 0.01650175079703331, -0.04287089407444, -0.025793397799134254, 0.01714835688471794, -0.004738828167319298, -0.031143400818109512, -0.041807979345321655, -0.009849676862359047, -0.05158679559826851, -0.0671762079000473, -0.03737916797399521, 0.05902719870209694, -0.0140216164290905, 0.0031666001304984093, -0.031550850719213486, -0.0806397944688797, 0.026324855163693428, -0.045173875987529755, -0.06412918865680695, 0.028450684621930122, -0.0072853947058320045, 0.008684898726642132, -0.04173711687326431, 0.015057958662509918, 0.016457462683320045, -0.043402351438999176, 0.004946982488036156, 0.007382828742265701, 0.00747140496969223, 0.004955839831382036, 0.011860356666147709, -0.03257833793759346, -0.022551506757736206, -0.0037268446758389473, -0.05378348380327225, 0.05679507553577423, -0.017245791852474213, -0.043402351438999176, -0.002213298575952649, 0.04152453690767288, -0.0421268530189991, 0.006656503304839134, 0.008472315967082977, 0.04241029918193817, 0.01442020945250988, 0.03879638761281967, -0.04070963338017464, 0.040922217071056366, 0.004411096218973398, -0.06526296585798264, 0.09176497161388397, -0.05208282172679901, 0.012781549245119095, 0.036847710609436035, -0.019894219934940338, 0.00641291867941618, 0.025049356743693352, -0.013738173060119152, -0.03971758112311363, 0.03388926386833191, -0.0017493804916739464, 0.03791062533855438, -0.03667055815458298, -0.017653241753578186, 0.01929190196096897, -0.01154148206114769, -0.013569878414273262, 0.041878841817379, -0.09034775197505951, 0.041559964418411255, -0.007644128520041704, 0.05470467731356621, -0.026041410863399506, 0.060054682195186615, -0.008423599414527416, -0.04825633019208908, 0.039292413741350174, 0.017520377412438393, 0.0009317111689597368, 0.009885107167065144, -0.029921049252152443, -0.023738428950309753, 0.014074762351810932, -0.021470878273248672, -0.0027967942878603935, 0.013330722227692604, -0.03257833793759346, -0.0248013436794281, -0.01690034382045269, 0.03982387110590935, -0.01494280993938446, -0.02779521979391575, -0.006342058070003986, -0.0015367974992841482, 0.009601662866771221, 0.01861872337758541, -0.02572253718972206, 0.028610121458768845, 0.015757711604237556, 0.00248013436794281, 0.011523767374455929, 0.03530648350715637, 0.00304259336553514, 0.02565167471766472, -0.10296100378036499, 0.02791922725737095, -0.02779521979391575, 0.03443843871355057, -0.00008698462625034153, 0.029017571359872818, 0.018742728978395462, 0.030966248363256454, -0.010815157555043697, 0.05885004624724388, -0.06774310022592545, -0.025421377271413803, 0.0322771780192852, -0.0397530123591423, 0.03766261041164398, -0.03674142062664032, 0.017343224957585335, 0.007227820344269276, 0.07766363769769669, -0.02357899211347103, 0.008742474019527435, 0.030151348561048508, -0.017768390476703644, -0.04928381368517876, 0.01833527907729149, 0.013782461173832417, 0.02425217069685459, 0.008286305703222752, -0.02963760495185852, 0.004712255205959082, 0.040886785835027695, -0.01582857221364975, -0.039575859904289246, 0.0215594545006752, -0.03702486306428909, -0.03780433535575867, 0.019610777497291565, -0.06246395409107208, -0.03387155011296272, 0.04375665634870529, -0.04850434139370918, -0.05073646456003189, 0.015190823003649712, 0.002466847887262702, -0.010505140759050846, -0.058495741337537766, -0.011479479260742664, 0.013268718495965004, -0.01739637181162834, 0.022356640547513962, 0.04233943670988083, -0.044252682477235794, 0.04375665634870529, -0.05962951481342316, -0.003505404107272625, -0.012790407054126263, 0.006262339185923338, 0.028450684621930122, 0.0243053175508976, -0.027139756828546524, -0.0003465545014478266, 0.029194723814725876, -0.021683460101485252, 0.029655320569872856, -0.047689441591501236, -0.02375614456832409, 0.0012909985380247235, 0.0739080011844635, 0.016085442155599594, -0.0532165989279747, -0.014535359106957912, -0.01559827383607626, 0.001999608241021633, 0.02253379300236702, 0.0035386201925575733, 0.005531585309654474, 0.07830138504505157, -0.014216484501957893, 0.011568055488169193, -0.02127601020038128, -0.02724604681134224, 0.06062157079577446, -0.0491066612303257, 0.01362302340567112, -0.0147390840575099, 0.008144584484398365, 0.07404972612857819, 0.06898316740989685, 0.04931924492120743, -0.044040098786354065, 0.01431391853839159, 0.00838816910982132, -0.03309207782149315, 0.03039936162531376, 0.03833579272031784, -0.0012821408454328775, -0.10111862421035767, -0.0055891601368784904, 0.03582022711634636, -0.02109885774552822, 0.04078049585223198, -0.0488586463034153, -0.02223263308405876, -0.015899432823061943, 0.03394240885972977, 0.011497193947434425, 0.024624191224575043, 0.06292454898357391, -0.03374754264950752, 0.05874375253915787, 0.024872204288840294, 0.00552715640515089, -0.008113582618534565, 0.04322519898414612, 0.008800048381090164, 0.02737005427479744, 0.10147292912006378, -0.0014559717383235693, -0.050382159650325775, 0.03741459921002388, 0.003607266815379262, 0.018530147150158882, 0.025793397799134254, -0.01714835688471794, -0.015270541422069073, -0.007737133651971817, 0.0022144056856632233, -0.06497952342033386, 0.03481045737862587, -0.01559827383607626, -0.022799521684646606, -0.010265984572470188, 0.08680470287799835, 0.017343224957585335, -0.04219771549105644, 0.015394547954201698, 0.04209142178297043, -0.020886274054646492, 0.07865568995475769, -0.030257638543844223, 0.004400024190545082, -0.008994915522634983, -0.023313263431191444, -0.026626013219356537, 0.010478567332029343, 0.0026107842568308115, 0.023065250366926193, -0.0032906068954616785, 0.009229643270373344, -0.07638813555240631, -0.014561931602656841, -0.015394547954201698, 0.0537126250565052, -0.02728147804737091, -0.00747140496969223, 0.02577568218111992, 0.0004951964947395027, -0.0294781681150198, -0.023136110976338387, 0.05243712663650513, 0.0426228791475296, -0.0302222091704607, -0.03220631554722786, -0.00022932939464226365, 0.06338515132665634, -0.00767070148140192, 0.010265984572470188, -0.03734373673796654, -0.0020527541637420654, -0.008999344892799854, -0.06246395409107208, 0.00651478162035346, -0.013091566041111946, 0.04039075970649719, -0.01288784109055996, 0.030045056715607643, -0.030169062316417694, -0.00046059637679718435, 0.053074873983860016, 0.025368232280015945, -0.014987098053097725, 0.012577824294567108, -0.004738828167319298, 0.014561931602656841, -0.038690097630023956, -0.0031754577066749334, -0.05481097102165222, -0.02896442636847496, 0.0008298485190607607, -0.003983716014772654, -0.01659918576478958, 0.0021590455435216427, 0.013242146000266075, -0.025846542790532112, 0.0058726039715111256, 0.015385691076517105, 0.0015689064748585224, -0.07369542121887207, 0.06536925584077835, 0.022728659212589264, -0.010186266154050827, 0.017653241753578186, 0.01534140296280384, -0.09481199085712433, -0.018601007759571075, 0.02026624046266079, -0.04127652198076248, -0.07210104912519455, -0.007785850204527378, 0.0674242228269577, -0.04683911055326462, 0.040426190942525864, 0.0012699617072939873, -0.02375614456832409, 0.05449209362268448, 0.06572356075048447, -0.010451994836330414, -0.011125174351036549, -0.004063434433192015, -0.007515693083405495, 0.009743385016918182, -0.038406651467084885, 0.0034677593503147364, 0.02963760495185852, -0.11692062020301819, -0.03631625324487686, 0.016484035179018974, -0.07008150964975357, 0.04627222195267677, -0.019699353724718094, 0.06200335919857025, -0.00042184427729807794, 0.013251003809273243, 0.044075530022382736, 0.03734373673796654, 0.011089744046330452, -0.009876249358057976, -0.030789095908403397, -0.017520377412438393, -0.042481157928705215, 0.01996508240699768, -0.06859342753887177, -0.0267323050647974, 0.020779982209205627, 0.05144507437944412, 0.012374099344015121, -0.012622112408280373, -0.045386459678411484, 0.11011796444654465, 0.010682293213903904, 0.006377488374710083, 0.04265831038355827, 0.028114095330238342, 0.037946056574583054, -0.03248976171016693, 0.047689441591501236, -0.029247870668768883, 0.002378271659836173, 0.017706388607621193, -0.009823103435337543, -0.05250798910856247, 0.016829483211040497, 0.0015401191776618361, 0.0028986569959670305, -0.003912854939699173, 0.01784810982644558, 0.015562843531370163, 0.014358206652104855, 0.04241029918193817, -0.002477919915691018, 0.04350864142179489, 0.004262730944901705, 0.023561276495456696, -0.05927520990371704, -0.07468747347593307, 0.0160145815461874, -0.013507874682545662, 0.030487937852740288, 0.016404317691922188, 0.0007728275959379971, -0.045173875987529755, -0.04634308069944382, -0.06033812463283539, -0.02694488875567913, 0.002770221559330821, -0.03397784009575844, -0.00476097222417593, -0.004014717414975166, 0.004588248673826456, -0.027511775493621826, 0.004371237009763718, 0.01481880247592926, 0.0025487809907644987, -0.04715798422694206, 0.02042567729949951, 0.00040080741746351123, 0.041099369525909424, 0.04506758600473404, 0.02317154034972191, 0.04318976774811745, -0.03231260925531387, -0.04754772037267685, -0.04776030033826828, -0.04265831038355827, 0.03939870744943619, 0.026998033747076988, -0.08857622742652893, -0.01797211728990078, 0.02719290181994438, 0.05289772152900696, 0.04265831038355827, 0.0350230410695076, -0.004650251939892769, -0.022604653611779213, -0.041595395654439926, 0.015332545153796673, 0.005434151738882065, -0.01425191480666399, -0.03388926386833191, -0.050594739615917206, -0.05066560208797455, -0.0529685840010643, 0.018760444596409798, 0.008614038117229939, 0.08389940112829208, 0.02476591244339943, -0.006187049672007561, 0.09403252601623535, -0.006935518700629473, -0.03039936162531376, -0.007378399837762117, 0.035837940871715546, 0.028556976467370987, 0.011913502588868141, 0.0046369656920433044, -0.00644392054527998, -0.011134032160043716, 0.013189000077545643, 0.05250798910856247, -0.01797211728990078, 0.09367822110652924, 0.016918059438467026, 0.03872552514076233, 0.025846542790532112, 0.024854488670825958, -0.03225946053862572, 0.05931064113974571, 0.025049356743693352, 0.0047166841104626656, 0.009433368220925331, 0.027476346120238304, 0.026998033747076988, -0.01858329214155674, 0.05367719382047653, 0.013295291922986507, 0.008078152313828468, 0.076529860496521, 0.06193249672651291, 0.009628236293792725, 0.004143152851611376, -0.013561020605266094, -0.02951359935104847, -0.019486770033836365, -0.015562843531370163, 0.019114749506115913, -0.012108370661735535, -0.04343778267502785, -0.030204493552446365, -0.009645950980484486, -0.04095764830708504, -0.02770664356648922, 0.018654152750968933, -0.017803821712732315, -0.006058613769710064, -0.007741562090814114, -0.05952322483062744, 0.01900845766067505, 0.0790099948644638, 0.002683859784156084, 0.04102850705385208, 0.010930306278169155, -0.007121528498828411, 0.012878983281552792, 0.009335934184491634, 0.04081592708826065, 0.00826859101653099, -0.0033836117945611477, 0.05874375253915787, 0.017989831045269966, -0.0423748679459095, -0.06210964918136597, -0.0032529619056731462, -0.084749735891819, 0.04031989723443985, 0.0382649302482605, 0.05835402011871338, 0.03720201551914215, 0.039575859904289246, 0.059133488684892654, -0.05771626904606819, -0.06203879043459892, -0.04173711687326431, 0.039965592324733734, 0.0380169153213501, 0.03645797446370125, 0.025616245344281197, -0.04099307954311371, -0.006080757826566696, -0.0019353905227035284, 0.015013670548796654, 0.025988265872001648, -0.02232120931148529, -0.032348036766052246, 0.027015749365091324, -0.08680470287799835, 0.0022287992760539055, -0.09630007296800613, 0.01665233075618744, -0.01511110458523035, -0.060692429542541504, 0.022604653611779213, -0.03762718290090561, 0.04251658916473389, 0.01008883211761713, -0.01496938243508339, -0.007338540628552437, -0.025633960962295532, -0.027529491111636162, 0.020461108535528183, 0.022852666676044464, -0.03674142062664032, 0.03387155011296272, 0.007887712679803371, -0.022020049393177032, -0.053322888910770416, -0.008383739739656448, -0.018264418467879295, 0.024075018242001534, -0.028397537767887115, -0.05520070344209671, -0.0031821010634303093, 0.04457155615091324, 0.0032928213477134705, 0.08496231585741043, -0.024854488670825958, 0.011461763642728329, -0.03147999197244644, 0.017431801185011864, -0.011922360397875309, -0.04347321391105652, -0.03904440253973007, 0.0037556320894509554, 0.03695400059223175, -0.028486113995313644, -0.009991398081183434, -0.00721010472625494, -0.024907635524868965, -0.03628082200884819, 0.019522201269865036, 0.06327885389328003, 0.0195044856518507, 0.011018882505595684, 0.08602523058652878, -0.03566078841686249, 0.08170270919799805, 0.03233032301068306, -0.005704308860003948, -0.013879895210266113, 0.02850382961332798, 0.03606823831796646, 0.02152402326464653, 0.016820626333355904, 0.04570533335208893, -0.03610366955399513, 0.02333097904920578, -0.05566130205988884, -0.012639828026294708, -0.009575090371072292, -0.03456244245171547, -0.05725567415356636, -0.014535359106957912, -0.027883796021342278, -0.014960524626076221, -0.017104068771004677, -0.048539772629737854, -0.012586682103574276, 0.04807917773723602, 0.013268718495965004, -0.04839805141091347, -0.025421377271413803, 0.0193804781883955, 0.0032529619056731462, 0.00795857422053814, -0.003797705750912428, 0.0050089857541024685, 0.025970550253987312, 0.0031267409212887287, -0.007156959269195795, -0.018990743905305862, -0.024960780516266823, 0.0020217522978782654, -0.020673692226409912, 0.0486106351017952, 0.05605103820562363, 0.003912854939699173, -0.023472700268030167, 0.018441570922732353, -0.05438580363988876, -0.006399632431566715, 0.024163594469428062, 0.046980831772089005, 0.00668307626619935, 0.018902167677879333, -0.019575346261262894, 0.053074873983860016, -0.019858790561556816, -0.018725015223026276, 0.06023183465003967, -0.0012024223105981946, 0.03922155499458313, -0.008352737873792648, -0.018725015223026276, -0.07404972612857819, 0.07433316856622696, 0.015970293432474136, -0.024571046233177185, 0.04907122999429703, -0.021966904401779175, -0.015996865928173065, -0.021329155191779137, -0.011816068552434444, -0.024836774915456772, -0.0005500030238181353, 0.004822975490242243, 0.013445870950818062, 0.0006571249105036259, -0.06317256391048431, 0.028610121458768845, -0.0004650251939892769, 0.02905300259590149, -0.04230400547385216, -0.003434543265029788, -0.012666400521993637, -0.014198768883943558, -0.024943064898252487, 0.02265779860317707, -0.022144056856632233, -0.053322888910770416, 0.018352994695305824, 0.03872552514076233, -0.03507618606090546, 0.023649852722883224, 0.010425422340631485, 0.002869869815185666, 0.056086465716362, 0.046555664390325546, 0.022303493693470955, 0.04822089895606041, -0.02589968964457512, 0.03318065404891968 ]
20,424
cron_descriptor.ExpressionDescriptor
get_time_of_day_description
Generates a description for only the TIMEOFDAY portion of the expression Returns: The TIMEOFDAY description
def get_time_of_day_description(self): """Generates a description for only the TIMEOFDAY portion of the expression Returns: The TIMEOFDAY description """ seconds_expression = self._expression_parts[0] minute_expression = self._expression_parts[1] hour_expression = self._expression_parts[2] description = StringBuilder() # handle special cases first if any(exp in minute_expression for exp in self._special_characters) is False and \ any(exp in hour_expression for exp in self._special_characters) is False and \ any(exp in seconds_expression for exp in self._special_characters) is False: # specific time of day (i.e. 10 14) description.append(self._("At ")) description.append( self.format_time( hour_expression, minute_expression, seconds_expression)) elif seconds_expression == "" and "-" in minute_expression and \ "," not in minute_expression and \ any(exp in hour_expression for exp in self._special_characters) is False: # minute range in single hour (i.e. 0-10 11) minute_parts = minute_expression.split('-') description.append(self._("Every minute between {0} and {1}").format( self.format_time(hour_expression, minute_parts[0]), self.format_time(hour_expression, minute_parts[1]))) elif seconds_expression == "" and "," in hour_expression and "-" not in hour_expression and \ any(exp in minute_expression for exp in self._special_characters) is False: # hours list with single minute (o.e. 30 6,14,16) hour_parts = hour_expression.split(',') description.append(self._("At")) for i, hour_part in enumerate(hour_parts): description.append(" ") description.append(self.format_time(hour_part, minute_expression)) if i < (len(hour_parts) - 2): description.append(",") if i == len(hour_parts) - 2: description.append(self._(" and")) else: # default time description seconds_description = self.get_seconds_description() minutes_description = self.get_minutes_description() hours_description = self.get_hours_description() description.append(seconds_description) if description and minutes_description: description.append(", ") description.append(minutes_description) if description and hours_description: description.append(", ") description.append(hours_description) return str(description)
(self)
[ 0.08888683468103409, -0.03481724485754967, 0.05356499180197716, -0.018932119011878967, -0.003134328406304121, -0.0924578309059143, 0.021678294986486435, 0.0221052635461092, -0.022842751815915108, -0.042541470378637314, 0.026297304779291153, 0.04459867626428604, 0.03829120472073555, 0.003350237850099802, -0.0017515363870188594, 0.040367819368839264, 0.023522017523646355, -0.04882953688502312, -0.040561895817518234, -0.016302388161420822, 0.023832539096474648, -0.04677233099937439, -0.012158865109086037, -0.011062335222959518, 0.010742109268903732, 0.07817383855581284, -0.0227068979293108, -0.015254378318786621, -0.026200268417596817, -0.05337091535329819, 0.008553902618587017, -0.006355990655720234, -0.0638510212302208, 0.003937317989766598, 0.010295734740793705, 0.02717064693570137, -0.012158865109086037, -0.01880596950650215, -0.03796127811074257, 0.0861697718501091, 0.02722887136042118, -0.008418048731982708, 0.013983179815113544, 0.00578831834718585, -0.0638510212302208, -0.06059054285287857, 0.03833002224564552, 0.033982716500759125, -0.00272191665135324, -0.04432697221636772, 0.05488470941781998, -0.03211958706378937, -0.039863221347332, -0.02618085965514183, -0.05317683890461922, 0.0074670761823654175, 0.018456632271409035, 0.05519523099064827, 0.04285199195146561, 0.016913728788495064, -0.02092139795422554, 0.03421561047434807, -0.012391756288707256, 0.05744651332497597, -0.023774316534399986, 0.021872371435165405, 0.019417310133576393, -0.023599648848176003, 0.04712166637182236, 0.026685457676649094, 0.007932858541607857, -0.005895060021430254, 0.007792153861373663, -0.002775287488475442, 0.010286031290888786, -0.014652742072939873, -0.07114828377962112, -0.026801902800798416, 0.043705929070711136, -0.02084376849234104, -0.03524421155452728, 0.0115766366943717, 0.016554687172174454, -0.017272768542170525, 0.04044545069336891, -0.007617485243827105, 0.050149254500865936, 0.014730372466146946, -0.019417310133576393, 0.020028648898005486, -0.02229933813214302, -0.041609905660152435, 0.003376923268660903, 0.04506446048617363, -0.03605933114886284, -0.007505891378968954, -0.05643731728196144, -0.02934429980814457, 0.0004666922613978386, 0.00016178058285731822, 0.026957163587212563, -0.031129799783229828, -0.025637447834014893, -0.027927543967962265, 0.0035467399284243584, -0.005870800465345383, -0.05406958982348442, 0.009140982292592525, 0.04560787230730057, -0.010936185717582703, -0.07363245636224747, -0.024317730218172073, -0.017107805237174034, -0.027869321405887604, -0.020766137167811394, 0.025094034150242805, 0.016913728788495064, 0.0227068979293108, -0.0018437225371599197, -0.056398503482341766, 0.032992929220199585, -0.021561849862337112, -0.016758468002080917, 0.0014883207622915506, 0.03914514183998108, 0.0392615869641304, -0.05977542698383331, -0.035496510565280914, -0.007879488170146942, -0.021814148873090744, -0.018408114090561867, 0.056941915303468704, 0.07002264261245728, 0.023114457726478577, -0.006739290896803141, 0.006195878144353628, -0.021542442962527275, 0.008248232305049896, -0.034118570387363434, 0.07468046993017197, -0.021872371435165405, -0.02532692439854145, -0.03225544095039368, 0.021542442962527275, -0.009795988909900188, -0.012129753828048706, 0.013274801895022392, 0.03227484971284866, -0.02249341458082199, 0.025035811588168144, -0.03708793595433235, 0.02092139795422554, -0.024240098893642426, -0.021755926311016083, 0.07266207784414291, -0.012197679840028286, 0.018243148922920227, 0.044365786015987396, -0.019446421414613724, -0.019446421414613724, 0.045025646686553955, -0.05492352321743965, -0.005366202909499407, -0.005652464926242828, 0.030217641964554787, 0.041144125163555145, 0.02031976357102394, 0.011993899941444397, 0.05352617800235748, -0.0009218612685799599, -0.04521971940994263, -0.002925696549937129, -0.023192089051008224, 0.04215331748127937, 0.006962478626519442, 0.011605747975409031, -0.0013124393299221992, 0.01769973710179329, 0.001212368835695088, -0.03171202912926674, 0.011634859256446362, 0.015477565117180347, -0.10332608968019485, 0.03784482926130295, -0.05011043697595596, 0.0196307934820652, -0.0038232982624322176, -0.023929577320814133, -0.042657915502786636, -0.009107018820941448, -0.044831570237874985, 0.029247261583805084, -0.0062104337848722935, 0.051274895668029785, -0.01967931166291237, -0.006142507307231426, 0.010334550403058529, 0.009543689899146557, -0.023657871410250664, 0.013798807747662067, -0.04727692902088165, 0.05841689184308052, 0.01937849447131157, 0.0026539901737123728, 0.04374474287033081, 0.018621597439050674, -0.003192551201209426, 0.033322859555482864, -0.10953652858734131, -0.028762072324752808, -0.007520447019487619, -0.020688507705926895, 0.015040894038975239, 0.03751490265130997, 0.01786470040678978, 0.025889744982123375, -0.014119032770395279, 0.037864238023757935, -0.13461115956306458, 0.006516103632748127, -0.033516936004161835, -0.018573079258203506, 0.008418048731982708, -0.047665078192949295, 0.06066817417740822, 0.01657409593462944, 0.002014752011746168, -0.007379741873592138, -0.016583798453211784, -0.04514209181070328, -0.04021256044507027, -0.025482187047600746, 0.004597176797688007, 0.002129984786733985, -0.029693637043237686, 0.04743218794465065, -0.010373365134000778, -0.02505521848797798, 0.01750566065311432, -0.023638464510440826, -0.05585508793592453, -0.010004620999097824, -0.039902038872241974, 0.00774363474920392, 0.04164872318506241, -0.0581451877951622, -0.011091446503996849, 0.016729356721043587, -0.044249340891838074, -0.049955178052186966, -0.012488794513046741, 0.009543689899146557, 0.025171663612127304, -0.013983179815113544, -0.007505891378968954, 0.004691788461059332, 0.011372856795787811, 0.048984795808792114, 0.019591977819800377, -0.04677233099937439, 0.03842705860733986, 0.022920381277799606, -0.015215562656521797, -0.03487546741962433, 0.007675707805901766, 0.021037844941020012, -0.016370315104722977, 0.01114966906607151, -0.007302111480385065, -0.04894598200917244, 0.08919735252857208, -0.015215562656521797, -0.04894598200917244, 0.007602929603308439, -0.022415785118937492, 0.055622197687625885, 0.005497204139828682, -0.009567949920892715, -0.03677741438150406, -0.00387424323707819, -0.023211495950818062, 0.05942608788609505, 0.004614158067852259, 0.011207892559468746, 0.005220646038651466, 0.024453582242131233, -0.01042188424617052, 0.023133866488933563, 0.01042188424617052, 0.048984795808792114, -0.051158446818590164, -0.031168615445494652, 0.038465872406959534, -0.011557228863239288, 0.03642807528376579, 0.06486021727323532, 0.040290188044309616, -0.006603437941521406, -0.014720669016242027, -0.05748532712459564, -0.008646088652312756, 0.07634951919317245, 0.03435146063566208, -0.010072547011077404, -0.10938126593828201, -0.0006865440518595278, 0.03623399883508682, 0.006700475700199604, 0.054962340742349625, -0.051352523267269135, -0.00253269262611866, -0.058184001594781876, 0.06462732702493668, -0.011188484728336334, 0.02684071846306324, 0.030081788077950478, -0.028043990954756737, 0.03743727132678032, 0.014283997938036919, 0.013478581793606281, 0.014934152364730835, 0.017583290114998817, 0.04979991540312767, -0.0020705489441752434, 0.07076013088226318, -0.04494801536202431, -0.04774270951747894, -0.003030012361705303, -0.020475024357438087, -0.004036781843751669, 0.009024536237120628, -0.050886742770671844, 0.004844623617827892, 0.007918302901089191, 0.010819739662110806, -0.08190009742975235, -0.0037141304928809404, -0.034836653620004654, -0.027481170371174812, 0.013798807747662067, 0.08477242290973663, -0.0021287717390805483, -0.04882953688502312, 0.014070513658225536, 0.09742618352174759, -0.03407975658774376, 0.010121066123247147, 0.008126934990286827, 0.03343930467963219, 0.001345189637504518, 0.04285199195146561, -0.04347303509712219, 0.0040731714107096195, -0.045685503631830215, 0.02835451252758503, 0.03336167335510254, 0.028859108686447144, -0.037282008677721024, -0.013701769523322582, 0.01984427683055401, 0.009034240618348122, 0.03833002224564552, 0.008146342821419239, 0.00218820758163929, 0.004051337484270334, -0.04071715474128723, 0.03439027816057205, 0.05302157998085022, 0.03534124791622162, -0.008000785484910011, -0.0365639291703701, 0.014827410690486431, 0.06346286833286285, -0.026083821430802345, 0.032662998884916306, -0.027617022395133972, 0.04223094880580902, 0.03945566341280937, -0.07363245636224747, -0.021231921389698982, 0.030508756637573242, 0.03638926148414612, -0.029693637043237686, 0.050149254500865936, -0.010965296998620033, 0.006084284279495478, 0.047859154641628265, 0.04999399185180664, -0.049372948706150055, 0.016118016093969345, -0.005550574976950884, -0.0332646369934082, 0.03118802234530449, -0.000923680723644793, 0.007166258525103331, -0.018214037641882896, -0.011411672458052635, 0.010237512178719044, -0.07929947972297668, 0.023910170421004295, 0.0454137958586216, -0.060357652604579926, -0.005463241133838892, 0.011421375907957554, -0.009301095269620419, 0.00159142364282161, 0.022551637142896652, 0.0496058389544487, -0.0648990347981453, 0.021988816559314728, 0.022474007681012154, -0.07809620350599289, -0.02796635963022709, -0.009407836943864822, -0.06447206437587738, -0.03605933114886284, -0.03307056054472923, 0.01434222050011158, 0.03169262036681175, 0.0615997388958931, -0.06218196824193001, -0.059697795659303665, 0.035690587013959885, 0.05294394865632057, 0.001638729707337916, 0.008199713192880154, 0.0017782218055799603, 0.02623908221721649, -0.02224111557006836, 0.009111871011555195, 0.019397901371121407, 0.014099625870585442, -0.09222494065761566, 0.0019480384653434157, 0.0454137958586216, -0.04343422129750252, 0.004650547634810209, 0.017767662182450294, 0.008980869315564632, -0.021950002759695053, 0.02670486457645893, 0.04044545069336891, 0.08399611711502075, 0.026957163587212563, -0.023056235164403915, -0.036292221397161484, -0.006656808778643608, -0.007530150935053825, -0.009543689899146557, -0.002220957772806287, -0.00029990816256031394, 0.04941176250576973, 0.03908691927790642, -0.0110526317730546, 0.03373041749000549, -0.024899957701563835, 0.07836791127920151, 0.04044545069336891, 0.025035811588168144, -0.019397901371121407, 0.02526870183646679, 0.08492768555879593, -0.0010753025999292731, -0.0007374890265055001, -0.029499560594558716, -0.006836329121142626, -0.029169632121920586, -0.05480707809329033, -0.05907675251364708, 0.0221052635461092, 0.020048055797815323, 0.04921768605709076, 0.019397901371121407, 0.005521463695913553, 0.008199713192880154, -0.03961092233657837, 0.009863915853202343, 0.04521971940994263, 0.023327941074967384, -0.025870338082313538, 0.04129938408732414, -0.031944919377565384, 0.0004445554513949901, -0.0350695438683033, 0.018010258674621582, 0.05612679570913315, 0.007151702884584665, -0.0452585369348526, -0.032391294836997986, -0.05853333696722984, -0.05084792524576187, -0.01460422296077013, 0.015681345015764236, -0.06947922706604004, -0.024220691993832588, -0.020494431257247925, -0.006579178385436535, -0.020688507705926895, -0.040484264492988586, 0.0464618094265461, -0.04580194875597954, -0.00120933644939214, 0.01720484159886837, 0.0008921433473005891, 0.04083360359072685, -0.01847604103386402, 0.05189593881368637, 0.02590915374457836, 0.03072223998606205, -0.026724273338913918, -0.005574834533035755, -0.04809204488992691, -0.00978628545999527, -0.04184279590845108, -0.038000091910362244, -0.028781479224562645, 0.06020239368081093, 0.008481123484671116, 0.020572062581777573, 0.01197449304163456, 0.004488008562475443, -0.010218104347586632, -0.02532692439854145, 0.002899011131376028, -0.010383068583905697, 0.008767385967075825, -0.03813594579696655, -0.02670486457645893, -0.02243519201874733, -0.03576821833848953, 0.05899912118911743, 0.00005909464380238205, 0.033322859555482864, 0.03534124791622162, 0.002617600839585066, 0.03429323807358742, -0.048130862414836884, -0.05309920758008957, -0.049567025154829025, 0.06319116055965424, -0.004861605353653431, 0.006506399717181921, -0.021096067503094673, -0.003391479142010212, -0.02623908221721649, 0.0359622947871685, 0.061483293771743774, 0.011411672458052635, 0.016088904812932014, -0.021872371435165405, 0.020572062581777573, 0.03223603218793869, 0.03714615851640701, -0.004065893590450287, 0.0221052635461092, 0.029441338032484055, 0.004488008562475443, 0.02177533321082592, -0.01384732685983181, 0.004175061360001564, 0.0001315320114372298, 0.025016402825713158, 0.053914327174425125, 0.006268656812608242, -0.01410932932049036, -0.01937849447131157, -0.03439027816057205, 0.03893165662884712, -0.0529051311314106, 0.016205349937081337, -0.0734383761882782, 0.017466844990849495, 0.053720250725746155, -0.023599648848176003, -0.04848019778728485, -0.03425442427396774, -0.04409407824277878, -0.005283720791339874, 0.025637447834014893, 0.00933020655065775, -0.03421561047434807, 0.023696687072515488, -0.008364678360521793, -0.0687805563211441, 0.022415785118937492, 0.044831570237874985, 0.0421145036816597, 0.013362136669456959, -0.007180814165621996, 0.003930040169507265, 0.02920844592154026, 0.018932119011878967, 0.03734023496508598, 0.017195139080286026, 0.009005129337310791, 0.04816967621445656, 0.00867034774273634, 0.0010176863288506866, -0.01847604103386402, 0.012566424906253815, -0.06695623695850372, 0.028451548889279366, 0.034836653620004654, 0.03473961353302002, 0.01065477542579174, 0.007646596524864435, 0.0819777250289917, -0.025967376306653023, -0.047199297696352005, -0.00923802051693201, 0.02926666848361492, 0.014953560195863247, 0.05313802510499954, 0.07231273502111435, 0.0029354002326726913, -0.0064142136834561825, -0.006981885991990566, 0.030295271426439285, 0.01734069548547268, -0.05612679570913315, -0.08943025022745132, 0.06198789179325104, -0.06086225062608719, 0.02243519201874733, -0.03964973986148834, -0.010315142571926117, -0.018408114090561867, -0.033187005668878555, -0.03289589285850525, -0.07231273502111435, 0.04250265657901764, 0.03336167335510254, -0.05810637027025223, -0.041803982108831406, -0.06749965250492096, 0.0013427636586129665, -0.008646088652312756, -0.025540409609675407, -0.062337230890989304, 0.005992098245769739, -0.011828935705125332, 0.03159558027982712, -0.013488286174833775, -0.012818723917007446, -0.01998983323574066, 0.012488794513046741, -0.0633852407336235, -0.09090522676706314, -0.03547710180282593, 0.006089136470109224, -0.01762210577726364, 0.04886835068464279, 0.0024938774295151234, 0.005817429628223181, -0.049567025154829025, -0.00401980010792613, -0.021367773413658142, -0.08609213680028915, -0.020028648898005486, 0.024104246869683266, 0.047665078192949295, -0.016059793531894684, 0.01292546559125185, -0.04366711154580116, -0.0035564436111599207, -0.017156323418021202, 0.021328957751393318, 0.06637401133775711, 0.07316667586565018, 0.006957626435905695, 0.02031976357102394, -0.05519523099064827, 0.11077861487865448, 0.02466706745326519, -0.04067834094166756, 0.0657917857170105, 0.03689385950565338, 0.049761101603507996, 0.022144077345728874, -0.017796773463487625, 0.0638510212302208, -0.048053231090307236, 0.006889699958264828, -0.013313617557287216, -0.006899403873831034, 0.026433158665895462, -0.01698165573179722, -0.026879534125328064, -0.0027194907888770103, -0.07949355244636536, -0.032138995826244354, -0.06272538006305695, -0.04258028790354729, 0.01937849447131157, 0.0905170738697052, -0.026627235114574432, -0.07138117402791977, 0.011411672458052635, 0.022745713591575623, -0.020242132246494293, -0.007302111480385065, 0.029751859605312347, 0.005041125696152449, 0.014012291096150875, 0.03006238117814064, -0.03553532436490059, -0.00786008033901453, -0.003328404389321804, 0.01946582831442356, -0.0027777135837823153, 0.04347303509712219, 0.0560491643846035, -0.01819463074207306, -0.052206460386514664, 0.003997966647148132, -0.10976941883563995, 0.0010795480338856578, 0.015836605802178383, 0.031032761558890343, 0.007195369806140661, 0.0430072546005249, 0.004165357444435358, 0.025695670396089554, -0.013905549421906471, -0.03743727132678032, 0.06388983875513077, -0.03803890570998192, -0.025016402825713158, 0.042657915502786636, -0.036816228181123734, -0.05057622119784355, 0.04358948394656181, 0.05643731728196144, -0.02920844592154026, 0.019310567528009415, 0.04223094880580902, 0.023463794961571693, -0.020630285143852234, 0.016554687172174454, -0.01635090820491314, -0.030178826302289963, 0.048713091760873795, 0.006399658042937517, -0.008223973214626312, -0.031614989042282104, 0.026006191968917847, -0.030838685110211372, 0.014555703848600388, -0.04157109186053276, 0.004124116152524948, 0.008102674968540668, -0.036680374294519424, -0.025812115520238876, -0.0074864840134978294, 0.016224758699536324, -0.036156367510557175, 0.01062566414475441, 0.00801048893481493, -0.031071577221155167, 0.04553024098277092, 0.03553532436490059, 0.012634350918233395, 0.06361813098192215, 0.0452585369348526, 0.005172126926481724, 0.0028868813533335924, -0.03947506844997406, 0.03202255070209503 ]
20,425
cron_descriptor.ExpressionDescriptor
get_year_description
Generates a description for only the YEAR portion of the expression Returns: The YEAR description
def get_year_description(self): """Generates a description for only the YEAR portion of the expression Returns: The YEAR description """ def format_year(s): regex = re.compile(r"^\d+$") if regex.match(s): year_int = int(s) if year_int < 1900: return year_int return datetime.date(year_int, 1, 1).strftime("%Y") else: return s return self.get_segment_description( self._expression_parts[6], '', lambda s: format_year(s), lambda s: self._(", every {0} years").format(s), lambda s: self._(", year {0} through year {1}") or self._(", {0} through {1}"), lambda s: self._(", only in {0}"), lambda s: self._(", year {0} through year {1}") or self._(", {0} through {1}") )
(self)
[ 0.008651619777083397, 0.003831996116787195, 0.021034277975559235, -0.012308037839829922, 0.04361364617943764, -0.033447664231061935, -0.004378483630716801, -0.0674571767449379, 0.01799677312374115, -0.04090974107384682, 0.05987219512462616, -0.011711071245372295, 0.046493127942085266, -0.00895010307431221, -0.0163024440407753, -0.00031439485610462725, 0.0540429949760437, -0.010359118692576885, -0.020121270790696144, -0.021280087530612946, -0.026442090049386024, -0.03128805011510849, -0.03581796959042549, -0.03304383158683777, -0.030989566817879677, 0.0069748470559716225, -0.004859128966927528, -0.012975235469639301, -0.049653537571430206, -0.06482350081205368, -0.0032613666262477636, -0.020402196794748306, -0.03739817440509796, -0.02070068009197712, -0.01757538691163063, 0.0314987450838089, -0.04192809388041496, -0.00034429802326485515, -0.025353504344820976, 0.0539376474916935, -0.013019129633903503, -0.01624099165201187, -0.01023621391505003, -0.010157203301787376, -0.08188971132040024, -0.04477246105670929, -0.032043036073446274, -0.0495130755007267, -0.015626467764377594, -0.011790081858634949, 0.03616912662982941, 0.0007670576451346278, -0.002769747283309698, -0.050531428307294846, -0.04550988972187042, 0.016065413132309914, 0.06661439687013626, 0.09403973072767258, 0.1014140173792839, 0.05741409957408905, 0.0018446693429723382, 0.02178926393389702, -0.05769502371549606, 0.03039260022342205, -0.022667156532406807, 0.012334374710917473, 0.012308037839829922, 0.001596665009856224, 0.03018190711736679, -0.006175966002047062, 0.0016592147294431925, 0.007677160203456879, 0.022895408794283867, 0.024229802191257477, -0.012957677245140076, -0.06331352889537811, -0.09937730431556702, -0.03353545069694519, 0.07360241562128067, -0.062224943190813065, 0.01765439659357071, 0.019664768129587173, 0.03866233676671982, -0.02045487053692341, 0.06261121481657028, -0.07240848243236542, 0.010165982879698277, -0.05140932276844978, -0.0034347502514719963, 0.049618422985076904, -0.037257712334394455, -0.00815122202038765, 0.013466854579746723, 0.024159571155905724, -0.05607970431447029, 0.00810293760150671, -0.027109285816550255, 0.004053663462400436, 0.03648516535758972, 0.01933116838335991, 0.04568547010421753, -0.013668769039213657, -0.042911332100629807, 0.0180318895727396, -0.0034347502514719963, 0.03581796959042549, -0.0281100831925869, -0.01452032383531332, 0.03736305981874466, -0.030497947707772255, -0.03803025558590889, -0.04838937520980835, 0.0040800003334879875, -0.07472611963748932, 0.00041206026799045503, 0.0023286070208996534, 0.021736592054367065, -0.0020114686340093613, 0.008967660367488861, -0.04301667958498001, 0.01894489675760269, 0.0036630018148571253, -0.05744921416044235, 0.06784344464540482, 0.026951266452670097, 0.03936465084552765, -0.0023373859003186226, -0.006145239807665348, 0.011632061563432217, -0.058643147349357605, 0.015047058463096619, 0.018734201788902283, 0.026442090049386024, -0.05506134778261185, 0.02879483811557293, -0.0540429949760437, 0.014810028485953808, -0.005276127252727747, -0.053691837936639786, 0.06700067222118378, -0.05597435683012009, -0.020402196794748306, -0.020525101572275162, 0.02837345004081726, -0.016065413132309914, 0.02947959303855896, 0.00568434689193964, 0.08034462481737137, 0.08568219840526581, 0.007756170816719532, 0.03876768425107002, -0.0039285640232264996, 0.061347052454948425, -0.01782119646668434, 0.03529123589396477, -0.048459604382514954, -0.0022013126872479916, -0.002420785604044795, 0.020648006349802017, 0.013993589207530022, 0.07507727295160294, 0.02407178282737732, -0.03292092680931091, -0.01450276654213667, 0.012694309465587139, 0.04097997024655342, 0.017794858664274216, -0.0034523080103099346, 0.0000881320665939711, -0.030936893075704575, -0.0027653579600155354, -0.029584940522909164, -0.05453461408615112, 0.05305975675582886, 0.0012378268875181675, 0.07795675843954086, 0.0028290050104260445, 0.11609236150979996, -0.056606438010931015, 0.03939976543188095, 0.08167901635169983, 0.054815538227558136, -0.1193932294845581, 0.029426919296383858, -0.005780914798378944, -0.030550621449947357, 0.0007209682953543961, -0.022351115942001343, 0.03666074573993683, 0.012018333189189434, 0.021894611418247223, 0.002982635982334614, -0.002499795751646161, 0.016276106238365173, -0.005030317697674036, -0.046247318387031555, -0.009727036580443382, 0.0011884454870596528, 0.009814825840294361, 0.01999836601316929, -0.00524101173505187, 0.07061758637428284, -0.026442090049386024, -0.01372144278138876, 0.011684734374284744, -0.00466160336509347, -0.030726199969649315, 0.04227925091981888, -0.11384496092796326, 0.02451072819530964, 0.043999917805194855, -0.0000663562459521927, 0.017645617946982384, 0.03939976543188095, -0.0012345347786322236, 0.00664124870672822, 0.0011412588646635413, 0.021877054125070572, -0.041541822254657745, -0.00045430881436914206, 0.009261754341423512, 0.000385449209716171, 0.07465588301420212, -0.07174128293991089, 0.10050100833177567, -0.06900226324796677, 0.036976784467697144, -0.01035034004598856, -0.016504358500242233, -0.013045466504991055, -0.0404532365500927, -0.03918907418847084, -0.0450533889234066, -0.03732794150710106, 0.00708458386361599, -0.010999979451298714, 0.007181151770055294, 0.026161164045333862, -0.0069002266973257065, -0.012553847394883633, -0.029339130967855453, 0.02654743567109108, -0.012185133062303066, 0.014248177409172058, -0.011219452135264874, -0.04361364617943764, -0.029813192784786224, 0.039961617439985275, -0.05892407149076462, -0.012896224856376648, -0.02315877564251423, -0.024932116270065308, 0.030445273965597153, 0.02359772101044655, -0.010762948542833328, 0.025511523708701134, -0.007857128046452999, 0.008871092461049557, 0.006215471308678389, -0.032306402921676636, 0.018611297011375427, -0.009525122120976448, -0.07753536850214005, -0.014889038167893887, 0.012527510523796082, -0.0074928030371665955, 0.053270451724529266, -0.024686306715011597, 0.025160368531942368, 0.01799677312374115, 0.05239256098866463, 0.030936893075704575, -0.058362219482660294, -0.007312835659831762, 0.023703068494796753, 0.008638451807200909, 0.018330372869968414, -0.03436066955327988, -0.0163551177829504, 0.07096873968839645, 0.031112471595406532, 0.007795675657689571, -0.03292092680931091, 0.0225266944617033, 0.04775729402899742, 0.0058599249459803104, 0.01372144278138876, 0.026371857151389122, -0.029356688261032104, 0.00943733286112547, -0.02947959303855896, -0.00258758501149714, 0.040137194097042084, 0.012246585451066494, 0.08434780687093735, 0.04157693684101105, 0.06366468220949173, -0.0032855086028575897, -0.06801902502775192, 0.000036864581488771364, -0.009314428083598614, 0.09410995990037918, 0.03760886937379837, -0.017680732533335686, -0.052322328090667725, 0.01531920488923788, 0.013063023798167706, -0.015442109666764736, 0.0014079184038564563, 0.006803658325225115, 0.0030660356860607862, 0.010438129305839539, 0.03397439792752266, -0.02228088304400444, -0.026161164045333862, -0.013537085615098476, -0.02991853840649128, -0.008958881720900536, 0.022438904270529747, -0.0002023265406023711, 0.017698291689157486, -0.04024254158139229, 0.05442926660180092, -0.040628813207149506, 0.04189297929406166, -0.0383111797273159, -0.07514750212430954, 0.02791694737970829, -0.020367080345749855, -0.01978767290711403, -0.04477246105670929, -0.015486004762351513, -0.006434943992644548, 0.020665563642978668, 0.052989523857831955, -0.09530389308929443, 0.04185786098241806, -0.05600947141647339, -0.03558971732854843, 0.016767725348472595, 0.000026199571948382072, -0.07760559767484665, -0.04382433742284775, 0.01363365352153778, -0.015354320406913757, -0.045790817588567734, -0.017794858664274216, -0.004448714666068554, 0.03957534581422806, -0.012308037839829922, 0.02075335383415222, 0.01294889859855175, 0.013976030983030796, 0.0027039055712521076, 0.01826014183461666, 0.01599518209695816, 0.004889855161309242, -0.018523508682847023, -0.024703864008188248, 0.04814356565475464, 0.007102141622453928, -0.004665992688387632, 0.01496804878115654, -0.0013267133617773652, -0.003605938982218504, -0.029321573674678802, -0.0022320388816297054, 0.034992750734090805, 0.020103713497519493, -0.04410526528954506, -0.04779240861535072, 0.011658397503197193, 0.05018027126789093, -0.01695208251476288, -0.050531428307294846, -0.02277250401675701, 0.02677568793296814, -0.03936465084552765, -0.07409403473138809, -0.04357852786779404, 0.014441313222050667, 0.06236540526151657, -0.030778873711824417, 0.02494967356324196, -0.03989138454198837, -0.02073579467833042, 0.016521915793418884, -0.022807618603110313, -0.06419142335653305, 0.015450889244675636, 0.02075335383415222, -0.0316040925681591, 0.014090157113969326, 0.0014342550421133637, -0.017610501497983932, -0.048986341804265976, -0.036134012043476105, -0.002802668372169137, -0.01125456765294075, -0.012316816486418247, 0.00810293760150671, -0.0005503281718119979, -0.023264123126864433, -0.01000796165317297, -0.001454007695429027, -0.023000754415988922, 0.08181948214769363, 0.04575569927692413, -0.008647230453789234, 0.01543333102017641, -0.024422939866781235, -0.07311079651117325, -0.011860312893986702, 0.0026095323264598846, 0.0163024440407753, -0.020595332607626915, 0.031200259923934937, -0.01148281991481781, -0.03285069763660431, 0.03536146506667137, 0.010604928247630596, -0.027126844972372055, 0.004973254632204771, 0.07086339592933655, 0.045123618096113205, -0.007312835659831762, 0.011965659447014332, -0.01824258267879486, 0.013063023798167706, 0.04677405580878258, -0.029163552448153496, 0.02990098111331463, -0.08006369322538376, -0.04101508483290672, 0.01372144278138876, -0.06889691948890686, 0.00041644973680377007, 0.04765194654464722, 0.013782895170152187, -0.000992565997876227, 0.05611481890082359, 0.05295440927147865, 0.06671974807977676, 0.005197117105126381, -0.033693473786115646, -0.004679161123931408, 0.012931340374052525, 0.023738183081150055, -0.05204140394926071, -0.05102304741740227, -0.017057429999113083, 0.060223352164030075, -0.0008630770025774837, -0.04709009453654289, 0.022105306386947632, 0.010622486472129822, 0.06549070030450821, -0.008695513941347599, -0.0028048630338162184, -0.004626487847417593, 0.012843551114201546, 0.05499111860990524, 0.05713317170739174, 0.014774912036955357, 0.012957677245140076, 0.0036981175653636456, 0.03662563115358353, -0.04867029935121536, -0.051198627799749374, 0.016592146828770638, -0.02159612812101841, 0.01543333102017641, 0.020630447193980217, 0.0029958044178783894, 0.001378289540298283, -0.012044670060276985, -0.048073332756757736, 0.01612686552107334, 0.04656336084008217, -0.034343112260103226, -0.02789938822388649, 0.03887303173542023, -0.0032767297234386206, -0.001242216327227652, 0.006123292725533247, 0.06826483458280563, -0.008546273224055767, -0.03302627429366112, -0.0428059846162796, -0.015257752500474453, -0.0163551177829504, 0.020981604233384132, -0.00815122202038765, -0.06008288636803627, -0.030515505000948906, -0.020560216158628464, 0.008985218591988087, -0.004788897465914488, -0.02925134263932705, 0.06426165252923965, -0.031165145337581635, -0.042209018021821976, 0.017127661034464836, -0.03548436984419823, 0.07089851051568985, 0.010640043765306473, 0.008287294767796993, -0.022614482790231705, 0.011781302280724049, -0.04234948009252548, -0.032762907445430756, -0.01938384212553501, -0.0006326304865069687, 0.03711725026369095, -0.01719789206981659, -0.00877013523131609, 0.02928645722568035, 0.07929114997386932, 0.03225373104214668, 0.043999917805194855, 0.002229844219982624, -0.037468403577804565, -0.016100527718663216, -0.025107694789767265, 0.025950470939278603, 0.013045466504991055, -0.07153059542179108, -0.008862313814461231, -0.01048202347010374, -0.03803025558590889, 0.02675813063979149, -0.01934872753918171, 0.03443090245127678, 0.03400951251387596, -0.04744125157594681, 0.03255221247673035, -0.02273738756775856, -0.06471815705299377, 0.0069002266973257065, 0.05520181357860565, 0.010262550786137581, 0.027864273637533188, 0.03311406448483467, 0.049161918461322784, 0.041331127285957336, 0.051444437354803085, 0.0151875214651227, -0.0002711861452553421, 0.07465588301420212, -0.00814244244247675, -0.005324411205947399, 0.01887466572225094, 0.041296012699604034, -0.029795633628964424, 0.041296012699604034, 0.07837814837694168, 0.018049446865916252, 0.02614360675215721, -0.026038259267807007, 0.0037617646157741547, 0.014818807132542133, -0.027741368860006332, 0.02384353056550026, -0.019963251426815987, -0.0026709847152233124, 0.03774933144450188, 0.019313611090183258, -0.008967660367488861, 0.018383046612143517, 0.002190339146181941, 0.0074928030371665955, -0.051655132323503494, 0.03806537017226219, 0.024668749421834946, -0.0540429949760437, 0.045334313064813614, -0.028724607080221176, -0.0064612808637320995, 0.028268102556467056, 0.016144422814249992, 0.04863518476486206, -0.028162756934762, 0.027074171230196953, -0.06387537717819214, -0.03982115536928177, 0.027864273637533188, -0.01474857609719038, 0.02184193767607212, 0.04677405580878258, -0.03594087436795235, 0.006149629130959511, -0.022368673235177994, 0.009059838950634003, -0.009753373451530933, 0.015134847722947598, -0.0037200648803263903, -0.060223352164030075, -0.024686306715011597, -0.04680917039513588, -0.023580163717269897, -0.04607174172997475, 0.05000469461083412, 0.00877013523131609, 0.09474203735589981, -0.03241175040602684, 0.008647230453789234, 0.0789399966597557, -0.012290479615330696, -0.03630958870053291, -0.06496396660804749, -0.0316040925681591, 0.023281680420041084, 0.012896224856376648, -0.08259202539920807, 0.003831996116787195, 0.008326799608767033, 0.00943733286112547, 0.007132867816835642, -0.03562483191490173, -0.0450533889234066, -0.027600906789302826, 0.016521915793418884, -0.05084747076034546, 0.02433514967560768, -0.061347052454948425, 0.0035620443522930145, 0.0651746615767479, -0.030533062294125557, 0.02494967356324196, -0.06703578680753708, 0.016056634485721588, 0.006233029067516327, -0.03035748563706875, -0.07226802408695221, -0.019418958574533463, 0.0517604760825634, 0.00777372857555747, 0.05881872400641441, -0.022561809048056602, 0.015003164298832417, -0.024422939866781235, 0.0036169125232845545, -0.05109328031539917, -0.004455299116671085, -0.034518688917160034, 0.04926726594567299, -0.0810469314455986, -0.032078150659799576, 0.02542373538017273, -0.02723219059407711, 0.011570609174668789, -0.006250586826354265, 0.039961617439985275, 0.007523529231548309, -0.07226802408695221, 0.025985585525631905, -0.012272922322154045, 0.009656805545091629, -0.012580184265971184, -0.013300054706633091, 0.03511565551161766, -0.05105816572904587, 0.03281557932496071, 0.011078989133238792, 0.05541250482201576, -0.04438618943095207, 0.022842735052108765, 0.0059959981590509415, 0.03406218811869621, -0.026442090049386024, 0.01915558986365795, 0.009077397175133228, 0.06447234749794006, 0.03954022750258446, -0.01089463196694851, 0.030287252739071846, 0.025019904598593712, 0.017610501497983932, 0.07486657798290253, 0.028074966743588448, 0.013431738130748272, -0.013765336945652962, 0.023808414116501808, -0.037047017365694046, -0.01824258267879486, -0.015661582350730896, -0.08308364450931549, 0.015398215502500534, 0.042911332100629807, -0.03964557498693466, -0.08476919680833817, 0.00550437904894352, -0.006434943992644548, -0.002033415948972106, 0.042841099202632904, -0.022474020719528198, -0.02182438038289547, 0.025283273309469223, 0.011289683170616627, -0.0008060140535235405, 0.017645617946982384, 0.024580959230661392, 0.03964557498693466, 0.018119677901268005, -0.022368673235177994, -0.02612604759633541, -0.006316428538411856, -0.023755742236971855, -0.0025129641871899366, -0.0405585840344429, -0.006891447585076094, 0.029198668897151947, -0.049161918461322784, -0.005921377334743738, 0.0632081851363182, -0.045790817588567734, -0.021244972944259644, 0.021999958902597427, 0.03307894989848137, -0.02096404694020748, 0.05063677579164505, 0.020577775314450264, 0.01580204628407955, 0.021964842453598976, -0.04519385099411011, 0.0786590725183487, 0.025774892419576645, -0.002117912983521819, -0.010438129305839539, -0.04101508483290672, 0.021525897085666656, 0.056185051798820496, 0.023141218349337578, -0.06457769125699997, 0.011307241395115852, 0.040663931518793106, -0.014941711910068989, -0.012553847394883633, 0.044456422328948975, -0.05488577112555504, 0.023141218349337578, 0.08687613159418106, -0.02113962545990944, -0.013695105910301208, -0.007308445870876312, 0.027811599895358086, -0.01894489675760269, -0.010288887657225132, 0.01725056581199169, -0.033430103212594986, 0.004459688439965248, -0.025546640157699585, -0.004630877170711756, -0.037257712334394455, -0.039505112916231155, -0.051233742386102676, 0.013335170224308968, 0.04522896558046341, -0.03065596893429756, 0.014537882059812546, 0.03393928334116936, 0.020173944532871246, 0.03852187469601631, -0.0006013556267134845, 0.033465221524238586, 0.024861885234713554, -0.040839508175849915, 0.0033535452093929052 ]
20,426
cron_descriptor.ExpressionDescriptor
number_to_day
Returns localized day name by its CRON number Args: day_number: Number of a day Returns: Day corresponding to day_number Raises: IndexError: When day_number is not found
@staticmethod def number_to_day(day_number): """Returns localized day name by its CRON number Args: day_number: Number of a day Returns: Day corresponding to day_number Raises: IndexError: When day_number is not found """ try: return [ calendar.day_name[6], calendar.day_name[0], calendar.day_name[1], calendar.day_name[2], calendar.day_name[3], calendar.day_name[4], calendar.day_name[5] ][day_number] except IndexError: raise IndexError("Day {} is out of range!".format(day_number))
(day_number)
[ 0.036429207772016525, 0.00037966034142300487, -0.03493784740567207, 0.013758709654211998, -0.05743556469678879, -0.06103665381669998, -0.023916328325867653, 0.026389803737401962, 0.028117600828409195, -0.07274928689002991, 0.007379505783319473, 0.04754165932536125, 0.046777792274951935, -0.05830855667591095, 0.0026758096646517515, 0.020478924736380577, 0.027426481246948242, 0.08169744908809662, -0.05543495714664459, 0.015995750203728676, 0.020678985863924026, -0.042667455971241, 0.02609880641102791, -0.005638069938868284, 0.013467712327837944, 0.12491052597761154, -0.0017982714343816042, 0.014968166127800941, 0.03093663416802883, -0.08577141165733337, -0.011867227964103222, 0.005742646753787994, -0.04153984412550926, 0.06241888925433159, 0.01730523630976677, 0.03353742137551308, -0.054671090096235275, -0.04455893859267235, -0.06922094523906708, 0.07034856081008911, 0.08708089590072632, -0.01947862282395363, 0.06391025334596634, -0.010203087702393532, -0.019860556349158287, -0.04383144527673721, 0.048050906509160995, -0.02777204103767872, -0.01173082273453474, -0.040157608687877655, -0.01668686792254448, -0.015468317084014416, 0.026280680671334267, -0.08242494612932205, -0.056962691247463226, 0.025789622217416763, -0.005551679991185665, 0.02906334027647972, -0.006374656222760677, 0.01048499159514904, -0.043649572879076004, 0.00048707923269830644, -0.02015155367553234, 0.05347072705626488, 0.002156334463506937, 0.017059708014130592, 0.07034856081008911, -0.019551372155547142, 0.017159737646579742, -0.009234612807631493, 0.045722927898168564, 0.03157319128513336, -0.03844799846410751, -0.03444678708910942, 0.04270383343100548, 0.02804485149681568, -0.03302817791700363, -0.013422244228422642, 0.003510153153911233, 0.028172161430120468, 0.0009758634842000902, -0.008957256563007832, -0.004528643097728491, 0.031209444627165794, 0.02513488009572029, -0.021406477317214012, 0.05969079211354256, 0.008807211183011532, -0.051542870700359344, 0.008634431287646294, -0.03921186551451683, -0.04546830430626869, -0.0325007438659668, -0.0015891172224655747, -0.019351311028003693, -0.028517721220850945, 0.015513786114752293, -0.017787201330065727, -0.02548043802380562, -0.013458617962896824, 0.056526198983192444, -0.05037888139486313, -0.04837827757000923, -0.06343737989664078, -0.02988176979124546, -0.0356835275888443, -0.027481043711304665, -0.009211878292262554, -0.020387988537549973, 0.03753863275051117, -0.10810544341802597, -0.022461343556642532, -0.014558951370418072, -0.030973009765148163, -0.050306133925914764, 0.024243701249361038, 0.014849948696792126, 0.045759301632642746, -0.005069715902209282, -0.03646558150649071, 0.005142465233802795, 0.02964533492922783, -0.049724139273166656, -0.010521366260945797, 0.02779022790491581, 0.02735373191535473, -0.06780233979225159, 0.011139734648168087, 0.08089721202850342, -0.0039580161683261395, 0.04361319914460182, 0.0012810694752261043, 0.039139118045568466, -0.025153066962957382, -0.013340400531888008, 0.009166410192847252, -0.01929674856364727, 0.016032123938202858, -0.0896998718380928, 0.04023035615682602, 0.02429826185107231, -0.013003935106098652, 0.017277956008911133, 0.0440496951341629, -0.004633220378309488, 0.0060609253123402596, 0.008525307290256023, 0.0514337457716465, -0.02320702373981476, 0.014158830046653748, -0.005406181327998638, 0.05376172438263893, -0.0007803497719578445, -0.0004433159774634987, 0.024025453254580498, -0.048232778906822205, -0.008825398050248623, -0.031427692621946335, 0.0015140945324674249, -0.02158835157752037, 0.011448918841779232, -0.001959684072062373, -0.033755671232938766, -0.03646558150649071, -0.01666868105530739, 0.014468015171587467, 0.024334637448191643, -0.007329490967094898, 0.05499846115708351, 0.015268256887793541, -0.051179125905036926, 0.019151249900460243, 0.003128219395875931, 0.05765381082892418, 0.018187321722507477, -0.0053106979466974735, 0.004351316951215267, -0.011949070729315281, 0.042449209839105606, 0.007911484688520432, -0.042667455971241, 0.026389803737401962, -0.07544101029634476, 0.006947556976228952, -0.009912090376019478, 0.05729006603360176, -0.030136393383145332, 0.007534098345786333, 0.02609880641102791, -0.013576836325228214, 0.018005449324846268, 0.06114577874541283, 0.026808112859725952, 0.030772948637604713, -0.035829026252031326, -0.0099666528403759, -0.018187321722507477, 0.03650195524096489, -0.07616850733757019, -0.04539555683732033, 0.036429207772016525, 0.12643826007843018, 0.027044547721743584, 0.007584113162010908, 0.022679591551423073, 0.015413755550980568, 0.000761594099458307, -0.006665653549134731, -0.09551981836557388, -0.019351311028003693, 0.025553187355399132, -0.017132457345724106, -0.012103662826120853, 0.023588957265019417, -0.00413079559803009, -0.023588957265019417, 0.01784176379442215, -0.03128219395875931, -0.011248858645558357, 0.031027572229504585, -0.07653225213289261, 0.013313120231032372, 0.05099724978208542, -0.09675655514001846, 0.02697179839015007, -0.05616245046257973, 0.008047889918088913, 0.004492268431931734, -0.0030895713716745377, -0.035174280405044556, -0.03990298509597778, -0.08227944374084473, -0.010703238658607006, -0.038884494453668594, 0.015923000872135162, -0.016077592968940735, -0.02615336887538433, -0.022861463949084282, 0.06183689460158348, 0.027681104838848114, -0.0033555610571056604, -0.01807819865643978, 0.0032623508013784885, 0.054889339953660965, 0.09319183975458145, -0.008611696772277355, 0.006620185449719429, 0.01710517704486847, -0.07791449129581451, -0.05390722304582596, -0.040121231228113174, -0.01573203317821026, 0.007670503109693527, 0.001066231750883162, 0.0037193074822425842, -0.04092147573828697, -0.03571990132331848, 0.015186414122581482, 0.013294932432472706, -0.00819338858127594, -0.029954519122838974, 0.004587751813232899, 0.0009400572162121534, -0.035374343395233154, -0.05794480815529823, -0.006465592887252569, -0.037047576159238815, 0.06682021915912628, 0.035392530262470245, -0.007538645062595606, 0.032064247876405716, -0.009693842381238937, -0.01349499262869358, 0.029790833592414856, 0.02511669136583805, 0.02240678109228611, 0.023952703922986984, 0.01847831904888153, 0.011949070729315281, 0.014140643179416656, -0.025662312284111977, 0.060491032898426056, -0.04612305015325546, 0.003619277151301503, 0.016877835616469383, -0.028590470552444458, 0.0253167524933815, -0.01492269802838564, 0.022352218627929688, 0.028263099491596222, 0.02964533492922783, -0.023097898811101913, 0.04001211002469063, -0.02988176979124546, -0.06263713538646698, -0.010257650166749954, 0.0422673374414444, 0.007220366969704628, 0.05932704359292984, -0.015186414122581482, -0.021897535771131516, 0.03902999311685562, 0.015259163454174995, -0.013849645853042603, -0.09573806077241898, -0.02984539605677128, 0.03404666855931282, 0.03481053560972214, -0.017332518473267555, -0.039684735238552094, -0.042812954634428024, -0.016759617254137993, 0.054270967841148376, -0.038884494453668594, -0.006474686786532402, 0.0008047890150919557, -0.034319475293159485, 0.05128824710845947, -0.006674747448414564, 0.0394664891064167, 0.022279469296336174, 0.05976353958249092, 0.011248858645558357, -0.008175201714038849, 0.06594722718000412, -0.0018721574451774359, -0.015295538119971752, -0.0032691711094230413, 0.008920881897211075, 0.025407688692212105, 0.023188835009932518, -0.05005151033401489, -0.0018369195749983191, -0.021897535771131516, 0.020642610266804695, -0.023388896137475967, 0.009275534190237522, -0.018150947988033295, -0.03815700113773346, -0.006988478358834982, 0.01906031370162964, 0.0028531362768262625, -0.07282203435897827, 0.013349494896829128, 0.07060318440198898, -0.002229083562269807, 0.037866003811359406, 0.04728703945875168, 0.0282085370272398, -0.037429507821798325, -0.013795084320008755, 0.049869637936353683, -0.04044860601425171, -0.011485293507575989, -0.0008388902642764151, 0.023734455928206444, 0.043867822736501694, -0.09275534003973007, 0.02946346253156662, 0.011094266548752785, -0.015186414122581482, -0.03071838803589344, -0.019151249900460243, -0.017396174371242523, -0.030791137367486954, -0.048487402498722076, -0.020224303007125854, -0.00674749631434679, 0.041612591594457626, 0.013785989955067635, -0.03091844730079174, 0.03957561403512955, 0.051979366689920425, -0.022461343556642532, 0.021424666047096252, -0.03571990132331848, 0.08140645176172256, 0.03862987086176872, -0.021079106256365776, -0.010985142551362514, 0.004696875810623169, 0.0025416782591491938, -0.026862675324082375, 0.06147314980626106, 0.011594417504966259, -0.016814179718494415, 0.050488006323575974, 0.0282085370272398, -0.01752348430454731, 0.0042990283109247684, -0.012394660152494907, -0.014759011566638947, 0.062127891927957535, 0.013986051082611084, 0.012967560440301895, -0.00513337180018425, 0.00856168195605278, -0.031645938754081726, -0.012612908147275448, 0.02202484756708145, -0.007470442447811365, 0.01887844130396843, -0.03772050514817238, 0.0514337457716465, -0.017596233636140823, 0.022497717291116714, 0.05270686000585556, -0.02444376051425934, -0.05005151033401489, 0.011030610650777817, 0.001988101750612259, -0.029518023133277893, -0.0325007438659668, -0.07464077323675156, -0.013385869562625885, 0.008688992820680141, -0.04550468176603317, -0.007220366969704628, 0.007925125770270824, -0.0159502811729908, -0.05648982152342796, -0.08613515645265579, 0.05990903824567795, 0.07929672300815582, 0.03299180418252945, -0.02984539605677128, 0.016177622601389885, 0.020042428746819496, -0.036429207772016525, 0.02653530240058899, -0.0037352212239056826, -0.04001211002469063, -0.07118517905473709, -0.041830841451883316, 0.0687844529747963, -0.0348832830786705, 0.001881251111626625, 0.02946346253156662, -0.01816004142165184, -0.013076684437692165, 0.051797494292259216, 0.03386479243636131, 0.08206120133399963, -0.0038056971970945597, -0.038302499800920486, -0.0460502989590168, -0.010748707689344883, -0.017350705340504646, -0.032446183264255524, -0.07522276788949966, -0.0276083555072546, 0.010339492931962013, 0.008038796484470367, -0.013485899195075035, 0.05248861014842987, -0.016323121264576912, -0.037465885281562805, 0.022115783765912056, 0.05867230147123337, -0.02429826185107231, 0.018751129508018494, 0.07573200762271881, 0.0020881318487226963, -0.026498928666114807, -0.016177622601389885, -0.013458617962896824, -0.023134274408221245, -0.05252498760819435, 0.023916328325867653, -0.026062432676553726, 0.02031523920595646, 0.048487402498722076, 0.0247165709733963, -0.024170951917767525, -0.03137313202023506, -0.0023711721878498793, -0.04375869780778885, -0.006974838208407164, 0.00287814368493855, -0.003419216489419341, 0.031664129346609116, 0.018551068380475044, 0.052815984934568405, -0.022697778418660164, -0.0022575014736503363, -0.005274323280900717, -0.020424362272024155, 0.010930581018328667, -0.04252196103334427, -0.031609565019607544, -0.009502875618636608, 0.03215518593788147, 0.04692329093813896, -0.020497111603617668, 0.025043942034244537, -0.003221429418772459, -0.044922687113285065, 0.012803874909877777, -0.0036738391499966383, 0.013058497570455074, -0.009020911529660225, -0.02549862489104271, 0.026280680671334267, -0.015313724987208843, 0.000944604049436748, -0.02966352179646492, 0.01494997926056385, 0.05856317654252052, 0.09093660861253738, -0.04703241586685181, 0.026935424655675888, 0.03859349712729454, 0.03255530819296837, -0.03446497395634651, -0.00731130363419652, 0.013631397858262062, -0.01069414522498846, -0.031063945963978767, 0.0034533177968114614, 0.085334911942482, 0.026844488456845284, -0.005879051983356476, 0.012276442721486092, 0.024007264524698257, -0.008170654065907001, -0.01973324455320835, -0.010921486653387547, -0.01554106641560793, -0.013031216338276863, 0.07391327619552612, -0.015295538119971752, -0.006765683647245169, 0.036010898649692535, 0.03293723985552788, 0.016141248866915703, -0.008443464525043964, -0.06714759021997452, -0.031427692621946335, -0.01472263690084219, 0.05350710079073906, -0.038884494453668594, -0.03401029109954834, 0.017059708014130592, -0.033682920038700104, -0.00892997533082962, -0.01492269802838564, -0.011767197400331497, 0.018005449324846268, -0.001911942264996469, -0.017196113243699074, 0.0270081739872694, 0.01295846700668335, 0.05478021502494812, -0.026080619543790817, 0.019205812364816666, -0.0021813418716192245, -0.02904515340924263, -0.004924217704683542, 0.013340400531888008, 0.026698989793658257, -0.03233705833554268, 0.01616852916777134, 0.06085478141903877, 0.018032729625701904, -0.04350407421588898, 0.003976203501224518, -0.05085175111889839, -0.0321006253361702, 0.002984994323924184, -0.0047423443756997585, -0.031609565019607544, -0.028463158756494522, 0.06863895058631897, 0.012967560440301895, 0.0005697747110389173, 0.04474081099033356, -0.0009338053059764206, -0.07856923341751099, 0.052415862679481506, -0.006129127461463213, -0.0014720363542437553, -0.021697474643588066, -0.03128219395875931, -0.07827823609113693, 0.03293723985552788, 0.04132159426808357, 0.00746134901419282, -0.027299171313643456, 0.008243403397500515, -0.014795386232435703, 0.006938463542610407, -0.019023938104510307, 0.010866925120353699, 0.02882690541446209, 0.0031736877281218767, 0.05147012323141098, -0.011203390546143055, -0.021479226648807526, -0.005751740653067827, 0.007879657670855522, -0.048014529049396515, 0.044304315000772476, 0.008329793810844421, 0.03873899579048157, 0.06667472422122955, 0.02924521453678608, 0.0325007438659668, -0.09522882103919983, -0.02678992599248886, -0.024734757840633392, -0.003694299841299653, -0.03735676035284996, -0.005792662035673857, 0.025007568299770355, 0.049069393426179886, -0.032682616263628006, 0.03273718059062958, 0.0012901631416752934, -0.004687782377004623, -0.003014548681676388, -0.05750831216573715, 0.028354035690426826, -0.048451025038957596, 0.007734158542007208, -0.03151863068342209, 0.012431034818291664, 0.0464504212141037, 0.025644123554229736, -0.02468019537627697, -0.02573506161570549, 0.030100017786026, 0.058417677879333496, -0.05608970299363136, -0.046595919877290726, -0.0921005979180336, 0.04379507154226303, 0.029408900067210197, -0.036010898649692535, -0.04394057020545006, 0.07958772033452988, -0.005365259945392609, 0.060672905296087265, 0.005383447278290987, 0.023588957265019417, -0.02762654237449169, 0.02280690148472786, -0.003778416197746992, -0.10519547015428543, -0.04441343992948532, -0.006756590213626623, -0.02404364012181759, 0.022079410031437874, -0.010948767885565758, 0.025989683344960213, -0.021006356924772263, -0.002199529204517603, 0.02719004638493061, -0.0597999170422554, -0.027972102165222168, -0.018469225615262985, 0.03646558150649071, 0.02864503301680088, -0.04343132674694061, -0.07304028421640396, 0.0022972861770540476, 0.014768105931580067, 0.010275837033987045, 0.020060615614056587, 0.043249450623989105, -0.03739313408732414, -0.01401333138346672, -0.04197634011507034, 0.10934218019247055, -0.012185505591332912, 0.0008388902642764151, 0.04874202236533165, 0.020678985863924026, 0.09413757920265198, 0.0639830008149147, -0.019969679415225983, 0.03961198776960373, -0.027062734588980675, -0.0077796271070837975, 0.03899361938238144, -0.006938463542610407, 0.03544709086418152, -0.007097602356225252, -0.03895724564790726, 0.023552581667900085, 0.0005132235237397254, 0.025625936686992645, 0.030591076239943504, -0.05587145313620567, 0.02326158434152603, 0.0024120935704559088, -0.010330398567020893, -0.07187629491090775, 0.046777792274951935, -0.02922702580690384, 0.03695663809776306, 0.04608667269349098, -0.021697474643588066, 0.0468505434691906, 0.018250977620482445, 0.0016800538869574666, -0.06616547703742981, -0.03881174698472023, 0.012058194726705551, 0.01554106641560793, 0.03844799846410751, 0.03902999311685562, 0.01907850056886673, 0.007729611825197935, -0.0018369195749983191, -0.005192480515688658, -0.043649572879076004, -0.017377985641360283, 0.04521368443965912, -0.011694448068737984, 0.020042428746819496, 0.032446183264255524, -0.02569868601858616, 0.01949680969119072, 0.017614422366023064, -0.01192178949713707, 0.019660495221614838, -0.00033987557981163263, -0.03361017256975174, -0.0540163479745388, 0.0319005623459816, -0.01887844130396843, -0.038520749658346176, 0.010294023901224136, 0.014331609942018986, 0.05208849161863327, 0.02218853309750557, 0.05707181617617607, 0.038920868188142776, -0.006501967553049326, -0.01556834764778614, -0.0230251494795084, -0.004728703759610653, -0.01867838017642498, -0.012067288160324097, 0.02033342607319355, 0.053252480924129486, -0.015822969377040863, -0.020678985863924026, -0.002823581686243415, 0.009152770042419434, 0.009234612807631493, 0.0025621389504522085, -0.01949680969119072, 0.0018903447780758142, -0.03091844730079174, -0.09319183975458145, -0.0026235212571918964, 0.007397693116217852, 0.026026058942079544, 0.05037888139486313, 0.01712336391210556, 0.0002901446132455021, -0.04950588941574097, 0.060491032898426056, 0.014695356599986553, -0.014549857936799526, 0.02573506161570549, 0.001409517484717071 ]
20,427
cron_descriptor.ExpressionDescriptor
transform_case
Transforms the case of the expression description, based on options Args: description: The description to transform case_type: The casing type that controls the output casing Returns: The transformed description with proper casing
@staticmethod def transform_case(description, case_type): """Transforms the case of the expression description, based on options Args: description: The description to transform case_type: The casing type that controls the output casing Returns: The transformed description with proper casing """ if case_type == CasingTypeEnum.Sentence: description = "{}{}".format( description[0].upper(), description[1:]) elif case_type == CasingTypeEnum.Title: description = description.title() else: description = description.lower() return description
(description, case_type)
[ 0.0006080627208575606, -0.061746746301651, 0.07831632345914841, -0.06001714617013931, -0.00972900353372097, -0.11366935819387436, 0.028227083384990692, -0.04123368114233017, 0.034643903374671936, -0.042513586580753326, -0.0234706811606884, 0.03151332587003708, 0.0032775932922959328, 0.013914637267589569, -0.03818958252668381, -0.005028814077377319, 0.021533528342843056, -0.013075781054794788, 0.0022419949527829885, 0.008107502944767475, 0.01228016521781683, -0.004535878077149391, -0.00617899838835001, -0.08046102523803711, 0.024127930402755737, 0.04555768147110939, -0.01681171916425228, -0.023833896964788437, -0.005046110134571791, -0.042686544358730316, -0.026947179809212685, -0.02006336860358715, -0.03502441570162773, 0.02023632824420929, 0.03459201380610466, -0.010446788743138313, -0.02037469670176506, 0.013369813561439514, 0.04936280474066734, 0.04244440048933029, -0.03718641400337219, 0.022899912670254707, -0.018022438511252403, 0.002600887091830373, -0.06631289422512054, 0.00857881922274828, -0.01320550125092268, -0.003815931500867009, 0.0029187011532485485, -0.04310164973139763, 0.04448533058166504, -0.05877183377742767, 0.03440175950527191, -0.025096505880355835, -0.03102903626859188, -0.02300368994474411, 0.022623177617788315, 0.07084444165229797, 0.010282476432621479, 0.04863637313246727, 0.004812614060938358, -0.000168095575645566, -0.056903865188360214, -0.00702217873185873, -0.04244440048933029, 0.01219368539750576, 0.018921831622719765, -0.003573787398636341, 0.042063888162374496, 0.0045012859627604485, 0.006070898380130529, -0.037463150918483734, 0.002008498879149556, 0.016630111262202263, 0.01650903932750225, -0.003422447480261326, -0.10087031126022339, 0.03256838023662567, 0.07056771218776703, -0.03471308574080467, -0.017659222707152367, 0.00013350354856811464, 0.023833896964788437, -0.032793231308460236, 0.03459201380610466, -0.06098572164773941, 0.021550824865698814, -0.05275282263755798, 0.06551727652549744, 0.031080923974514008, -0.03995377570390701, -0.0779012143611908, -0.017849478870630264, 0.029074588790535927, -0.01683766208589077, 0.04427777975797653, -0.012245573103427887, -0.08191388845443726, -0.028036827221512794, 0.031271182000637054, 0.04465829208493233, 0.08855555951595306, 0.04119908809661865, -0.013136317022144794, 0.008340999484062195, -0.033139150589704514, 0.0013955716276541352, 0.024508442729711533, 0.009668467566370964, -0.004038617480546236, -0.06997964531183243, -0.03415961563587189, -0.015402094461023808, -0.08731024712324142, -0.009901964105665684, -0.017572743818163872, 0.010170051828026772, -0.005465538240969181, -0.07720937579870224, 0.0015112386317923665, 0.00299004721455276, -0.020270919427275658, -0.0339866541326046, -0.014943750575184822, -0.010420843958854675, 0.02533864974975586, -0.01080135628581047, -0.02886703610420227, 0.027898458763957024, 0.03042367659509182, -0.012773101218044758, -0.023557161912322044, -0.0049639539793133736, -0.018454840406775475, 0.04621493071317673, 0.03694427013397217, 0.0005723897484131157, 0.042236849665641785, -0.02099735289812088, 0.13940581679344177, 0.017797591164708138, -0.009374435991048813, 0.010230587795376778, 0.0009664144017733634, -0.03225705400109291, -0.020651431754231453, 0.041129905730485916, -0.013058485463261604, -0.014001118019223213, 0.03208409249782562, 0.03383098915219307, 0.05091944336891174, 0.022294552996754646, -0.0022138888016343117, 0.10211562365293503, -0.03521467000246048, -0.026324523612856865, -0.040991537272930145, -0.027725499123334885, 0.05617742985486984, 0.05666171759366989, 0.009763595648109913, -0.05801080912351608, 0.04196011275053024, 0.02748335525393486, 0.005603906232863665, 0.013689789921045303, -0.007078391034156084, 0.04306705668568611, -0.05638498440384865, -0.02670503407716751, -0.00682759890332818, -0.029143771156668663, 0.08613411337137222, 0.04154500737786293, 0.101285420358181, -0.0184029508382082, 0.0771401897072792, 0.03677131235599518, -0.010688932612538338, 0.0063606067560613155, 0.03460931032896042, -0.05780325457453728, 0.06420277804136276, 0.009270659647881985, -0.01747761480510235, 0.045938193798065186, 0.0015209675766527653, -0.008704215288162231, -0.04912066087126732, -0.024283593520522118, 0.000312679389026016, -0.02916106767952442, -0.008518283255398273, -0.005240689963102341, -0.021239496767520905, -0.052718229591846466, -0.023124761879444122, -0.009305251762270927, -0.0027306070551276207, -0.05085026100277901, 0.07236649096012115, 0.048394229263067245, 0.06838840991258621, 0.04140664264559746, 0.07720937579870224, 0.04801371693611145, 0.0013328735949471593, -0.11560650914907455, -0.01714899018406868, -0.00617899838835001, 0.0035521674435585737, 0.001920937793329358, -0.007307562977075577, 0.006520594470202923, -0.03562977537512779, -0.03253379091620445, 0.04970872402191162, -0.060916535556316376, 0.029922092333436012, -0.004583441652357578, -0.00039240316255018115, 0.048255860805511475, 0.00575524615123868, 0.08392022550106049, 0.0007675103261135519, 0.05216475576162338, -0.032793231308460236, -0.009495507925748825, 0.0004280761640984565, -0.06551727652549744, -0.052268534898757935, -0.005577962379902601, 0.015056174248456955, 0.023591753095388412, -0.05887560918927193, -0.03659835085272789, 0.0069097550585865974, -0.012634732760488987, -0.006425466854125261, -0.017373839393258095, 0.024837065488100052, -0.010403548367321491, 0.019527191296219826, -0.03538763150572777, -0.02686069905757904, 0.025753755122423172, 0.010170051828026772, -0.009927907958626747, -0.002084168838337064, 0.00810317974537611, -0.05728437379002571, -0.006269802805036306, -0.016033397987484932, -0.0318419486284256, -0.003917545545846224, -0.03919275104999542, 0.017356542870402336, 0.03260297328233719, -0.054724566638469696, -0.02039199322462082, 0.030146939679980278, -0.0349552296102047, 0.009850076399743557, 0.010481379926204681, -0.00880366750061512, 0.013784918002784252, 0.00293599721044302, 0.0185067281126976, 0.003268945263698697, 0.0738193616271019, 0.02997398003935814, -0.033294811844825745, 0.008319379761815071, -0.014753494411706924, 0.08080694824457169, -0.044381555169820786, 0.004382375627756119, -0.010420843958854675, -0.008505311794579029, 0.06617452204227448, 0.05264904722571373, -0.06392604112625122, 0.02900540456175804, 0.04818667471408844, -0.021741081029176712, 0.01019599661231041, -0.022934505715966225, 0.01196883711963892, 0.03687508776783943, -0.04344756901264191, 0.06070898473262787, 0.03383098915219307, -0.01682036742568016, -0.024819770827889442, 0.0023349609691649675, 0.03381369262933731, -0.049950867891311646, 0.01329198107123375, -0.027863867580890656, -0.033606141805648804, 0.055208854377269745, 0.0484980046749115, -0.002038766862824559, -0.09139209985733032, 0.026203451678156853, -0.035110894590616226, -0.044519923627376556, 0.03121929243206978, 0.011389420367777348, -0.051023222506046295, 0.014295149594545364, -0.03012964501976967, 0.032637566328048706, -0.027379579842090607, 0.059221528470516205, -0.001861482742242515, 0.05313333496451378, 0.03614865615963936, 0.038085807114839554, -0.04026510566473007, -0.02962806075811386, -0.006866514682769775, -0.011268348433077335, 0.006520594470202923, -0.00609684269875288, -0.035145487636327744, 0.012228276580572128, 0.06191970407962799, -0.04216766357421875, -0.023228537291288376, 0.02040928788483143, 0.031253885477781296, -0.004174823872745037, -0.08225981146097183, -0.03562977537512779, 0.04604196920990944, 0.025252170860767365, -0.0029792371205985546, 0.014182725921273232, 0.022519400343298912, -0.011216460727155209, -0.0687689259648323, -0.007835091091692448, 0.05233771726489067, 0.013646549545228481, 0.01489186193794012, -0.024612218141555786, 0.051507510244846344, -0.017062511295080185, -0.02008066512644291, -0.09464374929666519, 0.07582569867372513, -0.036079470068216324, 0.014831325970590115, -0.00809453148394823, -0.0038397135213017464, -0.09630417078733444, -0.019838519394397736, -0.05776866525411606, 0.061677560210227966, -0.0740269124507904, -0.007930219173431396, 0.029230251908302307, -0.009979795664548874, -0.01329198107123375, 0.013802213594317436, 0.013758973218500614, 0.03346777334809303, 0.007739963009953499, 0.027915755286812782, -0.0013825995847582817, 0.011778580956161022, -0.03601028770208359, -0.012038021348416805, -0.043170832097530365, 0.019198568537831306, -0.011605620384216309, -0.012972005642950535, 0.04746024310588837, -0.003595407586544752, 0.051023222506046295, -0.04126827418804169, 0.08419696241617203, -0.044416144490242004, -0.017408430576324463, 0.009988443925976753, 0.06728146970272064, 0.019423415884375572, -0.0039521376602351665, -0.003059231210500002, -0.007208110764622688, 0.02917836420238018, -0.028192492201924324, 0.01727871038019657, -0.030302604660391808, -0.08198307454586029, -0.010740820318460464, -0.006364930421113968, 0.02935132384300232, -0.052406903356313705, 0.004678569734096527, 0.013413053937256336, -0.014917805790901184, -0.008976628072559834, 0.02916106767952442, 0.037912849336862564, 0.05385976657271385, 0.013283333741128445, 0.03059663623571396, -0.0065162708051502705, -0.028071420267224312, -0.028192492201924324, -0.05776866525411606, -0.019700152799487114, -0.023280424997210503, 0.06025929003953934, 0.027656314894557, -0.05700764060020447, 0.02948969230055809, 0.0037770154885947704, 0.0007345398189499974, 0.04898229241371155, 0.05237231031060219, 0.044381555169820786, -0.006771386601030827, 0.02331501804292202, -0.01729600690305233, 0.033900175243616104, -0.022121593356132507, -0.050435155630111694, -0.0027954671531915665, -0.10273828357458115, -0.06717769056558609, 0.04102613031864166, -0.017356542870402336, 0.015817198902368546, 0.015955567359924316, -0.01776299998164177, 0.0237647145986557, 0.0025771050713956356, 0.04310164973139763, -0.03735937550663948, 0.014692958444356918, -0.038535505533218384, -0.016880903393030167, 0.020478472113609314, -0.02440466545522213, -0.06510216742753983, -0.02890162728726864, 0.05046974867582321, 0.09332925081253052, 0.015722069889307022, -0.0069184028543531895, -0.013586013577878475, -0.011069444939494133, 0.023228537291288376, -0.020132552832365036, 0.010533268563449383, 0.03384828567504883, 0.04898229241371155, -0.007316211238503456, 0.004566146060824394, 0.027223914861679077, -0.0029468073043972254, 0.020028775557875633, 0.008025347255170345, 0.018489431589841843, -0.004496961832046509, -0.010472732596099377, -0.012029373086988926, -0.01619771122932434, 0.030821485444903374, 0.024664105847477913, -0.00826749112457037, 0.026929883286356926, -0.015722069889307022, -0.00618332251906395, -0.007826442830264568, 0.02779468335211277, 0.010931076481938362, -0.03447094187140465, -0.02423170581459999, -0.0009388488833792508, 0.01560099795460701, -0.007329183164983988, 0.03628702461719513, -0.00826749112457037, 0.0003397043910808861, -0.012565549463033676, 0.007419987116008997, 0.04334379360079765, 0.023695530369877815, -0.02300368994474411, 0.03569895774126053, -0.008345323614776134, -0.02284802496433258, 0.0045402017422020435, -0.05233771726489067, -0.007748611271381378, 0.0049639539793133736, -0.018039735034108162, -0.018783463165163994, -0.04261736199259758, 0.05759570375084877, 0.016258247196674347, -0.007065419107675552, 0.009538748301565647, 0.0047693741507828236, -0.04199470579624176, -0.021896744146943092, 0.022969096899032593, 0.01963096857070923, -0.08101449906826019, -0.0014906995929777622, 0.0009988443925976753, -0.014156782068312168, 0.06095112860202789, 0.005210421979427338, 0.024612218141555786, -0.020340103656053543, -0.07305833697319031, -0.03210138902068138, 0.019198568537831306, 0.03223975747823715, -0.0021295708138495684, -0.034349869936704636, 0.0016841987380757928, 0.03101174160838127, -0.010844596661627293, -0.029299436137080193, -0.047010548412799835, 0.0580453984439373, 0.06811167299747467, -0.00826316699385643, 0.03936571255326271, -0.0479099415242672, -0.005893614608794451, -0.005206098314374685, 0.03677131235599518, 0.0025554851163178682, -0.011795876547694206, -0.06081276014447212, -0.013257389888167381, 0.04216766357421875, 0.051196180284023285, 0.010040332563221455, -0.025736458599567413, -0.03784366324543953, 0.0017577067483216524, -0.03391747176647186, 0.01080135628581047, 0.01978663168847561, -0.003232191316783428, 0.017693815752863884, 0.015064822509884834, -0.02734498679637909, 0.017373839393258095, 0.010870540514588356, 0.005621202290058136, -0.027085546404123306, -0.02085898444056511, 0.03639080002903938, 0.006364930421113968, 0.04389726743102074, 0.03319103643298149, -0.006883810739964247, 0.05482834205031395, 0.020495768636465073, -0.047494836151599884, 0.06084735319018364, -0.02456033043563366, 0.10315338522195816, 0.029991276562213898, -0.08544227480888367, 0.03694427013397217, 0.0305793397128582, 0.024162521585822105, 0.03704804554581642, 0.024283593520522118, -0.04234062507748604, -0.018333766609430313, -0.08371267467737198, -0.043170832097530365, 0.0096425237134099, -0.04230603203177452, -0.004479665774852037, 0.021671896800398827, 0.0379820317029953, 0.007692398969084024, -0.043931856751441956, 0.0389506071805954, 0.016024749726057053, -0.03056204505264759, 0.013577365316450596, -0.025113802403211594, 0.042063888162374496, -0.01760733500123024, -0.00817668717354536, 0.0011555894743651152, -0.07112117856740952, -0.013231445103883743, 0.0349552296102047, 0.05683467909693718, 0.04742565006017685, 0.02720661833882332, -0.011493196710944176, -0.03139225393533707, -0.02966265194118023, 0.0256153866648674, 0.007670779246836901, 0.02023632824420929, 0.018610503524541855, 0.0030765272676944733, 0.021550824865698814, 0.020495768636465073, -0.003178141312673688, -0.08260572701692581, 0.02084168791770935, -0.06302665174007416, -0.033294811844825745, -0.0011555894743651152, -0.056592535227537155, -0.02642829902470112, -0.06095112860202789, 0.03780907019972801, 0.020132552832365036, -0.056454166769981384, -0.044519923627376556, -0.06783494353294373, 0.01871427893638611, 0.007082714699208736, 0.01196883711963892, -0.05638498440384865, 0.008449099026620388, 0.04154500737786293, -0.006805978715419769, 0.04801371693611145, -0.012963357381522655, -0.008457747288048267, 0.006023334339261055, -0.040092144161462784, 0.020651431754231453, -0.006274126470088959, -0.02902269922196865, 0.045315537601709366, -0.01778029464185238, -0.07340425252914429, -0.035145487636327744, -0.020132552832365036, -0.006468706764280796, 0.06347634643316269, -0.0358373261988163, 0.05887560918927193, 0.048255860805511475, 0.040057551115751266, -0.023695530369877815, -0.0051196180284023285, 0.03587191924452782, -0.06517135351896286, 0.002868975279852748, 0.016102582216262817, 0.032793231308460236, -0.011865060776472092, 0.022519400343298912, -0.033571548759937286, 0.04541931301355362, -0.011908301152288914, -0.006421142723411322, 0.0013328735949471593, 0.08018428832292557, -0.014952397905290127, 0.032827820628881454, -0.013041188940405846, -0.030631229281425476, -0.0025598090142011642, 0.044865842908620834, 0.02563268318772316, 0.0349552296102047, -0.010377604514360428, 0.010870540514588356, -0.03722100704908371, 0.0113461809232831, -0.018575912341475487, 0.05600447207689285, -0.016785774379968643, -0.02777738682925701, -0.01742572709918022, -0.024923546239733696, -0.08606493473052979, -0.03521467000246048, -0.009538748301565647, -0.0543440543115139, -0.014943750575184822, 0.053029559552669525, -0.04507339373230934, -0.026981770992279053, -0.040507249534130096, 0.003876467701047659, 0.01961367204785347, 0.034505534917116165, -0.019388824701309204, 0.007285942789167166, -0.014961046166718006, 0.007752935402095318, -0.00660275062546134, -0.00013985442637931556, -0.027552539482712746, 0.06690095365047455, -0.016275541856884956, 0.02485436201095581, 0.028140604496002197, -0.01522048655897379, -0.004140231758356094, 0.049189843237400055, -0.003926193807274103, -0.03926193714141846, 0.056592535227537155, 0.01852402277290821, -0.0034959553740918636, 0.046111155301332474, -0.046699218451976776, 0.034643903374671936, -0.034678492695093155, -0.0034678494557738304, 0.0046958657912909985, -0.06375308334827423, 0.011899652890861034, 0.014200021512806416, -0.03391747176647186, -0.033139150589704514, -0.011000260710716248, 0.003457039361819625, 0.00566876633092761, -0.013689789921045303, 0.006421142723411322, -0.013957877643406391, -0.040368881076574326, -0.011536437086760998, -0.01713169552385807, -0.01589503139257431, 0.03286241367459297, -0.01133753266185522, -0.01881805621087551, 0.006412494461983442, 0.04566146060824394, 0.028227083384990692, 0.0053055500611662865, 0.008055615238845348, -0.033294811844825745, -0.023574458435177803, -0.0012453125091269612, -0.000337272125761956, -0.022502105683088303, 0.030319901183247566, -0.07644835114479065, 0.0432400181889534, 0.030544748529791832, 0.0030397733207792044, 0.028140604496002197, 0.013914637267589569, -0.007385395001620054, 0.017572743818163872, 0.05780325457453728, 0.03614865615963936, -0.03215327858924866, 0.04953576251864433, 0.02516569010913372 ]
20,428
cron_descriptor.ExpressionDescriptor
transform_verbosity
Transforms the verbosity of the expression description by stripping verbosity from original description Args: description: The description to transform use_verbose_format: If True, will leave description as it, if False, will strip verbose parts Returns: The transformed description with proper verbosity
def transform_verbosity(self, description, use_verbose_format): """Transforms the verbosity of the expression description by stripping verbosity from original description Args: description: The description to transform use_verbose_format: If True, will leave description as it, if False, will strip verbose parts Returns: The transformed description with proper verbosity """ if use_verbose_format is False: description = description.replace(self._(", every minute"), '') description = description.replace(self._(", every hour"), '') description = description.replace(self._(", every day"), '') description = re.sub(r', ?$', '', description) return description
(self, description, use_verbose_format)
[ 0.05024637281894684, -0.026776954531669617, 0.09155537188053131, -0.05179458111524582, 0.024595389142632484, -0.05457431823015213, -0.000047213183279382065, -0.03165028989315033, 0.04317387938499451, -0.009166092611849308, -0.03173825517296791, 0.016959911212325096, -0.022308263927698135, -0.04880372807383537, -0.0037253745831549168, 0.025826917961239815, -0.009034143760800362, -0.03631250560283661, 0.03743847459554672, 0.04049970209598541, 0.04971857741475105, -0.030805813148617744, -0.04595361649990082, -0.045003581792116165, 0.01443527638912201, 0.0057266089133918285, 0.01169072650372982, -0.0487685389816761, -0.049437083303928375, 0.0041674054227769375, -0.014136191457509995, -0.018068287521600723, 0.0003144796646665782, 0.04412391781806946, 0.005141632631421089, 0.04380723834037781, -0.061259761452674866, 0.031949374824762344, -0.06150606647133827, 0.050387121737003326, 0.009685094468295574, -0.009632314555346966, -0.02091839537024498, -0.002801727969199419, -0.018138660117983818, -0.017681235447525978, 0.040394145995378494, 0.06041528284549713, -0.004728191066533327, -0.042083099484443665, 0.08888119459152222, -0.007952157407999039, 0.01991557888686657, 0.03182622417807579, -0.06266722083091736, 0.011752303689718246, 0.07663627713918686, 0.10408177226781845, 0.05302610993385315, -0.024401864036917686, -0.05809297040104866, 0.01212176214903593, -0.06685441732406616, 0.02009151317179203, -0.005049268249422312, -0.014048225246369839, -0.0019341598963364959, 0.0016009873943403363, 0.010881436057388783, -0.002702765865251422, -0.027850143611431122, -0.04634067043662071, 0.011391641572117805, 0.03173825517296791, -0.025422273203730583, -0.017206216230988503, -0.09852230548858643, -0.022871248424053192, 0.013274121098220348, -0.03895149752497673, -0.010837453417479992, 0.009174889884889126, 0.0721324011683464, -0.02836034819483757, 0.01937018893659115, -0.0793808251619339, 0.03391982242465019, -0.0349930115044117, 0.04303313419222832, 0.014408886432647705, -0.055418796837329865, -0.06569326668977737, 0.014312123879790306, 0.04493320733308792, -0.03140398487448692, 0.03782552853226662, -0.050527866929769516, -0.05763554573059082, 0.021358227357268333, -0.03553840145468712, 0.0598171129822731, 0.02744549885392189, -0.013502833433449268, -0.023645352572202682, 0.026794547215104103, -0.05288536474108696, -0.0331457182765007, -0.01454963255673647, 0.06949341297149658, 0.01153238769620657, -0.04612955078482628, -0.00277973641641438, -0.03004930168390274, -0.09035902470350266, 0.004028858616948128, 0.004081638064235449, 0.016590451821684837, -0.01749650575220585, -0.010265671648085117, 0.0027687405236065388, 0.0036066200118511915, -0.009174889884889126, -0.015402906574308872, -0.00010878962348215282, -0.01588672213256359, 0.01576356776058674, -0.05193533003330231, 0.001188645139336586, 0.03831813856959343, -0.029152045026421547, -0.021586939692497253, 0.007120875176042318, 0.0057837869971990585, 0.010142519138753414, 0.004481885116547346, -0.0068613747134804726, 0.01502465084195137, 0.03803664445877075, 0.025316713377833366, 0.08550328761339188, -0.03990153223276138, -0.0018956746207550168, -0.03590786084532738, -0.00860750675201416, -0.003360314294695854, -0.07040826231241226, 0.03428928181529045, 0.03768477961421013, 0.01968686655163765, 0.002123287646099925, 0.0266713947057724, 0.02721678651869297, 0.012200932018458843, -0.01717103086411953, 0.06069677695631981, -0.0036220140755176544, 0.023821284994482994, -0.028342755511403084, 0.014356107451021671, 0.004750182386487722, 0.058339279145002365, -0.04155530035495758, 0.019299814477562904, 0.010969403199851513, 0.012631966732442379, -0.006456729490309954, 0.06470803916454315, 0.052181635051965714, 0.009649907238781452, 0.01781318336725235, -0.015086228027939796, 0.022941622883081436, 0.010239282622933388, 0.07318799942731857, 0.027005666866898537, 0.14637599885463715, 0.03068266063928604, 0.023803692311048508, 0.0076222834177315235, 0.03502819687128067, -0.014276937581598759, 0.014364903792738914, -0.07818448543548584, 0.035415250808000565, 0.036875490099191666, -0.03170306980609894, 0.012200932018458843, -0.019159069284796715, -0.08550328761339188, -0.011734710074961185, 0.07368060946464539, 0.03775515407323837, 0.030172456055879593, -0.011743506416678429, -0.006870171520859003, -0.023363860324025154, -0.03545043617486954, -0.0400070920586586, 0.034042973071336746, -0.037473659962415695, -0.029943741858005524, 0.021199887618422508, 0.004048651084303856, -0.006922950968146324, 0.04658697545528412, 0.03110489808022976, 0.005766193848103285, -0.004807360470294952, -0.07318799942731857, -0.0237509123980999, -0.016731198877096176, -0.016924723982810974, 0.031016932800412178, -0.003910103812813759, -0.013810715638101101, 0.004316948354244232, 0.021111922338604927, 0.07016195356845856, -0.05102047696709633, 0.04113306105136871, -0.006650255527347326, -0.07776224613189697, 0.00566503219306469, 0.03465873748064041, 0.037192169576883316, 0.05394095927476883, 0.061717186123132706, -0.01940537430346012, 0.012587983161211014, -0.011699523776769638, -0.0516890212893486, -0.010212892666459084, -0.04021821171045303, 0.01772521808743477, 0.04352574422955513, 0.014303327538073063, -0.008369997143745422, -0.01075828354805708, 0.009729077108204365, 0.02200917899608612, -0.03383185341954231, -0.0022266479209065437, -0.012860679067671299, 0.048838913440704346, -0.022449010983109474, -0.08508104830980301, -0.022220298647880554, -0.004431304521858692, 0.004431304521858692, 0.02229067124426365, -0.004578648135066032, -0.008523938246071339, 0.012130558490753174, 0.03388463333249092, -0.007815809920430183, -0.006056482437998056, -0.030928965657949448, -0.024349084123969078, -0.03177344426512718, -0.05446875840425491, -0.011374047957360744, -0.003993671853095293, -0.06861374527215958, 0.012227321974933147, 0.029486317187547684, -0.0018340982496738434, 0.02681214176118374, -0.04595361649990082, 0.020971175283193588, 0.009174889884889126, 0.0012997026788070798, -0.019352594390511513, -0.04215347021818161, 0.01781318336725235, -0.04785368964076042, 0.0714990422129631, -0.025914885103702545, -0.0464814156293869, -0.005849761888384819, 0.052040886133909225, 0.011778692714869976, 0.029345571994781494, -0.005801380146294832, -0.011884252540767193, 0.0722731500864029, 0.028976112604141235, -0.002792931394651532, 0.00743315601721406, -0.027251971885561943, 0.04011265188455582, 0.018015507608652115, 0.019053509458899498, 0.05826890468597412, -0.014813532121479511, 0.013177357614040375, 0.02635471522808075, -0.03881074860692024, -0.014488056302070618, -0.00567382900044322, -0.02237863652408123, 0.00824244599789381, 0.0048953271470963955, 0.028518687933683395, 0.010617537423968315, -0.009042940102517605, 0.050070442259311676, -0.0014129594201222062, -0.023275893181562424, 0.04021821171045303, 0.01721501350402832, -0.006153245456516743, -0.028237195685505867, 0.0014624404720962048, -0.025492645800113678, 0.030805813148617744, 0.031175270676612854, 0.00039557364652864635, 0.030928965657949448, 0.003976078703999519, 0.009104516357183456, 0.0003628611739259213, 0.009482772089540958, 0.031122492626309395, -0.02626674994826317, 0.006276398431509733, -0.07980306446552277, -0.06586919724941254, 0.023029588162899017, 0.00689656101167202, -0.06875449419021606, 0.007437554188072681, -0.01648489199578762, 0.01982761360704899, -0.02137582190334797, -0.02607322297990322, -0.06819150596857071, 0.04187197983264923, -0.011549980379641056, -0.004767775535583496, 0.038564443588256836, 0.017514098435640335, 0.04137936607003212, -0.05147790163755417, 0.018754424527287483, 0.022765688598155975, 0.035819895565509796, -0.0036725946702063084, -0.0037121796049177647, 0.04510914161801338, 0.0008950575138442218, 0.029556691646575928, -0.03990153223276138, 0.0066678486764431, 0.023962032049894333, 0.009966586716473103, -0.006997722666710615, 0.0019011725671589375, -0.034500397741794586, -0.025263933464884758, -0.018666457384824753, -0.05682625621557236, -0.006566687487065792, 0.021868431940674782, -0.010969403199851513, 0.06660811603069305, 0.005458311643451452, 0.0037473661359399557, -0.0412738062441349, 0.0012249313294887543, -0.006623865570873022, -0.027551058679819107, -0.010265671648085117, 0.05274461954832077, -0.06678404659032822, 0.0012238317867740989, -0.044546157121658325, -0.017646048218011856, 0.0071472651325166225, -0.03574952110648155, 0.02575654536485672, 0.04894447326660156, 0.02827238291501999, -0.044194288551807404, 0.021023955196142197, -0.008180869743227959, 0.013265324756503105, 0.02987336926162243, 0.03574952110648155, -0.033585548400878906, -0.0002814923063851893, -0.031579915434122086, -0.03483467176556587, 0.004136617295444012, -0.001085834577679634, 0.02051375061273575, -0.0071472651325166225, -0.0729065015912056, 0.03652362525463104, -0.023187927901744843, 0.00533076049759984, -0.03736810386180878, -0.018842389807105064, -0.012675950303673744, -0.028624247759580612, -0.020707277581095695, 0.018279405310750008, 0.059993043541908264, 0.12216765433549881, -0.011294878087937832, 0.0031755848322063684, -0.009746670722961426, -0.0633709505200386, -0.02649546228349209, -0.020672090351581573, 0.016467299312353134, 0.023874064907431602, 0.041942350566387177, 0.017021486535668373, -0.04890928789973259, 0.041308995336294174, 0.01253520417958498, -0.018121065571904182, 0.029433537274599075, 0.014382496476173401, 0.06886005401611328, -0.014725565910339355, -0.04060526192188263, -0.0044203088618814945, 0.009948993101716042, 0.006593077443540096, -0.030119676142930984, -0.01244723703712225, -0.024349084123969078, -0.041308995336294174, 0.05995785817503929, -0.05904300883412361, 0.05872632935643196, -0.008044522255659103, -0.020883210003376007, 0.06495434790849686, 0.054785437881946564, 0.026741767302155495, 0.05056305229663849, -0.02028503827750683, 0.016097839921712875, 0.006914154626429081, 0.023733319714665413, 0.0161594171077013, 0.003560437588021159, -0.02160453423857689, 0.008110497146844864, 0.0510556660592556, 0.006944942753762007, -0.03597823530435562, 0.026460275053977966, -0.02887055277824402, 0.029574284330010414, 0.007112078834325075, -0.015235770493745804, -0.00020713324192911386, 0.032178089022636414, 0.02389165759086609, -0.05548916757106781, 0.023399047553539276, -0.01287827268242836, -0.042083099484443665, 0.03027801401913166, -0.08655887842178345, -0.0812809020280838, 0.023416640236973763, -0.004948106594383717, -0.06555251777172089, 0.05197051540017128, 0.005660634022206068, -0.018332185223698616, 0.01914147660136223, -0.0023706930223852396, 0.004644623026251793, 0.04855741932988167, 0.0568966306746006, -0.006799798458814621, -0.023504607379436493, -0.002971063135191798, 0.023416640236973763, 0.008823024109005928, 0.013054205104708672, 0.018156252801418304, -0.02850109525024891, 0.011453217826783657, -0.007749834563583136, -0.004178401082754135, -0.012033795937895775, 0.028465908020734787, -0.03951448202133179, 0.029064079746603966, -0.021798059344291687, -0.021956399083137512, -0.01409220788627863, -0.006799798458814621, 0.032811444252729416, -0.04433503746986389, -0.013494037091732025, -0.014663989655673504, -0.024577796459197998, 0.059852298349142075, -0.03462355211377144, 0.037332914769649506, 0.035872675478458405, -0.021252667531371117, -0.01023048534989357, -0.039936717599630356, 0.03420131281018257, -0.013124578632414341, -0.0008169874199666083, -0.043736863881349564, -0.02593247778713703, -0.04447578266263008, 0.01857849210500717, 0.10499662905931473, -0.0013458849862217903, -0.012508814223110676, -0.005643040873110294, -0.02028503827750683, -0.01795393042266369, 0.034042973071336746, -0.058761514723300934, -0.01926462911069393, 0.002033122116699815, 0.03545043617486954, -0.018789609894156456, 0.02306477539241314, -0.058937449008226395, 0.02223789133131504, 0.01972205378115177, -0.01666962169110775, -0.00024163254420273006, -0.05629845708608627, -0.03205493465065956, -0.07283613085746765, 0.021252667531371117, 0.004653419367969036, 0.008963770233094692, -0.03852925822138786, -0.018332185223698616, 0.002390485256910324, 0.08930343389511108, -0.00561665091663599, 0.050844546407461166, 0.012500016950070858, -0.03321608901023865, -0.0295918770134449, 0.03508097678422928, 0.018437745049595833, 0.03428928181529045, 0.02246660366654396, 0.03574952110648155, -0.028325162827968597, 0.03680511564016342, 0.015904314815998077, -0.004939310252666473, 0.01685435138642788, 0.004785369150340557, 0.0416608601808548, -0.031016932800412178, -0.003674793988466263, 0.007129671983420849, -0.01671360433101654, 0.03288181871175766, -0.032178089022636414, 0.02607322297990322, 0.03986634686589241, -0.06801557540893555, 0.022185111418366432, 0.01018650270998478, -0.09268134087324142, 0.01986280083656311, 0.055242862552404404, 0.0020474165212363005, 0.0504223071038723, 0.04553137719631195, -0.033092938363552094, -0.009350822307169437, -0.018701644614338875, -0.018296999856829643, -0.00019600000814534724, -0.0013150968588888645, 0.0364532507956028, 0.029609471559524536, 0.060767147690057755, 0.02223789133131504, 0.01826181262731552, 0.041308995336294174, 0.050211187452077866, -0.05439838767051697, 0.0013403871562331915, -0.03782552853226662, 0.017188623547554016, 0.0031052117701619864, 0.048381488770246506, 0.056333646178245544, -0.0748065784573555, -0.02836034819483757, 0.03242439404129982, 0.017786793410778046, -0.024137964472174644, -0.012860679067671299, 0.05475025251507759, -0.0702323243021965, -0.033268868923187256, -0.010160112753510475, -0.016053857281804085, 0.061857931315898895, 0.0007988443248905241, -0.010327248834073544, -0.016194604337215424, 0.017690030857920647, 0.009456382133066654, -0.018121065571904182, -0.02621397003531456, -0.07389172911643982, -0.05246312543749809, 0.06073196232318878, -0.0510556660592556, -0.04018302634358406, -0.05193533003330231, -0.013265324756503105, -0.022624943405389786, -0.06527102738618851, -0.044229477643966675, -0.10168909281492233, 0.0027775373309850693, -0.004334541503340006, -0.031210457906126976, -0.013546817004680634, -0.104152150452137, -0.05147790163755417, -0.030084488913416862, -0.009746670722961426, -0.04510914161801338, 0.01671360433101654, 0.04556656628847122, -0.02718159928917885, -0.02420833706855774, -0.015869127586483955, -0.02790292352437973, 0.017558081075549126, -0.033550363034009933, -0.037508849054574966, -0.021164702251553535, -0.009166092611849308, 0.022536976262927055, 0.0858551487326622, -0.026090817525982857, 0.04676290601491928, -0.03831813856959343, 0.042083099484443665, 0.004842547234147787, 0.05622808635234833, 0.002832516096532345, 0.011945828795433044, 0.01949334144592285, -0.03230123966932297, 0.013071798719465733, 0.021164702251553535, 0.08951454609632492, -0.0035406453534960747, 0.02661861479282379, 0.017338166013360023, 0.020900802686810493, -0.02598525770008564, 0.03004930168390274, -0.033955007791519165, 0.02343423292040825, 0.0286418404430151, -0.025914885103702545, 0.017188623547554016, -0.024824101477861404, 0.07846597582101822, 0.014294530265033245, -0.02918723225593567, 0.024876881390810013, -0.02109432965517044, 0.024806508794426918, -0.01454963255673647, -0.026917699724435806, 0.004468690138310194, -0.06259685009717941, 0.024366676807403564, 0.007934563793241978, -0.06340613961219788, -0.05960599333047867, -0.054820623248815536, -0.08135127276182175, 0.017558081075549126, 0.05425763875246048, -0.024225929751992226, -0.029433537274599075, 0.022220298647880554, 0.022361043840646744, -0.028536280617117882, 0.03845888376235962, 0.028078855946660042, -0.0034922638442367315, 0.026565834879875183, 0.010819859802722931, -0.0226073507219553, 0.011778692714869976, -0.08367358148097992, -0.019880393519997597, -0.024718541651964188, 0.024507422000169754, 0.08944417536258698, 0.030629880726337433, -0.03173825517296791, 0.014488056302070618, 0.006927349604666233, -0.005643040873110294, -0.025263933464884758, 0.048838913440704346, -0.011840269900858402, 0.007534317206591368, -0.03193178027868271, -0.039936717599630356, 0.021129515022039413, -0.05119641125202179, 0.047114770859479904, -0.049437083303928375, 0.012799102813005447, 0.08655887842178345, -0.04894447326660156, -0.043947983533144, 0.006944942753762007, -0.01798911765217781, -0.07195647060871124, 0.014620006084442139, 0.04342018812894821, -0.027005666866898537, 0.010899029672145844, 0.048662979155778885, -0.018930356949567795, 0.02283606305718422, 0.06843781471252441, 0.021973991766572, 0.015543652698397636, 0.029767809435725212, 0.008440370671451092, 0.019616493955254555, 0.030260421335697174, -0.010221689008176327, -0.0422942154109478, 0.01849052496254444, -0.02790292352437973, -0.035819895565509796, -0.028078855946660042, 0.08662925660610199, -0.04271645471453667, 0.04507395252585411, 0.03182622417807579, -0.021023955196142197, -0.012473626993596554, 0.007112078834325075, 0.01675758883357048, 0.059570807963609695, 0.04964820295572281, 0.025738950818777084, 0.008783439174294472, -0.015367720276117325, -0.011549980379641056 ]
20,430
cron_descriptor.Exception
FormatException
Exception for cases when something has wrong format
class FormatException(Exception): """ Exception for cases when something has wrong format """ pass
null
[ 0.007598639465868473, -0.0012718152720481157, 0.026128655299544334, 0.018250495195388794, -0.01933417282998562, -0.08022649586200714, 0.0015448847552761436, 0.03423042967915535, 0.045032799243927, -0.040147650986909866, 0.03959721326828003, 0.007486831862479448, 0.021105898544192314, -0.007181509863585234, -0.01794087328016758, 0.06185559183359146, -0.0022834620904177427, 0.021707940846681595, 0.01664218120276928, -0.017364632338285446, -0.03846193104982376, -0.02019423432648182, 0.016263755038380623, 0.017803264781832695, 0.014406022615730762, 0.0666719377040863, 0.02659308910369873, -0.0101831229403615, 0.02805519290268421, -0.05638560280203819, -0.028364814817905426, -0.04203978553414345, -0.03681061416864395, 0.06188999488949776, -0.028210002928972244, -0.024718156084418297, -0.043175067752599716, -0.00036445088335312903, -0.09935425221920013, 0.0097444923594594, -0.03567533195018768, 0.039287589490413666, -0.043622296303510666, -0.01425981242209673, 0.02581903338432312, -0.02695431374013424, 0.0023264652118086815, 0.0181988924741745, -0.12006452679634094, -0.0009100520983338356, -0.004037986975163221, 0.005925820674747229, 0.006798782851547003, 0.000781042966991663, -0.028726039454340935, 0.042762234807014465, 0.06605269014835358, 0.06471099704504013, -0.006742878817021847, -0.011894644238054752, -0.04234940558671951, 0.053943030536174774, -0.007456729654222727, -0.01663358137011528, -0.028984058648347855, -0.031134210526943207, -0.014741446822881699, -0.025870637968182564, -0.005353880114853382, 0.019041752442717552, 0.07479090988636017, 0.05174127593636513, -0.06643112003803253, 0.0415925532579422, 0.071006640791893, -0.010570150800049305, -0.10038632899522781, 0.0649862140417099, 0.005697904620319605, 0.009959506802260876, 0.011034583672881126, 0.026111453771591187, -0.001534133916720748, -0.016504572704434395, 0.05672962963581085, -0.06980255991220474, -0.013700773008167744, 0.001340620219707489, -0.00048674081335775554, 0.05476868897676468, -0.03622577339410782, -0.02502777799963951, -0.04375990852713585, -0.019987819716334343, -0.010810967534780502, 0.015386492945253849, 0.05390862748026848, -0.05824333429336548, 0.006467659492045641, -0.009649884887039661, 0.0312030166387558, 0.028794845566153526, -0.007418026681989431, -0.03304354473948479, 0.0008089949260465801, -0.03632897883653641, 0.016074541956186295, -0.044069528579711914, -0.00044911314034834504, -0.026231862604618073, 0.003438094165176153, -0.05820893496274948, -0.053943030536174774, -0.00883282721042633, 0.04296865314245224, -0.0038595241494476795, 0.044757578521966934, 0.010621754452586174, 0.007908261381089687, -0.004915249068289995, 0.07657983899116516, 0.01404479704797268, -0.07754310965538025, 0.0363633818924427, 0.04644329845905304, -0.025612618774175644, -0.06873608380556107, 0.004820642527192831, 0.08813905715942383, -0.0020867232233285904, -0.0088844308629632, 0.01696900464594364, -0.010785166174173355, -0.052979763597249985, -0.017003407701849937, 0.027143526822328568, -0.007375023793429136, 0.010372336953878403, -0.03760186955332756, 0.005555994343012571, 0.05941301956772804, 0.011980650946497917, 0.02652428299188614, -0.015635909512639046, -0.01854291744530201, 0.010501345619559288, -0.016581976786255836, -0.005469988565891981, -0.018783733248710632, 0.05525032430887222, 0.043278273195028305, 0.04358789697289467, 0.01628955639898777, -0.017287228256464005, 0.014801651239395142, -0.04444795474410057, -0.006050529889762402, -0.04861065372824669, 0.015661712735891342, 0.014922060072422028, 0.037911493331193924, -0.06027308106422424, 0.09901022911071777, 0.0372578464448452, 0.007981366477906704, 0.081464983522892, -0.02721233293414116, -0.04289984703063965, 0.015016666613519192, -0.03182226046919823, -0.015988536179065704, 0.02358287386596203, -0.06188999488949776, 0.018938545137643814, 0.01897294819355011, 0.02762516215443611, 0.014182407408952713, 0.059929054230451584, -0.006209640763700008, -0.003255331190302968, 0.06092672795057297, -0.044241540133953094, 0.00970148853957653, 0.022137971594929695, 0.02201756276190281, -0.005401183385401964, 0.0011223796755075455, 0.006992296315729618, -0.0010471243876963854, -0.002522129099816084, 0.024047307670116425, -0.025681423023343086, -0.038152310997247696, 0.02019423432648182, 0.010638955049216747, -0.034006815403699875, -0.03438524156808853, -0.018818136304616928, 0.0667063370347023, 0.018869740888476372, -0.0494019091129303, 0.08167140185832977, 0.015352089889347553, -0.04382871091365814, 0.0433470793068409, 0.017528044059872627, 0.02781437523663044, -0.05724566429853439, -0.09226734936237335, 0.0002689034736249596, -0.027401546016335487, -0.056798432022333145, 0.004121842794120312, 0.09047842770814896, 0.04351909086108208, -0.030222546309232712, 0.09433149546384811, -0.003829421941190958, -0.0031779257114976645, 0.05745207890868187, 0.06663753092288971, 0.011172193102538586, 0.037223443388938904, -0.023428063839673996, 0.04289984703063965, -0.009383266791701317, 0.011929047293961048, -0.028296008706092834, -0.02028024010360241, -0.038255516439676285, 0.01121519599109888, -0.05101882293820381, -0.05101882293820381, 0.044929590076208115, 0.023101240396499634, -0.03247590735554695, -0.0023393661249428988, -0.04754417762160301, -0.01217846479266882, -0.04403512552380562, -0.009735891595482826, -0.001849131309427321, -0.03870274871587753, 0.023617276921868324, 0.05776170268654823, -0.06897690147161484, -0.0018964346963912249, 0.07224512845277786, -0.045067198574543, -0.0032359797041863203, -0.004812041763216257, 0.05872496962547302, -0.03484967350959778, -0.008815625682473183, -0.013021324761211872, -0.04193657636642456, -0.044929590076208115, -0.017700057476758957, 0.042418211698532104, 0.0264210756868124, 0.011120589450001717, -0.02365167997777462, 0.004992654547095299, 0.01636696234345436, 0.016263755038380623, -0.03543451800942421, -0.007951264269649982, 0.02962050400674343, 0.05762409046292305, 0.04902348294854164, 0.06811683624982834, 0.04190217703580856, 0.0006633221055381, 0.02053825929760933, -0.049161091446876526, -0.008290988393127918, 0.008604911155998707, 0.03777388110756874, 0.03522810339927673, 0.04792260378599167, 0.04056048020720482, 0.03302634507417679, 0.016607780009508133, 0.05917220190167427, 0.011232397519052029, 0.05036517605185509, -0.005401183385401964, -0.028382016345858574, -0.032699521631002426, 0.07678624987602234, 0.02762516215443611, 0.0021286511328071356, -0.0016362662427127361, -0.008695217780768871, 0.008290988393127918, 0.023668881505727768, 0.020073825493454933, -0.031048204749822617, 0.00897043664008379, -0.06099553033709526, -0.0012105359928682446, 0.03963161259889603, -0.0019469632534310222, 0.011533418670296669, -0.04056048020720482, -0.05528472736477852, 0.0097530921921134, -0.03316395357251167, -0.034264832735061646, -0.021690741181373596, 0.02808959409594536, 0.020865080878138542, 0.02390969730913639, 0.02764236368238926, 0.0424526147544384, 0.07465329766273499, 0.0238236915320158, -0.0013051426503807306, -0.013872785493731499, 0.021639136597514153, -0.027848778292536736, 0.01312453206628561, 0.037567466497421265, -0.06041068956255913, -0.011172193102538586, 0.011585022322833538, -0.043278273195028305, 0.03918438404798508, -0.022395990788936615, 0.023858094587922096, 0.0038702748715877533, -0.042246200144290924, 0.01959219202399254, -0.00940046738833189, -0.0441727377474308, -0.05703924968838692, 0.039115577936172485, -0.02970650978386402, 0.017485041171312332, -0.03182226046919823, 0.07582298666238785, -0.02347966656088829, 0.005900018848478794, 0.00883282721042633, -0.007611540611833334, -0.011980650946497917, -0.0035413014702498913, -0.01369217224419117, 0.028175601735711098, 0.012746104970574379, -0.026059851050376892, 0.05122523754835129, -0.02686830796301365, -0.0075685372576117516, 0.013459956273436546, -0.02721233293414116, -0.0195061843842268, -0.07575418055057526, -0.023703282698988914, -0.034608855843544006, 0.015799321234226227, -0.02538900263607502, -0.011937648057937622, -0.03650099039077759, -0.06956174224615097, -0.004446515813469887, 0.013889986090362072, -0.008123276755213737, -0.005379681941121817, 0.014191008172929287, 0.004233650863170624, -0.0005547393811866641, -0.013158934190869331, -0.06185559183359146, -0.04400072619318962, -0.005598997697234154, 0.0047905403189361095, 0.03822111338376999, -0.07520373910665512, 0.019557788968086243, 0.0346604622900486, -0.0034918480087071657, -0.02225838042795658, -0.02624906413257122, -0.012660099193453789, -0.029310882091522217, 0.008802725002169609, -0.010974379256367683, -0.01225587073713541, 0.06529583781957626, -0.05824333429336548, -0.010286330245435238, 0.02805519290268421, -0.012961120344698429, -0.04238380864262581, -0.014715644530951977, -0.010664757341146469, 0.005035657435655594, -0.03144383430480957, 0.01568751409649849, 0.009675687178969383, 0.034780871123075485, -0.012660099193453789, 0.006274145562201738, 0.025853436440229416, 0.014165205880999565, 0.04169576242566109, -0.027332741767168045, -0.0052721742540597916, 0.03075578436255455, 0.011567821726202965, -0.0186289232224226, -0.024305326864123344, -0.03767067566514015, 0.028399216011166573, -0.009839098900556564, -0.018852539360523224, -0.04548002779483795, -0.04661531001329422, -0.01794087328016758, -0.03161584585905075, -0.015988536179065704, 0.05359900742769241, 0.07307078689336777, 0.0009820822160691023, 0.003081168746575713, -0.05483749508857727, -0.0017018459038808942, 0.06436697393655777, -0.011068985797464848, -0.04142054170370102, 0.008841427974402905, -0.0229464303702116, -0.025681423023343086, 0.015592907555401325, -0.10004230588674545, -0.044069528579711914, -0.020693069323897362, -0.008471601642668247, 0.026111453771591187, 0.042487017810344696, -0.02243039198219776, 0.08256586641073227, 0.06089232489466667, 0.023806490004062653, -0.07286437600851059, 0.009658485651016235, 0.04699373617768288, -0.017037810757756233, -0.020417850464582443, 0.0028618532232940197, 0.03259631618857384, -0.017717259004712105, -0.03390360623598099, 0.008596310392022133, -0.07919442653656006, -0.03450565040111542, -0.008622112683951855, 0.019282570108771324, 0.008544706739485264, -0.01845690980553627, 0.07809354364871979, -0.02234438620507717, -0.027762770652770996, -0.01991901360452175, -0.04203978553414345, 0.06643112003803253, -0.03438524156808853, -0.004382011014968157, 0.02867443673312664, -0.03199427202343941, 0.004915249068289995, -0.0225163996219635, -0.006549364887177944, -0.04203978553414345, 0.024030106142163277, 0.025939442217350006, 0.014930659905076027, 0.029414089396595955, 0.0034402443561702967, 0.033473577350378036, -0.028210002928972244, -0.0181988924741745, 0.028622832149267197, 0.028364814817905426, -0.022155173122882843, -0.0017663504695519805, -0.05053718760609627, 0.0046744318678975105, 0.018938545137643814, -0.015283285640180111, -0.017037810757756233, 0.01575631834566593, -0.0026425377000123262, 0.032974742352962494, -0.014750047586858273, -0.044138334691524506, 0.0389779694378376, -0.03142663091421127, -0.033318765461444855, 0.03873715177178383, -0.030016131699085236, 0.03500448539853096, -0.04974593222141266, 0.06825444847345352, -0.05494070053100586, 0.05088121443986893, 0.02912166714668274, 0.06766960769891739, -0.041386138647794724, -0.043794311583042145, 0.04775059223175049, 0.04369110241532326, 0.036432188004255295, -0.00048163419705815613, -0.02738434448838234, -0.015653111040592194, 0.0007993192411959171, 0.042418211698532104, 0.09288659691810608, 0.009985309094190598, 0.02095108851790428, 0.039734821766614914, -0.029826918616890907, 0.0013900736812502146, -0.018938545137643814, 0.03849633410573006, -0.01940297707915306, 0.01897294819355011, 0.01326214149594307, 0.012187065556645393, 0.01967819780111313, 0.0684952661395073, -0.013236340135335922, -0.010355135425925255, 0.0057151056826114655, -0.015377892181277275, 0.022722814232110977, -0.013004123233258724, 0.023290453478693962, 0.028192801401019096, 0.04840423911809921, -0.010630355216562748, -0.05776170268654823, 0.00026608139160089195, -0.03412722423672676, -0.00033166105276905, -0.03182226046919823, -0.03084179013967514, -0.02096828818321228, 0.023101240396499634, -0.020847881212830544, 0.016427166759967804, 0.011972050182521343, 0.03431643545627594, 0.0024017204996198416, 0.02929368056356907, 0.08346032351255417, 0.04537682235240936, 0.009159650653600693, -0.03715463727712631, 0.0020060923416167498, 0.012651498429477215, -0.028812045231461525, -0.04100771248340607, 0.00005600475924438797, -0.013631967827677727, -0.007478231098502874, -0.056007176637649536, 0.02019423432648182, 0.007555636577308178, 0.009692888706922531, 0.05728006735444069, 0.006196740083396435, -0.021793948486447334, 0.02451174147427082, -0.024305326864123344, 0.04799140617251396, -0.010002510622143745, -0.014182407408952713, 0.011886044405400753, -0.041730161756277084, -0.05617918819189072, -0.058621764183044434, -0.0020017921924591064, 0.006695575546473265, -0.029844120144844055, -0.04117972403764725, -0.0017814014572650194, 0.0528765544295311, -0.002550081117078662, -0.04427594318985939, 0.0840795710682869, -0.05260133370757103, 0.03798029571771622, 0.039287589490413666, 0.02850242331624031, -0.08160259574651718, -0.010380936786532402, 0.010226125828921795, -0.030514966696500778, 0.06729117780923843, 0.005676403176039457, 0.03247590735554695, 0.08187781274318695, 0.015747718513011932, 0.03687942028045654, 0.020916685461997986, -0.029964527115225792, -0.021019892767071724, 0.04382871091365814, 0.00673857843503356, -0.03041175939142704, -0.060685910284519196, -0.03856514021754265, -0.008161979727447033, 0.03355958312749863, -0.018353702500462532, -0.014345819130539894, 0.008703818544745445, 0.019007349386811256, 0.033146753907203674, -0.06546784937381744, 0.027091924101114273, -0.011800037696957588, 0.023617276921868324, -0.022980831563472748, -0.021295111626386642, -0.08002008497714996, -0.10251928120851517, 0.001857731956988573, 0.03570973500609398, 0.003057517111301422, -0.07609820365905762, -0.06852966547012329, 0.009581080637872219, 0.02427092380821705, 0.01096577849239111, 0.009933705441653728, 0.023066837340593338, 0.052119702100753784, -0.031237417832016945, -0.049333103001117706, -0.008764022029936314, -0.039906833320856094, 0.0037713677156716585, -0.006987996399402618, -0.10905574262142181, 0.06718797236680984, -0.037567466497421265, 0.02545780874788761, 0.04045727476477623, -0.0034617458004504442, -0.014148004353046417, -0.044998396188020706, -0.009589681401848793, -0.011292601935565472, 0.009383266791701317, -0.01048414409160614, 0.018147287890315056, 0.0002406827115919441, 0.020383447408676147, 0.011189394630491734, -0.0027500453870743513, 0.0058914185501635075, -0.011679629795253277, -0.028640033677220345, -0.029482893645763397, 0.028794845566153526, -0.001439527259208262, -0.013184736482799053, -0.0005574270617216825, 0.02139831893146038, 0.007826555520296097, -0.006390254013240337, -0.023376459255814552, 0.00891883298754692, -0.04843863844871521, 0.024752557277679443, 0.007181509863585234, 0.03629457578063011, 0.014285614714026451, -0.06625910848379135, -0.06209640949964523, -0.035124894231557846, 0.044069528579711914, -0.04451676085591316, 0.03914998099207878, 0.04468877241015434, -0.032544709742069244, -0.02401290461421013, -0.033576782792806625, -0.07231393456459045, -0.0034187426790595055, -0.029001260176301003, -0.023617276921868324, -0.007658843882381916, -0.001336319837719202, 0.02392689883708954, 0.024907369166612625, -0.014457626268267632, 0.019351374357938766, 0.010690558701753616, 0.03216628357768059, -0.000559577252715826, -0.028382016345858574, -0.04757857695221901, 0.03870274871587753, 0.020159831270575523, -0.058793775737285614, 0.013950190506875515, 0.0520164929330349, 0.012539690360426903, -0.02028024010360241, 0.02678230218589306, -0.03271672502160072, 0.031564243137836456, 0.038324322551488876, 0.034178826957941055, -0.006054829806089401, -0.013537361286580563, 0.003119871485978365, -0.016246553510427475, -0.018611721694469452, -0.037636272609233856, -0.010423940606415272, -0.07637342065572739, -0.07774952054023743, 0.025320198386907578, -0.012101059779524803, 0.05270454287528992, 0.05442466586828232, -0.04272783547639847, 0.050743602216243744, 0.021553130820393562, -0.013416952453553677, -0.037292249500751495, 0.03414442390203476, 0.0745156928896904, 0.05208529904484749, -0.00033515505492687225, 0.024236520752310753, -0.04737216234207153, -0.05067479982972145, -0.0075685372576117516, 0.041386138647794724, 0.005990325473248959, 0.072795569896698, -0.021277910098433495, 0.03849633410573006, -0.037636272609233856, -0.03445404767990112, -0.03445404767990112, 0.06804803013801575, 0.030291350558400154, -0.07554776221513748, 0.026472680270671844, 0.014277013950049877, 0.0051130629144608974, -0.006123634986579418, -0.01931697130203247, -0.012961120344698429, 0.016504572704434395, 0.019815806299448013, -0.04627128690481186, 0.026472680270671844, -0.016599178314208984, 0.03139222785830498 ]
20,432
cron_descriptor.Exception
MissingFieldException
Exception for cases when something is missing
class MissingFieldException(Exception): """ Exception for cases when something is missing """ def __init__(self, message): """Initialize MissingFieldException Args: message: Message of exception """ super(MissingFieldException, self).__init__( "Field '{}' not found.".format(message))
(message)
[ -0.003984587732702494, -0.0030534814577549696, 0.004415909294039011, 0.0388873890042305, 0.0027043165173381567, -0.04604412615299225, 0.047906339168548584, 0.019334152340888977, 0.037116460502147675, -0.02565106935799122, 0.03671480715274811, 0.02134242095053196, 0.031255967915058136, -0.022237014025449753, -0.00924716517329216, 0.051119569689035416, 0.01668688841164112, 0.031328994780778885, 0.026162266731262207, -0.06116091459989548, -0.011657088063657284, 0.004979593679308891, 0.02073994092643261, 0.06506790965795517, 0.024738220497965813, 0.08412820845842361, 0.014012239873409271, -0.014194808900356293, 0.06430111825466156, -0.022419583052396774, -0.030452659353613853, -0.03631315380334854, -0.02455565147101879, 0.04640926793217659, -0.046883948147296906, -0.02782365120947361, -0.0007234332151710987, 0.0016488343244418502, -0.139556422829628, 0.018731670454144478, -0.00807415321469307, 0.02680126018822193, -0.03319120779633522, -0.04586155712604523, 0.024519136175513268, -0.049914609640836716, 0.03386671468615532, -0.02099553868174553, -0.0987337976694107, 0.021196365356445312, 0.010835523717105389, 0.04692046344280243, 0.01900552585721016, -0.023898398503661156, -0.019060296937823296, 0.04038446024060249, 0.04286741092801094, 0.05115608498454094, -0.04414540156722069, 0.04089565575122833, -0.04666486382484436, 0.06006549671292305, -0.04085914418101311, -0.011730115860700607, -0.04918432980775833, -0.033574603497982025, 0.025888411328196526, -0.030215317383408546, 0.001518753357231617, -0.005947214551270008, 0.05312784016132355, 0.028480904176831245, -0.022401325404644012, 0.051995906978845596, 0.07153088599443436, 0.0046829176135361195, -0.058020710945129395, 0.02393491379916668, 0.0658712163567543, -0.004386241547763348, 0.01746281050145626, -0.0020801557693630457, -0.05367555096745491, 0.01504375971853733, 0.05101002752780914, -0.025468500331044197, -0.0023243429604917765, 0.006846371106803417, 0.04071308672428131, 0.03932555392384529, -0.07036244124174118, -0.015180686488747597, -0.01935240812599659, 0.030489172786474228, -0.022675180807709694, -0.004975029733031988, 0.03187670186161995, -0.012131769210100174, -0.0162395928055048, 0.03958115354180336, 0.0483810231089592, -0.007969175465404987, 0.006102398969233036, -0.004653250332921743, 0.007928097620606422, -0.03508993238210678, -0.01339150220155716, -0.06211027875542641, 0.06232936307787895, -0.025012075901031494, 0.028152277693152428, -0.027239428833127022, -0.05126562714576721, 0.013939211145043373, -0.027239428833127022, -0.02161627635359764, 0.03631315380334854, 0.00021052590454928577, 0.040494002401828766, -0.02886429987847805, 0.05849539488554001, 0.0005382959498092532, -0.10983405262231827, 0.01790097914636135, 0.061927709728479385, -0.03613058105111122, -0.03627663850784302, -0.020155716687440872, 0.078066885471344, 0.0005360138020478189, 0.01902378350496292, -0.02585189789533615, -0.02869998663663864, -0.07153088599443436, -0.054917026311159134, 0.03041614405810833, 0.06912096589803696, -0.0009944353951141238, -0.04487568140029907, 0.011885300278663635, 0.028919070959091187, 0.022583896294236183, 0.03333726152777672, -0.0005240326281636953, 0.005924392957240343, 0.02765933983027935, -0.005901571828871965, -0.013072004541754723, 0.002252456033602357, 0.0054223258048295975, 0.016905972734093666, -0.008941360749304295, -0.017353268340229988, -0.03295386582612991, 0.03613058105111122, -0.027458513155579567, -0.010616439394652843, -0.051557738333940506, 0.006549695041030645, -0.005819415207952261, 0.06937655806541443, -0.0470300056040287, 0.032606981694698334, -0.0018953037215396762, -0.006321482826024294, 0.06897490471601486, 0.0032132300548255444, -0.0752187967300415, -0.005705309100449085, 0.01274337898939848, -0.04184501990675926, -0.013984854333102703, -0.07667935639619827, -0.008567092008888721, -0.03722600266337395, 0.03277129679918289, -0.01269773580133915, 0.03384845703840256, -0.02006443217396736, -0.022492611780762672, 0.04980506747961044, -0.02437308058142662, 0.005230627488344908, -0.0006772202323190868, 0.02618052251636982, 0.0017572352662682533, 0.006677493918687105, -0.006189119536429644, 0.017170699313282967, 0.025961438193917274, 0.03552810102701187, -0.03441442549228668, -0.022419583052396774, 0.019480207934975624, 0.025121618062257767, 0.008813561871647835, -0.006919398903846741, -0.03432314097881317, 0.04677440598607063, 0.058714479207992554, -0.016796430572867393, 0.0798925831913948, 0.003160741413012147, -0.019242867827415466, -0.0049293870106339455, 0.047322116792201996, 0.024227024987339973, -0.049293871968984604, -0.0845663771033287, -0.023277660831809044, 0.02946678176522255, -0.011739244684576988, 0.013647099956870079, 0.02678300440311432, 0.00873596966266632, 0.002615313744172454, 0.04984158277511597, -0.013026362285017967, 0.012040484696626663, 0.043159522116184235, 0.07660632580518723, 0.017389781773090363, 0.013199803419411182, -0.025212902575731277, 0.01918809674680233, -0.013145032338798046, 0.012624708004295826, -0.0470300056040287, -0.044035859405994415, -0.06824462860822678, -0.026983831077814102, 0.0354185588657856, -0.0681350827217102, 0.006079577375203371, 0.01918809674680233, 0.0017309908289462328, 0.02203618548810482, -0.033921487629413605, 0.005673359613865614, -0.06116091459989548, -0.0002838391228578985, 0.004824409261345863, -0.055355191230773926, 0.05374857783317566, 0.04849056527018547, -0.07996561378240585, -0.023989684879779816, 0.054588399827480316, -0.067076176404953, 0.0025605428963899612, -0.00436798483133316, 0.019042039290070534, -0.03494387865066528, 0.004034794867038727, 0.012542551383376122, -0.06357083469629288, -0.015481927432119846, -0.017234597355127335, 0.03830316290259361, 0.008133488707244396, -0.023222889751195908, -0.04797936975955963, -0.02083122543990612, 0.0324791856110096, 0.012469523586332798, -0.03147504851222038, 0.004030230455100536, 0.020027916878461838, 0.016385648399591446, 0.047139547765254974, 0.12195669114589691, 0.051375169306993484, 0.03950812667608261, 0.027294199913740158, -0.026728233322501183, -0.048344507813453674, -0.017526710405945778, 0.05805722624063492, 0.015564083121716976, 0.05710786208510399, 0.03308166563510895, 0.006102398969233036, 0.017143312841653824, 0.06324221193790436, 0.0049430797807872295, 0.0375363714993, -0.01884121261537075, -0.027969708666205406, -0.06787949055433273, 0.018613001331686974, 0.02048434317111969, 0.016632117331027985, 0.022145727649331093, 0.0031812803354114294, -0.01867689937353134, 0.016057021915912628, -0.012734250165522099, 0.03899693116545677, 0.027202913537621498, -0.017818821594119072, 0.03143853694200516, 0.04217364639043808, -0.010981579311192036, 0.009384092874825, -0.04520430788397789, -0.0898243859410286, 0.008804433047771454, 0.011483645997941494, -0.03620361164212227, -0.06152605637907982, -0.013008104637265205, 0.06484882533550262, 0.01927938126027584, 0.03976372256875038, 0.025377215817570686, 0.06583470106124878, 0.011675344780087471, 0.010872037149965763, -0.005289962515234947, 0.03143853694200516, 0.02877301536500454, -0.005308219697326422, 0.004066744353622198, -0.020009661093354225, -0.057180892676115036, 0.0048883091658353806, -0.02048434317111969, 0.024427851662039757, -0.0375363714993, 0.014861189760267735, 0.024336567148566246, -0.021652789786458015, -0.012369110248982906, -0.02402619831264019, -0.06798902899026871, -0.039362069219350815, 0.012624708004295826, -0.06221982091665268, 0.0259249247610569, -0.013008104637265205, 0.015180686488747597, -0.039362069219350815, -0.03131073713302612, 0.011940071359276772, 0.0035213169176131487, -0.05141168087720871, 0.0330086387693882, -0.0470300056040287, 0.005093700252473354, -0.01900552585721016, 0.012533423490822315, -0.010835523717105389, -0.05444234237074852, -0.03273478150367737, 0.029265955090522766, -0.02643612027168274, -0.03932555392384529, -0.039033442735672, 0.00630779005587101, -0.006125220097601414, -0.0009202663786709309, -0.018256990239024162, -0.015865324065089226, -0.018822956830263138, -0.06473928689956665, -0.01711592823266983, 0.008398215286433697, 0.013592328876256943, -0.05057186260819435, -0.010315199382603168, 0.005892443470656872, -0.038412705063819885, -0.023022063076496124, -0.0020002813544124365, -0.00520324194803834, 0.0013829669915139675, 0.021798845380544662, 0.017937492579221725, -0.059408243745565414, -0.006796164438128471, 0.0009368117898702621, -0.01634913496673107, -0.07616815716028214, -0.008608170785009861, -0.02694731578230858, -0.0007702167495153844, 0.009187829680740833, 0.030489172786474228, 0.03587498515844345, 0.019662776961922646, -0.03896041586995125, -0.024318309500813484, -0.008393650874495506, -0.012433010153472424, -0.027951451018452644, -0.060028981417417526, -0.0018622128991410136, -0.04513127729296684, -0.001025814563035965, -0.006508616730570793, 0.012588194571435452, -0.015618854202330112, -0.0589335635304451, 0.029886692762374878, 0.0411512553691864, 0.03844922035932541, 0.009493634104728699, -0.015664497390389442, 0.025358958169817924, -0.007896147668361664, 0.01790097914636135, -0.018713414669036865, -0.004016537684947252, -0.06780645996332169, 0.0011125352466478944, -0.02340546064078808, 0.01617569290101528, -0.03163936361670494, -0.015052887611091137, -0.027020344510674477, -0.02895558625459671, -0.02324114739894867, 0.03034311719238758, 0.03848573565483093, -0.012770764529705048, 0.013984854333102703, -0.06725875288248062, -0.008973310701549053, 0.07390429079532623, 0.010780752636492252, -0.04166245087981224, 0.024336567148566246, -0.018859470263123512, -0.032278358936309814, -0.009877031669020653, -0.07967349886894226, -0.05020672082901001, -0.02247435413300991, -0.0316576212644577, 0.046117156744003296, 0.039033442735672, -0.033738914877176285, 0.08639207482337952, 0.035655900835990906, 0.009548405185341835, -0.010972450487315655, 0.02601620927453041, 0.06926701962947845, 0.0069011421874165535, -0.004568811506032944, 0.0283348485827446, 0.019388923421502113, 0.00799199752509594, 0.00030038453405722976, -0.026764746755361557, -0.05444234237074852, -0.060795776546001434, -0.026983831077814102, 0.031328994780778885, 0.006841806694865227, -0.03191321715712547, 0.08843685686588287, -0.04582504555583, -0.016531703993678093, -0.004475244786590338, 0.029412010684609413, 0.04436448588967323, -0.014340865425765514, -0.01093593705445528, 0.0007205805741250515, -0.0018576487200334668, 0.04016537591814995, -0.01564623974263668, -0.054661426693201065, -0.023295918479561806, -0.012423881329596043, 0.030105775222182274, 0.0026586740277707577, 0.011739244684576988, -0.033227719366550446, 0.0437072329223156, -0.007768349256366491, -0.00924716517329216, -0.026399606838822365, 0.022967291995882988, -0.030963854864239693, -0.043524663895368576, -0.034706536680459976, 0.02585189789533615, -0.0017583762528374791, -0.011273691430687904, -0.002818422857671976, -0.0005725277587771416, -0.002339176833629608, 0.017070285975933075, -0.020447827875614166, -0.03238790109753609, 0.055866386741399765, 0.015062016434967518, -0.011602316983044147, 0.018439559265971184, -0.04279438406229019, 0.02669171802699566, -0.03182193264365196, 0.022437840700149536, -0.09048163890838623, 0.04816193878650665, 0.05436931550502777, 0.11837831884622574, -0.057253919541835785, -0.0064857956022024155, 0.03640443831682205, 0.009621433913707733, 0.01529935747385025, 0.008923104032874107, -0.01193094253540039, -0.06638241559267044, 0.011876171454787254, 0.038668304681777954, 0.10063252598047256, 0.04914781451225281, 0.034104056656360626, 0.04801588132977486, -0.018822956830263138, 0.00010832955740625039, -0.004203672055155039, 0.008069589734077454, -0.03518122062087059, 0.03388497233390808, 0.036167096346616745, 0.007156739942729473, -0.03269826993346214, 0.013647099956870079, 0.03182193264365196, 0.00475138146430254, 0.07350263744592667, -0.03655049204826355, 0.05298178270459175, -0.015600597485899925, 0.005709873512387276, 0.03671480715274811, 0.07821294665336609, 0.04319603741168976, -0.0018040187424048781, 0.002332330448552966, -0.023734087124466896, -0.04363420605659485, 0.01027868501842022, 0.013939211145043373, -0.018512587994337082, 0.004660096485167742, 0.00859904196113348, -0.019863605499267578, -0.051813337951898575, 0.03742682933807373, 0.022930778563022614, -0.019827090203762054, 0.05886053293943405, 0.07185950875282288, 0.0033136436250060797, 0.012387366965413094, -0.01935240812599659, 0.019754063338041306, -0.03076302818953991, -0.010096115060150623, -0.008411907590925694, 0.01067121047526598, -0.0035395738668739796, -0.018037905916571617, -0.009758360683918, -0.019461950287222862, 0.023953169584274292, 0.006015677936375141, 0.03560112789273262, 0.005901571828871965, 0.00933844968676567, -0.026162266731262207, 0.0425022728741169, 0.004997850861400366, -0.050608374178409576, 0.005034364759922028, -0.059846412390470505, -0.02963109314441681, -0.04268484190106392, -0.04622669890522957, -0.007740963716059923, -0.013920954428613186, -0.025705840438604355, -0.010570797137916088, 0.0435611754655838, -0.01542715635150671, -0.07609513401985168, 0.04684743657708168, -0.025121618062257767, 0.0253954716026783, 0.05918915942311287, 0.01893249899148941, -0.07843202352523804, 0.000408785417675972, -0.019224610179662704, -0.039362069219350815, 0.024592164903879166, -0.02272995188832283, -0.0031584592070430517, 0.052068933844566345, -0.002142914105206728, -0.0008033075137063861, 0.05046232044696808, -0.0161665640771389, -0.003986869938671589, 0.024993818253278732, -0.009169572964310646, -0.04301346838474274, 0.011976584792137146, -0.025523271411657333, -0.04553293064236641, 0.016915101557970047, -0.01737152598798275, 0.032369643449783325, 0.012405624613165855, -0.0015803707065060735, 0.0008483795099891722, -0.040055833756923676, 0.04925735667347908, -0.04231970012187958, 0.0387413315474987, 0.01849433034658432, -0.047760285437107086, -0.09347578883171082, -0.030379630625247955, -0.005782901309430599, 0.03611232712864876, -0.00475594587624073, -0.06802554428577423, -0.03189495950937271, 0.02661869116127491, 0.027093373239040375, -0.0031516128219664097, 0.039033442735672, 0.056121986359357834, 0.020539112389087677, -0.006216505076736212, -0.07850505411624908, 0.017234597355127335, -0.0425022728741169, 0.015381514094769955, -0.02997797727584839, -0.12188366055488586, 0.06462974101305008, -0.024592164903879166, -0.008498628623783588, 0.03359286114573479, -0.019589750096201897, -0.042903926223516464, -0.00924716517329216, -0.01754496619105339, -0.05393114686012268, -0.0007553829345852137, 0.011784886941313744, 0.005550124682486057, 0.013601456768810749, -0.003929817117750645, 0.05944475904107094, -0.013756641186773777, 0.012387366965413094, 0.00933844968676567, 0.045240819454193115, -0.0825946182012558, 0.02488427609205246, 0.025705840438604355, 0.014240452088415623, 0.010735109448432922, 0.03034311719238758, -0.017508452758193016, 0.014240452088415623, 0.03739031404256821, 0.005874186288565397, -0.023387202993035316, 0.014824675396084785, 0.0002200823073508218, 0.061306972056627274, 0.01106373593211174, -0.07357566803693771, -0.0247199647128582, -0.02504858933389187, 0.04578853026032448, -0.013811412267386913, 0.02669171802699566, 0.03775545582175255, -0.04096868634223938, -0.02325940504670143, -0.0035760877653956413, -0.03552810102701187, 0.04692046344280243, -0.033501576632261276, -0.03990978002548218, 0.01196745689958334, -0.0048654875718057156, 0.03299038112163544, 0.03311817720532417, 0.019735805690288544, 0.03704342991113663, -0.008092410862445831, 0.03675131872296333, -0.0437072329223156, 0.00807871762663126, -0.016896843910217285, 0.022328298538923264, 0.0033227719832211733, -0.04556944593787193, 0.014441278763115406, 0.04586155712604523, -0.008124359883368015, -0.059773385524749756, 0.021305907517671585, -0.0006116091390140355, 0.048855703324079514, 0.04743165895342827, -0.054661426693201065, -0.0120952557772398, 0.048709649592638016, -0.0032839758787304163, -0.03174890577793121, -0.034779563546180725, 0.0016134614124894142, -0.03129247948527336, -0.0553186796605587, -0.08704932779073715, -0.0003591492131818086, 0.012213925831019878, 0.06539653986692429, 0.04166245087981224, -0.0199731457978487, 0.056231528520584106, 0.04451053962111473, -0.04622669890522957, -0.01935240812599659, 0.03103688172996044, 0.05177682265639305, 0.04816193878650665, 0.01192181371152401, -0.0071247899904847145, 0.005308219697326422, 0.0004361708997748792, 0.009877031669020653, 0.056998319923877716, 0.017937492579221725, 0.040932171046733856, -0.03058045729994774, 0.0577285997569561, -0.009858774021267891, -0.04816193878650665, -0.023204633966088295, 0.048709649592638016, -0.06189119443297386, -0.08865594118833542, 0.039106473326683044, 0.003943509887903929, 0.01115502044558525, -0.01231433916836977, -0.03576544299721718, -0.04199107736349106, -0.002921118400990963, 0.030397888273000717, -0.0005006408900953829, 0.06181816756725311, 0.015947479754686356, 0.037901509553194046 ]
20,433
cron_descriptor.Exception
__init__
Initialize MissingFieldException Args: message: Message of exception
def __init__(self, message): """Initialize MissingFieldException Args: message: Message of exception """ super(MissingFieldException, self).__init__( "Field '{}' not found.".format(message))
(self, message)
[ -0.009337682276964188, 0.0016463221982121468, 0.025220634415745735, 0.03920047730207443, -0.018533075228333473, -0.04432286322116852, 0.06719573587179184, 0.02833319455385208, 0.03605234622955322, -0.035678837448358536, 0.023975608870387077, 0.028101975098252296, 0.02957821823656559, -0.028066404163837433, -0.01218345109373331, 0.05157957598567009, 0.01239688415080309, 0.026554588228464127, 0.013215042650699615, -0.051188282668590546, -0.01890658214688301, -0.008559541776776314, 0.0012372428318485618, 0.05858728289604187, 0.033722370862960815, 0.07363428920507431, -0.0038440122734755278, -0.0030992210377007723, 0.0681561827659607, -0.028760060667991638, -0.02303294837474823, -0.019137801602482796, -0.03391801938414574, 0.06900991499423981, -0.03406030684709549, -0.028511054813861847, -0.009230965748429298, -0.015322690829634666, -0.14484967291355133, 0.020329467952251434, 0.018675364553928375, 0.018355214968323708, -0.03318879008293152, -0.031659189611673355, 0.024153470993041992, -0.05189972370862961, 0.026003221049904823, -0.030965531244874, -0.0803929939866066, 0.0329931415617466, -0.005184636451303959, 0.03845346346497536, 0.023459814488887787, -0.02040061168372631, -0.031054461374878883, 0.04919624328613281, 0.035002969205379486, 0.05353604257106781, -0.043824855238199234, 0.04087236896157265, -0.05890743434429169, 0.04965868219733238, -0.04108579829335213, 0.000036162673495709896, -0.050263408571481705, -0.030271874740719795, 0.03091217391192913, -0.023050734773278236, 0.010351487435400486, -0.0061495304107666016, 0.06587956845760345, 0.022783944383263588, -0.03333107754588127, 0.046706195920705795, 0.07704921811819077, 0.012832642532885075, -0.05435420200228691, 0.0328686386346817, 0.05780469626188278, -0.0002823537215590477, 0.02354874461889267, 0.005371390376240015, -0.06481240689754486, 0.020009318366646767, 0.03482510522007942, -0.04144152253866196, -0.00037684215931221843, 0.020436184480786324, 0.04524773731827736, 0.026963667944073677, -0.06541713327169418, -0.015598375350236893, -0.02632337063550949, 0.040836796164512634, -0.025273991748690605, -0.009551114402711391, 0.03390023112297058, -0.016567716374993324, 0.00027790720923803747, 0.047631070017814636, 0.06555941700935364, -0.018977725878357887, -0.001405098824761808, -0.017866097390651703, 0.01558948215097189, -0.035109683871269226, -0.02091640792787075, -0.05890743434429169, 0.07260269671678543, -0.019671382382512093, 0.026554588228464127, -0.01453121192753315, -0.046137042343616486, 0.0316414013504982, -0.04040993005037308, -0.022374864667654037, 0.04506987705826759, -0.0008865239797160029, 0.06370966881513596, -0.012414670549333096, 0.049445249140262604, -0.010235877707600594, -0.1089218333363533, -0.004860041197389364, 0.061184048652648926, -0.02096976526081562, -0.03637249395251274, -0.035269759595394135, 0.09213179349899292, -0.014193275943398476, 0.03806217014789581, -0.03838231787085533, -0.024189041927456856, -0.07534175366163254, -0.058409422636032104, 0.0137841971591115, 0.06659100949764252, -0.009230965748429298, -0.030823243781924248, 0.025060558691620827, 0.02998729795217514, 0.03507411107420921, 0.036247991025447845, -0.006265139672905207, 0.01051156222820282, 0.044749729335308075, 0.0006391865317709744, 0.015242653898894787, 0.002581201959401369, 0.01435335073620081, 0.0037839843425899744, -0.0020342806819826365, -0.005184636451303959, -0.024811554700136185, 0.031090034171938896, -0.029151353985071182, -0.006483019329607487, -0.04805793613195419, 0.01082281768321991, -0.010929534211754799, 0.07039722800254822, -0.04610146954655647, 0.02474041096866131, -0.005993902217596769, 0.000518574845045805, 0.060045741498470306, 0.011712120845913887, -0.06210892274975777, -0.008990854024887085, 0.029969511553645134, -0.0505124107003212, -0.03909376263618469, -0.07733379304409027, -0.005993902217596769, -0.024669265374541283, 0.04055221751332283, -0.00973786786198616, 0.03071652725338936, -0.029347000643610954, 0.005527018569409847, 0.03519861400127411, 0.00757241528481245, 0.020578471943736076, 0.001796392141841352, 0.03149911388754845, 0.0151448305696249, 0.0060339211486279964, -0.002874671947211027, 0.010627171024680138, 0.0220013577491045, 0.046706195920705795, -0.015945203602313995, -0.01756373420357704, 0.0190132986754179, 0.01761709339916706, 0.019351234659552574, -0.005971669685095549, -0.03724401071667671, 0.027248244732618332, 0.06797832250595093, -0.007892564870417118, 0.08110443502664566, -0.01566951908171177, -0.0181328896433115, -0.0039262729696929455, 0.045318882912397385, 0.020738545805215836, -0.027835184708237648, -0.07761836796998978, -0.03420259431004524, 0.02803083136677742, 0.002972495276480913, 0.020311681553721428, 0.001043263589963317, 0.00001144630277849501, 0.006709791254252195, 0.039485055953264236, -0.012752605602145195, 0.005157957784831524, 0.04297112300992012, 0.08359448611736298, 0.00891526322811842, 0.007207801099866629, -0.05271788313984871, 0.0049445247277617455, 0.003010290674865246, 0.001033258973620832, -0.058765143156051636, -0.03788430988788605, -0.04684848338365555, -0.044394008815288544, 0.037955451756715775, -0.06772931665182114, 0.006740916986018419, 0.013277294114232063, 0.0211831983178854, 0.030022870749235153, -0.028920134529471397, -0.02262386865913868, -0.054994501173496246, -0.005122385453432798, 0.005664860364049673, -0.06022360175848007, 0.05687982216477394, 0.06481240689754486, -0.07569747418165207, -0.023068521171808243, 0.05552808195352554, -0.07011265307664871, 0.013366224244236946, -0.019208945333957672, 0.0038306727074086666, -0.03941391035914421, 0.009213179349899292, 0.013953164219856262, -0.07818752527236938, 0.0042997803539037704, -0.018177354708313942, 0.0380265973508358, 0.019386805593967438, -0.032121624797582626, -0.05246887728571892, -0.01808842457830906, 0.026270011439919472, 0.004731092136353254, -0.02442026138305664, -0.019564665853977203, 0.013126112520694733, 0.010547134093940258, 0.03607013076543808, 0.10877954959869385, 0.029293641448020935, 0.042793262749910355, 0.04375370964407921, -0.02040061168372631, -0.05282460153102875, -0.03745744377374649, 0.03916490450501442, 0.022748371586203575, 0.05069027468562126, 0.04033878445625305, 0.009204286150634289, 0.029951727017760277, 0.06797832250595093, 0.0017308060778304935, 0.024758195504546165, -0.02669687755405903, -0.031410183757543564, -0.07733379304409027, -0.0018108433578163385, -0.0013083870289847255, 0.02643008530139923, 0.03571441024541855, 0.023370884358882904, -0.019618025049567223, 0.008030406199395657, 0.005593716166913509, 0.0597611628472805, 0.010458203963935375, -0.02153891883790493, 0.022748371586203575, 0.02324638143181801, -0.011347507126629353, 0.02319302223622799, -0.034753963351249695, -0.07683578133583069, -0.00984458439052105, 0.02833319455385208, -0.028155334293842316, -0.05086813494563103, -0.011667655780911446, 0.08352334052324295, 0.026554588228464127, 0.04514102265238762, 0.029044637456536293, 0.060721609741449356, 0.012530279345810413, 0.005291352979838848, -0.006776489317417145, 0.02123655565083027, 0.03564326465129852, -0.023815535008907318, -0.0022154762409627438, -0.01627424545586109, -0.05570594221353531, 0.008821886032819748, -0.014264420606195927, 0.011374185793101788, -0.032335057854652405, 0.005162403918802738, 0.03493182361125946, -0.009364360943436623, -0.010307022370398045, -0.04115694388747215, -0.06189548969268799, -0.03550097718834877, 0.00403076596558094, -0.055563654750585556, 0.00924875121563673, -0.011160752736032009, -0.0009437728440389037, -0.02762175165116787, -0.05659524351358414, 0.001829740940593183, 0.008724062703549862, -0.04560345783829689, 0.014264420606195927, -0.05997459590435028, 0.0032037142664194107, -0.019404591992497444, 0.00028930138796567917, -0.026198867708444595, -0.047951217740774155, -0.02385110780596733, 0.02998729795217514, -0.008959728293120861, -0.036141276359558105, -0.019546881318092346, 0.012325740419328213, 0.005100152920931578, -0.009720082394778728, -0.010173626244068146, -0.01855086162686348, -0.031161177903413773, -0.04357584938406944, -0.004775557201355696, -0.018586432561278343, 0.037030577659606934, -0.05385619029402733, -0.0021710109431296587, -0.0069454568438231945, -0.044287290424108505, -0.02829762175679207, 0.0033704584930092096, -0.010733887553215027, 0.010013552382588387, 0.002038727281615138, 0.023353097960352898, -0.06008131429553032, -0.008443932048976421, -0.0006358516402542591, -0.014798002317547798, -0.08025070279836655, -0.009951300919055939, -0.02571864426136017, 0.0009715635678730905, 0.014958077110350132, 0.03799102455377579, 0.05022783577442169, 0.013481833972036839, -0.043718136847019196, -0.02884899079799652, 0.008701830171048641, -0.016932329162955284, -0.002465592697262764, -0.06310494244098663, 0.00860845297574997, -0.03523418679833412, 0.0014151034411042929, -0.012939359061419964, 0.013873127289116383, -0.021040908992290497, -0.03848903626203537, 0.031036674976348877, 0.03452274203300476, 0.035945627838373184, 0.00043297940283082426, 0.013837555423378944, 0.026038791984319687, 0.0009676728514023125, 0.031054461374878883, -0.009666724130511284, -0.006887651979923248, -0.07989498227834702, -0.025629714131355286, -0.01597188226878643, 0.009008639492094517, -0.01653214357793331, -0.01839078590273857, -0.03384687379002571, -0.03240620344877243, -0.024864912033081055, 0.023228595033288002, 0.02762175165116787, -0.016772255301475525, 0.018995512276887894, -0.060045741498470306, -0.0059538837522268295, 0.0817447379231453, 0.010787245817482471, -0.05620395019650459, 0.058871861547231674, -0.00120167073328048, -0.007848098874092102, -0.0006219563074409962, -0.0681561827659607, -0.033313293009996414, -0.014833574183285236, -0.04873380437493324, 0.05339375510811806, 0.04286440461874008, -0.046706195920705795, 0.09632930159568787, 0.025647498667240143, -0.0022710575722157955, -0.007781401742249727, 0.002213252941146493, 0.05769798159599304, 0.0014395592734217644, -0.00032126071164384484, 0.03813331574201584, 0.016016347333788872, 0.001980922417715192, -0.0003876805421896279, -0.05189972370862961, -0.03363344073295593, -0.048413656651973724, -0.024722624570131302, 0.028528841212391853, 0.001876429421827197, -0.04343356192111969, 0.0893571674823761, -0.060828328132629395, -0.004253091756254435, -0.006358516868203878, 0.04161938279867172, 0.026607947424054146, -0.02009824849665165, -0.01906665787100792, -0.007261159364134073, -0.0060828328132629395, 0.03457610309123993, -0.01895994134247303, -0.060116883367300034, -0.016505464911460876, -0.01999153196811676, 0.021254342049360275, 0.00036350262234918773, 0.0025233973283320665, -0.028884561732411385, 0.037386298179626465, -0.013766410760581493, 0.005366943776607513, -0.023370884358882904, 0.030022870749235153, -0.036265779286623, -0.044038284569978714, -0.031925980001688004, 0.020311681553721428, 0.00034710607724264264, -0.013437368907034397, 0.01711018942296505, -0.013384010642766953, -0.003123676870018244, 0.021912427619099617, -0.021005338057875633, -0.027034811675548553, 0.04254425689578056, 0.02333531156182289, -0.019706955179572105, 0.007305624429136515, -0.03558990731835365, 0.009026425890624523, -0.029507074505090714, 0.004090793896466494, -0.07039722800254822, 0.05097484961152077, 0.04994325712323189, 0.1132616326212883, -0.04869823530316353, 0.004086347296833992, 0.051757436245679855, -0.01632760278880596, 0.01638985425233841, 0.011329720728099346, -0.022285934537649155, -0.06986364722251892, -0.0012805963633581996, 0.022855088114738464, 0.08167359232902527, 0.044287290424108505, 0.03215719759464264, 0.031036674976348877, -0.028528841212391853, 0.0028324301820248365, -0.010467096231877804, 0.0035349796526134014, -0.03587448596954346, 0.02931142784655094, 0.02643008530139923, 0.005389176309108734, -0.054389774799346924, 0.004695519804954529, 0.048306941986083984, -0.004004086833447218, 0.07726264744997025, -0.0516151487827301, 0.04755992442369461, -0.042793262749910355, 0.008257178589701653, 0.03756415843963623, 0.0719624012708664, 0.030592024326324463, 0.0043175662867724895, 0.008199374191462994, -0.03247734531760216, -0.05915643647313118, 0.021307701244950294, 0.00961336586624384, -0.023726604878902435, 0.0002943037252407521, -0.00012151492410339415, -0.034700606018304825, -0.044749729335308075, 0.03580334037542343, 0.027372747659683228, -0.034914035350084305, 0.0385601781308651, 0.07292284816503525, 0.011587618850171566, 0.002647899789735675, -0.014068773947656155, 0.039236050099134445, -0.03329550474882126, -0.012334632687270641, -0.00369060761295259, 0.0021632295101881027, 0.0018575317226350307, -0.04158381000161171, 0.00006169539847178385, -0.004450961481779814, 0.0004568794392980635, -0.007519057020545006, 0.06705345213413239, 0.0036794913467019796, 0.009720082394778728, -0.01874650828540325, 0.03457610309123993, 0.006794275250285864, -0.03781316429376602, -0.005829381290823221, -0.04090793803334236, -0.00401964969933033, -0.034700606018304825, -0.059441015124320984, -0.012379097752273083, -0.0028991277795284986, -0.019244518131017685, -0.017955027520656586, 0.04001863673329353, -0.018106209114193916, -0.07690692692995071, 0.01999153196811676, -0.0013928709086030722, 0.006941010244190693, 0.04695520177483559, 0.03962734341621399, -0.07057508826255798, 0.016096385195851326, -0.020436184480786324, -0.037528589367866516, 0.03397137671709061, -0.025629714131355286, 0.023833321407437325, 0.04008978232741356, -0.006785382051020861, 0.011507580988109112, 0.05385619029402733, -0.006874312646687031, 0.028226478025317192, 0.026412300765514374, -0.007114424370229244, -0.03133903816342354, 0.02504277415573597, -0.01461124885827303, -0.03249513357877731, 0.011294148862361908, -0.004615482874214649, 0.04023206979036331, 0.009497756138443947, -0.018728721886873245, -0.0054825530387461185, -0.026270011439919472, 0.04972982406616211, -0.048662662506103516, 0.05374947562813759, 0.013837555423378944, -0.057840269058942795, -0.0806775689125061, -0.0039907475002110004, 0.0018775410717353225, 0.04261540248990059, -0.006585288792848587, -0.06040146201848984, -0.020596258342266083, 0.02715931460261345, 0.02360210195183754, -0.004940078128129244, 0.03345558047294617, 0.06538155674934387, 0.003368235193192959, -0.01450453232973814, -0.06787160784006119, 0.011863302439451218, -0.05559922382235527, 0.020116034895181656, -0.02726603113114834, -0.11283476650714874, 0.05300246179103851, -0.0028613326139748096, -0.004259761422872543, 0.03050309419631958, -0.02550521120429039, -0.019902601838111877, 0.0017919456586241722, -0.021716780960559845, -0.05552808195352554, 0.01674557663500309, 0.015411621890962124, -0.016203101724386215, 0.00793702993541956, 0.0023455368354916573, 0.05147286131978035, -0.011187432333827019, 0.008541755378246307, 0.009417719207704067, 0.057484548538923264, -0.07281613349914551, 0.013517405837774277, 0.0340958796441555, 0.01461124885827303, 0.005695986095815897, 0.015829594805836678, -0.011427544057369232, 0.007856992073357105, 0.034451600164175034, 0.005687092896550894, -0.017537055537104607, 0.025327350944280624, 0.007999280467629433, 0.05855171009898186, 0.013890913687646389, -0.07327856868505478, -0.019386805593967438, -0.005896078888326883, 0.0478089302778244, -0.010920641012489796, 0.037742022424936295, 0.028920134529471397, -0.038987044245004654, -0.026092151179909706, -0.021361058577895164, -0.046350475400686264, 0.03571441024541855, -0.03132125362753868, -0.031872618943452835, -0.0027635092847049236, -0.028635557740926743, 0.02395782433450222, 0.022855088114738464, 0.02281951531767845, 0.03827560320496559, -0.023726604878902435, 0.04396714270114899, -0.0456390306353569, 0.0061806561425328255, -0.005940544418990612, 0.017599307000637054, -0.022534938529133797, -0.03605234622955322, 0.025932077318429947, 0.03633692115545273, -0.0070432801730930805, -0.07534175366163254, 0.01890658214688301, 0.018942154943943024, 0.04524773731827736, 0.03288642689585686, -0.074986033141613, -0.01963581144809723, 0.05705768242478371, -0.016772255301475525, -0.02884899079799652, -0.023210808634757996, 0.01326840091496706, -0.028066404163837433, -0.06399424374103546, -0.0820293128490448, 0.003937389235943556, -0.0012394661316648126, 0.06349623948335648, 0.03713729605078697, -0.029293641448020935, 0.05236216261982918, 0.0537850484251976, -0.04574574902653694, -0.020845262333750725, 0.05022783577442169, 0.04827136918902397, 0.04912509769201279, 0.0018075084080919623, -0.008839672431349754, -0.0057582370936870575, 0.021467775106430054, 0.0024744856636971235, 0.06659100949764252, 0.018150674179196358, 0.02479376830160618, -0.03852460905909538, 0.060828328132629395, -0.014975863508880138, -0.044287290424108505, -0.0196891687810421, 0.04649276286363602, -0.07174897193908691, -0.09006860852241516, 0.025789787992835045, 0.007132210303097963, 0.0002014827186940238, 0.006674219388514757, -0.03375794366002083, -0.035572122782468796, 0.010502669028937817, 0.03580334037542343, 0.0179906003177166, 0.07399000972509384, 0.023922251537442207, 0.029951727017760277 ]
20,434
cron_descriptor.Options
Options
Options for parsing and describing a Cron Expression
class Options(object): """ Options for parsing and describing a Cron Expression """ def __init__(self): self.casing_type = CasingTypeEnum.Sentence self.verbose = False self.day_of_week_start_index_zero = True self.use_24hour_time_format = False self.locale_location = None code, encoding = locale.getlocale() self.locale_code = code self.use_24hour_time_format = code in ["ru_RU", "uk_UA", "de_DE", "it_IT", "tr_TR", "cs_CZ", "ta_IN"]
()
[ 0.05897699296474457, -0.000972421548794955, 0.0463152639567852, -0.0551636666059494, -0.015345864929258823, -0.08944658935070038, -0.00540529889985919, -0.01713220588862896, 0.05371978506445885, -0.034671660512685776, -0.009477783925831318, 0.013059720396995544, -0.0014496659860014915, 0.012134155258536339, -0.03389418497681618, 0.029469985514879227, -0.038984790444374084, -0.007668304722756147, -0.033523958176374435, -0.012846839614212513, 0.03831838443875313, -0.048721734434366226, -0.038207318633794785, 0.04409391060471535, 0.03839242830872536, 0.09129771590232849, 0.01007014513015747, -0.03887372463941574, -0.034301433712244034, -0.06404908746480942, 0.014225931838154793, 0.03170984983444214, -0.05927317216992378, 0.02560112439095974, -0.03021043725311756, -0.06116132438182831, -0.008857655338943005, 0.012809817679226398, -0.05953232944011688, 0.07663676887750626, -0.004965655505657196, 0.007376751862466335, 0.011106777936220169, 0.0056274342350661755, -0.03696706146001816, -0.018622364848852158, -0.022491225972771645, 0.04165041819214821, 0.0033875673543661833, -0.08492983132600784, 0.05764417722821236, -0.02856293134391308, -0.008098692633211613, -0.02996978908777237, -0.08929849416017532, 0.014540623873472214, 0.03661534562706947, 0.15697579085826874, -0.011717651039361954, 0.0006623573717661202, -0.046944648027420044, 0.034356966614723206, 0.007941346615552902, 0.01765052229166031, 0.011477003805339336, 0.0024388632737100124, -0.010671762749552727, -0.009139953181147575, 0.05268315225839615, 0.012235967442393303, 0.05183163285255432, -0.01007014513015747, -0.03972524404525757, -0.033264800906181335, 0.02252824790775776, -0.028211217373609543, -0.1298012137413025, 0.030451083555817604, -0.01899258978664875, 0.026767335832118988, -0.060605987906455994, 0.04490840807557106, 0.005914359353482723, 0.0069139692932367325, 0.05497855320572853, -0.07004674524068832, 0.07137955725193024, -0.010079401545226574, 0.04279811680316925, 0.050980113446712494, -0.051165223121643066, -0.05716288462281227, -0.006603904999792576, 0.017465408891439438, -0.048721734434366226, -0.008617009036242962, 0.02156566083431244, -0.013679848052561283, -0.045130543410778046, -0.024675559252500534, -0.009195487014949322, -0.012559914961457253, -0.005035072565078735, -0.04376070573925972, -0.0007242544670589268, -0.023601902648806572, -0.02502727322280407, -0.02682286873459816, 0.008487429469823837, 0.009311182424426079, -0.053164444863796234, 0.0069741313345730305, -0.015873437747359276, -0.027415230870246887, 0.04561183601617813, 0.0012830642517656088, -0.06834370642900467, 0.008066297508776188, -0.011949041858315468, -0.013300366699695587, -0.025823259726166725, 0.0387626551091671, -0.04498245194554329, 0.06419717520475388, 0.010477393865585327, 0.02123245783150196, -0.020677119493484497, -0.004287679214030504, 0.06871393322944641, -0.008168109692633152, 0.055015575140714645, 0.0074045187793672085, 0.037318773567676544, -0.057718224823474884, 0.019529419019818306, -0.02932189404964447, 0.021065855398774147, 0.030136391520500183, -0.040576763451099396, 0.0881878212094307, -0.0011621623998507857, 0.006529860198497772, -0.03861456364393234, -0.04335345700383186, -0.06641853600740433, -0.022491225972771645, -0.00808018073439598, -0.029784677550196648, -0.05190567672252655, 0.029877232387661934, 0.030136391520500183, 0.011597327888011932, -0.023712972179055214, 0.0019564128015190363, 0.060865145176649094, -0.056940749287605286, -0.02797056920826435, -0.02265782654285431, -0.0021727634593844414, 0.010986454784870148, 0.02528643235564232, 0.016067806631326675, -0.021343525499105453, -0.019103659316897392, 0.025582611560821533, 0.03957715258002281, 0.04998050257563591, -0.05094308778643608, 0.03741133213043213, 0.04431604593992233, -0.005446949042379856, -0.009260276332497597, -0.0013756207190454006, 0.07841385155916214, -0.0037994435988366604, 0.08426342159509659, 0.03946608677506447, 0.05794036015868187, 0.0007809453527443111, -0.023824039846658707, 0.02476811595261097, 0.02611944079399109, -0.08492983132600784, 0.044056884944438934, 0.038503497838974, -0.007011153735220432, 0.013827938586473465, 0.01273577194660902, -0.006761251017451286, -0.010634739883244038, 0.01854831911623478, -0.03407929837703705, -0.012004575692117214, 0.00563206197693944, -0.046352285891771317, -0.01726178452372551, -0.04675953462719917, -0.06023576110601425, -0.027952058240771294, -0.011597327888011932, -0.04894386976957321, 0.05453428253531456, 0.013457712717354298, -0.04690762609243393, 0.031672827899456024, 0.0016590750310570002, 0.008473546244204044, 0.004174297675490379, -0.05146140605211258, 0.026137951761484146, -0.02175077423453331, -0.038503497838974, 0.0015028859488666058, 0.03650427609682083, -0.005368276033550501, -0.04849959909915924, 0.04479733854532242, 0.07974666357040405, -0.06301245838403702, 0.05460832640528679, 0.05279421806335449, -0.013550269417464733, 0.02349083498120308, -0.02708202786743641, 0.0491660051047802, 0.0037300263065844774, 0.0387626551091671, 0.016567610204219818, -0.013013442046940327, -0.04235384613275528, -0.03415334224700928, -0.0567186139523983, -0.033449914306402206, 0.007631282322108746, 0.00795985758304596, -0.037244729697704315, -0.00997758936136961, 0.0377260223031044, 0.024268310517072678, -0.0016139537328854203, 0.03965119644999504, 0.05172056332230568, -0.007131477352231741, 0.02656371146440506, 0.013059720396995544, -0.023564880713820457, -0.016836024820804596, 0.024657048285007477, 0.0002458531525917351, -0.02143608219921589, 0.01074580755084753, -0.045204587280750275, -0.01289311796426773, 0.028581442311406136, -0.03106195665895939, 0.014448067173361778, -0.007219405844807625, 0.016521332785487175, 0.02302805334329605, -0.02797056920826435, 0.039873331785202026, 0.0288776233792305, 0.011402959004044533, 0.02636008709669113, 0.02034391462802887, 0.011347425170242786, 0.030247459188103676, -0.027304163202643394, 0.0013339703436940908, -0.008385617285966873, 0.05268315225839615, 0.04672251269221306, -0.06808455288410187, 0.04042867198586464, -0.05120224878191948, 0.01904812455177307, -0.022620804607868195, -0.03085833229124546, -0.02560112439095974, -0.01899258978664875, 0.026730312034487724, 0.035837870091199875, 0.023379767313599586, -0.010310792364180088, 0.04131721332669258, -0.003306580474600196, -0.02591581642627716, 0.04509351775050163, -0.007585003972053528, 0.0400584451854229, -0.0291367806494236, 0.01764126680791378, 0.0668628066778183, -0.02456449158489704, 0.04609312862157822, 0.02591581642627716, 0.04935111850500107, -0.03998440131545067, 0.029673609882593155, -0.028285261243581772, -0.017039649188518524, -0.010144190862774849, 0.010875387117266655, 0.00991279911249876, -0.0897427648305893, 0.07500777393579483, 0.013929750770330429, 0.01277279481291771, 0.08389319479465485, 0.014077841304242611, 0.029729142785072327, 0.007501703221350908, 0.00043675091001205146, -0.010597717948257923, -0.01899258978664875, 0.05031370371580124, -0.00364209758117795, -0.03446803614497185, -0.016965603455901146, 0.022380158305168152, -0.05346062406897545, -0.007427657954394817, 0.03946608677506447, -0.055348776280879974, 0.04279811680316925, -0.03600447252392769, -0.007224033586680889, -0.009792475961148739, 0.050387751311063766, -0.01273577194660902, -0.01751168631017208, -0.012365546077489853, -0.0015375945949926972, 0.018955567851662636, 0.004084054846316576, -0.046426333487033844, 0.009487039409577847, -0.0017412188462913036, -0.01975155435502529, -0.013318877667188644, 0.05197972059249878, 0.010125678963959217, -0.08811376988887787, -0.0011511712800711393, 0.014327744022011757, -0.04935111850500107, -0.010403349064290524, -0.008584613911807537, 0.032302211970090866, -0.037818580865859985, -0.005007305648177862, -0.008811376988887787, -0.006580765824764967, 0.015438421629369259, 0.04690762609243393, -0.05856974422931671, 0.0059791491366922855, -0.08041307330131531, 0.03546764329075813, -0.03098791092634201, 0.02200993150472641, 0.012384057976305485, 0.004338585305958986, -0.012208200059831142, -0.07030590623617172, -0.02367594838142395, 0.05205376818776131, 0.010283024981617928, 0.06849180161952972, -0.027100538834929466, 0.020566049963235855, 0.043649639934301376, 0.04801830276846886, -0.06975056976079941, 0.004010009579360485, -0.010449627414345741, 0.009986844845116138, 0.030432572588324547, -0.09455570578575134, -0.004248342476785183, 0.025638146325945854, 0.014929360710084438, -0.006937108468264341, 0.0647895410656929, -0.03259839490056038, -0.0374668650329113, 0.01045888289809227, 0.0585327222943306, 0.04831448569893837, 0.028081636875867844, -0.05227590352296829, -0.02310209907591343, 0.02097329869866371, 0.03182091936469078, -0.021991420537233353, 0.01565130241215229, -0.036097027361392975, 0.03054364025592804, -0.03728175163269043, 0.028063125908374786, 0.03343140333890915, -0.013781660236418247, 0.0184094849973917, 0.020880741998553276, 0.00975545309484005, 0.013263343833386898, 0.03618958592414856, 0.03587489202618599, 0.005576528143137693, 0.02958105318248272, 0.00994056649506092, -0.05819951742887497, 0.00975545309484005, -0.047314874827861786, -0.10810597240924835, -0.025638146325945854, -0.011662117205560207, 0.015142240561544895, 0.0029062735848128796, -0.00587270874530077, -0.033264800906181335, -0.02206546626985073, 0.006631671916693449, 0.05135033652186394, 0.08159779757261276, 0.016151105985045433, 0.0546453483402729, -0.02591581642627716, 0.007867300882935524, -0.010171957314014435, -0.05712586268782616, 0.03561573475599289, -0.06986163556575775, -0.010866131633520126, 0.0572369284927845, -0.03998440131545067, -0.0040007540956139565, -0.021972909569740295, -0.028192704543471336, 0.00277438061311841, -0.03280201926827431, -0.006682578008621931, 0.044945430010557175, 0.001241413876414299, 0.0034824376925826073, -0.03465314954519272, -0.02169523946940899, -0.03254285827279091, -0.006525231990963221, -0.03132111579179764, -0.009736942127346992, 0.05079500004649162, -0.007816394791007042, -0.028248239308595657, 0.03028448112308979, -0.03285755217075348, -0.009139953181147575, 0.034616123884916306, -0.04209468886256218, -0.02374999411404133, 0.014966383576393127, 0.023916596546769142, -0.006710344925522804, -0.022176533937454224, -0.02078818716108799, 0.058421652764081955, 0.037689000368118286, 0.024342356249690056, -0.04294620826840401, -0.001484374632127583, -0.07641463726758957, 0.021139901131391525, -0.021898863837122917, 0.02341679111123085, -0.017308061942458153, 0.04150232672691345, -0.019473884254693985, 0.009885032661259174, -0.0754520446062088, -0.05712586268782616, -0.019085146486759186, -0.007765489164739847, 0.002559186890721321, 0.0053127421997487545, 0.018770454451441765, -0.05897699296474457, 0.0658261701464653, -0.07263832539319992, -0.021454593166708946, 0.0012865351745858788, -0.011051244102418423, 0.04265002906322479, 0.00596989318728447, -0.03180240839719772, 0.09203816950321198, 0.03143218159675598, -0.019492395222187042, 0.051683541387319565, 0.017539454624056816, -0.026063906028866768, 0.016521332785487175, 0.0009886189363896847, -0.010477393865585327, -0.021787796169519424, 0.05083202198147774, -0.014142630621790886, -0.04420497640967369, 0.04420497640967369, -0.017872657626867294, -0.023842550814151764, -0.02797056920826435, -0.025193875655531883, 0.027952058240771294, -0.03135813772678375, 0.04316834360361099, 0.009653640910983086, -0.02521238662302494, 0.0001556105853524059, -0.011921275407075882, 0.0567186139523983, -0.04638931155204773, 0.031783897429704666, 0.02097329869866371, -0.03415334224700928, -0.023657437413930893, 0.027859501540660858, -0.004625510424375534, 0.0019517848268151283, 0.03713366016745567, -0.011782440356910229, 0.06767730414867401, -0.05346062406897545, 0.03335735574364662, 0.04268705099821091, 0.021639706566929817, 0.04313132166862488, -0.03465314954519272, 0.014096352271735668, -0.0033412890043109655, 0.030191924422979355, 0.000051412233005976304, 0.023009542375802994, 0.004315446130931377, -0.03470868244767189, -0.006654811091721058, 0.0024620024487376213, 0.04857364296913147, -0.006677950266748667, -0.013559524901211262, -0.018307672813534737, 0.04801830276846886, 0.009959077462553978, 0.03182091936469078, 0.03415334224700928, -0.024471934884786606, 0.022731872275471687, 0.03361651673913002, 0.03041406162083149, 0.06404908746480942, -0.03407929837703705, -0.026341576129198074, -0.028118660673499107, -0.05757013335824013, 0.016382498666644096, -0.07511883974075317, 0.005544133484363556, -0.009922055527567863, 0.015318098478019238, -0.03842945396900177, 0.06715898215770721, 0.01479052659124136, -0.028785066679120064, 0.04568587988615036, -0.0021716065239161253, -0.058606766164302826, -0.01803000271320343, 0.0005663299816660583, 0.04128019139170647, -0.006751995533704758, 0.03718919679522514, -0.023342745378613472, -0.008959467522799969, -0.049758367240428925, -0.054904505610466, -0.017465408891439438, 0.012235967442393303, 0.045796949416399, 0.0018164210487157106, 0.00994056649506092, 0.005951381754130125, 0.017215505242347717, 0.0031214675400406122, 0.03905883803963661, 0.01405007392168045, -0.0357823371887207, -0.010986454784870148, 0.046870604157447815, -0.06282734125852585, 0.007566492538899183, 0.013781660236418247, -0.06282734125852585, 0.01126412395387888, -0.02476811595261097, 0.031154513359069824, 0.02539750002324581, -0.0034685542341321707, -0.008191249333322048, -0.0013258716790005565, -0.04413093253970146, -0.012633959762752056, 0.004384863656014204, -0.046796560287475586, 0.02804461494088173, 0.04105805605649948, 0.011356680653989315, -0.014364765956997871, 0.025952838361263275, 0.005085978657007217, -0.004785170312970877, -0.07448945939540863, -0.03568977862596512, 0.08374510705471039, -0.017669033259153366, 0.017150716856122017, -0.04339047893881798, 0.017872657626867294, -0.03239477053284645, 0.005932870786637068, -0.07893217355012894, -0.0574960894882679, 0.043020255863666534, 0.015392143279314041, -0.02278740704059601, -0.0463152639567852, -0.07774744927883148, 0.02097329869866371, -0.01719699427485466, 0.0025730703491717577, 0.006631671916693449, 0.021250968798995018, -0.0048823547549545765, -0.028248239308595657, 0.04268705099821091, 0.014605413191020489, -0.043797727674245834, 0.04176148399710655, -0.07641463726758957, -0.058680810034275055, 0.006502092815935612, -0.00927415955811739, 0.005863453261554241, 0.04768510162830353, -0.022472715005278587, 0.037059616297483444, -0.07386007159948349, 0.04875875636935234, -0.021991420537233353, 0.0046671605668962, 0.075192891061306, -0.045130543410778046, -0.04935111850500107, 0.029821699485182762, -0.00656225485727191, -0.05727395415306091, 0.00959810707718134, -0.035708293318748474, 0.007122221402823925, 0.0184094849973917, 0.01603078283369541, 0.02373148314654827, 0.038540519773960114, -0.0033621143084019423, 0.03983630985021591, 0.0704910159111023, -0.013772404752671719, 0.03317224234342575, -0.01494787260890007, -0.010856875218451023, 0.06960247457027435, -0.0022907729726284742, 0.03839242830872536, 0.015327353961765766, 0.005372903775423765, -0.017085926607251167, -0.023953618481755257, 0.0124210799112916, 0.015308842994272709, 0.03787411376833916, 0.0021010322961956263, -0.0465744212269783, -0.029562540352344513, 0.04439008980989456, -0.05364573746919632, 0.025804748758673668, 0.07463754713535309, -0.046167176216840744, -0.045019473880529404, -0.031783897429704666, 0.037059616297483444, -0.0015642045764252543, 0.04531565308570862, -0.009283415041863918, 0.011708395555615425, 0.0005035651265643537, 0.008404129184782505, -0.03946608677506447, -0.034875284880399704, -0.010273769497871399, 0.0678994357585907, 0.03868861123919487, 0.041983623057603836, 0.07745126634836197, 0.02843335270881653, -0.028785066679120064, 0.0011129917111247778, 0.00018062976596411318, -0.006006916053593159, 0.011893508024513721, 0.0198996439576149, -0.002059381688013673, 0.039355017244815826, -0.0023948990274220705, -0.006779762450605631, 0.03148771449923515, 0.037818580865859985, 0.03304266557097435, -0.06571510434150696, -0.026656268164515495, 0.013994540087878704, -0.04194659739732742, -0.06056896224617958, 0.011671372689306736, -0.01815958134829998, -0.012337779626250267, -0.02528643235564232, -0.024601513519883156, -0.010153446346521378, -0.03035852685570717, 0.016521332785487175, 0.050387751311063766, -0.01681751385331154, 0.027563320472836494, 0.01899258978664875, 0.016178874298930168, -0.022306112572550774, 0.013948262669146061, 0.0073304735124111176, 0.013337389566004276, 0.006270701996982098, 0.02521238662302494, -0.0392809733748436, -0.042242780327796936, -0.01636398583650589, 0.051424384117126465, 0.004630138166248798, -0.02149161510169506, -0.014929360710084438, 0.025490056723356247, 0.009764709509909153, 0.03080279752612114, -0.02765587717294693, -0.03791113570332527, 0.005757013335824013, 0.075192891061306, 0.022731872275471687, -0.06145750731229782, -0.0017435328336432576, 0.006298468913882971 ]
20,435
cron_descriptor.Options
__init__
null
def __init__(self): self.casing_type = CasingTypeEnum.Sentence self.verbose = False self.day_of_week_start_index_zero = True self.use_24hour_time_format = False self.locale_location = None code, encoding = locale.getlocale() self.locale_code = code self.use_24hour_time_format = code in ["ru_RU", "uk_UA", "de_DE", "it_IT", "tr_TR", "cs_CZ", "ta_IN"]
(self)
[ 0.02810797281563282, -0.01658969186246395, 0.027920834720134735, 0.010030541568994522, -0.04438888654112816, -0.1006048321723938, -0.002185993595048785, 0.022980419918894768, 0.045960839837789536, -0.020079797133803368, -0.03531274572014809, 0.020978054031729698, -0.0103112468495965, -0.004044497851282358, -0.028089258819818497, 0.055504824966192245, -0.04000988230109215, 0.005347438622266054, -0.05969669297337532, -0.03396536037325859, 0.01157442107796669, -0.05213635787367821, -0.034564197063446045, 0.024758219718933105, 0.0370718315243721, 0.08226540684700012, -0.04356548562645912, -0.043528057634830475, -0.010910085402429104, -0.09753578901290894, 0.017441164702177048, 0.02764013037085533, -0.05258548632264137, 0.005768497008830309, 0.010685521177947521, -0.03265539929270744, -0.019106684252619743, -0.082489974796772, -0.04955386742949486, 0.06733188033103943, 0.05584166944026947, 0.01186448335647583, -0.0033567692153155804, 0.018086787313222885, -0.041731543838977814, 0.029062369838356972, 0.0023930140305310488, 0.034882329404354095, 0.01816164329648018, -0.025244776159524918, 0.012220043689012527, -0.0037988803815096617, 0.003660866990685463, -0.029492786154150963, -0.08548416942358017, -0.012949878349900246, 0.02778983861207962, 0.10981196910142899, -0.053072042763233185, 0.014596682973206043, -0.03851278871297836, 0.019443530589342117, 0.014877389185130596, 0.04910473898053169, -0.011929981410503387, 0.02419680915772915, 0.041469551622867584, -0.02515120804309845, 0.03948589786887169, 0.02863195538520813, 0.07814839482307434, -0.010610666126012802, -0.04798191785812378, 0.017787368968129158, 0.022437721490859985, 0.005179015453904867, -0.13616085052490234, 0.03748353570699692, -0.024178095161914825, 0.03286125138401985, -0.0017661050660535693, 0.02735942415893078, -0.012379109859466553, 0.014128840528428555, 0.05303461477160454, -0.046484820544719696, 0.04356548562645912, -0.008781402371823788, 0.017965149134397507, 0.0476824976503849, -0.0477573536336422, -0.03136415407061577, 0.002949746325612068, 0.04229295253753662, -0.016112493351101875, -0.01685168407857418, 0.02531963214278221, -0.020379215478897095, -0.02326112426817417, -0.009843404404819012, 0.021820170804858208, -0.019761662930250168, -0.025394486263394356, -0.05827445164322853, -0.03143901005387306, -0.02593718282878399, -0.017787368968129158, -0.008257418870925903, -0.012575604021549225, 0.01012410968542099, -0.03718411549925804, -0.01716981641948223, 0.005160301923751831, 0.015494940802454948, -0.00908082164824009, -0.028407391160726547, -0.014315977692604065, 0.02361668460071087, -0.012397823855280876, 0.00747612165287137, -0.0325431190431118, 0.005941598676145077, -0.06149320676922798, 0.005698320455849171, -0.007644544821232557, -0.009071464650332928, 0.004023444838821888, -0.0014725340297445655, 0.09079885482788086, 0.01020832173526287, 0.04745793342590332, 0.01234168279916048, 0.04435146227478981, -0.06531079858541489, 0.01885404996573925, -0.04771992564201355, 0.01987394504249096, 0.03495718538761139, -0.063102588057518, 0.13466376066207886, 0.01157442107796669, -0.014334691688418388, 0.01700139418244362, -0.03944847360253334, -0.043864905834198, 0.03186942636966705, -0.02378510870039463, 0.0015883250162005424, -0.05606623366475105, 0.024926643818616867, 0.013333508744835854, 0.00908082164824009, -0.007565011736005545, 0.023560544475913048, 0.04382747784256935, -0.0967123806476593, -0.020098509266972542, -0.015476226806640625, 0.008533445186913013, 0.04334092140197754, 0.02241900935769081, -0.00438836170360446, -0.020528925582766533, -0.017048178240656853, 0.007321733981370926, 0.0677061527967453, -0.02415938302874565, -0.033403947949409485, 0.04914216697216034, 0.009132283739745617, -0.03501332551240921, -0.012191973626613617, -0.01862012781202793, 0.06980209052562714, 0.03233726695179939, 0.02909979782998562, 0.03684726729989052, 0.05703934654593468, 0.03379693627357483, -0.016627119854092598, 0.04203096404671669, 0.05468142032623291, -0.0966375321149826, 0.06111893430352211, 0.02210087515413761, 0.03523788973689079, 0.02720971405506134, 0.025955896824598312, -0.006283123511821032, -0.008912397548556328, 0.014699609018862247, 0.019967515021562576, -0.01816164329648018, 0.004800063092261553, -0.02973606437444687, 0.028407391160726547, 0.012566247023642063, -0.06115635856986046, -0.07369453459978104, -0.03332909196615219, -0.018835335969924927, 0.06299030035734177, 0.027976976707577705, -0.018573343753814697, 0.02346697635948658, 0.026405025273561478, -0.014437616802752018, 0.027134859934449196, -0.07455536723136902, -0.006287802010774612, -0.017965149134397507, -0.07264657318592072, 0.0312705859541893, 0.03418992459774017, 0.010853944346308708, -0.07193545252084732, -0.011742844246327877, 0.05277262255549431, -0.02425295114517212, 0.060669805854558945, 0.06437511742115021, -0.0058714221231639385, -0.021015482023358345, -0.08735553175210953, 0.049067310988903046, -0.0010935816681012511, 0.02152075059711933, -0.0146621810272336, -0.052922334522008896, -0.04191868007183075, -0.07882209122180939, -0.049965567886829376, -0.02778983861207962, -0.0040117488242685795, 0.0005593640962615609, -0.035294029861688614, 0.00819659885019064, 0.01606570929288864, -0.018582699820399284, -0.04214324429631233, 0.05067668855190277, 0.015466869808733463, -0.017076248303055763, 0.017993219196796417, -0.002411727560684085, -0.01603763736784458, -0.008060924708843231, 0.04989071562886238, -0.0059509556740522385, -0.028781665489077568, -0.026086892932653427, -0.04873046651482582, -0.02404710091650486, 0.008112387731671333, -0.0017871579620987177, -0.05662764608860016, -0.010339316911995411, 0.02941793017089367, 0.01299666240811348, -0.009525271132588387, -0.00962819717824459, 0.060033537447452545, -0.024795647710561752, 0.04824391007423401, 0.01186448335647583, 0.028557101264595985, 0.01955581270158291, 0.010283175855875015, 0.024720793589949608, -0.03632328659296036, 0.06594706326723099, 0.008336951956152916, -0.05984640121459961, 0.025375772267580032, -0.03680983930826187, -0.007625831291079521, -0.02094062604010105, -0.015934713184833527, -0.026330171152949333, 0.021221332252025604, 0.04626025632023811, 0.03469519317150116, 0.03158871829509735, 0.031457722187042236, 0.05726391077041626, -0.03259925916790962, -0.028201540932059288, -0.022868137806653976, -0.03795137628912926, -0.02778983861207962, -0.059883829206228256, -0.002514652907848358, 0.07481735944747925, 0.018816621974110603, 0.035144321620464325, 0.007672615349292755, 0.045848555862903595, -0.02477693371474743, 0.027509134262800217, -0.056814782321453094, -0.01934996247291565, 0.03716539964079857, 0.05120067298412323, 0.03246826305985451, -0.08406192809343338, 0.043640341609716415, -0.018947618082165718, 0.034713905304670334, 0.055392540991306305, -0.018442347645759583, -0.023186270147562027, 0.02036050148308277, 0.03448934108018875, -0.016898468136787415, -0.011752201244235039, 0.06299030035734177, -0.010685521177947521, -0.02283070981502533, 0.00204914971254766, 0.04517486318945885, -0.028650669381022453, -0.03832564875483513, 0.015373301692306995, -0.036416854709386826, 0.045848555862903595, -0.04749536141753197, 0.03538760170340538, -0.03374079614877701, 0.031457722187042236, -0.0037731491029262543, -0.010629379190504551, -0.008940468542277813, -0.014643467962741852, -0.007335769012570381, -0.04218067228794098, -0.05269777029752731, -0.01955581270158291, -0.020061083137989044, -0.024402659386396408, -0.0296799223870039, 0.04397718608379364, 0.0017216600244864821, -0.08226540684700012, 0.005595395341515541, 0.032674115151166916, -0.0167674720287323, -0.0534837432205677, -0.02024821937084198, 0.02236286737024784, -0.002837464213371277, -0.04049643874168396, -0.036435566842556, 0.01885404996573925, 0.03394664451479912, 0.02984834648668766, -0.06433768570423126, 0.018339423462748528, -0.05097610875964165, 0.020004941150546074, 0.004435146227478981, 0.015672720968723297, 0.012968591414391994, -0.001281888224184513, -0.022493863478302956, -0.03469519317150116, -0.03031618893146515, 0.0445011705160141, 0.0045427498407661915, 0.02367282658815384, 0.011415354907512665, -0.011480852961540222, 0.008636371232569218, 0.017413094639778137, -0.016673903912305832, 0.0006111191469244659, -0.03259925916790962, 0.02732199616730213, 0.05071411654353142, -0.07264657318592072, 0.0027251821011304855, 0.011630562134087086, 0.038737352937459946, -0.012510105967521667, 0.08293910324573517, -0.0015754593769088387, -0.041843824088573456, 0.029773490503430367, 0.025188636034727097, 0.02938050404191017, 0.017254028469324112, -0.019443530589342117, -0.011031724512577057, 0.05187436565756798, 0.0006754474597983062, 0.006591899786144495, -0.0006678450736217201, -0.043640341609716415, 0.00991825945675373, 0.0306343212723732, 0.03802623227238655, 0.042367808520793915, -0.04087071493268013, 0.024795647710561752, 0.01752537675201893, -0.01859205774962902, 0.018835335969924927, 0.03907419741153717, 0.007345126010477543, -0.019050542265176773, 0.052286069840192795, 0.043790049850940704, -0.028388677164912224, -0.008729939348995686, -0.08069346100091934, -0.06692017614841461, -0.005618787370622158, 0.00486556114628911, 0.01955581270158291, -0.021502036601305008, 0.009862118400633335, -0.05078897252678871, 0.007237521931529045, 0.04233038052916527, 0.032299838960170746, 0.08144200593233109, 0.002218742622062564, 0.011518280021846294, -0.02758398838341236, 0.031626146286726, -0.0470462329685688, -0.015541724860668182, 0.013258653692901134, -0.07055063545703888, -0.019742948934435844, 0.04072100296616554, -0.017909007146954536, 0.007986069656908512, -0.02320498414337635, -0.039036769419908524, -0.02503892593085766, -0.008491340093314648, -0.02372896671295166, 0.04049643874168396, 0.008252739906311035, 0.02198859304189682, -0.04345320165157318, -0.042629800736904144, 0.0004903573426418006, -0.0025614371988922358, -0.038101084530353546, 0.01972423680126667, 0.056552790105342865, -0.03660399094223976, -0.020528925582766533, 0.028444819152355194, -0.017366310581564903, 0.023953530937433243, -0.0036655452568084, -0.004226956050843, -0.012351039797067642, -0.012145188637077808, 0.05295976251363754, -0.02509506791830063, -0.012977948412299156, 0.022980419918894768, 0.02114647626876831, -0.007798932958394289, -0.008510053157806396, -0.02715357393026352, -0.006952138151973486, -0.048169054090976715, 0.04139469563961029, -0.0027251821011304855, 0.01595342718064785, -0.03851278871297836, 0.005562646314501762, -0.04861818253993988, -0.01051709707826376, -0.06785586476325989, 0.00770068634301424, -0.003090099198743701, 0.004039819352328777, -0.03606129437685013, 0.01099429652094841, 0.018152285367250443, -0.04771992564201355, 0.034564197063446045, -0.05831187963485718, -0.030653035268187523, -0.001837451127357781, -0.0035509238950908184, 0.06609677523374557, 0.008336951956152916, -0.007588403765112162, 0.05494341254234314, 0.04203096404671669, -0.006105343345552683, 0.03106473572552204, 0.003148579504340887, -0.028388677164912224, -0.008912397548556328, -0.007050385233014822, -0.03329166769981384, -0.023803822696208954, 0.021221332252025604, 0.005333403591066599, -0.03037232905626297, 0.019518384709954262, 0.013445790857076645, -0.03244955092668533, 0.014699609018862247, -0.01408205647021532, 0.009843404404819012, -0.048693038523197174, 0.026236603036522865, 0.00469947699457407, -0.044426314532756805, -0.03763324394822121, -0.02662958949804306, 0.05793760344386101, -0.009071464650332928, -0.0049544512294232845, 0.028987515717744827, -0.018610771745443344, -0.0027298603672534227, 0.04075843095779419, -0.025282204151153564, -0.007733434904366732, 0.033198095858097076, 0.007405945565551519, 0.03143901005387306, -0.07481735944747925, 0.03448934108018875, 0.05636565387248993, 0.024720793589949608, 0.047794781625270844, -0.08219055831432343, -0.03439577296376228, -0.024009672924876213, 0.043902333825826645, 0.0011883197585120797, -0.033254239708185196, -0.015513654798269272, -0.06362656503915787, 0.01244460791349411, 0.018180355429649353, -0.005801246035844088, -0.03259925916790962, -0.057076774537563324, 0.016402555629611015, 0.05052698031067848, -0.03563087806105614, 0.027546560391783714, 0.0023859962821006775, 0.024028386920690536, 0.012379109859466553, 0.0048094200901687145, 0.03649170696735382, 0.04573627561330795, 0.008290167897939682, -0.03153257817029953, 0.01998622715473175, -0.01569143496453762, 0.04401461407542229, -0.07047577947378159, 0.011396640911698341, -0.020397929474711418, 0.02172660082578659, -0.05685221031308174, 0.05767561122775078, 0.045586563646793365, -0.025394486263394356, 0.04524971917271614, 0.03718411549925804, -0.07844781875610352, 0.04045901075005531, -0.0036281179636716843, 0.019443530589342117, -0.0030082266312092543, 0.018152285367250443, -0.009104213677346706, 0.00922585278749466, -0.03748353570699692, -0.03523788973689079, 0.0031017952132970095, 0.008496018126606941, 0.033198095858097076, 0.008725261315703392, -0.003055010922253132, -0.01569143496453762, -0.012875023297965527, -0.007644544821232557, 0.06164291501045227, 0.012285541743040085, -0.04420175030827522, -0.019069256260991096, 0.06332714855670929, -0.05752590298652649, 0.02909979782998562, -0.014203695580363274, -0.03433963283896446, 0.04794448986649513, -0.037670671939849854, 0.059247564524412155, 0.08525960147380829, 0.005487791728228331, -0.000033735825127223507, -0.007607117760926485, -0.0264237392693758, 0.013904276303946972, -0.012903093360364437, -0.02657344937324524, 0.025824900716543198, 0.003752096090465784, 0.03832564875483513, -0.014540541917085648, 0.024234237149357796, -0.02610560692846775, 0.015279733575880527, -0.058499015867710114, -0.03843793272972107, 0.042105816304683685, -0.02741556614637375, 0.04846847429871559, -0.03518174961209297, 0.016224775463342667, -0.007452729623764753, -0.003733382560312748, -0.03505075350403786, -0.05644050985574722, 0.046110548079013824, 0.04510000720620155, -0.040047310292720795, -0.05595395341515541, -0.051762085407972336, 0.06426283717155457, -0.03877478092908859, 0.008084316737949848, 0.06044524163007736, 0.07010150700807571, -0.016000211238861084, 0.00457549886777997, 0.09049943834543228, -0.0012947538634762168, -0.041244987398386, 0.013137014582753181, -0.06733188033103943, -0.07171088457107544, -0.016692617908120155, 0.019275108352303505, -0.00962819717824459, 0.03089631348848343, -0.008411807008087635, 0.03718411549925804, -0.06564764678478241, 0.039261333644390106, -0.02346697635948658, -0.01415691152215004, 0.07571561634540558, -0.041581831872463226, -0.027434278279542923, 0.02241900935769081, -0.014381475746631622, -0.05958440899848938, 0.07433079928159714, -0.01856398768723011, 0.021558178588747978, -0.0003377237298991531, 0.027247142046689987, -0.014755750074982643, -0.000686558720190078, 0.018058717250823975, 0.03626714274287224, 0.025338344275951385, -0.0319068543612957, 0.0257874745875597, 0.01357678696513176, -0.016402555629611015, 0.08945146948099136, -0.0035439063794910908, 0.030933739617466927, 0.026816727593541145, 0.004818777088075876, -0.061568062752485275, -0.012818882241845131, 0.061717770993709564, -0.018030647188425064, 0.009314742870628834, 0.012248114682734013, -0.06665818393230438, -0.0074480511248111725, -0.005352117121219635, -0.07245942950248718, 0.022344153374433517, 0.0812174454331398, -0.048693038523197174, -0.03379693627357483, -0.05325917899608612, -0.0019707861356437206, -0.00266904104501009, 0.03911162540316582, 0.007934607565402985, 0.01049838401377201, 0.020379215478897095, 0.008430520072579384, -0.0070878127589821815, -0.03432092070579529, -0.010975583456456661, 0.05494341254234314, 0.017328882589936256, 0.04629768431186676, 0.04102042317390442, 0.008201277814805508, -0.039261333644390106, 0.014933530241250992, -0.020847057923674583, -0.0196680948138237, 0.03400278836488724, 0.0477573536336422, -0.010180250741541386, 0.05730133876204491, -0.026442453265190125, -0.01842363364994526, 0.038999345153570175, -0.0037754883524030447, 0.025955896824598312, -0.03632328659296036, -0.007808289956301451, -0.011172076687216759, -0.05542996898293495, -0.04087071493268013, 0.006493652705103159, -0.05958440899848938, -0.004893631674349308, -0.0024725471157580614, -0.018442347645759583, 0.0025497411843389273, 0.015962783247232437, 0.021838882938027382, 0.0215768925845623, -0.015569795854389668, -0.0057263909839093685, -0.001976634142920375, 0.019275108352303505, -0.030391043052077293, 0.07313312590122223, 0.031925566494464874, -0.004297132603824139, -0.007200094871222973, 0.050339844077825546, -0.010694877244532108, -0.019855232909321785, -0.025244776159524918, 0.023073988035321236, -0.012510105967521667, -0.02357925847172737, -0.0196680948138237, 0.013801351189613342, -0.007897179573774338, 0.03321681171655655, -0.025020211935043335, -0.04652224853634834, 0.04547428339719772, 0.07889694720506668, 0.04285436496138573, -0.011845770291984081, 0.04977843165397644, 0.049853287637233734 ]
20,437
cron_descriptor.Exception
WrongArgumentException
Exception for cases when wrong argument is passed
class WrongArgumentException(Exception): """ Exception for cases when wrong argument is passed """ pass
null
[ 0.01004303339868784, -0.013466986827552319, 0.015780698508024216, 0.03583286330103874, 0.0022014158312231302, -0.08481913805007935, 0.00707673653960228, 0.029222259297966957, 0.0656653344631195, -0.045121610164642334, 0.050342291593551636, 0.019238552078604698, 0.002487451769411564, -0.007924249395728111, -0.05569857731461525, 0.03352762758731842, 0.003752365242689848, 0.07817462831735611, 0.005224919877946377, -0.018933448940515518, -0.0005530024645850062, 0.03515485301613808, 0.0029705343768000603, 0.03381578251719475, 0.01099224854260683, 0.07756441831588745, 0.03478194773197174, 0.008242066949605942, 0.044104594737291336, -0.048274360597133636, -0.06508902460336685, -0.05234242603182793, -0.007818310521543026, 0.05685119703412056, -0.0006700652302242815, -0.019069049507379532, -0.03178175166249275, 0.02123868465423584, -0.13207648694515228, -0.03810419887304306, -0.05654609203338623, 0.014094146899878979, 0.02093357965350151, -0.0019174990011379123, 0.014280599541962147, -0.05061349645256996, 0.025238947942852974, -0.019645359367132187, -0.11838066577911377, 0.006572465877979994, 0.013450036756694317, -0.017882531508803368, 0.04196885973215103, 0.006814007181674242, -0.0312393419444561, 0.08719217032194138, 0.03613796830177307, 0.03283266723155975, -0.023611722514033318, 0.040545038878917694, -0.004351980984210968, 0.0520712211728096, 0.012585572898387909, -0.07125892490148544, -0.03708718344569206, -0.0265610683709383, -0.013204257935285568, -0.015390842221677303, 0.0016357008134946227, 0.04695224016904831, 0.022526904940605164, 0.04488430544734001, -0.024527035653591156, 0.05339334160089493, 0.05922423303127289, -0.022442152723670006, -0.05580027773976326, 0.07424216717481613, 0.04620642587542534, 0.0010848171077668667, 0.008297155611217022, 0.0017893125768750906, -0.0333242230117321, -0.0008988938643597066, 0.01561967097222805, -0.03247671201825142, -0.05146101117134094, -0.03474804759025574, 0.014890809543430805, 0.0001634111686144024, -0.04881677031517029, -0.0032819954212754965, -0.0312393419444561, -0.016153603792190552, 0.04156205430626869, 0.022391302511096, 0.03623967245221138, -0.03193430230021477, -0.0070216478779911995, -0.001047208672389388, 0.020865779370069504, 0.03268011286854744, 0.07634400576353073, -0.012466921471059322, 0.03600236773490906, -0.029713818803429604, 0.011975363828241825, -0.07539478689432144, 0.0016770170768722892, 0.004301130305975676, -0.02635766565799713, -0.03803639858961105, -0.06051245331764221, -0.014704356901347637, -0.011356678791344166, 0.026594968512654305, -0.001436535152606666, -0.018763946369290352, -0.012814401648938656, 0.03164614737033844, 0.07471677660942078, 0.02132343500852585, -0.06481782346963882, 0.02945956401526928, 0.06881808489561081, -0.007593719754368067, -0.055122267454862595, 0.011551606468856335, -0.0015933250542730093, 0.0013083487283438444, 0.021052232012152672, -0.015009460970759392, -0.051596611738204956, -0.02154378965497017, 0.0031506309751421213, 0.037731293588876724, 0.05186781659722328, 0.012950004078447819, -0.022340452298521996, -0.02259470522403717, 0.043155379593372345, 0.02218789979815483, 0.03874830901622772, 0.02718822844326496, -0.005750378128141165, -0.008089514449238777, -0.034409042447805405, -0.02466263808310032, 0.016687538474798203, 0.056681692600250244, 0.0374939888715744, 0.00622498570010066, -0.000023240405425895005, -0.04281637445092201, 0.02218789979815483, -0.024391433224081993, -0.007504730485379696, -0.0749201774597168, -0.020899679511785507, -0.008352244272828102, 0.014034820720553398, -0.07464897632598877, 0.06312279403209686, 0.010221011005342007, 0.02144208736717701, 0.026713620871305466, -0.030256226658821106, -0.007729321718215942, 0.011424480006098747, -0.018984299153089523, -0.029815519228577614, -0.009212469682097435, -0.06051245331764221, -0.003231144743040204, -0.013195782899856567, 0.017204521223902702, -0.01759437657892704, 0.0385449081659317, 0.02466263808310032, -0.018085934221744537, 0.04776585102081299, -0.03684987872838974, -0.0016113347373902798, -0.013263584114611149, 0.020391171798110008, 0.00007031712448224425, -0.014399251900613308, 0.03273096680641174, 0.016068853437900543, -0.01561967097222805, 0.005741903092712164, -0.02549320086836815, -0.01358563918620348, 0.03807029873132706, 0.0000567767747270409, -0.05027449131011963, -0.04952868074178696, -0.014382301829755306, 0.09627751260995865, 0.03874830901622772, -0.013077130541205406, 0.05651218816637993, 0.04468090459704399, -0.018391039222478867, 0.02018776722252369, -0.009602325968444347, 0.03259536251425743, -0.03147664666175842, -0.05712239816784859, -0.012873727828264236, -0.015060312114655972, -0.046070825308561325, 0.01213639136403799, 0.040646739304065704, 0.0385449081659317, -0.0395958237349987, 0.05739360302686691, -0.04071453958749771, -0.01737402379512787, 0.054817162454128265, 0.07539478689432144, 0.01290762796998024, 0.03684987872838974, -0.012746600434184074, 0.04559621959924698, -0.04251126945018768, 0.037629593163728714, -0.02810354344546795, -0.013644964434206486, -0.013509362936019897, -0.010432889685034752, -0.02198449708521366, -0.026103410869836807, 0.011441430076956749, -0.023052362725138664, -0.040951844304800034, -0.0010339663131162524, -0.04746074602007866, -0.009576900862157345, -0.04081624373793602, -0.005470698699355125, -0.0019884782377630472, -0.02551015093922615, 0.09770134091377258, 0.0520373210310936, -0.05186781659722328, -0.013924644328653812, 0.06119046360254288, -0.014772157184779644, -0.0028836640994995832, -0.01956060715019703, 0.02476434037089348, -0.06715695559978485, -0.005034229252487421, 0.005436798091977835, -0.007157250307500362, -0.048477765172719955, -0.03657867759466171, 0.05424085259437561, 0.010585441254079342, 0.025120295584201813, -0.005123218055814505, 0.02020471729338169, 0.04766415059566498, 0.01903514936566353, -0.027713686227798462, 0.0028836640994995832, 0.018458841368556023, 0.04322317987680435, 0.047528550028800964, 0.06108876317739487, 0.019018199294805527, 0.02457788772881031, 0.036070168018341064, -0.028968006372451782, 0.027645885944366455, 0.009280270896852016, 0.04613862559199333, 0.0057207150384783745, 0.045833520591259, 0.04854556545615196, 0.009017542004585266, -0.00590716814622283, 0.031595297157764435, -0.04396899417042732, 0.024696538224816322, 0.016636686399579048, -0.03101898916065693, -0.03552775830030441, 0.06268208473920822, 0.05444425716996193, 0.021001379936933517, 0.001686551608145237, -0.009754878468811512, 0.00978877954185009, 0.026408515870571136, 0.003188768867403269, -0.020543724298477173, 0.025798305869102478, -0.0405789390206337, 0.048477765172719955, 0.030866436660289764, -0.019764011725783348, -0.013433086685836315, -0.053766246885061264, -0.03718888387084007, 0.013670390471816063, 0.008042901754379272, -0.04383338987827301, -0.02164549008011818, 0.019492806866765022, 0.025171145796775818, 0.0013814467238262296, 0.02488299272954464, 0.04946088045835495, 0.04101964458823204, 0.0604107528924942, -0.021391237154603004, -0.03059523180127144, 0.0520373210310936, -0.024188030511140823, 0.02278115786612034, 0.022611655294895172, -0.051359307020902634, -0.0006467586499638855, 0.0187300443649292, -0.017543526366353035, 0.039528023451566696, -0.007258951663970947, 0.010754944756627083, 0.01624683104455471, -0.030866436660289764, 0.016068853437900543, -0.020391171798110008, -0.054715462028980255, -0.02622206322848797, 0.02581525593996048, 0.016696013510227203, 0.03925681859254837, 0.000388267042580992, 0.07620839774608612, -0.05196951702237129, -0.01602647826075554, 0.014170423150062561, 0.015128113329410553, -0.016001051291823387, 0.014772157184779644, -0.03171394765377045, 0.04457920044660568, -0.017729979008436203, 0.0009931797394528985, 0.04000262916088104, -0.035765063017606735, -0.02457788772881031, 0.04518941044807434, 0.015390842221677303, -0.015034887008368969, -0.06630944460630417, 0.0007368068909272552, -0.05342724174261093, 0.05037619173526764, -0.02830694615840912, -0.012899152934551239, 0.00048652561963535845, -0.054817162454128265, -0.011882137507200241, 0.014280599541962147, -0.034002237021923065, -0.024645688012242317, 0.026272913441061974, 0.0229167602956295, -0.04942697659134865, -0.016272256150841713, -0.031290192157030106, -0.003765078028663993, -0.02864595130085945, 0.0028264569118618965, 0.03135799244046211, -0.04979988560080528, 0.0302053764462471, 0.0031993628945201635, -0.008606498129665852, -0.038782209157943726, -0.016009526327252388, -0.03766349330544472, -0.006572465877979994, 0.0013147051213309169, 0.013560213148593903, 0.02300151251256466, 0.0583089180290699, -0.03630747273564339, -0.033069971948862076, 0.02113698236644268, -0.02790013886988163, -0.05396965146064758, -0.031408846378326416, -0.004881676752120256, 0.014865384437143803, -0.0718013271689415, -0.014560279436409473, 0.007941200397908688, 0.023916827514767647, -0.04661323502659798, -0.015407792292535305, 0.014611129648983479, 0.021475987508893013, 0.015339992009103298, -0.02862900123000145, 0.012661849148571491, 0.017780829221010208, -0.005551212467253208, -0.012585572898387909, -0.010017607361078262, -0.02500164322555065, 0.0416637547314167, -0.023713422939181328, 0.016382433474063873, -0.031205441802740097, -0.021272584795951843, -0.03310387209057808, 0.00445368280634284, -0.022645557299256325, 0.07261494547128677, 0.0760727971792221, -0.0055173118598759174, 0.01556881982833147, -0.04444359987974167, -0.0005161886219866574, 0.021713292226195335, -0.02500164322555065, -0.05318993702530861, -0.001637819572351873, -0.02156073972582817, -0.03623967245221138, -0.0027925565373152494, -0.07742881774902344, -0.07464897632598877, -0.042714674025774, 0.030357928946614265, 0.039290718734264374, -0.009407398290932178, -0.046070825308561325, 0.053054336458444595, 0.07729321718215942, -0.015492543578147888, -0.08373431861400604, 0.0008565181633457541, 0.03147664666175842, 0.040545038878917694, -0.019001249223947525, 0.018357139080762863, 0.036070168018341064, 0.03569726273417473, -0.049189675599336624, -0.009229420684278011, -0.11641443520784378, -0.14916235208511353, 0.013560213148593903, 0.0270695760846138, -0.0011070643085986376, 0.02593390829861164, 0.03823980316519737, -0.041189149022102356, -0.09017542004585266, 0.002955702831968665, 0.0333242230117321, 0.05352894216775894, -0.020475922152400017, -0.0018952516838908195, 0.02208619751036167, 0.0018973705591633916, -0.00339640979655087, -0.0033286085817962885, -0.027120426297187805, -0.026171213015913963, 0.01446705311536789, 0.007530156057327986, 0.026883123442530632, -0.00011904913844773546, 0.0033053020015358925, 0.04359608516097069, 0.011399054899811745, 0.020458972081542015, 0.054512057453393936, -0.00205733859911561, -0.012805926613509655, -0.047528550028800964, -0.022221799939870834, 0.02988332137465477, 0.003765078028663993, -0.01556881982833147, -0.03803639858961105, 0.014636555686593056, 0.02373037301003933, 0.04657933488488197, -0.035765063017606735, -0.04654543474316597, 0.03630747273564339, -0.028391696512699127, -0.012814401648938656, 0.017204521223902702, -0.0541052520275116, 0.0395958237349987, -0.06942829489707947, 0.07071651518344879, -0.07261494547128677, 0.020899679511785507, 0.016263781115412712, 0.05702069774270058, -0.028256094083189964, -0.027120426297187805, 0.04468090459704399, 0.06376690417528152, 0.022052297368645668, 0.028154393658041954, 0.003972718957811594, -0.015551869757473469, 0.020865779370069504, 0.042951975017786026, 0.0676315650343895, 0.03256146237254143, 0.018085934221744537, 0.03386663272976875, -0.006419913377612829, 0.008153078146278858, -0.047528550028800964, -0.001017016009427607, -0.056071482598781586, 0.03376493230462074, 0.016187505796551704, -0.006047007627785206, -0.0025255896616727114, 0.042748574167490005, 0.015636621043086052, -0.0026018659118562937, 0.024594837799668312, 0.0030446916352957487, 0.04251126945018768, 0.04976598545908928, 0.021204784512519836, 0.041697654873132706, 0.06573313474655151, -0.011026148684322834, -0.007280139718204737, -0.034917548298835754, -0.03417173773050308, -0.03905341401696205, -0.00502151669934392, -0.025171145796775818, -0.003964243456721306, -0.011204126290977001, -0.019848762080073357, -0.007492017932236195, 0.007924249395728111, 0.009000591933727264, 0.02717127837240696, 0.046918340027332306, 0.06844517588615417, 0.042002759873867035, 0.019306354224681854, -0.0117041589692235, -0.03059523180127144, 0.02093357965350151, -0.056376587599515915, -0.018153736367821693, 0.003334965091198683, 0.027222128584980965, -0.02500164322555065, -0.018492741510272026, -0.0011875780764967203, -0.01322120800614357, -0.0032078379299491644, 0.023916827514767647, 0.0032141944393515587, -0.03261231258511543, 0.017018068581819534, -0.008619210682809353, 0.01791643165051937, -0.017238421365618706, -0.06898758560419083, 0.01347546186298132, -0.04925747588276863, -0.07058091461658478, -0.06098705902695656, -0.005123218055814505, 0.0218658447265625, -0.025052495300769806, -0.04288417473435402, -0.030561331659555435, 0.03279876708984375, -0.023289667442440987, -0.017560476437211037, 0.05291873216629028, -0.07790342718362808, 0.02435753308236599, 0.06403810530900955, 0.047528550028800964, -0.06434321403503418, -0.01269575022161007, -0.004538434091955423, -0.027781488373875618, 0.02664581872522831, 0.025747455656528473, 0.02767978608608246, 0.034290388226509094, 0.034815847873687744, -0.012212667614221573, -0.006563990842550993, -0.05915643274784088, 0.007246239110827446, 0.0322563573718071, -0.014831483364105225, -0.026171213015913963, -0.03698548302054405, -0.033578477799892426, -0.00967860221862793, 0.015280665829777718, 0.02195059508085251, 0.03715498372912407, 0.07641180604696274, -0.017407923936843872, 0.00041051427251659334, -0.0624447837471962, 0.015009460970759392, -0.01884869672358036, 0.00942434836179018, -0.0005299606709741056, 0.00024908946943469346, -0.08027646690607071, -0.08881939947605133, -0.00043302634730935097, 0.0260186605155468, 0.0171960461884737, -0.08719217032194138, -0.039087314158678055, -0.010059983469545841, 0.021577689796686172, 0.002966296626254916, -0.005585113074630499, 0.05112200602889061, 0.04085014387965202, -0.018509691581130028, -0.0634278953075409, 0.030476579442620277, -0.03217160701751709, 0.027256028726696968, -0.004635897930711508, -0.07939504832029343, 0.05017279088497162, -0.045257214456796646, 0.035765063017606735, 0.06597043573856354, -0.028188293799757957, -0.047630250453948975, -0.010059983469545841, 0.0035192992072552443, -0.013450036756694317, 0.016060378402471542, -0.013382235541939735, -0.001020723837427795, 0.02508639544248581, 0.022543855011463165, 0.03552775830030441, -0.019086001440882683, 0.008653110824525356, 0.004491820931434631, 0.0037502464838325977, -0.04485040530562401, 0.03134104236960411, 0.022357402369379997, -0.02518809586763382, 0.0036167632788419724, 0.018391039222478867, 0.0032247882336378098, 0.007123349700123072, -0.030985087156295776, 0.005792753770947456, -0.03823980316519737, -0.007326752878725529, 0.013704290613532066, -0.04257906973361969, -0.023459170013666153, -0.07959845662117004, -0.03183260187506676, -0.03152749687433243, 0.05146101117134094, -0.043731689453125, 0.03498535230755806, 0.03310387209057808, -0.04729124531149864, -0.02259470522403717, -0.052410226315259933, -0.018916497007012367, 0.007127587217837572, 0.00017996416136156768, -0.03718888387084007, -0.04390119016170502, -0.016306156292557716, 0.05010499060153961, 0.04020603373646736, 0.02695092372596264, 0.0004526250995695591, -0.006360587663948536, 0.02466263808310032, -0.012780501507222652, -0.01472978200763464, -0.03840930387377739, 0.026578018441796303, 0.058342818170785904, -0.06390250474214554, -0.0011303708888590336, 0.04946088045835495, 0.002258623018860817, -0.04081624373793602, 0.02581525593996048, -0.038680508732795715, 0.018882596865296364, 0.046681035310029984, -0.032120756804943085, -0.015068787150084972, -0.03061218187212944, 0.016602786257863045, 0.010119309648871422, -0.048477765172719955, -0.013831418007612228, -0.04098574444651604, -0.0265610683709383, -0.08027646690607071, 0.032849617302417755, 0.015882400795817375, 0.05810551345348358, 0.0025743218138813972, 0.008432758040726185, 0.05796991288661957, 0.03374798223376274, -0.007559819146990776, 0.004830826073884964, 0.004201547242701054, 0.06302109360694885, 0.07675080746412277, 0.008864989504218102, 0.05735970288515091, -0.023476120084524155, -0.06336009502410889, 0.04488430544734001, 0.026289863511919975, -0.018577491864562035, 0.07302174717187881, 0.020594574511051178, -0.01093292236328125, -0.00736489100381732, -0.012153341434895992, -0.02645936608314514, 0.0677332654595375, 0.022662507370114326, -0.0749201774597168, 0.06051245331764221, 0.0011685090139508247, 0.020797977223992348, -0.027103476226329803, -0.03376493230462074, -0.013831418007612228, -0.0039875502698123455, -0.010237961076200008, -0.02747638337314129, 0.04115524888038635, -0.003767196787521243, 0.05505446717143059 ]
20,438
cron_descriptor.ExpressionDescriptor
get_description
Generates a human readable string for the Cron Expression Args: expression: The cron expression string options: Options to control the output description Returns: The cron expression description
def get_description(expression, options=None): """Generates a human readable string for the Cron Expression Args: expression: The cron expression string options: Options to control the output description Returns: The cron expression description """ descriptor = ExpressionDescriptor(expression, options) return descriptor.get_description(DescriptionTypeEnum.FULL)
(expression, options=None)
[ 0.050023145973682404, 0.004242713563144207, 0.07054269313812256, -0.05951029434800148, 0.07158484309911728, -0.06385856866836548, 0.02551467902958393, -0.043087463825941086, 0.037265803664922714, -0.050274696201086044, 0.020914848893880844, 0.02497563697397709, -0.015641216188669205, 0.001963013084605336, 0.011580429971218109, 0.0216335728764534, 0.009028961881995201, -0.08811548352241516, -0.01701577566564083, -0.002713180612772703, 0.016422828659415245, -0.005781230982393026, -0.0153806796297431, -0.05153246223926544, 0.011068339459598064, 0.06533195078372955, 0.026107626035809517, -0.02522718906402588, -0.03917042165994644, 0.019279753789305687, -0.022747593000531197, -0.018435252830386162, -0.07111767679452896, -0.013628791086375713, -0.051065292209386826, 0.03931416571140289, -0.00482892245054245, 0.04380618780851364, -0.04222499579191208, 0.009478163905441761, 0.0060282922349870205, 0.04545925185084343, 0.021561700850725174, -0.009756669402122498, -0.046824824064970016, -0.06842245906591415, 0.0002268470561830327, -0.02910829521715641, -0.0072321537882089615, -0.06493665277957916, 0.07284261286258698, 0.004386458545923233, -0.006279845256358385, -0.007613975554704666, -0.0466451458632946, 0.007182741537690163, 0.045279569923877716, 0.054802656173706055, 0.05401206016540527, 0.017599737271666527, -0.027598977088928223, 0.02177731692790985, -0.020393773913383484, -0.021040625870227814, 0.0006760491523891687, 0.016440795734524727, -0.014886557124555111, 0.0012588888639584184, 0.07467535138130188, -0.007528626825660467, -0.0010359722655266523, -0.021328115835785866, 0.0006839101552031934, -0.029072359204292297, -0.016377907246351242, -0.0664459690451622, -0.046285782009363174, -0.024382689967751503, 0.05627603828907013, -0.04276403784751892, -0.08114386349916458, 0.044884271919727325, 0.04829820990562439, -0.03942197561264038, 0.07510659098625183, -0.07219576090574265, 0.03873918950557709, -0.01546153612434864, -0.00357564864680171, 0.02731148712337017, -0.03485808148980141, -0.07834084331989288, -0.031138688325881958, 0.023879582062363625, -0.07039894908666611, -0.005224220454692841, -0.0432671457529068, 0.022064806893467903, 0.01570410467684269, 0.0062978132627904415, 0.029036423191428185, 0.020914848893880844, 0.01261359453201294, 0.02783256210386753, -0.021328115835785866, -0.005233204457908869, -0.028515348210930824, 0.0015991594409570098, 0.026484955102205276, -0.025155317038297653, -0.031246496364474297, 0.02574826404452324, 0.00015693997556809336, -0.10234620422124863, 0.06037276238203049, 0.04132659360766411, -0.04599829390645027, 0.01660250872373581, 0.010565233416855335, -0.05821659043431282, 0.024005359038710594, -0.010673041455447674, -0.06062431260943413, -0.013161621056497097, -0.017806369811296463, 0.06511633098125458, -0.04542331397533417, -0.03927823156118393, 0.04279997572302818, -0.0772627592086792, 0.008984041400253773, 0.007272581569850445, 0.03884699568152428, 0.05836033448576927, 0.03528931736946106, -0.031875379383563995, 0.050526250153779984, -0.0019742432050406933, 0.016126355156302452, 0.06734437495470047, -0.03462449833750725, 0.007672371808439493, -0.016836093738675117, 0.017438024282455444, -0.018129795789718628, -0.06428980082273483, -0.005341012962162495, 0.010466408915817738, 0.03182147443294525, -0.013826440088450909, 0.02073516882956028, -0.0020214093383401632, -0.03146211430430412, -0.07625654339790344, 0.08948105573654175, 0.0071468050591647625, 0.010223839432001114, 0.04362650588154793, -0.011418716982007027, -0.016422828659415245, 0.041937507688999176, 0.0401766337454319, -0.05422767624258995, -0.02175934985280037, 0.029413752257823944, -0.008130557835102081, 0.03823608160018921, -0.05641978234052658, 0.03705018758773804, 0.014185802079737186, -0.056347910314798355, -0.041650015860795975, -0.01633298769593239, 0.050023145973682404, -0.008449491113424301, 0.07334571331739426, 0.01801300421357155, 0.0930028036236763, -0.032899562269449234, -0.0006906482158228755, -0.0035464505199342966, -0.004981650970876217, -0.05692289024591446, 0.004954698961228132, -0.005691390484571457, -0.043087463825941086, 0.04470458999276161, -0.002220181282609701, -0.005466789472848177, -0.020052380859851837, -0.015587312169373035, -0.017680594697594643, -0.022963210940361023, 0.03325892239809036, -0.010870690457522869, -0.06892556697130203, -0.026305275037884712, -0.021094530820846558, -0.013134668581187725, 0.01908210478723049, -0.05756973847746849, 0.09364964812994003, 0.00518828397616744, -0.02280149795114994, 0.01945943385362625, 0.015111158601939678, 0.015183030627667904, 0.020160188898444176, -0.06446948647499084, 0.009190674871206284, 0.024760019034147263, 0.03440887853503227, -0.03634943440556526, 0.011580429971218109, -0.01751888170838356, 0.02912626415491104, 0.018102843314409256, 0.03358234837651253, -0.08912169188261032, 0.026215434074401855, -0.016647430136799812, -0.03307924047112465, 0.03482214733958244, 0.0005266894586384296, 0.00979260541498661, 0.008844789117574692, 0.04197344183921814, 0.01944146677851677, 0.007955368608236313, -0.03011450730264187, -0.018102843314409256, -0.0012532738037407398, -0.016943903639912605, 0.018381349742412567, 0.043698377907276154, -0.015245919115841389, -0.08028139919042587, 0.04545925185084343, 0.014464307576417923, 0.018120812252163887, -0.07201607525348663, 0.029970763251185417, 0.03487604856491089, 0.04739980399608612, 0.007178249303251505, -0.06781154870986938, -0.0050939517095685005, 0.015183030627667904, -0.05627603828907013, -0.05074186623096466, 0.02986295521259308, -0.06191801652312279, 0.010879674926400185, -0.013017876073718071, -0.05153246223926544, 0.01791417971253395, 0.023088987916707993, -0.018578998744487762, 0.024544402956962585, -0.03816420957446098, 0.06806310266256332, -0.009864477440714836, -0.018075892701745033, -0.0026592763606458902, 0.045099887996912, -0.023232731968164444, -0.040248505771160126, -0.0036115848924964666, -0.008489919826388359, -0.007155789062380791, 0.11844560503959656, 0.04567486792802811, -0.03570258244872093, -0.008736980147659779, -0.05756973847746849, -0.00747023057192564, -0.01741107366979122, -0.002879385370761156, 0.0014857358764857054, -0.025820136070251465, -0.011885887011885643, 0.00868307612836361, -0.011814014986157417, -0.011544493958353996, 0.011858935467898846, 0.009487148374319077, -0.006787443533539772, 0.03363625332713127, 0.008543823845684528, 0.09113411605358124, 0.01533575914800167, 0.03597210347652435, -0.019261784851551056, -0.02616152912378311, 0.05922280251979828, 0.05372456833720207, 0.05807284638285637, -0.039996955543756485, 0.010403520427644253, 0.03325892239809036, -0.020321901887655258, 0.04100316762924194, 0.014643987640738487, -0.020896881818771362, -0.13303568959236145, 0.02704196609556675, 0.008615695871412754, -0.0216335728764534, 0.03426513448357582, 0.015272870659828186, 0.029287975281476974, 0.0017642411403357983, -0.010538280941545963, 0.05199963226914406, 0.020807040855288506, 0.05009501799941063, -0.0030253760050982237, 0.027473200112581253, 0.03762516751885414, -0.01100545097142458, -0.012146424502134323, 0.0011314277071505785, 0.067416250705719, -0.03827201947569847, 0.012362041510641575, -0.00991838239133358, -0.08768424391746521, 0.004918762948364019, 0.05476671829819679, -0.016575556248426437, -0.01378151960670948, -0.06234924867749214, 0.020285965874791145, 0.027509136125445366, -0.005336520727723837, -0.016288068145513535, 0.057138506323099136, -0.022082773968577385, -0.03570258244872093, 0.018596965819597244, 0.03532525151968002, 0.013377238065004349, -0.06170240044593811, 0.026071690022945404, 0.015174046158790588, -0.04215312376618385, 0.035882264375686646, -0.05117310211062431, 0.036870505660772324, -0.050166890025138855, 0.02616152912378311, -0.03633146360516548, -0.03784078359603882, -0.014895541593432426, 0.017824338749051094, 0.018866486847400665, -0.028946582227945328, -0.033528443425893784, -0.004595337435603142, -0.01839931681752205, -0.033672187477350235, 0.007043488789349794, -0.0034813161473721266, 0.01358387153595686, -0.0719442069530487, -0.01295498851686716, 0.0077846720814704895, 0.07334571331739426, 0.08459373563528061, -0.013125685043632984, -0.026341211050748825, 0.06321171671152115, 0.044093675911426544, 0.017851291224360466, -0.045926421880722046, -0.04427335783839226, 0.007025520782917738, -0.02522718906402588, -0.033025339245796204, -0.029934827238321304, -0.01908210478723049, 0.009141262620687485, -0.07819709926843643, 0.012928036041557789, -0.07302229106426239, 0.025730295106768608, -0.019764892756938934, 0.05214338004589081, 0.006504446268081665, -0.011328876949846745, -0.026071690022945404, -0.05189182609319687, -0.0193156898021698, -0.02680838108062744, -0.026089657098054886, -0.001897878828458488, 0.010547265410423279, 0.04085942357778549, -0.07248324900865555, -0.013377238065004349, 0.010223839432001114, 0.010250791907310486, -0.015775976702570915, 0.0011814015451818705, 0.0007147928117774427, 0.003223025007173419, 0.027778657153248787, 0.04686076194047928, 0.009015485644340515, -0.013655743561685085, 0.010960530489683151, -0.09192471206188202, -0.04071567580103874, -0.01624314673244953, -0.043734315782785416, -0.013628791086375713, 0.01461703609675169, -0.03877512365579605, 0.005835135001689196, 0.009424259886145592, -0.00876393262296915, -0.041146911680698395, -0.01404205709695816, 0.05038250610232353, -0.011930807493627071, 0.033959679305553436, 0.03491198644042015, 0.037553295493125916, 0.012344073504209518, 0.03652911260724068, -0.07104580104351044, 0.020663296803832054, -0.06367889046669006, -0.0012633808655664325, 0.031138688325881958, -0.0856718197464943, 0.03261207044124603, 0.00437972042709589, -0.012281185016036034, 0.02909032627940178, -0.00067661062348634, 0.02626933716237545, 0.08078449964523315, -0.010933578945696354, -0.03996101766824722, 0.04150627180933952, -0.010250791907310486, -0.0466451458632946, 0.05088561400771141, 0.008081145584583282, 0.00746573880314827, 0.05915093049407005, 0.0840187594294548, 0.0006344979628920555, 0.02217261493206024, -0.04096722975373268, 0.008386602625250816, 0.00868307612836361, -0.011885887011885643, -0.008489919826388359, -0.015057253651320934, 0.012092520482838154, 0.02599981613457203, -0.0014082485577091575, -0.03852356970310211, 0.0038137256633490324, 0.038451697677373886, 0.0186868067830801, -0.026700571179389954, 0.0119038550183177, 0.0006631345604546368, 0.011445669457316399, -0.005547645967453718, 0.011787062510848045, -0.007092901039868593, 0.024688147008419037, 0.00328591326251626, 0.04801071807742119, 0.02240619994699955, -0.04215312376618385, -0.036654889583587646, -0.037912655621767044, -0.02123827487230301, -0.02393348701298237, 0.008984041400253773, 0.013224509544670582, 0.002814250998198986, -0.03165976330637932, -0.014024089090526104, -0.03453465551137924, -0.04962784796953201, 0.021939029917120934, 0.03776891157031059, -0.051568400114774704, 0.019872700795531273, -0.01166128646582365, 0.010412503965198994, 0.011670270003378391, -0.013943232595920563, 0.044129613786935806, -0.024508465081453323, -0.01300889253616333, 0.04739980399608612, -0.026502924039959908, 0.02511938102543354, -0.01741107366979122, 0.00791494082659483, 0.01841728575527668, 0.0032050570007413626, -0.024185040965676308, -0.0005923852440901101, -0.053652696311473846, 0.015659185126423836, -0.012568674050271511, -0.029773114249110222, 0.014590083621442318, 0.04182969778776169, 0.047974783927202225, 0.01467094011604786, 0.025658423081040382, -0.025532646104693413, 0.03949384763836861, -0.01906413584947586, 0.007937400601804256, 0.030869167298078537, 0.01942349784076214, -0.004748065955936909, 0.005493741482496262, -0.018093859776854515, 0.026449019089341164, 0.06367889046669006, -0.015668168663978577, 0.04689669609069824, -0.005134379956871271, -0.041398465633392334, 0.033941708505153656, -0.04905286803841591, 0.016512669622898102, -0.02229839190840721, 0.013341302052140236, 0.01571308821439743, 0.015659185126423836, 0.029683273285627365, -0.024274880066514015, -0.03347453847527504, 0.002215689281001687, 0.07219576090574265, -0.021417954936623573, 0.03931416571140289, -0.04678888991475105, 0.06317578256130219, 0.06716469675302505, -0.012236264534294605, -0.015587312169373035, -0.013152637518942356, 0.06860214471817017, 0.035361189395189285, 0.050023145973682404, 0.01036758441478014, -0.017069678753614426, -0.005983371753245592, -0.027598977088928223, 0.0060282922349870205, 0.022963210940361023, 0.06687720865011215, 0.03311517834663391, 0.013377238065004349, 0.02616152912378311, 0.0003315672802273184, -0.028245827183127403, -0.024652210995554924, 0.01480570062994957, 0.10802412033081055, 0.002367295091971755, -0.046537335962057114, -0.04175782576203346, 0.005260156467556953, 0.015039285644888878, 0.029018454253673553, 0.0497356541454792, -0.035235412418842316, -0.06870995461940765, -0.016009561717510223, -0.04103910177946091, -0.014275642111897469, 0.011472621001303196, 0.02188512496650219, 0.04096722975373268, 0.01300889253616333, 0.008386602625250816, 0.03165976330637932, 0.00007475003803847358, 0.0339956134557724, 0.013574887067079544, 0.036906443536281586, 0.0056150262244045734, 0.0021393250208348036, 0.0003829447668977082, -0.04851382598280907, 0.05588074028491974, -0.05961810052394867, 0.004312340170145035, 0.0420093797147274, 0.018327444791793823, -0.01715053617954254, -0.013628791086375713, 0.009163722395896912, -0.023771774023771286, -0.019136009737849236, 0.00750616705045104, 0.005902515258640051, 0.013080764561891556, 0.014643987640738487, -0.013529966585338116, 0.0009517469443380833, -0.03347453847527504, 0.03205506131052971, -0.012667498551309109, -0.03234254941344261, -0.031372275203466415, 0.004330308176577091, 0.1028493121266365, -0.02768881618976593, 0.009096342138946056, -0.030491838231682777, 0.03455262631177902, -0.023502252995967865, -0.05850407853722572, -0.04118284583091736, -0.037553295493125916, 0.006221449002623558, 0.028569253161549568, -0.06414605677127838, -0.02731148712337017, -0.06004933640360832, -0.01480570062994957, 0.01917194575071335, 0.04736386984586716, -0.029557498171925545, -0.027149774134159088, -0.010017206892371178, -0.009747684933245182, -0.032522231340408325, -0.014015105552971363, -0.003559926524758339, 0.05063406005501747, -0.028497381135821342, -0.08394688367843628, -0.03131837025284767, -0.033528443425893784, -0.026107626035809517, 0.01945943385362625, 0.01108630746603012, 0.04754354804754257, -0.0028995994944125414, 0.03634943440556526, -0.06853026896715164, -0.0018102844478562474, -0.025442807003855705, -0.019998477771878242, 0.02758100815117359, -0.05020282417535782, 0.008934629149734974, -0.046285782009363174, -0.013637775555253029, -0.023915519937872887, 0.016324004158377647, 0.03584632650017738, -0.02228042297065258, 0.0233225729316473, 0.057893164455890656, -0.016306035220623016, 0.08538433164358139, -0.00952308438718319, 0.017599737271666527, 0.04581861197948456, -0.0420093797147274, 0.03564867749810219, 0.02574826404452324, 0.0030141461174935102, 0.0642179325222969, -0.009060406126081944, 0.004685177933424711, -0.03478620946407318, -0.007524135056883097, -0.010187903419137001, 0.0023762790951877832, 0.018884455785155296, -0.02511938102543354, -0.03642130643129349, -0.04003288969397545, 0.023897551000118256, -0.03503776341676712, -0.028138019144535065, 0.08387501537799835, -0.02152576483786106, -0.017707547172904015, 0.026466986164450645, 0.0682787150144577, -0.007321993820369244, -0.013359270058572292, 0.05462297424674034, 0.04168595373630524, 0.012056584469974041, 0.025029540061950684, -0.021597636863589287, -0.006845839787274599, 0.0037777896504849195, 0.00857526808977127, -0.00836863461881876, 0.0119757279753685, 0.043985869735479355, 0.007106376811861992, -0.04948410019278526, -0.01893836073577404, -0.06292422860860825, -0.015084206126630306, 0.06234924867749214, -0.011499573476612568, 0.019531305879354477, 0.05142465606331825, 0.0009888061322271824, 0.05681508034467697, -0.026484955102205276, 0.012047600001096725, 0.07054269313812256, -0.08955293148756027, 0.0051658242009580135, -0.017617706209421158, -0.025676392018795013, -0.0024593814741820097, 0.03809233754873276, 0.0373736135661602, 0.007533119060099125, 0.01635095663368702, 0.01493147760629654, -0.028299732133746147, -0.03643927350640297, 0.025263125076889992, -0.006360701750963926, -0.009046929888427258, 0.032648008316755295, 0.015865817666053772, -0.0034723321441560984, 0.0347682423889637, 0.012963972054421902, -0.058396272361278534, 0.022082773968577385, 0.004112445283681154, -0.03642130643129349, -0.035468995571136475, -0.04211718589067459, -0.028533317148685455, 0.02343038097023964, -0.007034504786133766, -0.05526982620358467, 0.024939699098467827, 0.05174808204174042, -0.022621817886829376, 0.027904434129595757, 0.047974783927202225, -0.04639359191060066, 0.05785723030567169, 0.01506623812019825, -0.036259591579437256, -0.050310634076595306, -0.028946582227945328, -0.0337081253528595 ]
20,442
resampy.core
resample
Resample a signal x from sr_orig to sr_new along a given axis. Parameters ---------- x : np.ndarray, dtype=np.float* The input signal(s) to resample. sr_orig : int > 0 The sampling rate of x sr_new : int > 0 The target sampling rate of the output signal(s) If `sr_new == sr_orig`, then a copy of `x` is returned with no interpolation performed. axis : int The target axis along which to resample `x` filter : optional, str or callable The resampling filter to use. By default, uses the `kaiser_best` (pre-computed filter). parallel : optional, bool Enable/disable parallel computation exploiting multi-threading. Default: False. **kwargs additional keyword arguments provided to the specified filter Returns ------- y : np.ndarray `x` resampled to `sr_new` Raises ------ ValueError if `sr_orig` or `sr_new` is not positive TypeError if the input signal `x` has an unsupported data type. Examples -------- >>> import resampy >>> np.set_printoptions(precision=3, suppress=True) >>> # Generate a sine wave at 440 Hz for 5 seconds >>> sr_orig = 44100.0 >>> x = np.sin(2 * np.pi * 440.0 / sr_orig * np.arange(5 * sr_orig)) >>> x array([ 0. , 0.063, ..., -0.125, -0.063]) >>> # Resample to 22050 with default parameters >>> resampy.resample(x, sr_orig, 22050) array([ 0.011, 0.122, 0.25 , ..., -0.366, -0.25 , -0.122]) >>> # Resample using the fast (low-quality) filter >>> resampy.resample(x, sr_orig, 22050, filter='kaiser_fast') array([ 0.012, 0.121, 0.251, ..., -0.365, -0.251, -0.121]) >>> # Resample using a high-quality filter >>> resampy.resample(x, sr_orig, 22050, filter='kaiser_best') array([ 0.011, 0.122, 0.25 , ..., -0.366, -0.25 , -0.122]) >>> # Resample using a Hann-windowed sinc filter >>> import scipy.signal >>> resampy.resample(x, sr_orig, 22050, filter='sinc_window', ... window=scipy.signal.hann) array([ 0.011, 0.123, 0.25 , ..., -0.366, -0.25 , -0.123]) >>> # Generate stereo data >>> x_right = np.sin(2 * np.pi * 880.0 / sr_orig * np.arange(len(x))) >>> x_stereo = np.stack([x, x_right]) >>> x_stereo.shape (2, 220500) >>> # Resample along the time axis (1) >>> y_stereo = resampy.resample(x_stereo, sr_orig, 22050, axis=1) >>> y_stereo.shape (2, 110250)
def resample( x, sr_orig, sr_new, axis=-1, filter="kaiser_best", parallel=False, **kwargs ): """Resample a signal x from sr_orig to sr_new along a given axis. Parameters ---------- x : np.ndarray, dtype=np.float* The input signal(s) to resample. sr_orig : int > 0 The sampling rate of x sr_new : int > 0 The target sampling rate of the output signal(s) If `sr_new == sr_orig`, then a copy of `x` is returned with no interpolation performed. axis : int The target axis along which to resample `x` filter : optional, str or callable The resampling filter to use. By default, uses the `kaiser_best` (pre-computed filter). parallel : optional, bool Enable/disable parallel computation exploiting multi-threading. Default: False. **kwargs additional keyword arguments provided to the specified filter Returns ------- y : np.ndarray `x` resampled to `sr_new` Raises ------ ValueError if `sr_orig` or `sr_new` is not positive TypeError if the input signal `x` has an unsupported data type. Examples -------- >>> import resampy >>> np.set_printoptions(precision=3, suppress=True) >>> # Generate a sine wave at 440 Hz for 5 seconds >>> sr_orig = 44100.0 >>> x = np.sin(2 * np.pi * 440.0 / sr_orig * np.arange(5 * sr_orig)) >>> x array([ 0. , 0.063, ..., -0.125, -0.063]) >>> # Resample to 22050 with default parameters >>> resampy.resample(x, sr_orig, 22050) array([ 0.011, 0.122, 0.25 , ..., -0.366, -0.25 , -0.122]) >>> # Resample using the fast (low-quality) filter >>> resampy.resample(x, sr_orig, 22050, filter='kaiser_fast') array([ 0.012, 0.121, 0.251, ..., -0.365, -0.251, -0.121]) >>> # Resample using a high-quality filter >>> resampy.resample(x, sr_orig, 22050, filter='kaiser_best') array([ 0.011, 0.122, 0.25 , ..., -0.366, -0.25 , -0.122]) >>> # Resample using a Hann-windowed sinc filter >>> import scipy.signal >>> resampy.resample(x, sr_orig, 22050, filter='sinc_window', ... window=scipy.signal.hann) array([ 0.011, 0.123, 0.25 , ..., -0.366, -0.25 , -0.123]) >>> # Generate stereo data >>> x_right = np.sin(2 * np.pi * 880.0 / sr_orig * np.arange(len(x))) >>> x_stereo = np.stack([x, x_right]) >>> x_stereo.shape (2, 220500) >>> # Resample along the time axis (1) >>> y_stereo = resampy.resample(x_stereo, sr_orig, 22050, axis=1) >>> y_stereo.shape (2, 110250) """ if sr_orig <= 0: raise ValueError("Invalid sample rate: sr_orig={}".format(sr_orig)) if sr_new <= 0: raise ValueError("Invalid sample rate: sr_new={}".format(sr_new)) if sr_orig == sr_new: # If the output rate matches, return a copy return x.copy() sample_ratio = float(sr_new) / sr_orig # Set up the output shape shape = list(x.shape) # Explicitly recalculate length here instead of using sample_ratio # This avoids a floating point round-off error identified as #111 shape[axis] = int(shape[axis] * float(sr_new) / float(sr_orig)) if shape[axis] < 1: raise ValueError( "Input signal length={} is too small to " "resample from {}->{}".format(x.shape[axis], sr_orig, sr_new) ) # Preserve contiguity of input (if it exists) if np.issubdtype(x.dtype, np.integer): dtype = np.float32 else: dtype = x.dtype y = np.zeros_like(x, dtype=dtype, shape=shape) interp_win, precision, _ = get_filter(filter, **kwargs) if sample_ratio < 1: # Make a copy to prevent modifying the filters in place interp_win = sample_ratio * interp_win interp_delta = np.diff(interp_win, append=interp_win[-1]) scale = min(1.0, sample_ratio) time_increment = 1.0 / sample_ratio t_out = np.arange(shape[axis]) * time_increment if parallel: try: resample_f_p( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, scale, y.swapaxes(-1, axis), ) except numba.TypingError as exc: warnings.warn( f"{exc}\nFallback to the sequential version.", stacklevel=2) resample_f_s( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, scale, y.swapaxes(-1, axis), ) else: resample_f_s( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, scale, y.swapaxes(-1, axis), ) return y
(x, sr_orig, sr_new, axis=-1, filter='kaiser_best', parallel=False, **kwargs)
[ 0.0032681601587682962, -0.03530098870396614, 0.03201581910252571, 0.007692933082580566, -0.007804706692695618, -0.006939677055925131, -0.03567032888531685, 0.02863345667719841, 0.057383548468351364, 0.015133161097764969, 0.009991579689085484, -0.013121237978339195, 0.07036871463060379, 0.0632929652929306, -0.00269957329146564, 0.019895683974027634, -0.03088836558163166, 0.02731161378324032, -0.03413465619087219, 0.003013025037944317, -0.011167631484568119, -0.043815214186906815, -0.01569688878953457, 0.05248495191335678, -0.005005509126931429, 0.034056901931762695, 0.014219534583389759, -0.022879552096128464, -0.07849416136741638, -0.00554007850587368, 0.026067527011036873, -0.023248890414834023, -0.00471149617806077, -0.01424869243055582, -0.005063825752586126, -0.006580058019608259, -0.07180719077587128, 0.010574745945632458, -0.03759477660059929, 0.023229451850056648, 0.013218432664871216, -0.04801401123404503, 0.02249077335000038, -0.00802825391292572, 0.015288672409951687, 0.0667530819773674, -0.04894707724452019, 0.018301697447896004, 0.02952764555811882, 0.04047172889113426, 0.04323204979300499, -0.051901787519454956, -0.03079117275774479, 0.046497780829668045, 0.002160144504159689, 0.036350689828395844, -0.014404203742742538, 0.08094345778226852, 0.06305969506502151, -0.05816110223531723, 0.037439264357089996, -0.029916422441601753, 0.0024650918785482645, 0.04303766041994095, 0.00360834039747715, -0.01762133650481701, -0.05244607478380203, -0.02966371737420559, -0.010390076786279678, -0.017592178657650948, -0.015483060851693153, 0.019983159378170967, 0.0025197637733072042, 0.006157262250781059, -0.030946683138608932, 0.08288734406232834, -0.07025208324193954, -0.006929957773536444, -0.023015623912215233, -0.04890820011496544, 0.0633707195520401, 0.0748007744550705, -0.0027068627532571554, 0.013364223763346672, -0.01668827049434185, -0.02979978919029236, -0.05182402953505516, -0.01523035578429699, -0.0001373629638692364, -0.0668308362364769, 0.003724973648786545, 0.025970332324504852, 0.07297351956367493, 0.05676150321960449, 0.027758708223700523, -0.023229451850056648, -0.0587831474840641, -0.0062690358608961105, 0.039966318756341934, -0.024007005617022514, -0.019059812650084496, 0.005311671644449234, -0.06022162362933159, 0.027544880285859108, 0.05594507232308388, 0.053962305188179016, 0.017543580383062363, 0.04478715732693672, -0.04070499539375305, 0.009427852928638458, 0.047430846840143204, -0.008995337411761284, -0.08700838685035706, -0.006196140311658382, -0.05792783573269844, -0.008796089328825474, -0.0067404285073280334, 0.06267092376947403, -0.021013420075178146, 0.004432062618434429, 0.010808012448251247, 0.033357102423906326, -0.016007909551262856, 0.01365580689162016, 0.001297544687986374, -0.048325031995773315, 0.03479557856917381, 0.03580639883875847, -0.022413019090890884, 0.03221020847558975, -0.05174627527594566, 0.04754747822880745, -0.06947452574968338, 0.02703947015106678, -0.0034844176843762398, -0.020877348259091377, 0.013500295579433441, 0.09750537574291229, -0.03304608166217804, -0.045409202575683594, 0.025289971381425858, 0.05120198801159859, 0.024803999811410904, 0.04544807970523834, 0.05221280828118324, -0.017922639846801758, 0.060532644391059875, 0.07122402638196945, 0.04280439391732216, 0.04836391285061836, -0.04023846238851547, 0.03504828363656998, 0.04505930468440056, 0.006852202117443085, 0.04089938476681709, -0.05334026366472244, -0.017990674823522568, 0.02915830723941326, -0.04999677836894989, 0.00392179237678647, -0.013626649044454098, 0.008106009103357792, -0.04622563719749451, -0.03152984753251076, -0.03413465619087219, -0.016960415989160538, -0.0034771279897540808, 0.029916422441601753, 0.017708811908960342, -0.014549994841217995, 0.044048480689525604, -0.04859717935323715, -0.04824727773666382, -0.04268776252865791, -0.012625547125935555, 0.055128637701272964, 0.0021735087502747774, -0.035553693771362305, -0.02239357866346836, 0.010856609791517258, 0.05030779913067818, -0.0020580904092639685, -0.04031622037291527, -0.027953097596764565, -0.03975249081850052, 0.03310439735651016, 0.03289056941866875, -0.010059615597128868, 0.020099792629480362, -0.007814425975084305, 0.09167371690273285, -0.014695786871016026, -0.04008295387029648, -0.04315429553389549, 0.008820387534797192, -0.046536657959222794, -0.0283029954880476, -0.014608311466872692, 0.048325031995773315, 0.04455389454960823, -0.018729351460933685, -0.008222642354667187, 0.024998389184474945, -0.0022804224863648415, -0.02746712416410446, -0.046731047332286835, 0.006239877548068762, 0.0396164208650589, -0.0678805410861969, 0.024065323173999786, 0.023695984855294228, -0.03088836558163166, 0.040199585258960724, -0.021654902026057243, -0.0035111461766064167, 0.10123763978481293, -0.028128046542406082, -0.041327040642499924, 0.03652564063668251, -0.01887514442205429, 0.029955299571156502, -0.027544880285859108, -0.03720599785447121, 0.02441522292792797, 0.051240865141153336, -0.01971101574599743, 0.028050290420651436, -0.00573932658880949, 0.00468476815149188, -0.07759997248649597, 0.03596191108226776, 0.03905269131064415, 0.04163806140422821, -0.07169055938720703, 0.01290741004049778, -0.06154346466064453, 0.08179876953363419, -0.004490379244089127, -0.02342383936047554, 0.011206509545445442, -0.012265928089618683, 0.009991579689085484, -0.022743478417396545, -0.03852784261107445, -0.02793365716934204, -0.04813064634799957, 0.015201197005808353, 0.07184606790542603, 0.012644985690712929, 0.028458507731556892, 0.019963720813393593, -0.0043907552026212215, -0.033065520226955414, 0.0063953883945941925, 0.03802243247628212, 0.0249206330627203, -0.007984516210854053, -0.021246686577796936, -0.023637667298316956, -0.024726243689656258, 0.020080354064702988, 0.039305396378040314, -0.09579475969076157, 0.02056632563471794, -0.04844166710972786, 0.0028818126302212477, -0.03613686189055443, 0.02113005332648754, 0.024706805124878883, 0.04070499539375305, 0.03613686189055443, 0.043776337057352066, -0.04529257118701935, -0.017611617222428322, 0.00794563814997673, 0.053767915815114975, 0.06228214502334595, -0.02670900896191597, 0.11422280967235565, -0.014822139404714108, 0.03300720453262329, 0.00023508885351475328, 0.039927441626787186, 0.002631537150591612, 0.052407197654247284, -0.05019116401672363, 0.0019779051654040813, 0.004534116480499506, 0.009243182837963104, 0.020352497696876526, -0.029974739998579025, -0.01476382277905941, 0.01295600738376379, 0.016396688297390938, 0.00971943512558937, 0.041521430015563965, -0.044515013694763184, -0.06834707409143448, 0.01824337989091873, -0.032326843589544296, -0.02521221525967121, 0.011799395084381104, -0.021616024896502495, 0.03380419686436653, 0.004526827018707991, -0.040160708129405975, -0.019399993121623993, -0.017242278903722763, -0.031471531838178635, 0.0072215404361486435, -0.00975345354527235, 0.009578503668308258, -0.02876952849328518, -0.08887451887130737, -0.015201197005808353, -0.025076143443584442, 0.05788895860314369, 0.08576429635286331, -0.008378153666853905, 0.04362082853913307, -0.030538465827703476, -0.009661119431257248, -0.005637272726744413, -0.012450597248971462, 0.03176311403512955, 0.04241561517119408, -0.02915830723941326, 0.010360918007791042, -0.06749176234006882, 0.013101799413561821, -0.012790776789188385, 0.004147768951952457, -0.024745682254433632, 0.028011413291096687, -0.014520836994051933, -0.046031247824430466, 0.022121435031294823, -0.04529257118701935, 0.005510920193046331, -0.04070499539375305, -0.05594507232308388, -0.0203719362616539, -0.012061819434165955, 0.007984516210854053, -0.055128637701272964, -0.01897233910858631, -0.042648881673812866, -0.044009603559970856, 0.008018534630537033, -0.06772502511739731, 0.020857907831668854, 0.002604808658361435, 0.02004147693514824, 0.07468414306640625, 0.007255558855831623, 0.040160708129405975, -0.01844748854637146, 0.03609798476099968, 0.004718786105513573, -0.02952764555811882, -0.050385553389787674, 0.06651981920003891, -0.005360268522053957, -0.01824337989091873, -0.00827609933912754, 0.04012183099985123, -0.05450659617781639, 0.03423185274004936, -0.04575910419225693, -0.02389037236571312, -0.032696180045604706, -0.06064927950501442, -0.031938064843416214, 0.039130449295043945, -0.028128046542406082, -0.011323142796754837, -0.02394868992269039, -0.02511502243578434, -0.0007095187902450562, -0.014802700839936733, 0.022315824404358864, 0.02525109425187111, -0.03821682184934616, 0.002913400763645768, 0.0007240979466587305, 0.003163676243275404, -0.013354504480957985, -0.013228151947259903, 0.007279857061803341, -0.052601587027311325, -0.04206571727991104, -0.006706410553306341, -0.0029376994352787733, -0.019195884466171265, -0.056450482457876205, 0.003705534851178527, -0.03343485668301582, 0.0713406577706337, -0.03539818525314331, 0.001243480248376727, -0.002602378837764263, -0.02614528127014637, -0.04883044585585594, -0.0011669397354125977, 0.040355097502470016, -0.03366812318563461, 0.11857711523771286, -0.018175344914197922, 0.011624445207417011, -0.010720537044107914, 0.02126612514257431, 0.041754696518182755, -0.04435950517654419, -0.03263786435127258, -0.03178255259990692, 0.03139377757906914, -0.04657553508877754, 0.040860507637262344, 0.02690339833498001, 0.04595348984003067, 0.01589127629995346, 0.014987369999289513, -0.010409515351057053, 0.012654704973101616, 0.04568134620785713, -0.0860753208398819, -0.01457915361970663, 0.006589777301996946, -0.021382758393883705, 0.02286011166870594, -0.0023132257629185915, -0.020294182002544403, -0.04813064634799957, -0.01579408347606659, 0.0001457915350329131, 0.005987172480672598, 0.04214347153902054, 0.04482603818178177, 0.0018722062231972814, 0.0018199642654508352, 0.03984968736767769, -0.0020750993862748146, 0.021790973842144012, -0.05326250568032265, -0.01625089719891548, -0.0271366648375988, -0.05229056254029274, 0.01665911264717579, -0.11461158096790314, -0.050346676260232925, 0.03314327448606491, -0.024901194497942924, -0.001705760951153934, 0.019681857898831367, 0.010808012448251247, -0.04840278998017311, 0.021324440836906433, -0.011653603054583073, -0.023676544427871704, -0.05221280828118324, -0.02464848943054676, 0.028186364099383354, 0.011935466900467873, 0.005715027917176485, 0.047391969710588455, 0.05543966218829155, -0.0037298332899808884, -0.0509687215089798, -0.011420336551964283, 0.0003787542518693954, 0.017776846885681152, 0.021752096712589264, -0.036778345704078674, -0.009359816089272499, 0.05586731433868408, 0.030169127508997917, -0.06640318036079407, 0.05085208639502525, 0.020760715007781982, 0.009991579689085484, -0.023773739114403725, -0.016212018206715584, 0.01093436498194933, 0.028439069166779518, 0.02558155357837677, -0.05952182412147522, 0.02525109425187111, -0.007877602241933346, -0.021810414269566536, 0.05769456923007965, 0.001928093028254807, -0.006147542968392372, -0.003224422689527273, 0.06535348296165466, -0.11064605414867401, -0.02764207497239113, 0.013101799413561821, -0.0005318353651091456, 0.09353984892368317, 0.04754747822880745, 0.04914146661758423, -0.04156030714511871, -0.056022826582193375, -0.02797253616154194, 0.049024831503629684, 0.04435950517654419, -0.08428694307804108, 0.02915830723941326, -0.050113409757614136, 0.04156030714511871, -0.03981080651283264, 0.023637667298316956, 0.00907309353351593, -0.008217782713472843, 0.029838666319847107, -0.026650693267583847, -0.006667532958090305, 0.04781962186098099, -0.018632158637046814, -0.011177350766956806, -0.02740880846977234, 0.07172943651676178, 0.011303703300654888, 0.04688655585050583, 0.03920820355415344, 0.013937670737504959, -0.020410815253853798, -0.04890820011496544, 0.008781510405242443, 0.011585567146539688, -0.02989698387682438, -0.011284264735877514, -0.004274121951311827, 0.012538071721792221, 0.026825642213225365, 0.01711592637002468, -0.015376146882772446, -0.044281747192144394, 0.06002723425626755, -0.05501200631260872, -0.023579351603984833, 0.04801401123404503, 0.04226010665297508, 0.014608311466872692, -0.008781510405242443, 0.044903792440891266, -0.001369225443340838, 0.046731047332286835, 0.04202684015035629, -0.00007099744107108563, -0.02521221525967121, -0.05182402953505516, 0.07655027508735657, 0.02849738486111164, 0.02750600315630436, -0.05345689505338669, -0.002398270647972822, 0.020177548751235008, -0.040821630507707596, 0.037380948662757874, 0.01347113773226738, 0.052834853529930115, 0.054428838193416595, -0.031004998832941055, -0.034853894263505936, 0.018768230453133583, 0.01655219867825508, 0.04051060602068901, -0.011828552931547165, 0.01844748854637146, 0.010769134387373924, 0.029469328001141548, -0.03567032888531685, 0.02140219695866108, -0.04047172889113426, 0.022918429225683212, 0.05956070125102997, -0.08856349438428879, -0.06325408816337585, -0.02385149523615837, 0.017961516976356506, -0.003190404735505581, 0.02070239745080471, -0.06620879471302032, -0.03242403641343117, -0.028886161744594574, -0.030907806009054184, 0.000009615027920517605, -0.03184087201952934, 0.030538465827703476, -0.012887971475720406, 0.019788770005106926, -0.0265729371458292, -0.00339208310469985, 0.021441074088215828, -0.01189658883959055, -0.011449495330452919, -0.03046071156859398, 0.04171581566333771, 0.011459214612841606, -0.004218235146254301, -0.02740880846977234, -0.027020031586289406, -0.04397072643041611, 0.017426947131752968, -0.03874167054891586, -0.0184183306992054, -0.06799717247486115, -0.021557707339525223, -0.009923543781042099, -0.0027408809401094913, 0.038275137543678284, 0.03244347497820854, -0.041288163512945175, 0.044670525938272476, -0.024609610438346863, -0.03176311403512955, -0.01420009508728981, 0.04778074473142624, -0.019924843683838844, 0.007877602241933346, 0.05143525451421738, 0.0006815754459239542, 0.019157007336616516, -0.029585961252450943, 0.014977649785578251, 0.0023302347399294376, -0.03394027054309845, -0.030480150133371353, -0.05959957838058472, -0.020916225388646126, -0.07378995418548584, 0.10263723880052567, -0.06158234551548958, 0.02587313763797283, 0.00009400516864843667, -0.015074844472110271, 0.04124928638339043, -0.009529906325042248, 0.040393974632024765, 0.02243245765566826, -0.020760715007781982, 0.03874167054891586, -0.029644278809428215, 0.01525951363146305, -0.028283556923270226, 0.030382955446839333, 0.014880456030368805, -0.020488569512963295, 0.020780153572559357, -0.0036229195538908243, -0.0009500748128630221, -0.021907607093453407, 0.003005735343322158, 0.02909998968243599, 0.017669934779405594, 0.003987398464232683, 0.003525725333020091, -0.0039315116591751575, -0.02153826877474785, 0.05334026366472244, 0.02764207497239113, 0.0367589071393013, 0.005987172480672598, 0.001483428874053061, -0.01615370251238346, -0.011021840386092663, 0.010117932222783566, -0.017232559621334076, 0.015356708317995071, -0.015006808564066887, -0.040160708129405975, -0.05979396775364876, 0.03512604162096977, 0.05186290666460991, -0.06811380386352539, -0.049685753881931305, -0.07071861624717712, -0.05178515240550041, -0.023268328979611397, -0.005321390926837921, -0.003768711118027568, -0.0009367106249555945, -0.011352300643920898, 0.04731421172618866, -0.00018633980653248727, -0.008961319923400879, -0.05742242559790611, 0.00018117635045200586, 0.007571440190076828, 0.07639476656913757, 0.01748526468873024, -0.01931251771748066, -0.05108535289764404, 0.03539818525314331, -0.0144333615899086, -0.003525725333020091, 0.007960218004882336, 0.020819030702114105, -0.026456303894519806, 0.008718334138393402, -0.003882914548739791, 0.033259909600019455, -0.006584917660802603, 0.0013753001112490892, 0.060338255017995834, -0.06597553193569183, -0.003588901599869132, 0.021479953080415726, -0.012081257998943329, 0.013441978953778744, -0.002648546127602458, -0.010370638221502304, 0.05334026366472244, -0.03660339489579201, -0.03226852789521217, -0.038333453238010406, 0.006575198378413916, 0.03219076991081238, 0.05505088344216347, 0.011187070049345493, 0.018700193613767624, -0.054700981825590134, 0.009364675730466843, -0.021907607093453407, 0.00794563814997673, 0.05279597267508507, 0.021674340590834618, -0.008421891368925571, 0.00606492767110467, 0.01403486542403698, 0.03782804310321808, 0.008203203789889812, 0.017806006595492363, 0.026359109207987785, -0.01494849193841219, -0.018272539600729942, -0.012372841127216816, 0.06912462413311005, 0.0063613704405725, 0.030169127508997917, 0.00602119043469429, 0.046303391456604004, -0.039694175124168396, -0.023812618106603622, 0.03151040896773338, 0.0031976941972970963, -0.04711982235312462, -0.0011535754892975092, -0.0429210290312767, 0.023268328979611397, 0.0021115473937243223, -0.03238515928387642, 0.02412363886833191, -0.0039946879260241985, -0.03230740502476692, -0.010759415104985237, 0.016902098432183266, -0.025756504386663437, 0.014345887117087841, -0.004497668705880642, 0.010914926417171955, 0.06663645058870316, 0.060804788023233414, 0.0283029954880476, 0.03046071156859398, 0.004327578470110893, 0.027253298088908195 ]
20,443
resampy.core
resample_nu
Interpolate a signal x at specified positions (t_out) along a given axis. Parameters ---------- x : np.ndarray, dtype=np.float* The input signal(s) to resample. sr_orig : float Sampling rate of the input signal (x). t_out : np.ndarray, dtype=np.float* Position of the output samples. axis : int The target axis along which to resample `x` filter : optional, str or callable The resampling filter to use. By default, uses the `kaiser_best` (pre-computed filter). parallel : optional, bool Enable/disable parallel computation exploiting multi-threading. Default: True. **kwargs additional keyword arguments provided to the specified filter Returns ------- y : np.ndarray `x` resampled to `t_out` Raises ------ TypeError if the input signal `x` has an unsupported data type. Notes ----- Differently form the `resample` function the filter `rolloff` is not automatically adapted in case of subsampling. For this reason results obtained with the `resample_nu` could be slightly different form the ones obtained with `resample` if the filter parameters are not carefully set by the user. Examples -------- >>> import resampy >>> np.set_printoptions(precision=3, suppress=True) >>> # Generate a sine wave at 100 Hz for 5 seconds >>> sr_orig = 100.0 >>> f0 = 1 >>> t = np.arange(5 * sr_orig) / sr_orig >>> x = np.sin(2 * np.pi * f0 * t) >>> x array([ 0. , 0.063, 0.125, ..., -0.187, -0.125, -0.063]) >>> # Resample to non-uniform sampling >>> t_new = np.log2(1 + t)[::5] - t[0] >>> resampy.resample_nu(x, sr_orig, t_new) array([ 0.001, 0.427, 0.76 , ..., -0.3 , -0.372, -0.442])
def resample_nu( x, sr_orig, t_out, axis=-1, filter="kaiser_best", parallel=False, **kwargs ): """Interpolate a signal x at specified positions (t_out) along a given axis. Parameters ---------- x : np.ndarray, dtype=np.float* The input signal(s) to resample. sr_orig : float Sampling rate of the input signal (x). t_out : np.ndarray, dtype=np.float* Position of the output samples. axis : int The target axis along which to resample `x` filter : optional, str or callable The resampling filter to use. By default, uses the `kaiser_best` (pre-computed filter). parallel : optional, bool Enable/disable parallel computation exploiting multi-threading. Default: True. **kwargs additional keyword arguments provided to the specified filter Returns ------- y : np.ndarray `x` resampled to `t_out` Raises ------ TypeError if the input signal `x` has an unsupported data type. Notes ----- Differently form the `resample` function the filter `rolloff` is not automatically adapted in case of subsampling. For this reason results obtained with the `resample_nu` could be slightly different form the ones obtained with `resample` if the filter parameters are not carefully set by the user. Examples -------- >>> import resampy >>> np.set_printoptions(precision=3, suppress=True) >>> # Generate a sine wave at 100 Hz for 5 seconds >>> sr_orig = 100.0 >>> f0 = 1 >>> t = np.arange(5 * sr_orig) / sr_orig >>> x = np.sin(2 * np.pi * f0 * t) >>> x array([ 0. , 0.063, 0.125, ..., -0.187, -0.125, -0.063]) >>> # Resample to non-uniform sampling >>> t_new = np.log2(1 + t)[::5] - t[0] >>> resampy.resample_nu(x, sr_orig, t_new) array([ 0.001, 0.427, 0.76 , ..., -0.3 , -0.372, -0.442]) """ if sr_orig <= 0: raise ValueError("Invalid sample rate: sr_orig={}".format(sr_orig)) t_out = np.asarray(t_out) if t_out.ndim != 1: raise ValueError( "Invalid t_out shape ({}), 1D array expected".format(t_out.shape) ) if np.min(t_out) < 0 or np.max(t_out) > (x.shape[axis] - 1) / sr_orig: raise ValueError( "Output domain [{}, {}] exceeds the data domain [0, {}]".format( np.min(t_out), np.max(t_out), (x.shape[axis] - 1) / sr_orig ) ) # Set up the output shape shape = list(x.shape) shape[axis] = len(t_out) if np.issubdtype(x.dtype, np.integer): dtype = np.float32 else: dtype = x.dtype y = np.zeros_like(x, dtype=dtype, shape=shape) interp_win, precision, _ = get_filter(filter, **kwargs) interp_delta = np.diff(interp_win, append=interp_win[-1]) # Normalize t_out if sr_orig != 1.0: t_out = t_out * sr_orig if parallel: try: resample_f_p( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, 1.0, y.swapaxes(-1, axis), ) except numba.TypingError as exc: warnings.warn( f"{exc}\nFallback to the sequential version.", stacklevel=2) resample_f_s( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, 1.0, y.swapaxes(-1, axis), ) else: resample_f_s( x.swapaxes(-1, axis), t_out, interp_win, interp_delta, precision, 1.0, y.swapaxes(-1, axis), ) return y
(x, sr_orig, t_out, axis=-1, filter='kaiser_best', parallel=False, **kwargs)
[ -0.008769646286964417, -0.023551668971776962, 0.02898961491882801, 0.021981557831168175, -0.00087421212811023, 0.008918040432035923, -0.05870684236288071, -0.012675776146352291, 0.04564811289310455, -0.014245887286961079, 0.02640467695891857, -0.006615529768168926, 0.04093778133392334, 0.029219387099146843, -0.014494807459414005, 0.05139242112636566, -0.06456603854894638, 0.05863025411963463, -0.006112902890890837, 0.005725161638110876, 0.0005325453821569681, -0.03281915560364723, -0.0264812670648098, 0.061119452118873596, -0.016198953613638878, -0.0342935286462307, 0.020449742674827576, -0.07391011714935303, -0.08631782233715057, -0.02023911662399769, 0.025887688621878624, -0.014743727631866932, 0.01853497140109539, -0.05288594216108322, 0.026998255401849747, -0.038582611829042435, -0.055413439869880676, 0.009602570906281471, -0.03712738677859306, 0.0005887917359359562, 0.011766260489821434, -0.07375693321228027, 0.0239346232265234, 0.0021493290551006794, 0.019090255722403526, 0.07172727584838867, -0.027208879590034485, 0.01568196527659893, 0.013298076577484608, 0.04790754243731499, 0.04986060783267021, -0.0420866422355175, -0.03268511965870857, 0.029793819412589073, -0.02023911662399769, 0.0662127435207367, -0.014686284586787224, 0.03536579757928848, 0.03948255255818367, -0.04419288784265518, 0.015519209206104279, -0.004521250259131193, 0.01595003344118595, 0.05552832409739494, 0.010636546649038792, 0.011048221960663795, -0.03607426583766937, -0.02437501959502697, -0.00048138509737327695, -0.005208174232393503, -0.010895040817558765, 0.01796054095029831, 0.016524463891983032, -0.015299011021852493, 0.023877179250121117, 0.07770135998725891, -0.047371406108140945, 0.0004894630401395261, -0.04216323047876358, -0.03743375092744827, 0.0380273275077343, 0.0702720507979393, 0.005232108756899834, 0.03350847214460373, -0.01223537977784872, -0.03201495110988617, -0.048903223127126694, -0.022804908454418182, -0.021387979388237, -0.03881238400936127, -0.01890835165977478, 0.004657677840441465, 0.06437456607818604, 0.047103337943553925, 0.0007000877521932125, -0.014245887286961079, -0.04637572541832924, -0.008559021167457104, 0.0037481619510799646, -0.041741982102394104, 0.035461537539958954, -0.016313839703798294, -0.04756288230419159, 0.024394167587161064, 0.06468092650175095, 0.04009528085589409, 0.005969294812530279, 0.041703686118125916, -0.017299946397542953, 0.017299946397542953, 0.05449435114860535, 0.02841518446803093, -0.076016366481781, -0.01159393135458231, -0.05552832409739494, -0.01785522885620594, -0.03268511965870857, 0.07126773148775101, 0.0005849023582413793, -0.005184239242225885, 0.013556570746004581, 0.05522196367383003, -0.03978891670703888, 0.002386281965300441, -0.010521660558879375, -0.06521706283092499, 0.04744799807667732, 0.04193345829844475, -0.016151083633303642, 0.010071689262986183, -0.04457584396004677, 0.04086118936538696, -0.04492050036787987, 0.028644956648349762, 0.0008269412210211158, 0.027132289484143257, 0.000044241656723897904, 0.07777795195579529, -0.0222304780036211, -0.050090380012989044, 0.0006016566185280681, 0.026194050908088684, -0.007419733330607414, 0.02586854062974453, 0.09964462369680405, 0.001616783789359033, 0.06265126913785934, 0.09313440322875977, 0.03731886297464371, 0.01223537977784872, -0.057519685477018356, 0.04637572541832924, 0.029315127059817314, 0.007721309550106525, 0.025140928104519844, -0.033316995948553085, -0.001547373365610838, 0.021273093298077583, -0.0498989038169384, -0.0034298314712941647, -0.030195919796824455, 0.019779572263360023, -0.0237622931599617, -0.015385176055133343, -0.025370700284838676, -0.021464569494128227, 0.011766260489821434, 0.039023008197546005, 0.02583024464547634, -0.023092124611139297, 0.007793113123625517, -0.060506727546453476, -0.025849392637610435, -0.019291305914521217, 0.0033149453811347485, 0.05020526424050331, 0.014312904328107834, -0.0319000668823719, -0.0593961626291275, 0.037969887256622314, 0.028453480452299118, -0.01653403788805008, -0.036304038017988205, -0.03684017062187195, -0.05683036893606186, 0.019837016239762306, 0.03482966497540474, -0.04189516603946686, 0.0029056633356958628, -0.017443552613258362, 0.0950491726398468, 0.004064098931849003, -0.04296743497252464, -0.0332595519721508, 0.014150149188935757, -0.03492540121078491, -0.043809935450553894, 0.006538939196616411, 0.05809411779046059, 0.005279977805912495, -0.0027716292534023523, -0.011479045264422894, 0.028664104640483856, 0.024394167587161064, -0.05717502906918526, -0.06192365661263466, 0.028166264295578003, 0.034542448818683624, -0.061119452118873596, 0.03347017616033554, 0.04254618659615517, -0.0502435602247715, 0.005045418627560139, -0.009363224729895592, -0.021713489666581154, 0.10309121012687683, -0.011957737617194653, -0.01798926293849945, 0.03672528639435768, -0.001074066269211471, 0.007965442724525928, -0.0325893834233284, -0.007649505510926247, 0.0058113266713917255, 0.05529855191707611, -0.011325864121317863, 0.026155756786465645, 0.007951081730425358, 0.026596153154969215, -0.0791182890534401, 0.030061887577176094, 0.05104776471853256, 0.026902517303824425, -0.025906836614012718, 0.027132289484143257, -0.041703686118125916, 0.04101436957716942, -0.030846942216157913, 0.008343609981238842, 0.01144075021147728, -0.02209644392132759, -0.0031402225140482187, -0.03299148380756378, -0.03651466220617294, -0.015739407390356064, -0.015241567976772785, 0.028472628444433212, 0.07996078580617905, 0.014944778755307198, 0.01350870169699192, 0.014628841541707516, 0.0008161706500686705, -0.03726142272353172, -0.00001529572000436019, 0.010416348464787006, 0.044078003615140915, 0.030368249863386154, -0.009248338639736176, -0.010885466821491718, -0.013642734847962856, 0.013336371630430222, -0.004152656998485327, -0.06326399743556976, 0.0049640410579741, -0.05449435114860535, -0.024738825857639313, -0.05748138949275017, -0.009205255657434464, 0.016036197543144226, 0.04476732015609741, -0.011163108050823212, 0.0675530806183815, -0.0376826710999012, -0.05529855191707611, 0.01829562522470951, 0.0498989038169384, 0.08570510149002075, -0.01910940371453762, 0.09083668142557144, -0.002733333967626095, 0.015844721347093582, -0.027304617688059807, 0.03967403247952461, -0.013949098065495491, 0.021636899560689926, -0.06697864830493927, -0.0010172214824706316, 0.00451646326109767, 0.013575717806816101, -0.007228256203234196, -0.0029822541400790215, -0.00994722917675972, 0.012991713359951973, 0.00023844868701417, 0.0017364568775519729, 0.02542814426124096, -0.0760546550154686, -0.060276955366134644, 0.027553537860512733, -0.029678933322429657, -0.016610627993941307, 0.01741483248770237, -0.04246959462761879, 0.01853497140109539, 0.022728318348526955, -0.022958090528845787, -0.008669120259582996, -0.013269355520606041, -0.03324040398001671, -0.003420257708057761, -0.0027644489891827106, -0.005715588107705116, -0.021598603576421738, -0.10469961911439896, -0.025102632120251656, -0.005433159414678812, 0.04331209510564804, 0.08003737777471542, -0.011526914313435555, 0.03578704968094826, -0.01972213014960289, 0.004116754978895187, 0.016878696158528328, -0.01704145222902298, 0.03297233581542969, 0.024451611563563347, -0.02868325263261795, 0.012560890056192875, -0.06357035785913467, 0.009956803172826767, 0.0018393758218735456, -0.005102861672639847, -0.0329148955643177, 0.03618915006518364, -0.03948255255818367, -0.04867345094680786, 0.03523176535964012, -0.05280935391783714, 0.0023300356697291136, -0.02810882218182087, -0.06862535327672958, 0.01690741814672947, -0.034063756465911865, 0.020890139043331146, -0.05522196367383003, -0.011191830039024353, -0.04852026700973511, -0.03324040398001671, 0.05047333240509033, -0.006424052640795708, 0.03821880742907524, 0.03092353232204914, 0.028913024812936783, 0.07153580337762833, 0.007668653037399054, 0.07084648311138153, 0.004377642646431923, 0.018343495205044746, 0.01183327753096819, -0.023609112948179245, -0.08210533112287521, 0.051009468734264374, 0.015643669292330742, -0.017912672832608223, 0.05212003365159035, 0.005796965677291155, -0.0016814073314890265, 0.046490613371133804, -0.03149796277284622, 0.008779219351708889, -0.046758681535720825, -0.0733356848359108, -0.027706719934940338, 0.03069376014173031, -0.02117735520005226, -0.030195919796824455, -0.015940459445118904, -0.0553368479013443, -0.008094689808785915, -0.024164395406842232, 0.010492938570678234, 0.018506251275539398, -0.03982721269130707, 0.006371396593749523, 0.0033604211639612913, -0.009147812612354755, -0.0033795686904340982, -0.002227116608992219, 0.01836264319717884, -0.05889832228422165, -0.0137480478733778, -0.014159723185002804, 0.01633298769593239, -0.018554119393229485, -0.056906960904598236, -0.011029073968529701, -0.05089458450675011, 0.05089458450675011, -0.035155173391103745, -0.0024090197402983904, -0.02420269139111042, -0.027955640107393265, -0.017529718577861786, 0.022690022364258766, 0.030042739585042, -0.02023911662399769, 0.08693055063486099, -0.05135412886738777, 0.043771639466285706, -0.02389632724225521, -0.005356568843126297, 0.038850679993629456, -0.014255461283028126, -0.05472412332892418, -0.020756104961037636, 0.04400141164660454, -0.05319230630993843, 0.0010160247329622507, 0.002140952041372657, 0.011373733170330524, 0.002436544746160507, 0.008075541816651821, 0.010895040817558765, 0.03536579757928848, 0.08356055617332458, -0.10140620917081833, 0.009741391986608505, -0.015997901558876038, -0.014705432578921318, 0.061464112251996994, -0.00584004819393158, -0.028453480452299118, -0.045341748744249344, -0.012608759105205536, 0.030732056125998497, 0.013010861352086067, 0.04522686451673508, 0.015030943788588047, -0.0059070647694170475, 0.007840982638299465, 0.009722243994474411, 0.03276171162724495, 0.019090255722403526, -0.054877303540706635, 0.001287682680413127, -0.005868769716471434, -0.058438774198293686, 0.0018908352358266711, -0.1059250682592392, -0.05472412332892418, 0.03955914452672005, -0.02257513627409935, -0.008788793347775936, 0.010770580731332302, 0.01082802377641201, -0.07260807603597641, 0.013345945626497269, -0.026825925335288048, -0.031249044463038445, -0.031249044463038445, -0.03672528639435768, 0.03333614394068718, 0.03502114117145538, -0.03521261736750603, 0.0661744475364685, 0.02200070582330227, 0.01308745238929987, -0.04867345094680786, 0.005945360288023949, -0.021196503192186356, -0.0036763581447303295, 0.033144667744636536, -0.04158880189061165, 0.005897491239011288, 0.029927853494882584, 0.019875310361385345, -0.06188536062836647, 0.06544683128595352, 0.029315127059817314, -0.005265617277473211, -0.021158207207918167, 0.0010082459775730968, 0.03034910187125206, 0.04691186174750328, 0.006649038288742304, -0.021292241290211678, 0.04185687005519867, -0.015337306074798107, 0.017500996589660645, 0.048328790813684464, -0.004806072451174259, -0.006558086723089218, 0.005126796197146177, 0.07337398082017899, -0.11986459046602249, -0.024585645645856857, 0.012110919691622257, 0.0030253364238888025, 0.07950124144554138, 0.04335039108991623, 0.05269446596503258, -0.01412142813205719, -0.03174688294529915, -0.010512086562812328, 0.036265742033720016, 0.032570235431194305, -0.08815600723028183, 0.037931591272354126, -0.048596858978271484, 0.03251279145479202, -0.04063141718506813, 0.021062469109892845, 0.0241069532930851, -0.020488036796450615, 0.04335039108991623, -0.020928435027599335, -0.03021506778895855, 0.01595003344118595, -0.006955401506274939, -0.016859548166394234, -0.030846942216157913, 0.06337888538837433, 0.0038917697966098785, 0.04354186728596687, 0.05660059675574303, 0.04396311566233635, -0.006400118116289377, -0.018209461122751236, -0.006414479110389948, 0.02437501959502697, -0.04296743497252464, -0.04212493821978569, 0.0030827794689685106, -0.027687571942806244, 0.019779572263360023, -0.0026375954039394855, -0.030253363773226738, -0.048290494829416275, 0.06877852976322174, -0.028127968311309814, -0.02688336931169033, 0.05556662008166313, 0.07479090988636017, -0.006735202856361866, 0.004712727386504412, 0.034676481038331985, -0.019253011792898178, 0.07180386781692505, 0.034714777022600174, 0.017635030671954155, -0.01130671612918377, -0.06157900020480156, 0.09972121566534042, 0.04465243220329285, 0.012666202150285244, -0.014063984155654907, -0.007745244074612856, 0.05855366215109825, -0.05560491606593132, 0.005940573289990425, 0.007659079506993294, 0.046528905630111694, 0.034331824630498886, -0.02230706810951233, -0.049439359456300735, 0.018085001036524773, 0.04894151911139488, 0.006199067458510399, -0.01546176616102457, 0.023475078865885735, -0.012656629085540771, 0.007874490693211555, -0.03670613840222359, 0.021981557831168175, -0.03781670331954956, 0.037701819092035294, 0.084173284471035, -0.10875892639160156, -0.055758100003004074, -0.05162219703197479, 0.010291888378560543, -0.016878696158528328, 0.01948278397321701, -0.06226831674575806, -0.0018094575498253107, -0.02851092256605625, -0.03534665331244469, -0.01271407213062048, -0.04580129310488701, 0.021292241290211678, 0.007228256203234196, 0.013326798565685749, -0.030253363773226738, 0.019645538181066513, 0.03038739785552025, -0.020085936412215233, -0.03421693667769432, -0.02023911662399769, 0.06847216933965683, 0.007802687119692564, 0.008152132853865623, -0.010799301788210869, -0.03649551421403885, -0.05146901309490204, 0.022383660078048706, -0.05081799253821373, -0.031995803117752075, -0.0872369110584259, -0.0016407184302806854, -0.028223708271980286, 0.028338594362139702, 0.023647407069802284, 0.005758670158684254, -0.026519563049077988, 0.03517432138323784, -0.015423471108078957, -0.03312551975250244, -0.015490488149225712, 0.049554243683815, -0.017338240519165993, 0.023264452815055847, 0.07107625901699066, 0.010445069521665573, 0.017223354429006577, 0.006342675071209669, 0.015184124931693077, 0.016476593911647797, -0.0273237656801939, -0.018276479095220566, -0.04151220992207527, -0.014159723185002804, -0.050664808601140976, 0.07754817605018616, -0.03825710341334343, 0.004920958541333675, -0.005031057633459568, -0.0222304780036211, 0.03613170608878136, -0.04641402140259743, 0.006778285373002291, 0.016744662076234818, -0.0106939896941185, 0.05403480678796768, -0.013920377008616924, 0.04633742943406105, -0.0342743806540966, 0.017816932871937752, 0.013719325885176659, -0.020794400945305824, 0.024183543398976326, 0.005816113203763962, 0.012809810228645802, 0.012723646126687527, 0.003410683711990714, -0.01036847848445177, 0.04063141718506813, 0.0006199067574925721, 0.020756104961037636, 0.019128551706671715, 0.0006611939752474427, 0.012790662236511707, 0.021311389282345772, -0.004801285453140736, 0.007587275467813015, 0.01972213014960289, -0.0224028080701828, -0.025638768449425697, -0.008707416243851185, -0.04223982244729996, 0.0073957983404397964, -0.025906836614012718, -0.005543258506804705, -0.028970468789339066, 0.02977467142045498, 0.07371863722801208, -0.06598296761512756, -0.03948255255818367, -0.05886002629995346, -0.06678717583417892, -0.023819737136363983, -0.013020435348153114, -0.03308722376823425, -0.0040856399573385715, 0.0106939896941185, 0.02763012982904911, -0.0071133701130747795, -0.010330183431506157, -0.054570939391851425, 0.007807474117726088, 0.01016742829233408, 0.07819920033216476, 0.029410865157842636, -0.03913789615035057, -0.019071107730269432, 0.059013206511735916, -0.01822860911488533, 0.009908934123814106, 0.02613660879433155, 0.03720397874712944, -0.01172796543687582, 0.0353083573281765, -0.03214898705482483, 0.03881238400936127, -0.002148132538422942, 0.008549447171390057, 0.07701204717159271, -0.040784597396850586, -0.03479136899113655, 0.001328371581621468, 0.0038750155363231897, -0.0024209872353821993, -0.010971630923449993, 0.006342675071209669, 0.05116264894604683, -0.04361845552921295, -0.022498546168208122, -0.03163199871778488, 0.016131935641169548, 0.002656743163242936, 0.04909469932317734, 0.008889319375157356, 0.0005852015456184745, -0.05254128575325012, 0.02328360080718994, -0.022115591913461685, 0.03720397874712944, 0.0171371903270483, 0.010244018398225307, -0.01159393135458231, 0.03295318782329559, 0.03347017616033554, 0.034504152834415436, 0.024164395406842232, -0.009564275853335857, 0.023417634889483452, -0.02050718478858471, -0.01581599935889244, 0.0030708122067153454, -0.0036165216006338596, -0.017529718577861786, 0.030061887577176094, -0.015002221800386906, 0.04250789061188698, -0.043235503137111664, 0.0023611506912857294, 0.03613170608878136, 0.006194280460476875, -0.03865920379757881, 0.00534699484705925, -0.024279281497001648, 0.031689442694187164, 0.014896909706294537, -0.05709843710064888, 0.03266597539186478, 0.045303456485271454, -0.025045190006494522, 0.017405258491635323, -0.004468594212085009, -0.037529490888118744, 0.0044997092336416245, -0.01183327753096819, 0.029410865157842636, 0.06058331951498985, 0.055719804018735886, 0.011842851527035236, 0.021426275372505188, 0.00013373470574151725, -0.010464217513799667 ]
20,445
metevolsim.metevolsim
MCMC
The MCMC class runs a Monte-Carlo Markov Chain (MCMC) evolution experiment on a SBML model, with cycles of mutations and fixations depending on a given selection threshold. Attributes ---------- > sbml_filename : str Name of the SBML model file. > total_iterations : int > 0 Total number of MCMC iterations. > sigma : float > 0.0 Standard deviation of the Log10-normal mutational distribution. > selection_scheme : str Selection scheme ('MUTATION_ACCUMULATION'/'ABSOLUTE_METABOLIC_SUM_SELECTION'/ 'ABSOLUTE_TARGET_FLUXES_SELECTION'/'RELATIVE_TARGET_FLUXES_SELECTION'). > selection_threshold : str Selection threshold applied on the MOMA distance. > copasi_path : str Location of Copasi executable. > model : Model SBML Model (automatically loaded from the SBML file). > nb_iterations : int Current number of iterations. > nb_accepted : int Current number of accepted mutations. > nb_rejected : int Current number of rejected mutations. > param_metaid : str Last mutated parameter meta identifier. > param_id : str Last mutated parameter identifier. > param_value : float Last mutated parameter value. > param_previous : float Parameter value before mutation. > N_abund : float Number of variable species. > wild_type_abund : numpy array Wild-type abundances tracker. > wild_type_flux : numpy array Wild-type fluxes tracker. > mutant_abund : numpy array Mutant abundances tracker. > mutant_flux : numpy array Mutant fluxes tracker. > sum_abund : numpy array Sum of abundances tracker. > sqsum_abund : numpy array Square sum of abundances tracker. > sum_flux : numpy array Sum of fluxes tracker. > relsum_flux : numpy array Sum of fluxes relatively to the wild-type tracker. > sqsum_flux : numpy array Square sum of fluxes tracker. > relsqsum_flux : numpy array Square sum of fluxes relatively to the wild-type tracker. > mean_abund : numpy array Mean abundances tracker. > var_abund : numpy array Variance of abundances tracker. > CV_abund : numpy array Coefficient of variation of abundances tracker. > ER_abund : numpy array Evolution rate of abundances tracker. > mean_flux : numpy array Mean fluxes tracker. > var_flux : numpy array Variance of fluxes tracker. > CV_flux : numpy array Coefficient of variation of fluxes tracker. > ER_flux : numpy array Evolution rate of fluxes tracker. > previous_abund : numpy array Previous abundances tracker. > previous_flux : numpy array Previous fluxes tracker. > output_file : file Output file tracking each MCMC algorithm iteration. Methods ------- > __init__(sbml_filename, target_fluxes, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path) MCMC class constructor. > initialize_output_file() Initialize the output file (write the header). > write_output_file() Write the current MCMC state in the output file. > update_statistics() Update statistics trackers for the current state. > compute_statistics() Compute final statistics. > write_statistics() Write final statistics in an output file (output/statistics.txt). > initialize() Initialize the MCMC algorithm. > reload_previous_state() Reload the previous MCMC state. > iterate() Iterate the MCMC algorithm.
class MCMC: """ The MCMC class runs a Monte-Carlo Markov Chain (MCMC) evolution experiment on a SBML model, with cycles of mutations and fixations depending on a given selection threshold. Attributes ---------- > sbml_filename : str Name of the SBML model file. > total_iterations : int > 0 Total number of MCMC iterations. > sigma : float > 0.0 Standard deviation of the Log10-normal mutational distribution. > selection_scheme : str Selection scheme ('MUTATION_ACCUMULATION'/'ABSOLUTE_METABOLIC_SUM_SELECTION'/ 'ABSOLUTE_TARGET_FLUXES_SELECTION'/'RELATIVE_TARGET_FLUXES_SELECTION'). > selection_threshold : str Selection threshold applied on the MOMA distance. > copasi_path : str Location of Copasi executable. > model : Model SBML Model (automatically loaded from the SBML file). > nb_iterations : int Current number of iterations. > nb_accepted : int Current number of accepted mutations. > nb_rejected : int Current number of rejected mutations. > param_metaid : str Last mutated parameter meta identifier. > param_id : str Last mutated parameter identifier. > param_value : float Last mutated parameter value. > param_previous : float Parameter value before mutation. > N_abund : float Number of variable species. > wild_type_abund : numpy array Wild-type abundances tracker. > wild_type_flux : numpy array Wild-type fluxes tracker. > mutant_abund : numpy array Mutant abundances tracker. > mutant_flux : numpy array Mutant fluxes tracker. > sum_abund : numpy array Sum of abundances tracker. > sqsum_abund : numpy array Square sum of abundances tracker. > sum_flux : numpy array Sum of fluxes tracker. > relsum_flux : numpy array Sum of fluxes relatively to the wild-type tracker. > sqsum_flux : numpy array Square sum of fluxes tracker. > relsqsum_flux : numpy array Square sum of fluxes relatively to the wild-type tracker. > mean_abund : numpy array Mean abundances tracker. > var_abund : numpy array Variance of abundances tracker. > CV_abund : numpy array Coefficient of variation of abundances tracker. > ER_abund : numpy array Evolution rate of abundances tracker. > mean_flux : numpy array Mean fluxes tracker. > var_flux : numpy array Variance of fluxes tracker. > CV_flux : numpy array Coefficient of variation of fluxes tracker. > ER_flux : numpy array Evolution rate of fluxes tracker. > previous_abund : numpy array Previous abundances tracker. > previous_flux : numpy array Previous fluxes tracker. > output_file : file Output file tracking each MCMC algorithm iteration. Methods ------- > __init__(sbml_filename, target_fluxes, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path) MCMC class constructor. > initialize_output_file() Initialize the output file (write the header). > write_output_file() Write the current MCMC state in the output file. > update_statistics() Update statistics trackers for the current state. > compute_statistics() Compute final statistics. > write_statistics() Write final statistics in an output file (output/statistics.txt). > initialize() Initialize the MCMC algorithm. > reload_previous_state() Reload the previous MCMC state. > iterate() Iterate the MCMC algorithm. """ ### Constructor ### def __init__( self, sbml_filename, objective_function, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path ): """ MCMC class constructor. Parameters ---------- sbml_filename : str Path of the SBML model file. The SBML model is automatically loaded. objective_function : list of [str, float] Objective function (list of reaction identifiers and coefficients). total_iterations : int > 0 Total number of MCMC iterations. sigma : float > 0.0 Standard deviation of the Log10-normal mutational distribution. selection_scheme : str Selection scheme ('MUTATION_ACCUMULATION'/'ABSOLUTE_METABOLIC_SUM_SELECTION'/ 'ABSOLUTE_TARGET_FLUXES_SELECTION'/'RELATIVE_TARGET_FLUXES_SELECTION'). selection_threshold : float > 0.0 Selection threshold applied on the MOMA distance. copasi_path : str Location of Copasi executable. Returns ------- None """ assert os.path.isfile(sbml_filename), "The SBML file \""+sbml_filename+"\" does not exist. Exit." assert len(objective_function) > 0, "You must provide at least one reaction in the objective function. Exit." assert total_iterations > 0, "The total number of iterations must be a positive nonzero value. Exit." assert sigma > 0.0, "The mutation size 'sigma' must be a positive nonzero value. Exit." assert selection_scheme in ["MUTATION_ACCUMULATION", "ABSOLUTE_METABOLIC_SUM_SELECTION", "ABSOLUTE_TARGET_FLUXES_SELECTION", "RELATIVE_TARGET_FLUXES_SELECTION", "ABSOLUTE_ALL_FLUXES_SELECTION", "RELATIVE_ALL_FLUXES_SELECTION"], "The selection scheme takes two values only (MUTATION_ACCUMULATION / ABSOLUTE_METABOLIC_SUM_SELECTION / ABSOLUTE_TARGET_FLUXES_SELECTION / RELATIVE_TARGET_FLUXES_SELECTION / ABSOLUTE_ALL_FLUXES_SELECTION / RELATIVE_ALL_FLUXES_SELECTION). Exit." assert os.path.isfile(copasi_path), "The executable \""+copasi_path+"\" does not exist. Exit." #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 1) Main MCMC parameters # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.sbml_filename = sbml_filename self.total_iterations = total_iterations self.sigma = sigma self.selection_scheme = selection_scheme self.selection_threshold = selection_threshold self.copasi_path = copasi_path #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 2) SBML model # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.model = Model(sbml_filename, objective_function, copasi_path) #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 3) Current state tracking # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.nb_iterations = 0 self.nb_accepted = 0 self.nb_rejected = 0 self.nb_unstable = 0 self.param_metaid = "_" self.param_id = "wild_type" self.param_value = 0.0 self.param_previous = 0.0 #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 4) Statistics # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# ### Array lengths ### self.N_abund = self.model.get_number_of_variable_species() self.N_flux = self.model.get_number_of_reactions() ### Arrays ### self.wild_type_abund = np.zeros(self.N_abund) self.mutant_abund = np.zeros(self.N_abund) self.wild_type_flux = np.zeros(self.N_flux) self.mutant_flux = np.zeros(self.N_flux) ### Sum vectors ### self.sum_abund = np.zeros(self.N_abund) self.relsum_abund = np.zeros(self.N_abund) self.sqsum_abund = np.zeros(self.N_abund) self.relsqsum_abund = np.zeros(self.N_abund) self.sum_flux = np.zeros(self.N_flux) self.relsum_flux = np.zeros(self.N_flux) self.sqsum_flux = np.zeros(self.N_flux) self.relsqsum_flux = np.zeros(self.N_flux) ### Final statistics ### self.mean_abund = np.zeros(self.N_abund) self.var_abund = np.zeros(self.N_abund) self.CV_abund = np.zeros(self.N_abund) self.ER_abund = np.zeros(self.N_abund) self.mean_flux = np.zeros(self.N_flux) self.var_flux = np.zeros(self.N_flux) self.CV_flux =
(sbml_filename, objective_function, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path)
[ 0.028602955862879753, -0.022008614614605904, -0.025182140991091728, 0.028870850801467896, 0.016156136989593506, -0.036310091614723206, -0.08622101694345474, -0.026501009240746498, 0.00381235359236598, -0.0010007427772507071, -0.0743924155831337, 0.011447364464402199, 0.02279169298708439, 0.053002018481492996, -0.059349071234464645, 0.06075036898255348, 0.02246197499334812, -0.017371967434883118, 0.024914246052503586, 0.04442937672138214, -0.040266696363687515, -0.00013177412620279938, -0.05732955411076546, 0.07970910519361496, 0.007449544966220856, -0.004549065139144659, 0.009973941370844841, -0.019185412675142288, -0.013034127652645111, -0.02615068480372429, -0.018824784085154533, -0.04220378398895264, -0.017299842089414597, -0.026233114302158356, 0.016259172931313515, -0.05040549859404564, 0.05172436684370041, 0.036536771804094315, -0.09017761796712875, 0.00156100420281291, 0.01572338305413723, -0.035114869475364685, 0.043976012617349625, -0.019164804369211197, -0.03495001047849655, -0.0019074648153036833, -0.07154860347509384, 0.11160922795534134, -0.02858234941959381, -0.019391484558582306, 0.005342446733266115, -0.05188922584056854, 0.006651011761277914, 0.027387123554944992, -0.029550893232226372, 0.06314081698656082, 0.03422875329852104, 0.03513547405600548, 0.09116677194833755, -0.023492341861128807, 0.031632229685783386, 0.026913156732916832, 0.0748869925737381, -0.041956495493650436, -0.0065170638263225555, 0.005296080373227596, -0.023100802674889565, 0.04780897498130798, 0.012869269587099552, 0.05411481484770775, -0.00300094042904675, -0.0133123267441988, 0.040266696363687515, 0.028953280299901962, 0.01290018018335104, -0.03519729897379875, -0.04574824497103691, -0.03692831099033356, -0.03995758667588234, -0.00842324085533619, 0.023100802674889565, 0.041709210723638535, -0.013879028148949146, -0.06165709346532822, -0.008747805841267109, -0.039421796798706055, 0.0552276112139225, 0.017104072496294975, 0.0134359709918499, -0.020318813621997833, -0.04492394998669624, 0.03892722353339195, 0.04430573061108589, 0.032600775361061096, 0.024213597178459167, 0.026130078360438347, -0.023430518805980682, -0.07018852233886719, 0.014002671465277672, -0.02209104411303997, -0.03303352743387222, 0.033177781850099564, 0.06182195246219635, 0.035114869475364685, -0.019443003460764885, 0.006846780888736248, -0.04224500060081482, 0.0058936928398907185, 0.023554163053631783, -0.043646298348903656, -0.07900845259428024, 0.05770048871636391, -0.03122008591890335, -0.06384146958589554, -0.020236385986208916, -0.028520526364445686, -0.04896298423409462, 0.018876302987337112, -0.029550893232226372, 0.02281229943037033, -0.016382817178964615, -0.0037015893030911684, -0.03371357172727585, 0.03921572491526604, 0.013590525835752487, 0.014311782084405422, 0.017804721370339394, 0.018938124179840088, 0.031384944915771484, -0.058277491480112076, -0.06849872320890427, -0.0621928833425045, 0.01283835805952549, 0.025367606431245804, 0.011952243745326996, -0.032106198370456696, -0.03824717923998833, -0.06425361335277557, -0.009103282354772091, 0.03369296342134476, 0.04175042361021042, 0.017650166526436806, -0.00807291641831398, -0.03340446203947067, -0.015280325897037983, 0.007902906276285648, 0.02746955305337906, -0.06672649085521698, -0.06610827147960663, -0.028376275673508644, -0.030519437044858932, 0.0021521765738725662, -0.04492394998669624, -0.004247683100402355, 0.005409420467913151, 0.0058164154179394245, 0.04175042361021042, -0.03328081592917442, -0.003307474311441183, -0.011344327591359615, -0.05654647946357727, -0.012220138683915138, 0.007037398871034384, 0.030663687735795975, -0.017979884520173073, 0.007114676292985678, -0.019916972145438194, 0.0019937579054385424, -0.066190704703331, 0.048015046864748, -0.02833506092429161, -0.03841203823685646, -0.05147707834839821, 0.009242381900548935, -0.04463544860482216, 0.0947936549782753, 0.004415117669850588, 0.0007869419059716165, 0.030169112607836723, -0.01649615727365017, -0.041585564613342285, -0.03179708868265152, -0.03911268711090088, -0.009721501730382442, -0.03818535804748535, -0.005301232449710369, 0.03262138366699219, -0.026933763176202774, 0.07505185157060623, 0.002315747318789363, 0.023492341861128807, -0.049622420221567154, 0.03933936730027199, 0.04216257110238075, 0.031240692362189293, -0.009412392042577267, 0.02940664067864418, -0.028355667367577553, 0.06981758773326874, -0.007222864776849747, 0.005929755512624979, -0.011148558929562569, 0.010046066716313362, -0.030931582674384117, -0.02266804873943329, -0.007006487809121609, -0.029942432418465614, 0.06363539397716522, -0.032209236174821854, 0.027304694056510925, -0.034373003989458084, -0.014785749837756157, 0.061409804970026016, 0.00801109429448843, 0.05976121872663498, -0.07727743685245514, 0.07299111783504486, -0.012096495367586613, -0.01093218196183443, 0.012797144241631031, 0.043976012617349625, -0.012292264960706234, -0.07233168184757233, 0.040761273354291916, -0.036784060299396515, 0.055145181715488434, 0.019649077206850052, 0.06033822521567345, 0.03303352743387222, -0.03418754041194916, 0.025367606431245804, -0.010082129389047623, -0.0010277898982167244, -0.019834542647004128, -0.007073461543768644, -0.02711922861635685, -0.03459968417882919, 0.09067219495773315, -0.06301717460155487, -0.027943521738052368, -0.04348143935203552, -0.048303551971912384, 0.05160072073340416, 0.052260156720876694, 0.005996729247272015, -0.02507910504937172, 0.07121888548135757, 0.02975696511566639, -0.04883934184908867, 0.03635130822658539, 0.037525925785303116, -0.028891459107398987, -0.04455301910638809, 0.01895873248577118, -0.006779807154089212, -0.013415363617241383, -0.015136074274778366, 0.0403079129755497, 0.057205911725759506, -0.04813869297504425, 0.03000425361096859, -0.046036746352910995, 0.02582096867263317, 0.08127525448799133, -0.07529913634061813, 0.01873205043375492, -0.024914246052503586, -0.0002658021985553205, -0.008953879587352276, 0.023245053365826607, 0.03896843641996384, 0.0803685337305069, -0.0368252769112587, 0.022400153800845146, -0.056834980845451355, -0.0012216274626553059, 0.0008384602260775864, -0.007428937591612339, -0.05217772722244263, 0.029736358672380447, 0.028149595484137535, -0.010530338622629642, 0.027428338304162025, -0.014239655807614326, -0.007336204871535301, -0.020555797964334488, -0.017279235646128654, -0.010787930339574814, 0.04706711322069168, 0.00813473854213953, -0.00003576093877200037, 0.00403645820915699, 0.048015046864748, -0.019412092864513397, 0.07641193270683289, -0.012271657586097717, -0.03760835528373718, 0.012034673243761063, 0.006357357371598482, -0.023327482864260674, -0.0025462915655225515, -0.029592107981443405, 0.05460938811302185, -0.018175654113292694, -0.03513547405600548, 0.02378084324300289, 0.056340403854846954, -0.022379545494914055, 0.024543315172195435, 0.038350217044353485, 0.04216257110238075, 0.03187951818108559, 0.04212135449051857, 0.035836122930049896, 0.02281229943037033, -0.012560159899294376, 0.022750478237867355, -0.03878296911716461, 0.05341416597366333, 0.07476334273815155, -0.011529793962836266, -0.05040549859404564, 0.0542384572327137, 0.006393420044332743, 0.0032791392877697945, -0.04550095647573471, 0.01074671559035778, -0.0018044281750917435, 0.006496456451714039, -0.029365425929427147, -0.018917517736554146, -0.004433149006217718, 0.006352205295115709, 0.01644463837146759, 0.03614523261785507, -0.013961457647383213, -0.02604764886200428, -0.014476640149950981, 0.07826659083366394, -0.04780897498130798, 0.06231652572751045, 0.018299298360943794, -0.03190012648701668, 0.02340991236269474, 0.043646298348903656, -0.04467666149139404, 0.03567126393318176, 0.003704165108501911, -0.04772654548287392, 0.005533064715564251, 0.01344627421349287, 0.08090432733297348, -0.010216077789664268, 0.10031642019748688, 0.04587188735604286, 0.05774170160293579, -0.008000791072845459, -0.058730851858854294, -0.009139345027506351, 0.005290928762406111, 0.021204929798841476, 0.05337294936180115, 0.00671798549592495, -0.002056867815554142, 0.035114869475364685, -0.03818535804748535, -0.0370725616812706, -0.02303897961974144, 0.025346999987959862, -0.06652042269706726, 0.027758056297898293, -0.023595377802848816, -0.002707286272197962, -0.045913103967905045, 0.00020140432752668858, 0.013611133210361004, -0.05329051986336708, -0.0060018808580935, -0.012024369090795517, -0.002836081897839904, 0.04558338597416878, -0.015620346181094646, -0.057411983609199524, 0.02398691698908806, -0.00626977626234293, -0.013518399558961391, 0.03272441774606705, -0.005154405254870653, -0.0019525432726368308, 0.020483672618865967, 0.03696952760219574, -0.011601919308304787, 0.008160497061908245, -0.019072072580456734, -0.0042966254986822605, -0.004981819074600935, 0.05889571085572243, 0.04768533259630203, -0.037752605974674225, -0.04131767153739929, 0.025037890300154686, -0.03863871842622757, -0.04475909098982811, 0.05337294936180115, -0.042780790477991104, -0.05848356708884239, -0.004051913507282734, 0.0241311676800251, -0.02545003592967987, 0.08753988146781921, 0.002501212991774082, 0.0005325703532435, -0.021081285551190376, 0.01579550839960575, -0.04022548347711563, -0.02726348116993904, -0.0243784561753273, -0.07299111783504486, 0.016403423622250557, 0.007006487809121609, 0.03577430173754692, 0.03748470917344093, 0.08935332298278809, 0.03699013218283653, 0.014023278839886189, 0.01654767617583275, -0.010540642775595188, 0.0020542920101433992, -0.06062672659754753, -0.004940604325383902, -0.051064930856227875, 0.03152919560670853, -0.04888055473566055, 0.002060731640085578, -0.014919697307050228, -0.017433790490031242, -0.07525791972875595, -0.0266246534883976, 0.032951101660728455, 0.015424576587975025, 0.005733985919505358, 0.005048792809247971, 0.03154980391263962, -0.03321899473667145, -0.055763401091098785, 0.010633375495672226, -0.04175042361021042, -0.0011630255030468106, -0.07773079723119736, -0.01511546690016985, 0.002985485130921006, 0.036763451993465424, -0.009994548745453358, -0.010159406810998917, 0.01646524667739868, -0.0020195171236991882, -0.02087521180510521, -0.014960912056267262, 0.01873205043375492, -0.03791746497154236, -0.015517309308052063, -0.0026106894947588444, 0.003544458420947194, 0.011437061242759228, 0.02147282473742962, 0.03154980391263962, 0.08218198269605637, -0.0031374639365822077, -0.02495546080172062, 0.009283596649765968, -0.022482583299279213, -0.012694107368588448, 0.003943725489079952, -0.04562459886074066, 0.015362754464149475, -0.03074611723423004, -0.08597372472286224, -0.009798779152333736, -0.015383361838757992, -0.024399062618613243, 0.014126315712928772, -0.023203838616609573, 0.002660919912159443, 0.023554163053631783, -0.03278624266386032, -0.036784060299396515, 0.08008003234863281, -0.058772068470716476, 0.06462454795837402, -0.07455727458000183, -0.056958623230457306, 0.0006034079706296325, 0.04018426686525345, 0.003181254491209984, -0.029715750366449356, 0.03684588149189949, -0.01231287233531475, 0.015074252150952816, 0.04587188735604286, -0.041935890913009644, 0.006975576747208834, 0.04681982472538948, -0.07146617770195007, -0.010241836309432983, 0.010767322964966297, -0.004579976201057434, -0.051683150231838226, -0.03888600692152977, -0.034022681415081024, -0.04488273710012436, -0.008083219639956951, -0.10097585618495941, -0.003397631458938122, -0.025182140991091728, 0.020957641303539276, -0.021926185116171837, -0.02027760073542595, 0.034146323800086975, 0.010071826167404652, -0.009036308154463768, -0.0006011540535837412, -0.04306929185986519, -0.03672223910689354, 0.008902360685169697, -0.0007850099937058985, 0.011498882435262203, -0.03686648979783058, -0.025738539174199104, 0.008345963433384895, 0.0003380887792445719, -0.017402879893779755, -0.045212455093860626, 0.022173473611474037, 0.07385662198066711, 0.029386034235358238, -0.01511546690016985, 0.0796266719698906, -0.05160072073340416, 0.0031992860604077578, -0.007398026995360851, -0.04168860241770744, 0.005455787293612957, 0.029344819486141205, -0.010818840935826302, -0.006249168887734413, 0.008052309043705463, 0.01848476380109787, 0.028767814859747887, -0.01193163637071848, 0.009376329369843006, 0.0027021344285458326, 0.006954969372600317, -0.03293049335479736, 0.030931582674384117, 0.09438151121139526, -0.017176197841763496, 0.018927820026874542, 0.00626977626234293, 0.03940118849277496, 0.022503189742565155, -0.03396085649728775, -0.027201658114790916, 0.0060740066692233086, -0.07542277872562408, -0.016959821805357933, 0.05040549859404564, 0.003647495061159134, -0.00606370298191905, -0.030313363298773766, -0.021884970366954803, 0.041585564613342285, 0.012920787557959557, -0.005363054107874632, 0.009062067605555058, -0.04888055473566055, 0.011725563555955887, 0.013106253929436207, 0.014291174709796906, -0.012714714743196964, 0.00884569063782692, 0.05316687747836113, 0.011426757089793682, 0.011684348806738853, -0.0315910167992115, 0.03614523261785507, 0.03097279742360115, -0.053949955850839615, 0.003933421801775694, 0.026686474680900574, 0.02244136855006218, -0.011024914681911469, 0.03892722353339195, -0.04269836097955704, -0.06202802434563637, -0.03130251541733742, 0.04929270222783089, 0.018546584993600845, -0.018865998834371567, 0.03311595693230629, 0.023719022050499916, -0.04574824497103691, -0.011200076900422573, -0.018742354586720467, 0.03371357172727585, -0.02291533723473549, 0.004706196021288633, 0.012137710116803646, 0.014033582992851734, 0.03589794784784317, 0.03799989074468613, 0.0007663345895707607, 0.004136919043958187, 0.006862236652523279, -0.013765688054263592, -0.04780897498130798, -0.044965166598558426, -0.015558524057269096, 0.01248803362250328, 0.0703945979475975, 0.014064493589103222, 0.023822057992219925, -0.016310691833496094, -0.030704902485013008, -0.010020308196544647, -0.03513547405600548, -0.0378144271671772, -0.003943725489079952, -0.09372207522392273, -0.010715804994106293, -0.011241291649639606, 0.019113287329673767, 0.01260137464851141, 0.037855640053749084, -0.03348689153790474, 0.03921572491526604, 0.019267842173576355, 0.025965219363570213, 0.027098622173070908, -0.024749387055635452, 0.049746062606573105, 0.04743804410099983, -0.021534645929932594, 0.014301477931439877, -0.004734531044960022, -0.03192073479294777, -0.011601919308304787, 0.00036095004179514945, 0.009896663948893547, 0.03459968417882919, 0.029798179864883423, -0.023327482864260674, 0.012879572808742523, -0.06215166673064232, -0.014723927713930607, -0.019350269809365273, -0.038597505539655685, -0.013003217056393623, 0.05308444797992706, 0.026315543800592422, -0.016434336081147194, -0.01970059424638748, 0.03997819498181343, 0.02316262386739254, -0.02652161754667759, 0.016187047585844994, -0.03802049905061722, 0.0335899256169796, 0.015424576587975025, 0.028891459107398987, 0.05992607772350311, -0.005733985919505358, 0.024543315172195435, -0.026212507858872414, -0.00588338915258646, -0.02390448749065399, -0.012034673243761063, 0.034640900790691376, 0.015290629118680954, 0.0033744480460882187, 0.005919451825320721, 0.07035338133573532, 0.0962773859500885, -0.03206498548388481, -0.01873205043375492, 0.05939028784632683, 0.008577795699238777, -0.02172011137008667, -0.01314746867865324, -0.01799018681049347, -0.020092133432626724, -0.045294880867004395, 0.04348143935203552, 0.03074611723423004, -0.015465791337192059, 0.03323960304260254, 0.023842666298151016, -0.06058550998568535, -0.028994495049118996, 0.011962547898292542, -0.02542942948639393, 0.045913103967905045, 0.0006291671306826174, -0.03340446203947067, 0.0345790795981884, -0.026130078360438347, 0.018278690055012703, -0.03845325484871864, 0.021040070801973343, 0.03404328599572182, 0.010726108215749264, 0.02615068480372429, 0.0721668228507042, -0.0010567689314484596, 0.0073465085588395596, 0.022647440433502197, 0.016506461426615715, -0.03999880328774452, 0.031487978994846344, -0.01793866977095604, -0.0034749088808894157, 0.00845930352807045, 0.02411056123673916, 0.045294880867004395, 0.0013510672142729163, -0.017701685428619385, -0.007258927449584007, 0.03563005104660988, -0.04706711322069168, 0.05333173647522926, -0.021307965740561485, 0.027572590857744217, 0.024048738181591034, -0.011777081526815891, -0.0034439978189766407, 0.0242548119276762, -0.09100191295146942, 0.017402879893779755, -0.005445483606308699, -0.03795867785811424, 0.03243591636419296, -0.04611917585134506, -0.05160072073340416, -0.04298686236143112, 0.000043549058318603784, -0.03769078105688095, 0.02233833074569702, 0.02928299829363823, 0.007882298901677132, 0.02928299829363823, -0.022853514179587364, 0.06289353221654892, -0.041461922228336334, 0.01531123649328947, 0.044470589607954025, 0.060090936720371246, 0.0011449940502643585, 0.052507445216178894, -0.0315910167992115, 0.005486698355525732, -0.08597372472286224, 0.004876206163316965, -0.039792727679014206, 0.06227531284093857, 0.037628959864377975, -0.004793777130544186, 0.048056263476610184, -0.03369296342134476, 0.017650166526436806 ]
20,446
metevolsim.metevolsim
__init__
MCMC class constructor. Parameters ---------- sbml_filename : str Path of the SBML model file. The SBML model is automatically loaded. objective_function : list of [str, float] Objective function (list of reaction identifiers and coefficients). total_iterations : int > 0 Total number of MCMC iterations. sigma : float > 0.0 Standard deviation of the Log10-normal mutational distribution. selection_scheme : str Selection scheme ('MUTATION_ACCUMULATION'/'ABSOLUTE_METABOLIC_SUM_SELECTION'/ 'ABSOLUTE_TARGET_FLUXES_SELECTION'/'RELATIVE_TARGET_FLUXES_SELECTION'). selection_threshold : float > 0.0 Selection threshold applied on the MOMA distance. copasi_path : str Location of Copasi executable. Returns ------- None
def __init__( self, sbml_filename, objective_function, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path ): """ MCMC class constructor. Parameters ---------- sbml_filename : str Path of the SBML model file. The SBML model is automatically loaded. objective_function : list of [str, float] Objective function (list of reaction identifiers and coefficients). total_iterations : int > 0 Total number of MCMC iterations. sigma : float > 0.0 Standard deviation of the Log10-normal mutational distribution. selection_scheme : str Selection scheme ('MUTATION_ACCUMULATION'/'ABSOLUTE_METABOLIC_SUM_SELECTION'/ 'ABSOLUTE_TARGET_FLUXES_SELECTION'/'RELATIVE_TARGET_FLUXES_SELECTION'). selection_threshold : float > 0.0 Selection threshold applied on the MOMA distance. copasi_path : str Location of Copasi executable. Returns ------- None """ assert os.path.isfile(sbml_filename), "The SBML file \""+sbml_filename+"\" does not exist. Exit." assert len(objective_function) > 0, "You must provide at least one reaction in the objective function. Exit." assert total_iterations > 0, "The total number of iterations must be a positive nonzero value. Exit." assert sigma > 0.0, "The mutation size 'sigma' must be a positive nonzero value. Exit." assert selection_scheme in ["MUTATION_ACCUMULATION", "ABSOLUTE_METABOLIC_SUM_SELECTION", "ABSOLUTE_TARGET_FLUXES_SELECTION", "RELATIVE_TARGET_FLUXES_SELECTION", "ABSOLUTE_ALL_FLUXES_SELECTION", "RELATIVE_ALL_FLUXES_SELECTION"], "The selection scheme takes two values only (MUTATION_ACCUMULATION / ABSOLUTE_METABOLIC_SUM_SELECTION / ABSOLUTE_TARGET_FLUXES_SELECTION / RELATIVE_TARGET_FLUXES_SELECTION / ABSOLUTE_ALL_FLUXES_SELECTION / RELATIVE_ALL_FLUXES_SELECTION). Exit." assert os.path.isfile(copasi_path), "The executable \""+copasi_path+"\" does not exist. Exit." #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 1) Main MCMC parameters # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.sbml_filename = sbml_filename self.total_iterations = total_iterations self.sigma = sigma self.selection_scheme = selection_scheme self.selection_threshold = selection_threshold self.copasi_path = copasi_path #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 2) SBML model # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.model = Model(sbml_filename, objective_function, copasi_path) #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 3) Current state tracking # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.nb_iterations = 0 self.nb_accepted = 0 self.nb_rejected = 0 self.nb_unstable = 0 self.param_metaid = "_" self.param_id = "wild_type" self.param_value = 0.0 self.param_previous = 0.0 #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 4) Statistics # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# ### Array lengths ### self.N_abund = self.model.get_number_of_variable_species() self.N_flux = self.model.get_number_of_reactions() ### Arrays ### self.wild_type_abund = np.zeros(self.N_abund) self.mutant_abund = np.zeros(self.N_abund) self.wild_type_flux = np.zeros(self.N_flux) self.mutant_flux = np.zeros(self.N_flux) ### Sum vectors ### self.sum_abund = np.zeros(self.N_abund) self.relsum_abund = np.zeros(self.N_abund) self.sqsum_abund = np.zeros(self.N_abund) self.relsqsum_abund = np.zeros(self.N_abund) self.sum_flux = np.zeros(self.N_flux) self.relsum_flux = np.zeros(self.N_flux) self.sqsum_flux = np.zeros(self.N_flux) self.relsqsum_flux = np.zeros(self.N_flux) ### Final statistics ### self.mean_abund = np.zeros(self.N_abund) self.var_abund = np.zeros(self.N_abund) self.CV_abund = np.zeros(self.N_abund) self.ER_abund = np.zeros(self.N_abund) self.mean_flux = np.zeros(self.N_flux) self.var_flux = np.zeros(self.N_flux) self.CV_flux = np.zeros(self.N_flux) self.ER_flux = np.zeros(self.N_flux) #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 5) Previous state # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.previous_abund = np.copy(self.mutant_abund) self.previous_flux = np.copy(self.mutant_flux) #~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 6) Output file # #~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.output_file = open("output/iterations.txt", "w") self.output_file.close()
(self, sbml_filename, objective_function, total_iterations, sigma, selection_scheme, selection_threshold, copasi_path)
[ 0.033794935792684555, -0.0010328240459784865, 0.00597202405333519, 0.023991508409380913, 0.018417619168758392, -0.04430156201124191, -0.09588330239057541, -0.029286185279488564, 0.0040589082054793835, 0.010734131559729576, -0.07069221884012222, 0.03145783022046089, 0.000024378494345000945, 0.0683344304561615, -0.054104987531900406, 0.058282818645238876, 0.025749506428837776, -0.009508702903985977, -0.011003001593053341, 0.038800060749053955, -0.032347172498703, 0.004785375203937292, -0.07904788106679916, 0.08169522136449814, 0.018965700641274452, 0.001979040913283825, 0.00133788853418082, -0.02060994692146778, -0.006442547310143709, -0.02560473047196865, -0.02281261421740055, -0.013908869586884975, -0.014529339969158173, -0.02864503301680088, 0.009281197562813759, -0.04980305954813957, 0.050961270928382874, 0.005346383433789015, -0.0960487648844719, 0.009250174276530743, 0.04847939312458038, -0.03695933148264885, 0.05315360054373741, 0.008443563245236874, -0.04885167255997658, -0.017383502796292305, -0.05451863259077072, 0.11110550165176392, -0.0344567708671093, -0.011313237249851227, -0.014239787124097347, -0.054353173822164536, 0.011623471975326538, 0.01829352416098118, -0.03660773113369942, 0.06519071757793427, 0.02498425915837288, 0.027941834181547165, 0.08636942505836487, -0.03505655750632286, 0.02138553373515606, 0.02025834657251835, 0.08231569081544876, -0.022585108876228333, -0.0013999354559928179, 0.007611099164932966, -0.022440332919359207, 0.04229537397623062, 0.0028541621286422014, 0.057124607264995575, 0.0216544046998024, -0.0030920091085135937, 0.03555293381214142, 0.02395014278590679, 0.012657588347792625, -0.024363789707422256, -0.05551138520240784, -0.04285379871726036, -0.024653343483805656, -0.0016390749951824546, 0.02804524637758732, 0.037641849368810654, -0.012233600951731205, -0.05257449299097061, -0.01124084834009409, -0.035118602216243744, 0.07135405391454697, -0.000004034468929603463, -0.005656618624925613, -0.02699044719338417, -0.05480818450450897, 0.048768945038318634, 0.042936526238918304, 0.00890891533344984, 0.02949300967156887, 0.022088732570409775, -0.010754814371466637, -0.06258474290370941, 0.029265502467751503, -0.04035123437643051, -0.04041328281164169, 0.026225199922919273, 0.03549088537693024, 0.027962516993284225, -0.029658468440175056, 0.0030351325403898954, -0.032905593514442444, 0.0007697706460021436, 0.011861318722367287, -0.052119482308626175, -0.08368072658777237, 0.0704440325498581, -0.019317300990223885, -0.040165092796087265, -0.024674024432897568, -0.03356742858886719, -0.03937916457653046, 0.020640969276428223, -0.016783714294433594, 0.03025825507938862, -0.011726883240044117, 0.006059924140572548, -0.031292371451854706, 0.04285379871726036, 0.018965700641274452, 0.022130098193883896, 0.015915056690573692, -0.0005186741473153234, 0.05915147811174393, -0.05203675478696823, -0.05315360054373741, -0.05968921631574631, 0.012368036434054375, 0.018820924684405327, 0.012667929753661156, -0.04450838267803192, -0.028789808973670006, -0.06552163511514664, 0.004617331083863974, 0.04202650487422943, 0.051829930394887924, 0.013319423422217369, -0.018241818994283676, -0.027962516993284225, -0.032347172498703, 0.02337103709578514, 0.02504630759358406, -0.05054762586951256, -0.06246064975857735, -0.022336920723319054, -0.01127187255769968, -0.008128157816827297, -0.05232630670070648, -0.015315269120037556, 0.009917179122567177, -0.0034410234075039625, 0.031292371451854706, -0.04802438244223595, 0.009958543814718723, -0.015511751174926758, -0.05592503398656845, -0.0029756708536297083, 0.01387784630060196, 0.029803244397044182, -0.014984351582825184, 0.016576891764998436, -0.021344169974327087, 0.0005083329742774367, -0.05431181192398071, 0.043184712529182434, -0.028562303632497787, -0.04814847558736801, -0.05166447162628174, 0.007786898873746395, -0.04893440380692482, 0.07606962323188782, -0.0026473389007151127, -0.0010489821434020996, 0.019389688968658447, 0.013546928763389587, -0.03671114519238472, -0.03327787667512894, -0.038779377937316895, -0.0158323273062706, -0.03776594251394272, -0.013236694037914276, 0.0488930381834507, -0.01586334966123104, 0.06713485717773438, -0.004131296183913946, 0.04090965911746025, -0.03995826840400696, 0.027693646028637886, 0.05166447162628174, 0.02057892270386219, -0.00891925673931837, 0.030795995146036148, -0.04107511788606644, 0.07156087458133698, -0.03429131209850311, 0.007430128753185272, 0.002344859763979912, 0.0008867550641298294, -0.031540561467409134, -0.019937770441174507, -0.00945182703435421, -0.0423574224114418, 0.06175744906067848, -0.03029962070286274, 0.03424994647502899, -0.03137510269880295, -0.03383629769086838, 0.07230544090270996, 0.02672157622873783, 0.06432206183671951, -0.06560436636209488, 0.07805512845516205, -0.00358062912710011, -0.011199483647942543, 0.012781682424247265, 0.040702834725379944, 0.0015744427219033241, -0.0683344304561615, 0.026204517111182213, -0.049017131328582764, 0.04699026420712471, 0.021013252437114716, 0.0700717493891716, 0.015377315692603588, -0.013371129520237446, 0.02086847461760044, -0.01252315379679203, 0.00361165264621377, -0.009322562254965305, -0.012461106292903423, -0.015553115867078304, -0.031064866110682487, 0.09133318811655045, -0.06961673498153687, -0.02835548110306263, -0.04951350763440132, -0.05538729205727577, 0.05232630670070648, 0.029968703165650368, 0.012409401126205921, -0.010930613614618778, 0.07826195657253265, 0.017848854884505272, -0.06117834523320198, 0.02945164404809475, 0.020237663760781288, -0.01264724787324667, -0.04252288118004799, 0.008629703894257545, -0.0057548596523702145, -0.02783842198550701, -0.011871660128235817, 0.02250237949192524, 0.05356724560260773, -0.05278131738305092, 0.03218171373009682, -0.033215828239917755, 0.03034098446369171, 0.06270883977413177, -0.06283292919397354, 0.013278058730065823, -0.02221282757818699, 0.010951296426355839, 0.00036291033029556274, 0.0034332675859332085, 0.03158192336559296, 0.07412548363208771, -0.041550811380147934, 0.02893458679318428, -0.06088879331946373, -0.01585301011800766, -0.0020036010537296534, -0.023205578327178955, -0.0650666207075119, 0.03354674577713013, 0.018738195300102234, -0.0070164818316698074, 0.03284354880452156, 0.0010089101269841194, -0.02583223581314087, -0.029141409322619438, -0.01861410029232502, -0.02283329702913761, 0.03971008211374283, -0.0011420527007430792, 0.009627626277506351, 0.012750659137964249, 0.03929643705487251, -0.017031902447342873, 0.07933743298053741, -0.02533585950732231, -0.02111666277050972, 0.007471493445336819, -0.00452684611082077, -0.006266747135668993, 0.0037202348466962576, -0.04347426816821098, 0.05000988394021988, -0.031064866110682487, -0.037641849368810654, 0.01914150081574917, 0.05848964303731918, -0.011075390502810478, 0.051292188465595245, 0.03193352371454239, 0.06167472153902054, 0.03284354880452156, 0.06117834523320198, 0.04173694923520088, 0.010796178132295609, 0.008945109322667122, 0.020403122529387474, -0.03981349244713783, 0.05977194756269455, 0.07838604599237442, -0.014208763837814331, -0.03360879421234131, 0.06150926277041435, -0.006514935288578272, 0.0051007806323468685, -0.04508749023079872, 0.024384472519159317, -0.0032445411197841167, 0.0016520015196874738, -0.02723863534629345, -0.026762939989566803, -0.008862379938364029, 0.01671132631599903, 0.007512858137488365, 0.012678271159529686, -0.01044457871466875, -0.0275281872600317, -0.010506626218557358, 0.07528369873762131, -0.04938941448926926, 0.07573870569467545, 0.02363990806043148, -0.036814555525779724, 0.022316239774227142, 0.04171627014875412, -0.034580864012241364, 0.03257467597723007, -0.02109598182141781, -0.0410957969725132, 0.022357603535056114, 0.00009993768617277965, 0.07594553381204605, 0.006101288832724094, 0.10771359503269196, 0.03441540524363518, 0.06825170665979385, -0.022626474499702454, -0.05112672969698906, -0.0009778866078704596, -0.003852084744721651, 0.001503347186371684, 0.04856212064623833, -0.009048521518707275, 0.020434146746993065, 0.023433085530996323, -0.0577450767159462, -0.035739075392484665, -0.014808551408350468, 0.027714328840374947, -0.0438879132270813, 0.01810738444328308, -0.028293432667851448, -0.011778589338064194, -0.03549088537693024, 0.010754814371466637, 0.02864503301680088, -0.05642140656709671, -0.0024883432779461145, 0.007150917313992977, -0.006013388745486736, 0.03447744995355606, -0.00914676208049059, -0.04583205282688141, 0.02059960551559925, -0.013567611575126648, -0.022605791687965393, 0.030692584812641144, -0.004077005200088024, 0.022440332919359207, 0.01307123526930809, 0.03451881557703018, -0.0034177557099610567, 0.017145656049251556, -0.03360879421234131, 0.011426989920437336, 0.008298786357045174, 0.06494253128767014, 0.04583205282688141, -0.04616297036409378, -0.0263699758797884, 0.017176678404211998, -0.03981349244713783, -0.03383629769086838, 0.04723845049738884, -0.04086829349398613, -0.0488930381834507, -0.002387516899034381, 0.01544970367103815, -0.026804305613040924, 0.0718090683221817, 0.012026777490973473, 0.0013443517964333296, -0.015935739502310753, -0.005377407185733318, -0.05422908067703247, -0.022667838260531425, -0.01277134194970131, -0.0739186629652977, 0.02225419133901596, 0.011540742591023445, 0.03056848980486393, 0.057414159178733826, 0.09249140322208405, 0.04690753296017647, 0.013919210992753506, 0.03482905030250549, -0.022316239774227142, -0.003991690464317799, -0.04347426816821098, -0.010806519538164139, -0.06837579607963562, 0.03313310071825981, -0.04161285609006882, -0.008541803807020187, -0.0020346245728433132, -0.02275056764483452, -0.07226407527923584, -0.02442583627998829, 0.016339045017957687, 0.018789900466799736, 0.010361849330365658, -0.016266655176877975, 0.04496339336037636, -0.008743456564843655, -0.05162310600280762, 0.005470477510243654, -0.022998755797743797, -0.017331795766949654, -0.06345339864492416, -0.0029834266752004623, -0.005012881010770798, 0.0410957969725132, -0.02585291862487793, -0.01613222062587738, 0.05348451808094978, 0.004632842727005482, -0.018407277762889862, 0.0021251097787171602, 0.028479574248194695, -0.02192327380180359, -0.016452796757221222, 0.001857532188296318, -0.003360879374668002, 0.030485760420560837, 0.01168551854789257, 0.0004220488772261888, 0.06399114429950714, 0.015501409769058228, -0.019596511498093605, 0.0018458983395248652, -0.033794935792684555, -0.014601727947592735, 0.01181995403021574, -0.045128852128982544, -0.008334980346262455, -0.03257467597723007, -0.07478731870651245, -0.014239787124097347, 0.0010535063920542598, -0.016856102272868156, 0.014012281782925129, -0.015366974286735058, -0.00646839989349246, 0.03770389407873154, -0.02945164404809475, -0.02581155300140381, 0.059647854417562485, -0.05840691179037094, 0.058282818645238876, -0.06940991431474686, -0.03242990002036095, -0.0029808415565639734, 0.03259535878896713, 0.02173713408410549, -0.02469470724463463, 0.04674207419157028, -0.01749725453555584, 0.00973620917648077, 0.017579983919858932, -0.030775314196944237, 0.007419787347316742, 0.040702834725379944, -0.0735463798046112, -0.007611099164932966, -0.0019234571373090148, 0.019048430025577545, -0.05249176546931267, -0.0577450767159462, -0.027672963216900826, -0.045128852128982544, -0.01445695199072361, -0.1112709566950798, -0.008707262575626373, -0.017383502796292305, 0.02167508564889431, -0.032161030918359756, -0.02363990806043148, 0.04310198500752449, 0.00003241713420720771, 0.010754814371466637, 0.007352570071816444, -0.043763820081949234, -0.044094737619161606, 0.00905369222164154, -0.01586334966123104, 0.019565489143133163, -0.02173713408410549, -0.023184897378087044, 0.03172669932246208, 0.00946733821183443, -0.014694798737764359, -0.046038877218961716, 0.015728915110230446, 0.06730031967163086, 0.03247126564383507, -0.029100043699145317, 0.07826195657253265, -0.08057837188243866, 0.016245974227786064, -0.012885094620287418, -0.038510505110025406, -0.007218134589493275, 0.03195420652627945, -0.026576800271868706, 0.006701076403260231, 0.0026214858517050743, 0.013660682365298271, 0.02312285080552101, -0.012678271159529686, 0.006856193765997887, 0.0029265503399074078, 0.0044311899691820145, -0.04670071229338646, 0.030733948573470116, 0.08686580508947372, 0.01666996069252491, 0.02672157622873783, -0.00023235310800373554, 0.041778314858675, 0.017145656049251556, -0.04533567652106285, -0.026535434648394585, 0.000979825621470809, -0.054063621908426285, -0.022585108876228333, 0.03540815785527229, 0.0008880477398633957, -0.022626474499702454, -0.04010304808616638, -0.01112709566950798, 0.03354674577713013, 0.021881910040974617, -0.009912008419632912, 0.03151987865567207, -0.06254337728023529, 0.0013792532263323665, 0.024529248476028442, 0.01557379774749279, -0.0009546190267428756, 0.027879787608981133, 0.05348451808094978, 0.012885094620287418, 0.0004769863444380462, -0.024301743134856224, 0.03871732950210571, 0.033215828239917755, -0.05584230273962021, 0.00264475354924798, 0.04026850685477257, 0.003991690464317799, -0.018841607496142387, 0.025790870189666748, -0.04041328281164169, -0.06477706879377365, -0.04301925748586655, 0.03948257490992546, 0.03149919584393501, -0.02804524637758732, 0.015956420451402664, 0.04064078629016876, -0.05869646370410919, -0.006514935288578272, -0.025501318275928497, 0.03259535878896713, -0.01829352416098118, -0.013133282773196697, 0.021840544417500496, 0.03753843531012535, 0.021819863468408585, 0.05174719914793968, 0.005113707389682531, -0.016742350533604622, 0.013040211983025074, -0.03660773113369942, -0.03977213054895401, -0.05476682260632515, 0.0025400491431355476, -0.0014296664157882333, 0.0633293092250824, 0.014911963604390621, 0.014674115926027298, -0.020951204001903534, -0.04719708859920502, -0.0027093857061117887, -0.02194395661354065, -0.0233917199075222, 0.0008240617462433875, -0.08636942505836487, 0.0003865011385641992, -0.025997694581747055, 0.02194395661354065, 0.009694844484329224, 0.027135223150253296, -0.04223332554101944, 0.03563566133379936, 0.040992386639118195, 0.029596420004963875, 0.0467834398150444, -0.02775569260120392, 0.0444670207798481, 0.04442565515637398, -0.010961636900901794, 0.01544970367103815, -0.020754722878336906, -0.04035123437643051, -0.0028619179502129555, -0.012792023830115795, 0.00821088720113039, 0.052119482308626175, 0.03305036947131157, -0.022916026413440704, 0.01309191808104515, -0.05307086929678917, 0.00205401424318552, -0.019503440707921982, -0.059647854417562485, -0.007512858137488365, 0.03149919584393501, 0.02056858129799366, -0.02363990806043148, -0.03673182427883148, 0.03170602023601532, 0.026494070887565613, -0.0350358746945858, 0.024032872170209885, -0.03276081755757332, 0.03638022765517235, 0.020403122529387474, 0.006023729685693979, 0.04550113528966904, -0.01388818770647049, 0.03344333544373512, -0.02446720190346241, 0.006768294144421816, -0.029596420004963875, 0.010356678627431393, 0.03201625496149063, -0.0012260746443644166, 0.02059960551559925, 0.014911963604390621, 0.05671096220612526, 0.08636942505836487, -0.019679240882396698, -0.049058496952056885, 0.055221833288669586, 0.01861410029232502, -0.04310198500752449, -0.0003512765106279403, -0.017921242862939835, -0.017331795766949654, -0.06465297937393188, 0.048231203109025955, 0.023019438609480858, -0.014963668771088123, 0.03396039456129074, 0.024384472519159317, -0.06787942349910736, -0.04084761068224907, -0.0066597117111086845, -0.02446720190346241, 0.037166155874729156, 0.00749734602868557, -0.02142689935863018, 0.027424775063991547, -0.03532542660832405, 0.014177740551531315, -0.04781755805015564, 0.019544806331396103, 0.0014464707346633077, 0.015759939327836037, 0.0394618958234787, 0.08198477327823639, -0.0015524677000939846, 0.02283329702913761, 0.02111666277050972, 0.019575828686356544, -0.018241818994283676, 0.03499450907111168, -0.025377225130796432, -0.02219214476644993, 0.016339045017957687, 0.016835419461131096, 0.026225199922919273, 0.01030497346073389, -0.020434146746993065, -0.008391857147216797, -0.002923964988440275, -0.037414342164993286, 0.04467384144663811, -0.0355115681886673, 0.014612069353461266, 0.011913024820387363, -0.027321364730596542, 0.0021974979899823666, 0.012585200369358063, -0.08562486618757248, 0.030651219189167023, -0.006856193765997887, -0.00472074281424284, 0.04161285609006882, -0.03751775622367859, -0.044632479548454285, -0.043805185705423355, 0.014777528122067451, -0.05869646370410919, 0.02998938411474228, 0.03745570778846741, 0.0072956932708621025, 0.014725822024047375, -0.008262592367827892, 0.06163335591554642, -0.03371220454573631, 0.025708140805363655, 0.047072991728782654, 0.05977194756269455, -0.006039241794496775, 0.05977194756269455, -0.04372245445847511, 0.000606250949203968, -0.07329819351434708, 0.01692849025130272, -0.051829930394887924, 0.06701076030731201, 0.037062741816043854, 0.005884123966097832, 0.05290541052818298, -0.015170492231845856, -0.002662850543856621 ]
20,447
metevolsim.metevolsim
compute_statistics
Compute final statistics. Parameters ---------- None Returns ------- None
def compute_statistics( self ): """ Compute final statistics. Parameters ---------- None Returns ------- None """ #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 1) Compute mean # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.mean_abund = np.copy(self.sum_abund) self.mean_abund /= float(self.nb_iterations) ########### self.mean_flux = np.copy(self.sum_flux) self.mean_flux /= float(self.nb_iterations) #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 2) Compute variance # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.var_abund = np.copy(self.sqsum_abund) self.var_abund /= float(self.nb_iterations) self.var_abund -= self.mean_abund*self.mean_abund ########### self.var_flux = np.copy(self.sqsum_flux) self.var_flux /= float(self.nb_iterations) self.var_flux -= self.mean_flux*self.mean_flux #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 3) Compute coefficient of variation # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.CV_abund = np.copy(self.sqsum_abund) self.CV_abund /= float(self.nb_iterations) self.CV_abund -= self.mean_abund*self.mean_abund for i in range(self.N_abund): if self.mean_abund[i] > 0.0: self.CV_abund[i] = np.sqrt(self.CV_abund[i])/self.mean_abund[i] else: self.CV_abund[i] = 0.0 ########### self.CV_flux = np.copy(self.sqsum_flux) self.CV_flux /= float(self.nb_iterations) self.CV_flux -= self.mean_flux*self.mean_flux for i in range(self.N_flux): if self.mean_flux[i] > 0.0: self.CV_flux[i] = np.sqrt(self.CV_flux[i])/self.mean_flux[i] else: self.CV_flux[i] = 0.0 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# # 4) Compute evolution rate # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# self.ER_abund = np.copy(self.relsqsum_abund) self.ER_abund /= float(self.nb_iterations) self.ER_abund -= (self.relsum_abund/float(self.nb_iterations))*(self.relsum_abund/float(self.nb_iterations)) self.ER_abund /= float(self.nb_iterations) ########### self.ER_flux = np.copy(self.relsqsum_flux) self.ER_flux /= float(self.nb_iterations) self.ER_flux -= (self.relsum_flux/float(self.nb_iterations))*(self.relsum_flux/float(self.nb_iterations)) self.ER_flux /= float(self.nb_iterations)
(self)
[ 0.0026198613923043013, -0.03009772300720215, -0.008284426294267178, 0.042257655411958694, 0.024697504937648773, -0.013897066935896873, -0.055588267743587494, -0.09524022042751312, -0.008487407118082047, 0.04886631667613983, -0.02445203997194767, 0.010318949818611145, 0.010677705518901348, -0.0010349632939323783, -0.06918322294950485, 0.0914638489484787, -0.034081801772117615, -0.008950012736022472, -0.01208440586924553, 0.004243703559041023, -0.06325431168079376, -0.040142886340618134, -0.07299736142158508, 0.028832636773586273, 0.024791913107037544, 0.010243422351777554, -0.008501567877829075, -0.06873005628585815, -0.021827457472682, 0.030852999538183212, -0.03657421097159386, -0.009846902452409267, 0.0048904079012572765, -0.04875302314758301, 0.013566633686423302, -0.05906253308057785, 0.052189528942108154, 0.011876705102622509, -0.0620458722114563, 0.04728023707866669, 0.03710290417075157, -0.014350231736898422, 0.02813400700688362, 0.0025632157921791077, -0.03576228767633438, -0.016937050968408585, -0.033307645469903946, 0.05479522794485092, -0.01948610506951809, -0.006896608043462038, -0.015709728002548218, -0.05596590414643288, 0.0008573555387556553, 0.007751013617962599, 0.002191478619351983, 0.07382816821336746, 0.04418360814452171, 0.012981295585632324, 0.0009541251929476857, -0.04471230134367943, 0.031230635941028595, -0.02749202400445938, 0.016172334551811218, 0.017125869169831276, -0.022375032305717468, 0.003530912334099412, -0.03092852607369423, 0.04237094894051552, 0.04059604927897453, 0.04195554554462433, 0.021581994369626045, 0.0007192817865870893, 0.046713780611753464, -0.008572375401854515, 0.013557192869484425, 0.03529024124145508, -0.013982035219669342, -0.05305809527635574, -0.021525347605347633, -0.046864837408065796, 0.06438722461462021, 0.02518843300640583, 0.00829386804252863, -0.03347758203744888, 0.044750064611434937, -0.017503507435321808, -0.03168380260467529, 0.0008473245543427765, 0.04622285068035126, 0.002629302442073822, -0.007633001543581486, 0.017163632437586784, 0.057061053812503815, 0.035233594477176666, 0.017635678872466087, 0.007826540619134903, -0.058307256549596786, -0.09977187216281891, 0.03383633494377136, -0.047959987074136734, 0.03865121677517891, 0.06140388548374176, 0.0841376781463623, 0.050036992877721786, 0.01658773608505726, 0.013717688620090485, -0.008912249468266964, -0.024017756804823875, 0.01544538140296936, -0.005164195317775011, -0.02413104847073555, 0.059591226279735565, -0.03478043153882027, -0.012971854768693447, -0.07462120801210403, -0.04622285068035126, -0.051774125546216965, 0.0445990115404129, -0.015643641352653503, 0.06899440288543701, 0.002957375021651387, 0.0006785677396692336, 0.01427470427006483, 0.04524099454283714, -0.01760735735297203, -0.017616797238588333, 0.023677881807088852, 0.011574595235288143, -0.03474266827106476, -0.024206575006246567, 0.01885356195271015, -0.023224717006087303, 0.01659717597067356, -0.003908549901098013, 0.04429690167307854, -0.01958051323890686, 0.02339465357363224, -0.028851518407464027, 0.04663825407624245, -0.01403868105262518, 0.01806052215397358, 0.043503861874341965, -0.03874562680721283, 0.012235460802912712, -0.009780815802514553, 0.0491684265434742, 0.06427393108606339, -0.015114948153495789, -0.03595110774040222, -0.04271082207560539, -0.045165468007326126, 0.03502589464187622, -0.014945011585950851, -0.0028275621589273214, 0.023243598639965057, -0.017116427421569824, 0.016899285838007927, -0.040747106075286865, -0.042673058807849884, -0.04067157953977585, -0.077189140021801, -0.014831719920039177, 0.0006903688772581518, -0.018419278785586357, 0.00023572852660436183, 0.015653081238269806, 0.005329411942511797, 0.031646039336919785, -0.02624581940472126, 0.01802275888621807, 0.00738753704354167, -0.03912326321005821, -0.0868566706776619, 0.02050572633743286, 0.0009258023928850889, 0.050905559211969376, 0.02509402483701706, -0.060875196009874344, -0.020014796406030655, 0.045165468007326126, 0.009488146752119064, -0.07605622708797455, -0.03240131214261055, -0.05373784154653549, -0.04716694727540016, -0.02086448110640049, 0.06397182494401932, -0.05075450614094734, 0.05539944767951965, 0.00418469775468111, -0.021355411037802696, -0.05426653474569321, -0.02127988263964653, 0.005574876442551613, 0.05052792280912399, -0.003224081825464964, 0.05305809527635574, -0.0176923256367445, 0.06336760520935059, -0.07394146174192429, -0.015020539052784443, 0.005338852759450674, 0.013462783768773079, -0.022960370406508446, -0.007524430751800537, -0.014595696702599525, -0.027133267372846603, 0.007175115868449211, 0.007028781343251467, 0.027265440672636032, -0.05649459734559059, -0.017777293920516968, 0.03572452440857887, 0.019089585170149803, 0.02711438573896885, -0.011130870319902897, 0.06465157121419907, -0.05860937014222145, 0.0054143802262842655, 0.010611618869006634, 0.02477303147315979, -0.0854971706867218, -0.0569855272769928, -0.0033019694965332747, -0.00967696588486433, 0.028738228604197502, 0.015615317970514297, 0.04508993774652481, 0.02854940854012966, 0.014369114302098751, 0.019542749971151352, 0.03391186520457268, -0.03130616247653961, -0.04701589047908783, -0.008964174427092075, 0.037027373909950256, -0.03761271387338638, 0.04803551360964775, 0.019958151504397392, -0.027510905638337135, -0.05245387554168701, -0.05441759154200554, 0.017900025472044945, 0.04663825407624245, -0.055361684411764145, -0.04637390747666359, 0.004770035855472088, 0.06548237055540085, -0.0381602868437767, 0.02499961480498314, -0.018919648602604866, -0.051094379276037216, -0.0326467789709568, 0.01852312870323658, -0.0003074206761084497, -0.04675154387950897, 0.04191778227686882, 0.08950012922286987, 0.06680410355329514, -0.04618508741259575, 0.04716694727540016, -0.029474621638655663, -0.0035403533838689327, 0.03102293610572815, -0.08428873121738434, 0.006698348559439182, 0.021544229239225388, -0.016842640936374664, -0.03340205177664757, 0.0652557909488678, 0.06906992942094803, 0.058949243277311325, -0.015360413119196892, -0.030211014673113823, -0.0312683992087841, 0.04546757787466049, 0.01567196473479271, 0.0033940186258405447, -0.00576841551810503, 0.03396850824356079, 0.01916511170566082, -0.053435731679201126, -0.01535097137093544, 0.017248600721359253, 0.006349033676087856, -0.025528308004140854, -0.023017017170786858, -0.0684657096862793, 0.03984077647328377, 0.030437598004937172, 0.018834680318832397, -0.017040900886058807, 0.030362069606781006, 0.007042942568659782, 0.035271357744932175, 0.00898305606096983, -0.017673444002866745, 0.0000061587397794937715, 0.009091626852750778, 0.029663439840078354, -0.028738228604197502, 0.02141205593943596, 0.07579188048839569, -0.0026127807796001434, 0.0018291824962943792, 0.013925389386713505, 0.06669081747531891, -0.011508508585393429, 0.04663825407624245, -0.00859125703573227, -0.008388277143239975, 0.012188255786895752, 0.017446860671043396, 0.06604883074760437, 0.002792158629745245, 0.00693909265100956, 0.019287845119833946, -0.038028113543987274, 0.007467785384505987, 0.05679670721292496, 0.012462043203413486, 0.034855958074331284, 0.07666044682264328, 0.011555712670087814, 0.03391186520457268, -0.009039701893925667, -0.006098848767578602, 0.0012603658251464367, 0.032476842403411865, -0.042219892144203186, -0.05166083574295044, -0.0340062715113163, 0.019920388236641884, 0.06823913007974625, 0.009922429919242859, -0.021525347605347633, 0.01613456942141056, -0.03655532747507095, 0.05566379427909851, -0.02220509573817253, 0.009001938626170158, 0.041426852345466614, -0.035837817937135696, 0.019183995202183723, 0.013783775269985199, -0.03865121677517891, 0.0519251823425293, -0.030815234407782555, -0.012443161569535732, 0.02464085817337036, -0.030324306339025497, 0.0010892486898228526, 0.010488886386156082, 0.10264192521572113, 0.024508684873580933, 0.030324306339025497, -0.017616797238588333, -0.053473494946956635, 0.01563419960439205, -0.024565331637859344, -0.03432726487517357, 0.0786241665482521, -0.023375771939754486, 0.021865222603082657, 0.062310218811035156, -0.050074756145477295, -0.03464825823903084, -0.00753859244287014, -0.010828760452568531, -0.05690999701619148, -0.005593758076429367, -0.04482559114694595, -0.02394222840666771, -0.05993109941482544, -0.015020539052784443, -0.028341708704829216, -0.028964810073375702, -0.01163124106824398, 0.027775252237915993, -0.0025490543339401484, 0.043126221746206284, 0.015879664570093155, -0.08950012922286987, -0.006131892092525959, 0.029342448338866234, -0.020298024639487267, -0.024093283340334892, -0.021355411037802696, 0.04845091328024864, 0.0031886782962828875, 0.02973896823823452, 0.010762673802673817, -0.000007615447429998312, -0.03529024124145508, -0.029304685071110725, 0.03249572217464447, 0.04558086767792702, -0.008699827827513218, -0.07854864001274109, 0.02358347363770008, -0.03717843070626259, -0.04278634861111641, -0.03714066743850708, 0.07186444848775864, -0.011385776102542877, -0.08376003801822662, -0.007222320884466171, 0.023734528571367264, 0.007061824668198824, 0.0804368257522583, -0.03916102647781372, -0.009049142710864544, -0.02105330117046833, 0.004177616909146309, -0.04799775034189224, 0.017937790602445602, -0.06472709774971008, -0.05845831334590912, 0.03782041370868683, 0.04508993774652481, 0.01828710548579693, 0.013632720336318016, 0.046071797609329224, 0.0629899650812149, 0.012008878402411938, 0.0026599853299558163, -0.029436856508255005, -0.013188996352255344, -0.035384651273489, -0.008671505376696587, 0.010639941319823265, 0.03410068154335022, -0.07144904881715775, -0.027548668906092644, 0.027340969070792198, -0.015388735570013523, -0.03897221013903618, 0.022507205605506897, 0.008931131102144718, -0.006495368201285601, 0.03338317200541496, 0.025131788104772568, 0.03691408410668373, -0.05690999701619148, -0.0533224418759346, 0.01640835776925087, -0.02229950577020645, -0.050490159541368484, -0.09720394015312195, -0.024942968040704727, 0.005513510201126337, 0.04070934280753136, 0.019637160003185272, 0.011669004335999489, -0.011621799319982529, 0.013141791336238384, -0.030362069606781006, -0.03323211520910263, 0.002435763133689761, -0.017796175554394722, -0.015530349686741829, 0.01174453180283308, -0.06091295927762985, 0.014907247386872768, -0.0067313918843865395, -0.019863741472363472, 0.05925135314464569, -0.017361892387270927, 0.016172334551811218, 0.020694544538855553, 0.0039368728175759315, 0.000011275656106590759, 0.024282103404402733, -0.02294148877263069, 0.006948533467948437, 0.023243598639965057, -0.06030873954296112, -0.024093283340334892, 0.01669158600270748, -0.014350231736898422, -0.004937612917274237, 0.0038259418215602636, -0.013160672970116138, 0.02656681090593338, 0.04388149827718735, 0.006245183292776346, 0.01842871867120266, 0.04165343567728996, 0.05679670721292496, -0.03621545433998108, -0.011083666235208511, -0.03242019563913345, 0.01939169503748417, 0.06759714335203171, -0.07654716074466705, -0.01857033371925354, 0.02951238490641117, 0.02288484387099743, 0.026094764471054077, -0.01935393176972866, 0.017890585586428642, 0.008916969411075115, -0.06015768274664879, -0.012981295585632324, -0.009662804193794727, -0.0029314125422388315, -0.03517695143818855, 0.0013583155814558268, -0.01229210663586855, -0.0017017298378050327, -0.008926411159336567, -0.09554233402013779, 0.03066417947411537, -0.04354162514209747, 0.014690105803310871, -0.0284927636384964, -0.03517695143818855, 0.03836799040436745, 0.007755734026432037, 0.012405398301780224, -0.041804492473602295, -0.013887626118957996, -0.04614732414484024, 0.030324306339025497, 0.03359087184071541, 0.04282411187887192, -0.03663085401058197, -0.01714475080370903, 0.028417235240340233, -0.01096093375235796, -0.07069377601146698, -0.043503861874341965, 0.029795613139867783, -0.009294607676565647, 0.025717126205563545, -0.0482620969414711, 0.02141205593943596, -0.11314024776220322, -0.07322394847869873, 0.013793216086924076, -0.02839835360646248, 0.021676402539014816, 0.07144904881715775, -0.05339796841144562, -0.0017217918066307902, 0.00012664138921536505, -0.023432418704032898, -0.0015589355025440454, 0.05158530920743942, -0.018324868753552437, 0.06774820387363434, 0.011234721168875694, 0.03089076280593872, 0.03360975533723831, 0.0102245407178998, 0.02701997570693493, -0.03340205177664757, -0.010186776518821716, 0.021751930937170982, -0.011669004335999489, -0.021827457472682, -0.03668750077486038, 0.032250259071588516, -0.026906684041023254, -0.03147609904408455, 0.009223800152540207, 0.03340205177664757, -0.006141332909464836, -0.05083003267645836, 0.005475746467709541, -0.05234058201313019, 0.05128319561481476, 0.023885583505034447, 0.008227781392633915, -0.03066417947411537, -0.002513650804758072, 0.05313362181186676, -0.04293740540742874, -0.008633741177618504, -0.03466713801026344, -0.016144011169672012, -0.07666044682264328, 0.011263043619692326, -0.040747106075286865, 0.011149752885103226, 0.059780046343803406, -0.0519251823425293, 0.021959630772471428, 0.06876782327890396, 0.029021456837654114, -0.051094379276037216, 0.016125129535794258, -0.04199330881237984, -0.07462120801210403, -0.01374601200222969, 0.03691408410668373, -0.02086448110640049, -0.013783775269985199, -0.022186214104294777, 0.02707662247121334, -0.06178152561187744, -0.01286800391972065, 0.003497869009152055, -0.014378555119037628, -0.03510142117738724, -0.026359111070632935, 0.026208054274320602, 0.020071443170309067, 0.030362069606781006, 0.014350231736898422, 0.03138169273734093, 0.0047983587719500065, 0.035460177809000015, 0.019542749971151352, 0.057891856878995895, 0.0048101600259542465, -0.011669004335999489, -0.01691816747188568, 0.06948533654212952, 0.0376882404088974, -0.021109946072101593, 0.0307963527739048, -0.026000354439020157, 0.009894107468426228, -0.04354162514209747, -0.039689719676971436, 0.05358678847551346, -0.10611619055271149, -0.01912734843790531, -0.04524099454283714, 0.015549231320619583, -0.0003850134089589119, 0.03213696554303169, -0.03253348544239998, 0.0074394624680280685, 0.0027945188339799643, 0.0482620969414711, 0.02426322177052498, -0.0450521744787693, -0.0206756629049778, 0.08851826936006546, 0.014369114302098751, 0.007189277559518814, 0.026736747473478317, -0.009016099385917187, 0.02054348960518837, -0.024565331637859344, -0.0008833181345835328, 0.06948533654212952, 0.03731060400605202, -0.028757110238075256, -0.003613520646467805, -0.01705034077167511, 0.030003314837813377, -0.04701589047908783, 0.002329552546143532, 0.0016025998629629612, 0.017248600721359253, 0.02919139340519905, -0.018730828538537025, -0.014690105803310871, 0.002308310242369771, -0.03226913884282112, -0.026453519240021706, 0.0487152598798275, -0.031098462641239166, 0.019061261788010597, 0.028889283537864685, -0.0340251550078392, 0.04082263261079788, 0.02311142534017563, 0.01948610506951809, -0.007968154735863209, 0.014019799418747425, -0.03249572217464447, 0.034818194806575775, -0.029587913304567337, 0.007892627269029617, 0.001458625541999936, 0.013188996352255344, 0.031551629304885864, 0.060648612678050995, -0.021355411037802696, -0.01673879101872444, 0.06329207867383957, -0.008713989518582821, -0.04863973334431648, -0.004404199309647083, -0.010857083834707737, -0.015105507336556911, -0.07413027435541153, -0.00398879824206233, -0.011404657736420631, -0.01719195581972599, 0.02532060630619526, -0.0245842132717371, 0.003049424383789301, -0.026000354439020157, 0.03591334447264671, -0.01560587715357542, 0.03183485567569733, -0.008053123950958252, -0.029814494773745537, 0.01860809698700905, -0.016531089320778847, 0.043088458478450775, -0.026359111070632935, -0.005810899659991264, 0.004744073376059532, 0.02054348960518837, 0.009473985061049461, 0.0367819108068943, 0.029115865007042885, 0.008860324509441853, -0.008558213710784912, 0.07922838628292084, 0.024338748306035995, 0.010724910534918308, 0.0245842132717371, 0.009809139184653759, 0.02297925390303135, 0.024621976539492607, 0.052642691880464554, 0.035837817937135696, -0.01967492327094078, 0.0027048299089074135, 0.07507437467575073, -0.025245079770684242, 0.03934984654188156, 0.018003877252340317, 0.04992370307445526, 0.01395371276885271, 0.014057562686502934, -0.014170854352414608, -0.014690105803310871, -0.03644203767180443, 0.03249572217464447, -0.008643182925879955, -0.02256385236978531, 0.020486844703555107, -0.002112410729750991, -0.0326467789709568, -0.039047736674547195, -0.03102293610572815, -0.0074394624680280685, -0.007274245843291283, 0.03653644397854805, -0.0013429740210995078, 0.037197310477495193, -0.019750451669096947, 0.044145844876766205, -0.011253602802753448, -0.015114948153495789, 0.0620458722114563, 0.03368528187274933, 0.012688626535236835, 0.07666044682264328, -0.08376003801822662, -0.01828710548579693, -0.032061439007520676, 0.02987114153802395, -0.03984077647328377, 0.033024415373802185, 0.05502181127667427, -0.005754254292696714, 0.027152149006724358, -0.01213161088526249, -0.009086906909942627 ]