index
int64 0
731k
| package
stringlengths 2
98
⌀ | name
stringlengths 1
76
| docstring
stringlengths 0
281k
⌀ | code
stringlengths 4
8.19k
| signature
stringlengths 2
42.8k
⌀ | embed_func_code
listlengths 768
768
|
---|---|---|---|---|---|---|
42,098 | sparse_dot_topn.api | sp_matmul_topn | Compute A * B whilst only storing the `top_n` elements.
This functions allows large matrices to multiplied with a limited memory footprint.
Args:
A: LHS of the multiplication, the number of columns of A determines the orientation of B.
`A` must be have an {32, 64}bit {int, float} dtype that is of the same kind as `B`.
Note the matrix is converted (copied) to CSR format if a CSC or COO matrix.
B: RHS of the multiplication, the number of rows of B must match the number of columns of A or the shape of B.T should be match A.
`B` must be have an {32, 64}bit {int, float} dtype that is of the same kind as `A`.
Note the matrix is converted (copied) to CSR format if a CSC or COO matrix.
top_n: the number of results to retain
sort: return C in a format where the first non-zero element of each row is the largest value
threshold: only return values greater than the threshold
density: the expected density of the result considering `top_n`. The expected number of non-zero elements
in C should <= (`density` * `top_n` * `A.shape[0]`) otherwise the memory has to reallocated.
This value should only be set if you have a strong expectation as being wrong incurs a realloaction penalty.
n_threads: number of threads to use, `None` implies sequential processing, -1 will use all but one of the available cores.
idx_dtype: dtype to use for the indices, defaults to 32bit integers
Throws:
TypeError: when A, B are not trivially convertable to a `CSR matrix`
Returns:
C: result matrix
| def sp_matmul_topn(
A: csr_matrix | csc_matrix | coo_matrix,
B: csr_matrix | csc_matrix | coo_matrix,
top_n: int,
threshold: int | float | None = None,
sort: bool = False,
density: float | None = None,
n_threads: int | None = None,
idx_dtype: DTypeLike | None = None,
) -> csr_matrix:
"""Compute A * B whilst only storing the `top_n` elements.
This functions allows large matrices to multiplied with a limited memory footprint.
Args:
A: LHS of the multiplication, the number of columns of A determines the orientation of B.
`A` must be have an {32, 64}bit {int, float} dtype that is of the same kind as `B`.
Note the matrix is converted (copied) to CSR format if a CSC or COO matrix.
B: RHS of the multiplication, the number of rows of B must match the number of columns of A or the shape of B.T should be match A.
`B` must be have an {32, 64}bit {int, float} dtype that is of the same kind as `A`.
Note the matrix is converted (copied) to CSR format if a CSC or COO matrix.
top_n: the number of results to retain
sort: return C in a format where the first non-zero element of each row is the largest value
threshold: only return values greater than the threshold
density: the expected density of the result considering `top_n`. The expected number of non-zero elements
in C should <= (`density` * `top_n` * `A.shape[0]`) otherwise the memory has to reallocated.
This value should only be set if you have a strong expectation as being wrong incurs a realloaction penalty.
n_threads: number of threads to use, `None` implies sequential processing, -1 will use all but one of the available cores.
idx_dtype: dtype to use for the indices, defaults to 32bit integers
Throws:
TypeError: when A, B are not trivially convertable to a `CSR matrix`
Returns:
C: result matrix
"""
n_threads: int = n_threads or 1
if n_threads < 0:
n_threads = _N_CORES
density: float = density or 1.0
idx_dtype = assert_idx_dtype(idx_dtype)
if isinstance(A, csc_matrix) and isinstance(B, csc_matrix) and A.shape[0] == B.shape[1]:
A = A.transpose()
B = B.transpose()
elif isinstance(A, (coo_matrix, csc_matrix)):
A = A.tocsr(False)
elif not isinstance(A, csr_matrix):
msg = f"type of `A` must be one of `csr_matrix`, `csc_matrix` or `csr_matrix`, got `{type(A)}`"
raise TypeError(msg)
if not isinstance(B, (csr_matrix, coo_matrix, csc_matrix)):
msg = f"type of `B` must be one of `csr_matrix`, `csc_matrix` or `csr_matrix`, got `{type(B)}`"
raise TypeError(msg)
A_nrows, A_ncols = A.shape
B_nrows, B_ncols = B.shape
if A_ncols == B_nrows:
if isinstance(B, (coo_matrix, csc_matrix)):
B = B.tocsr(False)
elif A_ncols == B_ncols:
B = B.transpose() if isinstance(B, csc_matrix) else B.transpose().tocsr(False)
B_nrows, B_ncols = B.shape
else:
msg = (
"Matrices `A` and `B` have incompatible shapes. `A.shape[1]` must be equal to `B.shape[0]` or `B.shape[1]`."
)
raise ValueError(msg)
if B_ncols == top_n and (sort is False) and (threshold is None):
return sp_matmul(A, B, n_threads)
assert_supported_dtype(A)
assert_supported_dtype(B)
ensure_compatible_dtype(A, B)
# guard against top_n larger than number of cols
top_n = min(top_n, B_ncols)
# handle threshold
if threshold is not None:
threshold = int(np.rint(threshold)) if np.issubdtype(A.data.dtype, np.integer) else float(threshold)
# basic check. if A or B are all zeros matrix, return all zero matrix directly
if A.indices.size == 0 or B.indices.size == 0:
C_indptr = np.zeros(A_nrows + 1, dtype=idx_dtype)
C_indices = np.zeros(1, dtype=idx_dtype)
C_data = np.zeros(1, dtype=A.dtype)
return csr_matrix((C_data, C_indices, C_indptr), shape=(A_nrows, B_ncols))
kwargs = {
"top_n": top_n,
"nrows": A_nrows,
"ncols": B_ncols,
"threshold": threshold,
"density": density,
"A_data": A.data,
"A_indptr": A.indptr if idx_dtype is None else A.indptr.astype(idx_dtype),
"A_indices": A.indices if idx_dtype is None else A.indices.astype(idx_dtype),
"B_data": B.data,
"B_indptr": B.indptr if idx_dtype is None else B.indptr.astype(idx_dtype),
"B_indices": B.indices if idx_dtype is None else B.indices.astype(idx_dtype),
}
func = _core.sp_matmul_topn if not sort else _core.sp_matmul_topn_sorted
if n_threads > 1:
if _core._has_openmp_support:
kwargs["n_threads"] = n_threads
kwargs.pop("density")
func = _core.sp_matmul_topn_mt if not sort else _core.sp_matmul_topn_sorted_mt
else:
msg = "sparse_dot_topn: extension was compiled without parallelisation (OpenMP) support, ignoring ``n_threads``"
warnings.warn(msg, stacklevel=1)
return csr_matrix(func(**kwargs), shape=(A_nrows, B_ncols))
| (A: 'csr_matrix | csc_matrix | coo_matrix', B: 'csr_matrix | csc_matrix | coo_matrix', top_n: 'int', threshold: 'int | float | None' = None, sort: 'bool' = False, density: 'float | None' = None, n_threads: 'int | None' = None, idx_dtype: 'DTypeLike | None' = None) -> 'csr_matrix' | [
-0.07923392206430435,
-0.0072855269536376,
0.0190646443516016,
-0.009486469440162182,
-0.004725402686744928,
-0.02688002772629261,
-0.04764632508158684,
-0.008258628658950329,
-0.011351156048476696,
-0.06977802515029907,
-0.06199320778250694,
0.002878547180444002,
0.01662934198975563,
0.0331975482404232,
-0.04442643001675606,
0.06721025705337524,
0.029936891049146652,
-0.06733253598213196,
0.03448142856359482,
-0.0013271885691210628,
-0.037314124405384064,
-0.044385671615600586,
-0.010046894662082195,
0.07601402699947357,
-0.00966988131403923,
0.022090939804911613,
0.01779095083475113,
-0.004159883130341768,
0.006088254973292351,
0.016751617193222046,
0.021235017105937004,
0.011891202069818974,
0.0002499623515177518,
-0.02457718923687935,
-0.0069441767409443855,
0.0442226380109787,
0.04817618057131767,
-0.01648668758571148,
-0.02893831580877304,
-0.035704176872968674,
0.00479163508862257,
-0.05869179591536522,
0.013623425737023354,
-0.06484628468751907,
-0.009399858303368092,
-0.0017309495015069842,
0.00655697425827384,
0.014244987629354,
0.0007572107715532184,
0.016333844512701035,
0.02317103184759617,
-0.08779314160346985,
-0.009313247166574001,
0.03360512852668762,
-0.09211350977420807,
-0.01721014641225338,
0.020552318543195724,
-0.07295716553926468,
-0.03717147186398506,
-0.052374277263879776,
0.0002806902048178017,
-0.006888134405016899,
0.0038465543184429407,
0.03366626799106598,
-0.05029560998082161,
-0.0027104197070002556,
-0.02215207740664482,
-0.017301851883530617,
0.01512128859758377,
0.001277514616958797,
-0.02321179024875164,
0.003151117591187358,
0.00723457895219326,
0.004702476318925619,
0.012716555967926979,
-0.015600197948515415,
-0.024638326838612556,
-0.06341974437236786,
-0.05897710472345352,
-0.03244351968169212,
0.024393778294324875,
0.009827818721532822,
-0.0002783020318020135,
-0.057754356414079666,
0.017852088436484337,
0.0021614579018205404,
0.0983087569475174,
0.05249655246734619,
0.0022417004220187664,
-0.05351550504565239,
-0.05530886724591255,
0.015916073694825172,
0.03611175715923309,
0.011228881776332855,
0.03912786394357681,
0.00641941512003541,
0.018708009272813797,
0.016537636518478394,
0.009695354849100113,
-0.028816040605306625,
0.024842116981744766,
-0.016068916767835617,
0.011096417903900146,
-0.0020990469492971897,
-0.009354004636406898,
-0.003619836876168847,
-0.00325301312841475,
0.07291640341281891,
0.012859209440648556,
-0.004626054782420397,
-0.026757752522826195,
-0.059221651405096054,
-0.021785253658890724,
-0.014387642033398151,
0.010413717478513718,
-0.015345458872616291,
-0.014846171252429485,
0.0650908350944519,
0.005171195603907108,
-0.007407801225781441,
0.002060835948213935,
-0.05653161182999611,
-0.019309192895889282,
-0.06961499154567719,
-0.029936891049146652,
-0.012288594618439674,
0.06533537805080414,
0.005036184098571539,
0.05119228735566139,
-0.026207517832517624,
-0.04886907339096069,
-0.04332595691084862,
0.01253314409404993,
0.09178745001554489,
-0.025616522878408432,
-0.03120039589703083,
-0.011646653525531292,
-0.00456746481359005,
-0.021296154707670212,
-0.023884300142526627,
0.03140418604016304,
-0.004692286718636751,
-0.008284102194011211,
0.00033020504633896053,
0.004506327677518129,
-0.0331975482404232,
0.07413914799690247,
-0.07324247062206268,
0.03912786394357681,
-0.0005534198135137558,
-0.02351747639477253,
-0.026248276233673096,
0.01028634887188673,
-0.059669993817806244,
0.021071985363960266,
-0.0026212611701339483,
0.09675994515419006,
-0.03817004710435867,
-0.012176509946584702,
0.015753041952848434,
0.019726965576410294,
-0.018402323126792908,
-0.04210321232676506,
0.013440013863146305,
-0.005206858739256859,
-0.002598334802314639,
0.06521310657262802,
0.03329944238066673,
-0.02722647227346897,
0.004919004160910845,
-0.013429824262857437,
-0.010057083331048489,
0.0021054153330624104,
-0.04332595691084862,
-0.030385231599211693,
-0.044141121208667755,
-0.03024257719516754,
-0.05001030117273331,
0.021724116057157516,
-0.003247918328270316,
-0.0065926373936235905,
0.008477703668177128,
-0.0012208352563902736,
-0.02200942300260067,
-0.03490938991308212,
0.08657039701938629,
0.02496439218521118,
-0.06403111666440964,
0.02738950401544571,
0.02527007833123207,
-0.032586175948381424,
-0.04768708348274231,
-0.023028377443552017,
0.049072861671447754,
0.007616687100380659,
0.027776706963777542,
-0.011717979796230793,
0.0343591570854187,
0.04593448340892792,
0.05677616223692894,
-0.005599156487733126,
0.02506628818809986,
0.05310792475938797,
-0.003619836876168847,
0.08551068603992462,
0.01009784173220396,
-0.00961893331259489,
-0.006342993583530188,
-0.07352777570486069,
0.0478501170873642,
-0.06028136610984802,
-0.04128804802894592,
0.03572455421090126,
0.01314451638609171,
0.06655813008546829,
0.04642358049750328,
-0.03266768902540207,
-0.007331379689276218,
-0.026492824777960777,
-0.061381835490465164,
0.08123107254505157,
-0.0031867811921983957,
-0.04601599648594856,
0.040269091725349426,
0.003892407286912203,
0.024128848686814308,
0.04467097669839859,
0.03413498401641846,
0.052333518862724304,
-0.006837186403572559,
-0.0020047936122864485,
-0.023497097194194794,
0.015192615799605846,
0.022987620905041695,
-0.07034863531589508,
-0.09406990557909012,
-0.041226912289857864,
0.03935203328728676,
-0.0365397185087204,
-0.024536430835723877,
-0.043081410229206085,
-0.06517235189676285,
-0.013429824262857437,
0.018534786999225616,
-0.032688070088624954,
-0.007484222762286663,
0.01967601664364338,
0.002175468485802412,
-0.0058691794984042645,
0.019696395844221115,
-0.007698203437030315,
-0.04968423396348953,
0.013684562407433987,
-0.026370549574494362,
0.009287772700190544,
-0.01984923891723156,
-0.037599433213472366,
-0.03662123531103134,
-0.0391482412815094,
-0.044507946819067,
0.0028174100443720818,
0.00922154076397419,
-0.0010253232903778553,
0.005925222299993038,
-0.01364380493760109,
-0.0012966200010851026,
0.012044045142829418,
0.05942544341087341,
-0.04968423396348953,
0.024353019893169403,
0.09545568376779556,
0.029019832611083984,
0.00786633137613535,
0.021846391260623932,
0.0034771831706166267,
-0.05506431683897972,
-0.027165334671735764,
0.0013513887533918023,
-0.008284102194011211,
-0.035439249128103256,
-0.0214591883122921,
-0.025453491136431694,
-0.08412490785121918,
0.019523173570632935,
-0.02180563285946846,
-0.021438809111714363,
-0.030385231599211693,
-0.028000878170132637,
0.01999189332127571,
-0.03211745619773865,
0.023150652647018433,
-0.013684562407433987,
0.025962967425584793,
0.007749150972813368,
-0.04446718841791153,
-0.02351747639477253,
-0.017373180016875267,
0.00518648000434041,
0.002473512664437294,
-0.004924098961055279,
-0.02667623572051525,
-0.05078470706939697,
0.009715734049677849,
-0.013796648010611534,
0.05229276046156883,
0.016670100390911102,
0.00361728947609663,
0.023578613996505737,
-0.0009801071137189865,
0.03315678983926773,
-0.002026446396484971,
0.02598334662616253,
-0.013623425737023354,
0.017169388011097908,
-0.043692782521247864,
0.013898543082177639,
-0.01831061765551567,
0.0507439486682415,
0.06570220738649368,
0.05702070891857147,
0.010974142700433731,
-0.04617903009057045,
0.028877178207039833,
0.022172456607222557,
-0.01522318460047245,
-0.059221651405096054,
-0.001623959164135158,
-0.05351550504565239,
-0.008625452406704426,
-0.012859209440648556,
0.0054972609505057335,
0.04789087548851967,
0.050173334777355194,
0.025249699130654335,
-0.05759132280945778,
0.04617903009057045,
-0.025759177282452583,
0.0018379397224634886,
0.007387422025203705,
-0.010576751083135605,
-0.014255177229642868,
0.029957270249724388,
-0.00706135667860508,
-0.015335269272327423,
-0.03556152060627937,
-0.039168622344732285,
0.030324093997478485,
0.002476060064509511,
-0.03490938991308212,
-0.04511931911110878,
0.0038541965186595917,
0.022335488349199295,
0.0788671001791954,
0.025188561528921127,
0.005431029014289379,
0.0772775337100029,
-0.024862496182322502,
-0.023272927850484848,
0.06439794600009918,
-0.013246412388980389,
-0.024006575345993042,
0.04141032323241234,
-0.014112523756921291,
-0.036397065967321396,
0.006526405457407236,
0.0006409862544387579,
-0.023028377443552017,
0.020613456144928932,
0.0010457023745402694,
-0.06749556213617325,
0.03592834621667862,
-0.10474855452775955,
0.0330548919737339,
0.06199320778250694,
-0.011177933774888515,
0.024638326838612556,
-0.10417793691158295,
0.02166297845542431,
-0.017923414707183838,
0.03352361172437668,
-0.0052781859412789345,
-0.0023843541275709867,
-0.010051988996565342,
0.0025231868494302034,
-0.026961544528603554,
0.013521529734134674,
0.011768927797675133,
0.023252548649907112,
0.0005244432832114398,
0.013511340133845806,
-0.02969234250485897,
0.022987620905041695,
-0.0048272982239723206,
-0.040819328278303146,
-0.0015207900432869792,
0.00046075863065198064,
0.04939892888069153,
0.02015492506325245,
0.022376246750354767,
-0.06737329065799713,
-0.039576202630996704,
-0.0017296758014708757,
-0.033890437334775925,
-0.012288594618439674,
-0.019839050248265266,
-0.010495234280824661,
0.010984332300722599,
-0.025351595133543015,
-0.020460613071918488,
0.0572652593255043,
-0.052333518862724304,
-0.02975348010659218,
0.01600777916610241,
-0.021235017105937004,
-0.02215207740664482,
0.025453491136431694,
0.006648680195212364,
0.024251123890280724,
0.018779337406158447,
-0.029305139556527138,
0.026370549574494362,
0.012767503038048744,
0.03837383911013603,
-0.03170987218618393,
-0.029875755310058594,
-0.08343201875686646,
-0.018117016181349754,
-0.024944012984633446,
-0.017597349360585213,
-0.007963132113218307,
-0.010306728072464466,
-0.022946862503886223,
-0.012023666873574257,
0.06154486909508705,
-0.03105774149298668,
0.010444286279380322,
-0.017750192433595657,
0.012594280764460564,
-0.004636244382709265,
0.0005868542939424515,
0.045200835913419724,
0.008172017522156239,
0.0041242195293307304,
-0.021540705114603043,
-0.036356307566165924,
-0.01504996232688427,
0.021296154707670212,
0.02101084776222706,
-0.08204624056816101,
0.011758738197386265,
0.08204624056816101,
-0.0026212611701339483,
-0.016568204388022423,
0.013623425737023354,
-0.009863482788205147,
-0.059669993817806244,
0.013735510408878326,
-0.02975348010659218,
0.016914648935198784,
0.03352361172437668,
0.024699464440345764,
0.026390928775072098,
-0.02241700515151024,
-0.006990029942244291,
0.01469332817941904,
0.06276761740446091,
-0.02496439218521118,
0.023802783340215683,
-0.002865810412913561,
-0.020073410123586655,
0.018769146874547005,
-0.00765235023573041,
-0.08229079097509384,
0.0069543663412332535,
0.015457544475793839,
0.017373180016875267,
-0.02743026241660118,
0.017668675631284714,
-0.017332421615719795,
0.0029345897492021322,
-0.0055074505507946014,
-0.011931960470974445,
-0.008966801688075066,
0.0008540115086361766,
0.02094971016049385,
-0.02506628818809986,
0.07841876149177551,
0.025045908987522125,
0.04255155101418495,
-0.037864360958337784,
0.024536430835723877,
0.02057269774377346,
0.0629306510090828,
0.06615054607391357,
-0.001118302927352488,
0.038761038333177567,
-0.012451627291738987,
0.0031332860235124826,
0.035398490726947784,
-0.007631971500813961,
0.014581242576241493,
-0.023232169449329376,
-0.029855376109480858,
0.008854717016220093,
0.04491552710533142,
0.0031383808236569166,
-0.021540705114603043,
0.01434688363224268,
0.021724116057157516,
-0.05844724550843239,
-0.012573902495205402,
-0.023028377443552017,
0.012268215417861938,
0.027307989075779915,
-0.0030339378863573074,
0.07299792021512985,
0.012879588641226292,
0.013032431714236736,
0.038312699645757675,
-0.022070560604333878,
0.060729704797267914,
0.027552537620067596,
-0.016894269734621048,
-0.01847364939749241,
0.020766299217939377,
0.007616687100380659,
0.019655637443065643,
0.04797239229083061,
-0.003214802360162139,
0.047401778399944305,
-0.10833527147769928,
-0.020511560142040253,
-0.030711296945810318,
-0.0003273392212577164,
0.013776268810033798,
-0.02873452566564083,
-0.01183006539940834,
0.0037497535813599825,
0.10124334692955017,
-0.03808853030204773,
-0.012421058490872383,
0.026492824777960777,
0.04145108163356781,
0.011646653525531292,
-0.016028158366680145,
0.04960272088646889,
-0.05159987136721611,
0.05649085342884064,
-0.07589175552129745,
-0.002470965264365077,
0.012635039165616035,
0.01625232957303524,
0.07157138735055923,
-0.001942382543347776,
0.011198312975466251,
0.026941165328025818,
-0.036050621420145035,
-0.021683357656002045,
0.014367262832820415,
0.028877178207039833,
0.023476717993617058,
0.021194258704781532,
0.048665281385183334,
-0.01892198994755745,
0.006832092069089413,
-0.0378439798951149,
-0.0016583489486947656,
-0.022478142753243446,
0.026350170373916626,
-0.0034568042028695345,
-0.004205735865980387,
-0.032728828489780426,
-0.023945437744259834,
0.007193821016699076,
-0.011677222326397896,
-0.006256382446736097,
0.01652744598686695,
0.006154486909508705,
0.00457001244649291,
-0.024699464440345764,
0.04096198081970215,
0.011667032726109028,
0.056246303021907806,
-0.019696395844221115,
0.03572455421090126,
-0.0404525063931942,
-0.09219502657651901,
-0.014550674706697464,
0.03658047690987587,
-0.05221124365925789,
-0.010383149608969688,
-0.012451627291738987,
0.027572916820645332,
-0.058814071118831635,
0.030161062255501747,
0.0036580476444214582,
-0.013521529734134674,
0.04361126571893692,
-0.004047797992825508,
-0.017098061740398407,
-0.021744495257735252,
0.0009896598057821393,
0.00039675552397966385,
-0.009160403162240982,
0.001160971587523818,
-0.009099266491830349,
-0.06370505690574646,
-0.030262956395745277,
0.059303168207407,
-0.009267393499612808,
0.059710752218961716,
0.038312699645757675,
-0.028510354459285736,
0.025453491136431694,
-0.023395201191306114,
-0.01926843449473381,
-0.007774624973535538,
-0.012410868890583515,
0.04020795598626137,
-0.038516491651535034,
0.030181441456079483,
0.01583455689251423,
0.021071985363960266,
-0.0012666882248595357,
-0.007896899245679379,
0.10711252689361572,
0.03480749577283859,
-0.07144910842180252,
0.004277062602341175,
0.11885088682174683,
0.01782151870429516,
0.0000247574171226006,
0.08335050195455551,
0.058365728706121445,
0.005082036834210157,
-0.06125956028699875,
0.07723677158355713,
0.033747781068086624,
0.021418429911136627,
0.047401778399944305,
-0.024393778294324875,
-0.023537855595350266,
0.04134918376803398,
-0.010699025355279446,
0.013857784681022167,
-0.06403111666440964,
0.03688616305589676,
-0.01032201200723648,
0.05742829293012619,
0.0726310983300209,
-0.02954968810081482,
-0.009537416510283947,
-0.017638107761740685,
-0.027348745614290237,
0.013664184138178825,
-0.01482579205185175,
-0.005838611163198948,
0.06733253598213196,
0.012716555967926979,
-0.015916073694825172,
0.04381505772471428,
-0.03792549669742584,
0.015202805399894714,
-0.015192615799605846,
-0.03686578571796417,
0.010296538472175598,
0.045649174600839615,
0.029957270249724388,
-0.025045908987522125,
0.015498301945626736,
-0.007922373712062836,
0.008416566997766495,
-0.0041726198978722095,
-0.02663547731935978,
-0.0041038403287529945,
0.0033600034657865763,
-0.0009266120032407343,
-0.038618385791778564,
-0.07748132199048996,
-0.027511779218912125,
0.06533537805080414,
0.04748329147696495,
-0.019421277567744255,
0.0394335500895977,
0.005522734951227903,
-0.016476498916745186,
-0.01735280081629753,
0.019085023552179337,
-0.04638282209634781,
-0.04255155101418495,
0.07650312781333923,
-0.016476498916745186,
0.04923589527606964,
-0.0011596978874877095,
-0.04793163388967514,
0.050825465470552444,
-0.015651145949959755,
0.0408804677426815,
0.06403111666440964,
-0.011014901101589203,
-0.0018863400910049677,
0.0345018096268177,
-0.023476717993617058,
-0.023680509999394417,
-0.04128804802894592,
0.045649174600839615,
-0.07634009420871735,
0.04397808760404587,
0.03867952525615692,
-0.007744056172668934,
-0.012441437691450119,
-0.04418187960982323,
0.017322231084108353,
0.006251287646591663,
-0.0004941930528730154,
-0.027898982167243958,
0.009934809058904648,
0.03761981055140495,
-0.02527007833123207,
0.04895058646798134,
0.0022518900223076344,
0.02341558039188385,
0.04210321232676506,
-0.04361126571893692,
0.02427150309085846,
0.0317506305873394,
0.038924071937799454,
-0.06818845123052597,
0.016364414244890213,
-0.030181441456079483,
0.06484628468751907,
0.020929330959916115,
0.014041196554899216,
0.05661312863230705,
0.005532924551516771,
-0.0013023515930399299,
-0.006118823308497667,
-0.09512961655855179,
0.08204624056816101,
0.037762463092803955,
0.009007560089230537,
0.023028377443552017,
-0.004218472633510828,
-0.03109849989414215,
-0.05090698227286339,
0.07279413193464279,
-0.006067875772714615,
-0.052333518862724304,
0.003219897160306573,
-0.01196252927184105,
-0.00655697425827384,
-0.03808853030204773,
-0.0342165008187294,
-0.02496439218521118,
0.047605566680431366,
0.035255834460258484,
0.04000416398048401,
-0.054249152541160583,
-0.020664403215050697,
-0.07450597733259201,
0.03884255513548851,
-0.04316292330622673,
-0.07360929250717163,
0.08167941868305206,
-0.04764632508158684,
0.03307527303695679,
0.0013692205538973212,
0.051722146570682526
]
|
42,100 | sparse_dot_topn.api | zip_sp_matmul_topn | Compute zip-matrix C = zip_i C_i = zip_i A * B_i = A * B whilst only storing the `top_n` elements.
Combine the sub-matrices together and keep only the `top_n` elements per row.
Pre-calling this function, matrix B has been split row-wise into chunks B_i, and C_i = A * B_i have been calculated.
This function computes C = zip_i C_i, which is equivalent to A * B when only keeping the `top_n` elements.
It allows very large matrices to be split and multiplied with a limited memory footprint.
Args:
top_n: the number of results to retain; should be smaller or equal to top_n used to obtain C_mats.
C_mats: a list with each C_i sub-matrix, with format csr_matrix.
Returns:
C: zipped result matrix
Raises:
TypeError: when not all elements of `C_mats` is a csr_matrix or trivially convertable
ValueError: when not all elements of `C_mats` has the same number of rows
| def zip_sp_matmul_topn(top_n: int, C_mats: list[csr_matrix]) -> csr_matrix:
"""Compute zip-matrix C = zip_i C_i = zip_i A * B_i = A * B whilst only storing the `top_n` elements.
Combine the sub-matrices together and keep only the `top_n` elements per row.
Pre-calling this function, matrix B has been split row-wise into chunks B_i, and C_i = A * B_i have been calculated.
This function computes C = zip_i C_i, which is equivalent to A * B when only keeping the `top_n` elements.
It allows very large matrices to be split and multiplied with a limited memory footprint.
Args:
top_n: the number of results to retain; should be smaller or equal to top_n used to obtain C_mats.
C_mats: a list with each C_i sub-matrix, with format csr_matrix.
Returns:
C: zipped result matrix
Raises:
TypeError: when not all elements of `C_mats` is a csr_matrix or trivially convertable
ValueError: when not all elements of `C_mats` has the same number of rows
"""
_nrows = []
ncols = []
data = []
indptr = []
indices = []
for C in C_mats:
# check correct type of each C
if isinstance(C, (coo_matrix, csc_matrix)):
C = C.tocsr(False)
elif not isinstance(C, csr_matrix):
msg = f"type of `C` must be one of `csr_matrix`, `csc_matrix` or `csr_matrix`, got `{type(C)}`"
raise TypeError(msg)
nrows, c_nc = C.shape
_nrows.append(nrows)
ncols.append(c_nc)
data.append(C.data)
indptr.append(C.indptr)
indices.append(C.indices)
ncols = np.asarray(ncols, int)
total_cols = ncols.sum()
if not np.all(np.diff(_nrows) == 0):
msg = "Each `C` in `C_mats` should have the same number of rows."
raise ValueError(msg)
return csr_matrix(
_core.zip_sp_matmul_topn(
top_n=top_n, Z_max_nnz=nrows * top_n, nrows=nrows, B_ncols=ncols, data=data, indptr=indptr, indices=indices
),
shape=(nrows, total_cols),
)
| (top_n: int, C_mats: list[scipy.sparse._csr.csr_matrix]) -> scipy.sparse._csr.csr_matrix | [
-0.08740076422691345,
0.030196402221918106,
0.0036924949381500483,
-0.014845001511275768,
-0.006133058108389378,
-0.03306599706411362,
-0.0162797998636961,
-0.009101120755076408,
0.030702801421284676,
-0.03119044564664364,
-0.032915953546762466,
0.01793028600513935,
-0.006419079843908548,
0.02458849921822548,
0.000901437655556947,
0.04936455562710762,
0.04156225174665451,
-0.09872911125421524,
0.06110551580786705,
-0.007197434548288584,
-0.024513477459549904,
-0.033422354608774185,
0.00447084940969944,
0.06196827068924904,
-0.004550560377538204,
0.020443527027964592,
0.010015453211963177,
0.017995931208133698,
-0.001555536757223308,
0.0037253170739859343,
0.010821940377354622,
0.033384840935468674,
-0.0014476923970505595,
-0.02171890251338482,
-0.013110115192830563,
0.03677959367632866,
0.05285308137536049,
-0.03991176560521126,
-0.04493824765086174,
-0.046926334500312805,
0.04430055990815163,
-0.039574168622493744,
0.02381952293217182,
-0.04321274161338806,
0.01864299550652504,
0.008228988386690617,
0.017039397731423378,
0.0021451637148857117,
-0.00932149775326252,
0.01804281957447529,
0.039461635053157806,
-0.05097752809524536,
-0.014038514345884323,
-0.008454054594039917,
-0.04598855972290039,
-0.019064996391534805,
-0.008894809521734715,
-0.05607903376221657,
0.002503863302990794,
-0.052065350115299225,
-0.007882011123001575,
-0.01093447394669056,
0.025826364755630493,
0.01435735821723938,
-0.050002243369817734,
0.014141669496893883,
-0.025319965556263924,
-0.041037097573280334,
-0.007525656372308731,
-0.03818625956773758,
-0.0030360512901097536,
0.041037097573280334,
-0.018764907494187355,
0.003193128854036331,
-0.006620701868087053,
-0.015388911589980125,
-0.005129637196660042,
-0.06605697423219681,
-0.06939546018838882,
-0.0013128870632499456,
-0.023106811568140984,
-0.03848634660243988,
-0.011844117194414139,
-0.017255086451768875,
0.05386587977409363,
-0.015107579529285431,
0.08034868538379669,
0.02453223243355751,
-0.02730805054306984,
-0.008149277418851852,
-0.037904925644397736,
0.024776054546236992,
0.013119492679834366,
-0.012097316794097424,
0.03306599706411362,
-0.012978826649487019,
0.03310351073741913,
-0.017067531123757362,
0.0024382187984883785,
-0.010746918618679047,
0.031453024595975876,
-0.03968670219182968,
-0.012556826695799828,
-0.05487867817282677,
0.017367620021104813,
0.013363314792513847,
-0.013710292056202888,
0.06643208861351013,
0.009865408763289452,
-0.005003037396818399,
-0.02079988270998001,
-0.049889709800481796,
0.017367620021104813,
-0.012472427450120449,
0.04666375741362572,
-0.018061574548482895,
-0.007005190476775169,
0.07494709640741348,
0.006118991412222385,
-0.0067988792434334755,
-0.0005011243047192693,
-0.06740736961364746,
-0.027289295569062233,
-0.05949253961443901,
-0.04475069418549538,
0.015782777220010757,
0.0651191994547844,
-0.02982129156589508,
0.047226425260305405,
-0.007722589187324047,
-0.032221999019384384,
-0.042537540197372437,
-0.015707755461335182,
0.0436253622174263,
-0.033722441643476486,
-0.0023221690207719803,
-0.0063675022684037685,
-0.04257505387067795,
-0.02246912382543087,
-0.04437558352947235,
0.01838979683816433,
0.0020947582088410854,
0.012275493703782558,
0.038561370223760605,
-0.03822376951575279,
-0.03621692582964897,
0.07303403317928314,
-0.049139488488435745,
0.040774520486593246,
-0.010887584649026394,
0.00848687719553709,
-0.015220112167298794,
-0.019862106069922447,
-0.053828369826078415,
0.012453671544790268,
0.0020220805890858173,
0.0836496651172638,
0.01133771799504757,
-0.023556945845484734,
0.005772014148533344,
-0.002442907774820924,
0.016392333433032036,
-0.07254638522863388,
0.007938277907669544,
-0.03366617485880852,
-0.029277382418513298,
0.07824806869029999,
0.002456974470987916,
-0.038261279463768005,
-0.0016071144491434097,
-0.025863874703645706,
-0.011525273323059082,
0.009129254147410393,
-0.06965803354978561,
-0.03822376951575279,
-0.04741397872567177,
-0.05225290358066559,
-0.019787084311246872,
-0.021925214678049088,
0.00409339414909482,
-0.0273455623537302,
-0.027139252051711082,
0.0027523739263415337,
-0.006475346628576517,
-0.01571713387966156,
0.07160861045122147,
0.02336939051747322,
-0.02835836075246334,
0.02342565730214119,
-0.0017630198271945119,
-0.038711413741111755,
-0.031959421932697296,
-0.011712828651070595,
0.0657568871974945,
-0.028827248141169548,
-0.0045341490767896175,
0.014001002535223961,
0.05521627888083458,
0.030215159058570862,
0.059980183839797974,
-0.03998678922653198,
0.04835175350308418,
0.06050533801317215,
-0.02638903073966503,
0.07280896604061127,
-0.0003507870133034885,
-0.029333647340536118,
-0.036404483020305634,
-0.02730805054306984,
0.07554727047681808,
-0.0026867296546697617,
-0.01909312978386879,
0.06298106908798218,
-0.013081981800496578,
0.03691088408231735,
0.055891476571559906,
-0.039461635053157806,
0.0056876144371926785,
-0.002951651578769088,
-0.038861457258462906,
0.02593889832496643,
-0.026464052498340607,
-0.05127761885523796,
0.06594444066286087,
-0.03542919456958771,
0.04696384444832802,
0.016945620998740196,
0.05577894672751427,
0.011759717017412186,
0.016711177304387093,
-0.028545916080474854,
-0.024494722485542297,
0.037248481065034866,
0.009265231899917126,
-0.07067083567380905,
-0.08567526191473007,
-0.04977717623114586,
0.006850457284599543,
-0.012500560842454433,
-0.029690003022551537,
-0.05311565846204758,
-0.05829218775033951,
-0.010887584649026394,
0.013363314792513847,
0.0005354117602109909,
0.025076143443584442,
-0.0032798731699585915,
0.013203892856836319,
-0.014423002488911152,
0.04276260733604431,
0.038411322981119156,
-0.02710174024105072,
0.016804954037070274,
-0.01480749063193798,
0.019280685111880302,
-0.013897847384214401,
-0.03878643363714218,
-0.014432379975914955,
-0.019862106069922447,
-0.04741397872567177,
0.011825361289083958,
-0.022600412368774414,
0.049101974815130234,
-0.020631082355976105,
0.011309584602713585,
-0.004569315817207098,
0.013457092456519604,
0.030215159058570862,
-0.04763904586434364,
0.0253949873149395,
0.06965803354978561,
0.043325275182724,
0.03711719438433647,
0.03360990807414055,
-0.009677853435277939,
-0.056191567331552505,
-0.042837630957365036,
-0.0008973348885774612,
-0.05420348048210144,
-0.07104594260454178,
0.029708757996559143,
-0.004079327452927828,
-0.05900489538908005,
-0.008861987851560116,
0.03451017290353775,
-0.030065113678574562,
-0.011572161689400673,
-0.054391033947467804,
0.022337835282087326,
-0.0077507225796580315,
0.03454768657684326,
-0.0457259826362133,
0.005476614460349083,
-0.03668581694364548,
-0.045313358306884766,
-0.03687337040901184,
0.013213270343840122,
0.01231300551444292,
-0.031809378415346146,
0.011112650856375694,
-0.01435735821723938,
-0.08402477204799652,
0.029896313324570656,
-0.006592568475753069,
0.0657568871974945,
0.05716685578227043,
-0.040624476969242096,
0.0064987908117473125,
-0.02458849921822548,
0.02665160782635212,
-0.012388027273118496,
0.007220878731459379,
-0.04006181284785271,
-0.018408551812171936,
-0.042387496680021286,
0.00603459170088172,
-0.004923326428979635,
-0.006995812524110079,
0.06403137743473053,
0.03460395336151123,
0.01622353307902813,
-0.10405568033456802,
0.03344110772013664,
0.03561675176024437,
-0.011572161689400673,
0.0013914258452132344,
-0.038411322981119156,
-0.04276260733604431,
0.010156119242310524,
-0.06241840124130249,
0.023256856948137283,
0.02351943403482437,
0.02381952293217182,
0.031152933835983276,
-0.027289295569062233,
0.06538177281618118,
-0.03184688836336136,
-0.013457092456519604,
0.044413093477487564,
-0.003936316817998886,
0.02387578971683979,
-0.005471925716847181,
-0.03529790788888931,
-0.016392333433032036,
-0.08349961787462234,
-0.004965526517480612,
0.03848634660243988,
0.002288174582645297,
-0.08402477204799652,
0.007506900932639837,
0.020743615925312042,
0.000647065753582865,
0.04580100253224373,
0.02321934513747692,
-0.006456591188907623,
0.09257729351520538,
0.004639649298042059,
-0.0017430920852348208,
0.07115847617387772,
-0.04291265085339546,
0.008861987851560116,
0.023181835189461708,
0.025657564401626587,
-0.028377115726470947,
0.0056172809563577175,
-0.002310446696355939,
0.03953665494918823,
0.05420348048210144,
0.0032142288982868195,
-0.03721097111701965,
0.021287526935338974,
-0.09272734075784683,
0.04666375741362572,
0.06594444066286087,
-0.026914184913039207,
0.028827248141169548,
-0.1045808345079422,
-0.025526275858283043,
-0.03047773614525795,
0.011356472969055176,
-0.04655122384428978,
-0.02085614949464798,
-0.00871663261204958,
-0.012847538106143475,
0.017667708918452263,
0.03507284075021744,
-0.009874786250293255,
0.03072155825793743,
-0.025507520884275436,
0.024550987407565117,
-0.015332645736634731,
0.03702341392636299,
0.013316426426172256,
-0.06140560284256935,
0.00734278978779912,
0.002456974470987916,
0.07742282748222351,
0.029840048402547836,
0.003054806962609291,
-0.020481038838624954,
-0.0028016071300953627,
-0.03692963719367981,
0.009194898419082165,
-0.011628428474068642,
-0.030515246093273163,
0.0035096285864710808,
-0.031265467405319214,
-0.04430055990815163,
-0.021081214770674706,
-0.007005190476775169,
-0.04936455562710762,
-0.018971217796206474,
0.044563136994838715,
-0.056941788643598557,
0.0006540991016663611,
0.043700382113456726,
-0.03807372599840164,
0.026970451697707176,
0.009438720531761646,
-0.042387496680021286,
0.06444399803876877,
-0.009696608409285545,
0.05127761885523796,
-0.03394750878214836,
-0.0182303749024868,
-0.08717570453882217,
-0.020180949941277504,
-0.07033323496580124,
-0.009068298153579235,
0.016954999417066574,
0.0013550870353356004,
-0.02237534709274769,
-0.01808970794081688,
0.05840471759438515,
-0.024363432079553604,
0.029446180909872055,
-0.01576402224600315,
0.018764907494187355,
-0.04666375741362572,
0.013822825625538826,
0.04156225174665451,
0.024926098063588142,
-0.03409755229949951,
0.02820831723511219,
-0.0136727811768651,
0.01636420004069805,
0.021925214678049088,
0.01808970794081688,
-0.03691088408231735,
0.0003267565043643117,
0.05157770588994026,
-0.016851842403411865,
-0.0252449419349432,
0.0039597610011696815,
0.011928516440093517,
-0.043400295078754425,
0.014769979752600193,
0.014666823670268059,
-0.03047773614525795,
0.039874255657196045,
0.022581657394766808,
0.006283102557063103,
0.0597551167011261,
-0.019505750387907028,
-0.0044286493211984634,
0.056004010140895844,
-0.02408210001885891,
0.018858684226870537,
-0.008857298642396927,
-0.0032611177302896976,
0.006292480044066906,
-0.015379534102976322,
-0.07787296175956726,
0.031565554440021515,
0.03631070628762245,
-0.008997965604066849,
-0.04977717623114586,
0.0005433242185972631,
0.001261309371329844,
0.0010843040654435754,
-0.023238101974129677,
0.043250251561403275,
-0.006902034860104322,
0.005593836773186922,
-0.03089035674929619,
-0.018971217796206474,
0.050152286887168884,
-0.015248245559632778,
0.0588548518717289,
-0.041074611246585846,
0.004069949965924025,
0.04760153591632843,
0.04606357961893082,
0.06695724278688431,
-0.016514243558049202,
0.03602937236428261,
-0.03259710967540741,
0.02312556840479374,
0.03360990807414055,
-0.0007496350444853306,
0.00944340880960226,
0.008327455259859562,
0.03263461962342262,
-0.004196549765765667,
0.03199693188071251,
0.006001769565045834,
-0.005021792836487293,
0.001962297363206744,
0.02079988270998001,
-0.06977056711912155,
0.006597257684916258,
0.0028766293544322252,
-0.0025929519906640053,
0.04126216471195221,
-0.017695842310786247,
0.013710292056202888,
-0.004137938842177391,
0.04081203415989876,
0.05454108119010925,
-0.009138631634414196,
0.1063813641667366,
0.00028265168657526374,
-0.04820170998573303,
0.017855264246463776,
0.003089973470196128,
-0.01818348653614521,
0.03128422424197197,
0.052365437150001526,
-0.03752981498837471,
0.060130227357149124,
-0.0893513411283493,
0.040324389934539795,
-0.024063345044851303,
-0.007136479020118713,
0.044413093477487564,
-0.048239223659038544,
-0.0016985476249828935,
0.042387496680021286,
0.11500890552997589,
-0.010399941354990005,
0.004173105116933584,
0.03711719438433647,
0.029765024781227112,
-0.0063018579967319965,
-0.011712828651070595,
0.03469773009419441,
-0.05446605756878853,
0.020387260243296623,
-0.08732574433088303,
0.01834290847182274,
-0.0034861841704696417,
0.008707254193723202,
0.05210286006331444,
0.042837630957365036,
0.05116508528590202,
0.03445390611886978,
-0.031359244138002396,
-0.030609024688601494,
-0.015051312744617462,
0.008580654859542847,
0.026914184913039207,
0.044413093477487564,
0.03012138046324253,
-0.008078943938016891,
0.004810793325304985,
-0.003225950989872217,
0.002221358008682728,
0.0013750147772952914,
-0.020481038838624954,
-0.013475848361849785,
-0.01883992925286293,
0.010896963067352772,
0.02186894789338112,
0.003322073258459568,
0.049852196127176285,
-0.03557923808693886,
-0.0015789811732247472,
0.006878590676933527,
0.04568846896290779,
-0.030946623533964157,
0.047939132899045944,
0.002578885294497013,
0.07303403317928314,
-0.014141669496893883,
0.047226425260305405,
-0.022506635636091232,
-0.11440873146057129,
-0.002459318842738867,
0.025451254099607468,
-0.038317546248435974,
0.026989206671714783,
0.006681657396256924,
-0.0005160701111890376,
0.0024030522909015417,
0.034791506826877594,
-0.028077028691768646,
-0.0044286493211984634,
0.028170805424451828,
-0.031509291380643845,
-0.004707637708634138,
-0.02393205650150776,
0.021550104022026062,
0.0065363021567463875,
0.04306269437074661,
0.012209849432110786,
-0.0023889855947345495,
-0.05401592701673508,
-0.01035305205732584,
0.045313358306884766,
0.029146093875169754,
0.03867390379309654,
0.029277382418513298,
-0.0445256270468235,
0.005401592701673508,
-0.04523833841085434,
-0.009129254147410393,
-0.040624476969242096,
0.020837392657995224,
0.020312238484621048,
-0.02740182913839817,
0.023238101974129677,
0.018718019127845764,
0.029502447694540024,
0.009649720042943954,
-0.011178296059370041,
0.1183098778128624,
0.013072604313492775,
0.010643763467669487,
0.00796172209084034,
0.09017658978700638,
0.03542919456958771,
-0.006512857507914305,
0.13601510226726532,
0.031040402129292488,
-0.018164729699492455,
-0.02760813944041729,
0.05844223126769066,
0.02895853854715824,
-0.00756785599514842,
0.007600678596645594,
-0.007333411835134029,
-0.05056490749120712,
0.013016337528824806,
-0.03788616880774498,
-0.008960453793406487,
-0.043550338596105576,
0.021587613970041275,
-0.012847538106143475,
0.02991507016122341,
0.037098437547683716,
-0.0374923050403595,
0.0221127700060606,
-0.010437452234327793,
-0.002806296106427908,
0.01607348956167698,
-0.03319728747010231,
0.011272073723375797,
0.0651191994547844,
-0.0014347980031743646,
-0.03979923203587532,
0.030946623533964157,
-0.03451017290353775,
0.027064228430390358,
-0.02770191803574562,
0.013213270343840122,
0.04711389169096947,
0.060355294495821,
0.02700796350836754,
-0.03032769076526165,
0.015613978728652,
-0.011656561866402626,
-0.002968062646687031,
0.005359392613172531,
-0.011956649832427502,
-0.000055021104344632477,
0.02605143003165722,
-0.0457259826362133,
-0.0454258918762207,
-0.09872911125421524,
-0.02513241022825241,
0.03904901444911957,
0.021043704822659492,
0.004393482580780983,
0.03702341392636299,
-0.056754231452941895,
-0.009129254147410393,
0.006705102045089006,
0.04700135812163353,
-0.06294355541467667,
-0.059530049562454224,
0.05904240533709526,
0.00813989993184805,
0.033028487116098404,
0.0012999926693737507,
-0.03612314909696579,
0.03353488817811012,
-0.0022729358170181513,
0.03390999883413315,
0.05904240533709526,
-0.011759717017412186,
-0.02513241022825241,
0.018061574548482895,
-0.023350633680820465,
-0.047676555812358856,
-0.04317522794008255,
0.05094001814723015,
-0.025863874703645706,
0.01622353307902813,
-0.005439103581011295,
0.020368505269289017,
-0.035391684621572495,
-0.03072155825793743,
-0.0009319153614342213,
0.017489532008767128,
-0.03293471038341522,
-0.04936455562710762,
0.04831424355506897,
0.06519421935081482,
-0.03692963719367981,
0.031453024595975876,
0.018764907494187355,
0.04144972190260887,
0.007356856483966112,
-0.03501657396554947,
0.019787084311246872,
0.023144323378801346,
0.002724240766838193,
-0.0331597775220871,
-0.011600295081734657,
-0.005078059621155262,
0.022938013076782227,
0.01672055386006832,
0.049101974815130234,
0.05063993111252785,
0.03651701658964157,
0.014301091432571411,
0.004754526540637016,
-0.08740076422691345,
0.019637038931250572,
0.013635270297527313,
0.006855146028101444,
0.02100619301199913,
-0.012200471945106983,
-0.022000236436724663,
-0.09160200506448746,
0.07663509249687195,
0.01075629610568285,
-0.034378886222839355,
0.02342565730214119,
-0.03739852458238602,
-0.006362813524901867,
-0.015323267318308353,
-0.009968563914299011,
-0.044563136994838715,
0.015885934233665466,
0.041487231850624084,
0.030796580016613007,
-0.06361875683069229,
-0.031959421932697296,
-0.04711389169096947,
0.020424772053956985,
-0.026257742196321487,
-0.05405343696475029,
0.05056490749120712,
0.00683639058843255,
-0.0003815577947534621,
-0.0008955765515565872,
0.014301091432571411
]
|
42,101 | flask_restful | Api |
The main entry point for the application.
You need to initialize it with a Flask Application: ::
>>> app = Flask(__name__)
>>> api = restful.Api(app)
Alternatively, you can use :meth:`init_app` to set the Flask application
after it has been constructed.
:param app: the Flask application object
:type app: flask.Flask or flask.Blueprint
:param prefix: Prefix all routes with a value, eg v1 or 2010-04-01
:type prefix: str
:param default_mediatype: The default media type to return
:type default_mediatype: str
:param decorators: Decorators to attach to every resource
:type decorators: list
:param catch_all_404s: Use :meth:`handle_error`
to handle 404 errors throughout your app
:param serve_challenge_on_401: Whether to serve a challenge response to
clients on receiving 401. This usually leads to a username/password
popup in web browsers.
:param url_part_order: A string that controls the order that the pieces
of the url are concatenated when the full url is constructed. 'b'
is the blueprint (or blueprint registration) prefix, 'a' is the api
prefix, and 'e' is the path component the endpoint is added with
:type catch_all_404s: bool
:param errors: A dictionary to define a custom response for each
exception or error raised during a request
:type errors: dict
| class Api(object):
"""
The main entry point for the application.
You need to initialize it with a Flask Application: ::
>>> app = Flask(__name__)
>>> api = restful.Api(app)
Alternatively, you can use :meth:`init_app` to set the Flask application
after it has been constructed.
:param app: the Flask application object
:type app: flask.Flask or flask.Blueprint
:param prefix: Prefix all routes with a value, eg v1 or 2010-04-01
:type prefix: str
:param default_mediatype: The default media type to return
:type default_mediatype: str
:param decorators: Decorators to attach to every resource
:type decorators: list
:param catch_all_404s: Use :meth:`handle_error`
to handle 404 errors throughout your app
:param serve_challenge_on_401: Whether to serve a challenge response to
clients on receiving 401. This usually leads to a username/password
popup in web browsers.
:param url_part_order: A string that controls the order that the pieces
of the url are concatenated when the full url is constructed. 'b'
is the blueprint (or blueprint registration) prefix, 'a' is the api
prefix, and 'e' is the path component the endpoint is added with
:type catch_all_404s: bool
:param errors: A dictionary to define a custom response for each
exception or error raised during a request
:type errors: dict
"""
def __init__(self, app=None, prefix='',
default_mediatype='application/json', decorators=None,
catch_all_404s=False, serve_challenge_on_401=False,
url_part_order='bae', errors=None):
self.representations = OrderedDict(DEFAULT_REPRESENTATIONS)
self.urls = {}
self.prefix = prefix
self.default_mediatype = default_mediatype
self.decorators = decorators if decorators else []
self.catch_all_404s = catch_all_404s
self.serve_challenge_on_401 = serve_challenge_on_401
self.url_part_order = url_part_order
self.errors = errors or {}
self.blueprint_setup = None
self.endpoints = set()
self.resources = []
self.app = None
self.blueprint = None
if app is not None:
self.app = app
self.init_app(app)
def init_app(self, app):
"""Initialize this class with the given :class:`flask.Flask`
application or :class:`flask.Blueprint` object.
:param app: the Flask application or blueprint object
:type app: flask.Flask
:type app: flask.Blueprint
Examples::
api = Api()
api.add_resource(...)
api.init_app(app)
"""
# If app is a blueprint, defer the initialization
try:
app.record(self._deferred_blueprint_init)
# Flask.Blueprint has a 'record' attribute, Flask.Api does not
except AttributeError:
self._init_app(app)
else:
self.blueprint = app
def _complete_url(self, url_part, registration_prefix):
"""This method is used to defer the construction of the final url in
the case that the Api is created with a Blueprint.
:param url_part: The part of the url the endpoint is registered with
:param registration_prefix: The part of the url contributed by the
blueprint. Generally speaking, BlueprintSetupState.url_prefix
"""
parts = {
'b': registration_prefix,
'a': self.prefix,
'e': url_part
}
return ''.join(parts[key] for key in self.url_part_order if parts[key])
@staticmethod
def _blueprint_setup_add_url_rule_patch(blueprint_setup, rule, endpoint=None, view_func=None, **options):
"""Method used to patch BlueprintSetupState.add_url_rule for setup
state instance corresponding to this Api instance. Exists primarily
to enable _complete_url's function.
:param blueprint_setup: The BlueprintSetupState instance (self)
:param rule: A string or callable that takes a string and returns a
string(_complete_url) that is the url rule for the endpoint
being registered
:param endpoint: See BlueprintSetupState.add_url_rule
:param view_func: See BlueprintSetupState.add_url_rule
:param **options: See BlueprintSetupState.add_url_rule
"""
if callable(rule):
rule = rule(blueprint_setup.url_prefix)
elif blueprint_setup.url_prefix:
rule = blueprint_setup.url_prefix + rule
options.setdefault('subdomain', blueprint_setup.subdomain)
if endpoint is None:
endpoint = view_func.__name__
defaults = blueprint_setup.url_defaults
if 'defaults' in options:
defaults = dict(defaults, **options.pop('defaults'))
blueprint_setup.app.add_url_rule(rule, '%s.%s' % (blueprint_setup.blueprint.name, endpoint),
view_func, defaults=defaults, **options)
def _deferred_blueprint_init(self, setup_state):
"""Synchronize prefix between blueprint/api and registration options, then
perform initialization with setup_state.app :class:`flask.Flask` object.
When a :class:`flask_restful.Api` object is initialized with a blueprint,
this method is recorded on the blueprint to be run when the blueprint is later
registered to a :class:`flask.Flask` object. This method also monkeypatches
BlueprintSetupState.add_url_rule with _blueprint_setup_add_url_rule_patch.
:param setup_state: The setup state object passed to deferred functions
during blueprint registration
:type setup_state: flask.blueprints.BlueprintSetupState
"""
self.blueprint_setup = setup_state
if setup_state.add_url_rule.__name__ != '_blueprint_setup_add_url_rule_patch':
setup_state._original_add_url_rule = setup_state.add_url_rule
setup_state.add_url_rule = MethodType(Api._blueprint_setup_add_url_rule_patch,
setup_state)
if not setup_state.first_registration:
raise ValueError('flask-restful blueprints can only be registered once.')
self._init_app(setup_state.app)
def _init_app(self, app):
"""Perform initialization actions with the given :class:`flask.Flask`
object.
:param app: The flask application object
:type app: flask.Flask
"""
app.handle_exception = partial(self.error_router, app.handle_exception)
app.handle_user_exception = partial(self.error_router, app.handle_user_exception)
if len(self.resources) > 0:
for resource, urls, kwargs in self.resources:
self._register_view(app, resource, *urls, **kwargs)
def owns_endpoint(self, endpoint):
"""Tests if an endpoint name (not path) belongs to this Api. Takes
in to account the Blueprint name part of the endpoint name.
:param endpoint: The name of the endpoint being checked
:return: bool
"""
if self.blueprint:
if endpoint.startswith(self.blueprint.name):
endpoint = endpoint.split(self.blueprint.name + '.', 1)[-1]
else:
return False
return endpoint in self.endpoints
def _should_use_fr_error_handler(self):
""" Determine if error should be handled with FR or default Flask
The goal is to return Flask error handlers for non-FR-related routes,
and FR errors (with the correct media type) for FR endpoints. This
method currently handles 404 and 405 errors.
:return: bool
"""
adapter = current_app.create_url_adapter(request)
try:
adapter.match()
except MethodNotAllowed as e:
# Check if the other HTTP methods at this url would hit the Api
valid_route_method = e.valid_methods[0]
rule, _ = adapter.match(method=valid_route_method, return_rule=True)
| (app=None, prefix='', default_mediatype='application/json', decorators=None, catch_all_404s=False, serve_challenge_on_401=False, url_part_order='bae', errors=None) | [
-0.0061836219392716885,
-0.027249859645962715,
-0.07047033309936523,
0.006058851722627878,
0.037690650671720505,
0.00631338357925415,
0.0269504114985466,
0.03234049305319786,
-0.035933881998062134,
-0.010899944230914116,
0.020352551713585854,
-0.023097500205039978,
0.04962868243455887,
-0.0025141239166259766,
0.008823764510452747,
0.03006468154489994,
0.06555937230587006,
0.0213207695633173,
0.05509861931204796,
-0.06340333819389343,
0.026750778779387474,
0.01217759307473898,
0.008509342558681965,
0.02627165988087654,
-0.013585004024207592,
0.0333586186170578,
0.0028372793458402157,
0.005215403623878956,
0.059690169990062714,
-0.0357142873108387,
0.014293699525296688,
-0.023017646744847298,
0.08648087829351425,
0.03932763636112213,
0.05869200825691223,
-0.011458915658295155,
0.026171844452619553,
0.012866325676441193,
-0.08129042387008667,
0.011698475107550621,
0.02130080573260784,
0.00041954053449444473,
0.006168649531900883,
-0.03295935317873955,
0.11075621098279953,
0.048231255263090134,
-0.027748942375183105,
0.08943543583154678,
-0.04180308058857918,
0.01335542555898428,
-0.009836900047957897,
-0.06460113078355789,
0.02173999883234501,
0.04062524810433388,
0.030304240062832832,
0.018735526129603386,
-0.01120937429368496,
0.03725145757198334,
0.019993212074041367,
-0.014343608170747757,
0.00516050448641181,
0.019683782011270523,
0.011199393309652805,
-0.00943264365196228,
0.01793699525296688,
0.04172322899103165,
-0.0633234828710556,
0.009218038991093636,
-0.009996606037020683,
0.01120937429368496,
0.017228299751877785,
0.013195719569921494,
-0.006213567219674587,
-0.004529166501015425,
0.052862733602523804,
-0.014044159092009068,
0.054699353873729706,
-0.08152998238801956,
0.007126886397600174,
-0.0363730750977993,
0.04328036308288574,
-0.006602850742638111,
-0.034496527165174484,
-0.02223907969892025,
0.03303920850157738,
-0.01015631202608347,
0.001643226481974125,
-0.03208097070455551,
-0.0038304519839584827,
0.023636508733034134,
-0.058252815157175064,
-0.01936437003314495,
0.008389563299715519,
0.0030693523585796356,
0.006033897399902344,
-0.03116266056895256,
-0.023476801812648773,
-0.0008340902859345078,
0.030004791915416718,
-0.05509861931204796,
-0.013545077294111252,
-0.010271101258695126,
-0.04767228290438652,
0.022977720946073532,
0.025812504813075066,
-0.04024594649672508,
-0.012127685360610485,
-0.002079922938719392,
-0.04188293591141701,
0.005100614856928587,
-0.02635151334106922,
-0.02880699560046196,
-0.02096143178641796,
-0.023796215653419495,
-0.02762916311621666,
0.03108280710875988,
0.03343847393989563,
0.002717499854043126,
0.037690650671720505,
-0.03309909626841545,
-0.004846083000302315,
-0.04340014234185219,
-0.00017499052046332508,
-0.01970374584197998,
0.04591551423072815,
0.0391080416738987,
-0.014433442614972591,
0.04086481034755707,
0.016858980059623718,
-0.05657590180635452,
-0.02098139375448227,
0.06851393729448318,
-0.08823764324188232,
0.022199153900146484,
0.04591551423072815,
-0.02106124721467495,
-0.035514652729034424,
0.019923340529203415,
-0.043160583823919296,
0.052782878279685974,
-0.02156032808125019,
0.02661103568971157,
-0.012576858513057232,
-0.011299209669232368,
-0.0012751537142321467,
-0.022897867485880852,
0.00023690784291829914,
-0.004828615579754114,
0.0224986020475626,
0.046195000410079956,
0.02181985229253769,
0.05649604648351669,
0.036353111267089844,
-0.004993312526494265,
-0.0024317754432559013,
0.0044518085196614265,
-0.02820809744298458,
-0.0028272976633161306,
0.06771540641784668,
-0.059770021587610245,
-0.01246706023812294,
-0.009407689794898033,
-0.011189411394298077,
-0.08544278889894485,
-0.005395072977989912,
0.021839814260601997,
0.0028722151182591915,
-0.013105885125696659,
-0.007131877355277538,
0.058332666754722595,
-0.04252175986766815,
-0.02365647256374359,
-0.0019713726360350847,
-0.0038304519839584827,
0.018925176933407784,
0.03964705020189285,
0.01708855666220188,
-0.02780883200466633,
0.0033363611437380314,
0.005574742332100868,
0.05497884005308151,
-0.020322605967521667,
-0.060608480125665665,
-0.03765072301030159,
0.0019002535846084356,
0.04855066537857056,
-0.05821288749575615,
0.04256168752908707,
0.00904835108667612,
0.04767228290438652,
-0.026431366801261902,
0.01600055955350399,
0.07701828330755234,
-0.007610995788127184,
-0.049069710075855255,
-0.006178631447255611,
-0.006812464911490679,
0.01793699525296688,
0.08616146445274353,
-0.05980994924902916,
-0.02417551726102829,
0.02425537072122097,
0.0231573898345232,
0.0115786949172616,
0.018825361505150795,
0.0073913997039198875,
0.008669048547744751,
-0.021260879933834076,
-0.03956719487905502,
-0.023716362193226814,
-0.014493332244455814,
0.004297093488276005,
-0.020432405173778534,
-0.03647289052605629,
-0.016459714621305466,
-0.04639463499188423,
0.05342170223593712,
-0.01006148662418127,
0.031122734770178795,
0.0049359179101884365,
0.0037281401455402374,
0.03767068684101105,
0.00764593156054616,
-0.02291783131659031,
-0.04192286357283592,
0.0286472886800766,
0.035574544221162796,
0.012866325676441193,
-0.009287910535931587,
0.0011460162932053208,
-0.04204264283180237,
-0.03888844698667526,
0.03168170526623726,
0.003491076407954097,
0.03050387278199196,
0.005250339396297932,
0.04066517576575279,
0.03603369742631912,
0.03902818635106087,
-0.007091950625181198,
0.06943224370479584,
0.029425855726003647,
0.00606883317232132,
-0.04699353128671646,
-0.03405733406543732,
0.030463946983218193,
-0.026670925319194794,
-0.02509382739663124,
-0.011229338124394417,
-0.08133035153150558,
-0.05002794787287712,
0.018995048478245735,
0.011568713933229446,
-0.019224626943469048,
-0.05078655108809471,
-0.06396231055259705,
-0.02054220251739025,
-0.021181026473641396,
-0.004441827069967985,
0.019344406202435493,
-0.015810908749699593,
0.02990497462451458,
0.0008147508488036692,
0.09813942015171051,
-0.02898666448891163,
-0.008150003850460052,
0.02856743521988392,
-0.015182064846158028,
-0.0061985948123037815,
-0.014173920266330242,
0.11874151229858398,
0.01758763939142227,
-0.02172003500163555,
0.002715004375204444,
0.016789108514785767,
0.0011198145803064108,
-0.01954403892159462,
-0.0009395212982781231,
-0.004980835132300854,
-0.03315898776054382,
0.037171605974435806,
-0.056735605001449585,
0.05094625800848007,
0.020861614495515823,
0.05094625800848007,
-0.03295935317873955,
-0.0463147796690464,
0.06535974144935608,
-0.025493092834949493,
-0.029585562646389008,
0.09031382203102112,
-0.0196238923817873,
0.0009563653147779405,
0.03361814096570015,
-0.0068823364563286304,
0.03409726172685623,
-0.053261999040842056,
0.024814341217279434,
0.0052852751687169075,
-0.08121057599782944,
-0.005589714739471674,
0.04244190827012062,
0.05434001609683037,
0.02687055803835392,
-0.009442625567317009,
-0.05853230133652687,
0.04026591032743454,
-0.0219795573502779,
0.0006887327181175351,
0.008494370616972446,
0.02323724329471588,
-0.0022096841130405664,
-0.013634911738336086,
-0.01794697716832161,
-0.034496527165174484,
-0.025552982464432716,
-0.03273975849151611,
-0.013065958395600319,
-0.010370917618274689,
0.02677074261009693,
-0.02359658293426037,
0.07154835015535355,
0.008723948150873184,
0.0013624930288642645,
0.03503553569316864,
0.010056495666503906,
0.0680348128080368,
0.015261918306350708,
-0.037690650671720505,
-0.004067515954375267,
-0.026012137532234192,
-0.024794379249215126,
-0.0323205292224884,
0.01199792418628931,
-0.012357262894511223,
-0.04950890317559242,
-0.020741835236549377,
-0.08264792710542679,
-0.03246027231216431,
-0.03184141218662262,
0.040645211935043335,
-0.006493052933365107,
-0.023017646744847298,
0.005889163818210363,
-0.05457957461476326,
-0.013255610130727291,
0.017817215994000435,
-0.008953525684773922,
0.029445819556713104,
-0.055378105491399765,
0.006622814107686281,
-0.044518087059259415,
-0.021001357585191727,
0.027489420026540756,
0.0269504114985466,
-0.06863371282815933,
-0.04783198982477188,
-0.05014772713184357,
0.02551305666565895,
-0.004963367246091366,
0.0024180507753044367,
0.013505150564014912,
-0.10436796396970749,
0.004604028537869453,
0.009966661222279072,
0.0005901640979573131,
0.005315219983458519,
-0.025393275544047356,
-0.0009420166607014835,
-0.014752854593098164,
0.008045196533203125,
0.008279765024781227,
0.031202586367726326,
-0.025373313575983047,
0.01793699525296688,
-0.028108280152082443,
0.024315260350704193,
-0.00459155160933733,
-0.04715323820710182,
0.06368282437324524,
-0.008978479541838169,
0.03273975849151611,
-0.003583406563848257,
0.017597621306777,
0.013614948838949203,
-0.10037530958652496,
-0.03357821702957153,
-0.005964026320725679,
-0.03341851010918617,
0.009806955233216286,
0.03479597717523575,
-0.033658068627119064,
-0.01466302014887333,
0.05346162989735603,
0.009163139387965202,
-0.0724666640162468,
-0.0033712969161570072,
0.0052054221741855145,
0.04196278750896454,
-0.008314700797200203,
0.07993292063474655,
0.008694003336131573,
0.07450291514396667,
0.013065958395600319,
0.06783518195152283,
0.021879741922020912,
0.08456440269947052,
0.05845244601368904,
0.001183447428047657,
0.09023396670818329,
-0.01575101725757122,
-0.026670925319194794,
-0.04986824095249176,
-0.03503553569316864,
-0.0012633005389943719,
-0.03056376241147518,
0.022338896989822388,
0.06412201374769211,
0.010540605522692204,
0.029685378074645996,
0.04312065616250038,
0.017138464376330376,
0.07809630036354065,
0.030843248590826988,
-0.05078655108809471,
0.03595384582877159,
-0.02062205597758293,
0.03417711332440376,
-0.029964864253997803,
0.01158867683261633,
0.04280124604701996,
-0.0013986764242872596,
-0.012087758630514145,
-0.05010780319571495,
-0.00989678967744112,
-0.05002794787287712,
0.030603690072894096,
-0.024395113810896873,
0.005195440258830786,
0.009467579424381256,
0.019653836265206337,
-0.017397988587617874,
-0.00020618311828002334,
0.021959593519568443,
-0.014263754710555077,
0.012127685360610485,
-0.0017567675095051527,
0.003700690809637308,
0.1049269363284111,
-0.01381458155810833,
-0.037191566079854965,
-0.0567755326628685,
-0.008948534727096558,
0.016539568081498146,
-0.06923261284828186,
-0.04248183220624924,
0.0473528690636158,
0.011798291467130184,
-0.03842929005622864,
0.051505230367183685,
0.036932043731212616,
-0.0012308602454140782,
-0.02744949236512184,
-0.0160205215215683,
-0.03866884857416153,
0.03216082230210304,
0.06603848934173584,
0.005974007770419121,
-0.04168330132961273,
-0.013784635812044144,
0.011488860473036766,
-0.0071718040853738785,
0.030783358961343765,
-0.023516729474067688,
-0.017877105623483658,
0.041483670473098755,
0.06392238289117813,
-0.00024392617342527956,
-0.03369799628853798,
-0.024634672328829765,
0.04547632485628128,
0.0017293180571869016,
-0.04068513959646225,
0.005215403623878956,
-0.007880499586462975,
-0.029346004128456116,
0.007456280291080475,
0.029924938455224037,
-0.010271101258695126,
-0.014633075334131718,
-0.008424499072134495,
-0.0074462988413870335,
-0.016070431098341942,
0.016958795487880707,
-0.02778886817395687,
0.03216082230210304,
0.026730814948678017,
-0.022279007360339165,
0.023137427866458893,
-0.012097740545868874,
0.01886528730392456,
-0.038030024617910385,
0.009193085134029388,
0.02451489306986332,
-0.019015012308955193,
-0.008479397743940353,
-0.10221192985773087,
-0.008778846822679043,
-0.0081749577075243,
-0.015371715649962425,
-0.04479757323861122,
0.013974287547171116,
0.019344406202435493,
0.0032739758025854826,
-0.009228020906448364,
-0.004786193370819092,
-0.0017405473627150059,
0.013704783283174038,
0.02273816242814064,
0.005390082020312548,
0.0062784478068351746,
0.004686377011239529,
0.08065160363912582,
0.015212009660899639,
0.004007625859230757,
0.028866885229945183,
0.05793340131640434,
0.0003680727386381477,
0.007456280291080475,
0.03359818086028099,
-0.007086960133165121,
0.06739599257707596,
0.04715323820710182,
-0.0018703086534515023,
-0.008349636569619179,
0.028427692130208015,
-0.060009583830833435,
-0.04751257598400116,
0.0096472492441535,
-0.008534297347068787,
0.04084484651684761,
0.09829913079738617,
-0.023017646744847298,
-0.027329713106155396,
-0.07114908844232559,
-0.10332987457513809,
-0.012147648259997368,
-0.026511220261454582,
0.03182144835591316,
-0.08520322293043137,
-0.04328036308288574,
0.0444781593978405,
0.02687055803835392,
0.0008677782607264817,
-0.05214405432343483,
-0.023896031081676483,
0.03565439581871033,
0.05549788475036621,
0.02493412047624588,
-0.009337818250060081,
-0.05254331976175308,
0.04791184142231941,
-0.03277968615293503,
-0.03699193522334099,
-0.012357262894511223,
0.050746627151966095,
0.018935158848762512,
-0.016449732705950737,
-0.01887526921927929,
-0.04819132760167122,
-0.04328036308288574,
-0.0468338243663311,
0.0028697196394205093,
-0.022119300439953804,
-0.006797492504119873,
0.03333865851163864,
0.019743671640753746,
-0.009677194058895111,
0.045795734971761703,
-0.04200271517038345,
0.04100455343723297,
-0.006997125223278999,
-0.031042881309986115,
-0.07617983222007751,
-0.029625488445162773,
-0.01684899814426899,
0.05038728564977646,
0.07570070773363113,
-0.006343328393995762,
-0.06895312666893005,
-0.06432164460420609,
0.008095105178654194,
-0.00026544908178038895,
-0.07609997689723969,
-0.013265591114759445,
0.06176634877920151,
-0.0620059072971344,
0.004915954545140266,
0.019474167376756668,
0.04328036308288574,
-0.006428172346204519,
0.05106603726744652,
0.013764672912657261,
-0.08045196533203125,
0.018386170268058777,
-0.001589575200341642,
0.0054998802952468395,
-0.024455003440380096,
-0.032220713794231415,
-0.02029266208410263,
-0.005245348438620567,
-0.011538769118487835,
-0.007047033403068781,
0.0017180887516587973,
-0.05645612254738808,
-0.06324363499879837,
-0.0586121529340744,
0.03781042993068695,
0.03311906009912491,
-0.03395751863718033,
0.0016207677545025945,
-0.002572766039520502,
0.019164737313985825,
0.029445819556713104,
-0.036692485213279724,
0.03984668105840683,
0.005140541587024927,
-0.028088318184018135,
-0.05721472576260567,
-0.0213207695633173,
0.04236205294728279,
0.018326278775930405,
-0.04006627947092056,
0.010390880517661572,
0.01708855666220188,
-0.053701188415288925,
0.015002395957708359,
-0.002297023544088006,
-0.009926734492182732,
0.016220154240727425,
-0.0008927323506213725,
-0.05721472576260567,
-0.04220234602689743,
0.01912480965256691,
0.008534297347068787,
0.04835103452205658,
-0.008838736452162266,
-0.08656072616577148,
0.050427213311195374,
-0.04272139444947243,
-0.03906811401247978,
0.05449971929192543,
-0.031022917479276657,
0.0018628224497660995,
-0.05398067459464073,
0.026670925319194794,
-0.00291463709436357,
-0.02333706058561802,
-0.004172322805970907,
0.0358540304005146,
-0.001669428194873035,
-0.04910963773727417,
0.030044717714190483,
-0.05845244601368904,
-0.01128922775387764,
0.030883174389600754,
0.06400223821401596,
-0.0690729022026062,
0.0012714106123894453,
0.02148047648370266,
-0.010670366697013378,
0.0016494649462401867,
0.04675397276878357,
0.0072316937148571014,
-0.0028472610283643007,
0.01979357935488224,
-0.041643377393484116,
0.02265830896794796,
0.040126167237758636,
0.0035409845877438784,
-0.027988500893115997,
0.02425537072122097,
-0.03797013312578201,
0.05198434740304947,
-0.011688493192195892,
0.001049943151883781,
0.015162101946771145,
-0.015970613807439804,
0.019434241577982903,
-0.023277169093489647,
-0.003678231965750456,
-0.0015246946131810546,
0.041563522070646286,
0.01436357107013464,
-0.07598019391298294,
-0.01575101725757122,
-0.05410045385360718,
-0.056056857109069824,
0.017238281667232513,
0.016659347340464592,
0.03535494580864906,
0.0041947816498577595,
0.04196278750896454,
0.011438952758908272,
0.0158308707177639,
0.04304080456495285,
-0.013315499760210514,
-0.06368282437324524,
-0.03260001540184021,
-0.00781062850728631,
0.02331709675490856,
0.04427852854132652,
0.06428172439336777,
-0.0709095299243927,
-0.0018678131746128201,
-0.005235366988927126,
-0.003181645879521966,
-0.0281282439827919,
-0.028347840532660484,
0.03485586494207382,
-0.03679230064153671,
0.041403815150260925,
0.019753653556108475,
-0.05857222527265549,
0.037710610777139664,
-0.030264314264059067,
0.008813782595098019,
0.01827637106180191,
-0.009138185530900955,
-0.04112433269619942,
0.022698234766721725,
0.02427533268928528,
-0.05585722252726555,
0.06607841700315475,
0.028068354353308678,
-0.06500039994716644,
0.029106443747878075,
-0.019064920023083687,
-0.01609039306640625,
-0.014882615767419338,
0.002937095705419779,
0.007715803105384111,
-0.0580931082367897,
0.00562465051189065,
0.029206261038780212,
0.053940750658512115,
0.016639383509755135,
-0.0030943064484745264,
0.016110356897115707,
0.033478401601314545,
0.02728978730738163,
0.015790944918990135,
-0.036592669785022736,
0.009667212143540382,
-0.022259043529629707,
-0.0224986020475626,
-0.005729457829147577,
0.03986664488911629,
0.009302882477641106,
-0.03767068684101105,
-0.059171125292778015,
-0.03447656333446503,
0.005115587264299393,
0.012417152523994446,
0.0947057381272316,
0.0907929390668869,
-0.020172882825136185,
0.004808652214705944
]
|
42,102 | flask_restful | __init__ | null | def __init__(self, app=None, prefix='',
default_mediatype='application/json', decorators=None,
catch_all_404s=False, serve_challenge_on_401=False,
url_part_order='bae', errors=None):
self.representations = OrderedDict(DEFAULT_REPRESENTATIONS)
self.urls = {}
self.prefix = prefix
self.default_mediatype = default_mediatype
self.decorators = decorators if decorators else []
self.catch_all_404s = catch_all_404s
self.serve_challenge_on_401 = serve_challenge_on_401
self.url_part_order = url_part_order
self.errors = errors or {}
self.blueprint_setup = None
self.endpoints = set()
self.resources = []
self.app = None
self.blueprint = None
if app is not None:
self.app = app
self.init_app(app)
| (self, app=None, prefix='', default_mediatype='application/json', decorators=None, catch_all_404s=False, serve_challenge_on_401=False, url_part_order='bae', errors=None) | [
-0.03374997153878212,
-0.02389460988342762,
-0.04120657965540886,
-0.04663632810115814,
0.025921467691659927,
0.03367559239268303,
0.025735516101121902,
0.014922508969902992,
-0.029621876776218414,
0.023615684360265732,
0.02965906821191311,
0.08367761969566345,
0.012588833458721638,
0.012709700502455235,
0.006782535929232836,
0.016242755576968193,
0.02850617654621601,
0.022555766627192497,
0.07319002598524094,
-0.06273961812257767,
-0.013137386180460453,
-0.01169627159833908,
-0.0071683828718960285,
0.043884262442588806,
-0.020696263760328293,
0.022462792694568634,
-0.020491719245910645,
0.002200024202466011,
0.07683464884757996,
-0.021235520020127296,
0.06073135510087013,
-0.00880474504083395,
0.07292969524860382,
0.04990905150771141,
0.049499962478876114,
-0.025530971586704254,
0.0016712279757484794,
-0.029752042144536972,
-0.1567932665348053,
0.027818160131573677,
0.038752034306526184,
-0.021012380719184875,
-0.011724164709448814,
-0.04291732236742973,
0.07296688109636307,
0.06225614994764328,
0.042285092175006866,
0.09624785929918289,
0.004260585643351078,
-0.005652888212352991,
-0.03726443275809288,
-0.01833469606935978,
0.024359485134482384,
0.03449377417564392,
-0.012867758050560951,
0.0179813914000988,
0.01688428409397602,
0.07683464884757996,
-0.0066849119029939175,
0.03520038723945618,
-0.054260287433862686,
0.014662178233265877,
0.043809883296489716,
-0.01158470194786787,
0.0026800082996487617,
0.018539242446422577,
-0.043437983840703964,
-0.020789239555597305,
-0.023057833313941956,
0.033638402819633484,
0.04901649057865143,
-0.011566106230020523,
-0.030272703617811203,
0.02244419790804386,
0.07322721183300018,
-0.0518801249563694,
0.023950394243001938,
-0.07787597179412842,
0.00997623149305582,
-0.0007467065588571131,
0.05861152336001396,
-0.023039238527417183,
-0.07296688109636307,
-0.01905990205705166,
0.047305747866630554,
-0.005346070043742657,
-0.013974162749946117,
-0.03784088045358658,
-0.0006450149812735617,
0.03720864653587341,
-0.0757189467549324,
0.012774783186614513,
-0.008000509813427925,
-0.005513425450772047,
-0.039123937487602234,
-0.017581596970558167,
-0.03512600436806679,
0.002698603319004178,
0.041243769228458405,
-0.028747910633683205,
-0.01701444946229458,
0.02125411480665207,
-0.07560738176107407,
0.0121239572763443,
0.02631196193397045,
-0.05080161243677139,
-0.020361553877592087,
-0.007131192833185196,
-0.01359296403825283,
-0.01995246298611164,
0.019561968743801117,
0.0020001274533569813,
0.04157847911119461,
0.053962767124176025,
-0.013434906490147114,
0.0200826283544302,
0.04897930100560188,
-0.010822305455803871,
0.07248341292142868,
-0.04009087756276131,
-0.01818593591451645,
-0.026200393214821815,
0.016847094520926476,
0.025661136955022812,
0.06541730463504791,
0.026349153369665146,
0.0017386350082233548,
-0.012114659883081913,
0.004551132675260305,
-0.036576416343450546,
0.037152864038944244,
0.09148753434419632,
-0.05939251556992531,
-0.023634279146790504,
-0.004918384365737438,
-0.015796475112438202,
-0.015480360016226768,
0.03347104787826538,
-0.031183859333395958,
0.049425579607486725,
-0.04968591034412384,
0.03624170646071434,
-0.024061964824795723,
-0.018390480428934097,
-0.056082598865032196,
-0.031685926020145416,
0.007107948884367943,
-0.01429027784615755,
0.04663632810115814,
0.03300617262721062,
0.020212793722748756,
0.015666309744119644,
0.03235534578561783,
0.006689560599625111,
-0.003030989319086075,
0.00778201874345541,
-0.031072288751602173,
0.0021953752730041742,
0.009218484163284302,
-0.001109890639781952,
0.019450398162007332,
-0.01928304322063923,
0.04700822755694389,
-0.03960740566253662,
-0.0246198158711195,
0.019468992948532104,
0.029175596311688423,
-0.03808261454105377,
0.009148753248155117,
0.03068179450929165,
-0.03702269867062569,
-0.023615684360265732,
-0.035832617431879044,
-0.022983452305197716,
0.039570216089487076,
0.04172724112868309,
0.010199371725320816,
-0.021588826552033424,
-0.041020628064870834,
-0.03666939213871956,
0.045780956745147705,
-0.020194198936223984,
-0.024675600230693817,
0.009474165737628937,
0.007345035672187805,
0.034382205456495285,
-0.011091933585703373,
0.04485120251774788,
0.009092967957258224,
0.043214842677116394,
-0.019413208588957787,
0.04440492391586304,
0.016689036041498184,
-0.007972617633640766,
-0.014308872632682323,
-0.014122922904789448,
0.025475187227129936,
-0.0073357378132641315,
0.04369831085205078,
-0.0034772700164467096,
-0.04488839581608772,
0.003870090004056692,
-0.006731399800628424,
0.017999986186623573,
0.03360121324658394,
0.026460722088813782,
0.019543372094631195,
0.019468992948532104,
-0.03691112622618675,
-0.021830560639500618,
-0.01267251092940569,
-0.005280987359583378,
0.023355353623628616,
-0.013360526412725449,
-0.004395399242639542,
-0.011017553508281708,
0.009181294590234756,
0.01600101962685585,
-0.0053879087790846825,
-0.01257023774087429,
0.025159070268273354,
0.04053715616464615,
0.004093230236321688,
-0.01541527733206749,
-0.037506166845560074,
0.026981383562088013,
0.020342959091067314,
-0.04771483689546585,
-0.03479129448533058,
0.019468992948532104,
-0.06143796816468239,
-0.02833881974220276,
-0.00012173931463621557,
0.033136337995529175,
0.02856196090579033,
0.02316940389573574,
0.04652475565671921,
0.0301053486764431,
-0.02753923460841179,
-0.00380035862326622,
0.0856114998459816,
-0.02104957029223442,
-0.019747918471693993,
-0.05106194317340851,
0.009697305969893932,
0.0590578056871891,
-0.0075914193876087666,
-0.05225202441215515,
0.019394611939787865,
-0.02287188358604908,
-0.028915265575051308,
0.0465991385281086,
0.003867765422910452,
-0.007052164059132338,
-0.030123943462967873,
-0.013035113923251629,
-0.03358261659741402,
-0.0321693941950798,
-0.010069207288324833,
-0.024582624435424805,
-0.012105362489819527,
-0.024061964824795723,
0.03282022103667259,
0.073078453540802,
-0.006075924728065729,
-0.004032796248793602,
0.04261980205774307,
-0.026460722088813782,
-0.011807842180132866,
-0.03129542991518974,
0.09416521340608597,
0.02300204709172249,
0.015127054415643215,
-0.01048759464174509,
0.009548545815050602,
-0.023783039301633835,
-0.01209606509655714,
-0.013155980966985226,
-0.03068179450929165,
-0.002633520634844899,
0.031444188207387924,
-0.03674377128481865,
0.07289250195026398,
0.0246198158711195,
0.04035120829939842,
-0.03112807497382164,
-0.043066080659627914,
0.0825619176030159,
-0.032113611698150635,
-0.051322273910045624,
0.05809086188673973,
0.021607421338558197,
-0.031165264546871185,
0.012765485793352127,
0.02653510309755802,
-0.0037468979135155678,
-0.04894211143255234,
0.04120657965540886,
0.0030077456030994654,
-0.03676236793398857,
-0.019561968743801117,
-0.03960740566253662,
0.0976610779762268,
0.01282127108424902,
-0.012254122644662857,
-0.010273751802742481,
0.027725184336304665,
-0.005062495823949575,
0.02945452183485031,
-0.0043000997975468636,
0.03663220256567001,
0.01490391418337822,
0.007340386975556612,
0.012365692295134068,
-0.04172724112868309,
0.015182838775217533,
0.0013504638336598873,
-0.013936972245573997,
0.02521485649049282,
0.02740906924009323,
0.016568168997764587,
0.09156191349029541,
-0.0025358968414366245,
0.019692134112119675,
0.04823549836874008,
-0.008525819517672062,
0.03334088250994682,
-0.0024150290992110968,
-0.041318148374557495,
-0.00901858787983656,
-0.06404127180576324,
0.008497927337884903,
-0.04726855829358101,
0.00206404784694314,
-0.049425579607486725,
-0.025475187227129936,
-0.007791316136717796,
-0.06716523319482803,
-0.06352061033248901,
-0.03164873644709587,
0.053218964487314224,
-0.041318148374557495,
0.00934864953160286,
0.01812085323035717,
-0.04671070724725723,
-0.018604323267936707,
0.017274780198931694,
-0.03997930884361267,
-0.005876028444617987,
-0.045260295271873474,
-0.016345027834177017,
-0.0428057499229908,
0.0484958291053772,
0.04604128748178482,
0.05868590250611305,
-0.0818181186914444,
-0.032931793481111526,
-0.051842935383319855,
-0.02199791558086872,
0.0186415147036314,
0.014002054929733276,
0.02653510309755802,
-0.0802561342716217,
0.0191342830657959,
0.01674482226371765,
-0.018251018598675728,
0.04362393170595169,
-0.00916734803467989,
-0.013221063651144505,
-0.03527476638555527,
0.010868793353438377,
-0.02711154893040657,
-0.03133261948823929,
-0.02666526846587658,
0.045483436435461044,
-0.033359479159116745,
-0.005211255978792906,
0.006289767567068338,
-0.041764430701732635,
0.06050821766257286,
-0.05106194317340851,
0.07583051919937134,
0.04042558744549751,
-0.0025707625318318605,
0.0006171224522404373,
-0.06891316920518875,
-0.006838321220129728,
0.05076442286372185,
-0.02943592704832554,
0.0050346036441624165,
0.0046464321203529835,
-0.03771071508526802,
-0.009725199081003666,
0.006089871283620596,
-0.018167341127991676,
-0.0484958291053772,
-0.029473116621375084,
0.01435536053031683,
-0.009097617119550705,
0.0032889952417463064,
0.06824374943971634,
-0.06448755413293839,
0.06463631242513657,
0.023615684360265732,
0.048123929649591446,
-0.02067766897380352,
0.07795035094022751,
0.029621876776218414,
0.05983879417181015,
0.06132639944553375,
0.019376017153263092,
-0.05678921192884445,
-0.0255681611597538,
-0.012040279805660248,
0.02798551507294178,
-0.03045865334570408,
0.030495842918753624,
0.023615684360265732,
-0.0217747762799263,
0.019785108044743538,
0.021644610911607742,
0.05730987340211868,
0.09528091549873352,
-0.021142546087503433,
0.014662178233265877,
0.002510328544303775,
-0.02528923563659191,
-0.017367754131555557,
-0.010348131880164146,
-0.0465991385281086,
0.020417340099811554,
0.03300617262721062,
-0.027725184336304665,
-0.06668176501989365,
0.029789231717586517,
-0.00761466333642602,
-0.01048759464174509,
-0.05106194317340851,
-0.0046464321203529835,
0.0010099423816427588,
-0.025233451277017593,
-0.07553299516439438,
0.0186415147036314,
0.029789231717586517,
-0.0003300617099739611,
0.012830568477511406,
-0.024210724979639053,
0.014727260917425156,
0.0704379603266716,
-0.01267251092940569,
-0.017116721719503403,
-0.03280162811279297,
-0.004783570766448975,
-0.025921467691659927,
-0.034084685146808624,
-0.03317352756857872,
0.056305740028619766,
0.043661121279001236,
-0.025902872905135155,
0.024285104125738144,
0.03194625675678253,
-0.0217747762799263,
-0.012374990619719028,
-0.06430160254240036,
-0.04648756608366966,
0.07173961400985718,
0.027948325499892235,
0.03374997153878212,
-0.05664044991135597,
-0.0276322104036808,
-0.017804738134145737,
0.03514460101723671,
0.027743779122829437,
-0.02302064374089241,
-0.009641521610319614,
0.021068165078759193,
0.05288425460457802,
-0.04462806507945061,
-0.01161259412765503,
-0.027502045035362244,
0.02753923460841179,
-0.01058986783027649,
0.012914245948195457,
0.021235520020127296,
-0.04087186977267265,
0.00898604653775692,
-0.040946248918771744,
-0.01644730195403099,
0.01731196977198124,
-0.0037840879522264004,
0.007712287362664938,
0.028301630169153214,
-0.04793797805905342,
0.035925593227148056,
0.022258246317505836,
0.05083880200982094,
0.04243385046720505,
0.027650805190205574,
0.015554740093648434,
-0.014057840220630169,
0.020696263760328293,
-0.041690047830343246,
0.011157016269862652,
0.003486567409709096,
-0.03994211554527283,
-0.05069004371762276,
-0.11164453625679016,
-0.04098343849182129,
-0.020770644769072533,
-0.03003096766769886,
-0.03295038640499115,
0.007428713142871857,
-0.006071276031434536,
0.020435934886336327,
-0.03652063384652138,
0.0072148703038692474,
-0.018957629799842834,
0.023485518991947174,
0.021030975505709648,
0.014215897768735886,
0.039123937487602234,
-0.0015538468724116683,
0.07568176090717316,
0.0024615167640149593,
-0.037729308009147644,
0.006238631438463926,
0.06151234731078148,
0.024154938757419586,
0.010134289041161537,
0.036948319524526596,
-0.030644603073596954,
0.033433858305215836,
-0.021384280174970627,
0.032838817685842514,
-0.039644595235586166,
0.05258673429489136,
-0.040016498416662216,
-0.03302476555109024,
0.06999167799949646,
0.029621876776218414,
0.060768548399209976,
0.07557018846273422,
-0.03542352467775345,
-0.0545206181704998,
-0.04098343849182129,
-0.0742313489317894,
-0.003988633397966623,
0.028952457010746002,
0.026851218193769455,
-0.045706573873758316,
-0.010115694254636765,
-0.027650805190205574,
0.007898237556219101,
-0.002273241989314556,
-0.01659606210887432,
0.02067766897380352,
0.028803696855902672,
-0.014132220298051834,
0.03129542991518974,
0.007828506641089916,
-0.029621876776218414,
0.04473963379859924,
-0.0726693645119667,
0.004302424378693104,
0.007805262226611376,
0.031183859333395958,
0.025902872905135155,
-0.03155576065182686,
-0.08189249783754349,
-0.017367754131555557,
-0.013090898282825947,
-0.055785078555345535,
-0.00793542806059122,
0.04057434946298599,
-0.012319205328822136,
0.021291306242346764,
0.009367244318127632,
0.028004109859466553,
0.020510314032435417,
-0.06690490245819092,
0.04172724112868309,
0.02222105674445629,
-0.04076029732823372,
-0.07404539734125137,
-0.0020442907698452473,
-0.02541940100491047,
0.03601856529712677,
0.05545036867260933,
0.01717250794172287,
-0.08219001442193985,
-0.04392145201563835,
0.0019222608534619212,
-0.025549566373229027,
-0.028468985110521317,
0.016856390982866287,
0.02746485359966755,
-0.06247929111123085,
-0.012551642954349518,
-0.004613890778273344,
0.024973120540380478,
-0.02448965050280094,
0.06240490823984146,
0.004853302147239447,
-0.06437598168849945,
0.01593593694269657,
-0.016549574211239815,
-0.002619574312120676,
0.05150822550058365,
-0.008981398306787014,
-0.050020620226860046,
-0.01314668357372284,
0.01607540063560009,
-0.013472096994519234,
0.005011359695345163,
-0.03743178769946098,
-0.049723099917173386,
-0.06526854634284973,
0.020789239555597305,
0.03252270072698593,
-0.02681402862071991,
0.02157023176550865,
-0.04485120251774788,
0.013936972245573997,
0.04265699163079262,
-0.02673964761197567,
-0.016038211062550545,
0.02157023176550865,
-0.036650799214839935,
-0.02659088745713234,
-0.025679731741547585,
0.08085117489099503,
-0.031221048906445503,
-0.006043383851647377,
-0.024935930967330933,
0.024508245289325714,
-0.02761361375451088,
0.023355353623628616,
-0.012040279805660248,
0.010292347520589828,
-0.012170445173978806,
-0.011157016269862652,
-0.05333053693175316,
-0.008395654149353504,
-0.0009617115138098598,
-0.025047501549124718,
0.05299582704901695,
-0.006294416729360819,
-0.03501443564891815,
0.05749582126736641,
-0.01541527733206749,
0.03003096766769886,
0.07144208997488022,
-0.012179742567241192,
0.0028961754869669676,
-0.05664044991135597,
0.02337394841015339,
0.024935930967330933,
-0.034530963748693466,
-0.007577473297715187,
0.025809897109866142,
-0.017572300508618355,
-0.04663632810115814,
0.061772678047418594,
-0.03639046847820282,
0.014002054929733276,
0.025103285908699036,
0.015657013282179832,
-0.05842557176947594,
0.007689043413847685,
0.028041299432516098,
-0.0310536939650774,
0.04295451194047928,
0.015666309744119644,
0.029845017939805984,
-0.004397723823785782,
0.024154938757419586,
-0.01019007433205843,
-0.02017560414969921,
0.03719005361199379,
-0.019450398162007332,
-0.037376005202531815,
0.013090898282825947,
0.004441887140274048,
0.01282127108424902,
-0.024731384590268135,
0.013574369251728058,
-0.03148138150572777,
-0.0009082508040592074,
0.015080566518008709,
-0.026832623407244682,
0.02843179553747177,
-0.023578492924571037,
0.03367559239268303,
-0.002308107679709792,
-0.06634705513715744,
0.03841732442378998,
-0.03187187388539314,
-0.09632223844528198,
-0.022035107016563416,
-0.017581596970558167,
0.038026828318834305,
0.006935944780707359,
0.008307328447699547,
0.006963837426155806,
-0.004506969358772039,
0.011556808836758137,
0.01666114293038845,
-0.038752034306526184,
-0.0685412660241127,
-0.020212793722748756,
0.03460534289479256,
0.08233878016471863,
0.07270655035972595,
-0.0636693686246872,
0.010720033198595047,
-0.01935742236673832,
0.020659074187278748,
0.010794413276016712,
-0.012021685019135475,
-0.009808876551687717,
-0.03432641923427582,
-0.008070241659879684,
-0.013769617304205894,
-0.016977259889245033,
0.04604128748178482,
-0.05846276506781578,
-0.030384274199604988,
-0.007558878511190414,
0.005462288856506348,
-0.048049550503492355,
0.029491711407899857,
0.0310536939650774,
-0.026218988001346588,
0.0010029692202806473,
0.024359485134482384,
-0.09096687287092209,
0.0621073879301548,
-0.009334702976047993,
0.053665246814489365,
0.02374584972858429,
0.0008216677233576775,
0.0003881711745634675,
-0.026479318737983704,
0.03841732442378998,
-0.02653510309755802,
0.03838013485074043,
0.006796482019126415,
-0.011119825765490532,
0.017404945567250252,
0.04860739782452583,
-0.007512390613555908,
0.014783046208322048,
-0.00905577838420868,
0.0008640876621939242,
-0.00859090220183134,
-0.03983054682612419,
-0.018976224586367607,
0.001058173249475658,
0.01019007433205843,
-0.039644595235586166,
-0.10294206440448761,
-0.033508237451314926,
0.029770636931061745,
-0.02908262237906456,
0.05437185615301132,
0.08828918635845184,
0.02316940389573574,
-0.030997909605503082
]
|
42,103 | flask_restful | _blueprint_setup_add_url_rule_patch | Method used to patch BlueprintSetupState.add_url_rule for setup
state instance corresponding to this Api instance. Exists primarily
to enable _complete_url's function.
:param blueprint_setup: The BlueprintSetupState instance (self)
:param rule: A string or callable that takes a string and returns a
string(_complete_url) that is the url rule for the endpoint
being registered
:param endpoint: See BlueprintSetupState.add_url_rule
:param view_func: See BlueprintSetupState.add_url_rule
:param **options: See BlueprintSetupState.add_url_rule
| @staticmethod
def _blueprint_setup_add_url_rule_patch(blueprint_setup, rule, endpoint=None, view_func=None, **options):
"""Method used to patch BlueprintSetupState.add_url_rule for setup
state instance corresponding to this Api instance. Exists primarily
to enable _complete_url's function.
:param blueprint_setup: The BlueprintSetupState instance (self)
:param rule: A string or callable that takes a string and returns a
string(_complete_url) that is the url rule for the endpoint
being registered
:param endpoint: See BlueprintSetupState.add_url_rule
:param view_func: See BlueprintSetupState.add_url_rule
:param **options: See BlueprintSetupState.add_url_rule
"""
if callable(rule):
rule = rule(blueprint_setup.url_prefix)
elif blueprint_setup.url_prefix:
rule = blueprint_setup.url_prefix + rule
options.setdefault('subdomain', blueprint_setup.subdomain)
if endpoint is None:
endpoint = view_func.__name__
defaults = blueprint_setup.url_defaults
if 'defaults' in options:
defaults = dict(defaults, **options.pop('defaults'))
blueprint_setup.app.add_url_rule(rule, '%s.%s' % (blueprint_setup.blueprint.name, endpoint),
view_func, defaults=defaults, **options)
| (blueprint_setup, rule, endpoint=None, view_func=None, **options) | [
-0.020748663693666458,
-0.007286305073648691,
-0.05289650708436966,
0.01582220382988453,
-0.02979249320924282,
0.026646031066775322,
-0.013790490105748177,
0.017323516309261322,
-0.027688859030604362,
-0.04106581211090088,
0.008023476228117943,
-0.06242578849196434,
0.07378900796175003,
-0.015561497770249844,
0.006418780889362097,
0.024416537955403328,
0.08428920060396194,
0.007493072655051947,
0.047682370990514755,
0.017044829204678535,
0.041353490203619,
0.03058360330760479,
0.021557753905653954,
0.031176935881376266,
-0.029990270733833313,
0.05253691226243973,
-0.00431964173913002,
0.013457863591611385,
0.05649246275424957,
0.0007214386132545769,
-0.010509179905056953,
-0.021665632724761963,
0.03732601925730705,
0.06976153701543808,
0.062245991080999374,
-0.009547262452542782,
0.012810591608285904,
0.055161960422992706,
-0.0814124345779419,
0.008598828688263893,
0.013116247951984406,
0.015067053958773613,
0.029828451573848724,
-0.01571432687342167,
0.11320067942142487,
0.026196537539362907,
-0.053076304495334625,
0.08306657522916794,
-0.040094904601573944,
-0.030026229098439217,
0.016307659447193146,
-0.0384407639503479,
0.046423785388469696,
0.059980541467666626,
0.01078786700963974,
0.0263943150639534,
0.012963419780135155,
0.02184543013572693,
0.042971670627593994,
0.03649894893169403,
0.007021103519946337,
0.0031082541681826115,
-0.017503313720226288,
-0.04850944131612778,
0.026897748932242393,
-0.022744419053196907,
-0.05232115462422371,
0.01612786017358303,
0.018105637282133102,
-0.00607716478407383,
0.019490079954266548,
0.00526358000934124,
0.020371088758111,
-0.026789870113134384,
0.029253099113702774,
-0.0005084906006231904,
0.06623750180006027,
-0.07760072499513626,
0.0321478433907032,
-0.03367612510919571,
0.006827820558100939,
0.013484833762049675,
-0.007726809475570917,
-0.001726058661006391,
0.017413415014743805,
-0.001954177161678672,
0.03797329217195511,
-0.022007249295711517,
0.0030093654058873653,
0.022402804344892502,
-0.021719571202993393,
-0.03105107694864273,
-0.0038499198853969574,
-0.03739793971180916,
0.029145220294594765,
-0.002647522371262312,
-0.01044625137001276,
0.010922715067863464,
0.009798979386687279,
-0.04070621728897095,
0.004512924235314131,
-0.07303386181592941,
-0.052716709673404694,
0.043906617909669876,
0.03973530977964401,
-0.04908479377627373,
0.029630674049258232,
-0.006733426824212074,
-0.07781647890806198,
0.0011091275373473763,
0.005614185705780983,
-0.019400181248784065,
-0.01681109331548214,
-0.02483007311820984,
0.023014115169644356,
0.030547643080353737,
0.00707054790109396,
-0.007164941634982824,
0.04005894437432289,
-0.035222385078668594,
-0.012091401033103466,
0.000015969344531185925,
-0.021036339923739433,
-0.026574112474918365,
0.0705886110663414,
0.010841806419193745,
-0.00790660735219717,
0.04980398714542389,
0.04908479377627373,
-0.051458124071359634,
-0.043906617909669876,
0.07378900796175003,
-0.13470450043678284,
-0.009933827444911003,
0.005124236922711134,
0.0060097407549619675,
0.006526659242808819,
0.00795605219900608,
-0.014599579386413097,
0.021126238629221916,
-0.021485835313796997,
0.004899489693343639,
0.013547763228416443,
-0.019490079954266548,
0.005196155980229378,
0.012298168614506721,
-0.02732926234602928,
0.06915022432804108,
-0.007160446606576443,
0.06231791153550148,
0.04512924328446388,
0.04476964846253395,
-0.00043685242417268455,
0.006041205488145351,
0.0004202773270662874,
0.005793983582407236,
-0.029972290620207787,
0.019561998546123505,
0.060663770884275436,
-0.028102392330765724,
0.010563119314610958,
-0.0013203899143263698,
-0.019202403724193573,
-0.04685530066490173,
0.009295545518398285,
-0.005160196218639612,
0.016532406210899353,
-0.028210271149873734,
-0.008086404763162136,
0.04912075400352478,
-0.03279511630535126,
-0.03435935452580452,
0.023553509265184402,
0.058146603405475616,
0.07155951857566833,
0.030026229098439217,
0.027419161051511765,
-0.04117369279265404,
0.001432763529010117,
-0.016406547278165817,
0.03482683002948761,
0.007160446606576443,
-0.009165192022919655,
-0.012531905435025692,
0.015525538474321365,
0.05922538787126541,
-0.06231791153550148,
0.030331885442137718,
-0.035060565918684006,
0.058002762496471405,
0.01555250771343708,
-0.004443252459168434,
0.05153004452586174,
-0.008162818849086761,
-0.04117369279265404,
-0.05149408429861069,
-0.0011641905875876546,
0.035474102944135666,
0.019993513822555542,
-0.03392784297466278,
0.01033837255090475,
-0.03063754178583622,
0.006387316156178713,
0.023373711854219437,
0.04958822950720787,
0.0020474472548812628,
0.04336722567677498,
-0.01094069518148899,
-0.03315471112728119,
-0.011093523353338242,
0.029253099113702774,
0.012271198444068432,
-0.035168446600437164,
-0.022348864004015923,
-0.040346622467041016,
-0.06677689403295517,
0.0036498948466032743,
0.02198926918208599,
-0.005447872914373875,
0.016037961468100548,
0.0088999904692173,
0.002332876203581691,
0.05142216384410858,
-0.009268575347959995,
-0.0212161373347044,
0.02094644121825695,
0.04635186865925789,
-0.022744419053196907,
-0.022762399166822433,
-0.010347362607717514,
-0.07371708750724792,
-0.029918350279331207,
0.04858136177062988,
0.01785391941666603,
0.05343589931726456,
0.019975533708930016,
0.03058360330760479,
0.020928461104631424,
0.0516379214823246,
0.04876115918159485,
0.017413415014743805,
0.02607067860662937,
0.040454499423503876,
-0.021647652611136436,
-0.00556474132463336,
0.07652193307876587,
-0.01256786473095417,
-0.031716328114271164,
-0.02844400890171528,
-0.07084032893180847,
-0.036678746342659,
0.025783002376556396,
0.008481960743665695,
0.033640164881944656,
-0.04415833577513695,
-0.033172689378261566,
-0.0058703976683318615,
-0.04264803230762482,
-0.011120492592453957,
-0.005609690677374601,
-0.04868923872709274,
0.0005635536508634686,
0.04610015079379082,
0.022798359394073486,
-0.04955226927995682,
-0.019526038318872452,
0.008481960743665695,
0.012136350385844707,
-0.03022400662302971,
0.03937571495771408,
0.06922214478254318,
-0.023913104087114334,
-0.004187040962278843,
0.04070621728897095,
0.030188048258423805,
0.008153829723596573,
-0.02518966980278492,
-0.0014709705719724298,
0.03272319585084915,
-0.07094820588827133,
0.07263830304145813,
-0.0418928824365139,
0.030457744374871254,
0.011399179697036743,
0.007587466388940811,
-0.03461107239127159,
-0.04926459118723869,
0.13499216735363007,
0.007277315016835928,
-0.02445249818265438,
0.013763519935309887,
0.0047781262546777725,
0.012253218330442905,
0.054586607962846756,
-0.012325137853622437,
0.049048833549022675,
-0.026016738265752792,
0.043906617909669876,
0.04142540693283081,
-0.027167445048689842,
-0.05300438404083252,
0.020389068871736526,
-0.043582983314991,
0.04707105830311775,
-0.013754529878497124,
-0.04681934043765068,
0.04545287787914276,
-0.03772157430648804,
-0.0002668873348738998,
0.002076664473861456,
0.016766143962740898,
0.020137351006269455,
-0.05235711485147476,
-0.009048323146998882,
0.005969286430627108,
-0.008949434384703636,
-0.06728032976388931,
-0.01697291061282158,
0.011435138992965221,
0.03430541604757309,
-0.07310577481985092,
0.02812037244439125,
-0.025800980627536774,
0.00483206519857049,
0.012711702845990658,
0.002818330191075802,
0.06965366005897522,
0.023949064314365387,
-0.03416157886385918,
0.013808469288051128,
-0.04005894437432289,
-0.02560320310294628,
0.007358224131166935,
-0.001635036082006991,
-0.0573914498090744,
-0.058937713503837585,
-0.022133106365799904,
-0.06699265539646149,
0.003135223872959614,
0.017512304708361626,
0.02420078217983246,
0.0355999618768692,
-0.029001381248235703,
-0.01671220362186432,
-0.03142865374684334,
-0.011758774518966675,
-0.02346361055970192,
0.011552007868885994,
0.05850619822740555,
-0.06188639625906944,
0.023157954216003418,
-0.07048072665929794,
-0.004164566285908222,
0.020820582285523415,
0.046639543026685715,
-0.035168446600437164,
-0.06379225105047226,
-0.057319533079862595,
0.057211652398109436,
-0.03239956125617027,
-0.049624186009168625,
-0.04494944587349892,
-0.03948359191417694,
0.005578225944191217,
0.07824799418449402,
0.0015372710768133402,
-0.020299170166254044,
-0.010985644534230232,
-0.0009085406782105565,
-0.0217914916574955,
-0.012819581665098667,
0.016766143962740898,
0.06656114012002945,
-0.039519552141427994,
0.017503313720226288,
-0.041497327387332916,
0.004274692386388779,
-0.020712703466415405,
-0.021198159083724022,
0.04937247186899185,
0.01795280911028385,
0.03926783427596092,
-0.042863789945840836,
0.06069973111152649,
0.009493323042988777,
-0.09500514715909958,
-0.02173755131661892,
0.040921974927186966,
-0.0020643032621592283,
0.006216508336365223,
0.05613286793231964,
-0.0018361848779022694,
-0.01968785747885704,
0.014401801861822605,
-0.01817755587399006,
-0.081484355032444,
-0.03649894893169403,
-0.015174932777881622,
0.03085329942405224,
0.009268575347959995,
0.09673120826482773,
0.007457112893462181,
0.07073244452476501,
0.02215108647942543,
0.044122375547885895,
0.017044829204678535,
0.0073941838927567005,
0.09097767621278763,
-0.020389068871736526,
0.03502460941672325,
-0.023211892694234848,
-0.04545287787914276,
-0.03441329672932625,
-0.04523712024092674,
-0.03538420423865318,
-0.031770266592502594,
0.002746411133557558,
0.04645974561572075,
-0.033010873943567276,
0.026088658720254898,
0.06976153701543808,
-0.012648774310946465,
0.023805225268006325,
0.05361569672822952,
-0.012882511131465435,
-0.004472469910979271,
0.013242106884717941,
0.017503313720226288,
-0.0027936080005019903,
0.033388447016477585,
0.01557947788387537,
-0.015534528531134129,
-0.008374081924557686,
0.013134228065609932,
0.019939573481678963,
-0.030493702739477158,
0.05861407518386841,
0.007511052303016186,
-0.015120993368327618,
0.02858784794807434,
-0.021395936608314514,
-0.016514426097273827,
-0.013349984772503376,
0.01648745685815811,
-0.008702212944626808,
0.005699589848518372,
-0.0026003255043178797,
-0.0694379061460495,
0.042755912989377975,
0.0014631043886765838,
-0.020550886169075966,
0.012774632312357426,
-0.01248695608228445,
0.028426028788089752,
-0.06328881531953812,
-0.05695993825793266,
0.030241986736655235,
-0.020299170166254044,
-0.02461431547999382,
0.029145220294594765,
0.04210864007472992,
-0.00876963697373867,
-0.02718542516231537,
0.006683982443064451,
-0.04167712479829788,
-0.00771332485601306,
0.026628050953149796,
0.02696966752409935,
-0.05206943675875664,
0.01139018964022398,
-0.009493323042988777,
-0.02880360372364521,
0.018555130809545517,
-0.002968910848721862,
-0.0031397186685353518,
0.035635918378829956,
0.016244729980826378,
0.01301735918968916,
-0.023032095283269882,
0.012424026615917683,
-0.006994133815169334,
0.02078462392091751,
-0.01947209984064102,
0.018986646085977554,
-0.00017193163512274623,
0.004409540444612503,
-0.0010506933322176337,
0.045488838106393814,
-0.047898128628730774,
0.03890823945403099,
-0.006068175192922354,
-0.03367612510919571,
-0.02340967021882534,
-0.0029441886581480503,
-0.028246231377124786,
0.04002298787236214,
0.0660577043890953,
0.01351180300116539,
0.036103393882513046,
-0.0044544897973537445,
0.014554630033671856,
-0.03536622226238251,
0.010922715067863464,
0.030385825783014297,
-0.00569509482011199,
-0.012244229204952717,
-0.10291624814271927,
0.019777756184339523,
-0.05566539242863655,
-0.013457863591611385,
-0.02765289880335331,
0.07076840847730637,
0.011462108232080936,
0.03524036332964897,
0.04077813774347305,
0.0012855541426688433,
0.004382570739835501,
-0.015741296112537384,
0.02215108647942543,
0.0033577235881239176,
0.008392061106860638,
0.008675242774188519,
0.05530579760670662,
-0.022384824231266975,
0.03524036332964897,
0.022924216464161873,
0.023104015737771988,
0.025279568508267403,
0.009403424337506294,
0.007367214187979698,
-0.007430143188685179,
0.0516379214823246,
0.008374081924557686,
0.026951687410473824,
0.014536650851368904,
0.06127508357167244,
-0.05530579760670662,
-0.0215217936784029,
-0.02330179326236248,
-0.014213014394044876,
0.03457511216402054,
0.04279187321662903,
-0.06469123810529709,
-0.02707754634320736,
-0.07357325404882431,
-0.024991892278194427,
-0.007807718589901924,
-0.01089574582874775,
0.03944763168692589,
-0.07680961489677429,
-0.05667226016521454,
0.06594982743263245,
0.05242903158068657,
0.02100038155913353,
-0.0384407639503479,
-0.03671470656991005,
0.02047896757721901,
0.04717893898487091,
0.023068055510520935,
0.004517419263720512,
-0.08788515627384186,
0.013314025476574898,
-0.023949064314365387,
-0.0034745922312140465,
0.0005478213424794376,
0.024236740544438362,
0.007556001655757427,
0.015273821540176868,
-0.009610190987586975,
-0.027455121278762817,
-0.022187046706676483,
-0.014833317138254642,
-0.03146461024880409,
-0.023104015737771988,
-0.03549208119511604,
-0.03606743365526199,
0.04200076311826706,
-0.04728681594133377,
0.042288437485694885,
-0.0361393541097641,
-0.030349865555763245,
0.016361597925424576,
0.016631294041872025,
-0.05706781521439552,
-0.04915671423077583,
-0.04451793059706688,
0.05037933960556984,
0.056744180619716644,
-0.010176554322242737,
-0.08572757989168167,
-0.10399504005908966,
0.036894503980875015,
-0.01566038653254509,
-0.06871870905160904,
-0.02283431775867939,
0.010688978247344494,
-0.05865003541111946,
-0.00007767826173221692,
0.04944438859820366,
0.06231791153550148,
-0.00973604992032051,
0.03772157430648804,
0.028210271149873734,
-0.015894124284386635,
0.012549885548651218,
-0.024596337229013443,
-0.004011738114058971,
-0.056060947477817535,
-0.035581979900598526,
-0.059261348098516464,
-0.011183422058820724,
0.013188167475163937,
0.03880036249756813,
-0.01681109331548214,
-0.04059834033250809,
-0.08882010728120804,
-0.03887227922677994,
0.02252866141498089,
-0.0009759648237377405,
-0.041353490203619,
-0.012684733606874943,
0.008266203105449677,
-0.0007017732132226229,
0.04559671878814697,
-0.03069148026406765,
0.023032095283269882,
0.029073301702737808,
-0.01486927643418312,
-0.05829044058918953,
-0.03295693174004555,
0.030385825783014297,
0.018465232104063034,
-0.017107758671045303,
-0.04487752541899681,
0.009529282338917255,
-0.06048397347331047,
-0.008077415637671947,
0.022546641528606415,
-0.00371731910854578,
-0.010509179905056953,
0.00700312340632081,
-0.0289654228836298,
-0.005339994095265865,
0.005326509475708008,
-0.019202403724193573,
0.04739469662308693,
-0.027796737849712372,
-0.08572757989168167,
0.006692972499877214,
-0.03200400620698929,
-0.013610691763460636,
0.04023874178528786,
-0.018824826925992966,
0.05588115006685257,
0.018986646085977554,
0.021539773792028427,
0.001793482806533575,
-0.021252097561955452,
0.01170483510941267,
-0.017467353492975235,
-0.043439142405986786,
-0.010886755771934986,
0.03126683458685875,
-0.06436760723590851,
-0.021485835313796997,
0.016999879851937294,
0.08802899718284607,
-0.05544963479042053,
-0.04886903613805771,
-0.001484455424360931,
-0.04063429683446884,
-0.030763400718569756,
-0.04771833121776581,
0.030331885442137718,
0.026214515790343285,
-0.041353490203619,
-0.05037933960556984,
0.01968785747885704,
0.021449875086545944,
-0.021126238629221916,
-0.006836810614913702,
-0.03876440227031708,
-0.03230966255068779,
0.01995755359530449,
0.005879387259483337,
0.020407048985362053,
0.03513248637318611,
-0.023643407970666885,
0.016990890726447105,
0.019148463383316994,
0.01586715504527092,
0.006270447745919228,
-0.010814836248755455,
0.006252467632293701,
-0.06954578310251236,
-0.01154301781207323,
-0.06684881448745728,
-0.047430653125047684,
0.015678366646170616,
-0.024434518069028854,
0.021252097561955452,
0.03955551236867905,
0.03912399709224701,
0.0009046075865626335,
0.03378400206565857,
0.022079167887568474,
-0.02031714841723442,
-0.057787008583545685,
-0.03466501086950302,
0.005888377316296101,
-0.010059685446321964,
0.0005854665068909526,
0.011102513410151005,
-0.07760072499513626,
0.009610190987586975,
-0.05404721200466156,
-0.03383794054389,
-0.026933707296848297,
-0.047214895486831665,
0.04466176778078079,
-0.005326509475708008,
0.03331653028726578,
0.016514426097273827,
-0.06256962567567825,
0.0660577043890953,
-0.031015116721391678,
-0.018824826925992966,
0.041245609521865845,
-0.0261246170848608,
-0.05922538787126541,
0.015633417293429375,
0.02340967021882534,
-0.009075293317437172,
0.04955226927995682,
0.023967044427990913,
0.002263204660266638,
-0.04937247186899185,
-0.015615437179803848,
-0.00958322174847126,
-0.0054388828575611115,
0.0005781622603535652,
-0.012900490313768387,
-0.014428772032260895,
-0.019094524905085564,
0.045273080468177795,
0.05415509268641472,
0.015795234590768814,
0.005852417554706335,
0.0031599460635334253,
-0.002710451604798436,
-0.0014046701835468411,
0.03926783427596092,
-0.024272700771689415,
-0.0038431775756180286,
0.00483206519857049,
-0.06965366005897522,
0.0025576234329491854,
0.04016682505607605,
0.012990389950573444,
-0.009520292282104492,
-0.0562407448887825,
-0.006778376176953316,
0.03373006358742714,
0.025117749348282814,
0.07961446046829224,
0.09658736735582352,
0.003166688373312354,
-0.003317269030958414
]
|
42,104 | flask_restful | _complete_url | This method is used to defer the construction of the final url in
the case that the Api is created with a Blueprint.
:param url_part: The part of the url the endpoint is registered with
:param registration_prefix: The part of the url contributed by the
blueprint. Generally speaking, BlueprintSetupState.url_prefix
| def _complete_url(self, url_part, registration_prefix):
"""This method is used to defer the construction of the final url in
the case that the Api is created with a Blueprint.
:param url_part: The part of the url the endpoint is registered with
:param registration_prefix: The part of the url contributed by the
blueprint. Generally speaking, BlueprintSetupState.url_prefix
"""
parts = {
'b': registration_prefix,
'a': self.prefix,
'e': url_part
}
return ''.join(parts[key] for key in self.url_part_order if parts[key])
| (self, url_part, registration_prefix) | [
-0.04387589544057846,
0.029062943533062935,
-0.08001105487346649,
-0.0050358762964606285,
0.006359717808663845,
0.02056572586297989,
0.03683886304497719,
0.021287022158503532,
-0.01505924854427576,
-0.054501812905073166,
0.04788700491189957,
0.018032394349575043,
0.02223702147603035,
-0.035220347344875336,
0.011769436299800873,
0.006671986076980829,
0.061609216034412384,
0.003850576002150774,
0.014487490057945251,
-0.01247313991189003,
-0.0036856455262750387,
0.05334070324897766,
0.01956295035779476,
0.013669434934854507,
-0.014469897374510765,
0.018120357766747475,
0.02932683192193508,
-0.02272961474955082,
0.02746201865375042,
-0.06699254363775253,
0.05513514578342438,
-0.04179996997117996,
0.03856293484568596,
0.04742959514260292,
0.07853327691555023,
0.026599980890750885,
0.05087774246931076,
0.04215182363986969,
-0.1020369678735733,
-0.010889807716012001,
0.011285640299320221,
0.005348144564777613,
-0.033549051731824875,
-0.043066635727882385,
0.09514067322015762,
0.05101848393678665,
-0.024119427427649498,
0.05650736764073372,
-0.0490129292011261,
0.005203005857765675,
0.028781462460756302,
-0.038879603147506714,
0.006619208492338657,
0.017733320593833923,
-0.006056245882064104,
0.036803677678108215,
0.00523819075897336,
0.050314780324697495,
0.02908053621649742,
0.061609216034412384,
-0.0010572040919214487,
-0.016624988988041878,
-0.013194435276091099,
0.024031464010477066,
0.06217217817902565,
0.03337312489748001,
-0.0265823882073164,
0.012974527664482594,
-0.03314442187547684,
0.0395481213927269,
0.061011068522930145,
0.014443508349359035,
-0.02707498148083687,
-0.016704155132174492,
0.02543887123465538,
-0.010098141618072987,
0.026089796796441078,
-0.045529596507549286,
0.030329609289765358,
-0.041342563927173615,
-0.008963420055806637,
-0.030100904405117035,
-0.03495645895600319,
-0.07459253817796707,
0.018067579716444016,
-0.007217356003820896,
-0.013440731912851334,
-0.06452958285808563,
-0.026318499818444252,
0.029520349577069283,
-0.04021663963794708,
-0.008536799810826778,
-0.0366981215775013,
0.04088515788316727,
0.033549051731824875,
-0.05935736745595932,
-0.04053330421447754,
0.004569672979414463,
0.0021396975498646498,
-0.05084255710244179,
0.002269442891702056,
-0.06787217408418655,
-0.06628884375095367,
0.03750738129019737,
0.0522499643266201,
-0.06699254363775253,
0.020636096596717834,
-0.017610173672437668,
-0.04549441486597061,
-0.02677590772509575,
0.010977770201861858,
-0.07346661388874054,
-0.013467120006680489,
-0.030874978750944138,
-0.01986202411353588,
0.03560738265514374,
0.01774211786687374,
0.002293632598593831,
0.03873886168003082,
-0.028922202065587044,
0.030329609289765358,
-0.048837002366781235,
-0.05689440667629242,
-0.03400645777583122,
0.05802033096551895,
0.024682389572262764,
-0.02174443006515503,
0.03708516061306,
-0.014496286399662495,
-0.10245918482542038,
0.014443508349359035,
0.06903328746557236,
-0.11836288124322891,
-0.0507018156349659,
-0.02696942538022995,
0.0021451953798532486,
-0.03845738247036934,
0.021269429475069046,
-0.04728885740041733,
0.0889480859041214,
-0.04690181836485863,
0.009913419373333454,
-0.02973146177828312,
-0.01705600693821907,
0.03465738520026207,
0.014021286740899086,
0.020178690552711487,
0.042574044317007065,
0.014478693716228008,
-0.0010588534642010927,
0.008941428735852242,
0.03982960060238838,
0.00033975671976804733,
-0.009843048639595509,
-0.017478229478001595,
-0.035378679633140564,
-0.025210168212652206,
0.04482589662075043,
0.01680971123278141,
-0.0564018115401268,
0.08085549622774124,
-0.022905539721250534,
-0.0023222207091748714,
-0.048731446266174316,
0.029098128899931908,
0.02672312967479229,
0.06157403066754341,
0.002269442891702056,
0.005493283271789551,
0.010634714737534523,
-0.015103230252861977,
0.028165720403194427,
-0.029502756893634796,
0.021973133087158203,
0.021902762353420258,
0.04120182245969772,
0.015850914642214775,
-0.06491661816835403,
-0.004213423002511263,
-0.03750738129019737,
0.014320360496640205,
0.005853930953890085,
-0.03289812430739403,
-0.004213423002511263,
0.026881463825702667,
-0.004947913344949484,
-0.032757386565208435,
0.016642581671476364,
0.01739906147122383,
0.01799720898270607,
-0.04707774519920349,
0.007393281906843185,
0.02686387114226818,
-0.005532866343855858,
0.016941655427217484,
-0.032950904220342636,
0.02371479757130146,
0.026740722358226776,
0.04718330129981041,
0.006773143541067839,
-0.03041757084429264,
-0.02563238888978958,
-0.02130461484193802,
0.018612949177622795,
0.048485152423381805,
0.03134997934103012,
0.07212957739830017,
0.026001833379268646,
-0.02248331718146801,
-0.020671281963586807,
-0.009077771566808224,
0.0039363401010632515,
0.003729627002030611,
0.037683308124542236,
-0.03156108781695366,
-0.020548133179545403,
-0.042081452906131744,
0.01903517171740532,
0.05457218363881111,
0.011074529029428959,
-0.009288882836699486,
-0.020389800891280174,
0.12159991264343262,
-0.05295366793870926,
-0.02021387405693531,
-0.018067579716444016,
0.01783887669444084,
-0.014364342205226421,
-0.056085146963596344,
-0.0013491309946402907,
-0.028077758848667145,
-0.03771849349141121,
0.027444425970315933,
0.02760275825858116,
0.05784440413117409,
0.0208120234310627,
-0.013889342546463013,
0.02193794772028923,
0.07916661351919174,
0.025755537673830986,
0.008774299174547195,
0.03835182636976242,
-0.028728684410452843,
-0.03972404822707176,
-0.005985875613987446,
0.040251825004816055,
-0.033249977976083755,
-0.00012397271348163486,
-0.018014801666140556,
-0.046620339155197144,
-0.04728885740041733,
0.06357958912849426,
-0.010414808057248592,
-0.005176616832613945,
-0.02825368382036686,
-0.0179884135723114,
-0.015173600986599922,
-0.03560738265514374,
-0.012314806692302227,
0.012376380153000355,
-0.04570552334189415,
-0.005911107175052166,
-0.0034085623919963837,
0.06322773545980453,
-0.033408310264348984,
-0.037894416600465775,
0.03525553271174431,
-0.004706015344709158,
-0.0232749842107296,
0.025104612112045288,
0.07044069468975067,
-0.00964073371142149,
-0.018753690645098686,
0.008418049663305283,
0.00614860700443387,
0.01155832502990961,
0.017715727910399437,
-0.008528003469109535,
-0.011822214350104332,
-0.03624071553349495,
0.031824976205825806,
-0.018894432112574577,
0.026494426652789116,
0.011294436641037464,
0.008066197857260704,
-0.0004967155400663614,
0.00010768583160825074,
0.03982960060238838,
0.010810640640556812,
-0.01632591523230076,
0.02109350450336933,
0.013132860884070396,
0.007287726271897554,
0.06178514286875725,
0.004983098246157169,
0.022500909864902496,
0.01065230742096901,
0.04102589935064316,
0.01089860312640667,
-0.021128689870238304,
-0.04612774774432182,
0.026160167530179024,
-0.05295366793870926,
-0.007991429418325424,
-0.02524535357952118,
-0.04911848530173302,
0.055486999452114105,
-0.03835182636976242,
-0.014724989421665668,
-0.0035229141358286142,
-0.02267683669924736,
-0.01725832186639309,
-0.017267117276787758,
0.00806180015206337,
-0.01908794976770878,
0.0010236683301627636,
-0.006667587906122208,
0.015103230252861977,
0.014311564154922962,
0.029907386749982834,
-0.023943502455949783,
0.061151809990406036,
0.00634652329608798,
0.029819423332810402,
0.0076659671030938625,
0.005053468514233828,
0.0022177647333592176,
0.03831664100289345,
-0.022025911137461662,
-0.012244435958564281,
-0.0543258897960186,
-0.012455547228455544,
-0.021621281281113625,
-0.017759710550308228,
-0.02450646460056305,
-0.038774047046899796,
0.0060738385654985905,
-0.08085549622774124,
-0.008277309127151966,
-0.015912488102912903,
0.019879616796970367,
-0.005493283271789551,
-0.024137020111083984,
0.049575891345739365,
-0.02026665210723877,
0.0018483204767107964,
0.0036900436971336603,
0.018999986350536346,
0.07972957193851471,
-0.06699254363775253,
-0.0448610782623291,
-0.047253672033548355,
0.042327746748924255,
0.04683144763112068,
0.09246660023927689,
0.01286897249519825,
-0.029027758166193962,
-0.02557961270213127,
0.028675906360149384,
0.05517033115029335,
0.03891478851437569,
-0.047605521976947784,
-0.054712925106287,
-0.013000916689634323,
0.06889254599809647,
-0.029520349577069283,
0.006065042223781347,
0.0023969891481101513,
-0.00020849956490565091,
-0.036451827734708786,
-0.002740044379606843,
-0.00019324349705129862,
0.06569069623947144,
-0.0234685018658638,
-0.036451827734708786,
-0.04014626890420914,
0.02420739084482193,
-0.01739906147122383,
-0.04472034052014351,
0.01131202932447195,
-0.0036966409534215927,
0.04327774792909622,
-0.005713190417736769,
0.04904811456799507,
-0.014197212643921375,
-0.03673330694437027,
0.011716658249497414,
0.0027356462087482214,
-0.045529596507549286,
0.02707498148083687,
0.05362218618392944,
-0.004310182295739651,
-0.03490367904305458,
0.02322220616042614,
-0.0035141180269420147,
-0.08240364491939545,
-0.022694429382681847,
-0.05580366402864456,
0.007085411809384823,
-0.003789002075791359,
0.06375551223754883,
-0.016405081376433372,
-0.004881941247731447,
0.059040699154138565,
0.03807034343481064,
-0.03486849367618561,
0.06062403321266174,
0.08676660805940628,
-0.010115733370184898,
-0.0018945010378956795,
-0.09746289253234863,
-0.0510888546705246,
-0.07459253817796707,
-0.01933424547314644,
-0.00008720697223907337,
-0.013326379470527172,
-0.011505547910928726,
0.029362017288804054,
-0.03259905055165291,
0.05699995905160904,
0.022852761670947075,
0.010098141618072987,
0.05175737291574478,
0.04605737701058388,
-0.037296269088983536,
0.016985636204481125,
-0.01593008078634739,
-0.015894897282123566,
0.06203144043684006,
-0.0016031238483265042,
-0.009332863613963127,
-0.01412684191018343,
-0.05260181427001953,
-0.025861093774437904,
0.026512019336223602,
0.0034569420386105776,
0.04464996978640556,
0.027145352214574814,
0.02450646460056305,
-0.0395481213927269,
-0.035378679633140564,
-0.004851154051721096,
-0.022201836109161377,
0.014513879083096981,
0.03022405318915844,
0.01380137912929058,
-0.031877756118774414,
-0.05115922540426254,
0.015349526889622211,
-0.002484952099621296,
-0.04992774501442909,
-0.012165269814431667,
-0.03919626772403717,
-0.00931527093052864,
-0.007085411809384823,
-0.065866619348526,
0.03613515943288803,
0.023503687232732773,
-0.022694429382681847,
-0.0035668956115841866,
0.02415461279451847,
0.04028701037168503,
0.004516894929111004,
0.02617776021361351,
0.02746201865375042,
0.01794443279504776,
0.017223136499524117,
0.027497204020619392,
-0.05875921994447708,
0.025702759623527527,
-0.0486258938908577,
-0.0011512144701555371,
0.016193971037864685,
0.0027906231116503477,
0.053762927651405334,
0.059286996722221375,
0.036451827734708786,
0.037296269088983536,
0.04672589525580406,
-0.04229256510734558,
-0.004387149587273598,
-0.004983098246157169,
-0.00993101205676794,
0.040005527436733246,
-0.0020451375748962164,
0.027127759531140327,
-0.046866632997989655,
0.04116663709282875,
-0.012508324347436428,
0.0033843726851046085,
-0.008954623714089394,
0.010467585176229477,
-0.03022405318915844,
0.004851154051721096,
-0.019246283918619156,
0.01972128264605999,
0.035220347344875336,
0.04461478441953659,
0.009746289812028408,
0.012209250591695309,
0.029414795339107513,
-0.016299525275826454,
0.030012942850589752,
0.028623128309845924,
-0.012385176494717598,
-0.0337073840200901,
-0.06449440121650696,
0.03134997934103012,
-0.0461629293859005,
0.023151835426688194,
-0.019351838156580925,
-0.003127081086859107,
0.04792219027876854,
0.01700322888791561,
0.003160067368298769,
0.032511088997125626,
0.017434246838092804,
-0.01631711795926094,
0.06744994968175888,
0.025333315134048462,
0.00043184286914765835,
0.04415737837553024,
0.05478329584002495,
0.022219428792595863,
0.004578468855470419,
-0.0062717548571527,
0.006821522954851389,
-0.0027554379776120186,
-0.04531848803162575,
0.026987018063664436,
0.030329609289765358,
0.05802033096551895,
0.0510888546705246,
0.0016581007512286305,
0.03066386841237545,
0.05418514832854271,
-0.07181291282176971,
-0.05759810656309128,
0.01834906078875065,
0.02612498216331005,
0.025702759623527527,
0.014364342205226421,
-0.03652219846844673,
-0.05974440276622772,
-0.04925922676920891,
0.0032656227704137564,
0.03393608704209328,
0.023151835426688194,
0.05654255300760269,
-0.03534349426627159,
-0.0497870035469532,
0.032511088997125626,
0.02089998498558998,
0.006324532441794872,
-0.016554618254303932,
-0.025122204795479774,
-0.04194071143865585,
0.020389800891280174,
-0.0056428201496601105,
-0.009570363909006119,
-0.03194812685251236,
0.04194071143865585,
-0.04472034052014351,
0.04187034070491791,
-0.007287726271897554,
0.022166650742292404,
0.014760174788534641,
-0.027497204020619392,
-0.0007504335371777415,
-0.014944897033274174,
-0.02445368655025959,
-0.039372194558382034,
-0.026951832696795464,
-0.01382776815444231,
-0.03701478987932205,
-0.030048128217458725,
0.04341848939657211,
-0.05362218618392944,
0.05932218208909035,
-0.02992497943341732,
0.027637943625450134,
0.001912093604914844,
0.039618492126464844,
-0.028271276503801346,
-0.025157390162348747,
-0.022342577576637268,
0.042714785784482956,
0.021287022158503532,
0.023591650649905205,
-0.08958142250776291,
-0.04517774656414986,
0.007868281565606594,
0.004644441418349743,
-0.041342563927173615,
0.019510172307491302,
0.00912175327539444,
-0.03245830908417702,
0.010889807716012001,
-0.02109350450336933,
0.022571280598640442,
0.014900915324687958,
0.06364995241165161,
0.03620553016662598,
0.01765415444970131,
0.007578004151582718,
-0.0025795120745897293,
-0.0003672451130114496,
-0.00816295761615038,
-0.039512936025857925,
-0.04728885740041733,
0.029115719720721245,
0.025403685867786407,
-0.020882392302155495,
0.003562497440725565,
-0.07543698698282242,
-0.049470335245132446,
-0.010960177518427372,
-0.027250906452536583,
-0.007019439712166786,
0.02549164928495884,
-0.032563865184783936,
-0.0021638874895870686,
-0.00830809585750103,
0.07051106542348862,
-0.051792558282613754,
0.012393972836434841,
0.026758315041661263,
-0.03444627299904823,
0.009860641323029995,
0.006680782418698072,
-0.010546752251684666,
0.013889342546463013,
-0.01578054390847683,
-0.020671281963586807,
0.004815968684852123,
-0.0567888505756855,
0.02385553903877735,
0.0010857920860871673,
-0.03905552998185158,
-0.06062403321266174,
-0.03140275552868843,
0.01977406069636345,
-0.04264441505074501,
-0.014856934547424316,
-0.03516756743192673,
0.03173701465129852,
-0.024911094456911087,
-0.08486660569906235,
-0.010986566543579102,
-0.0543258897960186,
0.0017218737630173564,
0.06896291673183441,
0.06227773427963257,
0.03799997270107269,
-0.009825455956161022,
0.0025487251114100218,
0.0023486095014959574,
-0.002379396464675665,
0.006817124783992767,
0.03344349563121796,
-0.0035800901241600513,
-0.07128513604402542,
0.07234068959951401,
-0.033249977976083755,
-0.058407366275787354,
0.020161097869277,
0.08085549622774124,
-0.09612585604190826,
-0.07473327964544296,
-0.03259905055165291,
-0.04415737837553024,
-0.011496751569211483,
0.02144535630941391,
-0.05594440549612045,
-0.018401838839054108,
-0.003195252502337098,
-0.017196746543049812,
-0.005101848393678665,
0.05481848120689392,
0.015639804303646088,
0.05003329738974571,
-0.05414996296167374,
-0.006667587906122208,
-0.008866660296916962,
0.0257379449903965,
0.04728885740041733,
-0.02130461484193802,
-0.019985171034932137,
0.0044443258084356785,
-0.027127759531140327,
0.02155091054737568,
-0.05816107243299484,
-0.02149813249707222,
-0.021234244108200073,
-0.0473240427672863,
0.022553687915205956,
-0.011241658590734005,
-0.057703662663698196,
0.00687869917601347,
0.009174530394375324,
0.06372032314538956,
0.03361942246556282,
0.029854608699679375,
-0.020196283236145973,
-0.003731826087459922,
0.03441108763217926,
0.02908053621649742,
-0.0588647723197937,
-0.08958142250776291,
0.026687944307923317,
0.012675453908741474,
-0.006179393734782934,
-0.024224983528256416,
-0.05492403730750084,
0.03894997388124466,
-0.03289812430739403,
-0.05826662480831146,
0.014267582446336746,
-0.007846291176974773,
0.06818883866071701,
-0.01680971123278141,
0.00845763273537159,
0.039372194558382034,
-0.05309440940618515,
0.07061661779880524,
-0.005616431124508381,
-0.005282172467559576,
0.01632591523230076,
-0.016730543226003647,
-0.01731109991669655,
-0.028517572209239006,
0.026441648602485657,
-0.04813329875469208,
0.07374809682369232,
0.04426293075084686,
-0.0378592349588871,
-0.009737493470311165,
0.024981463328003883,
0.015657396987080574,
-0.02721572108566761,
-0.03066386841237545,
0.01343193557113409,
0.05654255300760269,
0.04014626890420914,
0.0034569420386105776,
0.03298608958721161,
0.01191017683595419,
-0.03968886286020279,
-0.02308146469295025,
0.02046017162501812,
0.02065368928015232,
0.028165720403194427,
-0.018454616889357567,
-0.019791653379797935,
-0.014628230594098568,
-0.1003480777144432,
-0.011874991469085217,
0.05787958949804306,
-0.04767589271068573,
-0.023239798843860626,
-0.04236293211579323,
0.014672212302684784,
0.04841478168964386,
-0.007762725930660963,
0.07008884102106094,
0.07276291400194168,
0.020970355719327927,
-0.024875909090042114
]
|
42,105 | flask_restful | _deferred_blueprint_init | Synchronize prefix between blueprint/api and registration options, then
perform initialization with setup_state.app :class:`flask.Flask` object.
When a :class:`flask_restful.Api` object is initialized with a blueprint,
this method is recorded on the blueprint to be run when the blueprint is later
registered to a :class:`flask.Flask` object. This method also monkeypatches
BlueprintSetupState.add_url_rule with _blueprint_setup_add_url_rule_patch.
:param setup_state: The setup state object passed to deferred functions
during blueprint registration
:type setup_state: flask.blueprints.BlueprintSetupState
| def _deferred_blueprint_init(self, setup_state):
"""Synchronize prefix between blueprint/api and registration options, then
perform initialization with setup_state.app :class:`flask.Flask` object.
When a :class:`flask_restful.Api` object is initialized with a blueprint,
this method is recorded on the blueprint to be run when the blueprint is later
registered to a :class:`flask.Flask` object. This method also monkeypatches
BlueprintSetupState.add_url_rule with _blueprint_setup_add_url_rule_patch.
:param setup_state: The setup state object passed to deferred functions
during blueprint registration
:type setup_state: flask.blueprints.BlueprintSetupState
"""
self.blueprint_setup = setup_state
if setup_state.add_url_rule.__name__ != '_blueprint_setup_add_url_rule_patch':
setup_state._original_add_url_rule = setup_state.add_url_rule
setup_state.add_url_rule = MethodType(Api._blueprint_setup_add_url_rule_patch,
setup_state)
if not setup_state.first_registration:
raise ValueError('flask-restful blueprints can only be registered once.')
self._init_app(setup_state.app)
| (self, setup_state) | [
-0.018181176856160164,
-0.008967248722910881,
-0.047508604824543,
-0.003716177772730589,
0.020940329879522324,
0.040565039962530136,
0.03689225763082504,
0.02821280062198639,
-0.012973503209650517,
-0.02978423982858658,
0.019222712144255638,
-0.006089323665946722,
0.03807997331023216,
-0.008807363919913769,
0.00006855771061964333,
0.02073933184146881,
0.05013984814286232,
0.06011665612459183,
-0.0034123968798667192,
-0.05299036577343941,
0.007816079072654247,
0.028523433953523636,
0.016902098432183266,
0.044438816606998444,
-0.019332347437739372,
0.028011802583932877,
-0.032890573143959045,
0.0016525228274986148,
0.06574460119009018,
-0.015769202262163162,
0.028980247676372528,
0.00969358254224062,
0.04959167167544365,
0.05277109518647194,
0.0793028250336647,
0.017952769994735718,
0.05470798537135124,
0.03968795761466026,
-0.05785086005926132,
0.003834949340671301,
0.05229600891470909,
-0.028176255524158478,
0.026842361316084862,
-0.019350619986653328,
0.07871810346841812,
0.01777918078005314,
0.001851236680522561,
0.03720289096236229,
-0.04188065975904465,
0.02150677889585495,
-0.003796120174229145,
-0.051345836371183395,
0.012854731641709805,
0.052917275577783585,
0.018765898421406746,
0.01619860716164112,
0.008318574167788029,
0.009583947248756886,
0.036928802728652954,
-0.03771452233195305,
0.015376342460513115,
0.015029164031147957,
0.0200632493942976,
-0.013667860068380833,
0.0009170530829578638,
0.004670917987823486,
-0.04805678129196167,
-0.0028345277532935143,
0.006801953073590994,
0.032086580991744995,
-0.00566448736935854,
0.030149690806865692,
0.008373391814529896,
-0.0072724707424640656,
0.0414055734872818,
0.014645440503954887,
0.05825285613536835,
-0.1007913276553154,
-0.012425326742231846,
-0.0459006205201149,
0.03782415762543678,
0.015029164031147957,
-0.06252863258123398,
-0.0011140538845211267,
-0.005659919232130051,
-0.010186941362917423,
0.017623864114284515,
-0.015531659126281738,
-0.013859721831977367,
-0.02009979449212551,
-0.055585067719221115,
-0.00392174394801259,
0.05759504437446594,
0.011822333559393883,
0.031538404524326324,
-0.044438816606998444,
-0.050030212849378586,
0.020410427823662758,
0.011529972776770592,
-0.03630753606557846,
-0.01081734336912632,
-0.06512333452701569,
-0.021561596542596817,
-0.004634372889995575,
0.02426593191921711,
-0.028486888855695724,
-0.010369665920734406,
-0.010543255135416985,
-0.05459835007786751,
-0.008944408036768436,
-0.006911588367074728,
-0.040528494864702225,
-0.0011483149137347937,
-0.007711011916399002,
-0.011895423755049706,
0.01438048854470253,
0.06399043649435043,
0.007409514859318733,
0.06559842079877853,
-0.027207812294363976,
-0.0020522347185760736,
-0.02994869276881218,
0.01790708862245083,
-0.02349848672747612,
0.04100358113646507,
0.06950873881578445,
-0.004316887352615595,
0.05013984814286232,
0.02227422595024109,
-0.06797384470701218,
0.0012402486754581332,
0.0786450132727623,
-0.10218004137277603,
-0.0001981428504223004,
0.020903784781694412,
-0.01964298076927662,
0.011593926697969437,
0.00257642799988389,
-0.0235898494720459,
0.007825215347111225,
-0.027207812294363976,
0.003825813066214323,
-0.027006814256310463,
0.003053798107430339,
0.033913832157850266,
0.02892543002963066,
0.0037641432136297226,
0.01773349940776825,
0.010497573763132095,
0.04856840893626213,
0.040784310549497604,
0.019314074888825417,
0.032177943736314774,
0.02035561017692089,
-0.035649724304676056,
0.03716634586453438,
-0.04071122035384178,
0.0163721963763237,
0.05152856186032295,
-0.04560825973749161,
-0.013448589481413364,
0.015604749321937561,
-0.048458777368068695,
-0.08398059010505676,
-0.024156298488378525,
0.02664136327803135,
-0.020008431747555733,
-0.03502845764160156,
-0.007025791332125664,
0.051601652055978775,
-0.04114975780248642,
-0.011721834540367126,
0.018555764108896255,
0.014270853251218796,
0.06907019764184952,
0.03932250663638115,
0.02846861630678177,
-0.038445424288511276,
-0.008766250684857368,
0.025672918185591698,
0.0532827265560627,
-0.025417102500796318,
-0.05357508733868599,
-0.0338590145111084,
-0.004814814310520887,
0.08493076264858246,
-0.04308664798736572,
0.04359827935695648,
0.03283575549721718,
0.04889731481671333,
0.009364676661789417,
0.03358492627739906,
0.05061493441462517,
-0.0034740667324513197,
-0.04093049094080925,
-0.011228475719690323,
-0.003533452283591032,
0.030478596687316895,
0.026330729946494102,
-0.030551686882972717,
-0.011612199246883392,
0.020392155274748802,
-0.010515846312046051,
-0.0016422445187345147,
0.0313008613884449,
0.0008502441341988742,
0.010981796309351921,
0.008076462894678116,
-0.0370749831199646,
-0.013311545364558697,
0.010442756116390228,
-0.005719305016100407,
-0.004355716519057751,
-0.015175344422459602,
-0.03568626940250397,
-0.07601376622915268,
0.05752195417881012,
-0.012571507133543491,
0.04166138917207718,
-0.013841449283063412,
0.0014184059109538794,
0.05573124811053276,
0.02227422595024109,
-0.028980247676372528,
-0.08683110773563385,
0.02545364759862423,
0.0010820769239217043,
-0.016189470887184143,
-0.01035139337182045,
-0.005828940309584141,
-0.059020303189754486,
-0.0008919283282011747,
0.03422446548938751,
-0.013969357125461102,
0.05390399321913719,
0.006377116311341524,
0.06585423648357391,
0.01354908850044012,
-0.013019184581935406,
0.03676434978842735,
0.04363482445478439,
0.04188065975904465,
0.01325672771781683,
-0.0702761858701706,
-0.03572281450033188,
0.02603836916387081,
-0.03194040060043335,
-0.0272809024900198,
-0.012178647331893444,
-0.05090729519724846,
-0.0975753590464592,
-0.005047789309173822,
0.015038300305604935,
-0.03656335175037384,
-0.05379435792565346,
-0.08324968814849854,
0.0039468687027692795,
0.0009832910727709532,
-0.03358492627739906,
0.031246043741703033,
0.0017061984399333596,
-0.029583241790533066,
-0.03268957510590553,
0.08631947636604309,
-0.028139710426330566,
-0.016728511080145836,
0.000016746853361837566,
-0.004593259654939175,
-0.017103096470236778,
-0.0015600180486217141,
0.11738279461860657,
-0.03215967118740082,
-0.0019665821455419064,
0.006801953073590994,
0.011657880619168282,
-0.03248857706785202,
-0.019058259204030037,
-0.045571714639663696,
0.007327288389205933,
-0.012891276739537716,
0.07422305643558502,
-0.05719304829835892,
0.07129944860935211,
0.03215967118740082,
0.01035139337182045,
-0.0272809024900198,
-0.04381754994392395,
0.09348231554031372,
-0.01433480717241764,
-0.046594977378845215,
0.058983758091926575,
0.01595192775130272,
-0.009638764895498753,
0.04571789503097534,
0.029765967279672623,
0.015294115990400314,
-0.04955512657761574,
0.061943911015987396,
-0.0111553855240345,
-0.052113283425569534,
-0.015376342460513115,
0.011301565915346146,
-0.0007263334700837731,
0.05514652654528618,
0.00398798193782568,
-0.059751205146312714,
0.033146388828754425,
-0.00909972470253706,
-0.03137395158410072,
0.009967670775949955,
0.017285821959376335,
0.0020990578923374414,
-0.007962259463965893,
-0.006107596214860678,
0.0138049041852355,
-0.04703351855278015,
-0.045023538172245026,
-0.027463627979159355,
-0.0011066306615248322,
0.00755112711340189,
-0.06567151099443436,
0.023443669080734253,
0.013119683600962162,
-0.002290919655933976,
0.016956916078925133,
0.009757536463439465,
0.037860702723264694,
0.03033241629600525,
-0.04305010288953781,
0.03689225763082504,
-0.06863165646791458,
0.005838076584041119,
-0.006920724641531706,
0.015760065987706184,
-0.017459411174058914,
-0.06150536984205246,
0.005691896192729473,
-0.08639256656169891,
-0.04648534208536148,
-0.06877783685922623,
0.030515141785144806,
-0.01977088861167431,
-0.0208672396838665,
0.015175344422459602,
-0.057704679667949677,
0.003894335124641657,
-0.019113076850771904,
0.0025056221056729555,
0.04889731481671333,
-0.07535595446825027,
0.030898865312337875,
-0.09092415869235992,
-0.043707914650440216,
0.05602360516786575,
0.009255041368305683,
-0.03194040060043335,
-0.05989738553762436,
-0.04465808719396591,
0.038408879190683365,
0.005659919232130051,
-0.01136551983654499,
0.03778761252760887,
-0.09099724888801575,
-0.008967248722910881,
0.04721624404191971,
-0.007784102112054825,
-0.03636235371232033,
0.002350305439904332,
-0.002713472116738558,
-0.021232690662145615,
0.008149553090333939,
-0.018647126853466034,
-0.0021995569113641977,
0.013375499285757542,
0.015887973830103874,
-0.025672918185591698,
-0.004584123380482197,
-0.023224398493766785,
-0.04484081268310547,
0.047654785215854645,
-0.03621617332100868,
0.01802586019039154,
-0.03261648491024971,
-0.0029692878015339375,
-0.030862320214509964,
-0.09903716295957565,
-0.03296366333961487,
0.006815657485276461,
-0.01683814451098442,
-0.002054518787190318,
0.04641225188970566,
-0.0224752239882946,
-0.012799913994967937,
0.04611989110708237,
0.04410991072654724,
-0.038664694875478745,
0.006852202583104372,
0.02240213379263878,
0.04199029505252838,
0.006637500133365393,
0.05390399321913719,
-0.0012162659550085664,
0.07659848779439926,
-0.0037275981158018112,
0.05788740515708923,
0.016171198338270187,
0.08039917796850204,
0.0770370289683342,
-0.010990932583808899,
0.06530606001615524,
-0.01598847284913063,
0.00005289043838274665,
-0.054817620664834976,
-0.0661100521683693,
-0.025435375049710274,
-0.04041885957121849,
0.01035139337182045,
0.05412326380610466,
0.018044132739305496,
0.0298573300242424,
0.062418997287750244,
0.03431582823395729,
0.050030212849378586,
0.01056152768433094,
-0.01790708862245083,
0.05324618145823479,
0.004209536127746105,
0.08478458225727081,
-0.009031202644109726,
0.0261662770062685,
0.025782553479075432,
0.06336916983127594,
0.02872443199157715,
-0.020081521943211555,
-0.0028299596160650253,
-0.022749312222003937,
0.04432918131351471,
0.008240915834903717,
-0.0009124849457293749,
0.020885512232780457,
0.01925925724208355,
-0.0052031055092811584,
-0.0003743015695363283,
0.008377959951758385,
0.0037047574296593666,
0.004919881466776133,
-0.0012185500236228108,
0.0298573300242424,
0.10349566489458084,
0.007870896719396114,
-0.046887338161468506,
-0.05887412279844284,
-0.027043359354138374,
-0.03305502608418465,
-0.050797659903764725,
-0.013119683600962162,
0.05551197752356529,
0.00425293343141675,
-0.04805678129196167,
0.025179559364914894,
0.01900344155728817,
-0.003291341243311763,
-0.04802023619413376,
-0.01781572587788105,
-0.015321524813771248,
0.00285280030220747,
0.018985169008374214,
-0.0064136614091694355,
-0.03342047706246376,
0.008821068331599236,
0.019314074888825417,
0.024576565250754356,
0.060884103178977966,
-0.02930915355682373,
-0.011584790423512459,
0.011931968852877617,
0.01607983559370041,
0.0009404647862538695,
0.00008215504931285977,
-0.011776652187108994,
0.041734479367733,
0.03689225763082504,
-0.002827675547450781,
0.001742743537761271,
-0.035192910581827164,
-0.03197694569826126,
0.020794149488210678,
0.01815376803278923,
0.029035065323114395,
-0.003750438801944256,
-0.018510082736611366,
0.010936114937067032,
0.018226858228445053,
-0.0013989913277328014,
0.012306555174291134,
0.005120879504829645,
0.03482745960354805,
0.009620492346584797,
0.04787405580282211,
0.030569959431886673,
0.011402064934372902,
-0.056096695363521576,
-0.023809120059013367,
0.042099930346012115,
-0.04728933423757553,
-0.02519783191382885,
-0.10210695117712021,
-0.017194459214806557,
-0.020154612138867378,
0.03965141251683235,
-0.00544978491961956,
0.023809120059013367,
-0.015147935599088669,
-0.0012962082400918007,
0.002236102009192109,
-0.006715158466249704,
-0.0022223975975066423,
-0.00570560060441494,
0.005093470681458712,
0.018400447443127632,
-0.00951999332755804,
0.01832735724747181,
0.04272119700908661,
-0.01705741509795189,
0.0024599407333880663,
-0.03071613982319832,
0.07711011916399002,
0.011383792385458946,
-0.009830626659095287,
-0.004227808676660061,
0.0016742214793339372,
0.007866328582167625,
0.029363971203565598,
-0.00763335358351469,
-0.01903998665511608,
0.0030309574212878942,
-0.06702367961406708,
-0.0385185144841671,
0.02167123183608055,
-0.03822615370154381,
0.044511906802654266,
0.04703351855278015,
-0.010634617879986763,
-0.003302761586382985,
-0.05061493441462517,
-0.07323633879423141,
-0.023443669080734253,
-0.015851428732275963,
0.012735960073769093,
-0.0728708878159523,
-0.0703127309679985,
0.0112376119941473,
0.018637990579009056,
-0.0021892786026000977,
-0.038408879190683365,
-0.04279428720474243,
0.048714589327573776,
0.043927185237407684,
0.029254335910081863,
0.016947779804468155,
-0.0433424636721611,
0.0734921544790268,
-0.03053341433405876,
-0.00776126142591238,
0.010936114937067032,
0.017148777842521667,
0.022420406341552734,
0.004054219927638769,
-0.019204439595341682,
-0.045535169541835785,
-0.0062400721944868565,
-0.042392291128635406,
-0.03305502608418465,
0.021433688700199127,
-0.01166701689362526,
-0.009949398227036,
0.020976874977350235,
-0.027975257486104965,
0.03197694569826126,
-0.04586407542228699,
0.050505299121141434,
-0.0051391515880823135,
-0.006600955035537481,
-0.04728933423757553,
-0.05339236184954643,
-0.008108439855277538,
0.04352518916130066,
0.08953544497489929,
-0.01354908850044012,
-0.08544239401817322,
-0.08741582930088043,
-0.0014458147343248129,
0.01295523066073656,
-0.07835265249013901,
-0.015641294419765472,
0.029327426105737686,
-0.02366293966770172,
0.017660409212112427,
0.011584790423512459,
0.01568697579205036,
-0.00893070362508297,
0.062930628657341,
0.009666173718869686,
-0.04959167167544365,
0.00134188961237669,
0.00004550290759652853,
-0.016819871962070465,
-0.02253004163503647,
-0.04019958898425102,
-0.002523894654586911,
-0.012078149244189262,
-0.013795767910778522,
0.010552391409873962,
0.007797806523740292,
-0.042867377400398254,
-0.05704686790704727,
-0.057119958102703094,
0.003172569675371051,
0.011986786499619484,
-0.012123829685151577,
-0.03550354391336441,
0.02134232595562935,
0.052369099110364914,
0.021817412227392197,
-0.024412112310528755,
0.021397143602371216,
0.003930880222469568,
-0.05364817753434181,
-0.02150677889585495,
-0.023863937705755234,
0.022292498499155045,
0.026878906413912773,
-0.03230585157871246,
0.00029978386010043323,
0.013393771834671497,
-0.04308664798736572,
-0.017843134701251984,
0.026878906413912773,
-0.01680159941315651,
0.010579800233244896,
0.020081521943211555,
-0.03261648491024971,
-0.029199518263339996,
0.0035654292441904545,
0.004326023627072573,
0.011603062972426414,
-0.0021938467398285866,
-0.08478458225727081,
0.03300020843744278,
-0.019588163122534752,
-0.0388474203646183,
0.018510082736611366,
-0.026074914261698723,
0.04118630290031433,
-0.042319200932979584,
0.017486819997429848,
-0.00893070362508297,
-0.013631314970552921,
0.02137887105345726,
0.016902098432183266,
0.016591466963291168,
-0.01798017881810665,
-0.0076242173090577126,
-0.02227422595024109,
-0.010954387485980988,
0.016554921865463257,
0.06603696197271347,
-0.06822966039180756,
-0.036033447831869125,
-0.007468900643289089,
-0.01828167587518692,
0.0035905539989471436,
0.05748540908098221,
-0.008821068331599236,
-0.015750929713249207,
0.025088196620345116,
-0.053465452045202255,
0.049737852066755295,
0.07952209562063217,
0.029510151594877243,
-0.0532827265560627,
-0.028030075132846832,
-0.03676434978842735,
0.04886076971888542,
-0.0011614483082666993,
0.008697728626430035,
0.006194390822201967,
-0.02154332399368286,
0.040784310549497604,
-0.004465351812541485,
-0.0012276862980797887,
0.0015474556712433696,
0.029162973165512085,
0.02960151433944702,
-0.0590568482875824,
-0.0001848667161539197,
-0.055329252034425735,
-0.08646565675735474,
0.016399605199694633,
-0.016216879710555077,
0.0632229894399643,
0.003992550075054169,
0.02943706139922142,
-0.02485065348446369,
-0.015294115990400314,
0.040272679179906845,
-0.027262629941105843,
-0.03581417724490166,
-0.010588936507701874,
0.01857403665781021,
0.028066620230674744,
0.019588163122534752,
0.03256166726350784,
-0.04067467525601387,
-0.010397074744105339,
-0.043415553867816925,
-0.0020373882725834846,
-0.03382246941328049,
-0.03371283411979675,
0.04776442050933838,
-0.04929931089282036,
0.02998523786664009,
0.01615292578935623,
-0.0568275973200798,
0.06435588747262955,
-0.007596808485686779,
0.008496730588376522,
0.04491390287876129,
0.0034329534973949194,
-0.044219546020030975,
0.020885512232780457,
-0.010497573763132095,
-0.07181107997894287,
0.06505024433135986,
0.035649724304676056,
-0.032378941774368286,
0.04089394584298134,
0.0272809024900198,
-0.02574600838124752,
-0.02622109465301037,
-0.025471920147538185,
0.028157982975244522,
-0.029035065323114395,
0.03873778507113457,
0.050249483436346054,
0.046046800911426544,
0.006404525134712458,
-0.021068237721920013,
0.03349356725811958,
-0.0021298928186297417,
0.01967952586710453,
0.029674604535102844,
-0.03358492627739906,
-0.01598847284913063,
-0.014060718938708305,
-0.030423779040575027,
-0.0037298821844160557,
0.029327426105737686,
-0.021908774971961975,
-0.05196710303425789,
-0.06673131883144379,
-0.05967811495065689,
0.011511700227856636,
-0.019368892535567284,
0.11804060637950897,
0.07623303681612015,
-0.0007885742816142738,
-0.014946937561035156
]
|
42,106 | flask_restful | _has_fr_route | Encapsulating the rules for whether the request was to a Flask endpoint | def _has_fr_route(self):
"""Encapsulating the rules for whether the request was to a Flask endpoint"""
# 404's, 405's, which might not have a url_rule
if self._should_use_fr_error_handler():
return True
# for all other errors, just check if FR dispatched the route
if not request.url_rule:
return False
return self.owns_endpoint(request.url_rule.endpoint)
| (self) | [
0.03329242393374443,
-0.01201550755649805,
0.0021991506218910217,
0.051154956221580505,
-0.007602002006024122,
0.029209064319729805,
0.05445639789104462,
0.004022545181214809,
-0.041771914809942245,
-0.008027713745832443,
0.047923021018505096,
-0.022380294278264046,
0.07381326705217361,
-0.04406554624438286,
0.040520843118429184,
0.04371802881360054,
0.007602002006024122,
0.022345542907714844,
0.07589838653802872,
-0.04778401181101799,
-0.03638535365462303,
-0.01576872356235981,
0.04142439365386963,
-0.012884307652711868,
-0.04201517999172211,
0.052579790353775024,
0.026289895176887512,
-0.012771363370120525,
0.03794919326901436,
0.036246344447135925,
-0.03353568911552429,
-0.018401188775897026,
0.0397910512983799,
-0.011259650811553001,
0.041980426758527756,
0.015577588230371475,
-0.005317057482898235,
-0.001127268304117024,
-0.049000333994627,
-0.02587287127971649,
-0.051989007741212845,
0.035655561834573746,
-0.04020807519555092,
0.01918310858309269,
0.0036858851090073586,
0.016446389257907867,
-0.07172814756631851,
0.10349148511886597,
0.012536787427961826,
0.004691521171480417,
-0.001129440264776349,
-0.014335203915834427,
0.00809287466108799,
0.028114374727010727,
0.017593204975128174,
0.0053995936177670956,
-0.011789618991315365,
0.04507335647940636,
-0.03409172222018242,
-0.007458650041371584,
0.010060707107186317,
0.0224845502525568,
0.020451556891202927,
-0.05685428902506828,
0.037705931812524796,
0.019044101238250732,
0.019339492544531822,
-0.02827076055109501,
0.014578468166291714,
0.02952183224260807,
-0.0065637859515845776,
0.03383108228445053,
-0.022675685584545135,
0.017949413508176804,
0.026620039716362953,
-0.021754758432507515,
0.06811393797397614,
0.006264049559831619,
0.029209064319729805,
-0.014960739761590958,
0.02776685543358326,
-0.00986088253557682,
-0.021372485905885696,
-0.02625514380633831,
0.010390850715339184,
0.009756626561284065,
0.03642010688781738,
-0.025073574855923653,
-0.011216211132705212,
0.01046904269605875,
-0.0331360399723053,
-0.03652436286211014,
-0.007006873842328787,
-0.09487298876047134,
0.012432531453669071,
0.009617618285119534,
0.015725284814834595,
0.020208293572068214,
-0.0280969999730587,
-0.07534235715866089,
0.0094612343236804,
0.06286638230085373,
-0.002458704635500908,
0.05497767776250839,
0.04844430088996887,
0.014891236089169979,
-0.00008606552000856027,
-0.036072585731744766,
-0.04754075035452843,
0.007502090185880661,
0.014057187363505363,
-0.02005190961062908,
0.027871111407876015,
0.040520843118429184,
-0.03596832975745201,
-0.013961619697511196,
0.0008492522174492478,
0.010903443209826946,
-0.0438917875289917,
-0.00130320037715137,
0.010060707107186317,
0.01817530021071434,
-0.002293632598593831,
-0.09167580306529999,
0.03397008776664734,
0.006772297900170088,
-0.003703261027112603,
-0.007280545774847269,
0.08229275792837143,
0.01006939448416233,
0.01465666014701128,
0.05553371086716652,
-0.02847927249968052,
0.00395086919888854,
-0.05452590435743332,
0.04875706881284714,
-0.010486419312655926,
0.026272518560290337,
-0.0033405369613319635,
0.01748894900083542,
-0.00003970688703702763,
0.023474982008337975,
-0.013492467813193798,
-0.04966062307357788,
-0.018852965906262398,
0.06349191814661026,
-0.039096008986234665,
0.053240079432725906,
0.03233674541115761,
0.009226658381521702,
0.05143297463655472,
0.00663763377815485,
0.019200485199689865,
-0.007932146079838276,
0.001027356251142919,
0.023231718689203262,
-0.02417002245783806,
0.01918310858309269,
0.017654020339250565,
-0.048305291682481766,
-0.018105797469615936,
-0.029139559715986252,
-0.04656769335269928,
-0.03416122496128082,
0.019287364557385445,
-0.014265700243413448,
0.030338503420352936,
-0.022328166291117668,
0.030720775946974754,
0.07124161720275879,
-0.02357923798263073,
0.007132850121706724,
0.027280326932668686,
0.030129991471767426,
0.045837901532649994,
0.022137029096484184,
0.03895700350403786,
-0.023144837468862534,
-0.034856267273426056,
-0.005899153649806976,
0.056680526584386826,
-0.03999956324696541,
-0.04069460183382034,
-0.04959111660718918,
0.036037832498550415,
0.04608116298913956,
-0.07228417694568634,
-0.07443880289793015,
-0.020764324814081192,
0.06585505604743958,
-0.022884197533130646,
-0.026081383228302002,
0.03659386560320854,
-0.013796547427773476,
-0.03923501819372177,
-0.0130233159288764,
0.008066809736192226,
0.057479824870824814,
0.05355284735560417,
-0.0797906145453453,
0.016594083979725838,
0.00773666612803936,
0.0011413863394409418,
-0.0009725132840685546,
-0.09688860177993774,
0.07374376058578491,
-0.02324909344315529,
0.01678522117435932,
-0.023266470059752464,
0.009791378863155842,
-0.06568130105733871,
-0.05515144020318985,
0.0037162930238991976,
0.055429454892873764,
0.00020158880215603858,
0.061545807868242264,
-0.027627848088741302,
0.013292643241584301,
-0.030164744704961777,
0.023266470059752464,
0.053830862045288086,
-0.011303091421723366,
0.037080392241477966,
-0.007549874018877745,
0.006702793762087822,
0.006668041925877333,
0.02688067965209484,
0.023944133892655373,
-0.028375016525387764,
-0.025646982714533806,
-0.03975629806518555,
0.014821732416749,
0.03224986419081688,
0.04476058855652809,
0.052162766456604004,
0.01769746094942093,
0.047505997121334076,
0.0756898745894432,
0.03324029594659805,
0.03082503192126751,
0.019617509096860886,
-0.007432586047798395,
-0.046845708042383194,
-0.035655561834573746,
-0.029539208859205246,
0.02307533472776413,
0.009852194227278233,
0.021494118496775627,
-0.0480620302259922,
-0.055255696177482605,
-0.04611591622233391,
0.025264710187911987,
-0.01918310858309269,
-0.05251028761267662,
-0.05164148658514023,
-0.06655009835958481,
-0.03815770521759987,
0.039513036608695984,
0.04090311378240585,
0.0046654571779072285,
0.0062206098809838295,
0.06891323626041412,
0.08076366782188416,
0.071519635617733,
-0.04827054217457771,
0.009330914355814457,
0.011633235029876232,
-0.006368305534124374,
-0.01960013248026371,
-0.001238040393218398,
0.052162766456604004,
-0.018627077341079712,
-0.026324646547436714,
0.01045166701078415,
0.06227559968829155,
-0.038088202476501465,
0.0038639891427010298,
0.023353351280093193,
0.015942484140396118,
0.00109903234988451,
0.02993885613977909,
-0.03937402740120888,
-0.014639283530414104,
0.03497789800167084,
-0.056020237505435944,
0.01551677193492651,
-0.014456835575401783,
0.035412296652793884,
-0.010191027075052261,
-0.03947828337550163,
0.0038835371378809214,
-0.0327363945543766,
0.004144177306443453,
0.026203015819191933,
-0.004565545357763767,
0.06300539523363113,
0.023770375177264214,
-0.07429979741573334,
0.03299703449010849,
-0.031050920486450195,
-0.013553284108638763,
0.019130980595946312,
0.01088606659322977,
-0.01009545847773552,
0.011563731357455254,
-0.0428839810192585,
0.004422193393111229,
0.007471682038158178,
0.005712361540645361,
-0.005847025662660599,
-0.03211085498332977,
0.017323875799775124,
-0.02005190961062908,
-0.06290113925933838,
0.031137799844145775,
0.03447399288415909,
-0.03284065052866936,
-0.007350049912929535,
-0.031137799844145775,
0.038678985089063644,
-0.038713738322257996,
0.085767962038517,
-0.010781810618937016,
0.015403828583657742,
0.005143297370523214,
0.013544595800340176,
0.07874805480241776,
-0.047679755836725235,
-0.05042516440153122,
-0.007019905839115381,
0.010999010875821114,
-0.04715847596526146,
0.013353459537029266,
-0.029886728152632713,
-0.05560321360826492,
-0.031224681064486504,
-0.012284835800528526,
-0.023318598046898842,
0.006750578060746193,
0.006941713858395815,
-0.005577697418630123,
0.04020807519555092,
0.0114768510684371,
0.004052953328937292,
-0.016168372705578804,
0.014769604429602623,
-0.02622039057314396,
-0.005603761412203312,
0.06915649771690369,
-0.06189332902431488,
-0.05702804774045944,
-0.06370043009519577,
-0.03094666451215744,
0.004443913232535124,
-0.014917300082743168,
0.011746179312467575,
-0.026446279138326645,
-0.013292643241584301,
0.0398605540394783,
0.016385572031140327,
0.07113736122846603,
-0.029886728152632713,
-0.06922600418329239,
0.00541262561455369,
-0.03518640995025635,
-0.0041159410029649734,
0.05991246551275253,
0.0094438586384058,
-0.007111129816621542,
-0.0021926346234977245,
0.007541186176240444,
0.005994721781462431,
0.04656769335269928,
-0.05118970945477486,
-0.003653304884210229,
-0.0012738783843815327,
0.06856571137905121,
0.007154569961130619,
0.03445661813020706,
0.041771914809942245,
-0.011111955158412457,
0.06637633591890335,
-0.03264951333403587,
0.013970308005809784,
0.026515783742070198,
-0.04959111660718918,
-0.06536853313446045,
0.03124205581843853,
-0.03906125947833061,
-0.007688882295042276,
0.03899175301194191,
-0.03216298297047615,
-0.03937402740120888,
0.005560321733355522,
-0.043996043503284454,
-0.03002573549747467,
-0.018905093893408775,
0.02700231224298477,
0.02755834348499775,
0.04208468273282051,
0.04291873052716255,
-0.02072957344353199,
-0.015777412801980972,
0.05191950127482414,
0.04354426637291908,
0.04514285922050476,
0.019026724621653557,
0.019912902265787125,
0.016168372705578804,
-0.006611569784581661,
0.023318598046898842,
-0.05021665245294571,
-0.03183284029364586,
-0.027106568217277527,
-0.059321679174900055,
0.0188877172768116,
0.023683493956923485,
0.03516903519630432,
0.011972066946327686,
0.02595975063741207,
0.03989530727267265,
-0.010382162407040596,
0.06300539523363113,
0.018227428197860718,
-0.026898054406046867,
0.006494281813502312,
-0.03157220035791397,
0.017445508390665054,
-0.010625426657497883,
0.04448257386684418,
-0.03317079320549965,
-0.02304058149456978,
-0.00815369002521038,
-0.015586276538670063,
-0.018157925456762314,
-0.03355306386947632,
-0.016116244718432426,
0.012840867042541504,
-0.027662599459290504,
-0.0035794570576399565,
0.02132035791873932,
-0.000979029224254191,
-0.042605962604284286,
0.023683493956923485,
0.03958253934979439,
-0.019791269674897194,
0.036871880292892456,
-0.032058726996183395,
-0.01088606659322977,
-0.04764500632882118,
-0.06766216456890106,
-0.0214072372764349,
-0.037671178579330444,
0.025577478110790253,
-0.06974728405475616,
0.024482790380716324,
0.014821732416749,
0.014396020211279392,
-0.02144199050962925,
0.07016430795192719,
-0.020538438111543655,
0.05087694153189659,
-0.08201473951339722,
-0.04312724247574806,
0.0132752675563097,
0.0327363945543766,
0.02533421479165554,
0.0050086332485079765,
-0.028322888538241386,
-0.008800946176052094,
-0.02274519018828869,
-0.009739250876009464,
-0.0018494585528969765,
-0.05796635150909424,
-0.0009355892543680966,
0.04121588170528412,
0.011867810972034931,
0.0622408501803875,
-0.018957221880555153,
0.04712372645735741,
-0.04656769335269928,
-0.02194589376449585,
-0.04253645986318588,
0.0052909934893250465,
0.011085891164839268,
-0.0407988578081131,
-0.047297485172748566,
0.040972620248794556,
0.0045568570494651794,
-0.03525591269135475,
0.017706148326396942,
-0.08854811638593674,
-0.004843561444431543,
0.023839877918362617,
0.04142439365386963,
0.04938260465860367,
0.04622017219662666,
0.008171066641807556,
0.027923239395022392,
0.03329242393374443,
-0.0029300288297235966,
0.010408226400613785,
-0.013866052031517029,
0.07012955844402313,
-0.004135488998144865,
-0.05153723061084747,
-0.03836621716618538,
0.038331467658281326,
-0.014995492063462734,
0.013310019858181477,
-0.005959969479590654,
0.049938637763261795,
0.05118970945477486,
0.017419444397091866,
-0.002226300537586212,
0.03593357652425766,
0.013987683691084385,
-0.03509952872991562,
0.009791378863155842,
0.022675685584545135,
0.0408683642745018,
-0.023857254534959793,
0.05657627061009407,
-0.01612493209540844,
0.0038422690704464912,
0.06797493249177933,
-0.004483009222894907,
0.01061673928052187,
0.012641043402254581,
-0.040312331169843674,
0.024274278432130814,
0.06012097746133804,
0.04006906598806381,
0.002589024603366852,
0.01921786181628704,
0.056472014635801315,
-0.018540196120738983,
-0.07631541043519974,
-0.06957352161407471,
0.005312713328748941,
-0.012910371646285057,
0.004330968949943781,
-0.014621907845139503,
0.015403828583657742,
-0.0245349183678627,
-0.10342197865247726,
0.01737600564956665,
-0.11899088323116302,
0.08076366782188416,
-0.06981679052114487,
-0.01829693280160427,
0.06189332902431488,
0.03355306386947632,
-0.030008360743522644,
0.05087694153189659,
0.05066842958331108,
0.024986695498228073,
0.08215375244617462,
0.005091169383376837,
-0.017454197630286217,
-0.0407988578081131,
-0.03596832975745201,
-0.012675795704126358,
-0.0005978431436233222,
-0.06999054551124573,
-0.03857472911477089,
0.037671178579330444,
-0.029330696910619736,
-0.010442978702485561,
-0.01951325312256813,
-0.014969428069889545,
0.01241515576839447,
-0.006376993842422962,
-0.04344001039862633,
0.04250170662999153,
-0.032858025282621384,
0.011320467106997967,
-0.031971849501132965,
0.002530380617827177,
-0.05497767776250839,
-0.015221379697322845,
-0.05191950127482414,
-0.046880461275577545,
-0.03714989870786667,
-0.034908395260572433,
-0.0229884535074234,
-0.0004721386358141899,
0.05681953579187393,
-0.053622350096702576,
-0.059564944356679916,
-0.046880461275577545,
0.00887913815677166,
0.04632442817091942,
-0.08041615039110184,
0.013796547427773476,
0.029556583613157272,
-0.018905093893408775,
-0.012389091774821281,
0.020034532994031906,
0.08486440777778625,
-0.04083361104130745,
0.003466513007879257,
0.02126822993159294,
-0.09688860177993774,
0.03714989870786667,
0.001215234282426536,
-0.04656769335269928,
0.0013129743747413158,
-0.03325767442584038,
-0.06794017553329468,
0.03742791339755058,
0.011746179312467575,
0.024969318881630898,
0.009018146432936192,
0.008357858285307884,
-0.03052964061498642,
-0.017028484493494034,
0.009226658381521702,
0.019026724621653557,
0.014248323626816273,
0.00513026537373662,
-0.021511493250727654,
-0.011928627267479897,
0.008874794468283653,
0.002695452654734254,
0.03655911237001419,
0.029330696910619736,
-0.04017332196235657,
-0.07721896469593048,
-0.012284835800528526,
-0.0038813650608062744,
-0.029156936332583427,
-0.013796547427773476,
-0.021928517147898674,
-0.014795668423175812,
-0.04576839506626129,
-0.022137029096484184,
0.008001649752259254,
-0.011667987331748009,
-0.011841746978461742,
-0.049973390996456146,
-0.019548004493117332,
-0.036663368344306946,
-0.032858025282621384,
0.033726826310157776,
-0.006072913762181997,
0.018488068133592606,
-0.056889038532972336,
0.08222325146198273,
-0.010112835094332695,
-0.03178071230649948,
0.07436930388212204,
-0.003564252983778715,
-0.0021231304854154587,
0.009643682278692722,
0.004496041219681501,
-0.01630738005042076,
0.0064551858231425285,
-0.0008503382559865713,
-0.024951942265033722,
0.007554218173027039,
-0.0377754345536232,
0.0551166869699955,
-0.06168481707572937,
0.022432422265410423,
0.03516903519630432,
0.05636775866150856,
-0.03242362663149834,
-0.02215440571308136,
-0.005251897498965263,
-0.03211085498332977,
0.03191972151398659,
0.016672275960445404,
-0.0024217807222157717,
0.02324909344315529,
0.023474982008337975,
-0.047054219990968704,
-0.018644453957676888,
-0.0019005005015060306,
-0.03357044234871864,
-0.04027757793664932,
0.038088202476501465,
-0.049139343202114105,
0.04323149845004082,
0.026515783742070198,
0.049521613866090775,
0.02311008609831333,
-0.05765358358621597,
0.027019686996936798,
0.004107253160327673,
0.021754758432507515,
-0.03999956324696541,
0.024256901815533638,
0.05775783956050873,
0.006615913938730955,
-0.010807874612510204,
-0.04455207660794258,
0.034995272755622864,
0.010747059248387814,
0.039096008986234665,
0.013909491710364819,
0.004070329014211893,
0.02601187862455845,
0.017037171870470047,
0.0016029364196583629,
-0.009539426304399967,
-0.02622039057314396,
-0.03456087410449982,
-0.07263170182704926,
0.004422193393111229,
-0.07888706028461456,
-0.038887497037649155,
0.06286638230085373,
-0.010573298670351505,
-0.0500081405043602,
-0.03438711166381836,
0.0071458821184933186,
-0.0014487244188785553,
0.03287540003657341,
-0.04027757793664932,
0.023127462714910507,
0.0013705323217436671,
0.0173412524163723,
0.019965030252933502,
-0.0021502806339412928,
-0.05480391904711723,
-0.03202397748827934,
-0.023857254534959793,
-0.025942375883460045,
-0.0224497988820076,
-0.010277906432747841,
0.010625426657497883,
-0.011485539376735687,
0.0756203755736351,
0.001249986351467669,
-0.024847686290740967,
-0.02253667823970318,
0.019078852608799934,
-0.06307489424943924,
0.005729737691581249,
0.041528649628162384,
-0.049938637763261795,
-0.006059881765395403,
-0.04027757793664932,
0.02842714451253414,
0.0877835750579834,
0.0006716912030242383,
-0.006038161460310221,
-0.03006048873066902,
0.06422170996665955,
0.05553371086716652,
-0.03263213858008385,
-0.014978116378188133,
-0.0005706931697204709,
-0.02173738181591034,
0.006537721958011389,
-0.0368371307849884,
0.00042516912799328566,
-0.019495876505970955,
-0.0025130046997219324,
-0.04427405819296837,
0.03549917787313461,
-0.008696690201759338,
0.06658484786748886,
0.06206708773970604,
0.0240310151129961,
0.019947653636336327,
0.008375233970582485
]
|
42,107 | flask_restful | _init_app | Perform initialization actions with the given :class:`flask.Flask`
object.
:param app: The flask application object
:type app: flask.Flask
| def _init_app(self, app):
"""Perform initialization actions with the given :class:`flask.Flask`
object.
:param app: The flask application object
:type app: flask.Flask
"""
app.handle_exception = partial(self.error_router, app.handle_exception)
app.handle_user_exception = partial(self.error_router, app.handle_user_exception)
if len(self.resources) > 0:
for resource, urls, kwargs in self.resources:
self._register_view(app, resource, *urls, **kwargs)
| (self, app) | [
0.013185365125536919,
-0.04051047936081886,
-0.0008744685910642147,
-0.0036461285781115294,
0.025703584775328636,
0.028020057827234268,
0.05140716955065727,
-0.004910923074930906,
0.018253806978464127,
0.023906001821160316,
0.03719329088926315,
0.010387064889073372,
0.054409321397542953,
-0.01785537414252758,
-0.0009619154734537005,
0.04232659563422203,
0.018161149695515633,
0.06534307450056076,
0.03532158210873604,
-0.08368954062461853,
-0.013481873087584972,
-0.006361035164445639,
-0.017679322510957718,
0.038546111434698105,
-0.02040349505841732,
0.009210296906530857,
-0.02688962034881115,
0.024851122871041298,
0.11096832901239395,
-0.04354969412088394,
0.011128337122499943,
0.002324580680578947,
0.0689752995967865,
0.015807611867785454,
0.02592596597969532,
-0.046144142746925354,
0.052333761006593704,
-0.01254601776599884,
-0.07049490511417389,
0.044883981347084045,
0.03698944300413132,
-0.06367520987987518,
0.008705305866897106,
-0.05092534422874451,
0.0468854159116745,
0.01028514001518488,
0.006639011669903994,
0.04243778809905052,
0.003931054845452309,
-0.006875291932374239,
-0.07501666247844696,
-0.03680412471294403,
0.0033403541892766953,
0.036322299391031265,
-0.0012763766571879387,
0.0895455852150917,
-0.020514685660600662,
0.051888998597860336,
-0.001110169687308371,
-0.03521038964390755,
-0.011220995336771011,
0.0075980317778885365,
-0.009038877673447132,
0.013676457107067108,
0.01060944702476263,
0.03567368537187576,
-0.03711916506290436,
0.005795815493911505,
0.007269092369824648,
0.02042202651500702,
0.010868892073631287,
0.028761329129338264,
-0.0014929668977856636,
0.02108917012810707,
0.08331890404224396,
0.00797330029308796,
0.025425609201192856,
-0.06278568506240845,
-0.004938720725476742,
-0.0002769633138086647,
0.05848631262779236,
-0.008848926983773708,
-0.03545130416750908,
0.03806428611278534,
0.04796025902032852,
-0.01819821260869503,
-0.04051047936081886,
-0.030836889520287514,
0.0026662605814635754,
0.00013334197865333408,
-0.03774924576282501,
-0.016863923519849777,
0.02177484706044197,
-0.01646549068391323,
-0.03128165379166603,
-0.012508954852819443,
-0.009821846149861813,
0.01573348604142666,
-0.009868175722658634,
-0.03230090066790581,
0.02162659354507923,
-0.024647273123264313,
-0.009117637760937214,
-0.01563156023621559,
0.029687918722629547,
-0.06300806999206543,
-0.02675989642739296,
-0.012851792387664318,
-0.012119786813855171,
0.016863923519849777,
0.0016145816771313548,
-0.011137602850794792,
0.007232028990983963,
0.048590339720249176,
-0.06289687752723694,
-0.002622247440740466,
0.04866446554660797,
0.010081291198730469,
0.02935434691607952,
-0.026166880503296852,
-0.003099441062659025,
-0.012499689124524593,
0.016409894451498985,
-0.028891053050756454,
0.053853366523981094,
0.009636527858674526,
0.0151589997112751,
-0.017503270879387856,
-0.01288885623216629,
-0.036600273102521896,
0.06252624094486237,
0.041585326194763184,
-0.042548976838588715,
-0.08658050000667572,
-0.02288675308227539,
-0.024091320112347603,
0.00445921067148447,
-0.009979366324841976,
-0.023516833782196045,
0.009617996402084827,
-0.04618120566010475,
0.05559535324573517,
-0.045291680842638016,
0.04203008860349655,
0.042734295129776,
0.010248077102005482,
-0.0076165637001395226,
0.048256766051054,
0.07286697626113892,
0.04191889613866806,
0.044476281851530075,
0.05822686851024628,
0.06326751410961151,
0.027890335768461227,
-0.04384620115160942,
0.017614461481571198,
0.018040692433714867,
-0.01986607350409031,
0.04188183322548866,
-0.03545130416750908,
0.025814775377511978,
-0.005151836201548576,
-0.021404210478067398,
-0.017762714996933937,
-0.03235649690032005,
-0.0014049409655854106,
-0.026518983766436577,
0.016521086916327477,
0.017679322510957718,
0.0248325914144516,
-0.042548976838588715,
-0.04733017832040787,
-0.04291961342096329,
-0.05077708885073662,
0.055372972041368484,
0.01785537414252758,
-0.028761329129338264,
-0.05389042943716049,
-0.021737784147262573,
0.028149781748652458,
0.03185613825917244,
-0.0075424364767968655,
-0.03663733974099159,
0.013481873087584972,
-0.018976546823978424,
0.04180770739912987,
-0.028223907575011253,
0.05459463596343994,
0.004579667467623949,
0.034135546535253525,
-0.005856044124811888,
0.021441275253891945,
-0.010062758810818195,
0.011536035686731339,
0.005661460105329752,
0.024461954832077026,
-0.015353583730757236,
0.0007794931880198419,
0.04154825955629349,
-0.0141304861754179,
-0.057411469519138336,
0.044179774820804596,
0.0004169651656411588,
-0.01973635144531727,
-0.0007760184817016125,
0.029817640781402588,
0.023405643180012703,
0.04162238910794258,
-0.043216120451688766,
-0.015474040061235428,
0.019254524260759354,
-0.02190456911921501,
0.012240244075655937,
0.020662939175963402,
0.013055642135441303,
-0.0005617447313852608,
0.03778630867600441,
-0.022534649819135666,
0.0052398620173335075,
0.029150497168302536,
-0.025703584775328636,
0.04284548759460449,
-0.04729311540722847,
0.0011287014931440353,
-0.01772565208375454,
0.011814013123512268,
-0.019217461347579956,
-0.031096335500478745,
-0.02068147249519825,
0.06300806999206543,
-0.028149781748652458,
0.06530600786209106,
0.0400286540389061,
-0.01986607350409031,
0.002566652139648795,
0.010461192578077316,
0.05418693646788597,
-0.001311123720370233,
-0.04636652395129204,
-0.032041456550359726,
0.039102066308259964,
-0.006601948291063309,
-0.03571074828505516,
-0.06738156825304031,
0.018958015367388725,
0.0441427119076252,
-0.05833805724978447,
0.000590990181080997,
-0.012657209299504757,
-0.013352151028811932,
-0.04177064076066017,
0.01656741462647915,
0.01627090759575367,
-0.04210421442985535,
-0.07071729004383087,
-0.03622964024543762,
0.020755598321557045,
0.058560438454151154,
-0.0175959300249815,
0.04925748333334923,
0.027241723611950874,
0.0193101204931736,
0.041029371321201324,
0.073126420378685,
-0.06441648304462433,
-0.018920952454209328,
0.012193914502859116,
0.012258775532245636,
-0.0414000079035759,
-0.013546734116971493,
0.09606876969337463,
0.04206715151667595,
0.011137602850794792,
0.0009254309698008001,
0.03723035380244255,
-0.029335815459489822,
-0.02839069440960884,
0.00013956750626675785,
-0.04317905753850937,
0.02057028003036976,
0.08776653558015823,
-0.046107079833745956,
0.027538232505321503,
0.06912355870008469,
-0.04536581039428711,
-0.028853988274931908,
0.005017480812966824,
0.03698944300413132,
-0.03988039866089821,
-0.06434235721826553,
0.05711495876312256,
-0.01510340441018343,
0.004222930409014225,
0.08079858124256134,
-0.029836174100637436,
-0.007894540205597878,
-0.03502507135272026,
0.03130018338561058,
-0.015761282294988632,
-0.030002959072589874,
0.01916186511516571,
-0.009418779984116554,
0.04247485101222992,
0.030262405052781105,
0.030799826607108116,
-0.025573862716555595,
-0.0141304861754179,
0.038546111434698105,
0.013583797961473465,
0.0021427376195788383,
0.002114939969033003,
0.015955867245793343,
0.0029419208876788616,
-0.02290528640151024,
-0.024573147296905518,
0.02744557335972786,
-0.005040645599365234,
-0.025555331259965897,
-0.02277556248009205,
0.009673591703176498,
0.0039727515541017056,
0.06916061788797379,
0.0007453252328559756,
-0.001810323679819703,
0.020459089428186417,
-0.015900271013379097,
0.06723331660032272,
-0.04206715151667595,
-0.024573147296905518,
-0.002397549571469426,
-0.04603295400738716,
0.03226383775472641,
-0.028205376118421555,
-0.025147631764411926,
-0.02881692536175251,
-0.03230090066790581,
-0.00984964333474636,
-0.04095524549484253,
-0.0593387745320797,
-0.03821254149079323,
0.02991029992699623,
-0.025425609201192856,
-0.03278272598981857,
0.04080699011683464,
-0.03843492269515991,
-0.0037503698840737343,
-0.036878250539302826,
-0.06222973391413689,
-0.06363815069198608,
-0.058115676045417786,
0.004957252182066441,
-0.04514342546463013,
-0.017438409850001335,
0.003409848315641284,
-0.016178248450160027,
-0.016604479402303696,
-0.0482197031378746,
-0.012379231862723827,
0.05029526352882385,
-0.00857558287680149,
0.009701388888061047,
0.03265300393104553,
-0.09577226638793945,
-0.03559955954551697,
0.0029233889654278755,
-0.01324096042662859,
0.002719539450481534,
0.022367864847183228,
-0.037990160286426544,
-0.042400721460580826,
0.007333953864872456,
-0.038694366812705994,
0.025425609201192856,
0.030929548665881157,
0.041437070816755295,
-0.020792663097381592,
0.02025523968040943,
-0.01365792565047741,
-0.08050207048654556,
0.061822034418582916,
-0.02301647700369358,
0.041288815438747406,
0.062081478536129,
-0.05363098531961441,
-0.00848755706101656,
-0.12505248188972473,
-0.01999579556286335,
0.03969508409500122,
-0.021552465856075287,
0.017410611733794212,
0.0169102530926466,
-0.01584467664361,
-0.023535367101430893,
0.0008976333192549646,
0.040621671825647354,
-0.009062042459845543,
-0.02014404907822609,
0.023479770869016647,
0.02965085580945015,
0.01903214305639267,
0.04210421442985535,
-0.0023025742266327143,
0.0661955326795578,
0.009821846149861813,
0.08761827647686005,
0.07798174768686295,
0.013648658990859985,
-0.00286316080018878,
0.03250474855303764,
-0.006476858630776405,
-0.01199933048337698,
0.00387777597643435,
-0.013694988563656807,
-0.04896097630262375,
-0.00334498705342412,
-0.03472856432199478,
0.057819169014692307,
0.08398605138063431,
0.005360318813472986,
0.016039259731769562,
0.05841218680143356,
0.04973930865526199,
0.08065032958984375,
0.021756315603852272,
0.005318622104823589,
-0.012138319201767445,
-0.0010441502090543509,
0.0038360795006155968,
-0.015826143324375153,
-0.00010178003867622465,
-0.035358645021915436,
0.046811286360025406,
-0.009358551353216171,
-0.04506929963827133,
-0.028298035264015198,
-0.027908867225050926,
-0.006949419155716896,
-0.01469570491462946,
-0.036878250539302826,
0.016928784549236298,
0.008306872099637985,
-0.014426994137465954,
0.045439936220645905,
-0.002710273489356041,
-0.0072042313404381275,
-0.011350718326866627,
-0.008116921409964561,
0.016724934801459312,
0.03215264528989792,
-0.05281558632850647,
-0.01877269707620144,
-0.031244589015841484,
-0.047923196107149124,
-0.003490924835205078,
-0.012129053473472595,
0.02425810694694519,
-0.00011951553460676223,
0.017197495326399803,
-0.06463886797428131,
0.05759678781032562,
-0.03832373023033142,
0.013231693767011166,
-0.021608060225844383,
-0.062118541449308395,
-0.012629411183297634,
0.04195595905184746,
0.04977637529373169,
-0.00686602620407939,
-0.026259539648890495,
-0.042956676334142685,
-0.014640109613537788,
0.02346123941242695,
0.06853053718805313,
-0.02468433789908886,
-0.024591678753495216,
-0.007565601263195276,
0.052593205124139786,
-0.03767511993646622,
0.003435329534113407,
-0.012972249649465084,
0.033431340008974075,
0.02631513401865959,
0.046811286360025406,
0.0029813009314239025,
-0.08220699429512024,
-0.019791945815086365,
-0.006458326708525419,
-0.03726742044091225,
0.015131202526390553,
-0.0268710870295763,
-0.01159163098782301,
0.0009931878885254264,
-0.02259024605154991,
0.05800448730587959,
-0.0033125565387308598,
0.007778716739267111,
0.016585947945713997,
0.003048478625714779,
0.03215264528989792,
0.010331469587981701,
0.004519438836723566,
-0.03278272598981857,
0.01275913417339325,
-0.000054690481192665175,
-0.01783684268593788,
-0.014806895516812801,
-0.06260036677122116,
-0.02770501747727394,
0.03215264528989792,
-0.016493288800120354,
-0.01248115673661232,
-0.01625237427651882,
-0.025073504075407982,
0.009001814760267735,
0.03847198560833931,
-0.024906719103455544,
-0.057411469519138336,
-0.01693805120885372,
0.014862490817904472,
0.07397888600826263,
0.00927052553743124,
-0.04232659563422203,
0.06530600786209106,
0.0013076490722596645,
0.003201365703716874,
-0.025203227996826172,
0.07709222286939621,
0.034950945526361465,
0.0020720851607620716,
0.03947270289063454,
-0.0785747691988945,
0.0075980317778885365,
0.015325785614550114,
-0.01019248180091381,
-0.03711916506290436,
0.011814013123512268,
-0.03235649690032005,
-0.06904943287372589,
0.011915937066078186,
0.008816496469080448,
-0.0009294848423451185,
0.057003770023584366,
0.03806428611278534,
-0.03624816983938217,
-0.02344270795583725,
-0.1144523024559021,
-0.05774503946304321,
-0.026982277631759644,
0.009497540071606636,
-0.06867879629135132,
-0.0035974825732409954,
0.0025643357075750828,
0.03611844778060913,
0.05174074321985245,
-0.011128337122499943,
-0.008533886633813381,
0.005012847948819399,
0.07145856320858002,
0.035191860049963,
-0.0008987915352918208,
-0.02220107801258564,
0.03943563625216484,
-0.06712212413549423,
-0.0213856790214777,
-0.011220995336771011,
0.01116540003567934,
-0.029706450179219246,
-0.02303500846028328,
-0.0647871196269989,
-0.019810477271676064,
-0.006245211232453585,
-0.04358675703406334,
-0.0017199813155457377,
-0.016345033422112465,
-0.030966611579060555,
0.006458326708525419,
-0.018161149695515633,
0.021478338167071342,
0.030725698918104172,
-0.057819169014692307,
0.004767301492393017,
-0.009460476227104664,
-0.016159716993570328,
-0.005073076114058495,
0.0064953905530273914,
-0.0020118567626923323,
0.07527610659599304,
0.05818980187177658,
-0.023831874132156372,
-0.03695238009095192,
-0.0661584734916687,
-0.030836889520287514,
0.010405597276985645,
-0.036748528480529785,
0.03928738459944725,
0.03676706179976463,
-0.04699660465121269,
-0.011359984055161476,
-0.0038314464036375284,
0.030262405052781105,
-0.008246644400060177,
0.0593387745320797,
-0.020996512845158577,
-0.09569813311100006,
0.0323750264942646,
-0.0036901417188346386,
-0.0247955285012722,
0.032208241522312164,
-0.05696670711040497,
0.05144423246383667,
0.0009769725147634745,
0.0036808757577091455,
0.0828000158071518,
0.02688962034881115,
-0.00710693933069706,
-0.018300136551260948,
-0.0661584734916687,
0.009812579490244389,
0.06541720032691956,
0.0008142403094097972,
-0.034654438495635986,
-0.010665042325854301,
0.009905238635838032,
0.013166832737624645,
0.0010760017903521657,
0.029484068974852562,
0.025703584775328636,
-0.038546111434698105,
-0.0730152279138565,
-0.01061871275305748,
0.05211137980222702,
-0.03639642521739006,
0.004368868190795183,
-0.018642975017428398,
0.03902793675661087,
-0.008121554739773273,
-0.006351768970489502,
-0.013129769824445248,
0.008144719526171684,
0.034710031002759933,
0.013593063689768314,
-0.07664746046066284,
-0.02607422135770321,
-0.029465537518262863,
0.09043511003255844,
0.057856231927871704,
-0.01460304670035839,
-0.015538901090621948,
0.022256674244999886,
-0.0037434205878525972,
0.000997241702862084,
0.008492190390825272,
-0.02894664742052555,
0.03913912922143936,
-0.06126607954502106,
0.005675359163433313,
-0.0077833496034145355,
-0.032486218959093094,
-0.0034075318835675716,
0.04084405303001404,
-0.050962407141923904,
-0.010924487374722958,
0.01324096042662859,
-0.061562590301036835,
0.08065032958984375,
0.011739885434508324,
0.026556046679615974,
-0.03876849263906479,
-0.009812579490244389,
0.044587474316358566,
-0.0037990158889442682,
0.007977933622896671,
0.04299373924732208,
0.041325878351926804,
0.03873142972588539,
0.033283084630966187,
-0.025036441162228584,
-0.01958809606730938,
0.014742034487426281,
-0.006458326708525419,
-0.048886846750974655,
0.022293737158179283,
-0.04395739361643791,
-0.010007163509726524,
-0.04317905753850937,
-0.010183216072618961,
-0.025314418599009514,
0.025184694677591324,
0.06215560436248779,
0.007560967933386564,
-0.00713936984539032,
-0.0034700767137110233,
0.02246052213013172,
0.07464602589607239,
-0.08784066140651703,
0.026296602562069893,
-0.04451334848999977,
-0.08776653558015823,
0.0007331637316383421,
0.02646338753402233,
0.060191236436367035,
0.012027128599584103,
0.008163250982761383,
-0.008909155614674091,
-0.04399445652961731,
-0.016687871888279915,
-0.02055174857378006,
-0.04080699011683464,
-0.0702725276350975,
-0.02496231347322464,
-0.000219196270336397,
-0.008343935944139957,
0.0702725276350975,
-0.018142616376280785,
-0.03059597685933113,
-0.03572928160429001,
0.014723503030836582,
-0.001424630987457931,
-0.028483353555202484,
-0.05155542492866516,
-0.03958389163017273,
-0.008839661255478859,
0.019495436921715736,
-0.015057074837386608,
0.04907216504216194,
-0.015353583730757236,
-0.026389261707663536,
-0.017475472763180733,
0.036600273102521896,
0.013537468388676643,
-0.013704254291951656,
-0.0482938289642334,
-0.030948080122470856,
0.07368237525224686,
-0.0013203896814957261,
-0.03437646105885506,
0.022553181275725365,
0.03257887810468674,
-0.016604479402303696,
-0.025963030755519867,
-0.004813631065189838,
-0.032319433987140656,
-0.06082131713628769,
0.010016429238021374,
0.03545130416750908,
0.03226383775472641,
0.01014615222811699,
-0.006036728620529175,
-0.0037133062724024057,
0.06193322315812111,
0.0012485790066421032,
0.034524716436862946,
0.00010742643644334748,
0.018911685794591904,
0.005179633852094412,
0.020459089428186417,
0.006282275076955557,
-0.022126950323581696,
-0.0011941419215872884,
0.0051286714151501656,
-0.0345061831176281,
-0.039917465299367905,
-0.006055260542780161,
-0.020718535408377647,
0.1447702944278717,
0.06849347800016403,
0.041993025690317154,
0.013454075902700424
]
|
42,108 | flask_restful | _register_view | null | def _register_view(self, app, resource, *urls, **kwargs):
endpoint = kwargs.pop('endpoint', None) or resource.__name__.lower()
self.endpoints.add(endpoint)
resource_class_args = kwargs.pop('resource_class_args', ())
resource_class_kwargs = kwargs.pop('resource_class_kwargs', {})
# NOTE: 'view_functions' is cleaned up from Blueprint class in Flask 1.0
if endpoint in getattr(app, 'view_functions', {}):
previous_view_class = app.view_functions[endpoint].__dict__['view_class']
# if you override the endpoint with a different class, avoid the collision by raising an exception
if previous_view_class != resource:
raise ValueError('This endpoint (%s) is already set to the class %s.' % (endpoint, previous_view_class.__name__))
resource.mediatypes = self.mediatypes_method() # Hacky
resource.endpoint = endpoint
resource_func = self.output(resource.as_view(endpoint, *resource_class_args,
**resource_class_kwargs))
for decorator in self.decorators:
resource_func = decorator(resource_func)
for url in urls:
# If this Api has a blueprint
if self.blueprint:
# And this Api has been setup
if self.blueprint_setup:
# Set the rule to a string directly, as the blueprint is already
# set up.
self.blueprint_setup.add_url_rule(url, view_func=resource_func, **kwargs)
continue
else:
# Set the rule to a function that expects the blueprint prefix
# to construct the final url. Allows deferment of url finalization
# in the case that the associated Blueprint has not yet been
# registered to an application, so we can wait for the registration
# prefix
rule = partial(self._complete_url, url)
else:
# If we've got no Blueprint, just build a url with no prefix
rule = self._complete_url(url, '')
# Add the url to the application or blueprint
app.add_url_rule(rule, view_func=resource_func, **kwargs)
| (self, app, resource, *urls, **kwargs) | [
-0.008198068477213383,
-0.0765153020620346,
-0.03269638866186142,
-0.0022640572860836983,
0.04333949461579323,
0.061710841953754425,
0.024450380355119705,
0.014085336588323116,
-0.04798027500510216,
-0.026962535455822945,
0.03833435848355293,
0.014660639688372612,
0.060406818985939026,
-0.05338812246918678,
0.0035788642708212137,
0.043071020394563675,
0.05062666907906532,
0.01318402774631977,
0.03492089360952377,
-0.05618793144822121,
0.020806793123483658,
0.02471885457634926,
0.019167179241776466,
-0.014612697064876556,
-0.01537976786494255,
0.05595780909061432,
0.01211971789598465,
0.021823162212967873,
0.028132319450378418,
-0.016127662733197212,
-0.031047187745571136,
-0.02636805549263954,
0.08644887059926987,
0.030529415234923363,
0.07110745459794998,
0.019637010991573334,
0.02464214712381363,
0.03472912684082985,
-0.05116361752152443,
0.03818094730377197,
-0.010480104014277458,
-0.0320635549724102,
-0.0353236086666584,
-0.05538250505924225,
0.10355454683303833,
0.048210397362709045,
-0.016338607296347618,
0.0961906686425209,
-0.02634887956082821,
-0.023299774155020714,
-0.01601260155439377,
-0.08621875196695328,
-0.010710225440561771,
0.06915142387151718,
0.014631873928010464,
0.04721320420503616,
-0.013816861435770988,
0.09457982331514359,
0.018237106502056122,
0.004683925770223141,
0.0025193479377776384,
-0.018611053004860878,
0.012301896698772907,
-0.0021190328989177942,
0.002732689492404461,
0.06355181336402893,
-0.0386987179517746,
0.002322786021977663,
-0.00899390410631895,
0.0523909293115139,
0.039580848067998886,
0.014123690314590931,
0.01732620969414711,
-0.01969454064965248,
0.06581466645002365,
-0.008663104847073555,
0.05342647805809975,
-0.07985206693410873,
0.01683720201253891,
-0.024258611723780632,
0.05016642436385155,
-0.047711800783872604,
-0.009003493003547192,
-0.029877405613660812,
0.03215944021940231,
0.005613998975604773,
-0.045103758573532104,
-0.07432915270328522,
-0.061135537922382355,
0.02236011251807213,
-0.04230394959449768,
-0.015360591001808643,
0.020308198407292366,
0.003226491156965494,
-0.004096637014299631,
-0.03768235072493553,
-0.05768371745944023,
0.008854872547090054,
0.04905417189002037,
-0.022398466244339943,
-0.0005953787476755679,
-0.03083624318242073,
-0.05078008398413658,
0.019752072170376778,
0.03342510759830475,
-0.07306348532438278,
-0.03171837329864502,
0.05906444787979126,
-0.07486610114574432,
0.0025097595062106848,
0.04099993035197258,
0.012321073561906815,
0.028419971466064453,
0.019828777760267258,
-0.034038763493299484,
0.01314567495137453,
0.021190328523516655,
-0.005484555847942829,
0.008912403136491776,
-0.03816176950931549,
-0.009516471065580845,
-0.0465228408575058,
0.014468871988356113,
-0.03386617451906204,
0.030145879834890366,
0.028189849108457565,
-0.013615505769848824,
0.04034791886806488,
-0.010393808595836163,
-0.03394287824630737,
-0.029244571924209595,
0.07352373003959656,
-0.056494761258363724,
-0.0033175810240209103,
0.021439626812934875,
-0.021919045597314835,
-0.05223751813173294,
-0.0002416572388028726,
-0.0510869100689888,
0.045602355152368546,
-0.017460446804761887,
0.04556400328874588,
-0.011477296240627766,
0.03756728768348694,
0.00808780174702406,
-0.017748098820447922,
-0.0050770496018230915,
0.042840901762247086,
0.029493870213627815,
0.018006986007094383,
-0.00007532125164289027,
0.0602150522172451,
0.05181562900543213,
0.01199506875127554,
-0.015111293643712997,
0.010508868843317032,
-0.007287172134965658,
0.04610095173120499,
0.02448873221874237,
-0.05864255875349045,
0.014746935106813908,
0.006965961307287216,
-0.02295459248125553,
-0.03490171954035759,
0.012282719835639,
0.011544414795935154,
0.005000342149287462,
0.012982672080397606,
0.02105609141290188,
0.058527495712041855,
-0.02953222393989563,
-0.032753922045230865,
0.016865966841578484,
0.0015784876886755228,
0.05074172839522362,
0.018889116123318672,
0.027039242908358574,
-0.05450037494301796,
0.027192657813429832,
0.029992464929819107,
0.06988014280796051,
-0.020135607570409775,
-0.020845146849751472,
-0.024565439671278,
-0.006198890507221222,
0.027115950360894203,
-0.010249982587993145,
0.015561947599053383,
-0.03798917680978775,
0.018591877073049545,
-0.03603314608335495,
0.01765221543610096,
0.04993630573153496,
-0.03490171954035759,
-0.01651119813323021,
-0.02431614138185978,
-0.03424970805644989,
0.04134511202573776,
0.05078008398413658,
0.000023877324565546587,
-0.03676186501979828,
0.013318265788257122,
0.02448873221874237,
0.013951098546385765,
0.040808163583278656,
0.015590712428092957,
0.05035819485783577,
0.006031093653291464,
-0.034786656498909,
-0.05016642436385155,
0.0161947812885046,
0.012004656717181206,
-0.029915759339928627,
-0.003909663762897253,
-0.014018218033015728,
-0.02360660210251808,
0.03482501208782196,
-0.02579275332391262,
-0.013241558335721493,
-0.020461611449718475,
0.0025529072154313326,
0.056648172438144684,
-0.012819669209420681,
-0.003686733776703477,
-0.025639338418841362,
-0.0301650557667017,
0.01338538434356451,
-0.04947606101632118,
-0.016693376004695892,
0.022820353507995605,
-0.034633245319128036,
0.03703033924102783,
0.04073145613074303,
0.040309567004442215,
-0.004508937709033489,
0.027806313708424568,
0.0359756164252758,
0.04817204177379608,
0.032006025314331055,
0.018658995628356934,
0.047865211963653564,
0.03447983041405678,
-0.019982192665338516,
-0.06316827237606049,
-0.012186836451292038,
0.04172864928841591,
-0.04468186944723129,
-0.003459009574726224,
-0.02416272833943367,
-0.06451065093278885,
-0.02498732879757881,
0.009698650799691677,
0.0021382097620517015,
-0.030970480293035507,
-0.055190738290548325,
-0.06190260872244835,
-0.04192041605710983,
-0.017949454486370087,
0.0018457639962434769,
-0.00453530577942729,
-0.027557015419006348,
0.05595780909061432,
0.05856585130095482,
0.073255255818367,
-0.025600986555218697,
-0.044221628457307816,
0.028995273634791374,
-0.04245736449956894,
-0.06512430310249329,
0.01666461117565632,
0.09250873327255249,
0.021938223391771317,
-0.027806313708424568,
0.0030802683904767036,
0.040462981909513474,
0.00563317583873868,
0.010077391751110554,
-0.03269638866186142,
-0.008025477640330791,
-0.02945551648736,
0.023376479744911194,
-0.05580439418554306,
0.047941919416189194,
0.023568248376250267,
0.05354153737425804,
-0.03545784577727318,
-0.017345387488603592,
0.08683240413665771,
-0.008787753991782665,
-0.05653311312198639,
0.0582590214908123,
-0.026176288723945618,
-0.027614546939730644,
0.068691186606884,
-0.002182555850595236,
0.07053215056657791,
-0.0504349023103714,
0.034134648740291595,
-0.02360660210251808,
-0.07252653688192368,
-0.027767959982156754,
0.018285049125552177,
0.05522909387946129,
0.035438667982816696,
0.001153602497652173,
-0.07283336669206619,
0.03261968120932579,
-0.02880350686609745,
-0.021458804607391357,
-0.0059639750979840755,
-0.0011997466208413243,
0.015897540375590324,
-0.014651050791144371,
-0.026137934997677803,
-0.04203547537326813,
0.039178136736154556,
-0.039427436888217926,
0.032677214592695236,
-0.0019931853748857975,
0.03284980356693268,
-0.02546674758195877,
0.05799054726958275,
-0.027384424582123756,
-0.03749058023095131,
0.05139373987913132,
0.028017258271574974,
0.02017395943403244,
-0.005182521417737007,
-0.05871926620602608,
-0.015485240146517754,
-0.030625298619270325,
0.008183686062693596,
-0.019013766199350357,
0.0067598107270896435,
-0.061634134501218796,
-0.03764399513602257,
-0.022494349628686905,
-0.056418053805828094,
-0.026176288723945618,
0.0426107794046402,
0.028439147397875786,
0.02498732879757881,
-0.02985822781920433,
0.016127662733197212,
-0.042342305183410645,
0.0042093005031347275,
-0.016127662733197212,
-0.03319498524069786,
-0.004063077736645937,
-0.04667625576257706,
-0.02049996517598629,
-0.049514416605234146,
-0.004890075884759426,
-0.009607560932636261,
0.021516334265470505,
-0.03269638866186142,
-0.0311430711299181,
-0.0045880419202148914,
0.019569892436265945,
-0.005911238957196474,
-0.017757687717676163,
0.01691390946507454,
-0.07452092319726944,
-0.014248338527977467,
0.03394287824630737,
0.027633722871541977,
0.03683857247233391,
-0.004501746501773596,
-0.02439284883439541,
-0.05672487989068031,
0.0015617080498486757,
0.00008187581261154264,
0.061058830469846725,
-0.004760632757097483,
0.02878432907164097,
-0.03204438090324402,
0.05189233645796776,
-0.00809259619563818,
-0.06052188202738762,
0.007934387773275375,
-0.020480789244174957,
0.059678103774785995,
0.0413067601621151,
-0.013299088925123215,
0.0405396893620491,
-0.07831792533397675,
-0.040961578488349915,
0.013193616643548012,
-0.04487363621592522,
0.021899869665503502,
0.0367426872253418,
0.0045760562643408775,
-0.05166221410036087,
-0.008274775929749012,
-0.004427436273545027,
-0.07352373003959656,
0.001585679012350738,
-0.0015401341952383518,
0.04824874922633171,
0.00453290855512023,
0.04345455765724182,
-0.0028837064746767282,
0.06462571024894714,
0.025332510471343994,
0.05258269980549812,
0.034115470945835114,
0.07413738965988159,
0.030145879834890366,
0.02725018747150898,
0.0346715971827507,
-0.026080405339598656,
-0.03123895637691021,
-0.023932605981826782,
-0.020845146849751472,
0.014305869117379189,
-0.03465241938829422,
0.002295219572260976,
0.06569960713386536,
-0.04775015264749527,
0.034940071403980255,
0.042917609214782715,
0.05150879919528961,
0.06224779039621353,
0.020308198407292366,
-0.029647283256053925,
0.004717485047876835,
-0.006002328358590603,
0.011275939643383026,
0.009180878289043903,
0.02107526920735836,
0.012723785825073719,
-0.011937538161873817,
-0.02301212213933468,
-0.04475857689976692,
-0.005671529099345207,
-0.057223476469516754,
0.04360797256231308,
-0.044451747089624405,
0.010604753158986568,
0.02441202662885189,
0.020058900117874146,
-0.05484555661678314,
-0.007546058390289545,
0.029302101582288742,
-0.0405396893620491,
0.0007916409522294998,
-0.024680500850081444,
-0.022551879286766052,
0.03212108835577965,
-0.027921374887228012,
0.0060694473795592785,
-0.026943359524011612,
-0.025562632828950882,
0.02025066688656807,
-0.03919731453061104,
-0.04395315423607826,
0.07383055984973907,
-0.027787137776613235,
-0.029628107324242592,
0.030855420976877213,
-0.009991096332669258,
-0.001419080886989832,
-0.01806451566517353,
-0.027537839487195015,
-0.061710841953754425,
-0.009123347699642181,
0.03655092045664787,
-0.04199712350964546,
-0.018419286236166954,
-0.0026535852812230587,
0.002038730075582862,
0.0016839599702507257,
0.014162043109536171,
-0.05599616467952728,
-0.04418327286839485,
0.0549989715218544,
0.07432915270328522,
0.02659817785024643,
-0.006198890507221222,
-0.0066831037402153015,
0.016645435243844986,
0.038832955062389374,
-0.0022880281321704388,
-0.009420587681233883,
-0.020883500576019287,
0.07060886174440384,
0.016827614977955818,
0.025926990434527397,
-0.008984316140413284,
0.013538798317313194,
0.010374631732702255,
-0.006716663017868996,
-0.06746386736631393,
0.04295596107840538,
-0.06527771800756454,
0.030299294739961624,
0.0330415703356266,
-0.0004506540426518768,
0.022168343886733055,
0.0034853776451200247,
0.00911375880241394,
-0.03568796440958977,
0.01191836129873991,
-0.0018050132784992456,
-0.009502088651061058,
-0.01780562847852707,
-0.042265597730875015,
0.012321073561906815,
-0.0242394357919693,
-0.010010273195803165,
-0.056418053805828094,
0.0004635384539142251,
0.001896102912724018,
0.04613930359482765,
-0.00906581711024046,
-0.026579000055789948,
-0.01265666726976633,
-0.0032672418747097254,
0.011496472172439098,
-0.01301143690943718,
0.021746454760432243,
0.015820832923054695,
0.07133758068084717,
0.02569686993956566,
0.008236422203481197,
0.029819874092936516,
0.021420450881123543,
0.0077234432101249695,
-0.03712622448801994,
0.03183343634009361,
-0.024258611723780632,
0.04932264983654022,
-0.020883500576019287,
-0.05703170970082283,
-0.01895623467862606,
0.04019450768828392,
-0.04928429424762726,
-0.03382781893014908,
0.04084651544690132,
0.005427025258541107,
0.014938702806830406,
0.05745359882712364,
-0.014986644499003887,
-0.03260050714015961,
-0.0346715971827507,
-0.12288472801446915,
-0.0017978220712393522,
-0.06988014280796051,
0.07475104182958603,
-0.0766303688287735,
-0.025505101308226585,
0.03457571193575859,
0.021132798865437508,
0.05841243639588356,
-0.005695500411093235,
0.03927402198314667,
-0.007656324654817581,
0.05710841715335846,
0.00870625302195549,
0.011352647095918655,
-0.03292651101946831,
0.047558385878801346,
-0.016415312886238098,
0.007220053113996983,
-0.015926305204629898,
0.05124032497406006,
0.02539004199206829,
-0.02684747613966465,
-0.029513046145439148,
-0.034038763493299484,
-0.0016599890077486634,
-0.049591124057769775,
-0.03743305057287216,
-0.055114030838012695,
0.017508389428257942,
0.019416477531194687,
0.03904389962553978,
-0.02197657711803913,
0.04537223279476166,
-0.07022532820701599,
-0.02042325772345066,
0.025255803018808365,
-0.017431681975722313,
-0.08997739851474762,
0.007368673104792833,
0.012637490406632423,
0.055766042321920395,
0.06140401214361191,
0.014622285962104797,
-0.05879596993327141,
-0.04644613340497017,
0.009645914658904076,
-0.011832065880298615,
-0.05327306315302849,
0.017048146575689316,
0.027154304087162018,
-0.07409903407096863,
0.021861515939235687,
-0.002732689492404461,
0.016808437183499336,
-0.01289637666195631,
0.03334840014576912,
-0.0042260801419615746,
-0.09864529967308044,
0.0067885760217905045,
-0.002622422995045781,
-0.014056570827960968,
-0.02636805549263954,
-0.04287925362586975,
-0.038602836430072784,
0.015140058472752571,
0.016376961022615433,
0.02928292565047741,
0.026579000055789948,
-0.033079925924539566,
-0.030606122687458992,
-0.083917535841465,
0.04253407195210457,
0.025409217923879623,
-0.006572837475687265,
0.0017822409281507134,
0.005729059688746929,
0.020864324644207954,
0.02985822781920433,
-0.04537223279476166,
0.0648941844701767,
0.008514485321938992,
0.020557494834065437,
-0.02667488530278206,
-0.0018002191791310906,
0.02937880903482437,
-0.01944524236023426,
-0.00821724534034729,
0.034460652619600296,
-0.017911100760102272,
-0.07448256760835648,
0.003137798747047782,
0.020289020612835884,
-0.00919526070356369,
-0.017690569162368774,
-0.0019116840558126569,
-0.05595780909061432,
-0.0020758851896971464,
-0.03137319162487984,
0.04410656541585922,
0.061058830469846725,
-0.011640298180282116,
-0.058028899133205414,
0.027346070855855942,
-0.03480583429336548,
0.011956715025007725,
0.0622861422598362,
0.004947606008499861,
-0.003758646547794342,
0.028861036524176598,
0.021439626812934875,
-0.004628792405128479,
-0.04736661911010742,
0.007090609986335039,
0.06263132393360138,
-0.0048037804663181305,
-0.03254297748208046,
0.03091295063495636,
-0.05971645563840866,
-0.0005687110242433846,
0.005623587407171726,
0.020806793123483658,
-0.05476884916424751,
-0.055037323385477066,
0.015897540375590324,
-0.02147798053920269,
-0.02042325772345066,
0.008039860054850578,
0.024373672902584076,
0.002224505180492997,
-0.008720635436475277,
-0.0311430711299181,
-0.00886925496160984,
-0.0001271210057893768,
-0.02903362736105919,
-0.03194849565625191,
-0.0320635549724102,
0.005623587407171726,
0.03035682439804077,
-0.05534415319561958,
0.0194548312574625,
-0.012522430159151554,
-0.035515375435352325,
0.030222587287425995,
-0.034844186156988144,
0.03726046159863472,
-0.05158550664782524,
0.013222381472587585,
-0.006932401563972235,
-0.07298678159713745,
0.03530443087220192,
-0.03409629315137863,
-0.07985206693410873,
0.027231011539697647,
-0.011937538161873817,
0.018697349354624748,
0.010470515117049217,
0.02562016248703003,
-0.0008791349828243256,
-0.010441750288009644,
0.014305869117379189,
0.008298746310174465,
-0.06612149626016617,
-0.017172796651721,
-0.014909937046468258,
0.01635778322815895,
0.019569892436265945,
0.04859393090009689,
-0.03693445399403572,
0.017556332051753998,
-0.038832955062389374,
-0.00538867199793458,
0.006702280603349209,
-0.0026583794970065355,
0.014392164535820484,
-0.04541058838367462,
0.03482501208782196,
0.025351688265800476,
-0.043646324425935745,
0.04736661911010742,
-0.008500102907419205,
0.009339085780084133,
0.03279227390885353,
0.0014298678142949939,
-0.030702006071805954,
0.0019260667031630874,
0.03633997589349747,
-0.04126840457320213,
0.06144236400723457,
0.021497156471014023,
-0.02236011251807213,
-0.000010075294085254427,
-0.004573659040033817,
0.02237928844988346,
-0.00869666412472725,
-0.03194849565625191,
0.025083212181925774,
-0.03954249620437622,
-0.005192109849303961,
0.0432627908885479,
0.02611875906586647,
0.016904320567846298,
0.024622971192002296,
-0.003209711518138647,
0.04188206046819687,
0.016146838665008545,
0.0471748486161232,
-0.05012807250022888,
0.04433668777346611,
0.02569686993956566,
-0.024776384234428406,
0.007876857183873653,
0.009295938536524773,
0.024776384234428406,
-0.02684747613966465,
-0.07095403969287872,
-0.014766111969947815,
-0.021938223391771317,
-0.027863845229148865,
0.08859667181968689,
0.11068830639123917,
-0.0018589480314403772,
-0.0021106430795043707
]
|
42,109 | flask_restful | _should_use_fr_error_handler | Determine if error should be handled with FR or default Flask
The goal is to return Flask error handlers for non-FR-related routes,
and FR errors (with the correct media type) for FR endpoints. This
method currently handles 404 and 405 errors.
:return: bool
| def _should_use_fr_error_handler(self):
""" Determine if error should be handled with FR or default Flask
The goal is to return Flask error handlers for non-FR-related routes,
and FR errors (with the correct media type) for FR endpoints. This
method currently handles 404 and 405 errors.
:return: bool
"""
adapter = current_app.create_url_adapter(request)
try:
adapter.match()
except MethodNotAllowed as e:
# Check if the other HTTP methods at this url would hit the Api
valid_route_method = e.valid_methods[0]
rule, _ = adapter.match(method=valid_route_method, return_rule=True)
return self.owns_endpoint(rule.endpoint)
except NotFound:
return self.catch_all_404s
except:
# Werkzeug throws other kinds of exceptions, such as Redirect
pass
| (self) | [
0.03252830356359482,
-0.057135116308927536,
-0.0001745988120092079,
0.06215325742959976,
-0.01673012226819992,
-0.014875202439725399,
0.05821043252944946,
0.015027538873255253,
-0.0024441033601760864,
-0.011362504214048386,
0.06247585266828537,
-0.04018096998333931,
0.05702758580446243,
-0.04290510341525078,
0.02742055431008339,
0.06946540623903275,
0.007231499068439007,
0.05405254289507866,
0.07093500345945358,
-0.04333522915840149,
-0.023155134171247482,
-0.014543646946549416,
-0.0035799057222902775,
0.003682956798002124,
-0.033979982137680054,
0.060253530740737915,
0.004605936352163553,
-0.005900796037167311,
0.07129344344139099,
-0.021362941712141037,
-0.03229532018303871,
-0.013880535960197449,
0.024821873754262924,
0.015126110054552555,
0.005242164712399244,
-0.009955632500350475,
-0.025305766612291336,
0.025269923731684685,
-0.07448354363441467,
-0.005506513174623251,
-0.07032565772533417,
0.0008260890026576817,
-0.025682127103209496,
-0.02225903794169426,
0.022366570308804512,
0.01867465302348137,
-0.0674223080277443,
0.06129300594329834,
0.0043729511089622974,
0.03627398982644081,
-0.027151726186275482,
-0.018782183527946472,
0.007961818017065525,
0.028370417654514313,
0.0438370443880558,
0.032492462545633316,
-0.03224155306816101,
0.016506098210811615,
-0.045915987342596054,
-0.01708856038749218,
0.012796258553862572,
0.025664204731583595,
0.02749224193394184,
-0.003163220826536417,
0.03457140550017357,
0.03136337921023369,
0.0018829228356480598,
-0.008279931731522083,
-0.005788783542811871,
0.02023386023938656,
-0.00688202166929841,
0.011470035649836063,
-0.04484067112207413,
0.035664644092321396,
0.06638283282518387,
0.0011873278999701142,
0.0318293496966362,
0.005519954953342676,
0.021022425964474678,
0.021739302203059196,
0.05942912399768829,
0.0015424061566591263,
-0.020036719739437103,
0.015135071240365505,
0.03507322072982788,
-0.02034139260649681,
0.009606154635548592,
-0.03154259920120239,
0.0007745634648017585,
0.0002541273715905845,
-0.06541504710912704,
-0.08566682785749435,
-0.01216003019362688,
-0.05717096105217934,
-0.003465653397142887,
0.017760634422302246,
0.02783275954425335,
-0.006855138577520847,
-0.0038106506690382957,
-0.04107706621289253,
0.021972287446260452,
0.07849805802106857,
-0.010636665858328342,
0.014776632189750671,
0.06136469170451164,
-0.014167286455631256,
0.025198234245181084,
-0.02344188652932644,
-0.025126546621322632,
0.014445076696574688,
-0.01330703403800726,
-0.03622022271156311,
0.0009330605389550328,
0.03670411556959152,
-0.05527123436331749,
0.007849805988371372,
0.020610220730304718,
0.003250590292736888,
-0.020413080230355263,
-0.00914466567337513,
-0.024122919887304306,
-0.012249640189111233,
-0.026434848085045815,
-0.07050487399101257,
0.051471784710884094,
0.010224461555480957,
-0.004829960409551859,
-0.011810552328824997,
0.04290510341525078,
0.03105870634317398,
-0.010170696303248405,
0.03709839656949043,
-0.05297722667455673,
-0.033209338784217834,
-0.05043231323361397,
0.056740835309028625,
-0.04749311879277229,
0.034786466509103775,
0.024875640869140625,
0.007374874781817198,
-0.027743149548768997,
0.0021775146014988422,
-0.012312366627156734,
-0.015233641490340233,
-0.026452770456671715,
0.0476364940404892,
-0.012500546872615814,
0.021793067455291748,
0.03742099180817604,
0.03702671080827713,
0.043120164424180984,
0.06935787200927734,
0.004213894251734018,
0.005636447109282017,
-0.01470494456589222,
-0.007737793959677219,
0.004655221477150917,
0.021631771698594093,
0.049572061747312546,
-0.0036090288776904345,
-0.01871049590408802,
-0.04340691864490509,
-0.0015244842506945133,
-0.06573764234781265,
0.03299427404999733,
0.005936639849096537,
0.024104997515678406,
-0.0069044241681694984,
0.013235346414148808,
0.07222538441419601,
-0.034463874995708466,
0.016936223953962326,
0.014839358627796173,
0.012984438799321651,
0.04613105207681656,
0.03831708803772926,
0.024857718497514725,
-0.0027980615850538015,
-0.0005791023722849786,
-0.001199649297632277,
0.08387463539838791,
-0.03141714632511139,
-0.04620273783802986,
-0.03272544592618942,
0.02351357415318489,
0.030377672985196114,
-0.07770949602127075,
-0.022079819813370705,
-0.014722866006195545,
0.06444726139307022,
0.009507584385573864,
0.008678695186972618,
0.06663373857736588,
-0.016550904139876366,
-0.032868821173906326,
0.022366570308804512,
0.028495870530605316,
0.012401976622641087,
0.0715085044503212,
-0.07512873411178589,
-0.006563907489180565,
0.0319368802011013,
0.008293373510241508,
0.015771299600601196,
-0.08215413242578506,
0.056274864822626114,
0.010143812745809555,
-0.006922346074134111,
-0.06641867756843567,
0.000605985289439559,
-0.07276304066181183,
-0.018835948780179024,
-0.033979982137680054,
0.042009007185697556,
0.016577785834670067,
0.02985793724656105,
0.0089475242421031,
0.016004284843802452,
-0.013907418586313725,
0.038066182285547256,
0.008275452069938183,
0.0036493532825261354,
0.010161735117435455,
0.0059097567573189735,
0.028531713411211967,
0.028513792902231216,
0.022366570308804512,
0.008069349452853203,
-0.03064650297164917,
0.0013027003733441234,
-0.04451807588338852,
0.006568387616425753,
0.004010031931102276,
0.017993619665503502,
0.055450454354286194,
0.0034790949430316687,
0.06874852627515793,
-0.008719019591808319,
0.06867683678865433,
0.00974953081458807,
0.04903440177440643,
-0.013486253097653389,
-0.0198395773768425,
-0.0009705845732241869,
0.006348844151943922,
0.00121757120359689,
-0.01996503211557865,
0.01912270113825798,
-0.03396205976605415,
-0.05200944468379021,
-0.03611269220709801,
0.025700049474835396,
-0.005708135198801756,
-0.043156009167432785,
-0.031130393967032433,
-0.08086375147104263,
-0.04415963962674141,
0.03276129066944122,
0.034463874995708466,
0.005802225321531296,
0.013172619044780731,
0.08100713044404984,
0.04892687126994133,
0.04104122146964073,
-0.07469861209392548,
-0.00018734019249677658,
0.03100494109094143,
0.00955238938331604,
0.05100581422448158,
0.027743149548768997,
0.024911483749747276,
0.01374612096697092,
-0.045163266360759735,
0.0179129708558321,
0.0476723350584507,
0.006474297493696213,
-0.02871093340218067,
0.06057612597942352,
0.008857914246618748,
-0.0012108504306524992,
-0.0012668565614148974,
-0.05387332662940025,
-0.010896533727645874,
0.06559427082538605,
-0.020502688363194466,
0.032797135412693024,
-0.015188836492598057,
0.0060307299718260765,
-0.004668663255870342,
-0.04505573585629463,
0.0398942194879055,
-0.020861128345131874,
-0.008839992806315422,
0.0634077936410904,
-0.052296195179224014,
0.022832540795207024,
-0.00004312464807298966,
-0.06702802330255508,
0.04086200147867203,
-0.05283385142683983,
-0.024893561378121376,
0.03622022271156311,
0.05140009894967079,
0.029248591512441635,
0.003792728763073683,
-0.07383835315704346,
0.012052498757839203,
-0.0178950484842062,
-0.01331599522382021,
-0.01354897953569889,
-0.018585043027997017,
-0.009292521513998508,
-0.01011693011969328,
-0.0714726597070694,
0.01715128868818283,
0.04527079686522484,
-0.02743847668170929,
0.012204835191369057,
-0.028764698654413223,
0.04007343947887421,
-0.028764698654413223,
0.08459151536226273,
-0.024087075144052505,
0.019732046872377396,
-0.007849805988371372,
0.00876830518245697,
0.06975215673446655,
-0.04455392062664032,
-0.03134545683860779,
0.01392534002661705,
0.0020318988244980574,
-0.03145298734307289,
-0.02548498660326004,
-0.02222319506108761,
-0.01638960652053356,
-0.0438728891313076,
0.010636665858328342,
-0.05211697518825531,
-0.024911483749747276,
-0.0014460758538916707,
0.012401976622641087,
-0.0038061700761318207,
-0.008257529698312283,
0.00953446701169014,
-0.019355686381459236,
0.01994710974395275,
0.013611706905066967,
-0.003304356010630727,
0.030449360609054565,
0.0026703677140176296,
-0.03668619319796562,
-0.05383748188614845,
-0.06946540623903275,
0.0032774731516838074,
-0.01830725185573101,
-0.02949949912726879,
-0.05774446204304695,
-0.021022425964474678,
0.022348647937178612,
-0.004164608661085367,
0.04727805405855179,
-0.038424618542194366,
-0.0914735347032547,
0.026972506195306778,
-0.025700049474835396,
-0.014041832648217678,
0.056346550583839417,
-0.01310989260673523,
-0.01871049590408802,
0.006998514290899038,
0.026936663314700127,
0.01836998015642166,
0.042009007185697556,
-0.05294138565659523,
0.0005530595663003623,
0.00637124665081501,
0.04562923684716225,
0.006151702720671892,
0.0043595097959041595,
0.09878568351268768,
0.026345238089561462,
0.02462473325431347,
-0.02623770758509636,
-0.004059317521750927,
0.04215238243341446,
-0.10021943598985672,
-0.05727849155664444,
0.023621104657649994,
-0.03378283977508545,
0.007388316094875336,
0.02550290711224079,
-0.04864012077450752,
-0.006608712021261454,
0.05290554091334343,
-0.015565196983516216,
-0.028047822415828705,
-0.049070246517658234,
0.006389168556779623,
0.03229532018303871,
0.04623858258128166,
0.016532981768250465,
0.0011262813350185752,
-0.0005211361567489803,
0.030574815347790718,
0.04494820162653923,
0.07118590921163559,
0.026470692828297615,
0.040826160460710526,
0.010466407984495163,
0.017258819192647934,
0.023531494662165642,
-0.002650205511599779,
-0.031220003962516785,
-0.03303011879324913,
-0.03795865178108215,
0.03673996031284332,
0.0011727663222700357,
0.0399300642311573,
-0.022008132189512253,
0.013683394528925419,
0.04061109572649002,
-0.01638064533472061,
0.06577348709106445,
0.0031497792806476355,
-0.029356123879551888,
0.01272457093000412,
-0.027761071920394897,
0.03713424131274223,
-0.03906980901956558,
0.03288674354553223,
0.01755453087389469,
-0.00041192438220605254,
-0.030323907732963562,
-0.047959089279174805,
-0.028137432411313057,
-0.05602395534515381,
-0.024176685139536858,
0.000777923793066293,
-0.021757224574685097,
-0.009946671314537525,
0.026416925713419914,
-0.008732461370527744,
-0.03663242608308792,
0.03062858060002327,
0.033603619784116745,
-0.059106528759002686,
0.03770774230360985,
-0.028567558154463768,
0.0009862662991508842,
-0.04132797196507454,
-0.07699261605739594,
-0.0397866852581501,
-0.045127421617507935,
0.028764698654413223,
-0.03270752355456352,
0.00468210456892848,
0.004632818978279829,
-0.002639004262164235,
0.007688508369028568,
0.06502076238393784,
0.028872231021523476,
0.037600211799144745,
-0.055988114327192307,
-0.0517585352063179,
-0.006290597841143608,
0.06559427082538605,
0.08057700097560883,
-0.015816103667020798,
-0.019785812124609947,
-0.01553831435739994,
-0.00518391840159893,
-0.009776413440704346,
0.019642436876893044,
-0.049141936004161835,
-0.01910477876663208,
0.035628799349069595,
0.016873497515916824,
0.011667177081108093,
0.004352788906544447,
0.03467893600463867,
0.0021226287353783846,
-0.022097740322351456,
-0.015215719118714333,
-0.0024978690780699253,
-0.010815885849297047,
-0.07677755504846573,
-0.011416270397603512,
0.02912313863635063,
-0.0034925362560898066,
-0.019749967381358147,
0.030001312494277954,
-0.07333654165267944,
-0.0179219301789999,
0.04218822717666626,
0.037636056542396545,
0.014364427886903286,
0.005743979010730982,
0.00318114273250103,
0.013979106210172176,
-0.004489443730562925,
0.03774358704686165,
-0.0436936691403389,
-0.05208113044500351,
0.03288674354553223,
0.018136994913220406,
-0.061436381191015244,
-0.0089475242421031,
0.023298511281609535,
0.0050539844669401646,
-0.002352253533899784,
-0.037241771817207336,
0.028101587668061256,
0.031650129705667496,
-0.002791340695694089,
-0.011470035649836063,
-0.008253049105405807,
0.021183721721172333,
-0.010914456099271774,
0.008696616627275944,
0.04466145113110542,
0.01631791889667511,
-0.04846090078353882,
0.0595724992454052,
0.022868383675813675,
0.022097740322351456,
0.053156446665525436,
0.01674804463982582,
0.019696202129125595,
0.029284436255693436,
-0.013441448099911213,
-0.015126110054552555,
0.06602439284324646,
0.08287101238965988,
-0.014579490758478642,
0.002347772940993309,
0.011263933964073658,
-0.03308388590812683,
-0.037994492799043655,
-0.045163266360759735,
-0.004982296843081713,
-0.032492462545633316,
0.0436219796538353,
-0.05211697518825531,
-0.004950933624058962,
-0.05003803223371506,
-0.15025746822357178,
-0.042044851928949356,
-0.08215413242578506,
0.06215325742959976,
-0.07813961803913116,
0.004829960409551859,
0.053514886647462845,
0.0832294449210167,
0.019230231642723083,
-0.004883726127445698,
0.03622022271156311,
0.023800324648618698,
0.09405429661273956,
0.02663199044764042,
-0.041578881442546844,
-0.0597158744931221,
-0.006756567861884832,
0.007388316094875336,
-0.023352276533842087,
-0.05322813615202904,
-0.01594155840575695,
0.01747388206422329,
-0.0019344484899193048,
-0.026470692828297615,
-0.022975916042923927,
-0.020789440721273422,
-0.006510141305625439,
0.024893561378121376,
-0.04269003868103027,
-0.0010596341453492641,
-0.01705271750688553,
0.02946365438401699,
-0.033209338784217834,
0.04125628620386124,
-0.04290510341525078,
-0.020843205973505974,
-0.03268960118293762,
-0.05408838763833046,
-0.029929624870419502,
-0.031237926334142685,
-0.04602351784706116,
0.038854748010635376,
0.04326354339718819,
-0.04283341392874718,
-0.025574594736099243,
-0.04817415028810501,
-0.02150631695985794,
0.027689384296536446,
-0.10616952180862427,
0.015627924352884293,
0.08874940127134323,
-0.06419635564088821,
-0.034463874995708466,
0.039571624249219894,
0.08251257240772247,
-0.05337151139974594,
0.01910477876663208,
0.008665253408253193,
-0.11842811852693558,
0.0636586993932724,
0.0076795476488769054,
-0.030126765370368958,
-0.025180313736200333,
-0.03351401165127754,
-0.035557109862565994,
0.012563273310661316,
0.00048669244279153645,
0.04093369096517563,
0.03023429773747921,
-0.018907636404037476,
-0.027348866686224937,
-0.005717095918953419,
0.007585457526147366,
0.052726320922374725,
0.006510141305625439,
-0.011568606831133366,
-0.022581633180379868,
-0.016004284843802452,
0.0030265660025179386,
0.018961403518915176,
0.030395595356822014,
0.0058291079476475716,
-0.0021282292436808348,
-0.11591905355453491,
0.005260086618363857,
-0.006832736078649759,
0.004482722841203213,
-0.0059276786632835865,
-0.02227696031332016,
-0.03896227851510048,
-0.014803514815866947,
-0.007688508369028568,
-0.0067879315465688705,
0.003138578264042735,
0.011891201138496399,
-0.011667177081108093,
-0.03512698411941528,
-0.05322813615202904,
0.004341587889939547,
0.03731346130371094,
0.012249640189111233,
-0.006326441653072834,
-0.05896315351128578,
0.07627573609352112,
-0.008615968748927116,
-0.025269923731684685,
0.053479041904211044,
-0.06254754215478897,
-0.004664182662963867,
-0.03303011879324913,
0.01636272296309471,
-0.024786030873656273,
0.013862613588571548,
0.005752939730882645,
0.02023386023938656,
-0.01331599522382021,
-0.008656293153762817,
0.032832976430654526,
-0.03541373461484909,
0.02152423933148384,
0.02618394047021866,
0.051471784710884094,
-0.04892687126994133,
0.02428421750664711,
-0.025610439479351044,
0.0009761851979419589,
0.002511310623958707,
0.02824496291577816,
0.007191174663603306,
0.014973773621022701,
0.03846046328544617,
-0.036023080348968506,
0.005963522475212812,
0.01170302089303732,
0.0009481821907684207,
-0.02867509052157402,
0.0398225300014019,
-0.07756611704826355,
0.06713555753231049,
0.013190541416406631,
0.0478157103061676,
-0.004211653955280781,
0.0025673166383057833,
0.005412423051893711,
0.004986777435988188,
-0.02301175892353058,
-0.02432006038725376,
0.024051232263445854,
0.05505617335438728,
-0.05003803223371506,
-0.04093369096517563,
-0.042403288185596466,
-0.00178883271291852,
-0.002842866349965334,
0.0716877207159996,
-0.0016611389582976699,
-0.010188617743551731,
0.009624077007174492,
-0.018835948780179024,
0.03349608927965164,
-0.034840233623981476,
-0.018154915422201157,
-0.037205930799245834,
-0.049930501729249954,
-0.002842866349965334,
-0.04745727404952049,
-0.02462473325431347,
0.05362241715192795,
-0.009417974390089512,
-0.05892730876803398,
0.006200988311320543,
0.014561569318175316,
-0.041148751974105835,
0.016613630577921867,
-0.028388338163495064,
-0.011075753718614578,
-0.000987386447377503,
0.021345019340515137,
0.02147047407925129,
-0.007365913596004248,
-0.022348647937178612,
-0.020215937867760658,
-0.016201425343751907,
-0.018423745408654213,
-0.018154915422201157,
0.024194607511162758,
0.02062814310193062,
-0.0436219796538353,
0.055092014372348785,
-0.006021768786013126,
-0.03215194493532181,
-0.011891201138496399,
0.018047384917736053,
-0.04086200147867203,
0.025305766612291336,
0.026918740943074226,
-0.02351357415318489,
-0.03828124329447746,
-0.00853980053216219,
0.059930939227342606,
0.07025396823883057,
0.019606592133641243,
0.039571624249219894,
-0.028890153393149376,
0.079788438975811,
0.052726320922374725,
-0.0278865247964859,
-0.014301701448857784,
0.04269003868103027,
-0.022097740322351456,
-0.014579490758478642,
-0.007908051833510399,
-0.013235346414148808,
0.00030999339651316404,
-0.003187863389030099,
-0.04258250817656517,
0.05326398089528084,
-0.020520610734820366,
0.04942868649959564,
0.046417802572250366,
0.04018096998333931,
-0.011263933964073658,
0.014158325269818306
]
|
42,110 | flask_restful | add_resource | Adds a resource to the api.
:param resource: the class name of your resource
:type resource: :class:`Type[Resource]`
:param urls: one or more url routes to match for the resource, standard
flask routing rules apply. Any url variables will be
passed to the resource method as args.
:type urls: str
:param endpoint: endpoint name (defaults to :meth:`Resource.__name__.lower`
Can be used to reference this route in :class:`fields.Url` fields
:type endpoint: str
:param resource_class_args: args to be forwarded to the constructor of
the resource.
:type resource_class_args: tuple
:param resource_class_kwargs: kwargs to be forwarded to the constructor
of the resource.
:type resource_class_kwargs: dict
Additional keyword arguments not specified above will be passed as-is
to :meth:`flask.Flask.add_url_rule`.
Examples::
api.add_resource(HelloWorld, '/', '/hello')
api.add_resource(Foo, '/foo', endpoint="foo")
api.add_resource(FooSpecial, '/special/foo', endpoint="foo")
| def add_resource(self, resource, *urls, **kwargs):
"""Adds a resource to the api.
:param resource: the class name of your resource
:type resource: :class:`Type[Resource]`
:param urls: one or more url routes to match for the resource, standard
flask routing rules apply. Any url variables will be
passed to the resource method as args.
:type urls: str
:param endpoint: endpoint name (defaults to :meth:`Resource.__name__.lower`
Can be used to reference this route in :class:`fields.Url` fields
:type endpoint: str
:param resource_class_args: args to be forwarded to the constructor of
the resource.
:type resource_class_args: tuple
:param resource_class_kwargs: kwargs to be forwarded to the constructor
of the resource.
:type resource_class_kwargs: dict
Additional keyword arguments not specified above will be passed as-is
to :meth:`flask.Flask.add_url_rule`.
Examples::
api.add_resource(HelloWorld, '/', '/hello')
api.add_resource(Foo, '/foo', endpoint="foo")
api.add_resource(FooSpecial, '/special/foo', endpoint="foo")
"""
if self.app is not None:
self._register_view(self.app, resource, *urls, **kwargs)
else:
self.resources.append((resource, urls, kwargs))
| (self, resource, *urls, **kwargs) | [
-0.026286862790584564,
-0.03355314955115318,
-0.004249798599630594,
-0.013651003129780293,
0.03294762596487999,
0.02147829160094261,
0.026340292766690254,
0.05745353922247887,
-0.03403401002287865,
-0.031326960772275925,
0.0274979118257761,
0.01934114843606949,
0.046803440898656845,
-0.030365245416760445,
0.0015438634436577559,
0.05927010998129845,
0.028993912041187286,
-0.02573476918041706,
-0.03900286555290222,
-0.05827277526259422,
-0.0005334510351531208,
0.04812134429812431,
0.04174553230404854,
0.006041882559657097,
0.006758715957403183,
0.08691050112247467,
0.008406097069382668,
0.002319691004231572,
0.014265432022511959,
-0.022938672453165054,
0.005004477221518755,
-0.01934114843606949,
0.030881721526384354,
0.0014770777197554708,
0.043526485562324524,
0.001084155053831637,
-0.006135382689535618,
0.053214870393276215,
-0.08527202159166336,
0.02926105447113514,
-0.00432994170114398,
0.004122905898839235,
-0.02001790888607502,
-0.04687467962503433,
0.10251164436340332,
0.03390934318304062,
-0.013481812551617622,
0.0374356284737587,
-0.05382039397954941,
-0.045948583632707596,
-0.0007930805440992117,
-0.03294762596487999,
0.022760577499866486,
0.02466619573533535,
-0.003637596033513546,
0.06443487107753754,
-0.019376765936613083,
0.08477335423231125,
-0.015690194442868233,
0.01991105265915394,
0.025040196254849434,
-0.03011591173708439,
0.001048535923473537,
-0.008187931030988693,
0.0066474066115915775,
0.04338401183485985,
-0.06927906721830368,
-0.00020926195429638028,
0.03408743813633919,
0.06268954277038574,
0.0030921793077141047,
-0.005463072564452887,
0.0025601196102797985,
-0.018575338646769524,
0.05439030006527901,
-0.0025957387406378984,
0.0209796242415905,
-0.05342858284711838,
0.028530864045023918,
-0.013259193859994411,
0.03390934318304062,
-0.015645669773221016,
-0.03483543545007706,
-0.00943905021995306,
0.02767600677907467,
0.008642073720693588,
-0.07814820855855942,
-0.07829068601131439,
-0.05506706237792969,
0.028139054775238037,
-0.05463963374495506,
0.01080147922039032,
0.015129194594919682,
-0.020320672541856766,
0.03403401002287865,
-0.06507601588964462,
-0.018236957490444183,
0.002156066009774804,
0.06938592344522476,
-0.016732051968574524,
-0.008548573590815067,
-0.018753433600068092,
-0.0064381444826722145,
0.006780977826565504,
0.03757810592651367,
-0.07914554327726364,
0.0032680484000593424,
0.02806781604886055,
-0.08263620734214783,
0.014550384134054184,
0.07451506704092026,
0.010641193017363548,
-0.009020525962114334,
0.05339296534657478,
-0.04213734343647957,
0.022440005093812943,
0.004548108205199242,
-0.020320672541856766,
0.018272576853632927,
-0.022368768230080605,
-0.04609105736017227,
-0.0351560078561306,
0.009715097956359386,
0.0023976077791303396,
0.048441916704177856,
0.006687477696686983,
-0.03292981907725334,
0.010926145128905773,
-0.03793429583311081,
-0.054568395018577576,
-0.021620767191052437,
0.028424007818102837,
-0.06108668074011803,
0.02113991044461727,
0.011211098171770573,
-0.043740201741456985,
0.004919882398098707,
0.03736438974738121,
-0.025645719841122627,
0.03476420044898987,
-0.00525826308876276,
0.06778306514024734,
-0.02087276615202427,
0.03154067322611809,
-0.03718629479408264,
-0.05018724873661995,
-0.024345625191926956,
0.02087276615202427,
0.026571815833449364,
0.055993158370256424,
0.0029853221494704485,
0.009056145325303078,
0.009634954854846,
0.028726769611239433,
0.007698168512433767,
0.011220002546906471,
-0.014862051233649254,
0.0047150724567472935,
0.05813030153512955,
-0.04263601079583168,
-0.0034617269411683083,
0.011781003326177597,
0.0006789882900193334,
0.008379383012652397,
0.006527191959321499,
0.03079267404973507,
-0.0008765627280808985,
0.005365120247006416,
0.011211098171770573,
0.06101544201374054,
-0.011941288597881794,
-0.05481772869825363,
0.029296673834323883,
0.0022673755884170532,
0.02149610035121441,
-0.03487105667591095,
0.031380388885736465,
-0.03554781898856163,
0.034960102289915085,
0.01185224112123251,
0.08071278035640717,
-0.017462242394685745,
0.005507596768438816,
-0.008134501986205578,
-0.002829488832503557,
0.015129194594919682,
-0.010730240494012833,
0.0532861091196537,
-0.037969913333654404,
0.008642073720693588,
-0.01734648086130619,
0.011157669126987457,
-0.006660763639956713,
-0.023900385946035385,
-0.05866458639502525,
-0.03414086624979973,
-0.02625124529004097,
0.01168305054306984,
0.05296553671360016,
0.02471962571144104,
-0.057239823043346405,
0.028103435412049294,
0.011041907593607903,
0.010730240494012833,
0.08292116224765778,
-0.01882467046380043,
0.01255571749061346,
0.02885143645107746,
-0.05342858284711838,
-0.039715249091386795,
0.0036331438459455967,
0.01235981285572052,
-0.024452481418848038,
0.00021719276264775544,
0.0032992151100188494,
0.0035752628464251757,
-0.004764048848301172,
-0.014158574864268303,
-0.022155053913593292,
-0.017435528337955475,
0.016758766025304794,
0.051113344728946686,
-0.014960004016757011,
-0.014318861067295074,
0.007239573169499636,
-0.03918096050620079,
0.04520058259367943,
-0.017248528078198433,
-0.024310005828738213,
0.03357096016407013,
-0.05439030006527901,
0.04797887057065964,
0.04769391566514969,
0.0260909590870142,
0.00161176233086735,
0.02744448371231556,
0.01622447930276394,
0.059341348707675934,
0.04060572385787964,
-0.0034238817170262337,
0.06625144183635712,
0.07013392448425293,
-0.025253910571336746,
-0.06482668220996857,
0.003412750782445073,
0.04723086953163147,
-0.029474768787622452,
0.012092669494450092,
-0.0035552270710468292,
-0.09025868773460388,
0.003439465072005987,
0.029065150767564774,
-0.03113105520606041,
-0.011380288749933243,
-0.03672324866056442,
-0.01653614640235901,
-0.0464828684926033,
-0.039608389139175415,
-0.009973336011171341,
-0.012181716971099377,
-0.0025779292918741703,
0.05008039250969887,
0.0669282078742981,
0.08491583168506622,
-0.04473753646016121,
-0.045556772500276566,
-0.0010730241192504764,
0.00013259750267025083,
-0.03707943856716156,
0.02300991117954254,
0.07857564091682434,
0.028602102771401405,
0.02386476844549179,
-0.010062383487820625,
0.05652744323015213,
-0.05228877440094948,
0.0013123395619913936,
-0.01775609888136387,
-0.014051717706024647,
-0.03084610216319561,
0.008308145217597485,
-0.016366956755518913,
0.029528196901082993,
0.02352638728916645,
0.05645620450377464,
-0.06507601588964462,
-0.013321527279913425,
0.12858478724956512,
-0.050436582416296005,
-0.04263601079583168,
0.042208582162857056,
0.009652764536440372,
-0.03704381734132767,
0.05606439337134361,
0.011665240861475468,
0.08463087677955627,
-0.04566362872719765,
0.03191467374563217,
0.02302771992981434,
-0.05620687082409859,
-0.014764098450541496,
0.003971525002270937,
0.0578453466296196,
0.017025908455252647,
-0.057916585355997086,
-0.058486491441726685,
0.0038001080974936485,
-0.008886954747140408,
-0.03084610216319561,
-0.00016738173144403845,
0.03871791437268257,
0.03235991299152374,
0.002269601682201028,
-0.007577954325824976,
-0.03725753352046013,
0.06457734853029251,
-0.03814800828695297,
0.04409639164805412,
-0.028958292677998543,
-0.0034773102961480618,
-0.018913719803094864,
0.020837148651480675,
-0.0047685010358691216,
-0.03868229687213898,
0.038646675646305084,
0.005289429798722267,
0.02993781678378582,
-0.018183527514338493,
-0.029920008033514023,
0.012787241488695145,
-0.0063223824836313725,
0.027533531188964844,
-0.002168310107663274,
0.013143431395292282,
-0.04940363019704819,
-0.030400864779949188,
-0.03168315067887306,
-0.043526485562324524,
-0.01097066979855299,
0.025592291727662086,
0.027123911306262016,
0.009474668651819229,
-0.018753433600068092,
-0.01806776598095894,
-0.018397241830825806,
-0.04042762890458107,
0.009136288426816463,
-0.03593962639570236,
-0.006963525433093309,
-0.010106907226145267,
-0.025645719841122627,
-0.03045429289340973,
-0.022778386250138283,
-0.021104291081428528,
-0.00013503240188583732,
-0.01651833765208721,
-0.0532861091196537,
-0.024505911394953728,
0.042493533343076706,
-0.05463963374495506,
-0.02137143351137638,
0.019804194569587708,
-0.0470527745783329,
-0.01463052723556757,
-0.035066962242126465,
0.025218291208148003,
0.04904744029045105,
-0.0008147858898155391,
-0.04626915603876114,
-0.05624248832464218,
0.015930622816085815,
-0.006188811268657446,
0.06799677759408951,
0.043633345514535904,
0.026108767837285995,
-0.031825628131628036,
0.04943925142288208,
-0.004813024774193764,
-0.049011822789907455,
0.010703526437282562,
-0.04003581777215004,
0.04552115499973297,
-0.00012181438796687871,
-0.02386476844549179,
0.0510421060025692,
-0.04630477353930473,
-0.028958292677998543,
0.00037761765997856855,
-0.02188790962100029,
0.037328772246837616,
0.02879800647497177,
-0.002829488832503557,
-0.013971574604511261,
0.006709739565849304,
-0.024862101301550865,
-0.11269869655370712,
0.029581626877188683,
0.01962609961628914,
0.02806781604886055,
-0.006366906221956015,
0.04178115352988243,
-0.005155858583748341,
0.03360658138990402,
0.015770336613059044,
0.02983096055686474,
0.06457734853029251,
0.04071258008480072,
0.007448835298418999,
0.020605623722076416,
0.025984100997447968,
-0.0006422561127692461,
-0.017898576334118843,
-0.027195150032639503,
-0.0408194400370121,
-0.001080815796740353,
-0.02511143498122692,
0.026892388239502907,
0.04808572679758072,
-0.05257372558116913,
0.02001790888607502,
0.046696584671735764,
0.0010140299564227462,
0.054461538791656494,
0.02454153075814247,
-0.006642953958362341,
0.009118478745222092,
0.012306383810937405,
0.003637596033513546,
0.0175780039280653,
-0.004539203364402056,
-0.04227982088923454,
-0.01273381244391203,
0.014372289180755615,
-0.06169220432639122,
-0.006696382537484169,
-0.07287658751010895,
0.03497791290283203,
-0.07187925279140472,
-0.004245346412062645,
0.014888765290379524,
0.016144337132573128,
-0.09040116518735886,
0.006246692035347223,
0.04270724952220917,
-0.09574402123689651,
-0.02739105373620987,
-0.029296673834323883,
-0.0023931553587317467,
0.04755144193768501,
-0.013597575016319752,
0.024025052785873413,
-0.007951954379677773,
-0.016705337911844254,
0.02142486162483692,
0.00610866816714406,
-0.051291439682245255,
0.03843296319246292,
-0.049474868923425674,
-0.04174553230404854,
0.005289429798722267,
0.008290335536003113,
0.010908336378633976,
0.03775620087981224,
-0.029688483104109764,
-0.08235125988721848,
-0.026500577107071877,
0.026375912129878998,
-0.031718768179416656,
0.03424772247672081,
-0.004169655963778496,
-0.0010669020703062415,
0.02739105373620987,
-0.01934114843606949,
-0.0504722036421299,
-0.002836167346686125,
0.047266487032175064,
0.04609105736017227,
0.002978643635287881,
-0.03946591541171074,
-0.029332293197512627,
0.03850419819355011,
0.03868229687213898,
0.010819287970662117,
0.00926985964179039,
-0.005854882299900055,
0.03175438940525055,
-0.001372446771711111,
0.019804194569587708,
0.016678623855113983,
0.04502248764038086,
0.022137243300676346,
0.0058905016630887985,
-0.03301886469125748,
0.02806781604886055,
-0.07394516468048096,
0.0408194400370121,
0.017337575554847717,
-0.006246692035347223,
0.011273431591689587,
0.005543215665966272,
-0.0006873364909552038,
-0.055708203464746475,
-0.016972480341792107,
0.005151405930519104,
-0.008018740452826023,
-0.000812003156170249,
-0.04666096344590187,
-0.005943930242210627,
0.004220858216285706,
0.0007724883034825325,
-0.03747124597430229,
-0.01620667055249214,
0.04263601079583168,
0.03549439087510109,
0.04840629920363426,
-0.01950143277645111,
-0.003368227044120431,
0.03264486417174339,
-0.009848669171333313,
-0.002089280169457197,
0.009768526069819927,
0.011211098171770573,
0.11490707844495773,
0.004617120139300823,
-0.0009110686951316893,
0.03196810185909271,
-0.029973436146974564,
-0.04605543985962868,
-0.003403846174478531,
0.06197715923190117,
-0.0041050962172448635,
0.056669916957616806,
-0.022012576460838318,
-0.05011601373553276,
-0.017364289611577988,
0.0743013545870781,
-0.022938672453165054,
-0.02739105373620987,
0.03253800794482231,
-0.024844292551279068,
0.02131800539791584,
0.049474868923425674,
-0.0022317564580589533,
-0.023722290992736816,
-0.022635910660028458,
-0.10821069031953812,
-0.011718669906258583,
-0.03707943856716156,
0.05431906133890152,
-0.05987563356757164,
0.019465813413262367,
0.006202168297022581,
-0.021193338558077812,
0.060018111020326614,
0.021905720233917236,
0.05353544279932976,
0.03154067322611809,
0.006963525433093309,
-0.024684006348252296,
0.022261910140514374,
-0.031380388885736465,
0.03690134361386299,
-0.005520953796803951,
0.026732102036476135,
-0.03273391351103783,
0.0019401254830881953,
0.030418673530220985,
-0.031273532658815384,
-0.01513809897005558,
-0.02046314813196659,
0.0003133363788947463,
0.00865988340228796,
-0.023633243516087532,
-0.051113344728946686,
-0.011745383962988853,
0.043918296694755554,
0.009020525962114334,
-0.013392765074968338,
0.05203944072127342,
-0.026838958263397217,
-0.028530864045023918,
0.017987623810768127,
-0.06083734706044197,
-0.07387392222881317,
-0.0038490842562168837,
0.013374955393373966,
0.02511143498122692,
0.05595753714442253,
-0.007083739619702101,
-0.050329726189374924,
0.017827337607741356,
0.02562791109085083,
0.007310811430215836,
-0.03357096016407013,
-0.002606869675219059,
-0.019145242869853973,
-0.03935905918478966,
0.010498716495931149,
0.0022317564580589533,
0.031326960772275925,
-0.016607385128736496,
0.01154057402163744,
-0.05022286996245384,
-0.0532861091196537,
0.03255581855773926,
0.00420750118792057,
-0.035636864602565765,
-0.05538763105869293,
-0.06101544201374054,
-0.01853971928358078,
0.009163002483546734,
-0.01934114843606949,
0.008508502505719662,
0.0272129587829113,
-0.01389143243432045,
-0.032627057284116745,
-0.08341982960700989,
0.011157669126987457,
0.06856667995452881,
-0.03715067729353905,
-0.010418574325740337,
-0.006527191959321499,
0.04509372636675835,
0.04780077189207077,
-0.03878915309906006,
0.038005534559488297,
-0.025182673707604408,
0.004085060674697161,
-0.04619791731238365,
-0.01491548027843237,
0.0006422561127692461,
-0.013348241336643696,
0.016785480082035065,
0.006847763434052467,
0.014719574712216854,
-0.03617115318775177,
0.02635810151696205,
0.024986768141388893,
0.046126678586006165,
-0.029741911217570305,
-0.0206946711987257,
-0.02767600677907467,
-0.011647431179881096,
-0.012805051170289516,
0.04331277310848236,
0.09317944943904877,
-0.0026803340297192335,
-0.07387392222881317,
0.03617115318775177,
-0.06981334835290909,
0.017052622511982918,
0.053321726620197296,
-0.02562791109085083,
0.013927050866186619,
0.06536097079515457,
0.021407052874565125,
-0.007724883034825325,
-0.0425291545689106,
0.003960393834859133,
0.03157629445195198,
0.0012422145809978247,
-0.04042762890458107,
0.05182572826743126,
-0.06176344305276871,
-0.04395391419529915,
-0.02040972001850605,
0.02393600530922413,
-0.057916585355997086,
-0.04926115646958351,
0.05492458492517471,
-0.019252099096775055,
-0.004024953581392765,
0.013223574496805668,
0.048620011657476425,
0.040463246405124664,
0.01576143316924572,
-0.06828173249959946,
-0.030347436666488647,
-0.002620226936414838,
-0.01494219433516264,
-0.06325944513082504,
-0.03907410427927971,
0.014790813438594341,
0.030365245416760445,
-0.051505155861377716,
0.09246706962585449,
-0.0016830003587529063,
0.010240478441119194,
0.006393620744347572,
-0.011718669906258583,
0.05114896595478058,
-0.027070483192801476,
-0.01017814502120018,
-0.006812144536525011,
-0.05759601294994354,
0.031433816999197006,
-0.01802324317395687,
-0.07152306288480759,
0.055423252284526825,
0.0017108278116211295,
0.008695501834154129,
0.03638486564159393,
0.005293882451951504,
-0.008187931030988693,
-0.04270724952220917,
0.0011887860018759966,
-0.00009043901081895456,
-0.059448204934597015,
0.0023753459099680185,
-0.019857624545693398,
0.01255571749061346,
0.06625144183635712,
0.04822820425033569,
-0.05720420554280281,
-0.003922548610717058,
-0.018949337303638458,
0.0595550611615181,
-0.007039215881377459,
-0.020142575725913048,
-0.012315289117395878,
-0.015423051081597805,
0.035405341535806656,
0.02188790962100029,
-0.0986647829413414,
0.020196005702018738,
-0.06112230196595192,
-0.022582482546567917,
0.0022250779438763857,
0.012546812184154987,
-0.05289429798722267,
-0.0070703825913369656,
0.024256577715277672,
-0.03481762856245041,
0.056563060730695724,
0.04203048720955849,
-0.03326819837093353,
0.03814800828695297,
-0.01617995649576187,
0.06133601441979408,
0.000675092451274395,
-0.02822810225188732,
0.04634039103984833,
-0.005485334899276495,
-0.0258060060441494,
0.04637601226568222,
-0.015690194442868233,
0.01692795567214489,
0.040961913764476776,
-0.01324138417840004,
0.04174553230404854,
0.00980414543300867,
0.014737384393811226,
-0.025895053520798683,
0.03804115206003189,
0.033998388797044754,
-0.04398953542113304,
0.016447098925709724,
0.023971624672412872,
0.01627790927886963,
-0.025752577930688858,
-0.0782194510102272,
-0.023668862879276276,
0.02926105447113514,
-0.025378577411174774,
0.05463963374495506,
0.08726669102907181,
-0.021050862967967987,
0.03366000950336456
]
|
42,111 | flask_restful | error_router | This function decides whether the error occured in a flask-restful
endpoint or not. If it happened in a flask-restful endpoint, our
handler will be dispatched. If it happened in an unrelated view, the
app's original error handler will be dispatched.
In the event that the error occurred in a flask-restful endpoint but
the local handler can't resolve the situation, the router will fall
back onto the original_handler as last resort.
:param original_handler: the original Flask error handler for the app
:type original_handler: function
:param e: the exception raised while handling the request
:type e: Exception
| def error_router(self, original_handler, e):
"""This function decides whether the error occured in a flask-restful
endpoint or not. If it happened in a flask-restful endpoint, our
handler will be dispatched. If it happened in an unrelated view, the
app's original error handler will be dispatched.
In the event that the error occurred in a flask-restful endpoint but
the local handler can't resolve the situation, the router will fall
back onto the original_handler as last resort.
:param original_handler: the original Flask error handler for the app
:type original_handler: function
:param e: the exception raised while handling the request
:type e: Exception
"""
if self._has_fr_route():
try:
return self.handle_error(e)
except Exception:
pass # Fall through to original handler
return original_handler(e)
| (self, original_handler, e) | [
-0.010003688745200634,
-0.015344339422881603,
0.0049082268960773945,
0.03826723247766495,
-0.008572679944336414,
-0.024786323308944702,
0.04044272005558014,
0.026337698101997375,
0.010681300424039364,
-0.02683699131011963,
0.03855254128575325,
-0.03425505757331848,
0.03195474296808243,
-0.033862754702568054,
0.014497324824333191,
0.0771050825715065,
-0.005010760389268398,
0.02833486907184124,
0.059558503329753876,
-0.04304617643356323,
-0.00708371726796031,
-0.03140195459127426,
0.024411853402853012,
0.009290413931012154,
-0.05517186224460602,
0.05477955937385559,
-0.004172661807388067,
0.006544302683323622,
0.07788968831300735,
-0.021469593048095703,
-0.022557338699698448,
-0.053174689412117004,
0.004128082189708948,
0.04019307345151901,
-0.005617044400423765,
-0.0037246355786919594,
-0.053780972957611084,
0.013275840319693089,
-0.06294656544923782,
0.028370533138513565,
-0.06176966056227684,
0.006771659478545189,
-0.040763694792985916,
-0.019793394953012466,
0.06390948593616486,
0.03284633532166481,
-0.03546762466430664,
0.03418372943997383,
0.025142962113022804,
0.031615935266017914,
-0.03222222253680229,
0.007163960952311754,
0.010048268362879753,
-0.0018043641466647387,
0.04318883270025253,
0.054601240903139114,
-0.007939647883176804,
0.017189940437674522,
-0.02938695065677166,
-0.061127711087465286,
-0.010280082933604717,
0.042867857962846756,
0.007801450788974762,
0.015674229711294174,
0.008907027542591095,
0.02442968636751175,
0.010208755731582642,
-0.004136997740715742,
-0.02894115447998047,
-0.00962030328810215,
-0.031972575932741165,
0.006660209968686104,
-0.02744327485561371,
0.0017909902380779386,
0.06062841787934303,
0.021754903718829155,
0.0527467243373394,
-0.028531020507216454,
0.00713721290230751,
0.011020106263458729,
0.04718317463994026,
0.008938233368098736,
-0.016521243378520012,
0.05178380012512207,
-0.0035262557212263346,
-0.0317050963640213,
-0.0029890702571719885,
-0.007409149315208197,
-0.0052247429266572,
0.0041904933750629425,
-0.05035725235939026,
-0.07596383988857269,
-0.03712598979473114,
-0.026623008772730827,
-0.023734241724014282,
0.0194545891135931,
-0.005857774987816811,
-0.02960093319416046,
0.02863801084458828,
-0.06761851906776428,
0.04229723662137985,
0.060236115008592606,
-0.010306831449270248,
0.007070343475788832,
0.06162700429558754,
-0.03188341483473778,
0.03748262673616409,
-0.03020721860229969,
0.01743958704173565,
0.028227878734469414,
-0.005527885165065527,
-0.015611818060278893,
-0.05042857676744461,
0.04725450277328491,
-0.0701863095164299,
0.010137428529560566,
0.06073540821671486,
0.005572464782744646,
-0.018366843461990356,
-0.010422738268971443,
-0.001780959777534008,
-0.04893070086836815,
-0.005389688070863485,
-0.0845944732427597,
-0.003773673204705119,
0.02261083386838436,
0.004930516704916954,
-0.024483181536197662,
0.006165375001728535,
-0.008884738199412823,
0.0077524129301309586,
0.050464242696762085,
-0.03969378024339676,
-0.023163622245192528,
-0.04893070086836815,
0.026284202933311462,
-0.028905490413308144,
0.04261821135878563,
0.014969869516789913,
0.02533911168575287,
-0.02819221466779709,
0.03013589046895504,
-0.022343354299664497,
0.013899956829845905,
0.02539260871708393,
-0.00454713124781847,
0.0013986886478960514,
0.05877390131354332,
0.03347045183181763,
0.06080673635005951,
0.022557338699698448,
0.06590665876865387,
0.04729016497731209,
0.03758962079882622,
-0.01119842566549778,
0.04386644437909126,
0.017100779339671135,
-0.012714135460555553,
0.01834901235997677,
-0.023181453347206116,
-0.0014521843986585736,
-0.05363831669092178,
0.01469347532838583,
-0.09964458644390106,
-0.013766217045485973,
-0.017252352088689804,
0.02690831758081913,
0.0194545891135931,
-0.011965196579694748,
0.060450099408626556,
-0.05278238654136658,
0.020988130941987038,
-0.034005410969257355,
0.0005391360027715564,
0.04725450277328491,
0.04329582303762436,
0.040763694792985916,
-0.005260406993329525,
-0.02749677002429962,
0.02681915834546089,
0.08245465159416199,
-0.031526777893304825,
-0.019561581313610077,
-0.007373485714197159,
0.04026440158486366,
0.023734241724014282,
-0.06858143955469131,
-0.0037134906742721796,
-0.022004548460245132,
0.05328167974948883,
0.034611694514751434,
0.015977371484041214,
0.021023795008659363,
-0.019418925046920776,
-0.018143946304917336,
0.05848859250545502,
0.015139272436499596,
-0.005617044400423765,
0.09529361128807068,
-0.03104531578719616,
-0.03354177996516228,
0.03880218788981438,
-0.02277132123708725,
0.004747739993035793,
-0.03937280923128128,
0.04186927154660225,
0.002203352516517043,
-0.028976816684007645,
-0.046790871769189835,
0.003312273183837533,
-0.05691938474774361,
-0.020613662898540497,
-0.005777531769126654,
0.009602471254765987,
0.02277132123708725,
0.03272151201963425,
-0.050927869975566864,
-0.00426627928391099,
0.008479062467813492,
0.005184621550142765,
-0.03245403617620468,
0.005969224497675896,
0.005153415724635124,
0.013195596635341644,
0.0013028422836214304,
0.017341511324048042,
0.010609973222017288,
-0.03347045183181763,
-0.030563855543732643,
0.06055708974599838,
-0.03880218788981438,
0.003205281915143132,
0.016931377351284027,
-0.002523211995139718,
0.05823894590139389,
0.011742297559976578,
0.045114677399396896,
-0.029369119554758072,
0.013685973361134529,
0.024376191198825836,
0.006749369669705629,
-0.014568652026355267,
-0.010342494584619999,
-0.025303449481725693,
0.026337698101997375,
-0.023056630045175552,
-0.03650187328457832,
0.03209739923477173,
-0.03575293347239494,
-0.022949639707803726,
-0.051748137921094894,
0.03662669658660889,
-0.007734581362456083,
-0.013195596635341644,
-0.005452099721878767,
-0.07546454668045044,
-0.0245723407715559,
0.035057492554187775,
-0.00038227110053412616,
0.024162208661437035,
0.027532434090971947,
0.019722066819667816,
0.03997909277677536,
-0.000823053065687418,
-0.045043349266052246,
-0.024483181536197662,
-0.013570066541433334,
0.0004992928588762879,
0.057454340159893036,
0.02080981247127056,
0.08095677196979523,
0.025891900062561035,
-0.02268216200172901,
0.03594908490777016,
0.04786078631877899,
-0.01720777153968811,
-0.0384812131524086,
0.036555368453264236,
-0.011537231504917145,
-0.018545163795351982,
-0.025642255321145058,
-0.0023983889259397984,
-0.01661040261387825,
0.041298650205135345,
-0.03962245583534241,
0.01228617038577795,
-0.0026993020437657833,
-0.02765725739300251,
-0.007186250761151314,
-0.04311750456690788,
0.06330320239067078,
-0.009334993548691273,
-0.0485740602016449,
0.039408471435308456,
-0.051284510642290115,
-0.019722066819667816,
-0.0768197700381279,
-0.05638442933559418,
0.04072803258895874,
-0.014532988891005516,
-0.03411240130662918,
-0.007846030406653881,
0.06069974601268768,
0.004535986576229334,
-0.010654552839696407,
-0.035431962460279465,
0.017341511324048042,
0.02118428237736225,
-0.013222345151007175,
-0.021130787208676338,
-0.0020651554223150015,
0.037161655724048615,
-0.08687695860862732,
-0.07289675623178482,
0.017912130802869797,
0.049786631017923355,
-0.009441984817385674,
0.0008163661113940179,
-0.01714535988867283,
0.0452573299407959,
-0.05028592422604561,
0.08637766540050507,
-0.03990776464343071,
0.009602471254765987,
0.0022011236287653446,
-0.022717824205756187,
0.051962122321128845,
-0.00875099841505289,
-0.014247678220272064,
0.0028285831212997437,
0.02195105329155922,
-0.03698333352804184,
-0.028905490413308144,
-0.02503596991300583,
-0.018759146332740784,
-0.05342433601617813,
0.03215089440345764,
-0.06073540821671486,
-0.043010514229536057,
-0.029065977782011032,
0.04101334139704704,
0.012919202446937561,
0.0005929102771915495,
0.014229846186935902,
-0.04079936072230339,
0.034005410969257355,
0.0034683020785450935,
-0.045114677399396896,
0.007110465317964554,
-0.04119165986776352,
-0.05049990490078926,
-0.05142716318368912,
-0.06940170377492905,
0.0034036615397781134,
-0.03965811803936958,
-0.0035084239207208157,
-0.04229723662137985,
-0.027942568063735962,
0.033702269196510315,
0.0018344554118812084,
0.020631494000554085,
-0.025963228195905685,
-0.09486564248800278,
-0.019436758011579514,
0.003606499172747135,
0.0035396297462284565,
0.01160855870693922,
-0.026141546666622162,
-0.02261083386838436,
0.03712598979473114,
0.008430024608969688,
0.006967809982597828,
0.03662669658660889,
-0.01480046659708023,
0.012945950031280518,
-0.00005008252992411144,
0.003639934118837118,
-0.0029556353110820055,
-0.030046731233596802,
0.057311687618494034,
0.022521674633026123,
0.022753488272428513,
0.0011234089033678174,
-0.03202607110142708,
0.030028898268938065,
-0.0975760892033577,
0.0032966702710837126,
0.04996494948863983,
-0.05841726437211037,
0.00695443619042635,
-0.028994649648666382,
-0.07000798732042313,
0.01562964916229248,
0.02960093319416046,
0.015433498658239841,
-0.052960705012083054,
-0.04661255329847336,
0.008323033340275288,
-0.028299205005168915,
0.02382340282201767,
0.029868410900235176,
0.019329765811562538,
-0.005015218630433083,
-0.00249869329854846,
0.050927869975566864,
0.03894484415650368,
0.029065977782011032,
0.07382401823997498,
0.014452745206654072,
0.001409833668731153,
0.047147512435913086,
-0.0017018307698890567,
-0.04108466953039169,
-0.06194797903299332,
-0.025677917525172234,
0.028798498213291168,
0.058738239109516144,
0.060307443141937256,
-0.008947149850428104,
0.014818298630416393,
0.054672569036483765,
0.02931562252342701,
0.06212629750370979,
-0.013792965561151505,
-0.014657811261713505,
-0.013471990823745728,
-0.022343354299664497,
0.03074217401444912,
-0.054672569036483765,
0.03923015296459198,
0.027407610788941383,
-0.025981061160564423,
-0.015469162724912167,
-0.046790871769189835,
-0.007302158046513796,
-0.031312793493270874,
-0.008782204240560532,
0.03359527513384819,
-0.017608989030122757,
0.014657811261713505,
0.06440877914428711,
-0.032275717705488205,
-0.029743589460849762,
-0.020613662898540497,
0.05014326795935631,
-0.025053802877664566,
0.013623561710119247,
-0.014140686951577663,
0.007672169711440802,
-0.04261821135878563,
-0.04729016497731209,
-0.07054294645786285,
-0.024483181536197662,
0.002342664171010256,
-0.05823894590139389,
0.0023850149009376764,
0.009905613958835602,
-0.005866691004484892,
-0.022182868793606758,
0.05142716318368912,
0.019133616238832474,
0.014488408342003822,
0.003151786047965288,
-0.04247555509209633,
-0.010690216906368732,
0.04336715117096901,
0.03944413363933563,
-0.03840988501906395,
-0.03894484415650368,
-0.02833486907184124,
0.024233534932136536,
-0.03455819934606552,
0.019864723086357117,
-0.012624976225197315,
-0.012063272297382355,
0.027478938922286034,
0.027407610788941383,
-0.03395191580057144,
0.01909795217216015,
0.039051834493875504,
0.007841572165489197,
-0.028691507875919342,
0.03421939164400101,
-0.0065576764754951,
-0.008064471185207367,
-0.02712230198085308,
0.00920125376433134,
0.03637704998254776,
0.002307000569999218,
-0.010048268362879753,
-0.005318360403180122,
-0.028745003044605255,
-0.00559921283274889,
0.049501318484544754,
0.055813807994127274,
0.015121440403163433,
-0.01427442580461502,
0.00023655113182030618,
0.028905490413308144,
0.02690831758081913,
0.030189385637640953,
-0.09436634927988052,
-0.005407520104199648,
0.01374838501214981,
0.020916804671287537,
-0.026890486478805542,
-0.013668142259120941,
-0.010262250900268555,
-0.012892454862594604,
0.0015391147462651134,
-0.002721591852605343,
0.03944413363933563,
0.03300682455301285,
0.039943426847457886,
-0.04967964068055153,
-0.02644469030201435,
-0.009531144052743912,
0.0018400278640910983,
0.03585992753505707,
0.04315316677093506,
0.04079936072230339,
-0.05007193982601166,
0.04243989288806915,
0.017528746277093887,
0.014158518984913826,
0.0299040749669075,
0.022218532860279083,
0.03074217401444912,
0.046933528035879135,
-0.000713832734618336,
-0.03527147322893143,
0.0835958868265152,
0.060985054820775986,
-0.010494065470993519,
-0.009861033409833908,
0.029404783621430397,
-0.06818913668394089,
-0.0389091782271862,
-0.018955295905470848,
-0.007676627486944199,
-0.012526901438832283,
0.06640595197677612,
-0.04486503079533577,
-0.0019704236183315516,
-0.06626329571008682,
-0.12425259500741959,
-0.07093524932861328,
-0.054387256503105164,
0.013106437399983406,
-0.10114246606826782,
-0.016066530719399452,
0.03111664392054081,
0.08644898980855942,
0.01386429276317358,
-0.015317591838538647,
0.02097029983997345,
0.012651724740862846,
0.07193383574485779,
0.031598106026649475,
-0.03313164785504341,
-0.023431099951267242,
0.049857959151268005,
0.0035507746506482363,
-0.0013607959263026714,
-0.019204942509531975,
0.017546577379107475,
0.009825370274484158,
-0.005643792450428009,
-0.04846706986427307,
-0.006018261890858412,
-0.04261821135878563,
-0.017047284170985222,
-0.002369411988183856,
-0.03238270804286003,
-0.015362171456217766,
0.0073645696975290775,
0.0703289657831192,
-0.015950623899698257,
0.05495787784457207,
-0.018135029822587967,
0.01931193470954895,
-0.06804648041725159,
-0.029957571998238564,
-0.022218532860279083,
-0.06423045694828033,
-0.028210045769810677,
0.03758962079882622,
0.07860296219587326,
-0.07517924159765244,
-0.0022390163503587246,
-0.041904937475919724,
-0.048360079526901245,
-0.006303572095930576,
-0.07560720294713974,
0.01554940640926361,
0.05788230895996094,
-0.025749245658516884,
-0.002409533830359578,
0.032204389572143555,
0.09258315712213516,
-0.055136196315288544,
0.029030313715338707,
0.0014131771167740226,
-0.06508638709783554,
0.048360079526901245,
-0.030385537073016167,
0.026177210733294487,
-0.04126298800110817,
-0.041976261883974075,
0.011314332485198975,
0.017421754077076912,
0.0037045746576040983,
0.05691938474774361,
0.02246817760169506,
-0.035663776099681854,
-0.011528315022587776,
0.0026079134549945593,
0.014105022884905338,
0.049180347472429276,
0.006851902697235346,
-0.013953451998531818,
0.0004457971954252571,
-0.018277684226632118,
-0.006031636148691177,
0.008960523642599583,
0.03402324020862579,
0.028049558401107788,
0.011465903371572495,
-0.07589251548051834,
-0.02097029983997345,
-0.02697964571416378,
-0.0074358973652124405,
-0.001743067055940628,
-0.03561028093099594,
-0.009495479986071587,
-0.03277501091361046,
0.009762958623468876,
-0.003147328272461891,
-0.018616490066051483,
0.012393161654472351,
-0.005706204101443291,
-0.051676809787750244,
-0.06480108201503754,
-0.0005895667709410191,
0.05010760575532913,
0.05278238654136658,
0.04318883270025253,
-0.06201930344104767,
0.07189816981554031,
-0.019490253180265427,
0.00753397261723876,
0.07361003011465073,
-0.06986533850431442,
0.028317037969827652,
-0.048502735793590546,
0.05206911265850067,
0.020025210455060005,
-0.027193628251552582,
-0.0038293979596346617,
0.0383385568857193,
-0.018206357955932617,
-0.013168849050998688,
0.03898050636053085,
-0.05556416139006615,
0.06127036735415459,
0.026801327243447304,
0.04461538419127464,
-0.007351195905357599,
0.047468483448028564,
-0.008443398401141167,
-0.03411240130662918,
-0.034005410969257355,
0.04012174904346466,
0.010235503315925598,
0.019276270642876625,
0.026729999110102654,
-0.017261266708374023,
-0.015273012220859528,
0.008367612957954407,
-0.008425567299127579,
-0.054387256503105164,
0.07050728052854538,
-0.05927319452166557,
0.037625283002853394,
0.01630726084113121,
0.015897128731012344,
-0.02029268816113472,
0.029707925394177437,
0.04087068513035774,
0.010699132457375526,
-0.006709247827529907,
-0.0335061177611351,
0.0074358973652124405,
0.02788907289505005,
-0.07674844563007355,
0.02847752533853054,
-0.05538584291934967,
-0.0691877231001854,
-0.015201684087514877,
0.06719055026769638,
0.014345753937959671,
-0.001427665469236672,
0.011822541244328022,
-0.028299205005168915,
0.04318883270025253,
-0.056491419672966,
0.0033724557142704725,
-0.052354421466588974,
-0.0354497916996479,
-0.015504825860261917,
-0.019062288105487823,
-0.0423685647547245,
0.09629219025373459,
-0.015103609301149845,
-0.04743282124400139,
-0.0026368903927505016,
0.020167864859104156,
-0.023912562057375908,
0.026890486478805542,
-0.002799606416374445,
-0.05688372254371643,
-0.04097767919301987,
0.042047590017318726,
-0.0026658670976758003,
0.0065309288911521435,
0.007948564365506172,
-0.02239685133099556,
-0.00861280132085085,
0.0009952422697097063,
0.008314117789268494,
0.010057184845209122,
0.012500152923166752,
-0.032436203211545944,
0.040621038526296616,
0.021897558122873306,
-0.022272028028964996,
-0.018456004559993744,
0.05010760575532913,
-0.011786878108978271,
0.0318477526307106,
0.04094201326370239,
-0.006071757525205612,
-0.03607390820980072,
-0.026801327243447304,
0.09957326203584671,
0.043616797775030136,
-0.001646106131374836,
0.06590665876865387,
-0.027086637914180756,
0.06661993265151978,
0.03955112770199776,
-0.00984320230782032,
-0.018990959972143173,
0.00703022163361311,
-0.06426612287759781,
-0.033042486757040024,
0.0021543148905038834,
-0.010601057671010494,
0.014203098602592945,
0.017484165728092194,
-0.03309598192572594,
0.01115384604781866,
-0.024625835940241814,
0.04112033173441887,
0.07353870570659637,
0.05855992063879967,
-0.0034571571741253138,
0.018010206520557404
]
|
42,112 | flask_restful | handle_error | Error handler for the API transforms a raised exception into a Flask
response, with the appropriate HTTP status code and body.
:param e: the raised Exception object
:type e: Exception
| def handle_error(self, e):
"""Error handler for the API transforms a raised exception into a Flask
response, with the appropriate HTTP status code and body.
:param e: the raised Exception object
:type e: Exception
"""
got_request_exception.send(current_app._get_current_object(), exception=e)
_handle_flask_propagate_exceptions_config(current_app, e)
headers = Headers()
if isinstance(e, HTTPException):
if e.response is not None:
# If HTTPException is initialized with a response, then return e.get_response().
# This prevents specified error response from being overridden.
# e.g., HTTPException(response=Response("Hello World"))
resp = e.get_response()
return resp
code = e.code
default_data = {
'message': getattr(e, 'description', http_status_message(code))
}
headers = e.get_response().headers
else:
code = 500
default_data = {
'message': http_status_message(code),
}
# Werkzeug exceptions generate a content-length header which is added
# to the response in addition to the actual content-length header
# https://github.com/flask-restful/flask-restful/issues/534
remove_headers = ('Content-Length',)
for header in remove_headers:
headers.pop(header, None)
data = getattr(e, 'data', default_data)
if code and code >= 500:
exc_info = sys.exc_info()
if exc_info[1] is None:
exc_info = None
current_app.log_exception(exc_info)
error_cls_name = type(e).__name__
if error_cls_name in self.errors:
custom_data = self.errors.get(error_cls_name, {})
code = custom_data.get('status', 500)
data.update(custom_data)
if code == 406 and self.default_mediatype is None:
# if we are handling NotAcceptable (406), make sure that
# make_response uses a representation we support as the
# default mediatype (so that make_response doesn't throw
# another NotAcceptable error).
supported_mediatypes = list(self.representations.keys())
fallback_mediatype = supported_mediatypes[0] if supported_mediatypes else "text/plain"
resp = self.make_response(
data,
code,
headers,
fallback_mediatype = fallback_mediatype
)
else:
resp = self.make_response(data, code, headers)
if code == 401:
resp = self.unauthorized(resp)
return resp
| (self, e) | [
0.005518163554370403,
-0.05487479269504547,
-0.04564981162548065,
0.029100269079208374,
0.026962289586663246,
-0.0486588180065155,
-0.02096407115459442,
0.03220825642347336,
0.02351776883006096,
-0.013985945843160152,
0.052538853138685226,
-0.02167673222720623,
0.06928635388612747,
-0.02670494094491005,
0.039671387523412704,
0.04766901209950447,
0.04513511061668396,
0.010907651856541634,
0.08567752689123154,
-0.07886766642332077,
0.03856280446052551,
-0.005146986339241266,
-0.034643176943063736,
0.004716421011835337,
-0.017905574291944504,
0.021300604566931725,
-0.0033999804873019457,
0.003941898699849844,
0.07178066670894623,
-0.04707513004541397,
-0.016054637730121613,
-0.04644165560603142,
0.05028209835290909,
0.04786697402596474,
-0.002030337695032358,
-0.012441850267350674,
-0.028981493785977364,
-0.018034249544143677,
-0.062476497143507004,
0.02894190140068531,
-0.062001392245292664,
0.015549837611615658,
-0.040977928787469864,
-0.027140455320477486,
0.04192814230918884,
0.02989211305975914,
-0.04141344502568245,
0.04458082094788551,
-0.02989211305975914,
0.04671879857778549,
-0.046283286064863205,
-0.021874692291021347,
0.021597547456622124,
-0.022706128656864166,
0.04105711355805397,
0.02262694388628006,
0.004657032899558544,
-0.01284767035394907,
-0.029080472886562347,
-0.05063842982053757,
-0.027853114530444145,
0.07886766642332077,
0.0041101654060184956,
-0.038067903369665146,
0.009205187670886517,
0.028328221291303635,
-0.03248540312051773,
-0.005206374917179346,
-0.03792933002114296,
-0.005889340303838253,
0.014461052604019642,
0.0033232704736292362,
-0.006206077989190817,
0.03777096047997475,
0.05004454404115677,
-0.010353361256420612,
-0.021835099905729294,
-0.04861922562122345,
0.03389092534780502,
-0.010620608925819397,
0.0707908570766449,
0.009368505328893661,
-0.006953380536288023,
-0.006834604311734438,
0.07475008070468903,
-0.034049294888973236,
-0.011204593814909458,
0.0029372465796768665,
-0.01359002385288477,
0.00586459506303072,
-0.025299418717622757,
-0.03173315152525902,
-0.022290410473942757,
0.0026056619826704264,
-0.02286449819803238,
-0.0006922449101693928,
0.005775512661784887,
-0.038008514791727066,
0.059982188045978546,
-0.04596654698252678,
0.018835991621017456,
0.10301890969276428,
0.013025835156440735,
0.0022777889389544725,
0.029515987262129784,
-0.007572008762508631,
0.0022604672703891993,
-0.04509551823139191,
0.020746314898133278,
-0.007487875409424305,
-0.027496784925460815,
-0.04004751518368721,
-0.017757102847099304,
-0.03036721982061863,
-0.02688310667872429,
-0.0011908592423424125,
0.05772543326020241,
0.013738494366407394,
-0.01384737342596054,
-0.02953578345477581,
0.020865092054009438,
-0.08009503036737442,
0.007007820066064596,
-0.04671879857778549,
0.012233991175889969,
0.037018708884716034,
-0.0046520838513970375,
-0.02244878001511097,
0.019489262253046036,
-0.0054439278319478035,
-0.03007027879357338,
0.03480154648423195,
-0.039077505469322205,
0.003971592988818884,
-0.0018595963483676314,
0.03533603996038437,
-0.07482926547527313,
0.042680393904447556,
0.006775215733796358,
0.038424234837293625,
0.016242701560258865,
0.01610412821173668,
0.004854993894696236,
0.028605366125702858,
-0.01863802969455719,
-0.011174899525940418,
0.02120162546634674,
-0.0025153420865535736,
-0.014856974594295025,
0.001147555303759873,
0.017974860966205597,
0.027872910723090172,
0.06053647771477699,
0.02769474685192108,
-0.034346237778663635,
0.005770563613623381,
-0.007903593592345715,
-0.02244878001511097,
0.01240225788205862,
0.007868950255215168,
-0.001009601168334484,
-0.03260418027639389,
0.04040384292602539,
-0.06318915635347366,
-0.01388696487993002,
-0.016331784427165985,
-0.002551222685724497,
0.027437396347522736,
0.013401960954070091,
0.0051865787245333195,
-0.036306049674749374,
0.014431358315050602,
-0.006151638459414244,
-0.01780659332871437,
-0.02027120813727379,
0.0744333416223526,
0.0450163334608078,
0.005285559222102165,
-0.030149463564157486,
0.015619124285876751,
0.081718310713768,
-0.055151939392089844,
-0.029614968225359917,
0.03153518959879875,
-0.005547857377678156,
0.028031280264258385,
-0.036899931728839874,
0.005943779367953539,
0.010214788839221,
0.04656043276190758,
0.028328221291303635,
0.008017420768737793,
0.010462239384651184,
0.017549244686961174,
0.005562704522162676,
0.07566069811582565,
0.007888746447861195,
-0.02179550752043724,
0.0936751514673233,
-0.04157181456685066,
-0.04430367425084114,
0.06184302270412445,
0.012135010212659836,
-0.002013016026467085,
-0.025774523615837097,
0.015846779569983482,
-0.00694348243996501,
-0.03402949869632721,
-0.06889043748378754,
-0.008888449519872665,
-0.0660397931933403,
0.009363556280732155,
-0.016361478716135025,
0.013283183798193932,
0.05416213348507881,
-0.0172720979899168,
0.0028605367988348007,
-0.026210037991404533,
0.05257844552397728,
-0.023676138371229172,
-0.004444224759936333,
0.00590913649648428,
-0.03828566148877144,
0.018301496282219887,
0.03509848937392235,
0.04410571604967117,
-0.0007417351589538157,
-0.005280610173940659,
0.0118479672819376,
0.05428091064095497,
-0.05352865904569626,
0.011036327108740807,
0.000902578525710851,
-0.024369001388549805,
0.018737010657787323,
0.006112046539783478,
0.050955165177583694,
-0.043393053114414215,
0.0020563199650496244,
-0.016331784427165985,
0.027575969696044922,
-0.0190537478774786,
0.0037439377047121525,
0.010363259352743626,
-0.032109275460243225,
-0.04624369367957115,
-0.04466000571846962,
0.06726715713739395,
-0.06501039862632751,
-0.04188854992389679,
-0.012214194983243942,
0.008581610396504402,
0.005236068740487099,
-0.027575969696044922,
0.014550134539604187,
-0.031812336295843124,
-0.036009110510349274,
-0.011897456832230091,
0.004080471582710743,
0.01976640708744526,
0.06754429638385773,
0.0051717315800487995,
0.01845986396074295,
0.028803328052163124,
-0.043630607426166534,
-0.017727408558130264,
0.007661091163754463,
0.03591012954711914,
0.041967734694480896,
0.029258638620376587,
0.07269128412008286,
0.0432346872985363,
-0.017796695232391357,
-0.023596953600645065,
-0.008487578481435776,
0.04572899639606476,
-0.029991094022989273,
0.018054043874144554,
-0.04133426025509834,
0.0010479561751708388,
-0.03137682005763054,
-0.0333564318716526,
0.02935761958360672,
0.025952689349651337,
0.0020934378262609243,
0.0369197279214859,
0.009417995810508728,
0.02381470985710621,
-0.0019523905357345939,
-0.0014426409034058452,
0.04656043276190758,
-0.002905077999457717,
0.008344057016074657,
-0.0002737429749686271,
-0.046520840376615524,
-0.011946947313845158,
-0.0522221177816391,
-0.028922105208039284,
0.030406812205910683,
-0.03790953382849693,
-0.006785113830119371,
0.051549047231674194,
0.09779274463653564,
-0.0007918440969660878,
0.0030114820692688227,
-0.06857369840145111,
0.04846085608005524,
-0.023359399288892746,
-0.005354845430701971,
-0.028130261227488518,
0.01204592827707529,
0.03549440950155258,
-0.022310206666588783,
-0.02953578345477581,
0.0032564587891101837,
0.03177274391055107,
0.035949721932411194,
0.013758290559053421,
-0.00842324085533619,
0.03992873802781105,
-0.005424131639301777,
0.023240623995661736,
-0.006537662353366613,
-0.0030040584970265627,
0.05689399689435959,
-0.01237256359308958,
0.051549047231674194,
0.021696526557207108,
0.020142532885074615,
0.021538158878684044,
0.00034828766365535557,
-0.03549440950155258,
-0.050004951655864716,
-0.0034074040595442057,
0.038483623415231705,
-0.06504999101161957,
0.022607147693634033,
-0.057685840874910355,
-0.032802142202854156,
-0.04854004085063934,
-0.02179550752043724,
-0.019340790808200836,
0.008888449519872665,
0.044739190489053726,
-0.04216569662094116,
-0.009581313468515873,
0.02527962252497673,
-0.0016591608291491866,
-0.01631198823451996,
0.021538158878684044,
-0.03903791308403015,
-0.0008852569153532386,
-0.0233989916741848,
0.02510145679116249,
0.008254974149167538,
-0.07391864061355591,
-0.03367316722869873,
-0.036820750683546066,
-0.023141643032431602,
0.013382164761424065,
0.011590617708861828,
-0.00948233250528574,
-0.06504999101161957,
0.014401664026081562,
0.006715827621519566,
0.008205484598875046,
-0.02900128811597824,
-0.03786994144320488,
-0.035652779042720795,
0.028427202254533768,
0.0019684748258441687,
-0.0035063845571130514,
-0.03232703357934952,
0.0038305455818772316,
0.030446404591202736,
0.01104622520506382,
-0.06508958339691162,
-0.010670098476111889,
-0.05665644258260727,
0.06940513104200363,
0.032683365046978,
-0.010937346145510674,
-0.028328221291303635,
-0.04212610423564911,
0.07110759615898132,
-0.07051371783018112,
0.03515787795186043,
-0.05701277405023575,
-0.02468573860824108,
0.0018472237279638648,
-0.004681778140366077,
-0.0498465858399868,
0.021597547456622124,
0.08211422711610794,
-0.024369001388549805,
-0.042799171060323715,
-0.06896961480379105,
0.0031228349544107914,
0.0332772471010685,
0.02870434708893299,
0.019459567964076996,
0.04477878287434578,
0.020221717655658722,
0.025299418717622757,
0.023359399288892746,
0.04636247083544731,
0.01845986396074295,
0.025913096964359283,
-0.0025190538726747036,
0.07039494067430496,
0.005513214506208897,
0.0034148276317864656,
0.012877363711595535,
-0.039790164679288864,
0.017945166677236557,
0.04968821629881859,
0.00986835639923811,
0.030624568462371826,
0.018271801993250847,
-0.011956845410168171,
0.04671879857778549,
0.023735525086522102,
0.09217064827680588,
-0.0041472832672297955,
-0.05554785951972008,
0.014332377351820469,
-0.041967734694480896,
0.03786994144320488,
-0.05483520030975342,
0.02846679463982582,
0.02012273669242859,
-0.015242998488247395,
-0.06433732807636261,
-0.03353459760546684,
0.013095120899379253,
-0.035296447575092316,
-0.03656340017914772,
0.002317381091415882,
-0.017668019980192184,
0.018687520176172256,
0.0659606084227562,
0.003974067512899637,
-0.0030956154223531485,
0.021241217851638794,
0.05352865904569626,
-0.019004257395863533,
-0.014035436324775219,
0.0004209764883853495,
0.028387609869241714,
-0.027575969696044922,
-0.010719588957726955,
-0.047708604484796524,
-0.011590617708861828,
-0.020350392907857895,
-0.017321588471531868,
-0.011214491911232471,
-0.031000696122646332,
-0.011570821516215801,
-0.004842621274292469,
0.036365438252687454,
0.016698012128472328,
0.0015552312834188342,
0.012689300812780857,
-0.03838464245200157,
-0.022191429510712624,
0.011551025323569775,
0.07300802320241928,
-0.005641888827085495,
-0.030683957040309906,
0.004795605782419443,
0.023497972637414932,
-0.021993469446897507,
0.02399287559092045,
0.0009724834817461669,
-0.021300604566931725,
0.011353064328432083,
0.044145308434963226,
-0.014470950700342655,
-0.0004763437027577311,
-0.002781352261081338,
0.0780758261680603,
-0.017351282760500908,
0.012600218877196312,
-0.0516282320022583,
0.011927151121199131,
-0.046402063220739365,
0.024487778544425964,
0.007982778362929821,
-0.014985648915171623,
-0.029397210106253624,
0.009388301521539688,
-0.005785410758107901,
-0.044224489480257034,
0.02161734364926815,
-0.007027616258710623,
-0.009744631126523018,
-0.014164110645651817,
-0.044145308434963226,
-0.008304464630782604,
-0.0582401305437088,
0.027318621054291725,
-0.09898050874471664,
0.022527962923049927,
0.001873206114396453,
0.027397803962230682,
-0.0038874594029039145,
-0.008418291807174683,
0.0050554294139146805,
0.03270316123962402,
-0.03579135239124298,
-0.042046919465065,
0.015470653772354126,
0.005933881271630526,
-0.0013337623095139861,
-0.03963179513812065,
0.009709987789392471,
-0.0078095621429383755,
0.039136894047260284,
0.0381074957549572,
0.023141643032431602,
0.03495991602540016,
-0.025002475827932358,
0.03480154648423195,
0.039136894047260284,
0.0017321589402854443,
0.04949025437235832,
0.09209146350622177,
-0.002114471048116684,
0.045214295387268066,
0.04889637231826782,
-0.04228447377681732,
0.05150945484638214,
0.06659408658742905,
0.0024175988510251045,
0.0002392544411122799,
0.010086113587021828,
-0.055151939392089844,
-0.011907354928553104,
-0.01795506477355957,
-0.014322479255497456,
0.027793725952506065,
0.055904190987348557,
-0.00772542878985405,
-0.011679699644446373,
-0.1092744842171669,
-0.09818866103887558,
-0.0438285693526268,
-0.034286849200725555,
-0.003553400281816721,
-0.0738394558429718,
-0.026982085779309273,
0.018509354442358017,
0.08266852051019669,
-0.003177274251356721,
-0.05194497108459473,
0.0064832232892513275,
0.05740869417786598,
0.028803328052163124,
0.033871129155159,
-0.020449373871088028,
-0.024824311956763268,
0.03495991602540016,
0.03353459760546684,
-0.058160945773124695,
-0.034227460622787476,
0.050955165177583694,
-0.010021776892244816,
0.022488372400403023,
-0.07090963423252106,
-0.03862219303846359,
-0.05285559222102165,
0.02828862890601158,
-0.0006507968646474183,
-0.0498465858399868,
-0.005651786923408508,
0.06766307353973389,
0.03994853422045708,
0.03717707842588425,
0.05436009541153908,
-0.0062110270373523235,
0.03509848937392235,
-0.05040087550878525,
-0.03242601454257965,
-0.039730776101350784,
-0.046639613807201385,
-0.038364846259355545,
-0.007572008762508631,
0.024764923378825188,
-0.03226764500141144,
0.00507770013064146,
-0.039433833211660385,
-0.05051965266466141,
0.017697714269161224,
-0.10555281490087509,
0.0456102192401886,
0.11315451562404633,
-0.031574781984090805,
-0.034405626356601715,
-0.017875880002975464,
0.05317232757806778,
0.013481144793331623,
0.03359398618340492,
-0.017440365627408028,
-0.035355836153030396,
0.0432346872985363,
-0.028031280264258385,
0.017499754205346107,
0.0008555627427995205,
-0.04307631775736809,
-0.00544887688010931,
-0.02399287559092045,
-0.03646441921591759,
0.002381718484684825,
-0.01875680685043335,
-0.07593784481287003,
-0.007502722553908825,
-0.012827874161303043,
0.026427796110510826,
0.05412254109978676,
-0.0641789585351944,
0.015549837611615658,
-0.05665644258260727,
-0.04766901209950447,
0.02581411600112915,
0.0026353560388088226,
0.03539542853832245,
0.018855785951018333,
0.013471247628331184,
-0.10341483354568481,
-0.01813322864472866,
0.01840047724545002,
0.04359101504087448,
0.014807484112679958,
-0.03048599697649479,
0.018865684047341347,
0.0498465858399868,
0.010204890742897987,
-0.0062258741818368435,
0.002150351647287607,
0.036306049674749374,
0.07938236743211746,
-0.07815501093864441,
-0.07372068613767624,
0.020013859495520592,
-0.0001333917025476694,
0.05016332119703293,
0.03383153676986694,
-0.04028506577014923,
0.06611897796392441,
-0.044620413333177567,
-0.021221421658992767,
0.00512719014659524,
-0.050004951655864716,
-0.025378601625561714,
-0.08076809346675873,
0.015737900510430336,
0.006052657961845398,
-0.011442147195339203,
-0.0034841138403862715,
0.04331387206912041,
-0.0038107496220618486,
-0.0300108902156353,
0.03882015496492386,
-0.050480060279369354,
0.03197070583701134,
-0.031456004828214645,
0.038008514791727066,
-0.05483520030975342,
0.09565476328134537,
-0.0020996241364628077,
0.017074137926101685,
-0.030921511352062225,
0.012451748363673687,
0.0047906567342579365,
-0.0035558748058974743,
0.02179550752043724,
-0.017846185714006424,
0.006196179892867804,
0.006968227680772543,
0.003964169416576624,
-0.013748392462730408,
0.07712560892105103,
-0.0852024182677269,
0.05610215291380882,
0.021063052117824554,
-0.03868158161640167,
0.020686926320195198,
0.031119471415877342,
0.0010529051069170237,
-0.018915174528956413,
-0.020686926320195198,
-0.05004454404115677,
-0.017677918076515198,
0.04469959810376167,
-0.13983966410160065,
-0.0035929924342781305,
-0.03480154648423195,
-0.06279323250055313,
0.014094823971390724,
0.06714837998151779,
0.006854400038719177,
-0.02947639487683773,
0.014540236443281174,
0.005097496323287487,
0.02888251282274723,
-0.04608532413840294,
-0.011778680607676506,
-0.026071466505527496,
-0.01759873516857624,
-0.00693853385746479,
0.0012991192052140832,
0.04897555708885193,
0.07989706844091415,
-0.021340196952223778,
-0.028981493785977364,
0.04028506577014923,
0.018410375341773033,
-0.016836583614349365,
0.0055676535703241825,
0.002366871340200305,
-0.057091958820819855,
-0.00005876967770745978,
0.04319509491324425,
0.0054191830568015575,
-0.04608532413840294,
-0.022349799051880836,
0.02298327349126339,
-0.0189052764326334,
0.028981493785977364,
0.003912204410880804,
0.0333564318716526,
0.01673760451376438,
-0.04861922562122345,
0.007314659655094147,
0.010887855663895607,
-0.04188854992389679,
0.004444224759936333,
0.010620608925819397,
-0.029971297830343246,
0.008408394642174244,
0.003783529857173562,
-0.000014064125025470275,
-0.06607938557863235,
-0.011560923419892788,
0.04406612366437912,
0.028427202254533768,
0.033989906311035156,
0.03226764500141144,
-0.002013016026467085,
0.06275364011526108,
0.053726620972156525,
-0.03715728223323822,
-0.007958033122122288,
0.013055529445409775,
0.00219984189607203,
0.004209145903587341,
-0.0013844898203387856,
-0.012243889272212982,
0.03220825642347336,
-0.007477977313101292,
0.00946748536080122,
0.002798673929646611,
-0.026328815147280693,
0.007532416842877865,
0.021874692291021347,
0.09343759715557098,
-0.01807384006679058,
0.025061864405870438
]
|
42,113 | flask_restful | init_app | Initialize this class with the given :class:`flask.Flask`
application or :class:`flask.Blueprint` object.
:param app: the Flask application or blueprint object
:type app: flask.Flask
:type app: flask.Blueprint
Examples::
api = Api()
api.add_resource(...)
api.init_app(app)
| def init_app(self, app):
"""Initialize this class with the given :class:`flask.Flask`
application or :class:`flask.Blueprint` object.
:param app: the Flask application or blueprint object
:type app: flask.Flask
:type app: flask.Blueprint
Examples::
api = Api()
api.add_resource(...)
api.init_app(app)
"""
# If app is a blueprint, defer the initialization
try:
app.record(self._deferred_blueprint_init)
# Flask.Blueprint has a 'record' attribute, Flask.Api does not
except AttributeError:
self._init_app(app)
else:
self.blueprint = app
| (self, app) | [
0.030170433223247528,
-0.00618782127276063,
-0.048003654927015305,
-0.022387614473700523,
0.023540623486042023,
-0.01198169682174921,
0.06725892424583435,
0.02092713490128517,
0.032245852053165436,
0.018986234441399574,
0.006812368519604206,
-0.027806760743260384,
0.029632361605763435,
0.0037448809016495943,
-0.0035911460872739553,
0.03364868089556694,
0.02928645722568035,
0.04842642694711685,
0.030093565583229065,
-0.0713328942656517,
0.037530481815338135,
0.024635983631014824,
-0.03774186596274376,
0.049195099622011185,
0.00018631323473528028,
0.023213937878608704,
-0.027902845293283463,
0.021522855386137962,
0.056266896426677704,
-0.04938726872205734,
0.053192202001810074,
-0.0031683759298175573,
0.09047286212444305,
0.02534700743854046,
0.03539741039276123,
-0.027287906035780907,
0.04373751953244209,
-0.011722269468009472,
-0.11491667479276657,
0.006461660843342543,
0.07809722423553467,
-0.04961787164211273,
0.019485872238874435,
-0.026423148810863495,
0.05964905768632889,
0.03122735768556595,
0.03140030801296234,
0.005496014840900898,
-0.032399583607912064,
-0.0015325426356866956,
-0.053499672561883926,
-0.03241880238056183,
0.018419336527585983,
0.03391771391034126,
-0.031611695885658264,
0.06287748366594315,
-0.027710678055882454,
0.011299499310553074,
-0.01363434549421072,
-0.02231074683368206,
-0.021657373756170273,
-0.006250275764614344,
0.016516869887709618,
-0.011962479911744595,
0.007484957575798035,
0.04104715958237648,
-0.06341555714607239,
0.004547183867543936,
0.014835397712886333,
0.047350283712148666,
0.0016298278933390975,
0.04938726872205734,
0.004523162730038166,
0.036800239235162735,
0.050617147237062454,
-0.0064088148064911366,
0.03245723620057106,
-0.08078757673501968,
-0.029228806495666504,
-0.034916989505290985,
0.038222286850214005,
0.0032332325354218483,
-0.052269794046878815,
0.02640393190085888,
0.019226444885134697,
-0.0034614326432347298,
-0.022887252271175385,
-0.018284820020198822,
-0.025654476135969162,
0.0024813739582896233,
-0.0427766777575016,
0.0229641180485487,
0.030381817370653152,
0.006019673775881529,
-0.0037064473144710064,
-0.06264688819646835,
-0.02231074683368206,
0.0233292393386364,
-0.010040796361863613,
-0.024712851271033287,
-0.0007356444839388132,
-0.026826702058315277,
-0.02538543939590454,
-0.0015505584888160229,
0.02108086831867695,
-0.05173172056674957,
-0.03067006915807724,
-0.021695807576179504,
-0.00035581173142418265,
0.008786898106336594,
0.004052350297570229,
0.012952147051692009,
-0.02603881247341633,
0.01913996785879135,
-0.030285732820630074,
0.004684103652834892,
0.060878936201334,
0.025558391585946083,
0.05096304789185524,
-0.012394859455525875,
-0.015152474865317345,
-0.016180574893951416,
0.010242573916912079,
-0.02442459762096405,
0.046389441937208176,
-0.006317534949630499,
0.010953596793115139,
-0.02736477367579937,
-0.02250291407108307,
-0.06022556498646736,
0.05995652824640274,
0.02359827421605587,
-0.07152505964040756,
-0.038452889770269394,
0.04269981011748314,
-0.040009453892707825,
0.043968118727207184,
0.0157674141228199,
-0.05519075319170952,
-0.0029714033007621765,
-0.04408342018723488,
0.03737674653530121,
-0.035282108932733536,
0.01983177475631237,
0.00624547153711319,
-0.0036872304044663906,
-0.05184702202677727,
0.021196169778704643,
0.06141700595617294,
0.051347386091947556,
0.012808021157979965,
0.0450826957821846,
0.07494565844535828,
0.03337964415550232,
-0.022099360823631287,
0.002005757298320532,
-0.023752009496092796,
-0.03570488095283508,
0.0630696564912796,
-0.05799641087651253,
-0.002911350689828396,
0.03337964415550232,
-0.016766689717769623,
-0.05880351737141609,
-0.023425322026014328,
0.014172416180372238,
-0.04669691249728203,
-0.006293513812124729,
-0.004616844933480024,
0.0315348282456398,
-0.03228428587317467,
-0.08040323853492737,
0.003989895340055227,
-0.04788835346698761,
0.04973316937685013,
0.027441641315817833,
-0.000284198991721496,
-0.03255331888794899,
0.00821039266884327,
0.053922440856695175,
0.049425702542066574,
0.026884352788329124,
-0.04050908982753754,
0.013422959484159946,
-0.02832561545073986,
0.02121538668870926,
-0.021042434498667717,
0.0766751766204834,
0.041162461042404175,
0.018957408145070076,
-0.016872381791472435,
0.00869081448763609,
0.008436190895736217,
0.00199134461581707,
-0.00018301032832823694,
0.0046384637244045734,
-0.016122926026582718,
0.030554769560694695,
0.023482972756028175,
0.0001731016527628526,
-0.02699965424835682,
0.04911823198199272,
-0.008959849365055561,
-0.006644221022725105,
0.0009578391909599304,
-0.00796537846326828,
0.012510159984230995,
0.023021768778562546,
-0.09039599448442459,
-0.025500740855932236,
0.012615852989256382,
-0.03797246888279915,
0.029574710875749588,
-0.014306934550404549,
0.022233879193663597,
-0.02419399656355381,
0.05280786380171776,
-0.015690546482801437,
0.013480610214173794,
0.03193838149309158,
-0.015344643034040928,
0.03758813068270683,
-0.037761081010103226,
-0.005947610829025507,
-0.026615317910909653,
0.017458494752645493,
-0.020869484171271324,
-0.03662728890776634,
-0.020177677273750305,
0.01864033006131649,
-0.05749677121639252,
0.03057398647069931,
0.0045976280234754086,
-0.04112402722239494,
0.011049680411815643,
0.022983334958553314,
0.04842642694711685,
0.016651388257741928,
-0.04627414047718048,
-0.04146993160247803,
0.08386227488517761,
0.043775953352451324,
-0.013519044034183025,
-0.03630060330033302,
-0.03599313274025917,
0.0548064149916172,
-0.029805311933159828,
-0.024847369641065598,
-0.001957715256139636,
-0.011328324675559998,
-0.05311533436179161,
-0.008839744143188,
0.017439277842640877,
-0.020638881251215935,
-0.03779951483011246,
-0.017996566370129585,
-0.01956273801624775,
0.019091926515102386,
-0.02723025716841221,
0.0662212148308754,
0.030516335740685463,
-0.007124641910195351,
0.012269949540495872,
0.10046561807394028,
-0.03943294659256935,
-0.006999732460826635,
0.003435009391978383,
-0.016286268830299377,
0.003968276549130678,
0.006024478003382683,
0.17018429934978485,
-0.0038313567638397217,
0.04062439128756523,
-0.018496204167604446,
0.025193272158503532,
-0.04385282099246979,
-0.05730460584163666,
0.012980972416698933,
-0.01705494150519371,
-0.004720135126262903,
0.08124878257513046,
-0.07410012185573578,
0.06798916310071945,
0.031015973538160324,
-0.013000189326703548,
-0.04296884685754776,
-0.029593927785754204,
0.07444602251052856,
-0.01979334093630314,
-0.041662100702524185,
0.07552216202020645,
-0.0004936324548907578,
-0.011309107765555382,
0.05050184577703476,
-0.0011199811706319451,
-0.011789528653025627,
-0.01080946996808052,
0.05526762083172798,
-0.017160633578896523,
-0.04200800135731697,
0.0623394139111042,
0.023348456248641014,
0.030228082090616226,
0.05207762494683266,
-0.0072015090845525265,
-0.02244526520371437,
-0.006509703118354082,
0.01345178484916687,
0.0030026305466890335,
0.008340106345713139,
0.005697791930288076,
0.017400844022631645,
0.00455198809504509,
0.002135470975190401,
-0.05184702202677727,
0.007417698856443167,
-0.000054873074986971915,
-0.0585729144513607,
-0.024943452328443527,
-0.0010629312600940466,
-0.009488312527537346,
0.02851778455078602,
0.038914091885089874,
-0.004556792322546244,
-0.007806839421391487,
0.00035310935345478356,
0.05987966060638428,
-0.022483697161078453,
-0.00540473498404026,
0.011952871456742287,
-0.04831112548708916,
0.059110987931489944,
0.01396103110164404,
0.008998283185064793,
0.005361497402191162,
-0.0157674141228199,
-0.018284820020198822,
-0.055575087666511536,
-0.05430677905678749,
-0.05530605465173721,
0.056958701461553574,
-0.05619002878665924,
-0.02263743244111538,
0.016449611634016037,
-0.025788994506001472,
0.0028032560367137194,
-0.041162461042404175,
-0.06060989946126938,
-0.004412665963172913,
-0.038818009197711945,
0.018765240907669067,
-0.04631257429718971,
-0.020120026543736458,
0.0011049680178985,
-0.015988407656550407,
-0.017996566370129585,
-0.04585137218236923,
-0.026250198483467102,
0.029267240315675735,
-0.016209401190280914,
0.004016318824142218,
0.05945688858628273,
-0.08486154675483704,
-0.0035070725716650486,
-0.026961220428347588,
0.00586593896150589,
-0.03351416066288948,
0.019418612122535706,
-0.027883628383278847,
-0.0042997668497264385,
0.004712929017841816,
-0.047081246972084045,
0.029324891045689583,
0.029959047213196754,
0.022099360823631287,
-0.0075570205226540565,
-0.012587027624249458,
-0.019418612122535706,
-0.03635825216770172,
0.06449170410633087,
-0.05838074907660484,
0.033168260008096695,
0.032995305955410004,
-0.02227231301367283,
-0.010915162973105907,
-0.099158875644207,
-0.045159563422203064,
-0.003427803050726652,
-0.000014956854101910722,
0.020369846373796463,
0.022003276273608208,
0.002572653815150261,
-0.010799861513078213,
0.005822701379656792,
0.026423148810863495,
-0.028210315853357315,
-0.02749929204583168,
-0.015229342505335808,
0.06018713116645813,
-0.017247110605239868,
0.0624547153711319,
-0.005236587952822447,
0.1023104339838028,
-0.007249551359564066,
0.04788835346698761,
0.05403774231672287,
0.029132723808288574,
-0.016305485740303993,
0.010146489366889,
0.015556029044091702,
0.002125862520188093,
0.012414076365530491,
-0.04504426196217537,
-0.03864505514502525,
0.020216111093759537,
-0.04146993160247803,
0.059110987931489944,
0.0652603730559349,
0.026845918968319893,
0.013278833590447903,
0.055382922291755676,
0.0749840959906578,
0.06856566667556763,
0.035781748592853546,
-0.0017151025822386146,
0.017679488286376,
0.016843557357788086,
0.01655530370771885,
-0.011645402759313583,
-0.007364852353930473,
-0.002385289641097188,
0.04838799312710762,
0.034590303897857666,
-0.05449894815683365,
-0.008421778678894043,
-0.014691270887851715,
0.016680212691426277,
-0.04250764101743698,
-0.0337831974029541,
0.013057840056717396,
0.008003812283277512,
-0.03391771391034126,
0.05376870557665825,
0.012798412702977657,
-0.0466584786772728,
-0.01533503457903862,
-0.0005900168907828629,
0.020677315071225166,
0.07840468734502792,
-0.02409791201353073,
0.022329963743686676,
-0.03741518035531044,
-0.010386699810624123,
-0.007864490151405334,
-0.011837570928037167,
-0.026134897023439407,
0.008104700595140457,
0.005741029512137175,
-0.04146993160247803,
0.06975711137056351,
-0.030785370618104935,
0.025366222485899925,
-0.008152742870151997,
-0.07421541959047318,
-0.02492423541843891,
0.04431402310729027,
0.06814289838075638,
-0.01866915635764599,
-0.04173896834254265,
-0.03447500243782997,
0.026749836280941963,
0.03618530184030533,
0.09108780324459076,
-0.005577686708420515,
-0.012289166450500488,
0.013269225135445595,
0.05530605465173721,
-0.03768421337008476,
-0.013115490786731243,
-0.03829915449023247,
0.033168260008096695,
0.05019437521696091,
-0.007235138677060604,
-0.0031803862657397985,
-0.055805690586566925,
-0.024828152731060982,
-0.02263743244111538,
-0.031188923865556717,
0.02304098568856716,
-0.02640393190085888,
-0.03272627294063568,
0.030362600460648537,
-0.01170305348932743,
0.013134707696735859,
0.0026375106535851955,
0.01060769334435463,
0.07690577954053879,
0.030362600460648537,
0.016122926026582718,
0.01026178989559412,
-0.013307658955454826,
-0.012817629612982273,
-0.012932930141687393,
-0.011895221658051014,
-0.055382922291755676,
-0.04123932868242264,
-0.12344895303249359,
-0.019889425486326218,
0.02951706014573574,
0.02736477367579937,
-0.005731421522796154,
-0.022752733901143074,
-0.02267586626112461,
-0.0012076579732820392,
0.026980437338352203,
-0.010972813703119755,
-0.05692026764154434,
-0.0017595415702089667,
0.001292332191951573,
0.033033739775419235,
-0.020485147833824158,
-0.02736477367579937,
0.08632202446460724,
-0.004232508130371571,
-0.018131084740161896,
-0.05761207267642021,
0.08470781147480011,
0.017890874296426773,
0.0013007395900785923,
0.001818393124267459,
-0.024828152731060982,
0.0009680481161922216,
0.038126204162836075,
0.002034582430496812,
-0.041162461042404175,
-0.010300223715603352,
-0.057266172021627426,
-0.04938726872205734,
-0.009488312527537346,
-0.025097187608480453,
0.031015973538160324,
0.07506096363067627,
0.04784991964697838,
-0.022426048293709755,
-0.031650129705667496,
-0.06910374015569687,
-0.051347386091947556,
0.01639196090400219,
-0.015354251489043236,
-0.039548248052597046,
-0.036800239235162735,
0.00003045793346245773,
0.021138519048690796,
0.023156287148594856,
-0.045659203082323074,
-0.004122011363506317,
0.04223860427737236,
0.03255331888794899,
0.041623666882514954,
-0.020369846373796463,
-0.03829915449023247,
0.04642787575721741,
-0.03997102007269859,
-0.008138329721987247,
0.022560564801096916,
0.02323315478861332,
-0.012039347551763058,
-0.022022493183612823,
-0.052039191126823425,
-0.04343004897236824,
0.011635794304311275,
-0.05257726460695267,
-0.006149387452751398,
0.018986234441399574,
-0.00998314656317234,
0.04512112960219383,
-0.021042434498667717,
0.054153043776750565,
0.02703808806836605,
-0.03989415243268013,
0.013605520129203796,
0.0022027299273759127,
-0.028344832360744476,
-0.009344186633825302,
-0.026596101000905037,
-0.030170433223247528,
0.02340610697865486,
0.05280786380171776,
-0.011088114231824875,
-0.04323787987232208,
-0.05718930438160896,
-0.023021768778562546,
0.006538528483361006,
-0.05457581207156181,
0.008599533699452877,
0.031112058088183403,
-0.03357181325554848,
-0.011827962473034859,
0.0017271131509914994,
0.00952194258570671,
-0.006274296902120113,
0.07175566256046295,
-0.018361685797572136,
-0.07413855195045471,
0.006485681980848312,
-0.006101345177739859,
-0.058419182896614075,
0.023809660226106644,
-0.04831112548708916,
0.046620044857263565,
-0.015200517140328884,
-0.0027984518092125654,
0.01817912608385086,
0.008061463013291359,
0.008090287446975708,
-0.02874838560819626,
-0.06629808247089386,
-0.009747739881277084,
0.06629808247089386,
-0.038914091885089874,
-0.015873106196522713,
-0.013605520129203796,
0.04954100400209427,
0.023675141856074333,
-0.013422959484159946,
0.02327158860862255,
0.007902923971414566,
-0.07079482078552246,
-0.07548373192548752,
-0.05496015027165413,
0.06134013831615448,
-0.011943263933062553,
-0.010953596793115139,
-0.00455198809504509,
0.05376870557665825,
-0.01815030165016651,
-0.01434536837041378,
-0.014950698241591454,
0.025212489068508148,
0.025423873215913773,
0.0019168793223798275,
-0.043814387172460556,
-0.03351416066288948,
-0.012048956006765366,
0.05692026764154434,
0.010165706276893616,
-0.013595911674201488,
-0.01566172204911709,
0.004285354167222977,
-0.023425322026014328,
-0.040009453892707825,
-0.03020886518061161,
-0.04831112548708916,
0.029959047213196754,
-0.05173172056674957,
0.010828686878085136,
0.013365309685468674,
-0.002942577935755253,
-0.011357150040566921,
0.044275589287281036,
-0.04250764101743698,
-0.03722301125526428,
-0.01666099578142166,
-0.0443524569272995,
0.038491323590278625,
0.020043158903717995,
0.03722301125526428,
-0.052000757306814194,
0.0016298278933390975,
0.06114797294139862,
-0.02382887713611126,
0.08893551677465439,
0.03480168804526329,
0.03653120622038841,
0.0315348282456398,
0.021426772698760033,
-0.04961787164211273,
0.0018496204866096377,
0.06376145780086517,
0.01887093298137188,
-0.04431402310729027,
0.017160633578896523,
-0.017996566370129585,
0.016007624566555023,
-0.018236776813864708,
-0.001107370131649077,
0.010799861513078213,
0.038491323590278625,
0.03218819946050644,
-0.021138519048690796,
-0.00930094812065363,
0.008316085673868656,
0.02759537659585476,
0.05192388966679573,
-0.03503229096531868,
-0.00763388816267252,
-0.046620044857263565,
-0.07344674319028854,
0.004049947950989008,
0.027153389528393745,
0.05611316114664078,
0.02680748514831066,
0.019409004598855972,
-0.0010088839335367084,
-0.040047887712717056,
0.018332861363887787,
-0.035186026245355606,
-0.014249283820390701,
-0.04254607483744621,
-0.013826513662934303,
-0.0014196437550708652,
0.06426110118627548,
0.02663453482091427,
-0.049464136362075806,
-0.01416280772536993,
-0.0005632935208268464,
-0.0066201998852193356,
-0.009584397077560425,
-0.06568314135074615,
-0.022099360823631287,
-0.04462149366736412,
0.016036449000239372,
0.014028290286660194,
-0.07067952305078506,
0.03620452061295509,
-0.012779195792973042,
-0.02749929204583168,
0.0077107553370296955,
0.0012575016589835286,
-0.001455675344914198,
0.02498188614845276,
-0.052961599081754684,
-0.046620044857263565,
0.04504426196217537,
0.02763381041586399,
-0.03470560535788536,
0.03149639442563057,
-0.015613678842782974,
0.009171235375106335,
-0.052730996161699295,
-0.01566172204911709,
0.014796963892877102,
-0.040931861847639084,
0.03282235562801361,
0.01441262662410736,
0.01211621519178152,
-0.0011530101764947176,
-0.05803484469652176,
0.005433560349047184,
0.03770343214273453,
0.027902845293283463,
0.02947862632572651,
0.009238493628799915,
0.023944176733493805,
0.00973332766443491,
0.03351416066288948,
-0.025212489068508148,
-0.027095738798379898,
0.011741486378014088,
-0.032572537660598755,
-0.03443656861782074,
-0.017400844022631645,
0.028018146753311157,
-0.031381092965602875,
0.1081523522734642,
0.044275589287281036,
0.014825789257884026,
0.0042373123578727245
]
|
42,114 | flask_restful | make_response | Looks up the representation transformer for the requested media
type, invoking the transformer to create a response object. This
defaults to default_mediatype if no transformer is found for the
requested mediatype. If default_mediatype is None, a 406 Not
Acceptable response will be sent as per RFC 2616 section 14.1
:param data: Python object containing response data to be transformed
| def make_response(self, data, *args, **kwargs):
"""Looks up the representation transformer for the requested media
type, invoking the transformer to create a response object. This
defaults to default_mediatype if no transformer is found for the
requested mediatype. If default_mediatype is None, a 406 Not
Acceptable response will be sent as per RFC 2616 section 14.1
:param data: Python object containing response data to be transformed
"""
default_mediatype = kwargs.pop('fallback_mediatype', None) or self.default_mediatype
mediatype = request.accept_mimetypes.best_match(
self.representations,
default=default_mediatype,
)
if mediatype is None:
raise NotAcceptable()
if mediatype in self.representations:
resp = self.representations[mediatype](data, *args, **kwargs)
resp.headers['Content-Type'] = mediatype
return resp
elif mediatype == 'text/plain':
resp = original_flask_make_response(str(data), *args, **kwargs)
resp.headers['Content-Type'] = 'text/plain'
return resp
else:
raise InternalServerError()
| (self, data, *args, **kwargs) | [
0.028953593224287033,
-0.05801549181342125,
0.013059803284704685,
-0.014630229212343693,
0.032888684421777725,
0.005428798962384462,
-0.018899260088801384,
0.0401812344789505,
0.014314338564872742,
0.04155309870839119,
0.08483908325433731,
0.02604740299284458,
0.030758680775761604,
-0.016020145267248154,
0.032509613782167435,
0.021480534225702286,
-0.033358003944158554,
0.016101375222206116,
0.06476651877164841,
-0.029675627127289772,
0.04465784877538681,
-0.005925197619944811,
-0.03539775311946869,
0.003411614103242755,
-0.00750464852899313,
0.02749147266149521,
-0.06498312950134277,
-0.02144443243741989,
0.006105706095695496,
0.010722216218709946,
0.0008303399663418531,
-0.041264284402132034,
0.06112024188041687,
0.018682649359107018,
0.058629222214221954,
0.08570552617311478,
-0.04541598632931709,
-0.0171844270080328,
-0.07238398492336273,
0.023772994056344032,
-0.04364699870347977,
-0.014810738153755665,
0.008384628221392632,
-0.010929800570011139,
-0.029332662001252174,
0.03420639783143997,
-0.030505968257784843,
0.058304306119680405,
-0.02877308428287506,
0.03595732897520065,
0.015586924739181995,
-0.01713929884135723,
-0.025650285184383392,
-0.01618260331451893,
-0.03707648441195488,
0.022780196741223335,
-0.012373870238661766,
0.07093991339206696,
-0.011128360405564308,
-0.037040382623672485,
0.0020860035438090563,
0.03389953076839447,
0.04263615235686302,
-0.051047857850790024,
-0.009855774231255054,
0.06642719358205795,
0.024134011939167976,
-0.0330691896378994,
-0.018177224323153496,
0.048195820301771164,
-0.03117384947836399,
-0.0012872525257989764,
-0.004756404086947441,
0.0447300523519516,
0.07899060100317001,
0.00845683179795742,
-0.028051050379872322,
-0.03608368709683418,
0.04386360943317413,
0.02099316008388996,
0.0745139867067337,
-0.010794419795274734,
-0.04815971851348877,
-0.012310692109167576,
0.020000362768769264,
-0.02371884137392044,
-0.025884944945573807,
0.013438872061669827,
-0.03725699335336685,
-0.029838085174560547,
-0.038989875465631485,
-0.06061481684446335,
0.018953412771224976,
0.033664871007204056,
-0.050398025661706924,
0.019224174320697784,
-0.008989332243800163,
0.015171755105257034,
0.06361126154661179,
-0.008926154114305973,
-0.011353996582329273,
0.13039948046207428,
-0.03400783613324165,
-0.004014061763882637,
0.02534341998398304,
-0.01445874571800232,
0.014982220716774464,
0.011290818452835083,
-0.05826820433139801,
0.030163001269102097,
-0.05408040061593056,
-0.044044118374586105,
-0.027780286967754364,
0.008452319540083408,
-0.012635608203709126,
-0.04841243103146553,
0.012437048368155956,
0.03615589067339897,
-0.017545444890856743,
-0.026877744123339653,
-0.04072276130318642,
-0.04505496844649315,
0.013213235884904861,
-0.04039784520864487,
0.0026782976929098368,
0.013619380071759224,
0.01695879176259041,
-0.03440495580434799,
0.042744457721710205,
0.03722089156508446,
-0.01763569936156273,
0.04025343805551529,
-0.03135436028242111,
0.023411976173520088,
-0.02806910127401352,
0.05306955426931381,
-0.0622393935918808,
-0.010604885406792164,
0.03507283702492714,
0.05581328645348549,
-0.013267388567328453,
-0.02009061723947525,
0.01951298862695694,
0.03131825849413872,
-0.0281954575330019,
-0.015280060470104218,
0.06151736155152321,
-0.006872868165373802,
0.005884583108127117,
0.051444973796606064,
-0.0017328833928331733,
0.016679001972079277,
0.09682486206293106,
0.014982220716774464,
-0.002554197795689106,
-0.020920956507325172,
0.004090778063982725,
-0.022455280646681786,
-0.020794600248336792,
0.04686005413532257,
0.005789815913885832,
-0.02611960656940937,
0.004927887115627527,
-0.0039892420172691345,
0.045343782752752304,
-0.0011868446599692106,
0.0003091211256105453,
0.021697144955396652,
0.08339501172304153,
-0.014828788116574287,
-0.04382750764489174,
-0.005455874837934971,
-0.04292496666312218,
-0.03507283702492714,
0.021480534225702286,
0.026715286076068878,
0.03202224150300026,
0.012500226497650146,
-0.03265402093529701,
0.0259210467338562,
0.0823119580745697,
-0.04130038619041443,
-0.029964441433548927,
0.04097547009587288,
-0.017193451523780823,
0.011841369792819023,
0.016823409125208855,
-0.015550822950899601,
-0.021606890484690666,
0.04122818261384964,
0.005279879085719585,
-0.025072656571865082,
-0.012635608203709126,
-0.03148071467876434,
-0.02359248511493206,
-0.003962165676057339,
0.027581727132201195,
-0.01673315465450287,
0.0055551547557115555,
-0.010469503700733185,
-0.03507283702492714,
-0.03523529693484306,
0.03592122718691826,
0.014115779660642147,
-0.0019596475176513195,
0.013113955967128277,
-0.006606617942452431,
-0.011615733616054058,
-0.038664959371089935,
-0.06584957242012024,
-0.06563296169042587,
-0.004307388328015804,
-0.0281954575330019,
0.002946804277598858,
0.015216882340610027,
-0.01861044578254223,
-0.005257315468043089,
-0.03104749321937561,
-0.01267170999199152,
-0.06924313306808472,
0.004050163552165031,
0.028357913717627525,
-0.07458619028329849,
0.05743786320090294,
0.025704436004161835,
-0.014404593035578728,
-0.029657576233148575,
-0.00238271476700902,
0.005731150973588228,
0.03279842808842659,
-0.08953230828046799,
-0.01526200957596302,
-0.016408240422606468,
-0.005117421038448811,
0.000043258623918518424,
-0.024585282430052757,
0.06519974023103714,
0.011146411299705505,
-0.034639615565538406,
0.044621746987104416,
0.03765411302447319,
-0.00831693783402443,
-0.014702432788908482,
-0.01358327828347683,
-0.04321378096938133,
-0.03669741749763489,
-0.020596040412783623,
0.022148415446281433,
-0.019170021638274193,
-0.02877308428287506,
-0.03046986646950245,
-0.0016584235709160566,
0.018276505172252655,
-0.0382678396999836,
0.05426090955734253,
0.0009183379588648677,
-0.05166158452630043,
-0.02889944054186344,
0.04223903268575668,
-0.018123071640729904,
0.04985649883747101,
0.07408076524734497,
0.010650012642145157,
0.023249518126249313,
-0.039892420172691345,
-0.05924295261502266,
-0.04050615057349205,
0.0037861696910113096,
0.012012853287160397,
0.023177314549684525,
0.021859601140022278,
0.03391758352518082,
0.011254716664552689,
-0.02287045121192932,
0.032635971903800964,
0.0015692973975092173,
0.009711367078125477,
-0.049748193472623825,
-0.013339592143893242,
0.02844816818833351,
-0.06516363471746445,
-0.03409809246659279,
0.03584902361035347,
-0.007175220176577568,
0.0719146579504013,
-0.02846621908247471,
0.019621293991804123,
0.0797126367688179,
0.021733246743679047,
-0.034025888890028,
0.026588929817080498,
0.019422734156250954,
-0.03200418874621391,
-0.006028990261256695,
-0.038917671889066696,
-0.002166104270145297,
-0.051625482738018036,
-0.040289539843797684,
0.05873752757906914,
-0.04996480420231819,
-0.012590480968356133,
-0.013077854178845882,
0.12368455529212952,
0.009020921774208546,
-0.02729291282594204,
0.0017859077779576182,
0.003973447252064943,
-0.03180563077330589,
-0.0034138704650104046,
-0.019025616347789764,
0.003804220585152507,
0.05093955248594284,
-0.00042222108459100127,
-0.007039838936179876,
0.014160905964672565,
0.02989223785698414,
0.03655301034450531,
0.060759223997592926,
0.02664308249950409,
0.040794964879751205,
0.019819853827357292,
0.0072564492002129555,
-0.0022698966786265373,
0.014512898400425911,
0.07559704035520554,
-0.023827146738767624,
0.0008483908022753894,
0.015803536400198936,
0.031155798584222794,
0.03427859768271446,
0.0011642810422927141,
-0.01623675599694252,
-0.04075886309146881,
0.033737074583768845,
-0.008926154114305973,
-0.0485929399728775,
0.022004008293151855,
-0.047545988112688065,
0.01205798052251339,
0.026679184287786484,
0.0031972602009773254,
-0.027690032497048378,
0.013826965354382992,
-0.019368581473827362,
0.010090435855090618,
0.04130038619041443,
0.05068683996796608,
-0.026751387864351273,
0.005780790466815233,
0.008298886939883232,
-0.05631871148943901,
-0.029675627127289772,
0.049820397049188614,
-0.00633585499599576,
-0.018700700253248215,
-0.07223957777023315,
-0.029964441433548927,
-0.0017577033722773194,
-0.07075940817594528,
0.062383800745010376,
0.03985631838440895,
0.06198668107390404,
-0.027527574449777603,
0.019747650250792503,
-0.01185942068696022,
-0.014305313117802143,
-0.030505968257784843,
0.03160707280039787,
0.029332662001252174,
0.02734706550836563,
0.010343147441744804,
0.004451795481145382,
-0.06552465260028839,
0.010442427359521389,
0.06956804543733597,
0.0479792095720768,
-0.06000108644366264,
-0.009287171997129917,
-0.031913936138153076,
-0.004077239893376827,
-0.03732919692993164,
0.023646637797355652,
-0.020884854719042778,
-0.032509613782167435,
0.04541598632931709,
-0.04801531136035919,
0.05213090777397156,
0.042094625532627106,
-0.08057907968759537,
-0.022455280646681786,
-0.008876514621078968,
-0.05241972208023071,
0.05646311864256859,
0.003285258077085018,
-0.015875738114118576,
-0.048520736396312714,
-0.02942291647195816,
0.0427805595099926,
-0.012653659097850323,
0.014395567588508129,
0.022220619022846222,
0.007518186699599028,
-0.05346667394042015,
0.022220619022846222,
-0.011705988086760044,
0.01438654214143753,
0.052275314927101135,
0.01370963454246521,
0.006092168390750885,
0.03622809424996376,
0.05671582743525505,
-0.039892420172691345,
0.014783661812543869,
-0.02476579137146473,
0.042672254145145416,
0.09415332973003387,
0.01668802835047245,
0.03945919871330261,
-0.02922435663640499,
0.009503782726824284,
0.02436867356300354,
0.05657142400741577,
0.10418961197137833,
0.011110309511423111,
0.0069676353596150875,
0.017094172537326813,
-0.01873680204153061,
-0.028574524447321892,
-0.041516996920108795,
-0.0024842508137226105,
0.03512699156999588,
-0.05411650240421295,
-0.0719146579504013,
-0.05274463817477226,
0.07992924749851227,
-0.04487445950508118,
-0.02806910127401352,
-0.039964623749256134,
-0.035812921822071075,
-0.016128450632095337,
0.045271579176187515,
-0.008705031126737595,
-0.007400856353342533,
-0.010902724228799343,
0.04382750764489174,
-0.019404683262109756,
-0.014233109541237354,
-0.02611960656940937,
0.01593891717493534,
-0.03350241109728813,
0.026426471769809723,
-0.0095579344779253,
0.01608332432806492,
-0.017942562699317932,
0.031661223620176315,
-0.038664959371089935,
0.04675174877047539,
-0.0204155333340168,
-0.04101157188415527,
-0.000995054142549634,
0.03779852017760277,
-0.06209498643875122,
-0.01173306442797184,
-0.02884528785943985,
0.017653750255703926,
0.06267261505126953,
-0.018249427899718285,
-0.02987418696284294,
-0.03870106115937233,
-0.02734706550836563,
0.0013662250712513924,
0.010234842076897621,
0.0033484362065792084,
-0.026011301204562187,
0.004144930746406317,
0.042744457721710205,
-0.03725699335336685,
0.00010061948705697432,
-0.0065434398129582405,
-0.03927868977189064,
0.017175400629639626,
0.03945919871330261,
0.002926497021690011,
-0.011209589429199696,
-0.03790682554244995,
-0.034260548651218414,
0.05696853995323181,
0.019458835944533348,
-0.0019145202822983265,
-0.003501868573948741,
0.07270889729261398,
0.06112024188041687,
-0.037942927330732346,
-0.007608441170305014,
-0.02055993862450123,
0.03400783613324165,
0.008289861492812634,
-0.06556075811386108,
-0.005257315468043089,
-0.05451362207531929,
0.06177007406949997,
-0.11198759078979492,
0.004467589780688286,
0.006101193372160196,
0.002389483619481325,
-0.03440495580434799,
0.010090435855090618,
0.022653840482234955,
-0.01603819616138935,
0.006606617942452431,
-0.04996480420231819,
0.04541598632931709,
-0.018827056512236595,
-0.003917038440704346,
-0.03482012450695038,
0.015171755105257034,
0.007220347411930561,
0.01646239310503006,
-0.041192080825567245,
-0.01886315830051899,
-0.0037207351997494698,
-0.007026300765573978,
0.003908012993633747,
0.0317695289850235,
0.011191538535058498,
0.07790754735469818,
-0.03642665222287178,
0.005789815913885832,
0.030794782564044,
-0.008741132915019989,
-0.025704436004161835,
-0.0031521329656243324,
-0.013213235884904861,
0.04137258976697922,
-0.0229968074709177,
-0.011381072923541069,
-0.06877380609512329,
0.025578081607818604,
0.04621022194623947,
0.013655481860041618,
0.007351216394454241,
0.0004882195789832622,
-0.07278110086917877,
-0.015379340387880802,
-0.02509070746600628,
-0.046571239829063416,
0.025072656571865082,
-0.04036174342036247,
0.04686005413532257,
-0.04166140407323837,
-0.10065164417028427,
-0.031661223620176315,
0.039062079042196274,
0.060506511479616165,
-0.062131088227033615,
0.08375602960586548,
0.019675446674227715,
0.0057853031903505325,
0.02326756902039051,
-0.03974801301956177,
-0.004293850157409906,
0.027527574449777603,
0.015956968069076538,
0.00790628045797348,
-0.012689760886132717,
0.04826802387833595,
0.026931896805763245,
0.025162911042571068,
-0.04195021837949753,
-0.050398025661706924,
0.05729345604777336,
-0.0020735934376716614,
0.002029594499617815,
0.00469773868098855,
0.022058160975575447,
0.037040382623672485,
0.07624687254428864,
-0.01643531583249569,
0.0291702039539814,
-0.03364681825041771,
0.019603243097662926,
-0.04400801658630371,
-0.01773497834801674,
-0.05906244367361069,
-0.05411650240421295,
-0.10332316905260086,
-0.0362822450697422,
0.014124805107712746,
-0.03279842808842659,
-0.022707993164658546,
-0.0077754114754498005,
0.02792469412088394,
0.002108567161485553,
-0.023321721702814102,
0.03523529693484306,
0.031986139714717865,
-0.007188758347183466,
0.02211231365799904,
-0.015126627869904041,
-0.02716655656695366,
0.012752939015626907,
0.02826766110956669,
-0.04263615235686302,
-0.018971463665366173,
0.030361561104655266,
-0.014594127424061298,
-0.013980397954583168,
0.03092113882303238,
-0.019206123426556587,
-0.01996426098048687,
-0.0395314022898674,
0.02501850388944149,
0.009666239842772484,
-0.010586834512650967,
0.004535280633717775,
-0.041444793343544006,
-0.04068665951490402,
0.004684200510382652,
-0.0047473786398768425,
-0.03065037541091442,
0.05213090777397156,
-0.03527139872312546,
-0.013926245272159576,
0.03196808695793152,
-0.018330657854676247,
0.03519919514656067,
0.014160905964672565,
0.02353833243250847,
0.002187539590522647,
-0.058629222214221954,
0.04296106845140457,
0.01989205740392208,
0.007279012817889452,
-0.010000181384384632,
-0.024549180641770363,
0.03808733448386192,
-0.017924511805176735,
0.03232910484075546,
0.036462754011154175,
-0.006177909672260284,
0.058809731155633926,
-0.04491056129336357,
-0.004074983764439821,
-0.018402861431241035,
-0.008799798786640167,
0.009846748784184456,
0.017653750255703926,
0.005108395591378212,
-0.001611039973795414,
0.0003587610262911767,
0.003876423928886652,
0.03375512361526489,
-0.01513565331697464,
-0.0239715538918972,
0.01753641851246357,
0.04447733983397484,
0.06440550088882446,
-0.029007745906710625,
-0.006516363471746445,
0.03550605848431587,
0.024711638689041138,
0.0015794510254636407,
0.04509107023477554,
-0.06653550267219543,
0.07992924749851227,
-0.02554197981953621,
-0.014837813563644886,
-0.03725699335336685,
0.012301666662096977,
-0.04418852552771568,
0.02729291282594204,
0.03097528964281082,
0.006972148083150387,
0.0011242306791245937,
-0.04711276665329933,
0.0015207857359200716,
-0.01715734973549843,
-0.016579722985625267,
0.03485622629523277,
0.052852943539619446,
-0.01918807253241539,
0.017446164041757584,
-0.04451344162225723,
0.05884583294391632,
-0.026083504781126976,
-0.06440550088882446,
0.02021697349846363,
-0.03967580944299698,
-0.003948627505451441,
-0.05722125247120857,
0.043538693338632584,
-0.08353941887617111,
-0.024675536900758743,
-0.026733336970210075,
-0.043394289910793304,
-0.006412571296095848,
-0.04736547917127609,
-0.06184227764606476,
-0.00034888944355770946,
0.06523583829402924,
0.02974783070385456,
-0.011399123817682266,
0.0030799293890595436,
0.002120977034792304,
-0.03350241109728813,
-0.04704056307673454,
-0.018971463665366173,
-0.0018231377471238375,
0.04000072553753853,
-0.05126446858048439,
-0.018023792654275894,
0.06769075989723206,
0.05779888108372688,
0.01150742918252945,
-0.002067952649667859,
-0.012879294343292713,
0.024025706574320793,
0.08577772974967957,
0.0739363580942154,
-0.02541562356054783,
-0.009548909962177277,
-0.014476796612143517,
0.03783462196588516,
0.029639525339007378,
-0.04097547009587288,
0.0016697053797543049,
-0.025289267301559448,
-0.014621203765273094,
0.03364681825041771,
-0.04422462731599808,
0.01805989444255829,
0.01585768721997738,
-0.023231467232108116,
-0.0505424328148365,
-0.023484179750084877,
-0.05018141493201256,
-0.0037094533909112215,
-0.0013007906964048743,
0.010072384960949421,
-0.00988285057246685,
-0.05209480598568916,
0.026534777134656906,
-0.0034612540621310472,
0.0076806447468698025,
0.004530767910182476,
-0.006593079771846533,
0.080362468957901,
0.013637430965900421,
-0.0018547266954556108,
0.09220384061336517,
0.05281684175133705,
-0.09891875833272934,
-0.03184173256158829,
0.03750970587134361,
0.013113955967128277,
0.03389953076839447,
-0.03592122718691826,
0.023285619914531708,
0.02709435299038887,
-0.010604885406792164,
-0.0207404475659132,
0.027310963720083237,
-0.022780196741223335,
-0.018023792654275894,
-0.03920648619532585,
0.0654524490237236,
0.04122818261384964,
0.02241917885839939
]
|
42,115 | flask_restful | mediatypes | Returns a list of requested mediatypes sent in the Accept header | def mediatypes(self):
"""Returns a list of requested mediatypes sent in the Accept header"""
return [h for h, q in sorted(request.accept_mimetypes,
key=operator.itemgetter(1), reverse=True)]
| (self) | [
0.019899485632777214,
-0.030578933656215668,
-0.0035498004872351885,
-0.04230572283267975,
0.004399692174047232,
0.05466778576374054,
0.0352662168443203,
-0.06538157165050507,
-0.006438573822379112,
0.06181031093001366,
0.01625954546034336,
0.03138590231537819,
-0.027591435238718987,
0.02262944169342518,
0.05501117557287216,
-0.004476955160498619,
-0.018800636753439903,
0.056007008999586105,
0.06174163147807121,
-0.028673116117715836,
-0.04670112207531929,
0.017521506175398827,
-0.015984833240509033,
-0.037566933780908585,
-0.001927279750816524,
0.06476347148418427,
-0.0036270632408559322,
-0.07582064718008041,
-0.0013027380919083953,
0.00030207642703317106,
-0.011211703531444073,
-0.021942660212516785,
0.030802138149738312,
-0.012559511698782444,
-0.019401568919420242,
0.020843809470534325,
0.007009460590779781,
0.05868545547127724,
-0.060677122324705124,
0.023024341091513634,
-0.09690482914447784,
-0.023865647614002228,
0.02062060683965683,
-0.020586267113685608,
-0.027934826910495758,
0.06029939278960228,
-0.04937956854701042,
0.02455242909491062,
-0.0015044801402837038,
-0.00007075724715832621,
-0.0058891489170491695,
0.061638616025447845,
-0.003964015282690525,
-0.034493587911129,
-0.05562927946448326,
-0.0004713572561740875,
-0.02499883621931076,
0.028381234034895897,
-0.010593600571155548,
0.07334823161363602,
0.026475416496396065,
-0.0028093643486499786,
0.013838641345500946,
-0.07334823161363602,
0.013684115372598171,
0.015907570719718933,
0.02141040377318859,
-0.015632856637239456,
-0.041618943214416504,
0.03466528281569481,
-0.026011839509010315,
-0.039112191647291183,
-0.041172534227371216,
0.024277716875076294,
0.04134422913193703,
-0.028398403897881508,
-0.009477580897510052,
0.044400405138731,
-0.01631963811814785,
0.011460661888122559,
0.07698817551136017,
0.037086185067892075,
0.008893816731870174,
-0.0123363072052598,
0.006979414261877537,
-0.0019530340796336532,
-0.03293116018176079,
-0.005210952367633581,
-0.002294278470799327,
0.0006476132548414171,
-0.04955126345157623,
-0.051130861043930054,
0.021667947992682457,
0.045224543660879135,
-0.07520254701375961,
0.02937706746160984,
-0.050684455782175064,
-0.005567220039665699,
-0.02594316005706787,
-0.024792801588773727,
-0.04309552162885666,
0.08550426363945007,
-0.016671614721417427,
-0.04543057829141617,
0.0003527801891323179,
-0.021822473034262657,
-0.012705452740192413,
-0.017873480916023254,
-0.06675513088703156,
0.05435873195528984,
0.018646109849214554,
-0.07561460882425308,
0.014782966114580631,
-0.003453221870586276,
0.05095916613936424,
-0.02563410811126232,
-0.0055371737107634544,
0.012301968410611153,
0.028707455843687057,
0.016482749953866005,
-0.04907051846385002,
0.0728674903512001,
0.02546241320669651,
-0.0262178722769022,
0.01633680798113346,
0.022114355117082596,
0.04560227319598198,
-0.03921520709991455,
-0.036777134984731674,
0.0655876100063324,
-0.043816640973091125,
0.032244376838207245,
-0.06551893055438995,
0.05432439595460892,
-0.02717936597764492,
0.015092017129063606,
-0.0530538484454155,
-0.06387065351009369,
0.08591633290052414,
0.011958577670156956,
-0.08749593049287796,
0.038494087755680084,
0.07029205560684204,
-0.03344624489545822,
-0.08248242735862732,
0.0010934844613075256,
0.04917353391647339,
-0.026818806305527687,
0.008288591168820858,
0.012138858437538147,
-0.010894066654145718,
0.031815141439437866,
0.061123527586460114,
-0.03105968050658703,
0.02062060683965683,
0.0024852894712239504,
0.005258168559521437,
0.020826639607548714,
-0.0581703707575798,
0.004054155200719833,
-0.0041958037763834,
-0.008606227114796638,
-0.038528427481651306,
-0.014971830882132053,
0.02438073419034481,
-0.0035777008160948753,
0.022543594241142273,
0.016851894557476044,
0.0031227082945406437,
0.007442991249263287,
-0.00176524231210351,
0.01328921690583229,
-0.030647611245512962,
-0.048658449202775955,
0.06709852814674377,
0.041309889405965805,
-0.014053260907530785,
0.03504301235079765,
0.014293634332716465,
0.004927655216306448,
0.05703717842698097,
-0.03591865673661232,
-0.047113191336393356,
0.013503835536539555,
0.01539248414337635,
0.010602185502648354,
-0.01304884348064661,
-0.04481247439980507,
-0.01873195730149746,
0.015881815925240517,
0.03227871656417847,
-0.02044891007244587,
-0.017504336312413216,
-0.03811635822057724,
-0.052401408553123474,
0.003923237789422274,
0.025273548439145088,
0.01139198336750269,
0.0007409725221805274,
-0.02515336126089096,
-0.020826639607548714,
-0.030836476013064384,
-0.0024316348135471344,
0.012559511698782444,
0.014697117730975151,
0.009031172841787338,
0.01919553428888321,
-0.047113191336393356,
-0.021822473034262657,
-0.02405451238155365,
-0.024912988767027855,
0.015289466828107834,
0.005142274312674999,
-0.02783180959522724,
-0.00158281612675637,
-0.05659077316522598,
0.00007243395521072671,
0.002453096676617861,
0.016276715323328972,
-0.07197467237710953,
0.010876897722482681,
0.03399566933512688,
-0.040073685348033905,
0.0317121222615242,
0.03440773859620094,
0.0007849694811739028,
-0.017564428970217705,
0.003150608856230974,
-0.07245542109012604,
-0.0011535778176039457,
-0.05343157798051834,
-0.028209539130330086,
0.0252907183021307,
0.043507590889930725,
-0.016268130391836166,
0.0717686340212822,
0.0730048418045044,
0.021633608266711235,
-0.005678822286427021,
0.012078764848411083,
0.042065348476171494,
0.009091266430914402,
-0.019126856699585915,
-0.006026505026966333,
-0.06211936101317406,
-0.05229838937520981,
0.028089351952075958,
0.021204371005296707,
-0.012559511698782444,
-0.02935989759862423,
-0.022543594241142273,
0.004234435502439737,
0.0237454604357481,
-0.08962494879961014,
0.023402070626616478,
0.00003311506225145422,
-0.0717686340212822,
-0.024621106684207916,
0.027110688388347626,
-0.06297783553600311,
0.0320211760699749,
0.03399566933512688,
0.03198683634400368,
0.05308818817138672,
-0.05346591770648956,
0.015177864581346512,
0.041309889405965805,
0.040211040526628494,
-0.030493086203932762,
0.0008230643579736352,
0.05590398982167244,
-0.005721746012568474,
-0.05556060001254082,
-0.027608605101704597,
0.027248045429587364,
0.020242877304553986,
0.01272262167185545,
0.03839106857776642,
-0.05501117557287216,
0.01327204704284668,
-0.06132956221699715,
-0.015589933842420578,
0.04137856885790825,
0.034733958542346954,
0.012301968410611153,
0.02156493067741394,
0.006043674889951944,
0.01998533308506012,
-0.04972296208143234,
-0.013452326878905296,
0.01281705405563116,
0.020380232483148575,
-0.005206659901887178,
-0.0477999746799469,
0.0005596193950623274,
0.023213205859065056,
0.010035590268671513,
-0.03092232346534729,
0.09937724471092224,
0.030870815739035606,
-0.03859710320830345,
0.017469996586441994,
0.05672812834382057,
-0.003766565816476941,
-0.04120687395334244,
0.003421028843149543,
0.01288573257625103,
-0.0290851853787899,
-0.029617439955472946,
-0.005245291627943516,
-0.013727040030062199,
0.059578269720077515,
-0.02688748389482498,
-0.025548260658979416,
-0.01859460212290287,
0.02920537069439888,
-0.028844811022281647,
0.08062811195850372,
-0.0355752669274807,
0.04076046496629715,
0.013632607646286488,
0.040691785514354706,
0.0002443975245114416,
0.002362956525757909,
0.04659810662269592,
-0.01763310842216015,
-0.03243324160575867,
-0.03636506572365761,
-0.019573263823986053,
0.02731672301888466,
-0.0032622108701616526,
0.00897966418415308,
-0.021685117855668068,
0.04673546180129051,
0.00570457661524415,
0.004339599050581455,
0.0374295748770237,
-0.02123870886862278,
0.006713286507874727,
-0.004056301433593035,
-0.043026842176914215,
-0.04573962837457657,
0.0004949653521180153,
0.005172321107238531,
-0.03348058462142944,
0.014113354496657848,
0.04419437050819397,
-0.004687281791120768,
-0.004245166201144457,
-0.01757301390171051,
0.009640691801905632,
-0.043507590889930725,
0.012842808850109577,
0.009443242102861404,
0.033789634704589844,
-0.017178114503622055,
-0.03468245267868042,
-0.023487918078899384,
-0.039283886551856995,
0.08735857158899307,
0.09079247713088989,
0.06448875367641449,
-0.0012759107630699873,
-0.017332641407847404,
0.02887915074825287,
-0.03360076993703842,
0.06029939278960228,
-0.0027642943896353245,
0.05964694917201996,
-0.05157727003097534,
-0.01710943691432476,
0.033497754484415054,
-0.07836173474788666,
-0.012997334823012352,
0.006301217712461948,
0.0055200038477778435,
0.018817804753780365,
0.016276715323328972,
-0.027900487184524536,
0.04295816645026207,
-0.04144724830985069,
0.061020512133836746,
-0.005125104915350676,
-0.01312610600143671,
-0.036330725997686386,
-0.017890650779008865,
0.0087392907589674,
0.02419186756014824,
-0.08742725104093552,
0.030081016942858696,
0.02501600608229637,
-0.07218070328235626,
-0.010627939365804195,
0.05669378861784935,
-0.02860443852841854,
-0.009863895364105701,
-0.05501117557287216,
0.04093215987086296,
-0.00592778017744422,
-0.0180966854095459,
0.023556595668196678,
0.0008788653649389744,
-0.1109151691198349,
0.03504301235079765,
-0.01187273021787405,
-0.014104769565165043,
0.005910610780119896,
0.06359594315290451,
0.00068785430630669,
-0.03075062856078148,
0.0606427825987339,
-0.09058644622564316,
0.023693952709436417,
-0.034442078322172165,
-0.008640565909445286,
0.0259088221937418,
0.01430221926420927,
-0.01828555017709732,
0.00019597409118432552,
0.03370378911495209,
0.06277180463075638,
-0.007571762893348932,
0.038665782660245895,
0.03469962254166603,
0.04446908459067345,
-0.001481945044361055,
0.02843274176120758,
0.0070523847825825214,
-0.05652209371328354,
0.00007551910675829276,
0.03571262210607529,
0.08797667175531387,
-0.025651277974247932,
-0.060848817229270935,
0.011452076956629753,
-0.04017670080065727,
-0.039455581456422806,
-0.03825371339917183,
-0.028158029541373253,
-0.022921323776245117,
-0.04292382672429085,
0.013907319866120815,
-0.06260010600090027,
-0.014860228635370731,
0.08859477937221527,
-0.029600270092487335,
0.013340725563466549,
0.02324754372239113,
0.0008498917450197041,
-0.04889882355928421,
-0.08838874101638794,
-0.04776563495397568,
0.031557597219944,
-0.057414911687374115,
0.09422638267278671,
0.04807468503713608,
0.04701017588376999,
0.029480082914233208,
-0.05010069161653519,
-0.05123388022184372,
0.08907552063465118,
-0.009717954322695732,
-0.018062345683574677,
-0.0440913550555706,
0.01631963811814785,
0.102399080991745,
0.004614311270415783,
-0.0004372864787001163,
0.035231877118349075,
0.015959078446030617,
0.014053260907530785,
0.06644608080387115,
0.0005580097204074264,
-0.06884981691837311,
-0.00991540402173996,
0.05525154992938042,
-0.01406184583902359,
0.010447659529745579,
0.014808719977736473,
-0.010336057282984257,
0.03612469136714935,
-0.04766261577606201,
-0.023539425805211067,
0.013177614659070969,
-0.014997584745287895,
-0.04742224141955376,
0.0024402195122092962,
-0.04580830782651901,
-0.0009174967999570072,
-0.030029509216547012,
0.06572496145963669,
0.003021837444975972,
0.013005919754505157,
0.010876897722482681,
0.0702233761548996,
0.02982347458600998,
0.001337077235803008,
-0.03870012238621712,
0.02372829057276249,
0.05978430435061455,
0.05779264122247696,
-0.06603401154279709,
-0.0499633327126503,
-0.012027256190776825,
-0.005657360423356295,
-0.03013252653181553,
0.010808219201862812,
-0.0228183064609766,
-0.04017670080065727,
0.010516337119042873,
-0.022921323776245117,
0.032227206975221634,
-0.014576931484043598,
0.01692057214677334,
0.008953910320997238,
-0.005605851765722036,
-0.012121688574552536,
0.021015504375100136,
0.03076779842376709,
0.05871979519724846,
0.0037987586110830307,
-0.03890615701675415,
0.043953996151685715,
0.004270920529961586,
0.038494087755680084,
0.03832239285111427,
-0.10548959672451019,
-0.003809489542618394,
0.013787132687866688,
0.01734122633934021,
0.06304651498794556,
0.03176363185048103,
-0.015100602060556412,
0.011640941724181175,
-0.012619605287909508,
0.010027005337178707,
-0.006060844287276268,
0.022080015391111374,
0.028398403897881508,
0.03227871656417847,
-0.002176237991079688,
-0.02000250294804573,
-0.03227871656417847,
0.02235472947359085,
-0.0327938050031662,
0.01280847005546093,
0.005695991683751345,
-0.06290915608406067,
0.05652209371328354,
-0.02326471358537674,
-0.04306118190288544,
-0.007408652454614639,
-0.031935326755046844,
-0.02889632061123848,
0.011881315149366856,
-0.007674780208617449,
0.0703950747847557,
-0.014628440141677856,
0.005485665053129196,
-0.020672114565968513,
0.027677282691001892,
-0.030407238751649857,
-0.03993632644414902,
0.028673116117715836,
-0.07259277254343033,
0.0009856383549049497,
-0.005562928039580584,
0.05229838937520981,
-0.03205551207065582,
-0.02341924048960209,
0.035506587475538254,
-0.02029438503086567,
0.04831505939364433,
0.01068803295493126,
0.03121420554816723,
-0.0006379553815349936,
0.05040974169969559,
0.0028844811022281647,
-0.006361310835927725,
-0.024157529696822166,
0.01826838031411171,
-0.02060343697667122,
0.00890240166336298,
-0.04124121367931366,
-0.0615699365735054,
-0.06345858424901962,
0.035849981009960175,
-0.02062060683965683,
-0.03986765071749687,
0.03512885794043541,
-0.030887985602021217,
0.023659612983465195,
0.05078747123479843,
-0.005644483026117086,
-0.03921520709991455,
-0.010078513994812965,
-0.008559010922908783,
0.004300967324525118,
-0.06520987302064896,
0.020551927387714386,
0.04948258772492409,
-0.002588306786492467,
0.02484431117773056,
-0.04124121367931366,
0.05689982324838638,
-0.024174699559807777,
0.0019358645658940077,
0.008546133525669575,
0.0015903277089819312,
-0.03483697772026062,
-0.024586766958236694,
0.014808719977736473,
-0.03423604369163513,
0.02249208465218544,
0.012653944082558155,
0.03361793980002403,
-0.041000839322805405,
0.014250710606575012,
0.0252907183021307,
0.0030282759107649326,
0.007803551387041807,
0.011949993669986725,
0.04234006255865097,
-0.003843828570097685,
0.020723624154925346,
-0.004764544777572155,
-0.07925455272197723,
0.0016439825994893909,
-0.009091266430914402,
-0.040382735431194305,
0.04330155625939369,
-0.02046607993543148,
0.06143258139491081,
-0.022766796872019768,
-0.03200400620698929,
-0.00039033853681758046,
-0.032553430646657944,
-0.02906801551580429,
-0.035849981009960175,
0.012173197232186794,
0.015589933842420578,
-0.0012555219000205398,
0.015924738720059395,
-0.02997799962759018,
-0.0235909353941679,
0.03605601564049721,
-0.060986172407865524,
0.007606102153658867,
0.006146691739559174,
-0.02640673704445362,
0.02357376553118229,
0.040691785514354706,
0.020071180537343025,
-0.001020513940602541,
-0.0021032674703747034,
0.04546491801738739,
-0.004333160351961851,
0.04570528864860535,
-0.001485164393670857,
-0.048349399119615555,
0.03229588642716408,
-0.01579596847295761,
0.07712553441524506,
-0.0462547168135643,
0.03471679240465164,
-0.00534401647746563,
-0.04076046496629715,
-0.036021675914525986,
-0.004258043598383665,
-0.022698119282722473,
0.04831505939364433,
0.045396238565444946,
0.041138194501399994,
0.01054209191352129,
-0.05648775398731232,
0.055388905107975006,
-0.011280381120741367,
0.002033516298979521,
0.044297389686107635,
0.02403734251856804,
-0.009786631911993027,
-0.008936740458011627,
-0.01857743225991726,
0.06864378601312637,
0.004114248789846897,
-0.007206910289824009,
-0.01780480332672596,
0.006284048315137625,
-0.0301668643951416,
0.01273979153484106,
0.007378605660051107,
-0.07829305529594421,
0.019161196425557137,
-0.013263462111353874,
-0.000942714512348175,
0.06321821361780167,
0.02750558778643608,
0.005133689381182194,
0.014963245950639248,
0.015246543101966381,
0.019281383603811264,
-0.009297301061451435,
-0.021839642897248268,
-0.014473914168775082,
-0.004343891050666571,
-0.004086348228156567,
0.017530091106891632,
0.031918156892061234,
0.00003236054180888459,
0.01248224824666977,
-0.05030672252178192,
0.007095308508723974,
-0.01630246825516224,
0.03375529870390892,
0.030956663191318512,
-0.028140859678387642,
0.04587698355317116,
0.03653676062822342,
0.08344391733407974,
0.022234542295336723,
0.007550301030278206,
-0.04354193061590195,
0.03059610351920128,
0.06318387389183044,
-0.010258794762194157,
0.026441076770424843,
0.02156493067741394,
0.03166061267256737,
-0.02013985998928547,
-0.061020512133836746,
0.003899629693478346,
0.01625954546034336,
-0.024792801588773727,
0.005060719326138496,
-0.027848977595567703,
-0.01763310842216015,
-0.0008799384231679142,
0.01778763346374035,
-0.008726414293050766,
0.0008665247587487102,
-0.006464328151196241,
0.02592599019408226,
-0.01874912716448307,
0.03236456587910652,
-0.02235472947359085,
-0.04477813467383385,
0.06472913175821304,
-0.021839642897248268,
0.009984081611037254,
0.052401408553123474,
0.0065587605349719524,
-0.09985798597335815,
0.005876271985471249,
-0.029617439955472946,
-0.038047678768634796,
0.02482714131474495,
0.009177113883197308,
-0.03578130155801773,
-0.04220270738005638,
-0.0004587483999785036,
-0.025582600384950638,
-0.026938993483781815,
-0.001326346187852323,
-0.0006846350152045488,
-0.048486754298210144,
0.004180780611932278,
0.038665782660245895,
-0.04673546180129051
]
|
42,116 | flask_restful | mediatypes_method | Return a method that returns a list of mediatypes
| def mediatypes_method(self):
"""Return a method that returns a list of mediatypes
"""
return lambda resource_cls: self.mediatypes() + [self.default_mediatype]
| (self) | [
0.03863995522260666,
-0.07757572084665298,
0.01871911622583866,
-0.03845507651567459,
0.01931997761130333,
0.015187906101346016,
0.03993411734700203,
-0.04817977175116539,
0.06152812018990517,
0.036402903497219086,
0.027879929170012474,
0.04655282571911812,
0.05180342122912407,
0.03579280152916908,
-0.005319926887750626,
0.0158349871635437,
-0.06496688723564148,
0.055501025170087814,
0.03300110995769501,
-0.020651115104556084,
-0.015271102078258991,
0.03610709682106972,
-0.005319926887750626,
-0.061676025390625,
0.00020177937403786927,
0.11026253551244736,
0.006230461876839399,
-0.02959931455552578,
-0.011684427037835121,
-0.029451411217451096,
-0.02937745861709118,
0.006937628146260977,
-0.014947561547160149,
-0.005139668472111225,
0.039971090853214264,
0.05535312369465828,
-0.015409762039780617,
0.08526673167943954,
-0.0927358940243721,
0.025088239461183548,
-0.0016720100538805127,
-0.030024539679288864,
0.0077695888467133045,
-0.04729234799742699,
0.009780161082744598,
0.03882483392953873,
-0.012673535384237766,
0.001169367111288011,
0.037419747561216354,
-0.026197519153356552,
0.010270093567669392,
0.052395038306713104,
0.0007470314158126712,
0.023849541321396828,
-0.03647685796022415,
0.039120644330978394,
-0.04692258685827255,
0.04370567202568054,
0.06363575160503387,
0.07502437382936478,
0.05365222319960594,
-0.024200813844799995,
0.034480150789022446,
-0.06241554394364357,
0.013024807907640934,
-0.012488655745983124,
-0.04285522177815437,
-0.015520690008997917,
0.027639584615826607,
0.09280984103679657,
-0.020762043073773384,
-0.025347070768475533,
-0.015566909685730934,
0.01700897514820099,
0.06585431843996048,
-0.043077077716588974,
-0.006993092130869627,
-0.020077986642718315,
0.06729637831449509,
-0.032113686203956604,
0.009992772713303566,
0.02734377607703209,
-0.030523715540766716,
0.00169049808755517,
-0.00036571608507074416,
-0.022296547889709473,
0.002731604501605034,
-0.057645637542009354,
-0.03915761783719063,
-0.02286967635154724,
-0.08637601137161255,
0.009267118759453297,
0.028083298355340958,
0.017720764502882957,
-0.04721839353442192,
0.013939964585006237,
-0.05354129523038864,
-0.0603448860347271,
-0.006808212026953697,
-0.02412686124444008,
-0.01767454482614994,
0.029858147725462914,
0.016232479363679886,
-0.0401189960539341,
0.03878786042332649,
-0.05135970935225487,
-0.0005962385330349207,
-0.022610845044255257,
-0.04825372248888016,
0.0925140380859375,
-0.01618625782430172,
-0.056055665016174316,
-0.0014570867642760277,
0.019930081441998482,
-0.027639584615826607,
-0.01874684914946556,
-0.02756563387811184,
-0.008185569196939468,
-0.00889273639768362,
-0.02817573770880699,
-0.02401593327522278,
0.030080003663897514,
-0.002671518363058567,
0.00231562415137887,
0.024699989706277847,
0.009872601367533207,
0.003734579309821129,
-0.020096473395824432,
-0.006392231676727533,
0.03170694783329964,
-0.039675284177064896,
0.028841305524110794,
-0.03359272703528404,
0.01400467287749052,
0.006017849314957857,
-0.04840162768959999,
-0.01137937419116497,
0.010926418006420135,
0.01191552635282278,
0.07513529807329178,
-0.05505731329321861,
0.0622306652367115,
0.026844600215554237,
0.018811557441949844,
-0.03394399955868721,
-0.011850818991661072,
0.03181787580251694,
0.056462403386831284,
-0.02627147175371647,
0.015150929801166058,
-0.00854608602821827,
0.02140912413597107,
0.0308380126953125,
0.03130021318793297,
-0.007963713258504868,
0.011286933906376362,
-0.02259235642850399,
0.02597566321492195,
-0.026123568415641785,
-0.04507378488779068,
-0.019356952980160713,
0.031651485711336136,
-0.07949846982955933,
-0.0103348009288311,
0.00845364574342966,
0.02677064761519432,
0.004702889360487461,
-0.031651485711336136,
0.007395206484943628,
0.02305455692112446,
-0.01174913439899683,
-0.04666375368833542,
-0.03089347667992115,
0.007538489066064358,
0.04914114996790886,
0.09769067913293839,
-0.0023491336032748222,
0.04895626753568649,
0.030024539679288864,
0.01827540434896946,
0.023757101967930794,
-0.01915358565747738,
-0.0412282757461071,
0.003011235734447837,
0.03320447728037834,
0.05635147541761398,
0.00897131022065878,
0.009336448274552822,
-0.01943090558052063,
0.0017112970817834139,
-0.001970129320397973,
0.011471814475953579,
-0.0024450402706861496,
-0.01781320385634899,
-0.04466705024242401,
-0.037142425775527954,
-0.033407844603061676,
0.03704998642206192,
-0.04193082079291344,
0.026012640446424484,
-0.015557666309177876,
0.015409762039780617,
-0.0059670074842870235,
0.03481293469667435,
0.0209469236433506,
0.008707855828106403,
0.02501428686082363,
0.03394399955868721,
-0.0835658386349678,
-0.01805354841053486,
0.00014992625801824033,
0.020077986642718315,
0.010454973205924034,
-0.025883223861455917,
0.0014986848691478372,
-0.09517630934715271,
0.04670073091983795,
-0.018783824518322945,
-0.046293992549180984,
-0.035053279250860214,
-0.018229184672236443,
0.008962065912783146,
-0.0308380126953125,
-0.002116877818480134,
0.029950587078928947,
-0.017850181087851524,
-0.031263235956430435,
-0.06940401345491409,
-0.05675821006298065,
-0.012137383222579956,
-0.023905005306005478,
-0.014901341870427132,
-0.008721722289919853,
0.015539177693426609,
0.009558304212987423,
-0.026530304923653603,
0.04744024947285652,
0.028453057631850243,
-0.02704796940088272,
0.01685182750225067,
0.019172074273228645,
0.007954468950629234,
-0.000619926315266639,
0.04880836606025696,
-0.011037345975637436,
0.003478058148175478,
0.02993209846317768,
0.048549532890319824,
-0.012608827091753483,
-0.022333525121212006,
0.018201451748609543,
-0.01723083108663559,
0.0035589432809501886,
-0.04999159649014473,
0.001273362198844552,
-0.03908366709947586,
-0.0802379921078682,
-0.01797035150229931,
0.03355574980378151,
-0.08319607377052307,
0.0507311187684536,
-0.006503160111606121,
0.04895626753568649,
0.04496285691857338,
-0.07561598718166351,
-0.012784463353455067,
0.01186006236821413,
0.027639584615826607,
-0.035552456974983215,
0.01660223864018917,
0.03974923491477966,
0.021778883412480354,
-0.035441529005765915,
-0.036735691130161285,
0.009354936890304089,
0.02586473524570465,
-0.007196460384875536,
-0.020577162504196167,
-0.010565901175141335,
-0.025883223861455917,
-0.004746798425912857,
0.0018719116924330592,
0.021834347397089005,
0.03551547974348068,
0.0508420467376709,
-0.0018014261731877923,
0.022795723751187325,
0.06566943228244781,
-0.03246495872735977,
0.0016766319749876857,
0.03570036217570305,
0.0020810572896152735,
-0.01970822550356388,
0.0010301291476935148,
0.061084408313035965,
-0.025217654183506966,
-0.04965881258249283,
0.03203973174095154,
0.04119130223989487,
-0.031947292387485504,
-0.04610911384224892,
0.025901710614562035,
0.0702914372086525,
0.019061144441366196,
-0.06463410705327988,
-0.017933376133441925,
0.011970991268754005,
-0.0420047752559185,
-0.009835625067353249,
-0.009770916774868965,
-0.022462939843535423,
0.055316146463155746,
-0.016750143840909004,
0.02270328439772129,
0.012904635630548,
0.013320616446435452,
-0.05383710563182831,
0.08918619155883789,
0.04093246906995773,
0.08060774952173233,
-0.018987193703651428,
0.023646173998713493,
-0.03207670897245407,
0.03355574980378151,
0.04433426260948181,
-0.010085212998092175,
-0.05664728209376335,
-0.03503479063510895,
-0.024496622383594513,
-0.0026460974477231503,
-0.028933746740221977,
0.010408753529191017,
-0.012359239161014557,
0.024385694414377213,
-0.057238899171352386,
0.0028124896343797445,
0.06681568920612335,
-0.03237251564860344,
0.011712159030139446,
-0.010870954021811485,
0.004531875252723694,
-0.03581129014492035,
-0.04348381608724594,
0.02286967635154724,
0.012987831607460976,
0.017637567594647408,
0.04048875719308853,
0.004206023644655943,
0.03625500202178955,
-0.03039429895579815,
0.034591078758239746,
-0.026918552815914154,
0.018145987764000893,
0.0316699743270874,
0.04862348362803459,
-0.008259521797299385,
-0.055944737046957016,
-0.015409762039780617,
-0.02817573770880699,
0.04174594208598137,
0.07561598718166351,
0.039897140115499496,
-0.02501428686082363,
0.01528034545481205,
0.06670476496219635,
0.051766447722911835,
0.015483713708817959,
0.018044304102659225,
0.05002857372164726,
-0.0929577499628067,
-0.0018060480942949653,
0.04004504531621933,
-0.046737708151340485,
-0.029525361955165863,
0.04762513190507889,
0.013764328323304653,
0.029802683740854263,
0.016722410917282104,
-0.04610911384224892,
0.03889878839254379,
-0.024755453690886497,
0.0072103263810276985,
0.014901341870427132,
0.023646173998713493,
-0.0022798036225140095,
-0.02220410853624344,
0.022074691951274872,
0.017498908564448357,
-0.05620357021689415,
0.038048338145017624,
-0.01375508401542902,
-0.030375812202692032,
-0.09451074153184891,
0.00603171531111002,
-0.018950216472148895,
-0.059050723910331726,
-0.06459712982177734,
-0.003494235221296549,
0.012765975669026375,
-0.023239437490701675,
0.022352011874318123,
-0.040969446301460266,
0.0011277690064162016,
0.028563985601067543,
-0.023572221398353577,
-0.016056843101978302,
0.015123197808861732,
0.06522572040557861,
-0.012978588230907917,
-0.024441158398985863,
0.03187334164977074,
-0.05076809227466583,
-0.02316548489034176,
-0.05542707443237305,
0.005204376764595509,
-0.02982117049396038,
0.08386164158582687,
0.021834347397089005,
0.02699250355362892,
0.04163501411676407,
0.03588524088263512,
-0.007228814531117678,
0.039231572300195694,
0.045887257903814316,
0.027602609246969223,
-0.015446738339960575,
0.050694141536951065,
0.03801136091351509,
-0.07291673868894577,
-0.007140996400266886,
0.03952737897634506,
0.06792497634887695,
-0.025790782645344734,
-0.07469158619642258,
0.020725067704916,
-0.06581734120845795,
-0.0012745176209136844,
-0.06004907935857773,
-0.027436217293143272,
0.02201922796666622,
0.021612491458654404,
0.028268177062273026,
-0.04980671778321266,
-0.013172712177038193,
-0.015483713708817959,
-0.03547850251197815,
-0.03218763694167137,
0.04840162768959999,
0.008633904159069061,
-0.06285925954580307,
-0.0909610390663147,
-0.02135366015136242,
0.05683216452598572,
0.019301488995552063,
0.08526673167943954,
0.016537530347704887,
0.05783051624894142,
-0.0608995258808136,
-0.007820431143045425,
-0.05087902396917343,
0.08955595642328262,
-0.011462570168077946,
-0.010149921290576458,
-0.045665401965379715,
-0.03078254871070385,
0.059901174157857895,
-0.006618710234761238,
-0.023738613352179527,
-0.007621685042977333,
0.0025860113091766834,
0.08275236189365387,
0.027935393154621124,
-0.013080271892249584,
-0.09347541630268097,
-0.007584708742797375,
0.012322262860834599,
-0.00854608602821827,
0.011065077967941761,
-0.0032608238980174065,
-0.039453428238630295,
-0.0032053599134087563,
0.017739251255989075,
0.012248311191797256,
0.014226528815925121,
-0.061934854835271835,
-0.02214864455163479,
0.02179737202823162,
-0.018155232071876526,
0.026844600215554237,
-0.032742276787757874,
-0.002484327182173729,
0.06326599419116974,
0.04411240667104721,
0.027824465185403824,
-0.022388989105820656,
-0.0007620529504492879,
0.001870756153948605,
-0.008906601928174496,
0.028323641046881676,
0.02677064761519432,
0.0613432414829731,
-0.04832767695188522,
-0.06064069643616676,
0.009992772713303566,
0.0007816964644007385,
-0.009280984289944172,
-0.056684259325265884,
-0.04766210541129112,
-0.050583213567733765,
-0.020799018442630768,
0.03174392506480217,
-0.004945544525980949,
-0.022444453090429306,
-0.007177972700446844,
-0.0033278430346399546,
-0.04699653759598732,
0.012340751476585865,
0.023978957906365395,
0.019024169072508812,
0.04337288811802864,
-0.010639853775501251,
-0.014494605362415314,
0.010196140967309475,
0.019024169072508812,
0.00017895823111757636,
-0.02971024252474308,
-0.05468755215406418,
-0.04315103217959404,
-0.028397593647241592,
0.021483074873685837,
0.011952502653002739,
-0.04976974055171013,
-0.06038186326622963,
0.0006337923114188015,
-0.020983899012207985,
0.07132676988840103,
-0.032742276787757874,
-0.013912232592701912,
0.031891830265522,
0.03303808718919754,
0.015243370085954666,
-0.008962065912783146,
-0.004716755356639624,
0.016944266855716705,
-0.006928384304046631,
-0.03342633321881294,
-0.014503848738968372,
-0.04370567202568054,
0.07454368472099304,
-0.03429527208209038,
-0.027584120631217957,
0.010149921290576458,
-0.04603516310453415,
-0.009396534413099289,
0.06008605286478996,
-0.009091482497751713,
0.04596120864152908,
-0.063783660531044,
-0.007140996400266886,
0.014568557031452656,
0.01253487542271614,
0.029451411217451096,
-0.01375508401542902,
0.020207403227686882,
-0.0075292447581887245,
0.02124273218214512,
0.02897072210907936,
0.05975326895713806,
-0.00021651200950145721,
-0.053356416523456573,
0.022629331797361374,
-0.04825372248888016,
0.0127937076613307,
0.0015518378932029009,
0.006017849314957857,
0.041154325008392334,
0.029451411217451096,
-0.01987461745738983,
-0.032964132726192474,
-0.08408349752426147,
-0.02201922796666622,
-0.01866365224123001,
0.001700897584669292,
-0.06008605286478996,
-0.044260311871767044,
-0.048993244767189026,
-0.015123197808861732,
0.03669871389865875,
-0.013570204377174377,
0.043742649257183075,
-0.0005410633748397231,
0.04130223020911217,
-0.041154325008392334,
0.003947191406041384,
0.0003917148569598794,
-0.037586137652397156,
-0.008929711766541004,
-0.016971999779343605,
-0.08526673167943954,
0.027805976569652557,
-0.012239066883921623,
0.033851560205221176,
0.020133450627326965,
-0.0067296382039785385,
0.043520793318748474,
-0.04529564082622528,
-0.014078624546527863,
-0.01965276151895523,
-0.036181047558784485,
0.024385694414377213,
-0.039564356207847595,
0.013930720277130604,
0.0317254364490509,
0.02214864455163479,
0.04906719550490379,
-0.03889878839254379,
-0.06585431843996048,
0.022074691951274872,
0.05032438039779663,
-0.0067666140384972095,
-0.044260311871767044,
0.05121180787682533,
0.007436804939061403,
0.0003608051920309663,
-0.04226360470056534,
-0.011286933906376362,
-0.03536757454276085,
-0.055316146463155746,
-0.0025328584015369415,
-0.0512857586145401,
0.05191435292363167,
-0.02897072210907936,
0.10057481378316879,
-0.043409861624240875,
-0.009368802420794964,
0.0028494654688984156,
0.016676191240549088,
0.0022416720166802406,
-0.008407426066696644,
-0.02231503650546074,
0.0024681503418833017,
-0.01841406524181366,
-0.0005670621176250279,
-0.00915156863629818,
0.01890399679541588,
0.038713905960321426,
-0.04488890618085861,
-0.019024169072508812,
-0.026456352323293686,
-0.04581330716609955,
-0.03359272703528404,
-0.011924770660698414,
-0.01585347391664982,
0.03908366709947586,
0.07912871241569519,
-0.007339742500334978,
-0.014707216992974281,
0.01827540434896946,
0.026012640446424484,
-0.029414433985948563,
-0.007020824588835239,
-0.019948570057749748,
0.00019282424182165414,
0.020022522658109665,
0.005588002968579531,
-0.0412282757461071,
-0.040414806455373764,
-0.03749369829893112,
-0.00615650974214077,
0.019412416964769363,
0.07654038816690445,
0.040636662393808365,
0.05875491723418236,
0.0018407132010906935,
-0.010122189298272133,
0.04492587968707085,
0.00650778179988265,
0.009715452790260315,
0.04248546436429024,
0.016528287902474403,
-0.021372146904468536,
-0.03852902725338936,
-0.04082154110074043,
0.06903425604104996,
-0.022388989105820656,
0.012987831607460976,
-0.031947292387485504,
-0.030412787571549416,
0.014023160561919212,
-0.037475209683179855,
0.006142643745988607,
-0.05343036726117134,
0.015308077447116375,
-0.001305716228671372,
-0.015271102078258991,
0.047070492058992386,
-0.06315506249666214,
-0.06363575160503387,
-0.005865323357284069,
0.033185988664627075,
0.060012102127075195,
-0.005985495634377003,
-0.009063750505447388,
-0.042337559163570404,
0.013939964585006237,
-0.027084944769740105,
0.04241150990128517,
0.026179032400250435,
0.022795723751187325,
0.020077986642718315,
0.02479243092238903,
0.06433829665184021,
-0.0078342966735363,
-0.05442872270941734,
0.03790043294429779,
-0.044075433164834976,
0.05431779474020004,
0.04744024947285652,
0.01400467287749052,
0.002242827555164695,
0.03289018198847771,
-0.051766447722911835,
0.06271135061979294,
0.0018025815952569246,
0.020355306565761566,
0.055205218493938446,
0.04204174876213074,
0.028600962832570076,
-0.004180602729320526,
-0.03570036217570305,
0.0421157032251358,
0.02305455692112446,
-0.01586271822452545,
0.02349826879799366,
0.02987663447856903,
-0.024089885875582695,
0.008259521797299385,
-0.0020752798300236464,
-0.02305455692112446,
0.007224192377179861,
-0.015187906101346016,
0.033629704266786575,
0.029303506016731262,
0.034535616636276245,
0.01186006236821413,
-0.04965881258249283,
0.05768261104822159,
0.011924770660698414,
0.028767354786396027,
0.010048236697912216,
0.003910215571522713,
0.012525631114840508,
-0.0031683838460594416,
0.0053800130262970924,
-0.02434871718287468,
-0.02921106666326523,
0.028231201693415642,
-0.022684795781970024,
-0.028323641046881676,
-0.024607550352811813,
-0.04551749676465988,
-0.005208998918533325,
-0.008573818020522594,
0.01104659028351307,
0.032964132726192474,
0.05783051624894142,
0.03289018198847771,
0.0018384021241217852
]
|
42,117 | flask_restful | output | Wraps a resource (as a flask view function), for cases where the
resource does not directly return a response object
:param resource: The resource as a flask view function
| def output(self, resource):
"""Wraps a resource (as a flask view function), for cases where the
resource does not directly return a response object
:param resource: The resource as a flask view function
"""
@wraps(resource)
def wrapper(*args, **kwargs):
resp = resource(*args, **kwargs)
if isinstance(resp, ResponseBase): # There may be a better way to test
return resp
data, code, headers = unpack(resp)
return self.make_response(data, code, headers=headers)
return wrapper
| (self, resource) | [
0.010576373897492886,
-0.08028271049261093,
-0.0003346021694596857,
-0.002206683624535799,
0.048483774065971375,
-0.003309480147436261,
-0.028378192335367203,
0.07131198793649673,
-0.00043959144386462867,
-0.012443820014595985,
0.06474974751472473,
0.007997727952897549,
0.028308380395174026,
-0.05382432043552399,
0.03314279764890671,
0.050543200224637985,
0.012321650050580502,
-0.023945190012454987,
0.011867878958582878,
-0.04090927541255951,
0.044330015778541565,
0.02677253820002079,
0.004860594402998686,
-0.0034054701682180166,
-0.03265411779284477,
0.03651117905974388,
-0.002208865247666836,
-0.0239102840423584,
0.026929613202810287,
-0.013569522649049759,
-0.046180009841918945,
-0.06621578335762024,
0.06537804752588272,
0.04359700158238411,
0.038500793278217316,
0.055534690618515015,
-0.046633780002593994,
0.03696494922041893,
-0.04394605755805969,
0.03289845585823059,
-0.012888865545392036,
-0.018185779452323914,
-0.058885619044303894,
-0.030681956559419632,
0.0248003751039505,
0.0537894144654274,
-0.0050482116639614105,
0.043666813522577286,
-0.004465725738555193,
-0.03508005291223526,
0.03523712605237961,
-0.02047209069132805,
-0.008595485240221024,
-0.005061300937086344,
-0.0011055234353989363,
0.013412447646260262,
0.008748196996748447,
0.05790826678276062,
-0.006187004502862692,
-0.045970577746629715,
-0.041188519448041916,
0.016606302931904793,
0.009415765292942524,
-0.006828393321484327,
0.02052444778382778,
0.06792615354061127,
-0.04872811213135719,
-0.007600678130984306,
0.019529640674591064,
0.0558837465941906,
0.00393777946010232,
0.01693790592253208,
-0.00897944625467062,
0.024311698973178864,
0.07434877008199692,
-0.02446877211332321,
-0.0040730382315814495,
-0.05218375846743584,
0.027086688205599785,
-0.041188519448041916,
0.010733448900282383,
-0.013037213124334812,
-0.05567431077361107,
-0.0016274701338261366,
0.010297129862010479,
-0.06981105357408524,
-0.0005483985296450555,
-0.06541295349597931,
-0.07756007462739944,
0.07071859389543533,
-0.06586672365665436,
0.008503858931362629,
-0.01126575842499733,
0.008892182260751724,
-0.011213399469852448,
-0.02647584117949009,
-0.026999423280358315,
0.007779568899422884,
0.04897245019674301,
0.003907237201929092,
0.007788295391947031,
0.08167892694473267,
0.004891136661171913,
0.06429597735404968,
0.05204413831233978,
-0.020280109718441963,
0.007770842406898737,
-0.00408612797036767,
-0.0055761574767529964,
0.00042731998837552965,
-0.010314582847058773,
0.0032309426460415125,
-0.03630174696445465,
-0.01631833240389824,
-0.01374405063688755,
-0.02790696732699871,
-0.018028704449534416,
-0.0019187130965292454,
-0.006579691544175148,
-0.03464373201131821,
-0.009633924812078476,
-0.05057810619473457,
0.027348479256033897,
-0.07497707009315491,
-0.007879922166466713,
0.028343286365270615,
-0.05124131217598915,
0.0033683832734823227,
0.007954096421599388,
0.045970577746629715,
-0.04652906581759453,
0.040141355246305466,
-0.04066493734717369,
0.025830088183283806,
0.002918974496424198,
0.02668527327477932,
-0.038500793278217316,
0.02560320310294628,
-0.024276793003082275,
0.07525631040334702,
0.01930275559425354,
0.03445175290107727,
-0.020576806738972664,
0.040350787341594696,
0.008115534670650959,
-0.006867662072181702,
0.05256772041320801,
0.02731357328593731,
0.013002308085560799,
-0.0135957021266222,
0.0394432432949543,
-0.007709757890552282,
0.06597144156694412,
0.010838165879249573,
-0.03672061115503311,
0.06666955351829529,
-0.014424707740545273,
-0.01837775856256485,
0.03968758136034012,
-0.06855445355176926,
0.002932064002379775,
-0.025062166154384613,
-0.021414538845419884,
-0.0122518390417099,
0.034434299916028976,
0.01820323057472706,
0.004437364637851715,
0.004738424904644489,
0.06433088332414627,
0.016082720831036568,
-0.07103274017572403,
-0.03815173730254173,
-0.02160651981830597,
-0.016754651442170143,
0.011030145920813084,
0.06715822964906693,
0.04042059928178787,
-0.029512621462345123,
-0.011894057504832745,
0.03780268505215645,
0.05441771447658539,
-0.07951478660106659,
-0.0373489111661911,
0.032078176736831665,
-0.0373489111661911,
-0.011911510489881039,
0.030018750578165054,
-0.012094764038920403,
-0.03092629462480545,
0.019494736567139626,
-0.0268947072327137,
0.02432915009558201,
0.02832583338022232,
-0.022095197811722755,
-0.0367555171251297,
-0.07068368792533875,
-0.030908841639757156,
-0.026964517310261726,
0.08998644351959229,
-0.02865743637084961,
-0.0767921581864357,
0.03268902376294136,
-0.006780398078262806,
0.033753640949726105,
0.012871412560343742,
0.04830924794077873,
0.002639730228111148,
0.0234565120190382,
-0.09585057199001312,
0.0001341681054327637,
-0.0030673230066895485,
0.0028949768748134375,
-0.04380643367767334,
-0.00693310983479023,
0.017670921981334686,
0.017348045483231544,
0.014616688713431358,
-0.009485576301813126,
-0.032200347632169724,
-0.01820323057472706,
-0.01745276339352131,
-0.004210479091852903,
-0.03738381713628769,
0.03380599990487099,
-0.04778566211462021,
-0.006073561497032642,
0.04359700158238411,
-0.018238136544823647,
-0.005807406734675169,
-0.035813067108392715,
-0.04502812772989273,
0.034434299916028976,
0.04384133964776993,
0.036197029054164886,
-0.013709144666790962,
-0.03567344695329666,
-0.01498319674283266,
0.02572537213563919,
-0.037034761160612106,
-0.00734324986115098,
0.014817395247519016,
0.0036236299201846123,
0.04604038596153259,
-0.03755834326148033,
-0.029146112501621246,
-0.006941836327314377,
-0.041851725429296494,
0.05204413831233978,
0.0028360739815980196,
-0.04237530753016472,
0.002497926587238908,
-0.02441641502082348,
0.0025655559729784727,
-0.08593740314245224,
0.02904139645397663,
0.003289845772087574,
-0.048099812120199203,
-0.07392989844083786,
0.010986514389514923,
0.039129093289375305,
0.015550411306321621,
0.031572047621011734,
0.03139752149581909,
0.023212173953652382,
-0.003152405144646764,
-0.07197519391775131,
-0.049600750207901,
-0.018517380580306053,
0.0063484422862529755,
0.03445175290107727,
0.0555695965886116,
0.041642289608716965,
-0.0028600713703781366,
-0.04677340388298035,
0.002004886046051979,
-0.004256292246282101,
0.05811769887804985,
-0.010009159334003925,
0.0057157794944942,
0.011553728953003883,
0.012862686067819595,
-0.005323092453181744,
0.007967186160385609,
0.003835244569927454,
0.02970460243523121,
-0.03017582558095455,
0.013080845586955547,
0.10897504538297653,
-0.001576202572323382,
-0.06038655713200569,
0.06408654153347015,
0.017286961898207664,
-0.017845449969172478,
0.0034272861666977406,
-0.02576027810573578,
0.03926871716976166,
-0.09996942430734634,
-0.037663061171770096,
0.026824895292520523,
-0.03738381713628769,
-0.017086254432797432,
-0.05410356447100639,
0.07553555816411972,
0.016772104427218437,
-0.014049474149942398,
0.009756093844771385,
0.04488850384950638,
0.009607745334506035,
-0.04611019790172577,
0.019756527617573738,
0.05005452409386635,
0.055290352553129196,
-0.03021073155105114,
-0.02181595377624035,
-0.031537141650915146,
0.04946113005280495,
0.023526323959231377,
0.0558837465941906,
-0.011885331012308598,
0.05808279290795326,
-0.06101485714316368,
0.009031804278492928,
0.04464416578412056,
0.012452545575797558,
0.0606658011674881,
-0.028639983385801315,
0.018185779452323914,
0.0008339147898368537,
0.010009159334003925,
0.03588287904858589,
-0.005755048245191574,
-0.01456433068960905,
-0.034469205886125565,
-0.029739506542682648,
-0.06359786540269852,
-0.009686282835900784,
0.01332518458366394,
-0.0603516511619091,
-0.00421266071498394,
0.02295038290321827,
0.019250396639108658,
-0.015140271745622158,
0.0066931345500051975,
0.027627723291516304,
-0.05623280256986618,
0.012295471504330635,
-0.010436751879751682,
-0.014703952707350254,
0.001072254148311913,
-0.025027262046933174,
-0.026824895292520523,
0.015183903276920319,
0.031240444630384445,
0.028727246448397636,
-0.02202538587152958,
-0.03080412559211254,
-0.019704168662428856,
0.006396437529474497,
-0.0436319075524807,
0.014084379188716412,
-0.01849992759525776,
0.038500793278217316,
-0.017819270491600037,
0.031327709555625916,
-0.025027262046933174,
-0.0029364272486418486,
0.04248002544045448,
-0.007945369929075241,
0.028692342340946198,
0.00014753038703929633,
-0.032322514802217484,
-0.020541900768876076,
0.0011464282870292664,
0.004838778171688318,
0.05134602636098862,
-0.0038090653251856565,
-0.01034076139330864,
-0.02068152278661728,
-0.042235683649778366,
-0.001584928948432207,
-0.01036694087088108,
0.031240444630384445,
0.0132990051060915,
-0.038675323128700256,
0.006461885292083025,
-0.050124332308769226,
-0.02068152278661728,
-0.006719313561916351,
-0.05518563464283943,
0.022356988862156868,
0.007504687644541264,
-0.04771585389971733,
0.01347353309392929,
0.013377542607486248,
-0.03335222974419594,
-0.050996970385313034,
-0.024905091151595116,
0.008508222177624702,
0.015035554766654968,
-0.014023294672369957,
0.06586672365665436,
0.02593480423092842,
-0.005480167455971241,
0.00045922581921331584,
-0.002395391697064042,
0.004590076394379139,
0.035394202917814255,
-0.025917353108525276,
0.01781054399907589,
-0.04460925981402397,
-0.003104410134255886,
-0.03192110359668732,
-0.027121592313051224,
-0.03331732377409935,
0.04778566211462021,
0.02130982279777527,
0.031083369627594948,
0.08859021961688995,
0.0043610092252492905,
-0.0077926586382091045,
0.04768094792962074,
0.024765469133853912,
0.10681090503931046,
0.03139752149581909,
-0.015018101781606674,
-0.05127621442079544,
-0.018936246633529663,
-0.023351795971393585,
0.01691172644495964,
0.015969278290867805,
0.013648060150444508,
-0.061573345214128494,
-0.044923409819602966,
-0.0346611849963665,
0.0543828085064888,
-0.030455071479082108,
-0.006518606562167406,
0.001683100825175643,
-0.013246647082269192,
0.02841309644281864,
0.09061474353075027,
0.0036672616843134165,
0.00434791948646307,
0.01771455444395542,
-0.00610410375520587,
0.036650802940130234,
-0.0454120896756649,
0.020157940685749054,
0.02038482576608658,
-0.04031588137149811,
0.06342333555221558,
-0.029355546459555626,
0.019564546644687653,
0.005043848417699337,
-0.02459094300866127,
-0.05665166676044464,
0.049914900213479996,
-0.06192240118980408,
-0.019110774621367455,
0.04796019196510315,
-0.010759628377854824,
0.016126353293657303,
0.03864041715860367,
-0.06160825118422508,
-0.03989701345562935,
-0.0409441813826561,
-0.014616688713431358,
0.0017780001508072019,
0.0033596567809581757,
-0.003145860508084297,
0.027261214330792427,
-0.004620618652552366,
-0.04342247173190117,
-0.021554160863161087,
0.035272032022476196,
0.029931487515568733,
0.0132990051060915,
0.027261214330792427,
-0.022042838856577873,
0.017670921981334686,
-0.07874686270952225,
0.04446963965892792,
-0.0020670616067945957,
-0.0394432432949543,
-0.012417640537023544,
-0.006361532025039196,
0.041432857513427734,
0.005654694978147745,
0.038919661194086075,
0.02068152278661728,
0.011571181938052177,
0.09180153161287308,
-0.031153181567788124,
-0.03895456716418266,
-0.0630393773317337,
0.04275926947593689,
0.004956584423780441,
-0.02282821387052536,
-0.006762945558875799,
-0.037279099225997925,
0.006287357769906521,
-0.08167892694473267,
0.0171822439879179,
-0.00020179756393190473,
0.021257463842630386,
-0.029355546459555626,
-0.007072731852531433,
-0.01637069135904312,
0.024521131068468094,
0.020698975771665573,
-0.02706923522055149,
0.05536016449332237,
0.04394605755805969,
0.029739506542682648,
-0.04499322175979614,
-0.020402278751134872,
-0.055534690618515015,
0.006549149286001921,
0.028901774436235428,
0.009712462313473225,
0.03741872310638428,
0.0457262359559536,
0.031031012535095215,
-0.00570705346763134,
0.00013075936294626445,
0.0018990787211805582,
0.031083369627594948,
-0.010305856354534626,
-0.014363623224198818,
0.01846502348780632,
-0.04977528005838394,
-0.011056325398385525,
-0.006383347790688276,
-0.020960768684744835,
-0.010811986401677132,
0.08230722695589066,
-0.12656743824481964,
-0.021100390702486038,
-0.01858719252049923,
-0.036825329065322876,
0.02115274779498577,
0.015419515781104565,
-0.025446128100156784,
-0.03511495888233185,
0.0021434174850583076,
-0.038710225373506546,
-0.02518433704972267,
-0.04076965153217316,
0.027540458366274834,
-0.05040357634425163,
-0.06324881315231323,
-0.05057810619473457,
0.05357998237013817,
0.032915908843278885,
-0.03919890522956848,
0.08970719575881958,
0.016388144344091415,
0.03574325889348984,
0.016955358907580376,
0.012539809569716454,
0.015498053282499313,
0.040211163461208344,
0.008639117702841759,
-0.009014352224767208,
0.007735936902463436,
0.0394432432949543,
0.09110341966152191,
0.010105149820446968,
-0.03926871716976166,
-0.052881870418787,
0.018011251464486122,
0.024608395993709564,
0.014319991692900658,
0.00037850678199902177,
0.03357911482453346,
0.07944497466087341,
0.07462801039218903,
-0.002343033440411091,
0.06897331774234772,
-0.0005443080444820225,
-0.027976777404546738,
-0.03310789167881012,
-0.029652243480086327,
-0.08391287922859192,
-0.032409779727458954,
-0.022514063864946365,
-0.016754651442170143,
0.03895456716418266,
0.00009087708167498931,
0.012862686067819595,
-0.0255508441478014,
-0.02244425192475319,
-0.0400366373360157,
-0.053196020424366,
0.06743747740983963,
0.015550411306321621,
-0.05001961812376976,
-0.014904659241437912,
0.02357868291437626,
0.01019241288304329,
0.009468123316764832,
0.060735613107681274,
-0.0591648630797863,
-0.012871412560343742,
0.040176257491111755,
0.017470214515924454,
-0.055325258523225784,
-0.05462714657187462,
-0.09187134355306625,
0.0050394851714372635,
-0.05958373099565506,
-0.009712462313473225,
0.029023943468928337,
0.00923251174390316,
-0.013360089622437954,
-0.02441641502082348,
-0.07386009395122528,
0.013944757170975208,
-0.022967835888266563,
-0.0005042212433181703,
0.07225443422794342,
0.004768967162817717,
0.008303151465952396,
0.052009232342243195,
-0.023613587021827698,
0.05504601448774338,
0.046180009841918945,
0.021205106750130653,
-0.010995239950716496,
0.014721404761075974,
-0.01959945261478424,
0.00018720814841799438,
0.0274881012737751,
0.03783758729696274,
0.007831927388906479,
-0.026720179244875908,
0.021711235865950584,
0.015218809247016907,
0.03541165590286255,
-0.021414538845419884,
0.03410269692540169,
-0.013813861645758152,
0.006723676808178425,
-0.029442809522151947,
0.018936246633529663,
-0.0003714165941346437,
0.025585750117897987,
-0.0119551420211792,
0.002139054238796234,
-0.08621664345264435,
-0.03972248733043671,
0.07099783420562744,
-0.01834285259246826,
-0.02089095674455166,
0.027418289333581924,
-0.017077527940273285,
0.058885619044303894,
-0.01870936155319214,
0.02124001272022724,
0.055744122713804245,
0.007299617864191532,
-0.0034840076696127653,
0.019459830597043037,
-0.04614510387182236,
0.029023943468928337,
-0.016667388379573822,
-0.019494736567139626,
-0.026720179244875908,
-0.03469609096646309,
-0.02199047990143299,
0.03143242374062538,
0.03658099099993706,
0.0026986333541572094,
-0.00979972630739212,
-0.02551593817770481,
-0.03326496481895447,
-0.021292369812726974,
-0.0009484485490247607,
-0.009721188805997372,
-0.017199696972966194,
0.009616471827030182,
-0.010846891440451145,
-0.03923381119966507,
0.03349184989929199,
-0.016990264877676964,
0.010157507844269276,
0.007408697623759508,
-0.03605740889906883,
-0.0475064180791378,
-0.06520351767539978,
0.013560796156525612,
-0.0737902820110321,
-0.011073777452111244,
0.007369428873062134,
-0.037488535046577454,
0.013141930103302002,
-0.03902437537908554,
-0.0522884763777256,
0.02534141205251217,
0.042061157524585724,
0.05148565024137497,
-0.01849992759525776,
0.035813067108392715,
0.010401846840977669,
-0.04199134558439255,
-0.03857060521841049,
-0.01709498092532158,
-0.07909592241048813,
0.015672581270337105,
-0.03141497075557709,
0.022583873942494392,
0.04963565617799759,
0.0555695965886116,
-0.014922112226486206,
0.026196597144007683,
-0.028692342340946198,
-0.03905928134918213,
0.02954752743244171,
0.059897881001234055,
-0.01714733988046646,
-0.02038482576608658,
-0.008879092521965504,
0.0388498492538929,
-0.009852084331214428,
-0.018569739535450935,
-0.01431126520037651,
-0.053649790585041046,
0.022793307900428772,
0.049914900213479996,
0.012941223569214344,
-0.006666955072432756,
-0.004803872667253017,
-0.06056108698248863,
-0.023473965004086494,
0.013883672654628754,
-0.011169767938554287,
-0.025882447138428688,
0.006091014016419649,
0.024660753086209297,
-0.031868744641542435,
-0.012391461059451103,
0.012408914044499397,
-0.0015205718809738755,
-0.028901774436235428,
0.07728083431720734,
-0.0285352673381567,
0.01912822760641575,
0.029861677438020706,
-0.01397093664854765,
0.048693206161260605,
0.06761199980974197,
-0.019739074632525444,
-0.01048910990357399,
0.05892052501440048,
0.10799769312143326,
0.019442377611994743,
-0.011379200965166092,
0.03260175883769989,
0.04981018230319023,
0.02626640722155571,
-0.03916399925947189,
0.016239795833826065,
-0.015428242273628712,
0.009939348325133324,
0.023090004920959473,
0.08977700769901276,
0.01069854386150837,
0.026912160217761993
]
|
42,118 | flask_restful | owns_endpoint | Tests if an endpoint name (not path) belongs to this Api. Takes
in to account the Blueprint name part of the endpoint name.
:param endpoint: The name of the endpoint being checked
:return: bool
| def owns_endpoint(self, endpoint):
"""Tests if an endpoint name (not path) belongs to this Api. Takes
in to account the Blueprint name part of the endpoint name.
:param endpoint: The name of the endpoint being checked
:return: bool
"""
if self.blueprint:
if endpoint.startswith(self.blueprint.name):
endpoint = endpoint.split(self.blueprint.name + '.', 1)[-1]
else:
return False
return endpoint in self.endpoints
| (self, endpoint) | [
-0.036107148975133896,
-0.07214558869600296,
-0.05606742948293686,
0.027535567060112953,
-0.01421439927071333,
0.023619091138243675,
0.062113918364048004,
0.023533204570412636,
-0.0541779026389122,
0.005861829034984112,
-0.0017488864250481129,
-0.03607279434800148,
0.02818831242620945,
-0.05369693040847778,
-0.003010360524058342,
-0.0046808747574687,
0.083688884973526,
-0.006188202183693647,
0.0612206868827343,
-0.046963341534137726,
-0.010718773119151592,
0.020114878192543983,
0.06771378964185715,
-0.04510816931724548,
-0.014918677508831024,
0.07427560538053513,
-0.003074776381254196,
-0.010315101593732834,
0.02772451937198639,
-0.017392240464687347,
-0.02435772493481636,
-0.05531161651015282,
0.09523218125104904,
0.0451425239443779,
0.11591391265392303,
0.04225670173764229,
0.02030383050441742,
0.05613613873720169,
-0.07564980536699295,
-0.014764079824090004,
0.009181384928524494,
-0.02732943557202816,
-0.014506416395306587,
0.01452359464019537,
0.06036181002855301,
0.04820012301206589,
-0.023601913824677467,
0.07248914241790771,
-0.0314863957464695,
-0.012977616861462593,
0.008915133774280548,
-0.041122984141111374,
0.018757853657007217,
0.056342270225286484,
0.03450964018702507,
-0.019238824024796486,
0.014334641396999359,
0.03294648602604866,
0.0005920876865275204,
0.07990983128547668,
-0.04067637026309967,
-0.011079501360654831,
0.01710881106555462,
-0.08293307572603226,
0.032121963798999786,
0.0023790867999196053,
-0.030266791582107544,
0.0056256381794810295,
-0.02669386751949787,
0.046173177659511566,
0.04325299710035324,
0.0260926540941,
0.012831608764827251,
0.02911589853465557,
0.011216921731829643,
-0.04146653786301613,
0.05252885818481445,
0.014222987927496433,
0.0100746164098382,
-0.05709807947278023,
0.012728543020784855,
-0.038443293422460556,
-0.028153957799077034,
-0.02458103373646736,
0.0374469980597496,
0.026195719838142395,
0.0021847658790647984,
-0.029854532331228256,
-0.025113536044955254,
0.03950829803943634,
-0.01092490367591381,
-0.02107681892812252,
0.0021847658790647984,
-0.004427506122738123,
0.046722859144210815,
-0.05239143967628479,
-0.027380969375371933,
0.011663536541163921,
0.022588441148400307,
-0.06791991740465164,
-0.042050570249557495,
-0.003963713068515062,
0.011079501360654831,
0.06135810539126396,
0.03323850408196449,
-0.007858715951442719,
0.02942509390413761,
0.003703902941197157,
-0.06049922853708267,
-0.0037081975024193525,
0.014308875426650047,
-0.033685117959976196,
0.0185001902282238,
-0.01104514580219984,
0.026968708261847496,
-0.02616136521100998,
0.040710724890232086,
0.02140319161117077,
-0.005552633665502071,
-0.03621021658182144,
0.0147554911673069,
-0.009421870112419128,
0.026607980951666832,
-0.05871276929974556,
0.07056525349617004,
-0.02420312725007534,
-0.038924261927604675,
0.030627520754933357,
-0.03351334482431412,
0.004874121863394976,
-0.04637930914759636,
0.05074239894747734,
-0.06702668964862823,
0.005887595470994711,
-0.003779054619371891,
0.017933331429958344,
0.039783138781785965,
0.034543994814157486,
-0.07544367015361786,
0.022828925400972366,
0.0029781528282910585,
0.02116270549595356,
-0.011929788626730442,
-0.01202426478266716,
0.005921950563788414,
0.0658586174249649,
-0.050089653581380844,
0.03341027721762657,
0.11096678674221039,
0.00462504755705595,
-0.03741263970732689,
0.02200440503656864,
0.0025036237202584743,
-0.027999360114336014,
-0.01467819232493639,
-0.03614150360226631,
-0.04318428784608841,
0.01210156362503767,
0.011972731910645962,
-0.04129476100206375,
0.01643029972910881,
0.033290036022663116,
-0.07922273129224777,
-0.07936014980077744,
-0.023327073082327843,
0.0008277418091893196,
-0.0025014765560626984,
0.023756511509418488,
0.00745504442602396,
0.03507649898529053,
-0.05184175819158554,
-0.00047721300506964326,
-0.017710024490952492,
0.027776051312685013,
0.025749104097485542,
-0.012943262234330177,
0.021197061985731125,
-0.017435183748602867,
-0.020200764760375023,
-0.02781040593981743,
0.05022707208991051,
-0.006875302642583847,
-0.02497611567378044,
-0.06273230910301208,
0.00932739395648241,
-0.0013731281505897641,
0.014472061768174171,
-0.011010791175067425,
-0.019256001338362694,
0.054452743381261826,
-0.0455891415476799,
0.024615388363599777,
0.041569601744413376,
0.019084226340055466,
0.013218102976679802,
-0.04047023877501488,
0.002278168685734272,
0.047753509134054184,
0.017478127032518387,
-0.030009130015969276,
0.012865963391959667,
-0.012307694181799889,
-0.01217886246740818,
0.031177200376987457,
0.030112193897366524,
0.03840893879532814,
0.04593269154429436,
-0.02545708604156971,
-0.010169092565774918,
-0.022983523085713387,
-0.05826615169644356,
-0.0477878637611866,
0.015056096948683262,
-0.000050626716983970255,
0.0015964359045028687,
0.08794891089200974,
0.017847444862127304,
-0.013449999503791332,
-0.010400989092886448,
0.023447316139936447,
0.04881851375102997,
0.036588121205568314,
0.07826078683137894,
-0.028222667053341866,
0.02296634577214718,
0.015116218477487564,
0.023601913824677467,
0.03217349573969841,
-0.01858607865869999,
-0.026676690205931664,
-0.03552311286330223,
-0.008107789792120457,
0.013578830286860466,
0.04016104340553284,
0.01529658306390047,
0.029923241585493088,
0.002563745016232133,
0.01867196522653103,
0.049539972096681595,
0.014197221025824547,
0.03761877119541168,
0.015459769405424595,
-0.01819099485874176,
-0.03538569435477257,
-0.047032054513692856,
-0.024323370307683945,
0.0023318484891206026,
0.003628751263022423,
-0.013802138157188892,
-0.06864137202501297,
-0.010804660618305206,
0.027741696685552597,
-0.019960280507802963,
-0.06778249889612198,
-0.01599227264523506,
-0.08348274976015091,
-0.08231468498706818,
-0.030249614268541336,
0.02428901568055153,
0.024769986048340797,
-0.07001557946205139,
0.03840893879532814,
0.04854367673397064,
0.07001557946205139,
-0.03631328046321869,
-0.01735788583755493,
0.05513984337449074,
-0.0036394873168319464,
-0.010091793723404408,
-0.015167751349508762,
0.02341296151280403,
-0.04871544986963272,
0.01858607865869999,
-0.004290085751563311,
0.05926244705915451,
-0.03651941195130348,
0.022451020777225494,
0.026522092521190643,
-0.010778894647955894,
-0.01421439927071333,
0.03535133972764015,
-0.0037081975024193525,
0.009378926828503609,
0.010830427519977093,
0.011423051357269287,
-0.037275221198797226,
-0.013604597188532352,
0.03569488972425461,
0.0016941330395638943,
-0.01467819232493639,
0.03243115916848183,
-0.03320414945483208,
-0.013690484687685966,
0.018208172172307968,
-0.07496270537376404,
0.0663052350282669,
0.00650169188156724,
-0.01585485227406025,
0.012462291866540909,
-0.05486500263214111,
-0.0002477320667821914,
0.04479897394776344,
-0.057750824838876724,
-0.007287563290446997,
-0.0016479684272781014,
-0.024340547621250153,
0.05531161651015282,
-0.021042464300990105,
0.014059801585972309,
-0.04019539803266525,
-0.013939558528363705,
0.006209673825651407,
-0.04799399524927139,
0.0016211285255849361,
0.01982286013662815,
0.026985885575413704,
-0.05826615169644356,
-0.022588441148400307,
-0.03371947258710861,
0.05881583318114281,
-0.041260406374931335,
0.08829245716333389,
-0.015236461535096169,
0.010220625437796116,
-0.005870417691767216,
0.017409417778253555,
0.007665468845516443,
0.019393421709537506,
-0.04105427488684654,
0.009799775667488575,
-0.028772348538041115,
-0.07468786090612411,
0.03748135268688202,
-0.011182566173374653,
-0.02116270549595356,
-0.083688884973526,
-0.030799295753240585,
-0.02803371474146843,
0.02770734205842018,
0.05613613873720169,
0.0035192447248846292,
-0.0030253909062594175,
0.04424929618835449,
0.005818885285407305,
-0.012823019176721573,
-0.00012145044456701726,
-0.012582533992826939,
-0.01913575828075409,
0.06548070907592773,
-0.04565785080194473,
-0.032826244831085205,
0.04854367673397064,
0.02008052170276642,
-0.0006033604149706662,
0.03272317722439766,
0.004453272558748722,
-0.034629881381988525,
0.010778894647955894,
-0.005097429268062115,
0.04373396933078766,
0.0687100812792778,
-0.06506845355033875,
-0.038374584168195724,
-0.020733268931508064,
-0.041191697120666504,
0.014746901579201221,
0.02997477538883686,
-0.02801653742790222,
-0.031108491122722626,
-0.03761877119541168,
-0.026899999007582664,
-0.0013162276009097695,
0.03552311286330223,
-0.050020940601825714,
0.011062324047088623,
-0.0016082454239949584,
0.023447316139936447,
-0.00023941170366015285,
0.048681095242500305,
0.035729244351387024,
0.028394442051649094,
0.09296474605798721,
0.010667240247130394,
0.058060020208358765,
0.004732407163828611,
-0.041397824883461,
-0.05531161651015282,
0.018242526799440384,
-0.04022975638508797,
0.024563854560256004,
0.03074776381254196,
-0.01374201662838459,
-0.07317624241113663,
0.02983735501766205,
-0.03014655038714409,
-0.10182834416627884,
-0.030816473066806793,
-0.04153524711728096,
0.012994795106351376,
0.02528531104326248,
0.09282732754945755,
0.0214719008654356,
0.018706319853663445,
0.028360087424516678,
0.005612755194306374,
0.012823019176721573,
0.017314940690994263,
0.05486500263214111,
-0.0035192447248846292,
0.02193569391965866,
-0.0407450795173645,
-0.07496270537376404,
-0.01323528029024601,
-0.03366794064640999,
-0.012737131677567959,
0.008635998703539371,
0.011285630986094475,
0.018483012914657593,
0.003051157109439373,
0.010787483304738998,
0.025405554100871086,
0.022674327716231346,
0.0396457202732563,
0.012505235150456429,
-0.03816845268011093,
-0.019170112907886505,
-0.035316985100507736,
-0.05259757116436958,
0.06565248966217041,
0.010881959460675716,
-0.01444629579782486,
-0.027312258258461952,
0.02614418789744377,
-0.06146116927266121,
0.0510859489440918,
-0.03512803092598915,
0.007914543151855469,
-0.02200440503656864,
0.007497988175600767,
0.005286382045596838,
0.006982662249356508,
0.00786301027983427,
-0.09110957384109497,
0.025336842983961105,
-0.008369747549295425,
0.0056685819290578365,
-0.014042623341083527,
0.011431640014052391,
0.09688121825456619,
-0.027432501316070557,
0.0028579100035130978,
-0.026899999007582664,
0.0034591234289109707,
-0.041810087859630585,
-0.0499865859746933,
-0.06572119891643524,
0.018878096714615822,
0.03926781192421913,
0.03122873418033123,
0.05057062208652496,
-0.03311825916171074,
0.018603255972266197,
-0.048371899873018265,
-0.046413663774728775,
0.0015771111939102411,
0.006566107273101807,
0.02272585965692997,
0.02186698466539383,
0.018946805968880653,
0.07049654424190521,
0.03614150360226631,
-0.05342208966612816,
0.016395943239331245,
0.0035085086710751057,
-0.0012421495048329234,
0.024323370307683945,
0.05349080264568329,
0.08307049423456192,
0.011929788626730442,
0.016902681440114975,
-0.02552579715847969,
-0.005389447323977947,
-0.08066564053297043,
-0.012075797654688358,
0.03476730361580849,
-0.01865478791296482,
-0.0607740692794323,
0.044695910066366196,
-0.015622955746948719,
-0.0563766248524189,
0.00865317601710558,
-0.03468141704797745,
-0.02037253975868225,
-0.00012252404121682048,
0.01011755969375372,
0.01662784069776535,
0.057338565587997437,
0.04105427488684654,
0.009499168954789639,
0.015751786530017853,
0.007794300094246864,
0.0016501155914738774,
0.040092334151268005,
-0.024185949936509132,
-0.01030651293694973,
-0.03693167120218277,
-0.06410650908946991,
0.011242687702178955,
-0.012204628437757492,
0.024563854560256004,
0.03717215731739998,
0.058369215577840805,
0.03052445501089096,
0.03365076333284378,
0.014506416395306587,
0.06348811835050583,
0.01660207472741604,
-0.019221646711230278,
0.019582374021410942,
0.018929628655314445,
0.06177036464214325,
-0.050467558205127716,
0.03645069897174835,
0.030507277697324753,
0.015133395791053772,
0.006845242343842983,
-0.017546838149428368,
-0.015021742321550846,
-0.07764239609241486,
-0.016851147636771202,
0.03492189943790436,
0.041191697120666504,
-0.011689303442835808,
-0.006617640145123005,
0.003974448889493942,
0.03734393045306206,
-0.06974073499441147,
-0.0647592544555664,
0.01127704232931137,
0.05311289429664612,
0.044146228581666946,
0.0024628271348774433,
-0.013802138157188892,
0.002203017007559538,
-0.053593866527080536,
-0.0015223578084260225,
-0.020028989762067795,
-0.049849167466163635,
0.053284671157598495,
-0.02195287123322487,
0.04545171931385994,
0.04737560451030731,
0.05397177115082741,
-0.04589833691716194,
0.005196200218051672,
0.003207902191206813,
0.008983843959867954,
0.021197061985731125,
-0.006703527644276619,
0.036656830459833145,
-0.030868005007505417,
0.0008819583454169333,
0.04050459340214729,
0.03926781192421913,
0.0018218908226117492,
0.010701595805585384,
0.0024048530030995607,
-0.05335338041186333,
0.042119283229112625,
-0.027896294370293617,
-0.03569488972425461,
-0.049230776727199554,
-0.015751786530017853,
-0.05970906466245651,
0.022124648094177246,
0.014781257137656212,
0.026058299466967583,
-0.02662515826523304,
0.007528048474341631,
-0.05067368596792221,
-0.03566053509712219,
-0.0557238794863224,
-0.019152935594320297,
-0.03858071193099022,
-0.02598959021270275,
-0.03864942118525505,
-0.011448818258941174,
0.028480330482125282,
0.02124859392642975,
-0.03950829803943634,
-0.024890229105949402,
-0.009138441644608974,
0.024323370307683945,
-0.061632946133613586,
-0.01413710042834282,
0.04607011377811432,
-0.015279404819011688,
-0.02303505688905716,
0.008206561207771301,
0.033685117959976196,
0.014300286769866943,
0.05397177115082741,
0.04799399524927139,
-0.04950561746954918,
0.028841057792305946,
0.02655644714832306,
-0.016619252040982246,
-0.06489667296409607,
-0.04153524711728096,
-0.05699501559138298,
0.03234527260065079,
0.06238875538110733,
-0.016421711072325706,
0.004313705023378134,
0.005045896861702204,
-0.003074776381254196,
-0.00030570619856007397,
0.010950669646263123,
-0.002559450687840581,
0.01735788583755493,
0.02310376614332199,
0.017761556431651115,
0.011569060385227203,
0.010469699278473854,
-0.0867808386683464,
-0.016301468014717102,
0.06809169054031372,
-0.048612385988235474,
-0.0017263408517464995,
-0.024649742990732193,
0.004934242926537991,
-0.04730689525604248,
-0.01510762982070446,
-0.03286059945821762,
0.00032717810245230794,
-0.08554405719041824,
-0.004440389107912779,
-0.026796933263540268,
-0.04607011377811432,
0.006136669311672449,
-0.013218102976679802,
-0.020801978185772896,
-0.008099201135337353,
0.0385463573038578,
0.020028989762067795,
0.042359765619039536,
-0.01836276985704899,
-0.04363090544939041,
-0.008339686319231987,
-0.012110152281820774,
-0.0008465297287330031,
0.043527837842702866,
0.022347955033183098,
0.003263728925958276,
0.017546838149428368,
-0.042978156358003616,
-0.0036716952454298735,
0.01858607865869999,
0.00624402891844511,
0.0020162116270512342,
0.011131033301353455,
-0.06544635444879532,
0.010933492332696915,
0.0012088681105524302,
-0.007528048474341631,
0.030644698068499565,
0.03444093093276024,
-0.04936819523572922,
-0.043527837842702866,
0.06757637113332748,
0.0003612647415138781,
0.062113918364048004,
0.002120350254699588,
-0.03823716193437576,
0.008769124746322632,
-0.009696710854768753,
-0.026814110577106476,
-0.0054925126023590565,
-0.026796933263540268,
-0.02739814668893814,
-0.0080949068069458,
-0.022914813831448555,
-0.02272585965692997,
0.016344411298632622,
0.03490472212433815,
0.03730957582592964,
0.02897847816348076,
-0.07084009796380997,
0.018483012914657593,
-0.04675721377134323,
-0.02787911705672741,
-0.09069731086492538,
0.008588760159909725,
0.06420957297086716,
-0.031177200376987457,
-0.00072950788307935,
-0.02717483788728714,
0.01312362588942051,
-0.005015836097300053,
0.02600676752626896,
0.0396457202732563,
0.024958938360214233,
0.044077519327402115,
0.027672987431287766,
0.016499008983373642,
0.04682592302560806,
0.008249504491686821,
-0.029098721221089363,
0.023206831887364388,
0.000975361152086407,
-0.04442106932401657,
0.0040818084962666035,
0.022622795775532722,
-0.06245746836066246,
0.06194214150309563,
0.015459769405424595,
-0.0451425239443779,
0.012857374735176563,
0.01609533652663231,
0.013535887002944946,
-0.01015191525220871,
0.030868005007505417,
-0.022279245778918266,
-0.07482527941465378,
-0.01616404764354229,
-0.035420048981904984,
-0.031022602692246437,
0.02513071335852146,
-0.0541779026389122,
0.01194696594029665,
-0.01982286013662815,
-0.010881959460675716,
-0.03038703463971615,
0.09214022755622864,
0.01441194023936987,
-0.020028989762067795,
-0.0034226211719214916,
-0.0023297013249248266,
0.012685599736869335,
-0.03452681750059128,
0.05050191283226013,
-0.012281927280128002,
0.017409417778253555,
-0.02100810781121254,
0.02116270549595356,
0.020028989762067795,
0.000813248276244849,
-0.043046869337558746,
0.02023511938750744,
0.024409256875514984,
0.010323690250515938,
0.03210478648543358,
-0.029717111960053444,
-0.02497611567378044,
-0.045245591551065445,
-0.03516238555312157,
-0.044695910066366196,
0.04534865543246269,
-0.0013645393773913383,
-0.00745504442602396,
-0.05342208966612816,
0.0300606619566679,
0.0038241457659751177,
0.01603521592915058,
0.04600140079855919,
0.061873432248830795,
-0.001976488623768091,
0.001543829683214426
]
|
42,119 | flask_restful | representation | Allows additional representation transformers to be declared for the
api. Transformers are functions that must be decorated with this
method, passing the mediatype the transformer represents. Three
arguments are passed to the transformer:
* The data to be represented in the response body
* The http status code
* A dictionary of headers
The transformer should convert the data appropriately for the mediatype
and return a Flask response object.
Ex::
@api.representation('application/xml')
def xml(data, code, headers):
resp = make_response(convert_data_to_xml(data), code)
resp.headers.extend(headers)
return resp
| def representation(self, mediatype):
"""Allows additional representation transformers to be declared for the
api. Transformers are functions that must be decorated with this
method, passing the mediatype the transformer represents. Three
arguments are passed to the transformer:
* The data to be represented in the response body
* The http status code
* A dictionary of headers
The transformer should convert the data appropriately for the mediatype
and return a Flask response object.
Ex::
@api.representation('application/xml')
def xml(data, code, headers):
resp = make_response(convert_data_to_xml(data), code)
resp.headers.extend(headers)
return resp
"""
def wrapper(func):
self.representations[mediatype] = func
return func
return wrapper
| (self, mediatype) | [
0.01418270356953144,
-0.04351057484745979,
0.036410141736269,
0.002381186932325363,
0.06595592945814133,
0.03288716450333595,
-0.025677775964140892,
0.004857712425291538,
-0.0356474369764328,
0.04227571561932564,
0.04972118139266968,
0.03995127975940704,
0.02177344635128975,
0.013256560079753399,
0.013519875705242157,
0.023952607065439224,
-0.006864355877041817,
0.0016128058778122067,
0.04267523065209389,
-0.05052020773291588,
0.03493920713663101,
-0.01457313634455204,
-0.00935223139822483,
-0.03984231874346733,
0.0022756338585168123,
0.039551764726638794,
-0.021246816962957382,
-0.03570191562175751,
0.01219421997666359,
-0.02891019731760025,
-0.008684863336384296,
-0.07859505712985992,
0.05600442737340927,
0.007699701003730297,
0.028964675962924957,
0.03381330892443657,
-0.04485439136624336,
0.01875894144177437,
-0.09624625742435455,
0.019757723435759544,
-0.010913962498307228,
0.01341999787837267,
-0.02605912834405899,
-0.04485439136624336,
0.016207506880164146,
0.08033838868141174,
-0.007731480523943901,
0.03098040074110031,
-0.012820728123188019,
0.014900011010468006,
-0.026567600667476654,
-0.013801350258290768,
0.017142729833722115,
0.020338833332061768,
0.0019306001486256719,
-0.018995016813278198,
0.027348466217517853,
0.06711814552545547,
0.019539806991815567,
0.013165761716663837,
-0.008979957550764084,
0.02716686949133873,
-0.004580777138471603,
-0.029745543375611305,
0.009452109225094318,
0.05578651279211044,
-0.05124659463763237,
0.0045467279851436615,
-0.003268740838393569,
0.03546584025025368,
-0.00665551982820034,
-0.004283412825316191,
0.006101649720221758,
0.033613551408052444,
0.0657743290066719,
-0.0023789170663803816,
-0.01986668072640896,
-0.02669471688568592,
0.06185184419155121,
-0.010868563316762447,
0.04151301085948944,
0.0009426004835404456,
-0.044636473059654236,
-0.014981728978455067,
0.02010275609791279,
-0.04554445669054985,
-0.06392204761505127,
-0.05219089612364769,
-0.0019998338539153337,
0.016743216663599014,
-0.07031425088644028,
-0.020320672541856766,
0.005965452175587416,
0.0019998338539153337,
-0.04579869285225868,
0.013229320757091045,
-0.03205182030797005,
-0.027057910338044167,
0.05662185698747635,
-0.023970765992999077,
-0.019212933257222176,
0.09697264432907104,
0.007781419437378645,
-0.001245072460733354,
-0.007345587480813265,
-0.0475057028234005,
-0.0006628280389122665,
-0.008748422376811504,
-0.07648853957653046,
0.02598649077117443,
-0.01374687161296606,
-0.023462295532226562,
-0.05854678153991699,
-0.019122134894132614,
0.022953825071454048,
0.0035592957865446806,
0.018668143078684807,
-0.027312146499753,
-0.031161997467279434,
-0.0012655021855607629,
-0.0054297419264912605,
-0.03332299739122391,
0.01600775122642517,
-0.023171741515398026,
-0.03437625989317894,
0.02130129560828209,
0.005683977156877518,
0.017006533220410347,
0.01556283887475729,
-0.019921159371733665,
-0.08803808689117432,
0.026821834966540337,
-0.05211825668811798,
0.05843782424926758,
0.04572605341672897,
0.014446019195020199,
-0.01271176990121603,
-0.001575351576320827,
-0.01870446279644966,
0.11019288748502731,
-0.05171874538064003,
0.04812312871217728,
0.03864378109574318,
0.014146384783089161,
-0.01932189054787159,
-0.05535067990422249,
0.007608902640640736,
-0.00018939969595521688,
-0.0022018603049218655,
-0.035284243524074554,
-0.0020043738186359406,
0.04347425326704979,
0.10256582498550415,
-0.033304836601018906,
0.015354002825915813,
0.018976857885718346,
-0.016806775704026222,
0.033631712198257446,
0.03190654516220093,
0.0014573136577382684,
-0.006147048901766539,
0.006968773901462555,
-0.0018329918384552002,
-0.029636584222316742,
0.028147490695118904,
0.01656161993741989,
0.026022810488939285,
-0.04372848942875862,
0.019031336531043053,
0.012956925667822361,
-0.016652418300509453,
-0.04365584999322891,
-0.03423098102211952,
-0.00516642676666379,
0.02010275609791279,
0.05970900133252144,
0.042420994490385056,
0.0538615882396698,
-0.0038135310169309378,
0.06185184419155121,
0.06225135549902916,
-0.03294164314866066,
-0.07380090653896332,
0.0020497730001807213,
-0.013174842111766338,
-0.03795371577143669,
0.013183921575546265,
-0.007341047283262014,
0.009797142818570137,
0.028946517035365105,
0.032433174550533295,
0.03443073853850365,
0.010932122357189655,
-0.031634148210287094,
-0.03261477127671242,
-0.033395636826753616,
-0.0277116596698761,
-0.02558697760105133,
0.04205780103802681,
-0.020974421873688698,
-0.03128911554813385,
0.015499279834330082,
0.026567600667476654,
0.054442696273326874,
0.010405492037534714,
0.030526408925652504,
0.03056272864341736,
-0.006001771427690983,
-0.11070135980844498,
-0.06065330281853676,
-0.021646328270435333,
0.0006514782435260713,
0.008480566553771496,
-0.012448455207049847,
-0.009238732978701591,
-0.058183588087558746,
0.00969726499170065,
0.010723286308348179,
0.030708005651831627,
-0.0665370374917984,
0.03744524344801903,
0.027602700516581535,
-0.02843804657459259,
-0.017696600407361984,
0.018668143078684807,
0.009906101040542126,
0.01331103965640068,
-0.06530217826366425,
-0.0241705235093832,
-0.024842431768774986,
-0.030054256319999695,
-0.0031098437029868364,
-0.007005093619227409,
0.030944081023335457,
0.027348466217517853,
-0.04957590252161026,
0.02725766785442829,
0.024097884073853493,
0.019231092184782028,
0.018123352900147438,
0.06268718838691711,
0.029037315398454666,
0.007209389936178923,
-0.006918834988027811,
-0.06421259790658951,
-0.021646328270435333,
-0.023008303716778755,
0.03079880401492119,
-0.0032664709724485874,
-0.039479125291109085,
-0.028056692332029343,
-0.024188682436943054,
-0.010251134634017944,
-0.021446572616696358,
0.013129442930221558,
-0.004642066080123186,
-0.09406709671020508,
-0.03312323987483978,
0.04056870564818382,
-0.04884951561689377,
0.04627084359526634,
-0.0016332354862242937,
-0.0077224005945026875,
0.04790521413087845,
-0.023335179314017296,
-0.04401904344558716,
0.0012564222561195493,
0.00958830676972866,
0.02202768251299858,
0.010033219121396542,
0.024188682436943054,
0.04884951561689377,
-0.008807441219687462,
-0.058801017701625824,
0.012557413429021835,
0.006614660378545523,
0.015317683108150959,
-0.06461211293935776,
0.006646439898759127,
0.013792270794510841,
-0.02311726287007332,
-0.08099213987588882,
0.0245518758893013,
0.012384896166622639,
0.06123441457748413,
-0.042566269636154175,
0.0014039695961400867,
0.1022026315331459,
-0.018513785675168037,
-0.03824426978826523,
0.05945476517081261,
0.0029327869415283203,
-0.05992691591382027,
-0.011195437982678413,
-0.007645221892744303,
-0.03857114166021347,
-0.07271132618188858,
-0.04071398451924324,
0.03154335170984268,
-0.05059284716844559,
-0.027293987572193146,
0.024370279163122177,
0.07953936606645584,
0.042094118893146515,
-0.02113785780966282,
0.007804119028151035,
0.034576013684272766,
-0.034503377974033356,
-0.025042187422513962,
-0.001579891424626112,
0.00333683961071074,
0.08367976546287537,
-0.06541113555431366,
0.004667035769671202,
-0.0014720683684572577,
0.027185028418898582,
0.02217295952141285,
0.049612224102020264,
0.02662207931280136,
0.07670645415782928,
0.017760159447789192,
0.026240725070238113,
-0.02139209397137165,
0.00836252886801958,
0.07031425088644028,
-0.010605248622596264,
0.028310928493738174,
-0.022154800593852997,
0.030471930280327797,
0.039551764726638794,
-0.04579869285225868,
-0.004408260341733694,
-0.002284713787958026,
0.01469117496162653,
-0.05415214225649834,
-0.02130129560828209,
-0.0091070756316185,
-0.047941531985998154,
-0.0004832175327464938,
0.0025446240324527025,
0.005643118172883987,
-0.01735156588256359,
-0.028783079236745834,
-0.0030894142109900713,
-0.02193688414990902,
0.038135312497615814,
0.032124459743499756,
-0.02288118749856949,
0.04932167008519173,
0.01686125621199608,
-0.05527804046869278,
-0.010314693674445152,
0.032905325293540955,
0.04663403704762459,
-0.006224227603524923,
-0.03581087291240692,
-0.04445487633347511,
-0.0855683758854866,
-0.05876469984650612,
0.028074853122234344,
0.049939095973968506,
0.028074853122234344,
-0.015081607736647129,
0.01057800929993391,
-0.0030440150294452906,
-0.006587421055883169,
0.011485992930829525,
-0.006383124738931656,
0.06911571323871613,
0.0062378472648561,
0.0007944856188260019,
0.011268076486885548,
-0.04587133228778839,
-0.006283246446400881,
0.03308692201972008,
-0.005516000557690859,
-0.012593732215464115,
0.009706344455480576,
-0.07089535892009735,
0.04895847663283348,
0.017315248027443886,
0.059745319187641144,
0.0008455596980638802,
0.00062083377270028,
0.05346207320690155,
-0.03838954493403435,
0.04529022052884102,
0.022463513538241386,
-0.10176680237054825,
-0.00687343580648303,
0.0013120363000780344,
-0.04093189910054207,
-0.049866460263729095,
0.029364189133048058,
-0.044164322316646576,
-0.08375240862369537,
-0.07427305728197098,
0.019939320161938667,
-0.0009800548432394862,
-0.009379470720887184,
0.04939430579543114,
-0.015953272581100464,
0.023389657959342003,
-0.0026059129741042852,
0.03241501376032829,
0.005157346837222576,
0.04554445669054985,
0.018114272505044937,
0.019285570830106735,
0.015535599552094936,
0.060399070382118225,
-0.04881319776177406,
-0.038462184369564056,
-0.04997541755437851,
0.08171852678060532,
-0.010251134634017944,
0.0522635355591774,
0.007300188299268484,
-0.04568973556160927,
0.013737792149186134,
0.046307165175676346,
0.04608924686908722,
0.08970878273248672,
0.04394640773534775,
-0.006551101803779602,
0.030381131917238235,
-0.009951500222086906,
-0.02146473154425621,
-0.05803831294178963,
0.023008303716778755,
0.029364189133048058,
-0.0007893782458268106,
-0.04016919434070587,
-0.06308670341968536,
0.07071376591920853,
-0.03926121070981026,
0.018958697095513344,
-0.05495116859674454,
-0.03717285022139549,
0.010305614210665226,
0.03664621710777283,
0.015617317520081997,
-0.026749197393655777,
-0.03397674486041069,
-0.015590078197419643,
-0.010505369864404202,
-0.03791739419102669,
0.015426641330122948,
0.05934580788016319,
-0.058183588087558746,
0.03301428258419037,
-0.010114937089383602,
0.060399070382118225,
0.004074576310813427,
0.02843804657459259,
-0.043764811009168625,
0.05186402425169945,
-0.04656139761209488,
-0.0063286456279456615,
0.035992469638586044,
0.0403871089220047,
-0.06170656532049179,
-0.07481785118579865,
-0.03582903370261192,
0.01037825271487236,
0.03294164314866066,
-0.00013527537521440536,
-0.01600775122642517,
-0.036428302526474,
-0.0010691506322473288,
0.04554445669054985,
-0.012448455207049847,
0.0018874709494411945,
-0.011785627342760563,
0.0120761813595891,
0.04049606993794441,
0.014936329796910286,
0.0017592181684449315,
-0.029672903940081596,
-0.04848632216453552,
-0.017551323398947716,
0.018114272505044937,
-0.042893145233392715,
0.01995747908949852,
-0.005951832514256239,
0.006383124738931656,
0.01749684475362301,
0.011694828979671001,
0.02233639732003212,
-0.014418779872357845,
-0.006769017782062292,
0.07823186367750168,
0.017787398770451546,
0.05219089612364769,
0.0016672848723828793,
0.054370056837797165,
0.026749197393655777,
-0.04768729954957962,
-0.020702026784420013,
-0.047941531985998154,
0.04663403704762459,
-0.06591960787773132,
-0.009270512498915195,
0.0031007640063762665,
0.0053117042407393456,
-0.018395747989416122,
-0.025859372690320015,
-0.017524084076285362,
-0.005143727175891399,
-0.022064002230763435,
-0.018649982288479805,
0.029800022020936012,
0.02424316108226776,
0.025877531617879868,
-0.07779603451490402,
-0.0028783080633729696,
-0.010469051077961922,
0.02280854806303978,
-0.008326209150254726,
-0.016806775704026222,
0.011513232253491879,
-0.04151301085948944,
0.0380263514816761,
0.023407816886901855,
0.006882515735924244,
0.0459439717233181,
0.012248698621988297,
-0.015199645422399044,
-0.019612446427345276,
0.030689844861626625,
-0.03998759761452675,
0.0038067211862653494,
0.003025855403393507,
0.03147071227431297,
-0.005811095237731934,
0.021119698882102966,
-0.0894908607006073,
-0.0026808215770870447,
0.016189347952604294,
0.01894053816795349,
0.00915247481316328,
-0.006932454649358988,
-0.0459439717233181,
-0.0277116596698761,
-0.014191783964633942,
-0.05458797514438629,
0.01263005193322897,
-0.029400508850812912,
0.050738122314214706,
-0.046052929013967514,
-0.08920031040906906,
-0.026331523433327675,
-0.013338278979063034,
-0.01537216268479824,
-0.023643892258405685,
0.06377676874399185,
0.03121647611260414,
0.00391794927418232,
0.020974421873688698,
0.004880412016063929,
-0.005284464452415705,
0.044781751930713654,
0.02921891212463379,
0.034975528717041016,
0.007032332941889763,
0.08062894642353058,
0.06642808020114899,
0.023026464506983757,
-0.07888561487197876,
-0.07042320817708969,
0.021446572616696358,
-0.029037315398454666,
0.030453769490122795,
-0.0026422322262078524,
-0.02313542179763317,
0.09435765445232391,
0.07107695937156677,
0.0005283329519443214,
0.02867412194609642,
-0.035120803862810135,
-0.013610674068331718,
-0.029255231842398643,
-0.01758764311671257,
-0.07104063779115677,
-0.033068761229515076,
-0.050084374845027924,
0.001600321033038199,
0.0593821257352829,
-0.012021702714264393,
-0.00303039513528347,
-0.026658399030566216,
-0.01330195926129818,
0.010895803570747375,
-0.021846085786819458,
0.021446572616696358,
0.01263005193322897,
-0.03112567774951458,
-0.011422433890402317,
-0.016425423324108124,
0.009733583778142929,
-0.010805005207657814,
0.044236961752176285,
-0.006469382904469967,
-0.043365295976400375,
0.017941756173968315,
-0.030925922095775604,
-0.024606354534626007,
0.00311892363242805,
-0.0265312809497118,
-0.026204407215118408,
-0.01472749374806881,
0.02146473154425621,
-0.005016609560698271,
-0.013646993786096573,
0.04460015520453453,
-0.0451449453830719,
-0.053353115916252136,
0.0020645277108997107,
0.021955043077468872,
-0.06867987662553787,
0.04245731234550476,
0.00867124367505312,
-0.027185028418898582,
-0.012947846204042435,
-0.009161554276943207,
0.016261985525488853,
0.012748089618980885,
-0.06421259790658951,
0.035211604088544846,
-0.060072194784879684,
0.03317772224545479,
0.005833794828504324,
0.02200952172279358,
-0.03206998109817505,
0.02978186123073101,
-0.021646328270435333,
-0.007976636290550232,
0.04667035862803459,
0.02789325639605522,
-0.020465949550271034,
0.03572007641196251,
-0.03256029263138771,
-0.0059790718369185925,
-0.014818292111158371,
0.0023630273062735796,
0.014663934707641602,
0.015099767595529556,
-0.018114272505044937,
-0.0034185582771897316,
-0.022953825071454048,
-0.024987708777189255,
0.07416409999132156,
0.009679105132818222,
0.0024924150202423334,
0.003908869344741106,
-0.0009051461238414049,
0.013211160898208618,
0.015644557774066925,
0.025005867704749107,
0.02099258080124855,
0.003034935100004077,
-0.013801350258290768,
0.0008693942800164223,
-0.013592514209449291,
0.036482781171798706,
0.004662495572119951,
-0.042021479457616806,
-0.044781751930713654,
-0.008780200965702534,
-0.02645864151418209,
0.058801017701625824,
0.06225135549902916,
0.059600044041872025,
-0.01457313634455204,
-0.01101384125649929,
0.002521924441680312,
-0.002494684886187315,
-0.0072911083698272705,
0.0340857058763504,
0.05190034210681915,
-0.05683977156877518,
0.03317772224545479,
-0.031398072838783264,
0.06159760802984238,
-0.05328047648072243,
-0.04775993525981903,
0.0023562174756079912,
-0.04405536502599716,
-0.03635566309094429,
-0.04420064017176628,
0.054624292999506,
-0.06842564046382904,
-0.012693610973656178,
-0.03294164314866066,
-0.03206998109817505,
-0.008167312480509281,
-0.038534823805093765,
-0.06904307007789612,
0.025913851335644722,
0.039079613983631134,
0.0404234305024147,
0.006342265289276838,
-0.01267545111477375,
-0.007549883797764778,
0.024987708777189255,
-0.017850957810878754,
0.008802901022136211,
-0.014327981509268284,
0.041549328714609146,
-0.028946517035365105,
0.01654346100986004,
0.08295337855815887,
0.0767790898680687,
-0.0522635355591774,
0.03976968303322792,
0.020720185711979866,
0.01805979385972023,
0.0966094508767128,
0.055169083178043365,
0.014718414284288883,
-0.02662207931280136,
0.01472749374806881,
0.04765097796916962,
-0.006265086587518454,
-0.03660989925265312,
0.016298305243253708,
0.019430849701166153,
0.04325633868575096,
0.022136639803647995,
-0.06246927008032799,
0.025932012125849724,
0.03700941056013107,
-0.06671863794326782,
-0.00031041688635014,
0.003992857877165079,
-0.04975749924778938,
-0.002099712146446109,
-0.007758719846606255,
0.0033663492649793625,
-0.037808436900377274,
0.014909090474247932,
0.0281111728399992,
-0.03058088757097721,
0.008208171464502811,
0.03272372856736183,
-0.014654855243861675,
0.061016496270895004,
0.018995016813278198,
0.012566492892801762,
0.056113384664058685,
0.009842542000114918,
-0.030708005651831627,
-0.05829254537820816,
0.021646328270435333,
0.030381131917238235,
-0.010351013392210007,
0.029128113761544228,
0.014509578235447407,
0.011821946129202843,
-0.04467279464006424,
-0.04394640773534775,
-0.009724504314363003,
-0.024660835042595863,
-0.039079613983631134,
-0.02565961703658104,
0.07307451963424683,
0.028002213686704636,
0.031107518821954727
]
|
42,120 | flask_restful | resource | Wraps a :class:`~flask_restful.Resource` class, adding it to the
api. Parameters are the same as :meth:`~flask_restful.Api.add_resource`.
Example::
app = Flask(__name__)
api = restful.Api(app)
@api.resource('/foo')
class Foo(Resource):
def get(self):
return 'Hello, World!'
| def resource(self, *urls, **kwargs):
"""Wraps a :class:`~flask_restful.Resource` class, adding it to the
api. Parameters are the same as :meth:`~flask_restful.Api.add_resource`.
Example::
app = Flask(__name__)
api = restful.Api(app)
@api.resource('/foo')
class Foo(Resource):
def get(self):
return 'Hello, World!'
"""
def decorator(cls):
self.add_resource(cls, *urls, **kwargs)
return cls
return decorator
| (self, *urls, **kwargs) | [
-0.01435589324682951,
-0.03955120965838432,
0.018080811947584152,
-0.008564595133066177,
0.012470776215195656,
0.02242201939225197,
0.01355834398418665,
0.07261326909065247,
0.011102253571152687,
-0.009978433139622211,
0.03561784327030182,
0.023455210030078888,
0.04346645623445511,
-0.018669912591576576,
0.004694667179137468,
0.0362703837454319,
0.021261947229504585,
-0.010794109664857388,
-0.045460328459739685,
-0.062426384538412094,
0.036868542432785034,
0.05303705111145973,
0.01573347859084606,
-0.003944698721170425,
-0.004789829254150391,
0.10426148772239685,
0.013232073746621609,
0.015452523715794086,
0.005487685091793537,
-0.03443964198231697,
0.009280577301979065,
0.0007697939872741699,
0.05970746651291847,
0.018098939210176468,
0.06126631423830986,
0.0002262933849124238,
-0.029672471806406975,
0.04567784070968628,
-0.07054688781499863,
0.01569722592830658,
-0.005949901416897774,
0.009298703633248806,
-0.032391391694545746,
-0.050535645335912704,
0.09099316596984863,
0.04350270703434944,
0.035019680857658386,
0.014718416146934032,
-0.03095942735671997,
-0.038318634033203125,
0.004952964372932911,
-0.028349263593554497,
0.01752796582877636,
-0.0029545589350163937,
0.012742668390274048,
0.039116185158491135,
0.00377703201957047,
0.09614098072052002,
-0.007495153695344925,
-0.0212800744920969,
0.008428649045526981,
-0.0235820934176445,
0.04252389445900917,
0.0030995679553598166,
-0.00911291129887104,
0.04335769638419151,
-0.07438962906599045,
0.00361163099296391,
0.031503211706876755,
0.06438400596380234,
-0.012389208190143108,
0.0036252255085855722,
0.007730793673545122,
-0.011147568933665752,
0.028367390856146812,
-0.019938740879297256,
0.008723199367523193,
-0.06779171526432037,
0.02945495769381523,
-0.04890429228544235,
0.025974741205573082,
-0.01861553266644478,
-0.027261696755886078,
0.022240759804844856,
0.02033751644194126,
-0.028077371418476105,
-0.06155633181333542,
-0.06811799108982086,
-0.04397398605942726,
0.053254563361406326,
-0.07583972066640854,
0.05223949998617172,
-0.008134099654853344,
-0.038826167583465576,
0.016947928816080093,
-0.05568346381187439,
-0.026699787005782127,
0.018434271216392517,
0.045605339109897614,
-0.007037469185888767,
-0.004588176030665636,
0.02349146269261837,
0.0025988335255533457,
0.029110562056303024,
0.03567222133278847,
-0.06112130358815193,
-0.009924055077135563,
0.016531027853488922,
-0.055284690111875534,
0.016839172691106796,
0.05550220236182213,
0.008351613767445087,
-0.025902237743139267,
0.030470021069049835,
-0.03612537309527397,
-0.003346536308526993,
0.0017933538183569908,
-0.0181895699352026,
0.015869425609707832,
-0.04408274218440056,
-0.02927369624376297,
-0.036632902920246124,
0.01475466787815094,
-0.00559191033244133,
0.020192505791783333,
0.01850677654147148,
-0.024361515417695045,
0.03697730228304863,
-0.017836110666394234,
-0.05329081788659096,
-0.03936994820833206,
0.04970184341073036,
-0.046402886509895325,
0.02664540894329548,
0.046910420060157776,
-0.04364771768450737,
0.014084001071751118,
0.04651164263486862,
-0.029237443581223488,
0.03139445185661316,
0.001401376212015748,
0.09179071336984634,
-0.016757605597376823,
0.03741232678294182,
-0.03987748175859451,
-0.06811799108982086,
-0.01640414632856846,
0.013676163740456104,
0.032300759106874466,
0.025956615805625916,
-0.007390928454697132,
0.0010003356728702784,
0.0633326917886734,
0.02283892035484314,
0.027279822155833244,
0.017781730741262436,
-0.03342457860708237,
-0.00043162843212485313,
0.08497528731822968,
-0.050861913710832596,
0.007626568432897329,
0.03641539067029953,
-0.009479965083301067,
-0.03251827508211136,
0.03139445185661316,
0.037992365658283234,
-0.030524399131536484,
-0.03788360580801964,
0.01111131627112627,
0.055792223662137985,
0.00047212900244630873,
-0.045967862010002136,
0.0665953978896141,
-0.003756640013307333,
0.0034394327085465193,
-0.009316829964518547,
0.039442453533411026,
-0.030198128893971443,
0.025195317342877388,
0.07576721161603928,
0.07022061944007874,
-0.021733228117227554,
-0.0018092141253873706,
-0.02227701060473919,
0.0027665002271533012,
0.017645785585045815,
0.011890740133821964,
0.029309948906302452,
-0.027896111831068993,
-0.006937775295227766,
-0.017981119453907013,
0.03201074153184891,
0.0310500580817461,
-0.024162128567695618,
-0.0713081881403923,
-0.04488029330968857,
-0.03641539067029953,
0.017283262684941292,
0.06641413271427155,
0.015543154440820217,
-0.06159258261322975,
0.0748971626162529,
0.03839113935828209,
0.0175189021974802,
0.08446775376796722,
0.008020811714231968,
0.017645785585045815,
0.0004469223495107144,
-0.09237074851989746,
-0.02387211099267006,
-0.006919649429619312,
0.03190198540687561,
-0.026137877255678177,
-0.019050560891628265,
-0.0010212940396741033,
0.01062191091477871,
0.01828020066022873,
-0.019884362816810608,
0.0025852390099316835,
-0.01748264953494072,
0.004189401399344206,
0.050680652260780334,
-0.038137372583150864,
-0.002684932667762041,
-0.010250325314700603,
-0.025322200730443,
0.03708605840802193,
-0.02113506570458412,
-0.0033827887382358313,
0.00006843321170890704,
-0.05731481686234474,
0.028494272381067276,
0.03476591408252716,
0.04140007495880127,
-0.01944933459162712,
-0.015869425609707832,
0.019666848704218864,
0.05651726573705673,
0.023328326642513275,
0.001374187064357102,
0.0588374100625515,
0.06083128601312637,
0.002861662534996867,
-0.029436832293868065,
-0.007757982704788446,
0.04252389445900917,
-0.0425601489841938,
0.01687542535364628,
0.036904796957969666,
-0.06471027433872223,
-0.032590776681900024,
0.005315486807376146,
-0.00793924368917942,
-0.019721226766705513,
-0.019413083791732788,
0.005705198738723993,
-0.06264390051364899,
-0.06677665561437607,
-0.02570284903049469,
-0.0006406453321687877,
0.01822582259774208,
0.023799605667591095,
0.06648663431406021,
0.07801485806703568,
-0.009933117777109146,
-0.0327901653945446,
-0.0047762347385287285,
-0.01195418182760477,
-0.03398649021983147,
0.009425586089491844,
0.0978085845708847,
0.025122813880443573,
0.006461964454501867,
-0.000995237729512155,
0.04589535668492317,
-0.02865740843117237,
0.011437586508691311,
-0.04114631190896034,
-0.00019867935043293983,
-0.03280829265713692,
0.004644820466637611,
-0.03304393216967583,
0.026137877255678177,
-0.0012744934065267444,
0.06141132116317749,
-0.06144757196307182,
-0.015189695172011852,
0.14145630598068237,
-0.04919430986046791,
-0.026536650955677032,
0.061810094863176346,
-0.010993496514856815,
-0.028077371418476105,
0.014419334940612316,
0.038137372583150864,
0.038499895483255386,
-0.06641413271427155,
-0.010186883620917797,
0.01779985800385475,
-0.05376209691166878,
0.005107036326080561,
-0.022204507142305374,
0.04343020170927048,
0.026953551918268204,
-0.027642345055937767,
-0.05060815066099167,
0.01062191091477871,
-0.0010598120279610157,
-0.03153946250677109,
0.00857818964868784,
0.0564810149371624,
0.05223949998617172,
-0.06300642341375351,
-0.024470273405313492,
-0.04205261543393135,
0.014555281028151512,
-0.011627910658717155,
0.025068435817956924,
-0.008333487436175346,
0.014346830546855927,
-0.0100781274959445,
0.0032921580132097006,
0.0018658583285287023,
-0.026101624593138695,
0.012035748921334743,
-0.0028820543084293604,
0.030343137681484222,
-0.0028843202162534,
-0.03675978630781174,
-0.00072108005406335,
-0.00778970355167985,
0.022150129079818726,
0.0038087526336312294,
-0.013567406684160233,
-0.06510905176401138,
-0.003206058871001005,
0.0023971805348992348,
-0.04455402120947838,
-0.02021063305437565,
0.0012031217338517308,
0.030415643006563187,
-0.006339613348245621,
-0.01808987557888031,
0.020736290141940117,
-0.0680454820394516,
0.0005415180930867791,
0.024869047105312347,
-0.030886922031641006,
0.02950933575630188,
-0.024470273405313492,
0.011455712839961052,
-0.03424025699496269,
-0.01141946017742157,
0.0007686610915698111,
0.004452230408787727,
-0.007907523773610592,
-0.04875928536057472,
-0.03420400246977806,
0.02184198424220085,
-0.07649225741624832,
-0.005945370066910982,
0.04698292538523674,
-0.02640976756811142,
0.005048126447945833,
-0.03853614628314972,
0.043792724609375,
0.03308018296957016,
-0.015090001747012138,
-0.023328326642513275,
-0.006801829673349857,
0.0009340620599687099,
0.0007329753134399652,
0.044662781059741974,
0.02871178649365902,
0.028693661093711853,
-0.030288759618997574,
0.015534091740846634,
-0.0073184240609407425,
-0.021878236904740334,
0.026754165068268776,
-0.042161375284194946,
0.029473084956407547,
0.02485092170536518,
-0.05238451063632965,
0.041835103183984756,
-0.03965996950864792,
-0.01865178532898426,
-0.0016789325745776296,
-0.041653841733932495,
0.010322829708456993,
0.020500650629401207,
-0.03773859888315201,
-0.033460833132267,
-0.02552158758044243,
-0.038789913058280945,
-0.0945458859205246,
0.03161196783185005,
0.03387773409485817,
0.04890429228544235,
-0.023128939792513847,
0.04082003980875015,
-0.01828020066022873,
0.08156757801771164,
-0.001854529487900436,
0.04709168151021004,
0.035219065845012665,
0.05865614861249924,
-0.03396836295723915,
0.029146812856197357,
0.020555028691887856,
-0.008945244364440441,
-0.030578777194023132,
-0.011374145746231079,
-0.01460965909063816,
0.057206060737371445,
-0.03157571330666542,
0.05162321403622627,
0.036107245832681656,
-0.029853733256459236,
-0.01499030739068985,
0.05031813308596611,
0.010050937533378601,
0.06010624021291733,
0.018452398478984833,
-0.023219570517539978,
0.004672009497880936,
-0.0034711535554379225,
0.005795829463750124,
-0.01258859597146511,
0.0010484831873327494,
-0.0350378043949604,
-0.03186573460698128,
-0.014836235903203487,
-0.04665665328502655,
-0.00021836320229340345,
-0.07409960776567459,
0.022295137867331505,
-0.04774422198534012,
-0.00038744599441997707,
-0.0033895859960466623,
0.034802164882421494,
-0.07627474516630173,
0.014392145909368992,
0.014546217396855354,
-0.05216699466109276,
-0.0344758965075016,
-0.02113506570458412,
0.020120002329349518,
0.06790047883987427,
-0.03947870805859566,
0.039732471108436584,
-0.0189780555665493,
0.024089623242616653,
0.019394956529140472,
0.00421659043058753,
-0.053725842386484146,
0.03828238323330879,
-0.05930868908762932,
-0.020518776029348373,
-0.0010734066599979997,
0.02363647148013115,
-0.002827676013112068,
0.021860109642148018,
-0.06819049268960953,
-0.06695791333913803,
-0.03723106533288956,
0.011664163321256638,
-0.025503462180495262,
0.019666848704218864,
-0.02278454229235649,
0.04125506803393364,
-0.019413083791732788,
-0.009688415564596653,
-0.03762984275817871,
0.013467713259160519,
0.05854739248752594,
0.03886241838335991,
0.013050812296569347,
-0.03434901311993599,
-0.016521966084837914,
0.00007696523971389979,
0.03139445185661316,
0.014165569096803665,
0.009842487052083015,
-0.009896866045892239,
0.010984433814883232,
-0.015534091740846634,
0.01273360475897789,
0.026228507980704308,
0.028929300606250763,
0.023618344217538834,
0.0483967624604702,
-0.01022313628345728,
0.03770234435796738,
-0.03715856373310089,
0.05271077901124954,
0.03561784327030182,
-0.01202668622136116,
-0.014546217396855354,
-0.010966307483613491,
0.004930306691676378,
-0.064456507563591,
-0.018869299441576004,
0.009652162902057171,
0.002755171386525035,
-0.028458021581172943,
-0.07090941071510315,
-0.03552721068263054,
-0.0007794235134497285,
0.006955901626497507,
-0.024724038317799568,
0.001209918991662562,
0.040711283683776855,
0.05938119441270828,
-0.0038087526336312294,
-0.03288079798221588,
-0.05568346381187439,
0.042306382209062576,
-0.009552469477057457,
-0.008945244364440441,
0.005501279607415199,
0.03364209458231926,
0.0967935249209404,
0.017645785585045815,
-0.019902488216757774,
0.010467838495969772,
0.03701355308294296,
-0.021406957879662514,
0.007395460270345211,
0.06268014758825302,
-0.0015305249253287911,
0.032772038131952286,
-0.015416271984577179,
-0.038789913058280945,
-0.014781856909394264,
0.06271640211343765,
-0.08816548436880112,
-0.041001301258802414,
0.06351394951343536,
-0.02959996648132801,
0.02485092170536518,
0.06202761083841324,
0.03467528149485588,
0.006480090785771608,
-0.03068753518164158,
-0.06666789948940277,
-0.026047246530652046,
-0.044336508959531784,
0.007196072954684496,
-0.04430025815963745,
-0.006452901754528284,
-0.0016211555339396,
-0.029201192781329155,
0.006439306773245335,
-0.008396929129958153,
0.053725842386484146,
0.001469349255785346,
0.005238451063632965,
-0.028041120618581772,
0.03936994820833206,
-0.029708724468946457,
0.052457015961408615,
0.015452523715794086,
0.02635538950562477,
-0.043720219284296036,
0.009706541895866394,
0.08018998801708221,
-0.0040761129930615425,
-0.047852978110313416,
-0.03741232678294182,
-0.009860613383352757,
-0.004230184946209192,
0.012851424515247345,
-0.013377082534134388,
-0.0022408426739275455,
0.09374833106994629,
0.04857802391052246,
-0.03886241838335991,
0.04426400363445282,
-0.04397398605942726,
-0.016521966084837914,
-0.007957370020449162,
-0.07583972066640854,
-0.0965760126709938,
-0.03398649021983147,
-0.009271514602005482,
0.007082784548401833,
0.0783773809671402,
-0.0426689051091671,
-0.041001301258802414,
0.012126379646360874,
0.018207695335149765,
0.00190890789963305,
-0.0541246198117733,
0.005329081788659096,
-0.022911425679922104,
-0.06880678236484528,
0.005587378982454538,
0.00730482954531908,
0.04136382415890694,
-0.022476399317383766,
0.036016616970300674,
-0.06688541173934937,
-0.03360584005713463,
0.0004169009334873408,
-0.018126128241419792,
-0.024162128567695618,
-0.07554969936609268,
-0.0517682209610939,
-0.005936306901276112,
-0.020609406754374504,
-0.015660975128412247,
0.004835144616663456,
0.03641539067029953,
0.008070658892393112,
-0.02195074036717415,
-0.09875114262104034,
0.0036252255085855722,
0.029799355193972588,
-0.0623176284134388,
0.008786640129983425,
0.0033148156944662333,
0.04506155475974083,
0.022621408104896545,
-0.02071816474199295,
0.030814416706562042,
-0.015398145653307438,
-0.011845424771308899,
-0.018633659929037094,
-0.008605379611253738,
0.0079437755048275,
-0.012389208190143108,
0.016050687059760094,
0.02894742600619793,
0.021551966667175293,
-0.04582285135984421,
0.012461712583899498,
0.029853733256459236,
0.03561784327030182,
-0.04781672731041908,
-0.0355997160077095,
-0.02617412805557251,
-0.011310704052448273,
0.005066252779215574,
0.01087567675858736,
0.014573406428098679,
0.026446020230650902,
-0.06837175786495209,
0.013621784746646881,
-0.07453463971614838,
-0.008990559726953506,
0.09077564626932144,
-0.03936994820833206,
0.0129692442715168,
0.02918306551873684,
0.011102253571152687,
0.010449713096022606,
-0.03904367983341217,
0.03273578733205795,
0.015398145653307438,
0.01078504603356123,
-0.032155752182006836,
0.04285016655921936,
-0.032681409269571304,
-0.029291823506355286,
-0.005691604223102331,
-0.003083707531914115,
-0.0485055185854435,
-0.015035622753202915,
0.015724416822195053,
-0.022875173017382622,
0.035871606320142746,
-0.002047119662165642,
0.016413208097219467,
0.015425334684550762,
0.009344018995761871,
-0.05919993296265602,
-0.033805228769779205,
0.016458524391055107,
0.024597154930233955,
-0.078159861266613,
-0.021860109642148018,
-0.002562581328675151,
0.037992365658283234,
-0.04749045521020889,
0.08642537891864777,
0.002761968644335866,
-0.005288297776132822,
-0.02575722709298134,
-0.030995678156614304,
0.056698527187108994,
-0.028258632868528366,
0.020826920866966248,
-0.016186632215976715,
-0.029346201568841934,
0.032826416194438934,
-0.04633038491010666,
-0.06293391436338425,
0.05553845688700676,
-0.0038631309289485216,
-0.008813830092549324,
0.009824361652135849,
0.004257374443113804,
-0.000020161776774330065,
-0.017981119453907013,
0.0014330969424918294,
0.01921369507908821,
-0.07101816684007645,
-0.005188604351133108,
0.013159569352865219,
0.024470273405313492,
0.07228700071573257,
0.05582847446203232,
-0.06496404111385345,
0.022494524717330933,
-0.017219820991158485,
0.07902991771697998,
-0.0391886904835701,
0.014954055659472942,
-0.013223010115325451,
-0.005320018623024225,
0.036161623895168304,
0.017981119453907013,
-0.07504217326641083,
-0.01747358776628971,
-0.05361708626151085,
-0.030941300094127655,
0.027877984568476677,
-0.00019032433920074254,
-0.041001301258802414,
0.016458524391055107,
-0.0050300005823373795,
-0.0680454820394516,
0.03119506686925888,
0.046584147959947586,
-0.03195636346936226,
0.022712038829922676,
-0.004952964372932911,
0.01111131627112627,
-0.020518776029348373,
-0.024361515417695045,
0.045460328459739685,
-0.0380648672580719,
0.010911929421126842,
0.03641539067029953,
-0.011718541383743286,
0.008387865498661995,
0.04321268945932388,
0.025539714843034744,
0.01766391098499298,
0.012180757708847523,
0.004839675966650248,
-0.019866235554218292,
0.03675978630781174,
0.04121881350874901,
-0.04488029330968857,
-0.0031131624709814787,
0.009860613383352757,
0.0172379482537508,
-0.015352830290794373,
-0.04988310486078262,
-0.015262199565768242,
0.01179104670882225,
-0.028729913756251335,
0.03922494128346443,
0.07888490706682205,
0.00834255013614893,
0.041653841733932495
]
|
42,121 | flask_restful | unauthorized | Given a response, change it to ask for credentials | def unauthorized(self, response):
""" Given a response, change it to ask for credentials """
if self.serve_challenge_on_401:
realm = current_app.config.get("HTTP_BASIC_AUTH_REALM", "flask-restful")
challenge = u"{0} realm=\"{1}\"".format("Basic", realm)
response.headers['WWW-Authenticate'] = challenge
return response
| (self, response) | [
0.00015504857583437115,
0.014079016633331776,
0.00123488565441221,
0.019405974075198174,
0.030957987532019615,
-0.0041272914968431,
0.02578071318566799,
0.051244448870420456,
-0.010601085610687733,
0.009975938126444817,
0.034691259264945984,
-0.009271547198295593,
-0.020497780293226242,
-0.03528999164700508,
-0.0009239629725925624,
-0.03983331471681595,
0.061810318380594254,
0.07043910771608353,
-0.015901628881692886,
-0.09326137602329254,
0.03291267156600952,
-0.022716611623764038,
0.013726821169257164,
0.08325902372598648,
-0.031186914071440697,
0.005340164992958307,
-0.020145583897829056,
-0.011499184183776379,
0.027347983792424202,
-0.014237504452466965,
-0.0056791529059410095,
0.024107784032821655,
0.04775771498680115,
0.05473118647933006,
0.019282706081867218,
0.0073917037807404995,
0.010380963794887066,
0.03870628774166107,
-0.07057998329401016,
0.021519146859645844,
-0.05909841135144234,
-0.008404266089200974,
0.009747011587023735,
-0.015743140131235123,
0.005362177267670631,
0.008844510652124882,
-0.00560871371999383,
0.050469622015953064,
0.018366998061537743,
-0.003466924885287881,
-0.03426862508058548,
0.021466318517923355,
0.01357713807374239,
-0.021712854504585266,
0.04656025022268295,
-0.013145698234438896,
0.021272610872983932,
0.03580067679286003,
-0.022487685084342957,
-0.007418118417263031,
-0.08396341651678085,
0.015144407749176025,
-0.09164127707481384,
-0.02370275929570198,
0.0022738624829798937,
0.004737029783427715,
-0.03691009059548378,
0.03764970228075981,
0.029619645327329636,
-0.02294554002583027,
-0.019599681720137596,
0.00023594348749611527,
0.002925424138084054,
0.0190009493380785,
0.062056854367256165,
-0.0506104975938797,
-0.038847167044878006,
-0.03853019326925278,
0.027876276522874832,
-0.015787165611982346,
0.0005767201655544341,
-0.04455273598432541,
-0.025375688448548317,
0.04638415202498436,
-0.06409958750009537,
-0.02349144220352173,
0.01488026138395071,
-0.09354313462972641,
0.01696701906621456,
0.04744073748588562,
-0.002780143404379487,
-0.03555414080619812,
-0.0160601157695055,
0.02423105202615261,
-0.0216424148529768,
0.029373107478022575,
0.012872747145593166,
0.04793381318449974,
0.00220122211612761,
-0.05057527869939804,
-0.006823788397014141,
0.048391666263341904,
0.004136096220463514,
0.0800892636179924,
0.0006702721584588289,
0.012344453483819962,
0.009658962488174438,
-0.05800660327076912,
0.03187369555234909,
0.020621048286557198,
-0.05420289188623428,
-0.04405966028571129,
-0.03659311681985855,
-0.007796728517860174,
-0.016297848895192146,
-0.00283077172935009,
0.014272724278271198,
-0.027488861232995987,
0.019916657358407974,
-0.03789623826742172,
0.016993435099720955,
-0.03821321576833725,
0.030412085354328156,
-0.031961746513843536,
0.012951990589499474,
0.08523131906986237,
-0.03528999164700508,
-0.06290212273597717,
-0.007096739951521158,
0.057055678218603134,
-0.035677406936883926,
0.06455744057893753,
-0.026027251034975052,
-0.026678811758756638,
-0.013533113524317741,
-0.033634673804044724,
0.02370275929570198,
-0.013964553363621235,
0.03208501264452934,
0.05304064601659775,
-0.002493984531611204,
0.0024565637577325106,
-0.0013339405413717031,
0.03550130873918533,
-0.0004994022892788053,
0.040925122797489166,
0.023332953453063965,
-0.00862438790500164,
0.03581828624010086,
-0.030482523143291473,
0.013365820981562138,
0.009011803194880486,
0.0469476655125618,
-0.03796667978167534,
-0.018349386751651764,
0.07720126211643219,
-0.04293263703584671,
-0.02268139272928238,
0.034902576357126236,
-0.05860533565282822,
0.032331548631191254,
-0.04948347434401512,
-0.015320505946874619,
-0.012485331855714321,
0.007585411425679922,
-0.01998709701001644,
0.03421579673886299,
-0.018877681344747543,
0.010002353228628635,
0.01318091806024313,
-0.008989791385829449,
-0.01870158314704895,
-0.005115640349686146,
0.008972181007266045,
0.04825078696012497,
0.02687251940369606,
0.06325431913137436,
-0.013401039876043797,
-0.048391666263341904,
0.008078484795987606,
0.035941556096076965,
-0.03958677873015404,
-0.06709325313568115,
0.030676230788230896,
0.052336256951093674,
-0.021272610872983932,
0.025639835745096207,
-0.0042197429575026035,
0.0009333181660622358,
0.06906554847955704,
-0.036276139318943024,
0.04240434244275093,
-0.03733272850513458,
0.001183156855404377,
0.02764734998345375,
-0.009033815935254097,
0.026220956817269325,
-0.02741842344403267,
0.06490963697433472,
-0.08487912267446518,
-0.07304535061120987,
0.01736323907971382,
-0.03449755162000656,
-0.005503055173903704,
0.03750882297754288,
0.042862195521593094,
-0.011279062367975712,
-0.04184082895517349,
-0.04684200510382652,
0.002947436412796378,
0.018138069659471512,
-0.02578071318566799,
0.013066454790532589,
0.003931382670998573,
-0.025234811007976532,
0.015390944667160511,
0.04300307482481003,
-0.037825800478458405,
0.049096059054136276,
0.006370336748659611,
-0.02349144220352173,
0.022364417091012,
-0.014651333913207054,
-0.006876617670059204,
-0.020885195583105087,
0.04036160930991173,
0.012300428934395313,
-0.04057292640209198,
-0.06938251852989197,
-0.010460207238793373,
-0.03743838518857956,
0.017636191099882126,
-0.006634483579546213,
-0.00672693457454443,
-0.03687487170100212,
0.01343625970184803,
0.0368044339120388,
-0.02815803326666355,
-0.03495540842413902,
0.023649930953979492,
0.022012220695614815,
0.03134540095925331,
0.04497537016868591,
0.022276367992162704,
-0.030605792999267578,
-0.007572203874588013,
-0.03828365355730057,
0.07515852898359299,
-0.01760977692902088,
0.004041443578898907,
-0.07551072537899017,
-0.0218537338078022,
0.0019766974728554487,
-0.026978177949786186,
-0.010847622528672218,
-0.06029587611556053,
-0.09720596671104431,
-0.015875214710831642,
0.008760863915085793,
0.0001789868692867458,
0.014519261196255684,
-0.009526888839900494,
-0.02342100255191326,
0.022029830142855644,
0.03085232898592949,
0.013066454790532589,
-0.008052070625126362,
0.02639705501496792,
0.05293498933315277,
-0.0001827014348236844,
0.029866181313991547,
-0.013497893698513508,
-0.000049080375902121887,
-0.04550366476178169,
0.02190656214952469,
0.06490963697433472,
0.060436755418777466,
0.014818627387285233,
-0.020092755556106567,
0.04853254556655884,
0.037544045597314835,
-0.020955635234713554,
-0.01596326194703579,
0.039375461637973785,
-0.039375461637973785,
0.0463489331305027,
-0.03537804260849953,
0.019036168232560158,
-0.03849497064948082,
-0.029954230412840843,
0.06388826668262482,
0.02190656214952469,
0.05515382066369057,
-0.01672048307955265,
0.00375088257715106,
0.008386656641960144,
-0.046243272721767426,
-0.056245628744363785,
-0.028545448556542397,
0.01664123870432377,
0.0016101939836516976,
-0.005155262071639299,
-0.00795521680265665,
-0.05797138437628746,
0.021959392353892326,
-0.06568446755409241,
0.02056821994483471,
0.049694791436195374,
-0.0058860681019723415,
-0.023896466940641403,
0.03370511159300804,
0.049377813935279846,
-0.019916657358407974,
-0.025199590250849724,
-0.0038939618971198797,
0.0416647307574749,
0.024037346243858337,
-0.0001639910478843376,
-0.020920414477586746,
0.021166952326893806,
-0.03395165130496025,
-0.020955635234713554,
-0.012097916565835476,
0.016253823414444923,
0.05613996833562851,
-0.019846217706799507,
0.04194648936390877,
0.00546343345195055,
-0.01488026138395071,
0.06166943907737732,
-0.04631371423602104,
0.016033701598644257,
-0.040925122797489166,
-0.05142054706811905,
0.000996052986010909,
-0.06142290309071541,
0.02792910672724247,
-0.06786807626485825,
-0.008060875348746777,
-0.05064571648836136,
-0.047546397894620895,
-0.08354078233242035,
0.019687730818986893,
0.01926509663462639,
-0.017636191099882126,
-0.025164371356368065,
-0.001951383426785469,
0.020638657733798027,
0.0025952409487217665,
-0.04768727719783783,
-0.006097385194152594,
0.005798019003123045,
0.02005753666162491,
0.04589108005166054,
0.035466089844703674,
0.025375688448548317,
-0.039938975125551224,
0.033546626567840576,
-0.027224715799093246,
-0.014677749015390873,
0.029161790385842323,
-0.011006110347807407,
-0.02639705501496792,
0.033053550869226456,
-0.03867106884717941,
-0.06068329140543938,
-0.005133249796926975,
-0.0394458994269371,
0.013902918435633183,
-0.031486280262470245,
-0.025393297895789146,
-0.013497893698513508,
0.001818209420889616,
-0.0294787660241127,
0.02005753666162491,
-0.007611826062202454,
-0.02764734998345375,
-0.018595924600958824,
-0.05702045559883118,
0.02077953703701496,
0.03234916180372238,
0.03189130499958992,
-0.006225056014955044,
0.03085232898592949,
-0.04303829371929169,
-0.0664592981338501,
-0.03414535894989967,
0.008950169198215008,
-0.024336712434887886,
0.030729060992598534,
-0.003700254252180457,
-0.06283168494701385,
0.04053770750761032,
0.06976993381977081,
0.00019714696099981666,
-0.007986033335328102,
-0.09297962486743927,
-0.036522675305604935,
0.031451061367988586,
0.027576910331845284,
0.06448700278997421,
0.018912900239229202,
0.0003420148859731853,
-0.0057187750935554504,
0.00831181462854147,
0.039657216519117355,
0.03215545415878296,
-0.012185965664684772,
-0.014070211909711361,
-0.008338229730725288,
-0.0020075144711881876,
0.004921932704746723,
0.06593100726604462,
-0.022804660722613335,
0.054132454097270966,
0.0330183319747448,
-0.031186914071440697,
0.019969487562775612,
0.026009639725089073,
0.03034164570271969,
0.05642172321677208,
-0.04395400360226631,
0.03507867455482483,
0.00405685231089592,
-0.045433223247528076,
0.028809593990445137,
0.02636183612048626,
-0.011226233094930649,
-0.03509628400206566,
-0.039903752505779266,
-0.006066568195819855,
0.03131018206477165,
0.001188659924082458,
-0.06300777941942215,
-0.0034801322035491467,
-0.0025820336304605007,
-0.043601807206869125,
0.0011501385597512126,
-0.04085468128323555,
-0.0022067250683903694,
0.05948582664132118,
0.0327189639210701,
-0.006542032118886709,
-0.040220730006694794,
0.08502000570297241,
0.03641701862215996,
-0.040185511112213135,
0.055752553045749664,
0.01724877581000328,
-0.03340574726462364,
0.008505522273480892,
-0.011006110347807407,
-0.03764970228075981,
-0.02077953703701496,
-0.030412085354328156,
0.03238438069820404,
0.019934266805648804,
0.04222824424505234,
-0.010345743969082832,
0.034920185804367065,
0.009975938126444817,
0.021924171596765518,
-0.01500353030860424,
-0.03129257261753082,
-0.0032357964664697647,
0.022575734183192253,
0.015329310670495033,
0.04032639041543007,
-0.05740787088871002,
0.00015133402484934777,
-0.04948347434401512,
-0.06867813318967819,
0.017997192218899727,
-0.005172871984541416,
0.014395992271602154,
0.005696762818843126,
0.06399393081665039,
0.05663304403424263,
-0.019916657358407974,
0.00862438790500164,
-0.043883562088012695,
0.06800895929336548,
-0.006660898216068745,
-0.06311344355344772,
-0.0009575316216796637,
-0.01564628630876541,
0.009852670133113861,
0.01949402317404747,
0.019634900614619255,
-0.04881430044770241,
0.0190009493380785,
0.028598276898264885,
-0.054872065782547,
-0.00882249791175127,
0.003057497553527355,
0.017292801290750504,
0.017583362758159637,
-0.006537629757076502,
0.02479456551373005,
-0.0013009222457185388,
-0.02162480540573597,
-0.049096059054136276,
-0.007378496695309877,
-0.023068808019161224,
0.003088314551860094,
-0.031239744275808334,
-0.03719184920191765,
-0.026784470304846764,
0.03400447964668274,
0.022452466189861298,
0.00018421477579977363,
0.010248890146613121,
0.03955155983567238,
-0.031996965408325195,
0.0028747960459440947,
0.05987324193120003,
-0.045433223247528076,
0.03330008685588837,
0.010609890334308147,
0.03719184920191765,
-0.012335648760199547,
-0.019951876252889633,
0.022716611623764038,
0.02870393544435501,
0.005934495013207197,
0.0065860566683113575,
0.006568446755409241,
-0.016482751816511154,
0.0160601157695055,
0.021448709070682526,
-0.022610953077673912,
0.025710273534059525,
0.03891760855913162,
0.011745721101760864,
0.007114349864423275,
0.01796197146177292,
-0.10248889774084091,
-0.048990398645401,
-0.06660017371177673,
-0.0007599719101563096,
0.04381312429904938,
-0.024160614237189293,
0.017486508935689926,
-0.006938252132385969,
-0.05613996833562851,
-0.02136065997183323,
-0.10220714658498764,
-0.020691487938165665,
0.024195833131670952,
-0.024054955691099167,
-0.07075608521699905,
0.0003530209942255169,
0.035994384437799454,
-0.03930502012372017,
-0.06674105674028397,
0.01673809252679348,
0.024847395718097687,
0.0015870811184868217,
-0.010072791948914528,
0.013110478408634663,
0.028017155826091766,
-0.026942959055304527,
0.019863829016685486,
-0.020885195583105087,
0.0015628676628693938,
0.00012574481661431491,
0.04980044811964035,
0.013462674804031849,
-0.04110122099518776,
-0.05695001780986786,
-0.023368174210190773,
-0.026485104113817215,
-0.03712141141295433,
0.04691244661808014,
-0.040467265993356705,
0.048990398645401,
0.06004934012889862,
0.00187544128857553,
0.05459030717611313,
0.025639835745096207,
0.007488557603210211,
-0.0294787660241127,
0.013172113336622715,
-0.08649922162294388,
-0.06145812198519707,
-0.026132909581065178,
0.029408328235149384,
0.004737029783427715,
0.02717188559472561,
-0.008791681379079819,
-0.06490963697433472,
-0.062092073261737823,
0.0068898252211511135,
-0.089457668364048,
0.018842460587620735,
0.07269316166639328,
-0.050997912883758545,
-0.03479691967368126,
-0.016465140506625175,
0.07389062643051147,
0.01278469804674387,
0.03509628400206566,
-0.032771795988082886,
0.026132909581065178,
0.03160955011844635,
-0.006145812105387449,
-0.008721241727471352,
-0.08473824709653854,
-0.07839872688055038,
-0.03534282371401787,
-0.01868397369980812,
-0.013260161504149437,
0.007127556949853897,
0.02842218056321144,
0.030183156952261925,
0.0410659983754158,
-0.037544045597314835,
-0.04740551859140396,
0.011921819299459457,
0.009051425382494926,
-0.02084997668862343,
-0.005243311170488596,
-0.045433223247528076,
0.022610953077673912,
-0.011886599473655224,
-0.009324376471340656,
0.11671759933233261,
0.04448229447007179,
-0.05370981991291046,
0.01355952862650156,
-0.03289506211876869,
0.0017114501679316163,
-0.028404569253325462,
0.04067858308553696,
-0.01513560302555561,
0.02606246992945671,
0.009606133215129375,
-0.008360241539776325,
0.03557175025343895,
-0.01617458090186119,
0.045433223247528076,
-0.06660017371177673,
0.009183499030768871,
0.007598618511110544,
-0.02738320268690586,
0.06649451702833176,
-0.005291738081723452,
-0.005318152718245983,
0.04962434992194176,
-0.060507193207740784,
-0.03592394292354584,
0.033599454909563065,
-0.00366063229739666,
-0.0034933395218104124,
-0.07980750501155853,
-0.019106607884168625,
-0.0047150179743766785,
0.049941327422857285,
0.03645223751664162,
0.011102964170277119,
0.026485104113817215,
-0.016130555421113968,
0.10115055739879608,
-0.02770017832517624,
0.01436957810074091,
0.014448821544647217,
0.009747011587023735,
-0.06783285737037659,
0.026925349608063698,
0.04240434244275093,
0.02003992535173893,
-0.05356894060969353,
0.04067858308553696,
0.039340242743492126,
0.027506470680236816,
0.026925349608063698,
-0.01319852750748396,
-0.03138062357902527,
0.01754814200103283,
0.015126798301935196,
-0.015382139943540096,
0.00032495541381649673,
-0.03208501264452934,
-0.012450112029910088,
0.03002467006444931,
-0.02717188559472561,
0.05934494733810425,
-0.01040737796574831,
-0.018824851140379906,
-0.04067858308553696,
-0.05032874271273613,
-0.04215780645608902,
0.000938270939514041,
0.0516318641602993,
-0.08769668638706207,
0.015725530683994293,
-0.003350259969010949,
-0.007488557603210211,
0.04275653883814812,
0.08593571186065674,
0.051807962357997894,
-0.01649155654013157,
0.015399749390780926,
0.05166708678007126,
-0.017107898369431496,
-0.04726463928818703,
0.027347983792424202,
-0.05349850282073021,
-0.010539451614022255,
0.00005454903657664545,
-0.0410659983754158,
0.07670819014310837,
0.04427097737789154,
-0.010231280699372292,
0.012582185678184032,
0.036733996123075485,
-0.04067858308553696,
-0.014528065919876099,
0.04423575848340988,
-0.02424866333603859,
-0.027876276522874832,
-0.003880754578858614,
0.023878857493400574,
0.04078424349427223,
0.026220956817269325,
-0.0028351740911602974,
-0.01726638711988926,
0.012943185865879059,
-0.0134186502546072,
0.0027955521363765,
0.010363353416323662,
-0.05251235514879227,
-0.06702280789613724,
0.08382254093885422,
-0.014290333725512028,
0.025710273534059525,
-0.030711451545357704,
0.08558351546525955,
0.014994724653661251,
0.07565160095691681,
-0.0013438460882753134,
0.018243728205561638,
-0.016517970710992813,
0.003251204965636134,
0.04219302535057068,
0.03453277423977852,
0.007620630785822868,
-0.022047441452741623,
0.024301491677761078,
0.07149569690227509,
0.041206877678632736,
-0.010469011962413788,
0.0007995939231477678,
0.03340574726462364,
-0.010812402702867985,
0.03240199014544487,
-0.053850699216127396,
0.02289270982146263,
0.013497893698513508,
0.05032874271273613,
0.002639265265315771,
0.048602983355522156,
-0.04768727719783783,
0.02372036874294281,
0.0025776310358196497,
0.0536746010184288,
0.061528559774160385,
0.032120231539011
]
|
42,122 | flask_restful | url_for | Generates a URL to the given resource.
Works like :func:`flask.url_for`. | def url_for(self, resource, **values):
"""Generates a URL to the given resource.
Works like :func:`flask.url_for`."""
endpoint = resource.endpoint
if self.blueprint:
endpoint = '{0}.{1}'.format(self.blueprint.name, endpoint)
return url_for(endpoint, **values)
| (self, resource, **values) | [
0.0543404184281826,
-0.02234940230846405,
-0.0038947511930018663,
-0.024547124281525612,
0.0007039574556984007,
0.0053037735633552074,
0.03308987617492676,
0.03860190138220787,
0.003908043727278709,
0.01316860131919384,
-0.014604208990931511,
-0.00869340356439352,
0.06983080506324768,
-0.02167590707540512,
0.05019310861825943,
0.055722855031490326,
0.02499021217226982,
0.008680110797286034,
0.04129588231444359,
0.007962306961417198,
0.021321436390280724,
0.02828679420053959,
-0.030502237379550934,
-0.02467118762433529,
-0.02761329896748066,
0.09088639169931412,
-0.025380130857229233,
0.0353584922850132,
0.014533314853906631,
-0.07514787465333939,
0.000016745643733884208,
0.0014965326990932226,
0.07798364013433456,
0.04544319584965706,
0.0913117527961731,
0.0280741099268198,
0.01004039403051138,
0.09769223630428314,
-0.07146137207746506,
0.007395153399556875,
-0.0036532676313072443,
0.010749336332082748,
-0.0008867316064424813,
-0.0359610915184021,
0.0852857455611229,
0.06345032900571823,
-0.013682584278285503,
0.0250611063092947,
-0.04321002587676048,
-0.02265070378780365,
0.012725512497127056,
-0.036297839134931564,
0.00327442679554224,
0.028162728995084763,
-0.060543663799762726,
0.020435258746147156,
-0.013443316332995892,
0.06220967695116997,
0.0024436351377516985,
0.026585333049297333,
0.020258022472262383,
-0.055049359798431396,
0.003203532425686717,
0.01486120093613863,
-0.013195186853408813,
0.02656760811805725,
-0.016651280224323273,
0.025911837816238403,
0.01887558586895466,
0.04016157612204552,
0.05696350336074829,
0.06444284319877625,
-0.014391526579856873,
-0.015366322360932827,
0.017936237156391144,
-0.04725099727511406,
0.06259959191083908,
-0.02183542028069496,
0.037219464778900146,
-0.042182061821222305,
-0.004621416795998812,
-0.051504649221897125,
-0.07082332670688629,
-0.05146920308470726,
-0.04615213721990585,
-0.020966965705156326,
-0.008759867399930954,
-0.07777095586061478,
0.005543041974306107,
0.02031119354069233,
-0.05597098544239998,
0.019088268280029297,
-0.029917361214756966,
-0.03633328899741173,
0.03970076143741608,
-0.034117843955755234,
-0.022686149924993515,
0.01415225863456726,
0.07344640791416168,
-0.04852709174156189,
0.06919275969266891,
-0.04136677831411362,
-0.007652144879102707,
0.03564206883311272,
-0.015091607347130775,
-0.05604188144207001,
0.033160772174596786,
0.02972240187227726,
-0.03147703409194946,
0.00045195064740255475,
0.007847104221582413,
0.027187932282686234,
-0.010758197866380215,
-0.016686726361513138,
-0.04303279146552086,
-0.023076068609952927,
0.016509491950273514,
0.012911609373986721,
0.011741855181753635,
-0.04154401272535324,
-0.05529749020934105,
-0.03463182598352432,
-0.013895266689360142,
-0.07521876692771912,
0.039310842752456665,
0.045195065438747406,
-0.08755435794591904,
-0.008383241482079029,
-0.004260299261659384,
-0.04803083464503288,
0.00653113005682826,
0.048278965055942535,
-0.08925582468509674,
0.008440842851996422,
-0.006216536741703749,
-0.014214291237294674,
-0.025610536336898804,
0.056183669716119766,
0.016048679128289223,
0.11031140387058258,
-0.012025431729853153,
0.003092760220170021,
-0.031494755297899246,
0.0489170104265213,
0.006876739207655191,
0.0022774767130613327,
0.049625951796770096,
0.04636481776833534,
0.04363539069890976,
0.0308389849960804,
0.03452548384666443,
0.09074459969997406,
0.1154157891869545,
0.027719639241695404,
-0.01655380055308342,
0.004794221371412277,
-0.01812233403325081,
-0.039913445711135864,
0.06139439344406128,
-0.06238691136240959,
0.03587247431278229,
0.028783053159713745,
-0.01761721260845661,
0.01038600318133831,
0.012885024771094322,
0.022898832336068153,
0.024050863459706306,
0.010226490907371044,
0.05033489689230919,
0.007532510906457901,
-0.032451827079057693,
-0.02362549863755703,
0.017519734799861908,
-0.009659337811172009,
0.042182061821222305,
-0.019389569759368896,
0.02091379463672638,
-0.054056841880083084,
0.04313913360238075,
-0.008857346139848232,
0.03273540735244751,
-0.022597532719373703,
-0.00026876109768636525,
-0.02181769534945488,
0.013780063949525356,
0.019956722855567932,
-0.03647507727146149,
0.014010470360517502,
-0.03640418127179146,
-0.0166246946901083,
-0.07911794632673264,
-0.006903324741870165,
-0.019389569759368896,
0.03402922675013542,
0.0017634937539696693,
-0.039913445711135864,
0.02422809973359108,
0.00547657860442996,
0.0176792461425066,
0.034117843955755234,
-0.00490942457690835,
0.021250542253255844,
-0.04026791825890541,
-0.016225913539528847,
0.031122561544179916,
0.00842311978340149,
0.02995280735194683,
0.010962018743157387,
-0.007891412824392319,
-0.001169754657894373,
-0.024937041103839874,
0.014648517593741417,
-0.050831153988838196,
0.001009688712656498,
-0.006300723645836115,
0.01859200932085514,
-0.013895266689360142,
-0.02105558291077614,
-0.023040620610117912,
0.015481525100767612,
0.02107330597937107,
-0.042040273547172546,
0.046223029494285583,
-0.01294705644249916,
0.014320632442831993,
-0.012796406634151936,
0.04076417535543442,
-0.03158337622880936,
-0.05636090412735939,
0.005919667426496744,
-0.027631022036075592,
0.019371844828128815,
0.06742040067911148,
0.05983472242951393,
0.026071349158883095,
-0.0026917648501694202,
-0.02527378872036934,
0.02935020625591278,
0.016500629484653473,
0.04001978784799576,
-0.003314304631203413,
0.04055149480700493,
-0.036829546093940735,
-0.05575830489397049,
0.03078581392765045,
0.02897801250219345,
-0.04434433579444885,
0.0477118082344532,
-0.01926550455391407,
-0.09258785098791122,
-0.018911033868789673,
0.008529460988938808,
-0.04523051157593727,
-0.02814500406384468,
-0.04764091596007347,
-0.025911837816238403,
-0.02919069491326809,
-0.01852111518383026,
0.006788121536374092,
0.03489767760038376,
-0.036971334367990494,
0.04615213721990585,
0.012273562140762806,
0.04211116582155228,
-0.03468499705195427,
-0.04636481776833534,
-0.03831832483410835,
-0.013780063949525356,
-0.01836160197854042,
0.0296337828040123,
0.08039404451847076,
-0.010377141647040844,
-0.026142243295907974,
0.0220481026917696,
0.04817262291908264,
-0.012273562140762806,
-0.0032190405763685703,
0.000022050595362088643,
-0.015215671621263027,
-0.029332483187317848,
-0.023430539295077324,
-0.03147703409194946,
-0.005224017892032862,
-0.0023971106857061386,
0.029438825324177742,
-0.017634937539696693,
-0.014143397100269794,
0.05274529755115509,
-0.0008379918290302157,
-0.02341281622648239,
0.08514395356178284,
0.012645755894482136,
-0.06915730983018875,
0.042252954095602036,
-0.03106939233839512,
0.023129239678382874,
0.027046144008636475,
-0.019549081102013588,
0.032398659735918045,
-0.03665231168270111,
-0.018007131293416023,
-0.01365599874407053,
-0.012415350414812565,
0.02844630554318428,
-0.055120255798101425,
-0.0061899516731500626,
0.07649486511945724,
-0.012273562140762806,
-0.007443893235176802,
0.0037330237682908773,
0.032327763736248016,
0.011706408113241196,
-0.002006084891036153,
0.01245965901762247,
0.002011623466387391,
0.03959442302584648,
-0.025610536336898804,
0.013558519072830677,
-0.00277373637072742,
0.030874432995915413,
-0.04243018850684166,
0.07819632440805435,
0.0034560931380838156,
-0.0008402072708122432,
-0.029226141050457954,
0.008299054577946663,
-0.014728274196386337,
0.034755889326334,
-0.07521876692771912,
0.032451827079057693,
0.04515961930155754,
0.019903551787137985,
0.010111288167536259,
-0.0016815222334116697,
-0.029811019077897072,
0.009473240002989769,
-0.0034228614531457424,
0.018485667183995247,
-0.0274715106934309,
-0.018450221046805382,
0.051965463906526566,
-0.000989195890724659,
0.0015851504867896438,
0.004397657234221697,
-0.04806628078222275,
0.0064912517555058,
-0.03138841688632965,
-0.03753848746418953,
0.025309236720204353,
-0.08585289865732193,
-0.05636090412735939,
-0.01641201227903366,
-0.007195763289928436,
-0.003445015987381339,
-0.033001258969306946,
0.014949818141758442,
0.0000700634263921529,
-0.030502237379550934,
-0.00816169660538435,
0.01486120093613863,
-0.006517837289720774,
-0.02128598839044571,
-0.04055149480700493,
-0.04356449842453003,
0.014196567237377167,
0.03739669919013977,
0.04565587639808655,
0.015295428223907948,
0.0015452724182978272,
0.015251118689775467,
-0.005068936850875616,
0.013026813045144081,
0.0881924107670784,
-0.001201878534629941,
0.013106568716466427,
-0.05178822576999664,
0.03399377688765526,
-0.009508687071502209,
0.014958680607378483,
-0.009473240002989769,
-0.018184367567300797,
0.016899408772587776,
0.06954722851514816,
0.019921274855732918,
-0.00023871412849985063,
-0.08124477416276932,
-0.00594625249505043,
0.008852915838360786,
-0.013859819620847702,
0.00037939485628157854,
0.02137460745871067,
-0.06454918533563614,
0.023731840774416924,
0.017564043402671814,
0.00028413074323907495,
-0.10485254973173141,
0.012202667072415352,
-0.00701852748170495,
0.00943779293447733,
0.01986810564994812,
0.039771657437086105,
0.004114080220460892,
0.014878924004733562,
0.04423799365758896,
0.047889046370983124,
-0.009579581208527088,
0.06252869963645935,
0.05185912176966667,
0.0359610915184021,
0.004069771151989698,
0.010634132660925388,
0.004869546741247177,
-0.10088247060775757,
-0.0157207939773798,
0.03966531530022621,
-0.053312454372644424,
0.027950046584010124,
0.05909033119678497,
0.00028634618502110243,
0.027028420940041542,
0.03422418609261513,
-0.023377368226647377,
0.07365909218788147,
0.016349978744983673,
-0.0220481026917696,
0.010589824058115482,
0.010758197866380215,
0.02257980965077877,
0.03218597546219826,
0.048349857330322266,
-0.04367084056138992,
-0.060543663799762726,
-0.012282423675060272,
-0.02460029348731041,
0.03725491091609001,
-0.015135915949940681,
0.04211116582155228,
0.018786968663334846,
0.013780063949525356,
-0.04437978193163872,
0.02218989096581936,
-0.08280444890260696,
-0.0031835935078561306,
-0.01850339211523533,
-0.05604188144207001,
-0.001909713027998805,
-0.029456548392772675,
-0.04452157020568848,
0.01917688548564911,
-0.005994992330670357,
-0.022225337103009224,
-0.06093358248472214,
-0.03392288461327553,
-0.015002989210188389,
-0.054978467524051666,
-0.057530660182237625,
0.041508566588163376,
0.013150877319276333,
0.000302962027490139,
0.025185171514749527,
0.008343363180756569,
0.0015430570347234607,
0.02211899682879448,
-0.07248933613300323,
-0.03679409995675087,
-0.052107252180576324,
0.01775014027953148,
-0.025185171514749527,
-0.00820600613951683,
-0.03158337622880936,
-0.015144777484238148,
0.02348371036350727,
-0.015782825648784637,
0.022030377760529518,
-0.015180224552750587,
0.05799147114157677,
0.01986810564994812,
0.04877522215247154,
-0.0015087176579982042,
-0.010775920934975147,
-0.023749563843011856,
-0.008112956769764423,
0.018928756937384605,
0.034365974366664886,
-0.005410115234553814,
-0.010696165263652802,
-0.032629065215587616,
0.055722855031490326,
-0.012840715236961842,
0.03573068603873253,
0.007913567125797272,
0.02234940230846405,
-0.03753848746418953,
0.026532161980867386,
-0.03707767650485039,
0.038176536560058594,
0.02355460450053215,
-0.030147766694426537,
-0.03831832483410835,
0.0021334728226065636,
0.049767740070819855,
-0.014143397100269794,
0.02566370740532875,
0.012415350414812565,
-0.04012612625956535,
0.007288811728358269,
0.008011046797037125,
0.037148572504520416,
-0.011901367455720901,
-0.0024081880692392588,
0.02881849929690361,
0.019513633102178574,
0.07007893919944763,
0.033834267407655716,
0.0078603969886899,
-0.043458156287670135,
-0.026585333049297333,
0.015508110634982586,
0.016349978744983673,
0.000293546385364607,
0.030661750584840775,
-0.004231498576700687,
0.04005523398518562,
0.02098468877375126,
-0.014107950031757355,
0.004825237672775984,
0.014010470360517502,
0.01924777962267399,
0.003956783562898636,
0.06065000593662262,
-0.000046247401769505814,
0.049094248563051224,
0.04445067420601845,
0.008844053372740746,
-0.02000989392399788,
0.08677452057600021,
-0.052709851413965225,
-0.07029161602258682,
-0.0018642963841557503,
0.0483144111931324,
0.022508913651108742,
0.011662098579108715,
-0.03849555924534798,
-0.04423799365758896,
-0.02904890663921833,
-0.09386394917964935,
-0.02919069491326809,
-0.064088374376297,
0.07146137207746506,
-0.07248933613300323,
0.012831853702664375,
0.016128435730934143,
0.009313727729022503,
0.026425819844007492,
-0.01972631737589836,
0.0332493893802166,
-0.015516972169280052,
0.06238691136240959,
-0.01836160197854042,
0.03323166444897652,
-0.05891309678554535,
-0.002538899192586541,
0.008440842851996422,
0.02881849929690361,
0.0010013808496296406,
0.025716878473758698,
0.025397853925824165,
-0.06454918533563614,
-0.018999651074409485,
-0.02008078806102276,
-0.013664860278367996,
0.005795602221041918,
-0.014462420716881752,
-0.002561053726822138,
-0.00603930139914155,
0.012840715236961842,
0.014506729319691658,
-0.08060672879219055,
0.08762525767087936,
-0.028765330091118813,
-0.039771657437086105,
0.017484286800026894,
-0.021853143349289894,
-0.059338461607694626,
-0.025149723514914513,
-0.007350844331085682,
-0.0009864266030490398,
0.030289554968476295,
-0.0014466851716861129,
-0.06369845569133759,
-0.024511676281690598,
-0.07755827903747559,
-0.05604188144207001,
-0.027932321652770042,
-0.0015497033018618822,
-0.004060909617692232,
-0.019921274855732918,
-0.013248356990516186,
0.02392679825425148,
0.01912371627986431,
-0.038708243519067764,
0.04852709174156189,
-0.02190631441771984,
0.0008518383256159723,
0.016137296333909035,
-0.005613936111330986,
-0.026691673323512077,
-0.05040578916668892,
-0.09074459969997406,
-0.01365599874407053,
0.031122561544179916,
-0.005130968987941742,
0.024547124281525612,
0.05483667925000191,
-0.014364941045641899,
-0.029084352776408195,
-0.06451374292373657,
0.03606743365526199,
-0.0067571052350103855,
0.021410053595900536,
-0.00805535539984703,
0.02063021808862686,
-0.01798940822482109,
0.05777878686785698,
-0.0489170104265213,
0.008968118578195572,
0.006553284358233213,
-0.025699153542518616,
-0.053312454372644424,
0.03560662269592285,
-0.0071824705228209496,
-0.028091834858059883,
0.005396822467446327,
0.024139482527971268,
-0.03753848746418953,
-0.07656575739383698,
0.03643962740898132,
0.030644025653600693,
-0.005113245453685522,
0.007847104221582413,
-0.05717618763446808,
-0.006960926111787558,
0.0005787848494946957,
-0.006708365399390459,
0.003823857055976987,
0.03165426850318909,
-0.002806968055665493,
-0.07160316407680511,
-0.009623889811336994,
-0.040374256670475006,
0.026620779186487198,
0.04250108450651169,
-0.003786194371059537,
0.014994127675890923,
0.039913445711135864,
0.010607547126710415,
0.016199329867959023,
-0.035553451627492905,
-0.004410949535667896,
0.03959442302584648,
0.024192651733756065,
-0.03955897316336632,
0.036687757819890976,
-0.035411663353443146,
-0.006393772549927235,
-0.004581538960337639,
0.031211180612444878,
-0.028605816885828972,
-0.07149682193994522,
-0.014630794525146484,
-0.017564043402671814,
0.0326467864215374,
-0.003879243042320013,
-0.015623313374817371,
-0.017360221594572067,
-0.02281021513044834,
-0.057672448456287384,
0.0067792595364153385,
-0.0037108692340552807,
-0.01278754509985447,
0.029102077707648277,
-0.04948416352272034,
-0.017058921977877617,
0.061217159032821655,
0.012964780442416668,
0.02865898795425892,
0.03892092779278755,
-0.04391896724700928,
-0.0034516623709350824,
0.009987222962081432,
0.04576221853494644,
-0.06352122128009796,
-0.02685118466615677,
-0.010758197866380215,
-0.0446988046169281,
0.014542176388204098,
-0.025468748062849045,
-0.07550234347581863,
0.09436020255088806,
0.02167590707540512,
0.017785586416721344,
0.02068338915705681,
0.058806754648685455,
0.0015042866580188274,
-0.009765679016709328,
-0.012255838140845299,
0.040657833218574524,
-0.0603664293885231,
-0.03477361425757408,
-0.0033541826996952295,
0.010075841099023819,
-0.0049360101111233234,
-0.006340601947158575,
-0.059622038155794144,
0.018698349595069885,
-0.006283000111579895,
-0.058806754648685455,
0.01985038071870804,
-0.04338726028800011,
-0.0015087176579982042,
0.01701461337506771,
-0.039098162204027176,
0.01977948658168316,
-0.07621128857135773,
0.03768027573823929,
-0.0027936752885580063,
-0.04632937163114548,
0.02091379463672638,
0.0392753966152668,
-0.04282010719180107,
-0.00502019701525569,
-0.015162501484155655,
-0.04069328308105469,
-0.005879789125174284,
0.048278965055942535,
-0.014692827127873898,
0.02589411288499832,
-0.038708243519067764,
0.018786968663334846,
0.008742143400013447,
-0.024139482527971268,
0.042926449328660965,
-0.0603664293885231,
-0.02160501293838024,
0.0937221571803093,
0.016048679128289223,
0.004300177562981844,
0.027258826419711113,
-0.0073597063310444355,
0.032912641763687134,
0.04813717305660248,
0.026018178090453148,
-0.033532965928316116,
-0.014373802579939365,
0.028534922748804092,
-0.06341487914323807,
0.0022453528363257647,
-0.008742143400013447,
-0.016757620498538017,
-0.011298766359686852,
-0.07507697492837906,
0.047215551137924194,
0.013859819620847702,
-0.01429404690861702,
0.03296581283211708,
0.08833419531583786,
-0.001009688712656498,
0.013407869264483452
]
|
42,123 | werkzeug.exceptions | HTTPException | The base class for all HTTP exceptions. This exception can be called as a WSGI
application to render a default error page or you can catch the subclasses
of it independently and render nicer error messages.
.. versionchanged:: 2.1
Removed the ``wrap`` class method.
| class HTTPException(Exception):
"""The base class for all HTTP exceptions. This exception can be called as a WSGI
application to render a default error page or you can catch the subclasses
of it independently and render nicer error messages.
.. versionchanged:: 2.1
Removed the ``wrap`` class method.
"""
code: int | None = None
description: str | None = None
def __init__(
self,
description: str | None = None,
response: Response | None = None,
) -> None:
super().__init__()
if description is not None:
self.description = description
self.response = response
@property
def name(self) -> str:
"""The status name."""
from .http import HTTP_STATUS_CODES
return HTTP_STATUS_CODES.get(self.code, "Unknown Error") # type: ignore
def get_description(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> str:
"""Get the description."""
if self.description is None:
description = ""
else:
description = self.description
description = escape(description).replace("\n", Markup("<br>"))
return f"<p>{description}</p>"
def get_body(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> str:
"""Get the HTML body."""
return (
"<!doctype html>\n"
"<html lang=en>\n"
f"<title>{self.code} {escape(self.name)}</title>\n"
f"<h1>{escape(self.name)}</h1>\n"
f"{self.get_description(environ)}\n"
)
def get_headers(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> list[tuple[str, str]]:
"""Get a list of headers."""
return [("Content-Type", "text/html; charset=utf-8")]
def get_response(
self,
environ: WSGIEnvironment | WSGIRequest | None = None,
scope: dict[str, t.Any] | None = None,
) -> Response:
"""Get a response object. If one was passed to the exception
it's returned directly.
:param environ: the optional environ for the request. This
can be used to modify the response depending
on how the request looked like.
:return: a :class:`Response` object or a subclass thereof.
"""
from .wrappers.response import Response as WSGIResponse # noqa: F811
if self.response is not None:
return self.response
if environ is not None:
environ = _get_environ(environ)
headers = self.get_headers(environ, scope)
return WSGIResponse(self.get_body(environ, scope), self.code, headers)
def __call__(
self, environ: WSGIEnvironment, start_response: StartResponse
) -> t.Iterable[bytes]:
"""Call the exception as WSGI application.
:param environ: the WSGI environment.
:param start_response: the response callable provided by the WSGI
server.
"""
response = t.cast("WSGIResponse", self.get_response(environ))
return response(environ, start_response)
def __str__(self) -> str:
code = self.code if self.code is not None else "???"
return f"{code} {self.name}: {self.description}"
def __repr__(self) -> str:
code = self.code if self.code is not None else "???"
return f"<{type(self).__name__} '{code}: {self.name}'>"
| (description: str | None = None, response: 'Response | None' = None) -> 'None' | [
0.0077008455991744995,
-0.07209720462560654,
-0.05504532903432846,
-0.013191627338528633,
0.030606932938098907,
-0.033475104719400406,
-0.03830777853727341,
0.03907393291592598,
0.0178180281072855,
-0.04514424502849579,
0.0879310816526413,
0.03475202992558479,
0.056970544159412384,
-0.0016845599748194218,
-0.00830984115600586,
-0.009832330048084259,
0.04306187108159065,
-0.003496812656521797,
0.04455489292740822,
-0.09005274623632431,
0.00808392371982336,
0.03325900807976723,
0.020155785605311394,
-0.004518353380262852,
-0.006237292196601629,
0.004567465744912624,
-0.011895055882632732,
-0.014222990721464157,
0.05418094992637634,
-0.05924936383962631,
-0.010971740819513798,
-0.04915182664990425,
0.003391220699995756,
-0.012769259512424469,
0.028583496809005737,
0.016393763944506645,
-0.039545413106679916,
-0.034084100276231766,
-0.022965021431446075,
0.009576944634318352,
-0.04750164598226547,
0.004140187054872513,
-0.03154989331960678,
-0.056341901421546936,
0.016393763944506645,
-0.023436501622200012,
-0.017503708600997925,
0.04129382222890854,
-0.05602758005261421,
0.009675169363617897,
-0.00793167483061552,
0.011610203422605991,
0.016413409262895584,
-0.06046735495328903,
0.017179565504193306,
0.061606764793395996,
0.006320783402770758,
0.03864174336194992,
-0.028033435344696045,
-0.028878170996904373,
-0.016806310042738914,
0.08368775993585587,
-0.002191646955907345,
-0.02345614694058895,
-0.03072480298578739,
0.02428123727440834,
0.002617698162794113,
-0.022827506065368652,
-0.0285638514906168,
-0.004103352315723896,
0.03883819282054901,
0.018201105296611786,
-0.035105641931295395,
0.03318043053150177,
0.05099845677614212,
0.004908797796815634,
-0.036932628601789474,
-0.0021339396480470896,
0.02162916027009487,
0.0011283605126664042,
0.06557505577802658,
0.010696710087358952,
0.01912442222237587,
-0.03541995957493782,
0.11158367991447449,
-0.04094021022319794,
-0.04384767264127731,
-0.010667243041098118,
-0.0017496341606602073,
0.02371153235435486,
-0.030685512349009514,
-0.004965277388691902,
-0.017700158059597015,
0.01940927468240261,
0.030194386839866638,
-0.03015509806573391,
0.021314840763807297,
-0.03952576965093613,
0.03514493256807327,
-0.013093402609229088,
0.032473210245370865,
0.09044564515352249,
-0.01770997978746891,
-0.03628434240818024,
0.013122869655489922,
0.024595558643341064,
-0.0036834401544183493,
-0.020116494968533516,
0.04129382222890854,
-0.0417260117828846,
0.0049161650240421295,
-0.049466148018836975,
0.01102085318416357,
-0.04013476520776749,
-0.04021334648132324,
0.03263036906719208,
0.01315233763307333,
0.0014058463275432587,
0.004793383646756411,
-0.009557299315929413,
-0.014075652696192265,
-0.017356369644403458,
-0.027561955153942108,
-0.00442258408293128,
0.030017582699656487,
0.06408203393220901,
0.002245670650154352,
-0.04266897216439247,
0.01790643110871315,
-0.002406514249742031,
0.010824402794241905,
0.029487166553735733,
-0.006777530070394278,
-0.0039609260857105255,
0.0010368884541094303,
0.04447631165385246,
-0.08062314242124557,
0.04086162894964218,
-0.008437533862888813,
0.05543823167681694,
-0.0009251573937945068,
0.022768571972846985,
-0.016717907041311264,
0.045615725219249725,
-0.03514493256807327,
-0.028819236904382706,
0.02936929650604725,
-0.01448819786310196,
-0.004793383646756411,
0.03685404732823372,
0.031432025134563446,
-0.029997937381267548,
0.015735656023025513,
0.038936417549848557,
-0.05539894104003906,
0.025793904438614845,
0.01722867786884308,
-0.018485959619283676,
0.017042050138115883,
0.002143762307241559,
-0.0010135599877685308,
-0.07496537268161774,
0.046873003244400024,
-0.051902130246162415,
0.007361969444900751,
0.006659660022705793,
0.013417544774711132,
0.00990108773112297,
0.013270207680761814,
0.0035680257715284824,
-0.028642430901527405,
0.014753405936062336,
-0.025263488292694092,
-0.004299802705645561,
0.023927627131342888,
0.057559892535209656,
0.02876030094921589,
0.020784424617886543,
-0.059406522661447525,
-0.005746166687458754,
0.06934690475463867,
-0.07276513427495956,
-0.07512253522872925,
0.020155785605311394,
-0.010480615310370922,
0.035498540848493576,
-0.014969500713050365,
0.02487058937549591,
0.03881854936480522,
0.03905428946018219,
0.009881442412734032,
-0.03559676557779312,
0.03907393291592598,
0.006630192510783672,
0.0037104522343724966,
0.04974117875099182,
0.006905222777277231,
-0.07410099357366562,
0.11189800500869751,
-0.03117663785815239,
-0.04915182664990425,
0.09948235750198364,
0.024615203961730003,
0.006865932606160641,
0.007720490917563438,
0.03644150123000145,
0.002968852873891592,
-0.056341901421546936,
-0.0417260117828846,
-0.007573152892291546,
-0.0587385930120945,
-0.022179221734404564,
-0.03940789774060249,
0.023122182115912437,
0.023004312068223953,
-0.008447356522083282,
0.01254334207624197,
-0.04184387996792793,
0.038759615272283554,
-0.0315106026828289,
0.03828813508152962,
0.0005608038045465946,
-0.0018233029404655099,
-0.0092233344912529,
0.012111151590943336,
0.0035213688388466835,
0.008781321346759796,
0.00794149748980999,
0.0029369296971708536,
0.055556099861860275,
-0.013623817823827267,
0.006443564780056477,
0.012896952219307423,
-0.026402899995446205,
0.013427367433905602,
-0.013780977576971054,
0.03803274780511856,
-0.015833882614970207,
-0.008810789324343204,
-0.010510082356631756,
-0.00536308903247118,
0.0033003624994307756,
0.003302818164229393,
0.06549648195505142,
-0.01912442222237587,
-0.05968155339360237,
-0.033475104719400406,
0.06683234125375748,
-0.04408341273665428,
-0.01479269564151764,
-0.034064456820487976,
-0.004520808812230825,
-0.03078373707830906,
-0.06934690475463867,
0.016953647136688232,
0.01435068342834711,
-0.018053768202662468,
-0.029408587142825127,
0.01183612085878849,
0.032866109162569046,
0.044397734105587006,
-0.010460969991981983,
0.010804758407175541,
0.017955543473362923,
-0.002047992777079344,
-0.006620369851589203,
0.028387045487761497,
0.026442188769578934,
-0.02121661603450775,
0.07028986513614655,
0.06486783921718597,
0.040586601942777634,
-0.007533863186836243,
0.018849391490221024,
-0.039388254284858704,
0.009994401596486568,
0.02249354124069214,
0.013289852067828178,
-0.05119490623474121,
0.0021548124495893717,
-0.01853507198393345,
-0.017434950917959213,
0.023357922211289406,
-0.005564450286328793,
0.023357922211289406,
0.006320783402770758,
0.005638119298964739,
0.021354131400585175,
0.006256937049329281,
-0.011983458884060383,
0.02125590667128563,
0.030489062890410423,
0.0019816907588392496,
-0.03463416174054146,
-0.01183612085878849,
0.003044977318495512,
-0.04349406063556671,
0.004253145772963762,
0.015126661397516727,
-0.06844323128461838,
0.006797174923121929,
0.028897816315293312,
0.0950818732380867,
0.0022272535134106874,
-0.021354131400585175,
-0.04306187108159065,
0.03665759786963463,
-0.011266415938735008,
-0.008275462314486504,
-0.020096849650144577,
0.014439085498452187,
0.0433369018137455,
-0.015509738586843014,
0.0047049811109900475,
0.0036097713746130466,
0.04840531572699547,
0.06753955781459808,
0.02329898811876774,
-0.028288820758461952,
0.06730382144451141,
-0.0006949423695914447,
-0.020175429061055183,
-0.0025513963773846626,
0.0012333386112004519,
0.05182354897260666,
0.006541789975017309,
0.043808382004499435,
-0.021373776718974113,
0.040586601942777634,
0.002305833622813225,
0.009085819125175476,
-0.01722867786884308,
-0.0327678844332695,
-0.048641055822372437,
0.016767019405961037,
-0.0635712668299675,
0.0297229066491127,
-0.046244364231824875,
-0.033710844814777374,
-0.0886383056640625,
-0.02349543757736683,
-0.016325006261467934,
-0.010048424825072289,
0.03386800363659859,
-0.04027228057384491,
-0.04164743050932884,
0.005196106154471636,
0.02066655457019806,
-0.012513874098658562,
-0.02673686482012272,
-0.03587179630994797,
0.01134499628096819,
-0.017267968505620956,
0.02221851237118244,
-0.016246426850557327,
-0.07598691433668137,
-0.03422161564230919,
-0.006679304875433445,
-0.010794935747981071,
0.03172669932246208,
-0.00008694453572388738,
0.02532242424786091,
-0.05732415243983269,
0.01858418434858322,
-0.023790111765265465,
-0.03681475669145584,
0.022002415731549263,
0.010500260628759861,
-0.04593004286289215,
0.04632294550538063,
0.015028435736894608,
-0.028013790026307106,
-0.039997249841690063,
-0.03323936462402344,
0.003725185990333557,
-0.011963813565671444,
-0.010559195652604103,
-0.025597453117370605,
-0.05830640345811844,
-0.005873859394341707,
0.04062588885426521,
0.007612443063408136,
-0.04184387996792793,
-0.025774259120225906,
0.016020508483052254,
-0.027365505695343018,
0.07028986513614655,
-0.026245739310979843,
-0.033475104719400406,
0.03600931167602539,
0.0069297789596021175,
-0.06922902911901474,
-0.0024580825120210648,
0.046047914773225784,
-0.03058728761970997,
-0.05205928906798363,
-0.048680346459150314,
0.017071517184376717,
0.010706532746553421,
0.024379463866353035,
0.03321972116827965,
0.04290471225976944,
0.04577288404107094,
0.023357922211289406,
0.02589212916791439,
-0.013898847624659538,
0.03887748345732689,
-0.009478719905018806,
-0.015833882614970207,
0.029408587142825127,
-0.052098579704761505,
-0.007533863186836243,
-0.045262113213539124,
-0.05504532903432846,
0.010883337818086147,
0.045851465314626694,
0.019723594188690186,
0.008525935932993889,
-0.007759780623018742,
-0.02227744646370411,
0.00023896318452898413,
-0.01547044888138771,
0.0873810276389122,
0.0023721354082226753,
-0.04164743050932884,
0.021177325397729874,
-0.038347069174051285,
-0.0033519305288791656,
-0.00758788688108325,
0.016423232853412628,
0.047658804804086685,
-0.03318043053150177,
-0.07783354818820953,
-0.031451668590307236,
0.010274342261254787,
-0.058384984731674194,
-0.06836465001106262,
0.0035336469300091267,
0.026147514581680298,
0.013083579950034618,
0.01760193333029747,
0.011895055882632732,
0.030901607125997543,
0.05201999843120575,
0.06137102469801903,
-0.010087714530527592,
-0.03265001252293587,
-0.004648501519113779,
-0.0032831730786710978,
-0.040390148758888245,
0.012572809122502804,
-0.009837240912020206,
0.005146993789821863,
-0.02467413805425167,
-0.030194386839866638,
-0.041765302419662476,
-0.06290333718061447,
-0.019419096410274506,
-0.04247252270579338,
0.011816476471722126,
0.016914358362555504,
0.03221782296895981,
0.019703948870301247,
-0.028897816315293312,
-0.039329320192337036,
-0.03318043053150177,
0.05021265894174576,
-0.02750302106142044,
-0.011580736376345158,
0.0010080348001793027,
-0.014537311159074306,
0.012179909273982048,
0.03418232500553131,
0.014213168062269688,
-0.017218856140971184,
0.037954166531562805,
-0.011089610867202282,
-0.06015303358435631,
0.0014684648485854268,
-0.006139067001640797,
0.052530769258737564,
0.021904191002249718,
0.049859046936035156,
-0.008476823568344116,
-0.026540415361523628,
-0.06989695876836777,
0.08423782140016556,
0.016285717487335205,
0.01919317990541458,
-0.016413409262895584,
0.03209995478391647,
0.01792607642710209,
-0.035537831485271454,
0.007062382530421019,
-0.03441806510090828,
-0.003506635082885623,
-0.055123910307884216,
-0.05343443900346756,
-0.04577288404107094,
-0.06537860631942749,
0.026815444231033325,
-0.12399933487176895,
0.06345339864492416,
-0.0019338061101734638,
0.06125315651297569,
-0.02267034724354744,
0.01516595110297203,
0.027561955153942108,
0.049662597477436066,
-0.04086162894964218,
-0.047894544899463654,
0.02695295959711075,
0.021491646766662598,
-0.036520082503557205,
-0.01803412288427353,
-0.00007428271055687219,
-0.06400346010923386,
0.020902294665575027,
0.05826711282134056,
0.009198778308928013,
0.03215888887643814,
0.011787008494138718,
0.05198070779442787,
0.035930730402469635,
0.006252025719732046,
-0.01586334966123104,
0.0587385930120945,
-0.02771911583840847,
0.01579459197819233,
0.07311874628067017,
-0.016757197678089142,
0.030390838161110878,
0.024202657863497734,
-0.039132870733737946,
0.03217853233218193,
0.02648147940635681,
-0.08824540674686432,
0.0006341656553559005,
-0.008619249798357487,
0.022336382418870926,
0.019075309857726097,
0.06942547857761383,
-0.011600380763411522,
-0.01919317990541458,
-0.05610616132616997,
-0.09217441082000732,
-0.031667765229940414,
-0.006286404561251402,
-0.007975876331329346,
-0.03141237795352936,
-0.02669757418334484,
-0.011983458884060383,
0.036932628601789474,
0.02223815582692623,
-0.022179221734404564,
0.016943825408816338,
0.020980875939130783,
0.0539059191942215,
0.03323936462402344,
0.02060762047767639,
0.007666466757655144,
0.012661212123930454,
-0.03355368599295616,
-0.06215682625770569,
-0.023200761526823044,
0.07335448265075684,
0.01649199053645134,
-0.004326814319938421,
-0.035734280943870544,
-0.048483897000551224,
-0.0327678844332695,
0.04899466782808304,
0.023416858166456223,
-0.0003793943324126303,
0.0465586856007576,
0.06337481737136841,
0.045655012130737305,
0.04974117875099182,
0.046440813690423965,
0.019654836505651474,
0.028269175440073013,
-0.018476136028766632,
-0.02895675227046013,
-0.04031157121062279,
-0.016305362805724144,
-0.0019816907588392496,
-0.0022910998668521643,
0.009969844482839108,
-0.0017692791298031807,
-0.0018564538331702352,
-0.0526486374437809,
-0.047894544899463654,
0.05661693215370178,
-0.0610567070543766,
0.06274617463350296,
0.06317836791276932,
-0.0517449676990509,
-0.05198070779442787,
-0.016875067725777626,
0.032060664147138596,
0.02245425246655941,
0.03703085333108902,
0.00024479528656229377,
-0.016393763944506645,
0.06655731052160263,
-0.00657125748693943,
0.049269694834947586,
0.0061734458431601524,
-0.022198867052793503,
-0.004999656230211258,
0.00592297175899148,
-0.04227607324719429,
-0.0327678844332695,
-0.023534728214144707,
-0.057756341993808746,
-0.0171009860932827,
-0.027836985886096954,
0.053945209830999374,
-0.00013759183639194816,
-0.03418232500553131,
0.04490850493311882,
-0.027463730424642563,
-0.031432025134563446,
0.03139273449778557,
0.015136484056711197,
0.05225573852658272,
0.04215820133686066,
0.04152956232428551,
-0.06907187402248383,
-0.025381358340382576,
0.048876795917749405,
0.08887404948472977,
-0.019880754873156548,
-0.07689058780670166,
0.023927627131342888,
0.059406522661447525,
0.03481096401810646,
0.0031579360365867615,
0.03820955380797386,
0.0578349232673645,
0.065535768866539,
-0.06361055374145508,
-0.049073245376348495,
0.019959334284067154,
-0.019978979602456093,
0.03331794589757919,
0.03296433389186859,
-0.07787283509969711,
0.048483897000551224,
-0.06239256635308266,
-0.003408410120755434,
0.017150098457932472,
-0.02591177448630333,
-0.0354592502117157,
-0.07131139934062958,
0.04761951416730881,
-0.021904191002249718,
-0.028249530121684074,
-0.03824884444475174,
0.030489062890410423,
0.015657076612114906,
-0.030999833717942238,
0.04290471225976944,
-0.0354592502117157,
0.05268792808055878,
-0.004935809876769781,
0.03441806510090828,
-0.042786840349435806,
0.11606274545192719,
-0.03481096401810646,
0.03744339942932129,
-0.005760900676250458,
-0.010264520533382893,
-0.022729281336069107,
-0.02954610250890255,
0.06089954450726509,
-0.030253322795033455,
-0.021157680079340935,
-0.006694038864225149,
0.016609860584139824,
0.010853870771825314,
0.052334319800138474,
-0.07131139934062958,
0.009851974435150623,
0.012003104202449322,
-0.017611755058169365,
0.006694038864225149,
-0.009871619753539562,
0.012042393907904625,
-0.07496537268161774,
-0.019350338727235794,
-0.027385151013731956,
-0.012896952219307423,
0.04266897216439247,
-0.05359160155057907,
0.01570618897676468,
0.005181372631341219,
-0.1246279701590538,
-0.019399451091885567,
0.022827506065368652,
0.0038086771965026855,
-0.05610616132616997,
0.021589871495962143,
-0.01731708087027073,
0.02933000586926937,
0.004827762488275766,
0.0285638514906168,
-0.04596933349967003,
0.01885921321809292,
0.010362745262682438,
-0.003980570938438177,
0.03194279223680496,
0.07335448265075684,
-0.011953991837799549,
-0.010804758407175541,
-0.04001689329743385,
0.026206448674201965,
0.014399795792996883,
-0.005235396325588226,
0.0009890036890283227,
-0.04129382222890854,
0.021688096225261688,
0.04435844346880913,
0.0136532848700881,
-0.012494229711592197,
-0.00697889132425189,
-0.005122437607496977,
-0.060231614857912064,
-0.0003941281174775213,
0.028878170996904373,
-0.002169546205550432,
0.0309801883995533,
-0.06093883514404297,
-0.007912029512226582,
0.030508708208799362,
-0.04156884923577309,
-0.00739634782075882,
0.013928315602242947,
-0.015509738586843014,
-0.017051871865987778,
0.029231781139969826,
-0.02895675227046013,
-0.06683234125375748,
-0.06970050930976868,
0.024438397958874702,
0.004771282896399498,
0.03353403881192207,
0.015401691198348999,
0.01823057420551777,
0.06522145122289658,
0.0392114482820034,
-0.04101879149675369,
-0.030056871473789215,
0.028622785583138466,
0.027601245790719986,
-0.001268331310711801,
-0.0039167245849967,
-0.0023316177539527416,
0.004049328621476889,
0.015205241739749908,
0.02206135168671608,
0.02184525690972805,
0.020882651209831238,
-0.0008177237468771636,
0.04557643458247185,
0.05398450046777725,
-0.019743239507079124,
0.018328798934817314
]
|
42,124 | werkzeug.exceptions | __call__ | Call the exception as WSGI application.
:param environ: the WSGI environment.
:param start_response: the response callable provided by the WSGI
server.
| def __call__(
self, environ: WSGIEnvironment, start_response: StartResponse
) -> t.Iterable[bytes]:
"""Call the exception as WSGI application.
:param environ: the WSGI environment.
:param start_response: the response callable provided by the WSGI
server.
"""
response = t.cast("WSGIResponse", self.get_response(environ))
return response(environ, start_response)
| (self, environ: 'WSGIEnvironment', start_response: 'StartResponse') -> 't.Iterable[bytes]' | [
0.017333341762423515,
-0.08539973199367523,
-0.054632823914289474,
0.003773977980017662,
0.020792821422219276,
-0.017845524474978447,
-0.013334722258150578,
0.04320306330919266,
0.0069459169171750546,
-0.022679811343550682,
0.07907382398843765,
0.023452578112483025,
0.06854262948036194,
-0.019606715068221092,
-0.025932621210813522,
-0.00198470801115036,
0.0051532769575715065,
0.00970451533794403,
0.014601700939238071,
-0.024458972737193108,
-0.012121657840907574,
0.014439959079027176,
0.029652684926986694,
0.0036189754027873278,
-0.009551758877933025,
0.039177484810352325,
-0.0015657516196370125,
0.004263696726411581,
0.035565249621868134,
-0.039536911994218826,
0.02855643443763256,
-0.05642995610833168,
0.00965958647429943,
-0.007175051141530275,
0.0504634790122509,
0.05912565439939499,
-0.017773639410734177,
-0.01924728788435459,
-0.013694148510694504,
-0.001048514386638999,
-0.05326700583100319,
-0.0012534998822957277,
0.041873183101415634,
-0.01876206137239933,
-0.009542773477733135,
-0.0054677752777934074,
-0.007489549461752176,
0.045683104544878006,
-0.005099363159388304,
0.04402974247932434,
0.008145502768456936,
0.006829102989286184,
0.04402974247932434,
-0.0696568489074707,
0.002960775513201952,
0.09057547152042389,
-0.0006475292611867189,
0.025698993355035782,
-0.01915743201971054,
-0.006954902317374945,
-0.026561615988612175,
0.04057924821972847,
0.03349854797124863,
-0.010189740918576717,
0.02871817536652088,
0.02172733098268509,
-0.004695008508861065,
-0.019858313724398613,
-0.03211475536227226,
-0.0010221190750598907,
0.03475654125213623,
-0.007759118918329477,
-0.07012410461902618,
0.031629528850317,
-0.004852257668972015,
0.0000911202296265401,
-0.05121827498078346,
0.025914648547768593,
-0.006820117589086294,
-0.029922254383563995,
0.027675839141011238,
0.017602911219000816,
-0.014511844143271446,
-0.0025114924646914005,
0.09740457683801651,
0.0015028519555926323,
-0.04744429513812065,
-0.03141387552022934,
-0.06951308250427246,
0.05700504034757614,
-0.02850252017378807,
0.019732514396309853,
-0.026274075731635094,
0.037308469414711,
0.04722863808274269,
-0.01912148855626583,
0.019588742405176163,
-0.011232077144086361,
0.02830483578145504,
-0.0029944719281047583,
0.026885099709033966,
0.06771595031023026,
-0.0019105763640254736,
0.0080870958045125,
0.01910351775586605,
-0.0010625545401126146,
0.04464076831936836,
-0.0369490422308445,
0.04176535829901695,
-0.020828764885663986,
0.0026754809077829123,
0.012741669081151485,
0.008334201760590076,
-0.04021982476115227,
-0.09301957488059998,
0.036266133189201355,
0.01594954915344715,
0.023470548912882805,
0.020559195429086685,
0.007727669086307287,
0.011115264147520065,
-0.019373087212443352,
0.00022969598649069667,
0.0020476076751947403,
0.0364997573196888,
0.08791571855545044,
-0.013801977038383484,
-0.018007267266511917,
0.027208585292100906,
0.006779681891202927,
0.026363931596279144,
0.026705387979745865,
-0.03495422378182411,
-0.04047141969203949,
-0.004315364174544811,
0.032510124146938324,
-0.009062039665877819,
0.005238641053438187,
-0.05024782195687294,
0.05229655280709267,
0.01257992722094059,
0.03763195127248764,
0.022931409999728203,
0.07314328849315643,
-0.030191823840141296,
-0.00793883204460144,
0.0031809243373572826,
0.02560913749039173,
0.017692768946290016,
0.048342861235141754,
0.0026642486918717623,
0.008801455609500408,
0.008752034977078438,
-0.0021632981952279806,
-0.09258826076984406,
0.013163994997739792,
0.029419057071208954,
-0.011465704999864101,
0.03662555664777756,
-0.036355987191200256,
-0.030533280223608017,
-0.03092864900827408,
-0.012220500037074089,
-0.02232038415968418,
0.008365651592612267,
-0.017369285225868225,
-0.03788354992866516,
0.07864250987768173,
0.03432522714138031,
-0.011330919340252876,
-0.023973746225237846,
-0.0004226069140713662,
0.00134672608692199,
-0.025806821882724762,
0.039716627448797226,
0.07123833149671555,
0.01869017630815506,
0.0369490422308445,
-0.04190912842750549,
0.01082772295922041,
0.06904582679271698,
-0.05729258060455322,
-0.04014793783426285,
0.005719373933970928,
0.008563335984945297,
0.039393141865730286,
-0.024009689688682556,
0.04467670992016792,
0.04331089183688164,
0.03119821846485138,
-0.016812173649668694,
-0.02187110111117363,
0.0618213526904583,
0.0035560757387429476,
-0.026274075731635094,
0.027370326220989227,
-0.002940557897090912,
-0.029904283583164215,
-0.01422430295497179,
-0.03245621174573898,
-0.05013999342918396,
0.04708486795425415,
-0.0008008471340872347,
-0.017306385561823845,
0.012382241897284985,
0.051757413893938065,
0.007282879203557968,
-0.007808540482074022,
-0.05966479703783989,
-0.04801937937736511,
-0.029904283583164215,
-0.05049942061305046,
-0.03845863416790962,
-0.02841266244649887,
0.0064292410388588905,
0.005135305691510439,
-0.017935382202267647,
-0.073179230093956,
0.04420945793390274,
-0.013828934170305729,
0.030605165287852287,
-0.005400382913649082,
0.01906757429242134,
-0.028790060430765152,
0.0005104978918097913,
0.0028080192860215902,
-0.030461393296718597,
-0.009749443270266056,
-0.027352355420589447,
0.012840511277318,
-0.03204287216067314,
0.013092109933495522,
0.0767734944820404,
-0.061497870832681656,
0.03678730130195618,
0.007323314435780048,
0.03675135597586632,
0.03125213086605072,
-0.035798877477645874,
0.017063772305846214,
0.045179907232522964,
0.05445311218500137,
0.01858234964311123,
0.03441508486866951,
-0.029958197847008705,
-0.0020038026850670576,
-0.0039424593560397625,
0.055028192698955536,
-0.0490257702767849,
0.00022492234711535275,
-0.001136124599725008,
0.0021565589122474194,
-0.014880255796015263,
-0.07921759784221649,
0.01863626204431057,
0.05039159208536148,
0.02512391097843647,
-0.025950592011213303,
0.02857440523803234,
0.024351144209504128,
0.03709281235933304,
0.026256104931235313,
0.017818568274378777,
0.006379819940775633,
-0.04287957772612572,
0.019984113052487373,
-0.013289794325828552,
0.032815638929605484,
0.0012085714843124151,
0.09891416877508163,
-0.0025923633947968483,
0.039393141865730286,
0.03436117246747017,
0.01901366002857685,
-0.05563921853899956,
0.0029270793311297894,
0.0080870958045125,
-0.019930198788642883,
-0.032761722803115845,
0.05423745512962341,
0.010198726318776608,
-0.01609332114458084,
0.009246245957911015,
0.01422430295497179,
-0.0009193455334752798,
-0.032905492931604385,
0.06192918121814728,
0.07864250987768173,
0.02830483578145504,
-0.03574496507644653,
0.023003295063972473,
0.06430139392614365,
0.00281925150193274,
-0.07785177230834961,
-0.03436117246747017,
0.01895974762737751,
-0.013775019906461239,
-0.029796455055475235,
0.029167458415031433,
-0.02156558819115162,
0.05348265916109085,
-0.010648009367287159,
0.02821497805416584,
0.005530674941837788,
-0.02857440523803234,
0.009372045285999775,
0.07979267835617065,
0.02215864323079586,
-0.05269192159175873,
-0.004164854530245066,
-0.05873028561472893,
0.042627979069948196,
-0.055207908153533936,
-0.041945070028305054,
-0.005359947215765715,
0.039321254938840866,
0.039321254938840866,
0.05341077595949173,
-0.014386044815182686,
0.06552344560623169,
-0.03209678456187248,
0.033013321459293365,
0.04582687467336655,
0.01921134442090988,
0.06286369264125824,
0.03788354992866516,
0.032851580530405045,
0.0080646313726902,
0.049205485731363297,
0.004353553056716919,
0.026274075731635094,
-0.0024800426326692104,
-0.026256104931235313,
-0.023668233305215836,
0.010108869522809982,
-0.05711286887526512,
0.03563713654875755,
-0.02463868446648121,
-0.020738907158374786,
-0.061425983905792236,
-0.029329201206564903,
-0.004068258684128523,
-0.016964929178357124,
0.03401971608400345,
-0.01885191909968853,
-0.03188112750649452,
-0.033228978514671326,
-0.015311568044126034,
0.023614319041371346,
-0.051685526967048645,
-0.039465028792619705,
0.03366028890013695,
0.017414212226867676,
0.015077941119670868,
0.01601244881749153,
-0.03497219458222389,
-0.057472292333841324,
0.03481045365333557,
-0.015356495976448059,
0.032833609730005264,
0.01901366002857685,
0.025645079091191292,
-0.057903606444597244,
0.0124810840934515,
-0.04417351260781288,
-0.05430934205651283,
-0.0057912589982151985,
0.006128221284598112,
-0.03684121370315552,
0.04510802403092384,
-0.01228339970111847,
-0.020433396100997925,
-0.0835307165980339,
-0.015104897320270538,
0.02185313031077385,
0.016138248145580292,
-0.02555522322654724,
-0.03123416192829609,
-0.061713527888059616,
0.05391397327184677,
-0.016470719128847122,
0.03091067634522915,
-0.027316411957144737,
-0.035565249621868134,
0.016542604193091393,
-0.008352172560989857,
0.042556095868349075,
-0.033211007714271545,
-0.02841266244649887,
0.042735807597637177,
0.017602911219000816,
-0.07253226637840271,
-0.04618630185723305,
0.029131516814231873,
-0.019984113052487373,
-0.04482048377394676,
-0.013074138201773167,
0.01839365065097809,
0.007489549461752176,
0.029562827199697495,
0.006977366749197245,
0.05585487559437752,
-0.0034212907776236534,
0.029490942135453224,
0.013712120242416859,
-0.06832697242498398,
0.0027900480199605227,
-0.04762400686740875,
-0.0007654660730622709,
0.0008468986488878727,
-0.0014219810254871845,
-0.058263033628463745,
-0.11559155583381653,
-0.03863834589719772,
-0.058119259774684906,
0.057867664843797684,
-0.023973746225237846,
-0.006689825560897589,
-0.022733725607395172,
-0.007242443505674601,
0.03130604699254036,
-0.0017241238383576274,
0.07777988910675049,
0.00007988815195858479,
-0.01384690497070551,
-0.00792984664440155,
-0.009318131022155285,
-0.020199768245220184,
0.023847946897149086,
-0.011627446860074997,
0.011510632932186127,
-0.04029170796275139,
-0.07490447908639908,
-0.016371876001358032,
0.025950592011213303,
-0.04485642537474632,
-0.04794749245047569,
0.03543945029377937,
0.04978056624531746,
0.05412962660193443,
-0.0042344932444393635,
0.012499055825173855,
0.03849457576870918,
0.01845655031502247,
0.05912565439939499,
-0.00945291668176651,
-0.06027581915259361,
-0.019768455997109413,
0.0219429861754179,
-0.05013999342918396,
0.05057130381464958,
-0.04122621566057205,
0.07303546369075775,
-0.03727252408862114,
0.0062540206126868725,
-0.045790933072566986,
0.000028957700124010444,
-0.04090273380279541,
-0.036302074790000916,
0.020091939717531204,
0.0012658551568165421,
-0.010621052235364914,
-0.01404458936303854,
-0.09704514592885971,
-0.025950592011213303,
0.022661838680505753,
-0.007058237679302692,
0.0042457254603505135,
0.01615622080862522,
-0.029652684926986694,
0.01440401654690504,
-0.007098672911524773,
0.04438916966319084,
-0.010243654251098633,
0.041837241500616074,
0.05366237461566925,
0.002112753689289093,
0.01851046457886696,
0.03376811742782593,
-0.01605737768113613,
-0.027460182085633278,
0.0067167822271585464,
0.04683326929807663,
0.032528094947338104,
-0.058227088302373886,
-0.052368439733982086,
0.06706897914409637,
-0.019984113052487373,
0.02758598141372204,
0.00773216225206852,
0.048917945474386215,
0.07264009118080139,
-0.024171430617570877,
-0.006222570780664682,
0.0034999153576791286,
-0.01890583336353302,
-0.017360299825668335,
-0.04090273380279541,
-0.006568518932908773,
-0.026939013972878456,
0.011070335283875465,
-0.058334916830062866,
0.027262497693300247,
0.0036279610358178616,
0.01101642195135355,
-0.022643867880105972,
-0.007296357303857803,
-0.01101642195135355,
-0.010432353243231773,
-0.03777572140097618,
-0.058011434972286224,
0.01583273708820343,
-0.008311737328767776,
0.0020139114931225777,
-0.03853051736950874,
-0.017090728506445885,
-0.02825092151761055,
0.02539348043501377,
-0.002940557897090912,
0.014502858743071556,
0.04625818878412247,
0.0508229024708271,
0.03881806135177612,
0.04359843209385872,
0.007916368544101715,
-0.09208506345748901,
0.039213430136442184,
-0.042699865996837616,
0.013253851793706417,
0.05111044645309448,
-0.03222258388996124,
0.020541222766041756,
0.016857102513313293,
-0.051937125623226166,
0.048235032707452774,
-0.006083293352276087,
-0.1126442551612854,
-0.013137037865817547,
0.007431142497807741,
0.016542604193091393,
0.021349932998418808,
0.015230696648359299,
-0.015518237836658955,
-0.04801937937736511,
-0.03788354992866516,
-0.06710492074489594,
0.008145502768456936,
-0.005723866634070873,
-0.005660966970026493,
-0.032707810401916504,
-0.04356249049305916,
-0.039141543209552765,
0.032599981874227524,
0.11587909609079361,
-0.01618317700922489,
0.016848117113113403,
0.021026449277997017,
0.017306385561823845,
-0.03795543685555458,
0.020020054653286934,
0.0017185078468173742,
0.017980309203267097,
-0.03817109391093254,
-0.004598412662744522,
-0.03759600967168808,
0.08324316889047623,
0.023865917697548866,
0.0447845384478569,
-0.010333511047065258,
-0.060743074864149094,
-0.025950592011213303,
0.033085208386182785,
-0.009174360893666744,
0.015500267036259174,
0.029293257743120193,
0.05714881047606468,
0.05315917730331421,
-0.0029832397121936083,
0.030155882239341736,
-0.01854640617966652,
0.01858234964311123,
-0.06555938720703125,
-0.05628618597984314,
-0.0561424158513546,
-0.017054786905646324,
0.00627199187874794,
0.002227321034297347,
0.029185429215431213,
0.0007295234245248139,
-0.008891312405467033,
-0.05664561316370964,
-0.05682532489299774,
0.023955775424838066,
-0.03191707283258438,
0.04061519354581833,
-0.0051532769575715065,
-0.01427821721881628,
-0.01107932161539793,
-0.03552930802106857,
0.006802146323025227,
0.004650080110877752,
0.04931331425905228,
0.06297151744365692,
-0.0016073102597147226,
0.063977912068367,
-0.0031696923542767763,
-0.008846384473145008,
0.014997069723904133,
-0.014583729207515717,
0.02210472896695137,
-0.027388297021389008,
-0.026094362139701843,
-0.020756879821419716,
0.0024261288344860077,
-0.017135657370090485,
-0.005261105019599199,
-0.051182329654693604,
0.054596882313489914,
0.012148614972829819,
0.03434320166707039,
0.039177484810352325,
-0.013208922930061817,
-0.03671541437506676,
0.021080363541841507,
-0.006905481219291687,
0.0446048267185688,
0.07350271195173264,
0.036517731845378876,
0.016866087913513184,
-0.02242821268737316,
0.014475901611149311,
0.08734063804149628,
0.00957871600985527,
-0.05977262184023857,
0.05024782195687294,
0.03835080564022064,
0.013199937529861927,
0.023021265864372253,
-0.004429931286722422,
0.02877208963036537,
0.08511219173669815,
-0.037308469414711,
-0.016551589593291283,
-0.030623136088252068,
0.0017465880373492837,
0.02206878550350666,
0.019570771604776382,
-0.04453293979167938,
0.03094661980867386,
-0.051541756838560104,
0.04072301834821701,
-0.005085884593427181,
-0.05265597999095917,
-0.005274583585560322,
-0.03443305566906929,
0.0319889560341835,
-0.010019012726843357,
-0.042484208941459656,
-0.05057130381464958,
0.045683104544878006,
0.02472854219377041,
-0.004524280782788992,
0.015140840783715248,
-0.07519201934337616,
0.05003216490149498,
-0.033264920115470886,
0.019624685868620872,
-0.03389391675591469,
0.028861945495009422,
-0.0025272173807024956,
0.013352693989872932,
-0.026022477075457573,
-0.04694109782576561,
0.0007828758098185062,
-0.045251794159412384,
0.027442211285233498,
-0.02785555273294449,
-0.03373217582702637,
0.024458972737193108,
0.026813214644789696,
-0.04039953649044037,
-0.00177916104439646,
-0.035601191222667694,
0.007736654952168465,
-0.02855643443763256,
-0.07113049924373627,
-0.0021520659793168306,
-0.023183008655905724,
0.009686543606221676,
-0.07368242740631104,
-0.0014972359640523791,
-0.045431505888700485,
-0.027028871700167656,
0.011834116652607918,
-0.01546432450413704,
0.022589953616261482,
-0.042807694524526596,
-0.1179637685418129,
-0.04111839085817337,
0.07885816693305969,
0.03459480032324791,
-0.017728710547089577,
0.017135657370090485,
0.02214067056775093,
0.02161950245499611,
-0.027675839141011238,
0.013163994997739792,
-0.013199937529861927,
0.0032146205194294453,
0.023254893720149994,
-0.00021565589122474194,
-0.017225513234734535,
0.045431505888700485,
0.012957324273884296,
-0.028879918158054352,
-0.019373087212443352,
-0.029059629887342453,
0.06696115434169769,
0.024027660489082336,
-0.0004473174922168255,
-0.08072718977928162,
-0.009035083465278149,
0.03087473474442959,
-0.033157091587781906,
0.036553673446178436,
-0.05125421658158302,
-0.022985322400927544,
0.005580096039921045,
-0.0162191204726696,
0.04500019550323486,
-0.048594459891319275,
-0.07062730193138123,
-0.051937125623226166,
-0.0013096602633595467,
0.0559627041220665,
-0.03849457576870918,
-0.051362045109272,
0.017027828842401505,
0.011357876472175121,
-0.06023987755179405,
0.009839300066232681,
-0.02176327258348465,
-0.04647384211421013,
-0.07303546369075775,
0.033318836241960526,
-0.000006598845629923744,
0.019480915740132332,
-0.023596348240971565,
0.021026449277997017,
0.04158564284443855,
0.02826889231801033,
0.02480042725801468,
-0.016884058713912964,
0.05995233729481697,
0.03860240429639816,
-0.03186315670609474,
-0.014395030215382576,
0.006806639023125172,
-0.014421987347304821,
-0.002540695946663618,
0.016928987577557564,
0.048342861235141754,
-0.03439711406826973,
-0.003962676972150803,
0.05409368500113487,
0.04176535829901695,
0.04913359880447388,
-0.001506221597082913
]
|
42,125 | werkzeug.exceptions | __init__ | null | def __init__(
self,
description: str | None = None,
response: Response | None = None,
) -> None:
super().__init__()
if description is not None:
self.description = description
self.response = response
| (self, description: 'str | None' = None, response: 'Response | None' = None) -> 'None' | [
-0.01168240699917078,
0.004445634316653013,
0.012270476669073105,
-0.05452375113964081,
0.009733876213431358,
-0.015324930660426617,
-0.0023720290046185255,
0.06252852827310562,
0.011647298000752926,
-0.01002352312207222,
0.02390899881720543,
0.08011796325445175,
-0.007451813202351332,
0.011778956279158592,
0.011629744432866573,
0.029947688803076744,
0.02424253150820732,
-0.006859354674816132,
0.001120185712352395,
-0.02754274569451809,
0.035477302968502045,
0.007170944008976221,
-0.03451181575655937,
0.08264578878879547,
-0.010199066251516342,
0.08180318027734756,
-0.0007542876410298049,
-0.034143172204494476,
0.013393954373896122,
0.013420285657048225,
0.021451391279697418,
-0.009733876213431358,
-0.023575466126203537,
0.07997752726078033,
-0.023645684123039246,
0.027261875569820404,
-0.059158094227313995,
0.03205420821905136,
-0.14141768217086792,
0.03077274188399315,
-0.019467752426862717,
0.023733455687761307,
-0.0481339730322361,
-0.0057973177172243595,
0.002795527223497629,
0.0040331073105335236,
-0.00425034249201417,
-0.016474738717079163,
-0.020942317321896553,
-0.03465224802494049,
0.011050451546907425,
0.05234701558947563,
-0.02771828882396221,
-0.020889652892947197,
-0.03812800720334053,
0.056244075298309326,
0.05108310282230377,
0.09774251282215118,
-0.015518028289079666,
0.049046799540519714,
-0.08706948161125183,
0.047712672501802444,
-0.01693115197122097,
0.0019397535361349583,
-0.005358459427952766,
0.014561316929757595,
-0.018256504088640213,
0.002114199800416827,
0.04567636922001839,
0.05038093030452728,
0.09879577159881592,
0.020327914506196976,
-0.057192008942365646,
0.03921637311577797,
0.07428992539644241,
-0.017185689881443977,
-0.03883017972111702,
-0.02620861493051052,
0.03554752096533775,
-0.026928342878818512,
0.004945932887494564,
0.022925956174731255,
-0.03883017972111702,
-0.02248709835112095,
0.005024927202612162,
-0.055120598524808884,
0.002173445653170347,
-0.05898255109786987,
-0.024839377030730247,
0.07379840314388275,
-0.0655127614736557,
0.009926973842084408,
-0.04557104408740997,
0.009216023609042168,
-0.0029886248521506786,
-0.015658462420105934,
-0.01250746101140976,
-0.08468209207057953,
-0.006819857284426689,
0.005165361799299717,
-0.009523224085569382,
0.027209213003516197,
-0.0026616754475980997,
0.00027579499874264,
0.026085736230015755,
-0.03960257023572922,
0.014982621185481548,
-0.031773339956998825,
0.04381560906767845,
-0.020538566634058952,
0.013437840156257153,
-0.006100129801779985,
-0.032949477434158325,
0.030211003497242928,
-0.028280027210712433,
0.028947090730071068,
-0.01369237806648016,
-0.03488045558333397,
0.00791261438280344,
-0.015149387530982494,
0.009005371481180191,
-0.01097145676612854,
-0.03344099968671799,
0.0013319348217919469,
0.044623106718063354,
0.00015346324653364718,
-0.03935680910944939,
-0.023821227252483368,
0.011103114113211632,
-0.032879263162612915,
0.02620861493051052,
0.00382903846912086,
0.013999578543007374,
0.025822419673204422,
-0.01731734722852707,
0.016580065712332726,
0.01125232595950365,
0.0386546365916729,
-0.002323754597455263,
0.009268686175346375,
-0.01657128892838955,
0.027525190263986588,
0.01941508986055851,
-0.026489485055208206,
-0.01887090504169464,
-0.038408875465393066,
-0.02138117514550686,
-0.049046799540519714,
0.007236772682517767,
0.0014383579837158322,
0.012446020729839802,
-0.05101288482546806,
0.02684057131409645,
0.005468173883855343,
-0.0036469122860580683,
-0.010945125482976437,
0.0032058595679700375,
-0.02573464810848236,
0.01997682824730873,
0.01988905668258667,
0.0386546365916729,
-0.07084927707910538,
0.05870168283581734,
-0.019853947684168816,
0.004524628631770611,
-0.004224010743200779,
0.02059122920036316,
-0.03361654281616211,
0.0394621342420578,
0.02555910497903824,
-0.017887862399220467,
-0.028122037649154663,
-0.050486255437135696,
-0.014324333518743515,
-0.004103324841707945,
0.07450057566165924,
0.04995962604880333,
-0.011664852499961853,
-0.032949477434158325,
-0.029315732419490814,
0.03605659678578377,
-0.02715655043721199,
-0.05908787623047829,
0.026454376056790352,
0.03963767737150192,
-0.017536776140332222,
0.02336481399834156,
0.029385950416326523,
-0.0029293789993971586,
0.056946247816085815,
0.023487694561481476,
-0.0002391777525190264,
-0.000736184767447412,
-0.0049239895306527615,
0.025155356153845787,
-0.02873643860220909,
0.052838534116744995,
-0.03375697880983353,
0.045430608093738556,
-0.009970859624445438,
0.00448074284940958,
0.05469929426908493,
0.029473721981048584,
0.013227188028395176,
0.024207422509789467,
0.06214233115315437,
0.014657866209745407,
0.004048467613756657,
-0.03732050582766533,
-0.047466911375522614,
-0.01097145676612854,
0.005218024831265211,
-0.0015875698300078511,
-0.014096127822995186,
-0.0009084366029128432,
-0.0008859451045282185,
-0.037671592086553574,
-0.0371098555624485,
0.008285644464194775,
-0.024663833901286125,
0.07000666856765747,
-0.02943861298263073,
0.004577291663736105,
-0.009417898021638393,
0.014508654363453388,
0.03774181008338928,
0.04434223845601082,
-0.05712179094552994,
-0.02445318177342415,
0.015728680416941643,
-0.07913492619991302,
-0.014552540145814419,
-0.0006259215879254043,
-0.0026090124156326056,
-0.028666222468018532,
-0.03668855130672455,
0.01948530785739422,
-0.009523224085569382,
-0.08018818497657776,
-0.07744970917701721,
0.05020538717508316,
-0.02203068509697914,
-0.014692975208163261,
0.03530175983905792,
-0.04206017777323723,
-0.00382903846912086,
-0.056946247816085815,
0.05375136062502861,
-0.02754274569451809,
-0.03474001958966255,
0.02139872871339321,
-0.05382157862186432,
-0.0031071165576577187,
-0.024172313511371613,
0.043991152197122574,
-0.03252817317843437,
0.001620484166778624,
-0.04911701753735542,
0.02912263385951519,
-0.016018327325582504,
-0.0011333514703437686,
-0.005411122459918261,
-0.05083734169602394,
0.06007092073559761,
0.009101920761168003,
-0.01468419749289751,
0.006635536905378103,
-0.024593617767095566,
-0.031773339956998825,
-0.007407927419990301,
0.12491662055253983,
0.011673630215227604,
0.02462872676551342,
-0.00886054802685976,
-0.007026121020317078,
0.00191451923456043,
0.012998981401324272,
-0.05034581944346428,
-0.06877786666154861,
-0.0019287820905447006,
0.054804619401693344,
-0.04869571328163147,
0.07906470447778702,
0.016518624499440193,
0.05392690375447273,
-0.04023452475667,
-0.0003124122158624232,
0.07225362211465836,
-0.05768353119492531,
-0.021346066147089005,
0.016518624499440193,
0.07113014906644821,
0.008110100403428078,
0.038865286856889725,
0.008742056787014008,
0.02438296563923359,
-0.024874486029148102,
0.05617385730147362,
-0.004008970223367214,
-0.04251658916473389,
-0.00448074284940958,
-0.03837376832962036,
0.04458799958229065,
-0.005165361799299717,
-0.04009409248828888,
-0.02747252769768238,
0.04651897773146629,
0.011708738282322884,
0.006429273635149002,
0.009812870994210243,
0.04504441097378731,
0.07751992344856262,
-0.03809289634227753,
0.0343538261950016,
-0.04848506301641464,
0.048274409025907516,
0.04441245645284653,
-0.01650107093155384,
-0.008698171004652977,
0.030913176015019417,
-0.007149001117795706,
-0.04694028198719025,
0.014473545365035534,
-0.004783554933965206,
0.0457816943526268,
0.007829231210052967,
-0.003633746411651373,
-0.009259909391403198,
0.02485693246126175,
0.00857967883348465,
0.0005197727587074041,
-0.0175631083548069,
-0.023856336250901222,
-0.06179124489426613,
-0.02067900076508522,
-0.016597619280219078,
-0.03038654662668705,
-0.007359653245657682,
0.013192079029977322,
-0.017010146751999855,
0.008175929076969624,
-0.03386230394244194,
-0.019292209297418594,
0.019292209297418594,
0.014227785170078278,
-0.0043512796983122826,
0.029947688803076744,
-0.07049819082021713,
0.03805778920650482,
-0.039813220500946045,
-0.03567039966583252,
-0.04385071620345116,
0.06733841449022293,
0.03275638073682785,
0.06779482215642929,
-0.042973000556230545,
-0.033739425241947174,
0.026401713490486145,
-0.014552540145814419,
-0.02510269358754158,
-0.016088543459773064,
-0.01760699413716793,
-0.01220025960355997,
0.015430256724357605,
-0.0418495237827301,
-0.013639714568853378,
0.018116069957613945,
0.024347856640815735,
-0.017843976616859436,
-0.016035880893468857,
-0.008448021486401558,
-0.052838534116744995,
-0.044166695326566696,
-0.016720499843358994,
0.02873643860220909,
-0.03795246407389641,
-0.02438296563923359,
0.0034977004397660494,
-0.0781518816947937,
0.01298142783343792,
0.012472352012991905,
0.002920601749792695,
-0.007583471015095711,
0.013850366696715355,
-0.03998876363039017,
-0.009005371481180191,
-0.014017133042216301,
0.03147491440176964,
0.009461783803999424,
0.016518624499440193,
0.004629954695701599,
-0.031369589269161224,
-0.04364006593823433,
0.020538566634058952,
-0.027261875569820404,
-0.034143172204494476,
0.006240564398467541,
0.008649896830320358,
-0.046554084867239,
-0.0010329626966267824,
0.031158937141299248,
-0.014491099864244461,
0.01120844017714262,
0.018730470910668373,
0.0311764907091856,
0.03135203570127487,
0.05104799196124077,
0.02620861493051052,
0.022048238664865494,
-0.0073991501703858376,
-0.0034955060109496117,
-0.09212512522935867,
-0.02185514196753502,
-0.06129972264170647,
-0.03228241577744484,
0.028666222468018532,
0.02375100925564766,
0.041638873517513275,
0.02203068509697914,
-0.017914194613695145,
0.030088122934103012,
0.02778850495815277,
0.027209213003516197,
0.046834953129291534,
0.014113681390881538,
0.03995365649461746,
0.04532528296113014,
-0.026945898309350014,
0.06965558230876923,
-0.062388092279434204,
-0.014280447736382484,
0.058455921709537506,
-0.07759014517068863,
-0.051504407078027725,
0.06565319746732712,
-0.002949127461761236,
-0.0068418001756072044,
-0.03440648689866066,
-0.05122353509068489,
0.0418144166469574,
-0.022627532482147217,
-0.02589263767004013,
0.035898607224226,
0.03598637878894806,
0.02966681867837906,
0.018590036779642105,
-0.024576062336564064,
0.0003968924575019628,
0.019994381815195084,
-0.06210722029209137,
0.021030088886618614,
0.014728083275258541,
0.04767756164073944,
-0.017010146751999855,
-0.04887125641107559,
-0.0796966627240181,
-0.05066179856657982,
0.01125232595950365,
-0.0126303406432271,
-0.011217216961085796,
-0.014227785170078278,
-0.007934557273983955,
-0.018256504088640213,
-0.032247304916381836,
-0.005437453743070364,
0.09612751752138138,
0.011138223111629486,
0.002429080428555608,
-0.06775971502065659,
0.024751605466008186,
-0.031773339956998825,
0.0007405733340419829,
0.02650703862309456,
0.03535442054271698,
-0.008601621724665165,
-0.027911385521292686,
0.014192676171660423,
-0.049608539789915085,
-0.028929537162184715,
0.016913598403334618,
0.012244145385921001,
0.05227679759263992,
0.03014078550040722,
0.004748446401208639,
0.020872099325060844,
-0.03400273993611336,
0.008404135704040527,
-0.007232384290546179,
0.015184495598077774,
0.017387565225362778,
-0.011006565764546394,
0.04381560906767845,
-0.038724854588508606,
-0.0568058155477047,
-0.02469894289970398,
0.03519643470644951,
-0.0015371011104434729,
0.007412316277623177,
0.0028130814898759127,
-0.019046448171138763,
-0.0029359618201851845,
-0.03875996172428131,
0.03045676276087761,
-0.03308991342782974,
0.035898607224226,
-0.05438331514596939,
-0.08334796130657196,
0.0351262167096138,
-0.013472949154675007,
0.017598217353224754,
-0.0177474282681942,
0.04381560906767845,
0.02115296758711338,
-0.00743864756077528,
0.009101920761168003,
0.0394621342420578,
-0.049362778663635254,
0.0256468765437603,
0.023066390305757523,
0.01416634488850832,
0.02589263767004013,
0.06888319551944733,
0.0678650438785553,
-0.031299371272325516,
0.01483340933918953,
-0.03365165367722511,
0.014069795608520508,
-0.02833268977701664,
0.0410420261323452,
0.005261910613626242,
-0.028525786474347115,
-0.04792332276701927,
-0.06677667051553726,
0.04616789147257805,
0.0089746518060565,
0.07850296795368195,
-0.07144612818956375,
0.0059991925954818726,
-0.03298458829522133,
0.010664256289601326,
0.03333567455410957,
0.03465224802494049,
-0.002709949854761362,
-0.022293999791145325,
-0.05729733407497406,
-0.04567636922001839,
-0.02517290972173214,
0.1025875061750412,
0.012525014579296112,
0.0012836604146286845,
-0.026647474616765976,
-0.06365200132131577,
-0.006473159417510033,
-0.028280027210712433,
-0.05452375113964081,
0.01918688416481018,
0.018888460472226143,
-0.011111890897154808,
0.06740862876176834,
0.034371379762887955,
0.012226590886712074,
0.017536776140332222,
-0.029543938115239143,
0.001152002951130271,
0.07232384383678436,
0.03459958732128143,
0.03795246407389641,
-0.014061018824577332,
-0.03163290396332741,
-0.01539514772593975,
-0.007298212964087725,
-0.01416634488850832,
-0.014745637774467468,
0.07393883913755417,
0.0009824939770624042,
0.031158937141299248,
0.0386546365916729,
0.04701049625873566,
0.013042868115007877,
-0.010172734968364239,
-0.01941508986055851,
-0.0008513850625604391,
-0.02067900076508522,
-0.06098374351859093,
-0.05564722791314125,
-0.0351262167096138,
-0.020538566634058952,
-0.01629919558763504,
0.022715304046869278,
-0.036828987300395966,
-0.00502931559458375,
-0.009137028828263283,
-0.022838184610009193,
0.0017806674586609006,
0.010199066251516342,
0.01713302731513977,
-0.017554331570863724,
-0.09732121229171753,
-0.005753431934863329,
0.016939928755164146,
-0.004360056947916746,
0.06059755012392998,
-0.028753994032740593,
0.031158937141299248,
0.03000035136938095,
0.003161973785609007,
-0.0718323215842247,
0.025120247155427933,
-0.04325387254357338,
-0.01727346144616604,
-0.009382789954543114,
0.007662465330213308,
-0.006833023391664028,
-0.02106519602239132,
-0.029491275548934937,
-0.03526664897799492,
0.003043482080101967,
0.05002984404563904,
-0.004963486921042204,
-0.04918723553419113,
0.015456588007509708,
0.0033199628815054893,
0.0018223589286208153,
0.08025839924812317,
-0.09640838205814362,
0.020240142941474915,
-0.0026748410891741514,
-0.07478144764900208,
-0.04792332276701927,
-0.012138819321990013,
0.0639679804444313,
-0.02571709454059601,
0.0017038672231137753,
-0.019081557169556618,
0.011032897047698498,
-0.008645507507026196,
0.01796685717999935,
-0.004875715356320143,
0.062072113156318665,
0.03045676276087761,
-0.006683811545372009,
0.005924586672335863,
-0.007842397317290306,
0.013815258629620075,
-0.07527296990156174,
0.027261875569820404,
-0.03739072382450104,
-0.03749604895710945,
0.018590036779642105,
-0.03928659111261368,
-0.028525786474347115,
0.08096057176589966,
0.017396342009305954,
0.01679949462413788,
0.037215180695056915,
0.0126303406432271,
-0.031457360833883286,
0.03893550485372543,
0.002534406492486596,
0.006363444961607456,
-0.01727346144616604,
-0.03851420059800148,
0.07506231963634491,
0.0005875215283595026,
0.014631534926593304,
0.04121756926178932,
0.007728294003754854,
-0.09247621148824692,
-0.04922234266996384,
0.025278236716985703,
0.0331425778567791,
0.026805462315678596,
0.04241126403212547,
0.035003334283828735,
0.015096724033355713,
-0.004761612042784691,
-0.054418426007032394,
-0.010488712228834629,
0.04093669727444649,
0.008957097306847572,
0.02029280550777912,
0.01259523257613182,
-0.019608186557888985,
-0.036267247051000595,
-0.02950882911682129,
0.024277638643980026,
-0.047782886773347855,
0.016158761456608772,
-0.011603412218391895,
-0.07211319357156754,
-0.006683811545372009,
-0.055857881903648376,
-0.04701049625873566,
0.027209213003516197,
0.009268686175346375,
-0.022293999791145325,
-0.04216550290584564,
-0.09956816583871841,
0.04946810379624367,
0.023013727739453316,
0.060176245868206024,
-0.003159779589623213,
-0.025295790284872055,
0.03498578071594238,
-0.03575817123055458,
0.03612681105732918,
-0.03802267834544182,
-0.02936839498579502,
0.03361654281616211,
-0.0288066565990448,
0.03416072577238083,
0.06902363151311874,
0.013920583762228489,
-0.08777165412902832,
0.0205210130661726,
0.01846715621650219,
0.050310712307691574,
0.019537970423698425,
-0.010251728817820549,
0.016035880893468857,
0.006363444961607456,
-0.006635536905378103,
0.007096338085830212,
0.03939191624522209,
0.04465821757912636,
-0.006223010364919901,
-0.0512937530875206,
-0.016580065712332726,
0.06372222304344177,
0.0001394746359437704,
0.004638731945306063,
0.01459642592817545,
-0.03654811531305313,
-0.05139908194541931,
-0.0030566477216780186,
-0.06330091506242752,
0.047712672501802444,
0.01731734722852707,
0.08875469863414764,
0.02194291353225708,
0.02699856087565422,
-0.028911981731653214,
0.06003580987453461,
-0.00031652653706260026,
-0.008575290441513062,
0.01397324725985527,
0.007508865091949701,
-0.021767370402812958,
0.02840290777385235,
0.009698768146336079,
-0.0045026857405900955,
-0.051960818469524384,
-0.013472949154675007,
0.07450057566165924,
0.008838605135679245,
-0.02761296182870865,
-0.013788926415145397,
0.0489414744079113,
0.021293403580784798,
0.030842959880828857,
-0.046378541737794876,
-0.0014690780080854893,
0.04279745742678642,
-0.03488045558333397,
0.013911806978285313,
0.05483973026275635,
0.024189867079257965,
0.016948705539107323
]
|
42,126 | werkzeug.exceptions | __repr__ | null | def __repr__(self) -> str:
code = self.code if self.code is not None else "???"
return f"<{type(self).__name__} '{code}: {self.name}'>"
| (self) -> str | [
0.04450792074203491,
-0.0503513365983963,
0.09587398171424866,
0.0007998610963113606,
0.014267378486692905,
-0.08810608834028244,
-0.008113423362374306,
-0.002104897517710924,
0.07438981533050537,
-0.05566989257931709,
-0.0018621509661898017,
0.020749369636178017,
0.002504008123651147,
0.03883945941925049,
0.005773433484137058,
0.022883789613842964,
-0.015964418649673462,
-0.058714065700769424,
-0.011188213713467121,
-0.0005647686193697155,
0.01187052857130766,
0.05014139413833618,
0.03604022040963173,
-0.0065301028080284595,
0.025578059256076813,
0.08019823580980301,
-0.022918781265616417,
-0.011721819639205933,
-0.026645269244909286,
-0.006901877000927925,
-0.021851571276783943,
-0.04807695373892784,
-0.006963110528886318,
-0.022603865712881088,
-0.007339258212596178,
0.059903744608163834,
-0.06319285184144974,
0.004152935463935137,
-0.03852454572916031,
-0.04034405201673508,
0.05682457983493805,
-0.016830433160066605,
-0.027625003829598427,
-0.0481819249689579,
-0.04895171523094177,
-0.03667004778981209,
0.040868908166885376,
-0.02456333488225937,
-0.013768763281404972,
-0.06431254744529724,
0.06109342351555824,
0.06872135400772095,
-0.0186674352735281,
0.02109927497804165,
-0.04685228690505028,
0.003442190820351243,
0.00509111862629652,
0.027747470885515213,
0.022446408867836,
0.038139648735523224,
-0.06238806992769241,
0.04720219224691391,
-0.0039757960475981236,
-0.012867758050560951,
-0.011284437961876392,
-0.023251190781593323,
-0.03499050438404083,
-0.0005953853251412511,
0.0017309365794062614,
0.007059334311634302,
0.056229740381240845,
0.010007284581661224,
-0.05608978122472763,
0.06070852652192116,
0.03051172010600567,
-0.05640469491481781,
-0.0319463312625885,
0.0129989730194211,
0.03360838070511818,
-0.032033808529376984,
0.03887445107102394,
-0.0009698930662125349,
-0.016095632687211037,
-0.022708836942911148,
0.0186674352735281,
-0.06476742774248123,
-0.015632007271051407,
-0.014897207729518414,
-0.05227581411600113,
0.034658096730709076,
0.0006522448966279626,
-0.006162702571600676,
-0.037824735045433044,
0.035865265876054764,
-0.027939917519688606,
-0.01726781390607357,
0.029654452577233315,
-0.05465516820549965,
0.05759437009692192,
0.016533013433218002,
0.05196090042591095,
0.02689020335674286,
-0.03855953738093376,
-0.016672976315021515,
-0.0338183231651783,
0.006455748341977596,
-0.014328612014651299,
0.023338666185736656,
-0.009141269139945507,
-0.026505308225750923,
-0.02636534534394741,
-0.005371042527258396,
0.011940510012209415,
-0.013663792051374912,
0.04058898612856865,
-0.020959312096238136,
-0.032033808529376984,
0.034045759588479996,
0.06301789730787277,
-0.015518289059400558,
-0.0009283418185077608,
-0.00889633595943451,
-0.059168942272663116,
-0.028499767184257507,
-0.026750240474939346,
0.04776204004883766,
0.0144773218780756,
-0.02456333488225937,
-0.01695290021598339,
-0.0833473801612854,
0.05402534082531929,
0.014442331157624722,
-0.04289836063981056,
0.010610871016979218,
0.03715991601347923,
0.018912367522716522,
-0.001400713692419231,
0.024125954136252403,
0.006210814695805311,
0.10805068165063858,
0.0003933698171749711,
0.0004125052655581385,
-0.0018883937736973166,
0.05259072780609131,
-0.0257005263119936,
0.0010048835538327694,
0.005038632545620203,
0.07424984872341156,
0.023898515850305557,
-0.04100887104868889,
0.027642499655485153,
0.020329482853412628,
0.006713803391903639,
0.027869937941432,
0.020854340866208076,
0.027992403134703636,
-0.001833721180446446,
-0.018947359174489975,
0.02290128543972969,
-0.00465373694896698,
-0.008944448083639145,
-0.06847641617059708,
0.053640443831682205,
-0.06564218550920486,
0.023758552968502045,
0.015527036972343922,
0.010348442010581493,
-0.029199576005339622,
0.027904927730560303,
0.024055972695350647,
-0.00038981609395705163,
-0.07872863858938217,
-0.06518731266260147,
0.041183825582265854,
0.006713803391903639,
0.052660711109638214,
-0.0011623408645391464,
0.06630700826644897,
-0.03371335193514824,
-0.050736233592033386,
0.038139648735523224,
-0.0267852321267128,
-0.05220583453774452,
0.01959468238055706,
0.07141561806201935,
-0.06109342351555824,
0.04678230360150337,
-0.004257907159626484,
0.07173053175210953,
-0.009394950233399868,
-0.00528794014826417,
0.00240997108630836,
-0.061758242547512054,
0.0008042348781600595,
-0.005104240030050278,
-0.06319285184144974,
0.023951001465320587,
-0.05804924666881561,
0.01861494779586792,
-0.021221742033958435,
0.006202067248523235,
0.0725703090429306,
0.008262133225798607,
0.04048401489853859,
0.000546726631000638,
0.016865422949194908,
0.02797490917146206,
-0.014853469096124172,
0.02403847686946392,
-0.027380069717764854,
0.011992995627224445,
-0.02073187381029129,
0.009053792804479599,
-0.0014772553695365787,
0.026137907058000565,
-0.033888302743434906,
-0.02501821145415306,
-0.014381097629666328,
-0.04363315925002098,
0.04450792074203491,
0.05220583453774452,
-0.03107156790792942,
0.0034356301184743643,
-0.032593656331300735,
-0.009569902904331684,
-0.011100737378001213,
-0.007330510765314102,
-0.028657224029302597,
0.01726781390607357,
0.006534476764500141,
-0.016506770625710487,
-0.0433182455599308,
-0.01522961724549532,
-0.006136459764093161,
0.006219562143087387,
0.04093889147043228,
-0.013278896920382977,
-0.04223353788256645,
-0.0778888612985611,
-0.01665548048913479,
-0.027782460674643517,
0.02223646640777588,
0.02605043165385723,
0.03446564823389053,
0.057524390518665314,
-0.0411488339304924,
0.021641626954078674,
0.06973607838153839,
-0.060463592410087585,
-0.003897067392244935,
0.0030026226304471493,
-0.021571645513176918,
-0.033293467015028,
-0.014844722114503384,
0.026032935827970505,
-0.05535497888922691,
-0.033888302743434906,
-0.006307038478553295,
0.05318556725978851,
0.06070852652192116,
-0.032488685101270676,
-0.02472079172730446,
-0.0018151324475184083,
0.025140678510069847,
0.049861468374729156,
-0.0171715896576643,
-0.06977106630802155,
0.025508077815175056,
0.01830003410577774,
-0.020644398406147957,
0.09643383324146271,
-0.009377455338835716,
-0.049511563032865524,
0.051366060972213745,
-0.038909442722797394,
-0.05031634494662285,
-0.0020021130330860615,
-0.02911210060119629,
-0.07106571644544601,
-0.07697910815477371,
0.014713507145643234,
-0.02988189086318016,
0.003785535227507353,
0.005099866073578596,
0.006569467484951019,
-0.0029741928447037935,
0.009788594208657742,
-0.02953198552131653,
0.04415801912546158,
0.024423372000455856,
0.05206587165594101,
0.04300333186984062,
-0.02879718504846096,
0.03483304753899574,
0.07536954432725906,
-0.046607352793216705,
0.05182093754410744,
0.0335209034383297,
0.0030157442670315504,
-0.01533458847552538,
-0.0033219109755009413,
-0.01290274877101183,
0.11105985939502716,
0.02636534534394741,
-0.030074339359998703,
-0.0164980236440897,
-0.04338822513818741,
0.02263885736465454,
-0.011284437961876392,
0.019472215324640274,
0.0023793543223291636,
0.03796469792723656,
0.012272919528186321,
0.059588830918073654,
0.036984965205192566,
0.04121881350874901,
0.014171154238283634,
-0.01494094543159008,
0.0322437509894371,
0.07001600414514542,
-0.007085577119141817,
-0.039364319294691086,
-0.03796469792723656,
0.025158172473311424,
-0.002104897517710924,
-0.06459247320890427,
-0.04944158345460892,
0.0005707826348952949,
0.05122609809041023,
0.007518584839999676,
-0.01220293901860714,
-0.048776764422655106,
0.027082649990916252,
-0.004881175234913826,
-0.012246676720678806,
-0.009526165202260017,
0.03660006821155548,
-0.016821686178445816,
-0.05507505312561989,
-0.0497564971446991,
0.06753167510032654,
0.011415651999413967,
-0.0023749805986881256,
0.01767895184457302,
0.011730566620826721,
0.045732591301202774,
-0.022936275228857994,
0.018212558701634407,
0.0535704642534256,
0.01458229310810566,
-0.05497008189558983,
-0.05535497888922691,
0.027537526562809944,
-0.01039217971265316,
-0.008345235139131546,
0.0032081918325275183,
0.023391151800751686,
0.04125380516052246,
-0.014958441257476807,
0.050631262362003326,
0.0682314857840538,
-0.022253960371017456,
-0.006324533838778734,
0.023566104471683502,
-0.04198860749602318,
-0.02109927497804165,
-0.002648343797773123,
0.014643526636064053,
0.06791657209396362,
0.015238365158438683,
-0.0525207482278347,
-0.00406983308494091,
-0.04265342652797699,
-0.06049858406186104,
-0.05668461695313454,
0.0254380963742733,
0.01033969409763813,
0.028044890612363815,
-0.023653581738471985,
-0.06347277760505676,
0.02388102002441883,
-0.012841515243053436,
-0.0007419080357067287,
0.03722989559173584,
-0.01990959793329239,
0.004977399483323097,
0.019717149436473846,
0.03345092386007309,
-0.01158185675740242,
0.004179178271442652,
-0.060148678719997406,
-0.010077265091240406,
0.022428913041949272,
-0.014442331157624722,
-0.03852454572916031,
-0.02440587803721428,
0.0016653293278068304,
-0.00915001705288887,
-0.07494965940713882,
0.024213429540395737,
0.021326713263988495,
-0.019822120666503906,
0.009884817525744438,
0.002917333273217082,
0.013348877429962158,
0.017591476440429688,
0.013016467913985252,
0.013961211778223515,
-0.014486068859696388,
-0.03112405352294445,
-0.03231373056769371,
-0.022708836942911148,
-0.07117068767547607,
-0.05420029163360596,
0.05657964572310448,
0.011039504781365395,
0.0004026641836389899,
0.008493945002555847,
0.003164453897625208,
-0.019297262653708458,
-0.039469290524721146,
0.027170127257704735,
0.0011820229701697826,
0.0643475353717804,
-0.04622245579957962,
0.05706951394677162,
0.022516390308737755,
0.03535790368914604,
0.02440587803721428,
0.04146374762058258,
0.005239828024059534,
-0.018265044316649437,
0.019209787249565125,
-0.004588129930198193,
0.0411488339304924,
-0.04793699085712433,
-0.02718762308359146,
-0.0454876571893692,
-0.02115176059305668,
0.03376583755016327,
0.014967188239097595,
0.001881833071820438,
0.025875478982925415,
0.0031797620467841625,
0.024335896596312523,
-0.010610871016979218,
-0.049966439604759216,
0.0035712183453142643,
0.03117653913795948,
-0.006210814695805311,
0.0400291383266449,
0.06732173264026642,
-0.021729104220867157,
0.020154530182480812,
0.024913240224123,
-0.05056127905845642,
-0.03376583755016327,
-0.03747482970356941,
-0.023461133241653442,
-0.009368707425892353,
-0.053115587681531906,
0.06179323047399521,
0.006718176882714033,
0.03315350413322449,
0.022446408867836,
0.021641626954078674,
0.02704766020178795,
0.0025914842262864113,
-0.08383724838495255,
-0.013838744722306728,
0.003892693668603897,
0.002479952061548829,
-0.00422510365024209,
-0.003396265907213092,
-0.002576175844296813,
0.05629972368478775,
-0.02368857152760029,
-0.03521794453263283,
-0.037614792585372925,
-0.03562033548951149,
-0.04282837733626366,
-0.02620788849890232,
-0.02781745232641697,
0.02176409400999546,
-0.02961946278810501,
0.00031218089861795306,
0.03553285822272301,
0.025140678510069847,
-0.0011524998117238283,
0.028167355805635452,
-0.008362730965018272,
0.05972879379987717,
-0.05846913531422615,
-0.01088204700499773,
0.0015034982934594154,
0.030056843534111977,
-0.024055972695350647,
-0.03226124495267868,
-0.05668461695313454,
-0.03450063616037369,
0.013366373255848885,
-0.02218398079276085,
0.00011658945732051507,
-0.03472807630896568,
0.03918936476111412,
-0.022708836942911148,
0.039574261754751205,
0.06707679480314255,
-0.011721819639205933,
-0.006792531814426184,
0.04044902324676514,
-0.058189209550619125,
0.06161827966570854,
-0.05259072780609131,
-0.01349758729338646,
-0.0015013113152235746,
0.015597017481923103,
-0.004463476128876209,
-0.02218398079276085,
0.041288796812295914,
0.024493353441357613,
-0.017932632938027382,
-0.0460125133395195,
0.016016904264688492,
-0.030284281820058823,
0.03429069370031357,
0.02367107756435871,
0.014547302387654781,
-0.027082649990916252,
0.07557949423789978,
-0.027537526562809944,
-0.0006932493997737765,
0.007610434666275978,
-0.012211686000227928,
-0.0351654589176178,
0.05238078534603119,
-0.07648924738168716,
0.061758242547512054,
0.0013307326007634401,
0.015002178959548473,
0.016454285010695457,
-0.01561451330780983,
-0.019892102107405663,
-0.04625744745135307,
-0.003081351285800338,
-0.05832917243242264,
-0.01181804295629263,
0.019052330404520035,
0.019052330404520035,
0.0006013992824591696,
0.0031928836833685637,
-0.016349313780665398,
0.021029293537139893,
-0.006639448460191488,
0.023198705166578293,
0.05899399146437645,
0.028867166489362717,
0.044892817735672,
0.032086294144392014,
0.024055972695350647,
-0.021344207227230072,
0.03768477216362953,
0.010567132383584976,
-0.06406761705875397,
0.008730131201446056,
0.04286336898803711,
0.0010026966920122504,
-0.016008155420422554,
0.002895464189350605,
-0.0101384986191988,
-0.0016565817641094327,
-0.011651838198304176,
0.08670647442340851,
0.03149145469069481,
-0.04657236114144325,
-0.0023531115148216486,
-0.010715842247009277,
0.04513775184750557,
-0.002589297480881214,
-0.007352380082011223,
-0.04972150921821594,
0.0032191264908760786,
-0.0001473428274039179,
-0.029951872304081917,
-0.029689444229006767,
-0.014704760164022446,
-0.07809880375862122,
-0.018912367522716522,
-0.011013261042535305,
-0.02290128543972969,
-0.03778974711894989,
-0.04461289569735527,
0.004209795035421848,
-0.02828982286155224,
0.09545409679412842,
-0.017871400341391563,
-0.0008375851903110743,
-0.03117653913795948,
-0.010619617998600006,
0.03185885399580002,
0.028062384575605392,
0.03173638880252838,
0.010462161153554916,
0.04160371050238609,
0.08173781633377075,
-0.02062690258026123,
0.012421629391610622,
0.03597024083137512,
-0.06312286853790283,
0.03757980093359947,
-0.0010688506299629807,
0.0595538392663002,
0.012027986347675323,
-0.022673847153782845,
-0.015518289059400558,
-0.05745441094040871,
0.006123338360339403,
-0.0021322339307516813,
-0.03841957449913025,
0.052240822464227676,
-0.007588565815240145,
0.03646010532975197,
-0.06571216881275177,
0.052450768649578094,
-0.008983812294900417,
0.005397285334765911,
0.006648195907473564,
0.0015986287035048008,
0.01290274877101183,
-0.030581701546907425,
0.049966439604759216,
0.0411488339304924,
-0.0056203496642410755,
-0.09797341376543045,
-0.07767891883850098,
-0.003286920487880707,
0.017512748017907143,
0.03757980093359947,
-0.027310088276863098,
0.016559256240725517,
-0.0016248716274276376,
-0.022201474756002426,
-0.07921850681304932,
-0.0028560999780893326,
-0.026802726089954376,
0.0086601497605443,
-0.03535790368914604,
-0.08740628510713577,
0.002847352297976613,
-0.0573844276368618,
-0.07015596330165863,
-0.007597313262522221,
0.009526165202260017,
0.018335023894906044,
0.025105686858296394,
0.02739756554365158,
-0.040658965706825256,
0.026400336995720863,
-0.039889175444841385,
-0.00889633595943451,
-0.042583443224430084,
-0.06917622685432434,
-0.009578650817275047,
-0.030161814764142036,
0.03255866467952728,
0.02451084926724434,
-0.018859881907701492,
-0.02813236601650715,
0.016725461930036545,
-0.07222039997577667,
-0.03500800207257271,
0.04664234444499016,
-0.025665534660220146,
-0.05430526286363602,
-0.06854639947414398,
-0.01279777754098177,
-0.005309808999300003,
0.023198705166578293,
0.03726488724350929,
-0.02932204306125641,
0.03607521206140518,
0.008367104455828667,
-0.0676366463303566,
-0.03521794453263283,
0.030686672776937485,
0.04349319636821747,
-0.016270585358142853,
0.0033787705469876528,
0.02001456916332245,
-0.07410988956689835,
-0.04576757922768593,
-0.052975624799728394,
-0.013847492635250092,
-0.0042732153087854385,
0.043248265981674194,
-0.0050692493095994,
0.02533312514424324,
-0.0655372142791748,
-0.011844285763800144,
-0.00963988434523344,
0.033888302743434906,
0.03597024083137512,
0.0160868838429451,
-0.015185879543423653,
0.043563179671764374,
0.0019747766200453043,
0.054935093969106674,
-0.0015297411009669304,
0.022358933463692665,
0.011161970905959606,
-0.015701988711953163,
0.08733630180358887,
-0.01527335587888956,
-0.0177314393222332,
-0.049406591802835464,
-0.03432568535208702,
-0.005611602216959,
0.06028864160180092,
-0.024265915155410767,
0.004679980222135782,
0.0035427885595709085,
0.03639012575149536,
0.05951884761452675,
-0.011520624160766602,
0.03764978423714638,
0.07921850681304932,
-0.04363315925002098,
-0.10056271404027939,
-0.0319463312625885,
0.016716713085770607,
0.011721819639205933,
0.04776204004883766,
-0.02641783095896244,
-0.012684058398008347,
0.023461133241653442,
-0.03551536425948143,
0.012045481242239475,
0.017381533980369568,
0.007190548814833164,
0.022481398656964302,
0.018422501161694527,
0.04730716347694397,
0.00904504582285881,
0.014407340437173843,
0.05552992969751358,
0.04244348406791687,
0.03324098140001297,
0.024685801938176155,
-0.02393350563943386,
0.04720219224691391,
0.035392895340919495,
0.029636958613991737,
-0.016725461930036545,
0.035707809031009674,
0.03625016286969185,
-0.018789900466799736,
0.015448307618498802,
0.05878404900431633,
0.0202769972383976,
0.003553723217919469,
-0.03670503944158554,
0.04079892858862877,
0.04937160387635231,
-0.006070852745324373,
-0.014818479306995869,
0.02718762308359146,
-0.030371759086847305,
-0.005541621241718531
]
|
42,127 | werkzeug.exceptions | __str__ | null | def __str__(self) -> str:
code = self.code if self.code is not None else "???"
return f"{code} {self.name}: {self.description}"
| (self) -> str | [
0.02066691406071186,
-0.03772587701678276,
0.0786043331027031,
-0.01164703257381916,
0.011139116249978542,
-0.10361479967832565,
-0.0005027161096222699,
-0.011077816598117352,
0.10025204718112946,
-0.07503140717744827,
-0.032243888825178146,
0.005814759060740471,
-0.008739653043448925,
0.006388353183865547,
0.04441635310649872,
0.010219614021480083,
-0.016892574727535248,
-0.0713183656334877,
0.010517357848584652,
-0.0007843137718737125,
0.02776021882891655,
0.0318760871887207,
0.029213909059762955,
0.012706649489700794,
0.009291354566812515,
0.09780003875494003,
-0.011576974764466286,
-0.03730553016066551,
-0.036710046231746674,
-0.0030212225392460823,
0.021980488672852516,
-0.03940725326538086,
-0.00859953835606575,
0.0066116610541939735,
-0.03261169046163559,
0.05394414812326431,
-0.05940861999988556,
-0.00738667044788599,
-0.05702667310833931,
-0.024887869134545326,
0.027567561715841293,
0.008520723320543766,
-0.0279003344476223,
-0.04340051859617233,
-0.05040625482797623,
-0.04816441982984543,
0.006331431679427624,
0.007863936014473438,
0.0027300468645989895,
-0.029914483428001404,
0.05646621435880661,
0.0552402101457119,
-0.03161337226629257,
-0.008284280076622963,
-0.04255983233451843,
-0.01673494651913643,
0.019878769293427467,
0.011594489216804504,
0.028478307649493217,
0.037095360457897186,
-0.04676327109336853,
0.02234829030930996,
-0.012408905662596226,
-0.006366460584104061,
-0.020754486322402954,
-0.01982622593641281,
-0.004133382812142372,
0.010753801092505455,
0.047253672033548355,
0.03052748367190361,
0.08455920219421387,
-0.026569245383143425,
-0.038776736706495285,
0.05366392061114311,
0.051702313125133514,
-0.04886499419808388,
-0.06746521592140198,
-0.005512636620551348,
0.033504921942949295,
-0.034748438745737076,
0.05089665576815605,
-0.0088797677308321,
-0.013739995658397675,
-0.030142169445753098,
0.004641298670321703,
-0.07629244029521942,
-0.003308019833639264,
-0.01970362663269043,
-0.03229643404483795,
0.03842644765973091,
0.003356184344738722,
-0.006322674453258514,
-0.03497612476348877,
0.04525703936815262,
-0.023136435076594353,
-0.013529823161661625,
0.040843427181243896,
-0.0654335543513298,
0.041859257966279984,
0.039757538586854935,
0.033802665770053864,
0.03276931867003441,
-0.017847105860710144,
-0.004205629695206881,
-0.035028669983148575,
-0.023486722260713577,
-0.021034715697169304,
0.022313261404633522,
0.005814759060740471,
-0.012382633984088898,
-0.030159683898091316,
-0.04658813029527664,
0.018932994455099106,
-0.026691844686865807,
0.0377609059214592,
-0.02690201811492443,
-0.03368006646633148,
0.033242207020521164,
0.039197079837322235,
-0.027392419055104256,
0.002793536288663745,
-0.021420029923319817,
-0.0685160756111145,
-0.04038805514574051,
0.015141141600906849,
0.055275239050388336,
0.0019583215471357107,
-0.03138568624854088,
0.01972114108502865,
-0.08350834250450134,
0.04452143609523773,
0.007890207692980766,
-0.015640299767255783,
-0.004076461307704449,
0.05257803201675415,
0.002074353862553835,
-0.002898622304201126,
0.030422398820519447,
0.018495136871933937,
0.1116013377904892,
-0.009571583941578865,
0.019633568823337555,
-0.007929614745080471,
0.03201620280742645,
-0.00582351628690958,
0.011410588398575783,
-0.0014394593890756369,
0.04368074983358383,
0.009869327768683434,
-0.041158683598041534,
0.05065145343542099,
0.017426762729883194,
-0.02718224748969078,
0.033802665770053864,
0.025903699919581413,
0.011130359023809433,
-0.005004721228033304,
-0.032524120062589645,
0.021279916167259216,
0.020772000774741173,
0.020211542025208473,
-0.08827224373817444,
0.06781550496816635,
-0.0394422821700573,
0.022435862571001053,
0.032786834985017776,
-0.004034864716231823,
-0.005083535332232714,
0.04466155171394348,
0.01649850234389305,
-0.01089391577988863,
-0.04567738249897957,
-0.05538032576441765,
0.05051134154200554,
0.01968611218035221,
0.07180877029895782,
0.008069729432463646,
0.0312630869448185,
-0.019335824996232986,
-0.05702667310833931,
0.011217931285500526,
-0.003448134521022439,
-0.04161405935883522,
0.05068648234009743,
0.08645075559616089,
-0.052367858588695526,
0.037936046719551086,
-0.0010262305149808526,
0.06750024110078812,
0.0015806686133146286,
0.0009036301635205746,
0.003277369774878025,
-0.06399738043546677,
0.0018641819478943944,
-0.007885828614234924,
-0.06557366997003555,
0.04760396108031273,
-0.08189702779054642,
0.04063325375318527,
-0.02707716077566147,
0.014519383199512959,
0.06757029891014099,
0.00583227351307869,
0.050581395626068115,
0.0007744619506411254,
0.03501115366816521,
0.04066828265786171,
0.005503879394382238,
0.0009610991110093892,
-0.00849007349461317,
0.019633568823337555,
-0.010797587223351002,
-0.005039749667048454,
-0.0017689478117972612,
0.041403885930776596,
-0.04382086545228958,
-0.0016912278952077031,
0.0009983170311897993,
-0.03564167022705078,
0.05562552437186241,
0.05324357748031616,
-0.04206943139433861,
0.023661864921450615,
-0.02649918757379055,
0.015981830656528473,
0.006186938378959894,
0.019773682579398155,
-0.03481849655508995,
0.02068442851305008,
0.018827909603714943,
-0.03996771201491356,
-0.04606270045042038,
-0.04897007718682289,
0.011638275347650051,
-0.0013584555126726627,
0.029476623982191086,
-0.019388368353247643,
-0.06399738043546677,
-0.10732784122228622,
-0.0572018139064312,
-0.024239838123321533,
0.0038378285244107246,
0.018932994455099106,
0.0527181476354599,
0.036990273743867874,
-0.04802430421113968,
0.010727529413998127,
0.041158683598041534,
-0.044626522809267044,
-0.015272499062120914,
0.020439228042960167,
-0.010920187458395958,
-0.019598539918661118,
0.01569284312427044,
0.005521393846720457,
-0.06532846391201019,
-0.02818056382238865,
0.006099367048591375,
0.036850158125162125,
0.017032690346240997,
-0.07839415967464447,
-0.025168098509311676,
-0.018792880699038506,
0.024887869134545326,
0.032121289521455765,
-0.029196394607424736,
-0.03940725326538086,
0.02136748842895031,
0.025150584056973457,
-0.025027982890605927,
0.08743155747652054,
-0.006116881035268307,
-0.05436449497938156,
0.04714858904480934,
-0.023241521790623665,
-0.039197079837322235,
-0.0007509270799346268,
-0.02870599366724491,
-0.09492769092321396,
-0.06343691796064377,
0.00710644107311964,
-0.020842058584094048,
0.002526442753151059,
0.0006485776975750923,
0.03339983522891998,
-0.020701942965388298,
0.028373220935463905,
-0.023889552801847458,
0.03783096373081207,
0.03194614499807358,
0.03727050498127937,
0.05163225904107094,
-0.021314945071935654,
0.03369757905602455,
0.06665955483913422,
-0.02497544139623642,
0.06179057061672211,
0.046833328902721405,
0.0010158313671126962,
-0.04298017546534538,
-0.027812762185931206,
0.019948827102780342,
0.09485763311386108,
-0.019633568823337555,
-0.028968708589673042,
-0.03024725429713726,
-0.056956615298986435,
-0.02177031710743904,
-0.006585389841347933,
0.015473914332687855,
-0.0051623499020934105,
0.029599225148558617,
0.01771574839949608,
0.0685160756111145,
0.015981830656528473,
0.06049450859427452,
-0.007202770095318556,
0.009063667617738247,
0.023241521790623665,
0.0690765306353569,
0.001629927777685225,
-0.059058334678411484,
-0.05191248655319214,
0.012111161835491657,
-0.008954203687608242,
-0.0721590593457222,
-0.048094362020492554,
0.012627835385501385,
0.04546721279621124,
0.007452349178493023,
-0.016647374257445335,
-0.04189428687095642,
0.028408249840140343,
-0.029721824452280998,
-0.033084578812122345,
-0.02996702492237091,
0.024887869134545326,
-0.03632472828030586,
-0.031035400927066803,
-0.018652765080332756,
0.07086299359798431,
-0.012662863358855247,
-0.005897952243685722,
0.03485352545976639,
0.030317312106490135,
0.03702530264854431,
-0.020018884912133217,
0.002303134882822633,
0.036850158125162125,
0.002732236171141267,
-0.02108725905418396,
-0.0654335543513298,
0.032524120062589645,
-0.010832616128027439,
0.028478307649493217,
0.0036232778802514076,
0.020491771399974823,
0.03695524483919144,
0.0008751694113016129,
0.019896283745765686,
0.04150897264480591,
-0.058637991547584534,
0.009343896992504597,
0.03621964156627655,
-0.024029666557908058,
0.004917149432003498,
0.0016135080950334668,
0.011708332225680351,
0.06553863734006882,
-0.016192002221941948,
-0.03065008483827114,
-0.007548678200691938,
-0.023661864921450615,
-0.04396097734570503,
-0.038356393575668335,
0.02818056382238865,
0.024099724367260933,
0.02539578452706337,
-0.0338376946747303,
-0.037235476076602936,
0.01617448776960373,
-0.016752460971474648,
-0.007636249531060457,
0.051001742482185364,
-0.026674330234527588,
0.014204124920070171,
0.016340874135494232,
0.02205054648220539,
-0.02345169335603714,
-0.0008384987595491111,
-0.04273497685790062,
-0.01145437452942133,
0.007202770095318556,
-0.012732921168208122,
-0.0286009069532156,
-0.022646034136414528,
-0.017146533355116844,
-0.001155946054495871,
-0.06623921543359756,
0.03094782866537571,
0.010193342342972755,
-0.06007416546344757,
0.009939384646713734,
0.010403514839708805,
0.0021816291846334934,
0.03730553016066551,
0.009536555036902428,
0.01458068285137415,
-0.010736286640167236,
0.0009288070141337812,
-0.044486407190561295,
-0.041123658418655396,
-0.037515703588724136,
-0.04217451810836792,
0.04284005984663963,
0.036009471863508224,
-0.0003710849559865892,
0.008012807928025723,
-0.0035926278214901686,
-0.012995636090636253,
-0.03220885992050171,
0.024922898039221764,
-0.002118139760568738,
0.08483943343162537,
-0.021420029923319817,
0.04192931577563286,
0.04977573826909065,
0.031035400927066803,
0.0651533231139183,
0.006909404881298542,
0.015193684957921505,
-0.028653450310230255,
-0.004715734627097845,
-0.00885787419974804,
0.03611455857753754,
-0.025483356788754463,
-0.00784642156213522,
-0.025430813431739807,
-0.02662178874015808,
0.009300111792981625,
0.014186610467731953,
-0.03038736991584301,
0.0178996492177248,
0.020439228042960167,
0.015097356401383877,
-0.02886362187564373,
-0.039757538586854935,
-0.002916136756539345,
0.02206806093454361,
0.00922129675745964,
0.014764583669602871,
0.07965519279241562,
-0.058077532798051834,
0.009396440349519253,
0.056956615298986435,
-0.04707853123545647,
-0.01986125484108925,
-0.02747999131679535,
-0.013792538084089756,
-0.01579792983829975,
-0.04119371250271797,
0.08105634152889252,
-0.012435177341103554,
0.05394414812326431,
0.054049234837293625,
0.04319034889340401,
0.0023666243068873882,
0.00971169862896204,
-0.08427897840738297,
-0.0041311937384307384,
-0.009746726602315903,
-0.003809367772191763,
-0.0013562662061303854,
0.0010158313671126962,
0.0010152840986847878,
0.04480166733264923,
-0.024765267968177795,
-0.043365489691495895,
-0.027865305542945862,
-0.011410588398575783,
-0.028916165232658386,
-0.02066691406071186,
-0.018284965306520462,
0.03695524483919144,
-0.017129018902778625,
0.0036232778802514076,
0.03681512922048569,
0.009413954801857471,
-0.02287372015416622,
0.035606641322374344,
0.014712040312588215,
0.013739995658397675,
-0.03734055906534195,
-0.03536143898963928,
-0.023416664451360703,
0.02774270623922348,
-0.025763586163520813,
-0.03311960771679878,
-0.07170368731021881,
0.0025089283008128405,
0.02164771780371666,
-0.019738655537366867,
-0.0018182068597525358,
-0.032804347574710846,
0.05590575560927391,
-0.04143891483545303,
0.0054163080640137196,
0.05828770250082016,
-0.02262851968407631,
0.0002443796838633716,
0.022558461874723434,
-0.05415432155132294,
0.06133519858121872,
-0.06536349654197693,
-0.0059942808002233505,
0.022961292415857315,
-0.0025943107903003693,
-0.0015697221970185637,
-0.0019791198428720236,
0.0701974481344223,
-0.009028639644384384,
-0.021560145542025566,
-0.027234788984060287,
0.006484682206064463,
-0.01172584667801857,
0.025010468438267708,
0.012899307534098625,
-0.00461940560489893,
-0.03758576139807701,
0.07986536622047424,
-0.028233107179403305,
0.016848789528012276,
0.00025436835130676627,
0.02942408062517643,
-0.012338848784565926,
0.053488776087760925,
-0.07377037405967712,
0.032786834985017776,
0.012750435620546341,
0.009081182070076466,
0.008976096287369728,
-0.006559118162840605,
-0.021279916167259216,
-0.05548541247844696,
0.014116553589701653,
-0.05594078451395035,
-0.024362439289689064,
0.03532641381025314,
0.021174829453229904,
0.011112845502793789,
-0.011016516014933586,
0.0011296746088191867,
0.02248840592801571,
-0.017952192574739456,
0.012365119531750679,
0.04007279500365257,
0.015517700463533401,
0.037130389362573624,
0.0563611276447773,
0.01599934510886669,
-0.033347293734550476,
0.022400833666324615,
-0.0066116610541939735,
-0.034205496311187744,
0.022015517577528954,
0.03289191797375679,
-0.004435505252331495,
-0.02443249709904194,
0.01617448776960373,
-0.01968611218035221,
-0.008783438242971897,
-0.04382086545228958,
0.047814130783081055,
0.058743078261613846,
-0.07769358903169632,
-0.005788487382233143,
0.0136699378490448,
0.03646484389901161,
-0.0178996492177248,
0.02290874905884266,
-0.05937359482049942,
0.02287372015416622,
0.014125310815870762,
-0.02345169335603714,
-0.030877770856022835,
-0.010666229762136936,
-0.06186062842607498,
-0.02968679741024971,
-0.0032948842272162437,
-0.03304954990744591,
-0.0366399884223938,
-0.03024725429713726,
-0.0031876089051365852,
-0.03283937647938728,
0.08476937562227249,
-0.00829741545021534,
-0.00558707257732749,
-0.0507565401494503,
0.0029686796478927135,
0.030702628195285797,
0.006861240603029728,
0.029371539130806923,
-0.007526785135269165,
0.044871725142002106,
0.08434903621673584,
0.015867987647652626,
0.005398793611675501,
0.02762010507285595,
-0.07026750594377518,
0.03457329422235489,
-0.014965998940169811,
0.057517074048519135,
-0.016025615856051445,
-0.010753801092505455,
-0.018512651324272156,
-0.04564235359430313,
0.04413612186908722,
-0.01645471714437008,
-0.02080702967941761,
0.017374219372868538,
-0.000789786980021745,
0.047533903270959854,
-0.06970705091953278,
0.05702667310833931,
-0.03639478608965874,
0.01956351101398468,
-0.008687109686434269,
-0.004365447908639908,
-0.014633226208388805,
-0.06287646293640137,
0.02954668179154396,
0.04315531998872757,
-0.004231900908052921,
-0.07180877029895782,
-0.0659940093755722,
-0.013766266405582428,
0.02593872882425785,
0.03565918281674385,
-0.030422398820519447,
0.005122942849993706,
-0.012470206245779991,
0.003196365898475051,
-0.061125025153160095,
0.014633226208388805,
-0.048794936388731,
0.03730553016066551,
-0.07671278715133667,
-0.07706306874752045,
-0.009107453748583794,
-0.06525840610265732,
-0.08343828469514847,
-0.005889195017516613,
-0.006134395487606525,
0.0402829684317112,
0.0493553951382637,
0.01166454702615738,
-0.0324365459382534,
0.017146533355116844,
-0.014563169330358505,
-0.022383319213986397,
-0.01645471714437008,
-0.0752415806055069,
0.007789500057697296,
-0.03513375297188759,
0.02192794717848301,
0.007281584665179253,
-0.004514319822192192,
-0.05685152858495712,
0.028758537024259567,
-0.05881313607096672,
-0.0142303965985775,
0.04010782390832901,
-0.0015467345947399735,
-0.03695524483919144,
-0.03501115366816521,
0.006497818045318127,
0.011629518121480942,
0.031000372022390366,
0.046833328902721405,
-0.05436449497938156,
0.05975890904664993,
-0.010359728708863258,
-0.024082209914922714,
-0.02469521202147007,
0.0267794169485569,
0.06736013293266296,
-0.03902193531394005,
-0.009956899099051952,
0.0388818234205246,
-0.0665544718503952,
-0.04010782390832901,
-0.06613412499427795,
-0.030877770856022835,
-0.009545312263071537,
0.05359386280179024,
0.009168754331767559,
0.0028876757714897394,
-0.04255983233451843,
-0.03565918281674385,
-0.01698014698922634,
0.0243974681943655,
0.04662315919995308,
-0.0025746070314198732,
-0.02762010507285595,
0.018985537812113762,
-0.02485284022986889,
0.03149077296257019,
-0.015981830656528473,
0.018232421949505806,
-0.012881793081760406,
0.014352996833622456,
0.0566413551568985,
-0.0482344776391983,
-0.009098696522414684,
-0.02583364211022854,
-0.05513512343168259,
-0.0015248417621478438,
0.04035302624106407,
0.00970294140279293,
0.010596171952784061,
0.01282924972474575,
0.02262851968407631,
0.014799612574279308,
-0.013337165117263794,
0.05310346186161041,
0.063191719353199,
-0.04284005984663963,
-0.09387683123350143,
-0.027164733037352562,
0.009606611914932728,
0.016586074605584145,
0.04760396108031273,
-0.009098696522414684,
0.006300781853497028,
0.02579861506819725,
-0.025063011795282364,
0.029651768505573273,
0.02262851968407631,
0.03289191797375679,
0.0162182729691267,
0.026008786633610725,
0.0541192926466465,
0.0279003344476223,
0.017374219372868538,
0.04574744030833244,
0.0535588338971138,
0.06242108717560768,
-0.000281323998933658,
-0.03149077296257019,
0.03590438514947891,
0.03105291537940502,
0.01743551902472973,
-0.002690639579668641,
0.04203440248966217,
-0.005950495135039091,
-0.03744564577937126,
-0.002942408202216029,
0.07510146498680115,
0.026604274287819862,
0.0380411334335804,
-0.02611387148499489,
0.029861940070986748,
0.058077532798051834,
-0.005481986794620752,
-0.003693335223942995,
0.03194614499807358,
-0.0366399884223938,
0.0029971404001116753
]
|
42,128 | werkzeug.exceptions | get_body | Get the HTML body. | def get_body(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> str:
"""Get the HTML body."""
return (
"<!doctype html>\n"
"<html lang=en>\n"
f"<title>{self.code} {escape(self.name)}</title>\n"
f"<h1>{escape(self.name)}</h1>\n"
f"{self.get_description(environ)}\n"
)
| (self, environ: 'WSGIEnvironment | None' = None, scope: 'dict[str, t.Any] | None' = None) -> 'str' | [
-0.0036716891918331385,
-0.03685614839196205,
-0.019885608926415443,
-0.05559058114886284,
0.023023488000035286,
-0.01774108223617077,
-0.03288273885846138,
-0.01696125417947769,
-0.018558045849204063,
0.00415676087141037,
0.04808938130736351,
-0.028519418090581894,
-0.044524453580379486,
0.03965981304645538,
-0.036874715238809586,
-0.030023371800780296,
-0.00028982441290281713,
-0.06286897510290146,
0.041070930659770966,
-0.05295402184128761,
-0.032957009971141815,
-0.009552890434861183,
0.029373513534665108,
-0.021890880540013313,
-0.014788877218961716,
-0.0257900208234787,
-0.015020969323813915,
-0.02137099578976631,
0.01462177187204361,
0.00692561361938715,
0.024843085557222366,
-0.09855537861585617,
0.0167198795825243,
0.01940285786986351,
0.03319838270545006,
0.018548762425780296,
-0.04296479746699333,
-0.02751678228378296,
-0.03498084843158722,
-0.042519181966781616,
-0.030468987300992012,
0.008870541118085384,
0.027164002880454063,
-0.029169274494051933,
-0.02701546438038349,
-0.05956399068236351,
0.07590324431657791,
-0.013916213065385818,
0.021389562636613846,
0.00803501158952713,
0.023209162056446075,
0.09224248677492142,
0.00034552637953311205,
-0.05247127264738083,
-0.034219589084386826,
-0.008814839646220207,
-0.021575236693024635,
-0.01600503735244274,
0.025177298113703728,
0.03648480027914047,
-0.04875780642032623,
0.005324181634932756,
0.027813859283924103,
-0.032344285398721695,
-0.01261650025844574,
0.03683758154511452,
-0.00885197427123785,
0.018994377925992012,
0.01380480919033289,
-0.036317694932222366,
0.008870541118085384,
0.004312261939048767,
-0.028575118631124496,
0.04649259150028229,
-0.021463831886649132,
-0.031453054398298264,
-0.07133568078279495,
-0.024880221113562584,
0.007802919950336218,
-0.006150427740067244,
0.032678499817848206,
0.011418906971812248,
0.034256722778081894,
-0.03698612004518509,
0.09209395200014114,
-0.03538933023810387,
-0.031026005744934082,
-0.0036554429680109024,
0.0392884686589241,
-0.03457236662507057,
0.012365841306746006,
0.03800732269883156,
-0.05332536995410919,
0.020535465329885483,
0.04552708938717842,
-0.003286417108029127,
-0.01850234344601631,
0.008935526944696903,
0.027683887630701065,
0.03553786873817444,
0.007134496234357357,
0.11281508952379227,
-0.055070698261260986,
0.011613864451646805,
0.0011865684064105153,
0.07304387539625168,
0.015141656622290611,
-0.032957009971141815,
-0.0024137527216225863,
-0.007552260998636484,
-0.0016014321008697152,
-0.044338781386613846,
0.0026760161854326725,
-0.05106015503406525,
-0.006266473326832056,
0.027999531477689743,
-0.024174662306904793,
0.05521923676133156,
0.005936903413385153,
-0.04147941246628761,
-0.005231345072388649,
-0.011446758173406124,
-0.03254852816462517,
-0.023172026500105858,
0.010360569693148136,
0.045118607580661774,
-0.01982990652322769,
-0.049649037420749664,
0.03862004354596138,
-0.049834709614515305,
0.02298635244369507,
0.004720743279904127,
0.04723528400063515,
0.004989969544112682,
0.03438669443130493,
-0.012755755335092545,
-0.046901073306798935,
0.013999765738844872,
0.03375540301203728,
0.08370152115821838,
0.007329453248530626,
-0.020034147426486015,
0.008123205974698067,
-0.03228858485817909,
-0.04990898072719574,
-0.01466818992048502,
0.009571458213031292,
-0.016153575852513313,
0.02042406238615513,
0.0035742109175771475,
0.07998805493116379,
0.00676314951851964,
-0.012560797855257988,
0.04329901188611984,
0.01462177187204361,
0.03291987255215645,
0.01537374872714281,
0.0014726212248206139,
0.004080170765519142,
0.026179933920502663,
-0.002861689543351531,
-0.006350026465952396,
-0.023339131847023964,
-0.008708077482879162,
0.03667047619819641,
0.011391056701540947,
0.007663664873689413,
-0.015197359025478363,
0.04322474077343941,
0.012068763375282288,
-0.03199150785803795,
-0.0014424494002014399,
-0.061643533408641815,
-0.010184179991483688,
0.0651341900229454,
0.05822714418172836,
0.0008465541759505868,
0.056184738874435425,
-0.07170702517032623,
-0.029317812994122505,
-0.006048307288438082,
-0.06810496002435684,
-0.07252398878335953,
0.03797018900513649,
0.033792540431022644,
0.012096614576876163,
-0.004572204779833555,
-0.04667826369404793,
0.021389562636613846,
-0.01175311952829361,
-0.054550811648368835,
-0.04043964296579361,
-0.023023488000035286,
-0.005147791933268309,
-0.009339366108179092,
-0.023357700556516647,
0.012727904133498669,
-0.0362805612385273,
0.022930651903152466,
-0.006178278475999832,
-0.00042414740892127156,
0.05770725756883621,
-0.008842690847814083,
0.04329901188611984,
0.013368477113544941,
0.051839981228113174,
-0.008842690847814083,
-0.01401833351701498,
-0.024805951863527298,
-0.015494436025619507,
-0.04994611442089081,
-0.05870989337563515,
-0.05770725756883621,
-0.01992274448275566,
0.051839981228113174,
-0.01152102742344141,
-0.05391952395439148,
0.0017696985742077231,
-0.008489911444485188,
-0.006619252730160952,
0.041256606578826904,
-0.08682083338499069,
0.05068880692124367,
-0.037951622158288956,
-0.006976673845201731,
-0.03414531797170639,
0.04935196042060852,
-0.020925380289554596,
-0.028760792687535286,
0.017100509256124496,
-0.007004525046795607,
0.008267102763056755,
0.049277689307928085,
0.017750365659594536,
-0.006220055278390646,
-0.011066128499805927,
-0.00006955495337024331,
-0.012356556951999664,
-0.03483230993151665,
-0.001552692847326398,
-0.012068763375282288,
0.008615240454673767,
0.03563070297241211,
0.0764973983168602,
0.002388222608715296,
-0.021426698192954063,
0.04608410969376564,
0.05213705822825432,
0.011539595201611519,
0.00281062931753695,
-0.06751080602407455,
-0.019792772829532623,
-0.04734668880701065,
-0.001493509509600699,
0.03700468689203262,
0.0478665754199028,
0.06654530763626099,
-0.0033630074467509985,
0.014826011843979359,
-0.006405728403478861,
0.057075969874858856,
-0.017908189445734024,
-0.04990898072719574,
0.03951127454638481,
0.012857874855399132,
-0.005050313659012318,
-0.012105898931622505,
0.010536959394812584,
-0.03899139165878296,
-0.01175311952829361,
0.12091044336557388,
0.07827986031770706,
0.037153225392103195,
-0.048200786113739014,
-0.02430463396012783,
-0.06847631186246872,
0.05191425234079361,
0.028110936284065247,
-0.05495929345488548,
-0.03600205108523369,
0.01616285927593708,
-0.03278990462422371,
0.045415688306093216,
0.022169390693306923,
0.004713780712336302,
-0.014761026948690414,
-0.004776445217430592,
-0.0040732077322900295,
0.03787735104560852,
-0.03800732269883156,
0.00028880900936201215,
0.05603620037436485,
-0.027535349130630493,
-0.020962513983249664,
0.04240778088569641,
-0.03509225323796272,
0.006698163691908121,
0.0029591680504381657,
0.0391770638525486,
-0.023803316056728363,
-0.017898906022310257,
0.003411746583878994,
0.07709155231714249,
-0.04935196042060852,
-0.04586130380630493,
-0.012300855480134487,
0.02504732646048069,
-0.0010310669895261526,
-0.0005346810794435441,
-0.019347157329320908,
0.019532829523086548,
0.00020525601576082408,
0.01742543838918209,
0.04259345307946205,
-0.0048507144674658775,
0.023914719000458717,
0.027349675074219704,
0.026477010920643806,
0.011706700548529625,
0.049797575920820236,
-0.007751859724521637,
-0.03321695327758789,
0.07998805493116379,
0.002854726742953062,
0.02779529057443142,
-0.011780969798564911,
0.026755521073937416,
-0.002590142423287034,
0.04222210496664047,
0.039399873465299606,
0.022225093096494675,
0.011084695346653461,
0.03485087677836418,
0.003933952655643225,
0.012959995307028294,
-0.008197476156055927,
0.022912083193659782,
-0.028018100187182426,
-0.04883207380771637,
-0.10613085329532623,
0.02961488999426365,
-0.030468987300992012,
0.022930651903152466,
0.019997013732790947,
-0.016459936276078224,
-0.01563369110226631,
-0.020795408636331558,
-0.012263720855116844,
0.04277912527322769,
-0.041405145078897476,
-0.044153109192848206,
0.008828764781355858,
0.0744178518652916,
0.020256955176591873,
-0.032771334052085876,
-0.020349793136119843,
-0.01931002177298069,
0.03958554565906525,
-0.05960112437605858,
0.045415688306093216,
-0.0005300391931086779,
0.0592297799885273,
-0.017833920195698738,
0.03022761084139347,
-0.01699838973581791,
-0.00037888955557718873,
0.029373513534665108,
0.09335652738809586,
0.03334692120552063,
0.046344053000211716,
0.01175311952829361,
-0.01537374872714281,
-0.0209810808300972,
0.00503638805821538,
-0.019755637273192406,
-0.008475985378026962,
-0.0008285670774057508,
-0.06940467655658722,
-0.003822548780590296,
-0.011465325951576233,
-0.016209278255701065,
0.03563070297241211,
-0.0016234808135777712,
-0.03310554847121239,
-0.04378176108002663,
-0.019198618829250336,
0.018084578216075897,
0.009627159684896469,
-0.044004570692777634,
0.00919082760810852,
0.058561354875564575,
-0.07233831286430359,
-0.01044412236660719,
0.04831219092011452,
-0.0878605991601944,
-0.03954841196537018,
-0.042333509773015976,
0.00984068401157856,
0.002715471899136901,
0.0035393971484154463,
0.02948491834104061,
0.009218678809702396,
0.00996137224137783,
-0.026235636323690414,
0.01696125417947769,
-0.055070698261260986,
0.04768089950084686,
0.015280911698937416,
0.03693041577935219,
0.003154125064611435,
-0.029744861647486687,
-0.0029266751371324062,
-0.07560615986585617,
0.003578852629289031,
0.008257819339632988,
-0.0001296086556976661,
0.0602695494890213,
-0.07516054809093475,
0.01597718708217144,
-0.0006788679747842252,
-0.02341340109705925,
-0.0008355298195965588,
0.02514016255736351,
0.0201084166765213,
-0.02911357209086418,
-0.014965266920626163,
-0.027293972671031952,
0.021203890442848206,
0.07820559293031693,
0.01594933494925499,
0.04901774972677231,
-0.015540854074060917,
-0.09803549945354462,
-0.01607002317905426,
0.04322474077343941,
0.006828135345131159,
-0.04229637607932091,
-0.0019008303061127663,
0.05213705822825432,
0.037617407739162445,
0.015132373198866844,
0.021556667983531952,
-0.0022861023899167776,
0.09276237338781357,
-0.007399080786854029,
0.006387161090970039,
-0.031230246648192406,
-0.004240313544869423,
-0.0631660521030426,
-0.021352428942918777,
0.04430164769291878,
0.022819247096776962,
-0.01973707042634487,
-0.025622913613915443,
-0.03895425796508789,
-0.04749522730708122,
0.05094875022768974,
-0.02350623905658722,
-0.0705929845571518,
-0.020275523886084557,
0.02597569301724434,
0.029447782784700394,
0.03485087677836418,
0.027182569727301598,
0.026514146476984024,
-0.07946816831827164,
-0.022076554596424103,
-0.030190477147698402,
-0.039065659046173096,
-0.022466467693448067,
0.02668125182390213,
0.01093615684658289,
-0.016729163005948067,
0.0033560446463525295,
0.02369191125035286,
0.046715401113033295,
-0.024750249460339546,
-0.036874715238809586,
-0.0401054322719574,
-0.03210291266441345,
-0.05325109884142876,
0.020776841789484024,
0.0036113455425947905,
0.007872547022998333,
-0.032994143664836884,
-0.033142682164907455,
0.058598488569259644,
0.01681271567940712,
0.02985626459121704,
-0.01884583942592144,
-0.0391770638525486,
0.041405145078897476,
-0.01641351915895939,
-0.024843085557222366,
-0.0024207155220210552,
0.025103028863668442,
-0.003982692025601864,
0.039399873465299606,
-0.038137294352054596,
-0.039622679352760315,
0.0036832939367741346,
-0.03763597458600998,
0.060937974601984024,
0.05228559672832489,
0.028370877727866173,
-0.05332536995410919,
-0.003694898448884487,
0.009473979473114014,
0.01840950734913349,
0.02164950594305992,
0.03698612004518509,
0.012802173383533955,
0.006526416167616844,
-0.07274679839611053,
-0.014798161573708057,
-0.014788877218961716,
-0.030580390244722366,
0.04623264819383621,
0.01891082525253296,
0.036874715238809586,
0.027405377477407455,
0.03954841196537018,
0.003432634985074401,
-0.002715471899136901,
0.024694547057151794,
-0.021946582943201065,
0.03693041577935219,
0.031415920704603195,
-0.021705208346247673,
0.015030252747237682,
-0.01613500900566578,
0.007306243758648634,
0.03466520458459854,
-0.02625420317053795,
-0.015717243775725365,
0.0004139934026170522,
-0.06416869163513184,
-0.019792772829532623,
-0.016459936276078224,
0.0021921051666140556,
0.012217302806675434,
-0.03381110727787018,
-0.023190593346953392,
-0.028166638687253,
-0.05778152868151665,
-0.035704974085092545,
0.043818894773721695,
-0.010453405790030956,
0.020461196079850197,
0.00762653024867177,
-0.02794383093714714,
-0.056556083261966705,
-0.0032028642017394304,
-0.008364581502974033,
-0.029559187591075897,
-0.013637702912092209,
-0.025864290073513985,
0.05681602656841278,
0.04095952585339546,
0.003374611958861351,
0.034869443625211716,
-0.017137644812464714,
-0.03280847147107124,
0.0746406614780426,
-0.007380513474345207,
0.08370152115821838,
0.01982990652322769,
-0.015150940045714378,
-0.043447550386190414,
-0.007970025762915611,
-0.008434209041297436,
0.05094875022768974,
0.04756949841976166,
0.005208135582506657,
0.05677889287471771,
0.03111884370446205,
0.006368593778461218,
0.046344053000211716,
0.04192502796649933,
0.011975927278399467,
0.000834369333460927,
-0.03045041859149933,
-0.011530310846865177,
-0.05009465292096138,
-0.05956399068236351,
-0.01375839114189148,
-0.054922159761190414,
-0.020869677886366844,
0.016636326909065247,
0.03460950031876564,
-0.015448017977178097,
-0.05391952395439148,
0.023023488000035286,
-0.07077866047620773,
0.08734071254730225,
0.01646922156214714,
-0.025455808266997337,
-0.07998805493116379,
-0.10657646507024765,
0.003374611958861351,
0.035055115818977356,
0.03602061793208122,
-0.0022942256182432175,
0.05648181587457657,
0.011205382645130157,
-0.029540620744228363,
0.011836672201752663,
0.0011581371072679758,
-0.028909331187605858,
0.007700799498707056,
-0.024731682613492012,
-0.022225093096494675,
0.004070886876434088,
0.03032044880092144,
-0.05443940684199333,
0.03121167980134487,
-0.037710245698690414,
0.03657763823866844,
-0.03210291266441345,
-0.039622679352760315,
0.03392250835895538,
-0.021352428942918777,
-0.02103678323328495,
-0.002546044997870922,
0.028296608477830887,
-0.001507434993982315,
0.06071516498923302,
-0.017137644812464714,
-0.04025397077202797,
0.018493060022592545,
0.038137294352054596,
0.03899139165878296,
0.00943684484809637,
-0.055070698261260986,
0.06461430341005325,
0.06580261141061783,
0.02397042140364647,
0.021853746846318245,
-0.047829438000917435,
0.018149564042687416,
0.008039653301239014,
-0.004296015948057175,
-0.021482398733496666,
-0.01594933494925499,
-0.02593855932354927,
0.02220652624964714,
0.002627277048304677,
0.007440857123583555,
-0.014501083642244339,
-0.0957331508398056,
-0.019941311329603195,
-0.03310554847121239,
0.06806782633066177,
0.018093861639499664,
-0.015587273053824902,
0.10724489390850067,
0.005895127076655626,
0.001866016536951065,
-0.030301880091428757,
-0.0181124284863472,
0.015048820525407791,
-0.02233649604022503,
0.010258449241518974,
-0.04738382250070572,
0.019235752522945404,
-0.002963809994980693,
-0.02723827213048935,
0.005857992451637983,
0.06531986594200134,
-0.030803197994828224,
0.04396743327379227,
0.07560615986585617,
0.03973408415913582,
-0.047829438000917435,
-0.05469935014843941,
0.04173935577273369,
0.008341372944414616,
-0.03303127735853195,
0.032715633511543274,
0.018901539966464043,
0.023246295750141144,
0.03674474358558655,
-0.020702572539448738,
-0.03219574689865112,
0.05484788864850998,
0.018595179542899132,
-0.020813975483179092,
0.028333744034171104,
-0.006076158490031958,
-0.057855796068906784,
-0.06684238463640213,
-0.0785769373178482,
-0.0009800068801268935,
0.022559303790330887,
0.08986587077379227,
-0.02621706761419773,
0.017871053889393806,
-0.07159562408924103,
-0.013461313210427761,
0.007700799498707056,
-0.003917706198990345,
-0.006001889239996672,
0.040885258466005325,
-0.03241855651140213,
0.03839723765850067,
0.02593855932354927,
0.03414531797170639,
0.01497455034404993,
-0.06773361563682556,
-0.012226586230099201,
-0.011251801624894142,
0.018251683562994003,
0.04912915080785751,
0.034219589084386826,
0.022782113403081894,
-0.021259590983390808,
-0.020721139386296272,
0.05057740584015846,
0.007816845551133156,
-0.03384824097156525,
-0.048163652420043945,
0.021556667983531952,
-0.0037668468430638313,
-0.044375915080308914,
0.05206279084086418,
0.04857213422656059,
-0.060343820601701736,
-0.04500720649957657,
0.004795012529939413,
0.008030369877815247,
-0.015800796449184418,
-0.0009243048261851072,
-0.0024903430603444576,
-0.04407883808016777,
0.03291987255215645,
-0.056556083261966705,
-0.05826427787542343,
-0.011771686375141144,
-0.0716327577829361,
-0.0698874294757843,
0.03958554565906525,
0.023097757250070572,
-0.007970025762915611,
-0.038360100239515305,
0.050391729921102524,
-0.015568705275654793,
-0.002078380435705185,
-0.06814209371805191,
0.002736360067501664,
0.02766532078385353,
0.02341340109705925,
-0.01028630044311285,
-0.002583179622888565,
0.008856615982949734,
0.04266772046685219,
0.008011802099645138,
-0.006099367514252663,
0.011790254153311253,
-0.014853863045573235,
0.04077385365962982,
0.05191425234079361,
0.003943236544728279,
0.0402168333530426,
0.043447550386190414,
0.031415920704603195,
0.02495449036359787,
0.005774439312517643,
-0.006489281542599201
]
|
42,129 | werkzeug.exceptions | get_description | Get the description. | def get_description(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> str:
"""Get the description."""
if self.description is None:
description = ""
else:
description = self.description
description = escape(description).replace("\n", Markup("<br>"))
return f"<p>{description}</p>"
| (self, environ: 'WSGIEnvironment | None' = None, scope: 'dict[str, t.Any] | None' = None) -> 'str' | [
0.0267815962433815,
-0.048104289919137955,
-0.002946983091533184,
-0.034768447279930115,
0.06645939499139786,
-0.044623780995607376,
0.042279016226530075,
-0.05077878385782242,
0.029767505824565887,
-0.01927102543413639,
-0.01492954883724451,
0.0061412653885781765,
-0.06455427408218384,
0.002942403545603156,
-0.033486153930425644,
0.01708196848630905,
0.016651485115289688,
-0.09445000439882278,
-0.014031943865120411,
-0.02963927574455738,
-0.019344300031661987,
-0.013143498450517654,
-0.003100400324910879,
-0.07265103608369827,
-0.04477033019065857,
-0.0009061915916390717,
0.021560832858085632,
-0.035153135657310486,
-0.002825623145326972,
-0.004233855288475752,
0.015561535954475403,
-0.0727609395980835,
-0.02846689522266388,
0.026909824460744858,
0.004549848847091198,
0.06895070523023605,
-0.042498838156461716,
-0.0013086253311485052,
-0.04172946512699127,
-0.035501185804605484,
-0.023777367547154427,
0.035446230322122574,
0.02520620822906494,
-0.007286169566214085,
-0.011861206032335758,
-0.029547683894634247,
0.061989687383174896,
-0.030884932726621628,
-0.008664634078741074,
-0.000543256988748908,
0.04876375570893288,
0.08521749824285507,
-0.021304374560713768,
-0.04572289064526558,
-0.04616253077983856,
-0.031123071908950806,
0.03394411504268646,
0.04253547638654709,
0.023044629022479057,
0.0359591469168663,
-0.05312354862689972,
-0.00415829150006175,
0.003173673991113901,
-0.021084552630782127,
-0.0392015166580677,
0.0393480621278286,
0.003462189808487892,
-0.01961907558143139,
0.06876751780509949,
-0.019344300031661987,
0.045356519520282745,
-0.021194463595747948,
-0.055395036935806274,
0.04993613436818123,
-0.005509278271347284,
-0.06554346531629562,
-0.048324111849069595,
-0.03394411504268646,
0.044294048100709915,
-0.05261063203215599,
-0.0023539226967841387,
-0.004130813758820295,
0.036783479154109955,
-0.05217098817229271,
0.09247161448001862,
-0.04594270884990692,
-0.0366552472114563,
-0.033614382147789,
0.031617671251297,
0.0393480621278286,
-0.015460784547030926,
0.0205716360360384,
-0.021615788340568542,
0.03048192523419857,
0.030078919604420662,
-0.020644910633563995,
-0.042388927191495895,
-0.030060600489377975,
0.031068116426467896,
0.024803202599287033,
0.025059660896658897,
0.08023487776517868,
-0.01894129253923893,
0.008101341314613819,
0.0026172506622970104,
-0.009424850344657898,
0.0058893864043056965,
0.0025462666526436806,
0.030133875086903572,
-0.023337723687291145,
-0.024620017036795616,
-0.025462666526436806,
0.007460195105522871,
-0.07078254967927933,
0.02370409294962883,
0.049789588898420334,
-0.01078957598656416,
0.024565061554312706,
0.02996900863945484,
-0.036398790776729584,
-0.01871231198310852,
-0.02509629726409912,
-0.057849712669849396,
-0.04891030117869377,
-0.007034290581941605,
0.05290372669696808,
-0.04696854576468468,
-0.03473180904984474,
0.010020200163125992,
-0.06807141751050949,
-0.001091666053980589,
-0.0025164992548525333,
0.03938470035791397,
0.015891268849372864,
0.0691705271601677,
-0.021139508113265038,
0.004194928333163261,
0.04209583252668381,
0.004128524102270603,
0.10382906347513199,
-0.012859562411904335,
-0.008811181411147118,
-0.014041103422641754,
0.006576329004019499,
-0.03211227059364319,
-0.05041241645812988,
-0.0024592538829892874,
-0.012108505703508854,
0.03176421672105789,
0.014590657316148281,
0.058692362159490585,
0.00009595727169653401,
-0.018849700689315796,
0.020241903141140938,
0.03289996460080147,
0.03366933763027191,
0.010175907053053379,
0.0014242606703191996,
-0.009507283568382263,
0.02016863040626049,
0.0015330265741795301,
-0.00680988933891058,
-0.022330209612846375,
0.030829977244138718,
0.029053086414933205,
0.04000752791762352,
0.026598410680890083,
-0.045026786625385284,
0.054662298411130905,
0.023447634652256966,
-0.030335377901792526,
-0.036105696111917496,
-0.008380698040127754,
-0.0003102690097875893,
0.06499391049146652,
0.11650543659925461,
0.006837367080152035,
0.07279758155345917,
-0.020663227885961533,
-0.031526077538728714,
-0.03412729874253273,
-0.027477698400616646,
-0.06990326195955276,
0.039311427623033524,
0.03909160569310188,
0.008893614634871483,
0.04004416614770889,
-0.03344951570034027,
0.022733215242624283,
0.006342768669128418,
-0.012319168075919151,
0.004753641784191132,
-0.014077740721404552,
0.027019735425710678,
-0.01994880847632885,
-0.028265392407774925,
0.05587131902575493,
-0.04806765168905258,
0.011412403546273708,
0.0030660531483590603,
-0.004904768895357847,
0.06067075580358505,
-0.015066937543451786,
0.01515852939337492,
0.04499014839529991,
0.07759701460599899,
-0.020644910633563995,
0.02141428552567959,
-0.07444623857736588,
-0.01560733187943697,
-0.04506342485547066,
-0.01254814863204956,
-0.01591874659061432,
-0.0392015166580677,
0.041216544806957245,
0.011265856213867664,
-0.07265103608369827,
0.026690004393458366,
-0.034255530685186386,
-0.004224696196615696,
0.01888633705675602,
-0.11335466057062149,
0.06067075580358505,
-0.02914467826485634,
0.01481963787227869,
-0.012135983444750309,
0.08675625175237656,
0.0006560300244018435,
0.0062145390547811985,
0.05125506594777107,
-0.03121466375887394,
0.0030683428049087524,
-0.0033133523538708687,
0.04605261981487274,
0.062539242208004,
-0.021945521235466003,
-0.06689903140068054,
0.009168392047286034,
-0.013967829756438732,
-0.017833026126027107,
-0.023722412064671516,
-0.004442228004336357,
0.01983889751136303,
0.06499391049146652,
-0.0341639369726181,
-0.05968156084418297,
0.00003867629129672423,
0.03507985919713974,
0.022000476717948914,
-0.022037113085389137,
-0.015589013695716858,
0.0053764693439006805,
-0.05865572392940521,
-0.01507609710097313,
0.02544434741139412,
0.002564585069194436,
0.035318002104759216,
-0.030500244349241257,
0.018181076273322105,
-0.033266332000494,
0.012245893478393555,
-0.01148567721247673,
-0.07679100334644318,
0.06327197700738907,
0.027074690908193588,
0.0028782887384295464,
0.009690468199551105,
-0.03960452228784561,
-0.029785824939608574,
-0.04766464605927467,
0.09686804562807083,
0.0733104944229126,
-0.015781357884407043,
-0.08543732017278671,
-0.02297135442495346,
-0.01154063269495964,
0.03042696975171566,
-0.0011386070400476456,
-0.019362617284059525,
-0.010533117689192295,
0.016486618667840958,
-0.029492728412151337,
0.011128467507660389,
0.028265392407774925,
0.030133875086903572,
-0.009040162898600101,
-0.009424850344657898,
0.009864493273198605,
0.015414988622069359,
0.016779713332653046,
0.0069335391744971275,
0.062539242208004,
0.009864493273198605,
0.01498450431972742,
0.06290560960769653,
0.01601949706673622,
0.03445703163743019,
0.03769940137863159,
-0.008344060741364956,
-0.03322969749569893,
-0.04839738458395004,
0.020663227885961533,
0.08111416548490524,
-0.01815359853208065,
-0.07664445787668228,
-0.016660643741488457,
0.03178253769874573,
-0.015176848508417606,
0.014215128496289253,
-0.015039459802210331,
-0.0050238389521837234,
0.00815171655267477,
0.034603580832481384,
0.12654395401477814,
-0.028118843212723732,
0.022092068567872047,
-0.02863176167011261,
0.03352279216051102,
0.013967829756438732,
0.021395966410636902,
0.015882108360528946,
-0.020828094333410263,
0.06719212979078293,
-0.006008456461131573,
0.02101127989590168,
-0.008165455423295498,
-0.010917805135250092,
0.009919448755681515,
0.09423018246889114,
0.029327861964702606,
-0.0088523980230093,
-0.019307661801576614,
0.016770554706454277,
0.006246596574783325,
-0.00557339284569025,
-0.007803665939718485,
0.020370133221149445,
-0.010029359720647335,
-0.030500244349241257,
-0.07470270246267319,
0.04649226367473602,
-0.04488024115562439,
-0.03557445853948593,
0.017274312674999237,
0.004790278617292643,
0.002566874958574772,
0.01938093639910221,
-0.042718660086393356,
0.047371551394462585,
-0.01702701300382614,
-0.018236031755805016,
-0.01165054365992546,
0.04869047924876213,
0.02342931739985943,
-0.028558487072587013,
-0.008188353851437569,
-0.002145550213754177,
0.03557445853948593,
-0.04891030117869377,
0.018016209825873375,
-0.04542979225516319,
0.03209394961595535,
-0.00018833672220353037,
0.0363071970641613,
-0.033302970230579376,
0.0042384350672364235,
0.017338426783680916,
0.07935559004545212,
0.04389104247093201,
0.02612213045358658,
0.004494893364608288,
0.0065030548721551895,
0.017686478793621063,
-0.01585463061928749,
-0.03132457658648491,
-0.04616253077983856,
-0.004909348674118519,
-0.03518977016210556,
-0.008966888301074505,
0.04066699370741844,
-0.034383758902549744,
0.054662298411130905,
-0.004091887269169092,
-0.011952798813581467,
-0.07177174836397171,
0.01434335857629776,
-0.012694695964455605,
0.01045068446546793,
-0.03170926123857498,
0.016898784786462784,
0.001984118716791272,
-0.060377661138772964,
-0.016340071335434914,
0.038798507302999496,
-0.08235982060432434,
-0.06440772116184235,
-0.02330108731985092,
-0.014453268609941006,
-0.014663930982351303,
0.01624847762286663,
0.014883752912282944,
-0.0196740310639143,
-0.01642250455915928,
-0.039531245827674866,
0.00435521500185132,
-0.014957026578485966,
0.026525137946009636,
0.07023299485445023,
0.022275254130363464,
0.015726402401924133,
-0.009800379164516926,
-0.06836450845003128,
-0.0398976169526577,
-0.02044340781867504,
0.011998594738543034,
-0.021267738193273544,
0.00037724588764831424,
-0.033541109412908554,
-0.011220060288906097,
0.017063649371266365,
0.004794858396053314,
-0.030390333384275436,
0.026360271498560905,
0.04315830394625664,
-0.048543933779001236,
0.01945420913398266,
-0.007835723459720612,
0.03401739150285721,
0.0976007804274559,
-0.047591373324394226,
-0.00012901637819595635,
0.02626867964863777,
-0.042169105261564255,
-0.062282782047986984,
0.051914531737565994,
-0.04209583252668381,
0.02683655172586441,
-0.013436594046652317,
0.016953740268945694,
0.018813064321875572,
0.021359330043196678,
0.012960313819348812,
0.02520620822906494,
0.07103900611400604,
-0.017448337748646736,
0.037351351231336594,
-0.02005871944129467,
-0.023007992655038834,
0.023942233994603157,
-0.035263046622276306,
0.0005750280688516796,
0.04183937609195709,
0.0013532766606658697,
-0.03183749318122864,
-0.017970414832234383,
-0.06583656370639801,
0.03777267411351204,
-0.032350409775972366,
-0.05854581296443939,
0.018730631098151207,
-0.013189295306801796,
0.0666792094707489,
0.010377410799264908,
-0.01526844035834074,
0.012035231105983257,
-0.055724769830703735,
0.018693992868065834,
-0.02242180146276951,
-0.06275906413793564,
0.017054490745067596,
0.03758949041366577,
0.018730631098151207,
-0.0013670154148712754,
0.008609678596258163,
0.014004466123878956,
0.0007722377777099609,
0.0021638686303049326,
-0.001055029104463756,
0.012511511333286762,
0.00955307949334383,
-0.028943175449967384,
-0.01299695111811161,
-0.024949749931693077,
0.006008456461131573,
-0.019655713811516762,
0.008811181411147118,
0.029272906482219696,
0.031855810433626175,
0.032533593475818634,
-0.0031187187414616346,
-0.025865672156214714,
0.016651485115289688,
0.012062708847224712,
-0.03905496746301651,
-0.002247446682304144,
0.009974404238164425,
0.015360033139586449,
0.01555237639695406,
-0.004433068446815014,
-0.020773138850927353,
-0.04242556542158127,
-0.027422742918133736,
0.07177174836397171,
0.010359091684222221,
0.024894794449210167,
-0.044697053730487823,
-0.020370133221149445,
0.044074226170778275,
0.03368765860795975,
-0.0011735266307368875,
0.031617671251297,
-0.01854744553565979,
0.06521373242139816,
-0.05433256924152374,
-0.033193059265613556,
-0.026983099058270454,
-0.002754639135673642,
0.047261640429496765,
0.035391274839639664,
0.014911230653524399,
0.015314237214624882,
0.030005645006895065,
-0.0017402542289346457,
-0.023044629022479057,
0.02425364777445793,
-0.026909824460744858,
0.009406532160937786,
0.017521612346172333,
-0.05103524401783943,
0.03048192523419857,
-0.007226634304970503,
-0.01630343310534954,
0.02599390223622322,
-0.01574472151696682,
0.007725812494754791,
0.015946224331855774,
-0.11049698293209076,
-0.031965721398591995,
-0.020608272403478622,
0.034200575202703476,
0.03788258507847786,
-0.043964315205812454,
-0.02615876868367195,
-0.022934718057513237,
-0.034328803420066833,
-0.012081027962267399,
0.05546831339597702,
-0.003846877720206976,
0.02269657887518406,
-0.0012135982979089022,
-0.033302970230579376,
-0.03777267411351204,
-0.03806576877832413,
-0.056677330285310745,
-0.025242844596505165,
0.03654533624649048,
-0.01726515404880047,
0.016669802367687225,
0.024528425186872482,
0.022495074197649956,
0.015204326249659061,
0.011430722661316395,
0.00854556355625391,
0.05587131902575493,
0.06396807730197906,
0.03824895620346069,
-0.005115431267768145,
0.007052609231323004,
-0.05092533305287361,
-0.037626128643751144,
0.0010349933290854096,
-0.008325742557644844,
0.05524849146604538,
0.06096385046839714,
-0.01562565006315708,
0.008751646615564823,
0.03608737513422966,
0.04755473509430885,
0.05957164987921715,
0.0517679825425148,
-0.06547019630670547,
-0.01219093892723322,
-0.02672664076089859,
-0.026305316016077995,
-0.04510005936026573,
0.008032646961510181,
-0.021835610270500183,
0.015030300244688988,
0.011018556542694569,
-0.0005670137470588088,
-0.007460195105522871,
-0.023227814584970474,
0.03440207615494728,
-0.05766652897000313,
0.08074779063463211,
-0.024290284141898155,
-0.005545915104448795,
-0.05385628715157509,
-0.06532364338636398,
0.03502490371465683,
-0.02212870493531227,
-0.003269846085458994,
0.026580093428492546,
0.04898357391357422,
0.007418978493660688,
-0.00205281306989491,
-0.0075472076423466206,
-0.02963927574455738,
-0.05495539680123329,
0.014279243536293507,
-0.04572289064526558,
0.034548625349998474,
-0.009965244680643082,
-0.007409818936139345,
-0.035372957587242126,
0.0016383577603846788,
-0.013326683081686497,
-0.012529830448329449,
0.0019932780414819717,
-0.030775021761655807,
0.017860503867268562,
0.017686478793621063,
-0.03821231797337532,
0.007973112165927887,
-0.03453030809760094,
0.021432604640722275,
0.006576329004019499,
-0.08052797615528107,
-0.04286520928144455,
0.0014929549070075154,
0.02645186334848404,
0.046528901904821396,
-0.004270492121577263,
0.0020642620511353016,
0.016935421153903008,
0.023667456582188606,
0.01676139608025551,
0.009406532160937786,
-0.02414373680949211,
0.012364964000880718,
0.007652538828551769,
-0.03905496746301651,
-0.046712085604667664,
-0.02414373680949211,
-0.022733215242624283,
0.04645562916994095,
-0.011760454624891281,
-0.012731333263218403,
-0.008005169220268726,
-0.07477597147226334,
-0.025371074676513672,
-0.0020299148745834827,
0.04180273786187172,
0.03687506914138794,
0.00047599387471564114,
0.0398976169526577,
-0.013354160822927952,
0.033486153930425644,
-0.04520997032523155,
-0.0007716653635725379,
0.03379756957292557,
-0.059644922614097595,
-0.005866488441824913,
-0.043781131505966187,
0.04202255979180336,
-0.020974641665816307,
-0.015140211209654808,
0.00821125227957964,
0.027807429432868958,
-0.02016863040626049,
0.06583656370639801,
0.05418602004647255,
0.07158856093883514,
-0.003487377893179655,
-0.05147488787770271,
0.00826162751764059,
-0.00040644092950969934,
0.04755473509430885,
0.02084641344845295,
0.027972295880317688,
0.05158479884266853,
0.006319870240986347,
-0.005005520768463612,
-0.03469517454504967,
0.04026398807764053,
0.059022095054388046,
-0.04517333582043648,
-0.014590657316148281,
-0.01905120350420475,
-0.009241665713489056,
-0.06085393950343132,
-0.08675625175237656,
-0.015982860699295998,
-0.005458902567625046,
0.09789387881755829,
-0.06979335099458694,
0.01619352400302887,
-0.06422454118728638,
0.017237676307559013,
-0.022513393312692642,
0.012822925113141537,
0.047701284289360046,
0.03901832923293114,
-0.014892912469804287,
0.03031705878674984,
0.012969473376870155,
-0.0003245802945457399,
-0.011833728291094303,
-0.05224426090717316,
-0.031178027391433716,
0.004245304502546787,
0.06462754309177399,
0.05374637618660927,
-0.06484736502170563,
0.03333960473537445,
-0.02544434741139412,
0.013262568973004818,
0.012364964000880718,
0.021835610270500183,
-0.007359443232417107,
-0.026195405051112175,
0.005784055218100548,
0.04117991030216217,
-0.039311427623033524,
0.03352279216051102,
0.06920716166496277,
-0.0797952339053154,
-0.00003874784670188092,
0.02033349685370922,
-0.0158088356256485,
-0.02868671715259552,
-0.0030042282305657864,
-0.034255530685186386,
-0.035830918699502945,
0.01602865755558014,
-0.032350409775972366,
-0.02342931739985943,
0.0111467856913805,
-0.010991078801453114,
-0.06297888606786728,
0.02095632441341877,
0.053709737956523895,
-0.011888683773577213,
-0.0030637632589787245,
0.07664445787668228,
0.0010744924657046795,
-0.05132833868265152,
-0.03876187279820442,
-0.013299205340445042,
-0.012264212593436241,
0.04649226367473602,
0.018813064321875572,
-0.04850729554891586,
-0.011568110436201096,
0.05224426090717316,
-0.05063223838806152,
-0.001887946855276823,
0.04601598531007767,
-0.01782386563718319,
0.04722500219941139,
0.026909824460744858,
-0.02705637365579605,
0.07499579340219498,
0.03467685356736183,
0.002121507190167904,
0.03315642103552818,
-0.028833264485001564,
-0.029511047527194023
]
|
42,130 | werkzeug.exceptions | get_headers | Get a list of headers. | def get_headers(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> list[tuple[str, str]]:
"""Get a list of headers."""
return [("Content-Type", "text/html; charset=utf-8")]
| (self, environ: 'WSGIEnvironment | None' = None, scope: 'dict[str, t.Any] | None' = None) -> 'list[tuple[str, str]]' | [
-0.05363849923014641,
-0.012682323344051838,
-0.08502157032489777,
-0.10284046083688736,
-0.00712755648419261,
0.03207400441169739,
0.00716392183676362,
-0.011982295662164688,
0.018837114796042442,
0.000996062415651977,
0.017891621217131615,
-0.049274690449237823,
0.008154870010912418,
-0.0030023923609405756,
-0.014582399278879166,
-0.016700664535164833,
0.001970533048734069,
0.03487411513924599,
0.04611092805862427,
-0.09236731380224228,
-0.022928185760974884,
-0.010509509593248367,
-0.012864149175584316,
-0.0663662776350975,
-0.02431005984544754,
0.01368236355483532,
-0.027037441730499268,
-0.06167518347501755,
0.05258391425013542,
0.0018057537963613868,
-0.017427967861294746,
-0.06567534059286118,
-0.0032342197373509407,
-0.03392862528562546,
0.01238231174647808,
0.017582518979907036,
0.04923832416534424,
-0.03336496651172638,
0.02665560692548752,
-0.002420550910755992,
-0.06818453222513199,
-0.012755054049193859,
-0.002493281150236726,
-0.029710274189710617,
-0.0350923091173172,
0.0101731326431036,
0.00943673960864544,
0.04007432237267494,
0.043601736426353455,
0.0040024323388934135,
-0.011591371148824692,
0.09033086895942688,
0.020146258175373077,
-0.0925855040550232,
-0.022491805255413055,
-0.021928146481513977,
0.03147398307919502,
-0.01304597407579422,
-0.04982016608119011,
0.05676589906215668,
0.016064276918768883,
0.016982493922114372,
0.03258311748504639,
-0.05945691466331482,
0.0063775270245969296,
-0.011282267980277538,
0.041056182235479355,
-0.01624610275030136,
0.0017443876713514328,
-0.016791578382253647,
0.0020773555152118206,
0.00919127557426691,
-0.022509988397359848,
0.008663981221616268,
0.01901893876492977,
-0.032637663185596466,
-0.0455290861427784,
0.020455360412597656,
-0.012236851267516613,
-0.04505633935332298,
0.014936958439648151,
0.04720187932252884,
-0.013800550252199173,
0.009309462271630764,
0.08531249314546585,
-0.0006233202875591815,
-0.06931184977293015,
-0.03692874312400818,
0.027546552941203117,
0.024146417155861855,
-0.061529725790023804,
-0.010809521190822124,
0.009954942390322685,
-0.004041070118546486,
0.033964987844228745,
0.013673271983861923,
-0.02067355066537857,
0.016764303669333458,
-0.03734694421291351,
0.005804776679724455,
-0.023328201845288277,
0.08167598396539688,
-0.013936919160187244,
0.037928782403469086,
-0.03440137207508087,
-0.019091669470071793,
-0.03598325327038765,
-0.012936878949403763,
0.0034751384519040585,
0.025055544450879097,
-0.008059412240982056,
-0.035765063017606735,
0.058220501989126205,
-0.06603899598121643,
0.07622122019529343,
-0.026946527883410454,
0.024600980803370476,
0.009873121045529842,
0.002422823803499341,
-0.018446190282702446,
-0.0006920730229467154,
-0.011309541761875153,
0.014791498892009258,
0.005718409549444914,
-0.009418557398021221,
0.040801625698804855,
0.004509270656853914,
-0.04785645380616188,
0.036019615828990936,
0.02583739347755909,
-0.039965227246284485,
0.01219139527529478,
-0.03261948004364967,
0.009518560953438282,
0.0162733756005764,
0.00046166611718945205,
-0.04185621440410614,
0.025491924956440926,
0.04734734073281288,
0.057711388915777206,
-0.01952804997563362,
-0.03151034563779831,
0.00005351775689632632,
-0.018800748512148857,
-0.04643821343779564,
0.0026978347450494766,
0.04625638946890831,
-0.01004585437476635,
0.018573466688394547,
0.011955021880567074,
0.02220088429749012,
-0.006227520760148764,
-0.033019497990608215,
0.01940077356994152,
-0.048074644058942795,
0.02525555156171322,
-0.0455290861427784,
0.0006682084640488029,
0.018982574343681335,
0.020273534581065178,
-0.029892100021243095,
-0.025546472519636154,
-0.024037322029471397,
0.0047820089384913445,
0.03771059215068817,
0.02194632962346077,
0.043419912457466125,
-0.0012864149175584316,
0.03374679759144783,
-0.04007432237267494,
-0.007823038846254349,
0.013336895033717155,
0.026055583730340004,
-0.006232066545635462,
0.09804026782512665,
-0.010936799459159374,
-0.01521878782659769,
0.08073049038648605,
-0.05462035909295082,
-0.026110131293535233,
0.05596586689352989,
-0.09469468146562576,
-0.07156648486852646,
0.03287403658032417,
-0.019891701638698578,
0.021091749891638756,
0.003820606740191579,
-0.020273534581065178,
-0.011864108964800835,
0.012364128604531288,
-0.0010562920942902565,
-0.024582797661423683,
-0.00029120477847754955,
0.005541129969060421,
-0.010473144240677357,
0.014755133539438248,
0.01145500224083662,
-0.03487411513924599,
0.0013295984826982021,
-0.07207559794187546,
-0.028673870489001274,
0.010327683761715889,
-0.03478320315480232,
0.022291798144578934,
0.02220088429749012,
0.04669276997447014,
0.010645878501236439,
-0.07258471101522446,
-0.044874515384435654,
0.04971107095479965,
-0.0389106422662735,
-0.03452864661812782,
-0.05836596339941025,
-0.04356537386775017,
-0.0200917087495327,
-0.02680106833577156,
-0.04152892902493477,
-0.013827824033796787,
0.06232975795865059,
-0.07520299404859543,
0.04178348183631897,
-0.0221281535923481,
-0.0013205071445554495,
-0.019800789654254913,
0.07113010436296463,
-0.0027091987431049347,
-0.005572949536144733,
-0.0034751384519040585,
-0.05454762652516365,
0.0037774231750518084,
0.012827783823013306,
0.05065656453371048,
0.006695721298456192,
0.006532078608870506,
0.02527373470366001,
-0.0021955419797450304,
0.01110044214874506,
0.015291518531739712,
-0.0018375732470303774,
0.0051638418808579445,
-0.01983715407550335,
0.07825766503810883,
0.02258271723985672,
0.05992966145277023,
-0.005745683331042528,
-0.039456117898225784,
-0.006009330507367849,
0.04712915048003197,
-0.01180046983063221,
0.007677578832954168,
-0.07371202856302261,
0.00623661233112216,
-0.03774695843458176,
-0.046547308564186096,
-0.02800111658871174,
0.003116033272817731,
-0.027982933446764946,
-0.007804856635630131,
0.006200246978551149,
-0.04152892902493477,
0.020837193354964256,
-0.0038410620763897896,
0.014446030370891094,
-0.0001563982805237174,
0.010218588635325432,
0.0432380847632885,
0.023637305945158005,
0.05792957916855812,
-0.07411204278469086,
0.05291119962930679,
0.04523816704750061,
0.03663782402873039,
-0.043019894510507584,
-0.037110570818185806,
0.026891980320215225,
-0.009791298769414425,
0.030001195147633553,
0.017409784719347954,
-0.04931105673313141,
0.04574727639555931,
-0.0034524102229624987,
-0.03781968727707863,
-0.009527652524411678,
0.011636827141046524,
0.01706431619822979,
0.030146656557917595,
-0.041310735046863556,
0.02163722552359104,
-0.012827783823013306,
-0.026110131293535233,
-0.020000796765089035,
0.04752916470170021,
0.009177638217806816,
-0.06749359518289566,
0.04978380352258682,
-0.016137005761265755,
0.031601257622241974,
-0.015509708784520626,
0.09593109786510468,
0.03171035274863243,
0.00785940419882536,
0.052656643092632294,
-0.0014239203883334994,
-0.07062099874019623,
-0.032128553837537766,
-0.03138306736946106,
0.018800748512148857,
0.022291798144578934,
-0.031292155385017395,
-0.044619958847761154,
-0.004959288518875837,
0.04687459394335747,
-0.01597336307168007,
-0.017655249685049057,
0.03629235550761223,
0.0111913550645113,
-0.027401091530919075,
0.06723904609680176,
-0.038437895476818085,
0.03756513446569443,
-0.018400732427835464,
-0.04134710133075714,
0.03814697265625,
-0.0213644877076149,
0.03641963377594948,
0.019000757485628128,
0.02685561589896679,
-0.027473822236061096,
0.033146776258945465,
0.08218508958816528,
-0.012655049562454224,
0.015282426960766315,
-0.012591410428285599,
0.0322921946644783,
0.03185581415891647,
0.007986681535840034,
0.03132852166891098,
0.008423062972724438,
-0.018618924543261528,
-0.06265704333782196,
-0.0724756121635437,
-0.04694732651114464,
-0.012827783823013306,
0.015527890995144844,
-0.03292858600616455,
-0.04829283431172371,
-0.00020355924789328128,
0.07738490402698517,
0.015982454642653465,
0.02845567837357521,
-0.009073088876903057,
0.023364568129181862,
0.0747666135430336,
0.035383228212594986,
0.022237250581383705,
-0.010327683761715889,
-0.06014785170555115,
-0.007104828488081694,
-0.007741217501461506,
0.09724023938179016,
0.07563937455415726,
0.06247521564364433,
-0.022055424749851227,
-0.02036444842815399,
-0.00725938007235527,
-0.024219145998358727,
0.04952924698591232,
0.029692092910408974,
0.021928146481513977,
-0.024510066956281662,
-0.020637186244130135,
0.03638326749205589,
-0.015327883884310722,
-0.022419074550271034,
-0.032764941453933716,
-0.02591012418270111,
0.04058343544602394,
-0.0017216595588251948,
-0.05862051621079445,
-0.0017205231124535203,
-0.010773156769573689,
0.0063775270245969296,
-0.020018979907035828,
0.0073684751987457275,
-0.06931184977293015,
-0.007332110311836004,
0.07109373807907104,
-0.0394197516143322,
-0.018800748512148857,
0.06480257958173752,
0.054074883460998535,
-0.11505912989377975,
0.0016250647604465485,
0.0829123929142952,
-0.032128553837537766,
-0.03383771330118179,
-0.05411124601960182,
-0.014209656976163387,
0.05854778736829758,
-0.014527851715683937,
0.05669316649436951,
0.017909804359078407,
-0.03985613211989403,
0.04211076721549034,
-0.008563977666199207,
-0.016655208542943,
-0.00300693791359663,
0.011500458233058453,
0.027546552941203117,
-0.011127715930342674,
0.01298233587294817,
-0.028910242021083832,
-0.0019750786013901234,
-0.02303728088736534,
0.018673472106456757,
0.027637464925646782,
-0.001436420832760632,
-0.014309661462903023,
0.022291798144578934,
0.0029001154471188784,
-0.029255710542201996,
-0.09680385887622833,
-0.01113680750131607,
0.0363650843501091,
0.014746041968464851,
0.005622951313853264,
-0.014627855271100998,
-0.0006363890133798122,
0.005836596246808767,
-0.019982613623142242,
0.047565530985593796,
0.05392942205071449,
-0.0399288646876812,
-0.07411204278469086,
0.02705562300980091,
0.01823708973824978,
-0.03163762390613556,
0.020055344328284264,
0.03056485392153263,
0.01270050648599863,
-0.0389106422662735,
0.07062099874019623,
-0.03781968727707863,
0.006873001344501972,
0.026455599814653397,
0.02405550330877304,
-0.026073766872286797,
-0.005118385888636112,
-0.0422198623418808,
-0.03521958366036415,
-0.017046133056282997,
-0.011491366662085056,
-0.000223162307520397,
-0.03731057792901993,
0.026946527883410454,
-0.0023637304548174143,
0.014773315750062466,
0.009936759248375893,
-0.07113010436296463,
-0.042838070541620255,
0.07127556949853897,
0.04534726217389107,
0.01492786779999733,
-0.02054627239704132,
-0.004493360873311758,
-0.042001672089099884,
0.017946168780326843,
-0.031110329553484917,
0.007200286723673344,
-0.028037481009960175,
-0.007154830731451511,
0.0417107529938221,
-0.03094668686389923,
-0.0358559750020504,
-0.01874620094895363,
0.04407448321580887,
-0.004229714162647724,
0.02647378295660019,
-0.010482235811650753,
-0.01818254217505455,
-0.008336695842444897,
0.00036876468220725656,
0.01876438409090042,
-0.02863750420510769,
0.011218628846108913,
-0.01346417237073183,
0.03598325327038765,
-0.04694732651114464,
-0.017564335837960243,
-0.03043757565319538,
0.03252856805920601,
0.0199644323438406,
-0.022564535960555077,
-0.00693664001300931,
0.06516623497009277,
0.06800270825624466,
0.0021387215238064528,
-0.0034887753427028656,
-0.03405590355396271,
-0.004213804379105568,
0.047820087522268295,
-0.07549391686916351,
0.04032887890934944,
0.022691812366247177,
-0.015064236707985401,
-0.03781968727707863,
0.03898337110877037,
-0.049020133912563324,
-0.019618963822722435,
-0.045456357300281525,
0.027219265699386597,
0.04691096022725105,
-0.015200605615973473,
-0.010154950432479382,
-0.008450336754322052,
-0.0022648628801107407,
-0.07462115585803986,
0.03371043503284454,
-0.003166035283356905,
0.037674229592084885,
-0.005513856187462807,
0.0193280428647995,
0.06138426437973976,
-0.009418557398021221,
0.013846006244421005,
-0.00008104016160359606,
-0.03781968727707863,
0.006263886112719774,
0.020837193354964256,
0.021709956228733063,
0.00004215366789139807,
0.05254754796624184,
-0.00601387582719326,
-0.012718688696622849,
0.006336615886539221,
0.02527373470366001,
-0.04389265924692154,
-0.010645878501236439,
-0.026364685967564583,
0.02667379006743431,
0.016746122390031815,
-0.011091350577771664,
-0.012800510041415691,
-0.0010398142039775848,
-0.04589273780584335,
-0.020909924060106277,
0.016137005761265755,
-0.06851182132959366,
-0.039456117898225784,
-0.041638024151325226,
-0.04738370701670647,
-0.05996602401137352,
-0.006550260819494724,
-0.021128114312887192,
-0.07702124863862991,
-0.00006289313023444265,
0.013409624807536602,
-0.02225543186068535,
0.006072969175875187,
-0.00008501759293721989,
0.055784039199352264,
-0.053420308977365494,
-0.05498401075601578,
0.07789400964975357,
-0.0625479444861412,
-0.002797838766127825,
-0.01059133093804121,
0.06345707178115845,
-0.008082140237092972,
-0.012964152731001377,
0.01833709515631199,
0.06156608834862709,
0.010236771777272224,
0.014018740504980087,
0.039783403277397156,
0.026128314435482025,
0.04734734073281288,
0.03181944787502289,
0.05142023041844368,
0.01739160157740116,
0.0701846182346344,
-0.018709836527705193,
-0.00919127557426691,
-0.05952964350581169,
-0.0227645430713892,
-0.010282227769494057,
-0.01709159091114998,
0.008859443478286266,
0.005063838325440884,
0.022309979423880577,
-0.05436580255627632,
0.002420550910755992,
0.06225702539086342,
-0.05232935771346092,
0.021037202328443527,
-0.02425551228225231,
-0.014055105857551098,
-0.010264045558869839,
-0.12342309951782227,
0.004034251440316439,
0.08742166310548782,
0.032892219722270966,
0.026128314435482025,
0.06069332733750343,
0.05156569182872772,
-0.05749319866299629,
-0.007423023227602243,
0.0103640491142869,
0.006613899953663349,
-0.012282307259738445,
-0.05596586689352989,
-0.03440137207508087,
-0.0006625264068134129,
-0.016418835148215294,
-0.008232146501541138,
0.034346822649240494,
-0.00860943365842104,
-0.008232146501541138,
0.008909446187317371,
-0.03554686903953552,
0.03500139340758324,
-0.0353468619287014,
0.008427608758211136,
0.02596467174589634,
0.051711149513721466,
-0.016718847677111626,
0.03814697265625,
-0.001327325589954853,
-0.016182463616132736,
-0.023328201845288277,
0.03371043503284454,
0.022164519876241684,
-0.0019205310381948948,
-0.026782885193824768,
0.027782924473285675,
0.11840471625328064,
-0.0447654202580452,
0.00888671725988388,
0.017609791830182076,
0.009268551133573055,
0.014964232221245766,
-0.010882251895964146,
0.0378924198448658,
-0.00044916561455465853,
0.005491127725690603,
0.058220501989126205,
-0.028564775362610817,
0.009809481911361217,
0.04709278419613838,
-0.08320331573486328,
-0.0035387773532420397,
0.005904780700802803,
0.012418676167726517,
0.02436460740864277,
-0.05065656453371048,
0.06047513708472252,
-0.0717119500041008,
-0.012718688696622849,
0.014391482807695866,
-0.04312898963689804,
0.06040240824222565,
-0.002554647158831358,
0.09542198479175568,
-0.03858335688710213,
0.006272977218031883,
-0.058984167873859406,
-0.022437257692217827,
-0.023182742297649384,
0.031164878979325294,
-0.02118266187608242,
0.03714693337678909,
0.042001672089099884,
0.01833709515631199,
-0.007432114332914352,
-0.04600183293223381,
0.07367566227912903,
0.007923043332993984,
-0.009509469382464886,
0.02845567837357521,
0.025346463546156883,
0.032183099538087845,
0.02263726480305195,
0.00494565162807703,
-0.008132142014801502,
0.024328241124749184,
-0.03414681553840637,
0.0005846823914907873,
0.009818573482334614,
-0.010673152282834053,
0.017437057569622993,
0.005191116128116846,
-0.025746479630470276,
0.03131033852696419,
0.08102141320705414,
0.02476462349295616,
0.015191514045000076,
0.023946408182382584,
-0.05236572399735451,
-0.022509988397359848,
0.03227401152253151,
-0.012527772225439548,
-0.023710034787654877,
0.03494684770703316,
-0.028619322925806046,
0.0051547507755458355,
-0.019309859722852707,
0.04854738712310791,
0.015391522087156773,
-0.0213644877076149,
0.03451046720147133,
-0.02914661541581154,
-0.01859164983034134,
0.049347419291734695,
0.02411005087196827,
0.03481956943869591,
-0.025437377393245697,
0.035510506480932236,
0.008459428325295448,
0.03931065648794174,
0.026710154488682747,
0.02265544794499874,
0.01308233942836523,
0.023582758381962776,
0.04651094228029251,
-0.019855337217450142,
-0.00033666114904917777,
-0.008845807053148746,
0.033401329070329666,
-0.08363969624042511,
-0.011791379190981388,
0.024273693561553955,
0.0018648470286279917,
-0.04363810271024704,
0.009159456007182598,
0.03134670481085777,
-0.02438279055058956,
-0.04294716566801071,
0.03829243406653404,
-0.04691096022725105,
0.026182861998677254,
0.028801146894693375,
0.009286733344197273,
-0.028037481009960175,
0.005600223317742348,
-0.008650344796478748,
-0.06818453222513199,
0.041492562741041183,
-0.06716631352901459,
0.045383624732494354,
0.035892337560653687,
-0.0008738984470255673,
-0.0325467512011528,
0.004763826262205839,
-0.0661117285490036,
0.008577614091336727,
0.004745643585920334,
-0.06876637786626816,
0.003434227779507637,
-0.029364805668592453,
0.04662004113197327,
0.00601387582719326,
0.009209457784891129,
-0.014373299665749073,
0.04371083155274391,
0.03147398307919502,
-0.008245782926678658,
0.04167438670992851,
-0.003920610528439283
]
|
42,131 | werkzeug.exceptions | get_response | Get a response object. If one was passed to the exception
it's returned directly.
:param environ: the optional environ for the request. This
can be used to modify the response depending
on how the request looked like.
:return: a :class:`Response` object or a subclass thereof.
| def get_response(
self,
environ: WSGIEnvironment | WSGIRequest | None = None,
scope: dict[str, t.Any] | None = None,
) -> Response:
"""Get a response object. If one was passed to the exception
it's returned directly.
:param environ: the optional environ for the request. This
can be used to modify the response depending
on how the request looked like.
:return: a :class:`Response` object or a subclass thereof.
"""
from .wrappers.response import Response as WSGIResponse # noqa: F811
if self.response is not None:
return self.response
if environ is not None:
environ = _get_environ(environ)
headers = self.get_headers(environ, scope)
return WSGIResponse(self.get_body(environ, scope), self.code, headers)
| (self, environ: 'WSGIEnvironment | WSGIRequest | None' = None, scope: 'dict[str, t.Any] | None' = None) -> 'Response' | [
0.03519183397293091,
-0.07012931257486343,
-0.09156781435012817,
-0.026979802176356316,
0.01575184427201748,
-0.0191129632294178,
-0.013626161962747574,
0.039788395166397095,
-0.008561772294342518,
0.0038539329543709755,
0.06998396664857864,
0.0047055683098733425,
0.023655017837882042,
-0.014162125065922737,
-0.005686651915311813,
-0.02690712921321392,
0.03117666020989418,
-0.016569413244724274,
0.02013038471341133,
-0.06856685131788254,
0.041714224964380264,
-0.02280111238360405,
0.019676178693771362,
-0.008557230234146118,
-0.03793523460626602,
-0.02441808395087719,
-0.008443678729236126,
-0.013717003166675568,
0.03771721571683884,
0.024763278663158417,
0.015988031402230263,
-0.0618082731962204,
-0.015324890613555908,
0.04956289380788803,
0.021147804334759712,
0.09018702805042267,
-0.05799294635653496,
-0.010846424847841263,
-0.017386984080076218,
0.009774500504136086,
-0.053632576018571854,
-0.006340707652270794,
0.02972320280969143,
-0.005150689277797937,
0.03415624797344208,
0.0005722988280467689,
0.02310997061431408,
0.007453511003404856,
-0.0338655561208725,
0.009392968378961086,
0.03515549749135971,
0.030558940023183823,
0.03203056752681732,
-0.0662413164973259,
0.025998717173933983,
0.0074126324616372585,
0.00673132436349988,
0.05675750970840454,
-0.046292614191770554,
-0.03341135010123253,
-0.06366143375635147,
0.012590574100613594,
0.026743615046143532,
-0.04447579383850098,
-0.02750667929649353,
0.033738378435373306,
-0.008579940535128117,
-0.034773968160152435,
0.000796562759205699,
0.004037885926663876,
0.0031771669164299965,
0.022092550992965698,
-0.05679384618997574,
0.02443625032901764,
0.03586405888199806,
-0.017568664625287056,
-0.06893021613359451,
0.023146307095885277,
0.009447472169995308,
-0.010946350172162056,
0.005059848073869944,
0.024781446903944016,
-0.015542909502983093,
-0.03279362991452217,
0.07608848810195923,
-0.0055685583502054214,
-0.029323501512408257,
-0.02029389701783657,
0.019930534064769745,
0.006767660845071077,
-0.027543015778064728,
-0.021438496187329292,
-0.00658143637701869,
-0.010310462675988674,
0.055667415261268616,
-0.03866196423768997,
-0.015851769596338272,
-0.00006032415694789961,
0.040987495332956314,
0.010056108236312866,
-0.026253072544932365,
0.08815218508243561,
-0.061989955604076385,
0.052433472126722336,
-0.0029114566277712584,
0.07463503628969193,
0.04621994122862816,
-0.00942021980881691,
0.06002778559923172,
-0.00028174929320812225,
-0.03488297760486603,
0.03630009666085243,
0.019639842212200165,
0.0012445228639990091,
-0.035954900085926056,
0.007617024704813957,
0.007489847484976053,
0.04796409234404564,
-0.005495885387063026,
-0.03709949925541878,
-0.03030458465218544,
0.006476968992501497,
-0.0003380991402082145,
-0.005632147192955017,
0.005686651915311813,
0.013871433213353157,
-0.023854868486523628,
-0.04222293570637703,
0.025671690702438354,
0.03128566965460777,
0.01940365508198738,
-0.0018565646605566144,
-0.008475473150610924,
0.016823768615722656,
0.0004207077727187425,
0.049671903252601624,
-0.016578497365117073,
0.060245804488658905,
-0.04429411143064499,
0.05973709747195244,
0.08139360696077347,
0.016596665605902672,
-0.010764668695628643,
0.016578497365117073,
-0.021111467853188515,
-0.004378539975732565,
-0.0019996394403278828,
-0.00724911829456687,
0.021856363862752914,
0.02970503456890583,
0.0020507373847067356,
-0.02439991571009159,
0.030631612986326218,
0.02338249422609806,
-0.03797157108783722,
0.0014227984938770533,
-0.001051485538482666,
-0.027688361704349518,
0.04073313996195793,
-0.009079566225409508,
-0.006104520987719297,
0.0023187187034636736,
-0.03455594927072525,
-0.038916319608688354,
0.03130383789539337,
-0.0030295501928776503,
-0.006949342787265778,
0.017405152320861816,
0.05726621672511101,
-0.016542160883545876,
-0.04534786939620972,
-0.002420914825052023,
-0.024908624589443207,
-0.0529785193502903,
0.011218873783946037,
0.03579138591885567,
0.05159773677587509,
0.03844394534826279,
-0.05486801266670227,
0.013335471041500568,
0.06293470412492752,
-0.09803569316864014,
-0.06340707838535309,
0.03693598508834839,
0.032157741487026215,
0.04571123421192169,
0.03341135010123253,
0.016278721392154694,
-0.0008987589390017092,
0.0154429841786623,
0.0042286524549126625,
0.018177300691604614,
0.04454846680164337,
0.0016305973986163735,
-0.0032180454581975937,
0.05646681785583496,
0.016523992642760277,
-0.005995511543005705,
0.02443625032901764,
0.01346264872699976,
-0.03760820999741554,
0.03264828398823738,
0.015397563576698303,
0.04887250065803528,
-0.03782622516155243,
0.08117558807134628,
-0.010201453231275082,
-0.04138719663023949,
-0.01586993783712387,
-0.026580100879073143,
-0.07289088517427444,
-0.05381425842642784,
-0.05014427751302719,
-0.023564176633954048,
0.01221812516450882,
0.055812761187553406,
-0.035537030547857285,
-0.0603548139333725,
0.055086031556129456,
-0.02149300090968609,
0.03504648804664612,
-0.02721598744392395,
-0.012036443687975407,
0.002359597012400627,
0.005059848073869944,
-0.021256813779473305,
-0.008411884307861328,
0.0250176340341568,
-0.02220156043767929,
0.017032703384757042,
-0.01929464563727379,
0.04454846680164337,
0.011718499474227428,
-0.06754942983388901,
0.05519504100084305,
-0.03840760886669159,
-0.0031044939532876015,
0.023037297651171684,
-0.024636100977659225,
0.009965267032384872,
0.03615475073456764,
0.014543657191097736,
0.011591321788728237,
0.07263652980327606,
-0.03175804391503334,
-0.03482847288250923,
0.0034019984304904938,
0.06493320316076279,
-0.01435289066284895,
-0.01900395378470421,
0.0008504996076226234,
-0.013526237569749355,
-0.008411884307861328,
-0.05475900322198868,
0.05312386527657509,
0.0010741958394646645,
0.00525969872251153,
-0.04491183161735535,
0.03130383789539337,
0.046437960118055344,
0.06162659078836441,
0.0456022247672081,
0.01146414503455162,
0.011373303830623627,
-0.03866196423768997,
0.0004777673166245222,
0.03306615352630615,
-0.004660147707909346,
-0.02145666442811489,
0.028051726520061493,
0.04284065589308739,
0.046692315489053726,
0.029632361605763435,
0.0055095115676522255,
-0.04527519643306732,
-0.011491397395730019,
0.08495458215475082,
-0.04011542350053787,
-0.0021245458628982306,
0.04542054235935211,
-0.04810943827033043,
0.0009282823302783072,
0.035827722400426865,
0.016533076763153076,
0.012336218729615211,
-0.007344501558691263,
0.02516297996044159,
0.006940258666872978,
0.028124399483203888,
-0.0213294867426157,
0.03880731016397476,
0.03074062243103981,
0.0091931177303195,
0.006808538921177387,
0.007212781812995672,
-0.033156994730234146,
-0.053777921944856644,
0.018322646617889404,
0.047310035675764084,
-0.0013194667408242822,
-0.024054719135165215,
0.012163621373474598,
0.08662605285644531,
0.03513732925057411,
0.004249091725796461,
-0.04040611535310745,
0.051706742495298386,
0.0353008434176445,
0.029814044013619423,
-0.006172651425004005,
0.0009595089359208941,
0.026380250230431557,
-0.01649674028158188,
0.040987495332956314,
-0.026725446805357933,
0.027997221797704697,
0.0632617324590683,
0.008257454261183739,
0.009143155068159103,
0.047709736973047256,
0.009115902706980705,
0.010410388000309467,
0.06526023149490356,
0.0015102330362424254,
-0.011573153547942638,
0.02590787597000599,
0.006813080981373787,
0.04131452366709709,
0.049199528992176056,
0.029632361605763435,
0.013707919046282768,
-0.0396793857216835,
-0.02997755818068981,
0.00942930392920971,
0.0036154750268906355,
-0.045384205877780914,
0.06456983834505081,
0.008652613498270512,
-0.016660254448652267,
0.002854681108146906,
-0.04247729107737541,
-0.035973068326711655,
-0.004637437406927347,
-0.006754034664481878,
0.008984182961285114,
0.009956182911992073,
-0.009774500504136086,
0.0008504996076226234,
0.010637491010129452,
-0.0411691777408123,
-0.06002778559923172,
0.07241851091384888,
0.026961633935570717,
0.01677834801375866,
-0.06278935819864273,
-0.061408571898937225,
-0.007530725561082363,
0.05570375174283981,
-0.0707106962800026,
0.03163086622953415,
-0.04222293570637703,
0.05254248157143593,
-0.09476541727781296,
-0.010764668695628643,
-0.07129207998514175,
-0.04207758978009224,
-0.0007971305167302489,
-0.032884471118450165,
-0.012536069378256798,
0.014743507839739323,
-0.023364325985312462,
-0.010265042074024677,
-0.04661964252591133,
0.016523992642760277,
-0.005936464760452509,
0.04945388436317444,
-0.03800790756940842,
-0.021438496187329292,
0.05526771396398544,
0.011300630867481232,
0.007676071487367153,
-0.006431548856198788,
-0.04109650477766991,
-0.027997221797704697,
0.028723949566483498,
-0.0191129632294178,
0.049344874918460846,
-0.028651276603341103,
-0.007562519982457161,
0.023346157744526863,
-0.006554184015840292,
-0.05326921120285988,
0.007585230283439159,
0.016533076763153076,
-0.0070810625329613686,
-0.012663247063755989,
-0.07565245032310486,
0.0011582238366827369,
0.01036496739834547,
0.03840760886669159,
0.007830501534044743,
0.07023832201957703,
0.02310997061431408,
0.026089558377861977,
-0.02281928062438965,
-0.0032521106768399477,
0.03134017437696457,
-0.009938014671206474,
0.029214492067694664,
-0.00986534170806408,
-0.03548252582550049,
-0.006313455291092396,
-0.04647429659962654,
-0.013235545717179775,
0.002854681108146906,
0.06740408390760422,
0.044366784393787384,
0.004255904816091061,
0.020838944241404533,
-0.06507854908704758,
-0.021547505632042885,
-0.028487764298915863,
0.019058458507061005,
-0.054795339703559875,
-0.029959389939904213,
0.010846424847841263,
-0.06300737708806992,
0.023891204968094826,
0.038916319608688354,
-0.025090306997299194,
0.03895265609025955,
-0.040224432945251465,
-0.03134017437696457,
-0.06275302171707153,
0.05748423561453819,
-0.012963022105395794,
-0.016542160883545876,
0.008325585164129734,
0.022692102938890457,
0.03355669602751732,
0.013280966319143772,
0.012745004147291183,
-0.000660868885461241,
0.025417335331439972,
0.010483060963451862,
0.00002647166002134327,
-0.04898151010274887,
0.012617826461791992,
-0.023782195523381233,
-0.05995511636137962,
0.073544941842556,
0.020639093592762947,
-0.016978198662400246,
-0.007158277090638876,
-0.033883724361658096,
-0.06002778559923172,
-0.025417335331439972,
-0.059628088027238846,
-0.020366569980978966,
0.01345356460660696,
0.011155284941196442,
0.0013796489220112562,
0.059337396174669266,
-0.06446082890033722,
-0.07775996625423431,
0.011218873783946037,
0.010428556241095066,
-0.03355669602751732,
0.007121941074728966,
-0.03190338984131813,
0.02029389701783657,
0.025998717173933983,
-0.053196538239717484,
-0.020075879991054535,
-0.02997755818068981,
0.0029818585608154535,
0.012763172388076782,
-0.02705247513949871,
0.008371005766093731,
-0.012417975813150406,
-0.03248476982116699,
0.0662413164973259,
0.028905631974339485,
-0.008589024655520916,
-0.02223789691925049,
-0.05283317342400551,
0.028433259576559067,
0.005082558374851942,
-0.014398311264812946,
0.0002841622626874596,
0.050652988255023956,
0.07746927440166473,
-0.03130383789539337,
-0.01477984432131052,
-0.06787645816802979,
0.008997809141874313,
-0.03014107048511505,
-0.043349362909793854,
-0.02340066246688366,
-0.07572512328624725,
0.03887998312711716,
-0.08052153885364532,
0.07826867699623108,
-0.01234530285000801,
-0.01574276015162468,
-0.025944212451577187,
-0.013262798078358173,
0.025817036628723145,
0.017741262912750244,
-0.02414556033909321,
0.0051643154583871365,
0.02443625032901764,
-0.02280111238360405,
-0.03266645222902298,
-0.01780485175549984,
0.05268782749772072,
-0.05028962343931198,
-0.022546757012605667,
-0.014416479505598545,
0.036536283791065216,
0.04167788848280907,
0.08582665771245956,
0.033302340656518936,
0.00801672600209713,
-0.01603345200419426,
-0.013744255527853966,
0.019912365823984146,
0.016696590930223465,
-0.002364139072597027,
-0.01865875907242298,
-0.012172705493867397,
-0.040551457554101944,
-0.07550710439682007,
-0.05908304080367088,
0.053051192313432693,
-0.010310462675988674,
-0.12187239527702332,
-0.026253072544932365,
0.03393822908401489,
0.019912365823984146,
0.03306615352630615,
-0.03364753723144531,
-0.01037405151873827,
0.0026480176020413637,
-0.07023832201957703,
-0.07877738773822784,
0.032157741487026215,
-0.021692849695682526,
0.011118948459625244,
0.006867585703730583,
-0.03223041445016861,
-0.06275302171707153,
0.05221545323729515,
0.00009190562559524551,
-0.061844609677791595,
0.028142567723989487,
-0.004274073056876659,
0.0242727380245924,
-0.0033861014526337385,
-0.027724698185920715,
0.006867585703730583,
0.028306081891059875,
0.011445976793766022,
0.03430159389972687,
-0.016151543706655502,
0.03355669602751732,
0.03735385462641716,
0.03195789456367493,
-0.008693492040038109,
-0.02367318607866764,
0.009774500504136086,
0.047164689749479294,
-0.01477076020091772,
0.002393662463873625,
0.06507854908704758,
0.04767340049147606,
0.05047130584716797,
-0.008425510488450527,
0.0690755620598793,
0.06224431097507477,
-0.0011076934169977903,
-0.04487549513578415,
-0.05210644379258156,
-0.02223789691925049,
-0.057120874524116516,
-0.001154817291535437,
-0.017105376347899437,
0.01900395378470421,
0.0060454742051661015,
-0.04164155200123787,
-0.001729387091472745,
-0.0515250638127327,
0.02543550357222557,
-0.070601686835289,
0.07303623110055923,
-0.009665491059422493,
-0.03540985286235809,
-0.04160521551966667,
-0.017695842310786247,
-0.046292614191770554,
0.03778988867998123,
0.042440954595804214,
-0.005100726615637541,
-0.005486801266670227,
0.045238859951496124,
-0.005423212423920631,
-0.015978947281837463,
0.017768515273928642,
-0.03015923872590065,
-0.021002458408474922,
-0.022728439420461655,
-0.02723415568470955,
-0.015370311215519905,
-0.04371272772550583,
-0.0397157222032547,
-0.040551457554101944,
-0.04396708309650421,
0.07038366794586182,
-0.07565245032310486,
-0.014743507839739323,
0.0749984011054039,
-0.023709522560238838,
-0.040696803480386734,
0.06195361912250519,
-0.01184567715972662,
0.04589291661977768,
0.0985444039106369,
0.016451319679617882,
0.020639093592762947,
0.03651811555027962,
-0.002541279187425971,
0.07536175847053528,
-0.03203056752681732,
-0.06664101779460907,
0.05246980860829353,
0.04512985050678253,
0.023073634132742882,
-0.035373516380786896,
0.041132841259241104,
0.04516618698835373,
0.02191086858510971,
-0.03353852778673172,
0.016242384910583496,
0.03560970351099968,
-0.024508923292160034,
0.050652988255023956,
0.04091482236981392,
0.034483276307582855,
0.044039756059646606,
-0.0898236632347107,
-0.015497488901019096,
-0.03399273380637169,
-0.0062544085085392,
-0.05515870451927185,
-0.04767340049147606,
-0.008661697618663311,
0.015125039964914322,
-0.024508923292160034,
-0.015788180753588676,
0.06129956245422363,
0.026798119768500328,
-0.026271240785717964,
0.02954152040183544,
-0.02472694218158722,
0.09214919060468674,
-0.035373516380786896,
-0.04367639124393463,
-0.03764454647898674,
0.054359305649995804,
-0.00971091166138649,
0.01969434693455696,
0.020657261833548546,
0.002300550462678075,
0.018876776099205017,
-0.08764347434043884,
0.0017963823629543185,
-0.0029636903200298548,
0.018749600276350975,
0.022001709789037704,
0.04589291661977768,
-0.01851341314613819,
0.05047130584716797,
-0.0529421828687191,
0.017568664625287056,
0.0154429841786623,
-0.0191311314702034,
0.006472426932305098,
-0.020530084148049355,
-0.019022122025489807,
-0.053051192313432693,
0.006894838064908981,
-0.09839905798435211,
-0.004276344086974859,
0.011073527857661247,
-0.009093192405998707,
-0.007489847484976053,
-0.022855617105960846,
-0.07521641999483109,
-0.06500587612390518,
0.06595062464475632,
0.021583842113614082,
-0.04767340049147606,
0.023600513115525246,
0.012463396415114403,
0.03195789456367493,
-0.009302127175033092,
-0.012735920026898384,
0.005577642470598221,
-0.020966121926903725,
-0.020421074703335762,
-0.015224965289235115,
0.0024686064571142197,
0.03620925545692444,
-0.025508176535367966,
0.010582986287772655,
0.022891953587532043,
0.020966121926903725,
0.02400021441280842,
0.012953937985002995,
-0.02912365086376667,
-0.036536283791065216,
-0.01448006834834814,
0.012663247063755989,
-0.014561825431883335,
0.019330982118844986,
0.026071390137076378,
-0.03322966769337654,
-0.04589291661977768,
-0.03931602090597153,
-0.00270252232439816,
-0.026798119768500328,
-0.017623169347643852,
-0.044185101985931396,
-0.03444693982601166,
0.010555733926594257,
-0.045965589582920074,
-0.007289996836334467,
0.046437960118055344,
0.015542909502983093,
-0.010501229204237461,
0.013944106176495552,
0.00024839359684847295,
-0.033029817044734955,
-0.05679384618997574,
0.06675002723932266,
-0.013199209235608578,
-0.01382601261138916,
-0.04175056144595146,
0.0025117560289800167,
0.014561825431883335,
0.059918779879808426,
-0.029650529846549034,
0.04000641405582428,
0.012263545766472816,
0.01882227323949337,
-0.018013786524534225,
-0.03622742369771004,
0.02925082854926586,
0.012781340628862381,
0.008325585164129734,
0.0014807096449658275,
0.025053970515727997,
0.006358875893056393,
0.01735973171889782,
0.012027359567582607,
0.05781126394867897,
0.03808058053255081,
-0.007335417438298464
]
|
42,132 | werkzeug.datastructures.headers | Headers | An object that stores some headers. It has a dict-like interface,
but is ordered, can store the same key multiple times, and iterating
yields ``(key, value)`` pairs instead of only keys.
This data structure is useful if you want a nicer way to handle WSGI
headers which are stored as tuples in a list.
From Werkzeug 0.3 onwards, the :exc:`KeyError` raised by this class is
also a subclass of the :class:`~exceptions.BadRequest` HTTP exception
and will render a page for a ``400 BAD REQUEST`` if caught in a
catch-all for HTTP exceptions.
Headers is mostly compatible with the Python :class:`wsgiref.headers.Headers`
class, with the exception of `__getitem__`. :mod:`wsgiref` will return
`None` for ``headers['missing']``, whereas :class:`Headers` will raise
a :class:`KeyError`.
To create a new ``Headers`` object, pass it a list, dict, or
other ``Headers`` object with default values. These values are
validated the same way values added later are.
:param defaults: The list of default values for the :class:`Headers`.
.. versionchanged:: 2.1.0
Default values are validated the same as values added later.
.. versionchanged:: 0.9
This data structure now stores unicode values similar to how the
multi dicts do it. The main difference is that bytes can be set as
well which will automatically be latin1 decoded.
.. versionchanged:: 0.9
The :meth:`linked` function was removed without replacement as it
was an API that does not support the changes to the encoding model.
| class Headers:
"""An object that stores some headers. It has a dict-like interface,
but is ordered, can store the same key multiple times, and iterating
yields ``(key, value)`` pairs instead of only keys.
This data structure is useful if you want a nicer way to handle WSGI
headers which are stored as tuples in a list.
From Werkzeug 0.3 onwards, the :exc:`KeyError` raised by this class is
also a subclass of the :class:`~exceptions.BadRequest` HTTP exception
and will render a page for a ``400 BAD REQUEST`` if caught in a
catch-all for HTTP exceptions.
Headers is mostly compatible with the Python :class:`wsgiref.headers.Headers`
class, with the exception of `__getitem__`. :mod:`wsgiref` will return
`None` for ``headers['missing']``, whereas :class:`Headers` will raise
a :class:`KeyError`.
To create a new ``Headers`` object, pass it a list, dict, or
other ``Headers`` object with default values. These values are
validated the same way values added later are.
:param defaults: The list of default values for the :class:`Headers`.
.. versionchanged:: 2.1.0
Default values are validated the same as values added later.
.. versionchanged:: 0.9
This data structure now stores unicode values similar to how the
multi dicts do it. The main difference is that bytes can be set as
well which will automatically be latin1 decoded.
.. versionchanged:: 0.9
The :meth:`linked` function was removed without replacement as it
was an API that does not support the changes to the encoding model.
"""
def __init__(self, defaults=None):
self._list = []
if defaults is not None:
self.extend(defaults)
def __getitem__(self, key, _get_mode=False):
if not _get_mode:
if isinstance(key, int):
return self._list[key]
elif isinstance(key, slice):
return self.__class__(self._list[key])
if not isinstance(key, str):
raise BadRequestKeyError(key)
ikey = key.lower()
for k, v in self._list:
if k.lower() == ikey:
return v
# micro optimization: if we are in get mode we will catch that
# exception one stack level down so we can raise a standard
# key error instead of our special one.
if _get_mode:
raise KeyError()
raise BadRequestKeyError(key)
def __eq__(self, other):
def lowered(item):
return (item[0].lower(),) + item[1:]
return other.__class__ is self.__class__ and set(
map(lowered, other._list)
) == set(map(lowered, self._list))
__hash__ = None
def get(self, key, default=None, type=None):
"""Return the default value if the requested data doesn't exist.
If `type` is provided and is a callable it should convert the value,
return it or raise a :exc:`ValueError` if that is not possible. In
this case the function will return the default as if the value was not
found:
>>> d = Headers([('Content-Length', '42')])
>>> d.get('Content-Length', type=int)
42
:param key: The key to be looked up.
:param default: The default value to be returned if the key can't
be looked up. If not further specified `None` is
returned.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the default value is returned.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
"""
try:
rv = self.__getitem__(key, _get_mode=True)
except KeyError:
return default
if type is None:
return rv
try:
return type(rv)
except ValueError:
return default
def getlist(self, key, type=None):
"""Return the list of items for a given key. If that key is not in the
:class:`Headers`, the return value will be an empty list. Just like
:meth:`get`, :meth:`getlist` accepts a `type` parameter. All items will
be converted with the callable defined there.
:param key: The key to be looked up.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the value will be removed from the list.
:return: a :class:`list` of all the values for the key.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
"""
ikey = key.lower()
result = []
for k, v in self:
if k.lower() == ikey:
if type is not None:
try:
v = type(v)
except ValueError:
continue
result.append(v)
return result
def get_all(self, name):
"""Return a list of all the values for the named field.
This method is compatible with the :mod:`wsgiref`
:meth:`~wsgiref.headers.Headers.get_all` method.
"""
return self.getlist(name)
def items(self, lower=False):
for key, value in self:
if lower:
key = key.lower()
yield key, value
def keys(self, lower=False):
for key, _ in self.items(lower):
yield key
def values(self):
for _, value in self.items():
yield value
def extend(self, *args, **kwargs):
"""Extend headers in this object with items from another object
containing header items as well as keyword arguments.
To replace existing keys instead of extending, use
:meth:`update` instead.
If provided, the first argument can be another :class:`Headers`
object, a :class:`MultiDict`, :class:`dict`, or iterable of
pairs.
.. versionchanged:: 1.0
Support :class:`MultiDict`. Allow passing ``kwargs``.
"""
if len(args) > 1:
raise TypeError(f"update expected at most 1 arguments, got {len(args)}")
if args:
for key, value in iter_multi_items(args[0]):
self.add(key, value)
for key, value in iter_multi_items(kwargs):
self.add(key, value)
def __delitem__(self, key, _index_operation=True):
if _index_operation and isinstance(key, (int, slice)):
del self._list[key]
return
key = key.lower()
new = []
for k, v in self._list:
if k.lower() != key:
new.append((k, v))
self._list[:] = new
def remove(self, key):
"""Remove a key.
:param key: The key to be removed.
"""
return self.__delitem__(key, _index_operation=False)
def pop(self, key=None, default=_missing):
"""Removes and returns a key or index.
:param key: The key to be popped. If this is an integer the item at
that position is removed, if it's a string the value for
that key is. If the key is omitted or `None` the last
item is removed.
:return: an item.
"""
if key is None:
return self._list.pop()
if isinstance(key, int):
return self._list.pop(key)
try:
rv = self[key]
self.remove(key)
except KeyError:
if default is not _missing:
return default
raise
return rv
def popitem(self):
"""Removes a key or index and returns a (key, value) item."""
return self.pop()
def __contains__(self, key):
"""Check if a key is present."""
try:
self.__geti | (defaults=None) | [
0.04033728688955307,
-0.0044391402043402195,
-0.10554282367229462,
-0.07768495380878448,
0.0047590527683496475,
0.0012293983018025756,
-0.0001797738514142111,
0.011460228823125362,
0.05544395372271538,
-0.07600895315408707,
-0.031028684228658676,
0.006488845217972994,
0.05680287256836891,
0.004090916831046343,
-0.00017933148774318397,
0.04112999141216278,
0.004875127226114273,
0.06812721490859985,
0.016114531084895134,
-0.07827381789684296,
-0.0012534625129774213,
-0.01803966797888279,
0.039227504283189774,
0.032885875552892685,
-0.014982097782194614,
-0.0032047873828560114,
0.014597070403397083,
-0.03691734001040459,
0.07206808030605316,
0.005124262534081936,
0.00955774076282978,
-0.04149236902594566,
-0.019455211237072945,
-0.030711602419614792,
0.00239509716629982,
-0.0713433250784874,
0.009455821476876736,
-0.01182260736823082,
0.01683928817510605,
0.026317758485674858,
-0.018719129264354706,
-0.009891808032989502,
-0.018084965646266937,
-0.07188688963651657,
0.03499219939112663,
0.09213480353355408,
-0.004385349340736866,
0.09449026733636856,
0.04824167490005493,
-0.014223366975784302,
-0.016963856294751167,
-0.008725401945412159,
0.018458670005202293,
-0.059566013514995575,
-0.04015609994530678,
0.0021742726676166058,
-0.0018402048153802752,
0.03823096305131912,
-0.03721177205443382,
0.03746090829372406,
0.026023326441645622,
0.017054451629519463,
-0.032523494213819504,
-0.04819637909531593,
0.0016830796375870705,
-0.025185326114296913,
0.016986506059765816,
-0.044685833156108856,
-0.0001044847012963146,
-0.050234757363796234,
0.0002832853642757982,
0.00011678222654154524,
-0.03447128087282181,
0.02423408068716526,
0.04194534569978714,
0.02252410538494587,
-0.0346071720123291,
-0.007830779068171978,
0.01302298717200756,
-0.0407223142683506,
0.04665626958012581,
0.016420288011431694,
-0.030258627608418465,
-0.02566094696521759,
0.03218376636505127,
0.02095002308487892,
-0.0027772935573011637,
0.003785159671679139,
0.0488305427134037,
0.06395985186100006,
-0.075238898396492,
-0.015536990016698837,
-0.01136397197842598,
0.012728555127978325,
-0.018379399552941322,
-0.03949928656220436,
-0.015333152376115322,
-0.04982708394527435,
-0.0013100842479616404,
0.006047195754945278,
0.011029903776943684,
0.052862003445625305,
-0.012547365389764309,
0.012683257460594177,
-0.03521868959069252,
-0.02084810473024845,
-0.020780159160494804,
-0.03884247690439224,
0.009450159035623074,
0.004422153811901808,
-0.05114070698618889,
-0.07301932573318481,
-0.00921234767884016,
-0.01585407182574272,
0.01605791039764881,
0.013419339433312416,
-0.010554281994700432,
-0.022739268839359283,
-0.03284057602286339,
-0.021674780175089836,
0.009523767046630383,
-0.017065776512026787,
-0.02252410538494587,
0.011477215215563774,
0.023531971499323845,
-0.01704312674701214,
0.01070149801671505,
-0.03811771795153618,
0.07211337983608246,
0.04941940680146217,
-0.018062317743897438,
0.024120837450027466,
-0.05825239047408104,
0.015831423923373222,
0.05281670764088631,
-0.00941618625074625,
-0.0336785763502121,
0.040427882224321365,
-0.012830473482608795,
0.029443277046084404,
0.041854750365018845,
0.014823556877672672,
0.0468827560544014,
-0.017665965482592583,
-0.022331591695547104,
-0.06559056043624878,
0.051638975739479065,
-0.01119976956397295,
-0.041265882551670074,
0.015435071662068367,
-0.024505864828824997,
0.004866634029895067,
0.031232520937919617,
0.021244456991553307,
0.003586983773857355,
-0.0028565640095621347,
-0.0488305427134037,
-0.04230772331357002,
-0.042851291596889496,
0.014551772736012936,
0.015310503542423248,
-0.005704634822905064,
-0.011386620812118053,
-0.038774531334638596,
-0.0018118938896805048,
0.023735810071229935,
0.037981826812028885,
-0.03231965750455856,
0.01232087891548872,
0.0053818910382688046,
-0.04332691431045532,
0.003980504348874092,
-0.02808435633778572,
0.020598968490958214,
0.011052552610635757,
0.012513392604887486,
-0.04792459309101105,
0.03936339542269707,
-0.02729165181517601,
-0.03517339006066322,
0.03644171729683876,
-0.037007931619882584,
-0.03408625349402428,
-0.03598874434828758,
-0.008787685073912144,
0.08434366434812546,
-0.012162338010966778,
0.0458182692527771,
0.03666820377111435,
0.03487895801663399,
-0.025706244632601738,
-0.049374110996723175,
0.021470943465828896,
-0.00626802071928978,
-0.005277140997350216,
0.021346375346183777,
-0.025796839967370033,
-0.013000339269638062,
0.03560371696949005,
0.029216788709163666,
-0.09530562162399292,
0.000413692177971825,
0.005342255812138319,
-0.0038559366948902607,
-0.027586085721850395,
-0.0012272750027477741,
0.041220586746931076,
-0.05240903049707413,
-0.039612531661987305,
0.01466501597315073,
-0.028990302234888077,
-0.012264257296919823,
-0.05852417275309563,
-0.014948124997317791,
0.0040427884086966515,
-0.06296331435441971,
-0.033112362027168274,
-0.040427882224321365,
0.05240903049707413,
-0.052227843552827835,
0.06205736845731735,
0.02156153693795204,
-0.030213331803679466,
-0.03786858171224594,
0.04058642312884331,
0.011765985749661922,
-0.029873600229620934,
-0.0005899271927773952,
0.0024545500054955482,
-0.007745846640318632,
0.054673898965120316,
0.00800064392387867,
0.0024149147793650627,
0.022954430431127548,
0.03854804486036301,
-0.04133382812142372,
0.017450803890824318,
0.02119915932416916,
0.029488572850823402,
0.023962296545505524,
0.019126804545521736,
0.0468827560544014,
-0.0006125758518464863,
0.046112701296806335,
-0.03157225251197815,
-0.0147782601416111,
-0.004396673757582903,
0.06776483356952667,
-0.02079148218035698,
0.014166745357215405,
-0.0447990782558918,
0.009161388501524925,
0.024483216926455498,
-0.027812572196125984,
0.008917915634810925,
-0.01567288301885128,
-0.03648701310157776,
-0.014121448621153831,
0.004928917624056339,
-0.05562514439225197,
-0.012807825580239296,
-0.0438251830637455,
0.05177486687898636,
0.030643654987215996,
-0.00896887481212616,
0.03438068553805351,
0.0489211343228817,
0.063099205493927,
-0.02207113243639469,
0.0591130405664444,
0.0651375874876976,
-0.025774190202355385,
-0.02545711025595665,
-0.02566094696521759,
0.011573472060263157,
0.05766352266073227,
0.01671472191810608,
-0.005478147882968187,
-0.01803966797888279,
0.02323753945529461,
-0.011579134501516819,
-0.03216111660003662,
-0.02812965214252472,
-0.03356533497571945,
0.0397484228014946,
0.03589814901351929,
-0.06427693367004395,
0.015355801209807396,
-0.012479418888688087,
-0.0003814886149484664,
0.02973770909011364,
-0.025910083204507828,
-0.04334956035017967,
-0.036169931292533875,
-0.0026329082902520895,
0.012366175651550293,
-0.054492708295583725,
-0.04033728688955307,
0.11170326173305511,
0.0028112665750086308,
0.00500818807631731,
0.04647507891058922,
0.052046652883291245,
-0.043077778071165085,
-0.023916998878121376,
-0.04298718273639679,
0.03834420442581177,
0.013691123574972153,
-0.03526398539543152,
0.030190682038664818,
-0.01854926347732544,
0.036351121962070465,
-0.038819827139377594,
0.0012598325265571475,
-0.002672543516382575,
0.0013836923753842711,
-0.02665749005973339,
0.0650922879576683,
0.006398250348865986,
0.0692143440246582,
-0.01803966797888279,
-0.03032657504081726,
-0.05236373469233513,
-0.01689591072499752,
0.04212653264403343,
-0.030824845656752586,
0.03220641613006592,
0.002120482036843896,
0.03786858171224594,
0.034946903586387634,
-0.004413660150021315,
-0.04088085517287254,
-0.010639214888215065,
0.003550179535523057,
-0.007757171057164669,
0.011448904871940613,
0.022897809743881226,
0.03336149826645851,
-0.006664372514933348,
-0.07152451574802399,
-0.04923821613192558,
-0.03408625349402428,
-0.0045014237985014915,
-0.0038531057070940733,
-0.044119615107774734,
-0.09956356883049011,
0.03426744416356087,
0.043870482593774796,
0.03752885386347771,
0.002787202363833785,
0.0033604970667511225,
-0.07623543590307236,
0.0549456812441349,
0.06762894243001938,
0.05521746724843979,
-0.07392527163028717,
-0.032500848174095154,
-0.07868149131536484,
0.039204854518175125,
0.023282837122678757,
0.07609954476356506,
-0.0006178841576911509,
-0.0673118606209755,
-0.00012704489927273244,
-0.019251372665166855,
-0.050234757363796234,
-0.02017996832728386,
-0.006896521430462599,
0.01202644594013691,
-0.0438251830637455,
0.010441038757562637,
-0.001261955825611949,
-0.03202522546052933,
-0.03093808889389038,
0.01007866021245718,
-0.026770733296871185,
0.035513121634721756,
0.07877209037542343,
-0.07872679084539413,
0.005730114411562681,
0.026612192392349243,
0.010157930664718151,
-0.02219570055603981,
0.03823096305131912,
-0.0013299018610268831,
-0.007972333580255508,
0.07188688963651657,
-0.004073930438607931,
0.01730358600616455,
0.030802195891737938,
-0.030621007084846497,
-0.04434610530734062,
-0.010214552283287048,
0.012739879079163074,
-0.06205736845731735,
-0.018877670168876648,
-0.014608394354581833,
-0.020247913897037506,
0.006817250978201628,
-0.018560588359832764,
0.09548681229352951,
0.0036464366130530834,
-0.03336149826645851,
0.06889726966619492,
0.006766291335225105,
-0.023101648315787315,
0.04806048795580864,
0.0036124635953456163,
-0.0025380670558661222,
0.029194140806794167,
0.04670156538486481,
-0.0509595163166523,
-0.028967654332518578,
-0.06590764224529266,
0.015661558136343956,
0.009738929569721222,
0.013294771313667297,
0.024347323924303055,
0.010259849019348621,
0.032093171030282974,
-0.014676340855658054,
-0.08031219989061356,
-0.025819487869739532,
0.032682035118341446,
0.0017000660300254822,
0.004413660150021315,
-0.04824167490005493,
-0.03517339006066322,
-0.037710040807724,
-0.024347323924303055,
0.05118600279092789,
-0.005815046839416027,
-0.04642978310585022,
-0.054266221821308136,
0.03299911692738533,
0.016023937612771988,
-0.04579561948776245,
-0.007575981318950653,
0.005588560365140438,
-0.008346036076545715,
-0.03909160941839218,
0.03197992593050003,
-0.021550213918089867,
0.011664067395031452,
0.03073425032198429,
0.020519698038697243,
-0.022388214245438576,
0.011924526654183865,
0.04443669691681862,
-0.0416962094604969,
0.0037370312493294477,
-0.03032657504081726,
0.03254614397883415,
-0.004037125967442989,
-0.011024242267012596,
-0.022410862147808075,
-0.002947158645838499,
0.05825239047408104,
0.018583236262202263,
-0.023158269003033638,
0.07419705390930176,
0.01150552649050951,
0.024483216926455498,
0.0011543745640665293,
-0.07890798151493073,
0.06953142583370209,
0.004291923716664314,
0.04142442345619202,
0.009637011215090752,
-0.011709364131093025,
-0.02731430158019066,
0.017620667815208435,
-0.024981487542390823,
-0.032478198409080505,
-0.013113582506775856,
0.033293548971414566,
0.06540936976671219,
0.004826998803764582,
-0.053450871258974075,
-0.052273139357566833,
0.06187617778778076,
-0.050642434507608414,
0.039635177701711655,
-0.06590764224529266,
-0.005506458692252636,
-0.057572927325963974,
0.0529978983104229,
-0.01210571639239788,
0.0023073337506502867,
0.004422153811901808,
0.0031396723352372646,
0.001659015309996903,
-0.014415880665183067,
0.05870536342263222,
0.053858548402786255,
0.02951122261583805,
-0.054085034877061844,
-0.012558689340949059,
-0.0030745575204491615,
-0.028016408905386925,
0.04192269593477249,
-0.06246504187583923,
0.030009493231773376,
0.029828304424881935,
0.008442292921245098,
-0.027744624763727188,
-0.0010347613133490086,
0.0023738641757518053,
0.014993421733379364,
-0.1080794706940651,
-0.04312307387590408,
0.036985285580158234,
0.02056499570608139,
-0.02729165181517601,
-0.023916998878121376,
0.020010102540254593,
-0.08013100922107697,
0.014608394354581833,
-0.0023115803487598896,
0.019002238288521767,
0.02095002308487892,
0.023577269166707993,
0.02914884313941002,
-0.004374024923890829,
-0.017133722081780434,
0.04842286556959152,
-0.019307995215058327,
-0.026951922103762627,
0.051412489265203476,
0.05028005689382553,
-0.03132311627268791,
0.009036821313202381,
0.0004965013940818608,
-0.004441970959305763,
0.04500291496515274,
0.05616871267557144,
-0.011590458452701569,
-0.00845927931368351,
-0.00203554960899055,
0.03222906216979027,
0.04273804649710655,
0.07791143655776978,
-0.030258627608418465,
-0.05961130931973457,
-0.010707160457968712,
-0.013985556550323963,
-0.012513392604887486,
-0.01717901974916458,
-0.04951000213623047,
-0.0346071720123291,
-0.07596365362405777,
-0.020916050300002098,
0.03259144350886345,
-0.007451413664966822,
-0.032251711934804916,
-0.037166472524404526,
-0.0011147394543513656,
-0.0017170525388792157,
0.022308943793177605,
0.02278456650674343,
0.027382247149944305,
0.0033378482330590487,
-0.06051725521683693,
0.019002238288521767,
-0.03467512130737305,
0.04158296436071396,
-0.00041192275239154696,
0.06246504187583923,
0.03689469024538994,
-0.018945615738630295,
-0.022127754986286163,
0.038366854190826416,
0.022388214245438576,
0.02772197686135769,
0.01353258267045021,
0.0467921607196331,
-0.008997186087071896,
0.024302026256918907,
0.019738320261240005,
-0.04405166953802109,
0.03850274533033371,
0.008883941918611526,
0.013509933836758137,
-0.06151380017399788,
0.013736420311033726,
-0.019760968163609505,
0.0024234082084149122,
0.0355810672044754,
-0.03012273646891117,
0.005206363741308451,
-0.063008613884449,
-0.036147285252809525,
0.009240658953785896,
-0.011092187836766243,
0.025525055825710297,
0.034924253821372986,
-0.01785847917199135,
0.005067640915513039,
-0.07492181658744812,
0.02076883427798748,
0.049374110996723175,
0.006805926561355591,
0.0178131815046072,
0.004555214662104845,
0.06559056043624878,
-0.00008564029849367216,
0.0038757543079555035,
0.0198742114007473,
0.047335729002952576,
-0.0570293627679348,
-0.02527591958642006,
-0.0069135078229010105,
-0.013668474741280079,
0.021142536774277687,
-0.009518105536699295,
-0.013611853122711182,
-0.01182260736823082,
-0.01875310204923153,
0.00336332805454731,
-0.04149236902594566,
0.004784532357007265,
-0.03560371696949005,
-0.0017680120654404163,
0.04729042947292328,
-0.008617820218205452,
-0.04518410563468933,
-0.0015641740756109357,
0.01090533658862114,
-0.030802195891737938,
-0.028831761330366135,
0.031119277700781822,
0.024890892207622528,
0.042851291596889496,
0.023667864501476288,
-0.012615310959517956,
0.09449026733636856,
0.01457442156970501,
0.000015018017620604951,
0.01486885454505682,
0.05689346790313721,
0.00917271338403225,
-0.041673559695482254,
0.007598630152642727,
0.05145778879523277,
-0.028627924621105194,
0.06409575045108795,
0.0386839359998703,
-0.05005357041954994,
0.060562554746866226,
-0.02405289188027382,
-0.010339119471609592,
0.05929422751069069,
-0.0357169583439827,
0.0021516240667551756,
-0.04434610530734062,
0.021063266322016716,
-0.025593001395463943,
-0.051412489265203476,
-0.02627246268093586,
-0.02670278586447239,
0.007428764831274748,
-0.040427882224321365,
0.04969118908047676,
-0.06196677312254906,
0.015548314899206161,
-0.009653997607529163,
-0.0015415253583341837,
0.044119615107774734,
0.06450342386960983,
0.00851023942232132,
0.048966433852910995,
-0.045319996774196625,
-0.0012187818065285683,
-0.011262052692472935,
-0.01846999302506447,
0.025615651160478592,
-0.0018699311185628176,
0.006522818002849817,
0.02464175783097744,
0.012898419983685017,
0.0835736095905304,
0.01789245195686817,
-0.03365593031048775,
0.05254492536187172,
0.01242279727011919,
0.007910049520432949,
0.029488572850823402,
-0.011403607204556465,
-0.03814036771655083,
-0.04787929728627205,
0.063099205493927,
-0.05462860316038132,
0.007994981482625008,
0.007887400686740875,
-0.06944083422422409,
0.01748477667570114,
-0.013170204125344753,
-0.04543323814868927,
0.0028296688105911016,
0.03073425032198429,
-0.006924832239747047,
-0.020225265994668007,
0.051412489265203476,
-0.01241147331893444,
-0.00657377764582634,
0.00003793210635194555,
0.005534769501537085,
0.025706244632601738,
0.020270563662052155,
0.003748355433344841,
-0.002028471790254116,
0.052227843552827835,
0.045297347009181976,
-0.050415948033332825,
0.04787929728627205,
-0.011296026408672333,
0.027336949482560158,
0.004640147089958191,
-0.011698040179908276,
0.06482050567865372,
0.059203632175922394,
0.0016363667091354728,
0.07111683487892151,
0.010203227400779724,
0.01822085864841938,
-0.055896926671266556,
0.008527225814759731,
-0.0029188478365540504,
-0.10916660726070404,
0.04498026520013809,
0.06885197013616562,
0.04627124220132828,
-0.041062045842409134,
0.0326140895485878,
0.015016070567071438,
-0.08067457377910614,
-0.023962296545505524,
0.010610903613269329,
-0.005724452435970306,
0.08928107470273972,
-0.008583847433328629,
0.003397301072254777,
-0.019104156643152237,
0.012615310959517956,
-0.050370652228593826,
-0.047335729002952576,
0.06957672536373138,
0.013011663220822811,
0.013883637264370918,
0.0488758385181427,
-0.0264762993901968,
-0.023781107738614082,
-0.032704684883356094,
0.0005386137636378407,
0.012479418888688087,
-0.025004135444760323,
-0.06663239747285843,
0.018073642626404762,
0.012003797106444836,
0.0188323725014925,
-0.01023153867572546,
-0.004402336198836565,
-0.046157997101545334,
0.046112701296806335,
-0.013589204289019108,
0.018719129264354706,
0.027857869863510132,
0.031481657177209854
]
|
42,133 | werkzeug.datastructures.headers | __contains__ | Check if a key is present. | def __contains__(self, key):
"""Check if a key is present."""
try:
self.__getitem__(key, _get_mode=True)
except KeyError:
return False
return True
| (self, key) | [
0.05579458177089691,
-0.058907587081193924,
-0.07094909250736237,
0.0311813373118639,
0.0439925417304039,
0.0021701219957321882,
0.016847843304276466,
-0.0324641689658165,
0.04775550961494446,
-0.05603404343128204,
-0.04453988000750542,
-0.0005607039202004671,
0.07970654964447021,
-0.03083924949169159,
-0.03294309228658676,
-0.026050014421343803,
0.005430649966001511,
0.057983946055173874,
-0.009193619713187218,
-0.06581776589155197,
-0.021705495193600655,
0.035714007914066315,
0.08367477357387543,
-0.004930345807224512,
0.0034828854259103537,
0.04867914691567421,
0.05572616681456566,
-0.005161255598068237,
0.07170168310403824,
0.034773264080286026,
-0.07450680434703827,
-0.0024929677601903677,
-0.003187834285199642,
0.023501457646489143,
-0.011015239171683788,
0.00938176829367876,
0.008971262723207474,
0.01563343033194542,
0.021808121353387833,
-0.03386672958731651,
-0.005999371409416199,
0.030343221500515938,
0.03739023953676224,
-0.019806906580924988,
0.013290125876665115,
0.02351856231689453,
-0.004468526691198349,
0.07491730898618698,
0.018575388938188553,
0.017112961038947105,
0.03352464362978935,
-0.00475502572953701,
-0.003572683548554778,
-0.03426013141870499,
-0.0861378014087677,
0.009313350543379784,
0.0004840013280045241,
0.07382263243198395,
-0.005588865838944912,
0.051689524203538895,
-0.017053095623850822,
0.009099545888602734,
-0.01049355510622263,
-0.017651749774813652,
0.0027153249830007553,
-0.0360218845307827,
-0.04577139765024185,
-0.034362759441137314,
0.02589607611298561,
0.010536315850913525,
-0.014846627600491047,
-0.01426507718861103,
-0.009646886959671974,
0.05336575582623482,
-0.0228514913469553,
-0.03184840828180313,
-0.03219049796462059,
0.010450794361531734,
0.020764753222465515,
-0.0039019433315843344,
-0.019755592569708824,
-0.05579458177089691,
-0.018712224438786507,
-0.001232586451806128,
-0.04320573806762695,
0.050834305584430695,
0.03379831090569496,
-0.008971262723207474,
0.06328631192445755,
0.036569226533174515,
-0.03523508459329605,
0.068622887134552,
0.015932757407426834,
0.003192110452800989,
0.023894859477877617,
-0.015624877996742725,
0.05021854490041733,
-0.0368771068751812,
-0.027144696563482285,
-0.03947697579860687,
0.004303896799683571,
-0.0030253424774855375,
0.10173702985048294,
-0.0027196011506021023,
0.012708576396107674,
0.04867914691567421,
-0.0255539882928133,
0.009706752374768257,
-0.013341438956558704,
-0.0022000547032803297,
-0.02820517122745514,
-0.034773264080286026,
-0.011468506418168545,
0.024989541620016098,
0.005169807467609644,
-0.044813551008701324,
-0.00009247071284335107,
0.0027773284818977118,
-0.05750502273440361,
-0.037013940513134,
0.016539962962269783,
0.037082359194755554,
-0.015838682651519775,
-0.01699323020875454,
0.0825800895690918,
-0.048200223594903946,
-0.024818498641252518,
0.05210002884268761,
0.04187159240245819,
0.0021359131205826998,
-0.009390320628881454,
0.015180163085460663,
-0.002597732236608863,
0.020012158900499344,
0.014042720198631287,
0.013811810873448849,
0.015659086406230927,
0.010100153274834156,
-0.06106274202466011,
0.07122275978326797,
0.015077536925673485,
-0.01682218722999096,
0.048713356256484985,
0.026563147082924843,
0.014872283674776554,
-0.04320573806762695,
-0.044197794049978256,
-0.010544868186116219,
0.042350515723228455,
-0.015077536925673485,
0.012306622229516506,
-0.0005623074830509722,
-0.013965750113129616,
0.002300543012097478,
-0.03176288679242134,
-0.013555244542658329,
-0.006046408787369728,
0.015316998586058617,
-0.01654851622879505,
-0.03807441517710686,
0.038416504859924316,
0.026631565764546394,
-0.039203304797410965,
-0.010758673772215843,
-0.044881969690322876,
0.0228514913469553,
-0.04477934166789055,
-0.007226612884551287,
0.05374205484986305,
0.052784208208322525,
0.009732408449053764,
-0.02124367654323578,
-0.051347438246011734,
0.028684094548225403,
0.00488330889493227,
0.02488691546022892,
-0.0482686422765255,
0.04077691212296486,
-0.0034379863645881414,
-0.024750079959630966,
0.012836859561502934,
-0.02030293457210064,
-0.05476832017302513,
-0.026443416252732277,
0.023398831486701965,
0.03951118513941765,
0.026203954592347145,
-0.04087953642010689,
0.01860959641635418,
0.07950129359960556,
-0.040297988802194595,
-0.06297843158245087,
0.013076321221888065,
0.018233301118016243,
-0.025622405111789703,
-0.038348086178302765,
0.004008845891803503,
0.003656067419797182,
-0.0457029826939106,
0.08531679213047028,
-0.017959630116820335,
-0.05093692988157272,
0.007072673179209232,
0.046079277992248535,
-0.013521035201847553,
0.004451422486454248,
0.006730584893375635,
-0.010673151351511478,
0.008894292637705803,
0.012674367055296898,
-0.046831872314214706,
-0.07806452363729477,
0.04190580174326897,
0.06212321296334267,
0.09065336734056473,
0.043445199728012085,
-0.047276586294174194,
-0.013777601532638073,
-0.024322470650076866,
0.034311443567276,
0.08572729676961899,
-0.007175299804657698,
0.04323994740843773,
0.021175257861614227,
0.013435513712465763,
0.01210136990994215,
0.01337564829736948,
0.02572503127157688,
-0.033439118415117264,
-0.014504538848996162,
0.0528184175491333,
0.07395946234464645,
-0.004404385574162006,
0.022697551175951958,
0.012751337140798569,
-0.04033219814300537,
-0.0009204310481436551,
0.05582879111170769,
0.05545249581336975,
0.005811222828924656,
0.042761024087667465,
0.04566877335309982,
0.0033374978229403496,
-0.0019349362701177597,
-0.03314834460616112,
-0.027623621746897697,
0.003403777489438653,
0.06472308188676834,
-0.0023240617010742426,
-0.00916796363890171,
0.019208252429962158,
-0.009407425299286842,
0.0012657262850552797,
-0.01912272907793522,
0.004930345807224512,
-0.07074383646249771,
-0.08531679213047028,
0.007004255428910255,
0.01927666924893856,
-0.009946214035153389,
-0.06568092852830887,
0.02115815505385399,
0.05658138543367386,
0.048884402960538864,
-0.051928985863924026,
0.01265726238489151,
0.06893076747655869,
0.06680982559919357,
-0.02283438667654991,
-0.013743393123149872,
0.04761867597699165,
0.018216196447610855,
-0.00037709876778535545,
0.015257133170962334,
0.018712224438786507,
0.02445930615067482,
0.018814850598573685,
-0.016599828377366066,
-0.009108098223805428,
0.029111703857779503,
0.03694552555680275,
0.0116395503282547,
-0.014290734194219112,
0.0050885616801679134,
-0.03951118513941765,
-0.016454441472887993,
-0.010177123360335827,
0.012717128731310368,
0.005926677957177162,
-0.009270589798688889,
-0.00462674256414175,
-0.0030809317249804735,
0.00636711623519659,
0.023142265155911446,
-0.02208179235458374,
0.04724237695336342,
-0.010194228030741215,
-0.05384467914700508,
0.04245314374566078,
0.006508227903395891,
0.015051879920065403,
0.008060452528297901,
-0.056684013456106186,
-0.031147129833698273,
0.0028478840831667185,
-0.008175907656550407,
0.027315741404891014,
0.03865596652030945,
-0.02073054388165474,
0.04635294899344444,
-0.02030293457210064,
-0.0001840060285758227,
0.020354246720671654,
0.030274804681539536,
0.010459346696734428,
-0.04724237695336342,
-0.04724237695336342,
-0.0049175177700817585,
-0.031027399003505707,
0.07683300971984863,
-0.038348086178302765,
0.00039607397047802806,
-0.042350515723228455,
0.003170729847624898,
-0.02139761671423912,
-0.059318091720342636,
0.019841114059090614,
-0.0334562249481678,
0.001677301130257547,
0.037595491856336594,
-0.004823443479835987,
-0.0684860572218895,
0.037082359194755554,
0.01681363396346569,
-0.04850810393691063,
-0.014564404264092445,
-0.027076279744505882,
0.018233301118016243,
0.07348053902387619,
0.03379831090569496,
0.00596516253426671,
-0.019652966409921646,
-0.010929717682301998,
-0.03148921579122543,
0.03523508459329605,
-0.040297988802194595,
-0.003628272796049714,
0.023484354838728905,
0.04248735308647156,
-0.04987645894289017,
-0.006555264815688133,
-0.03889542818069458,
0.03561137989163399,
0.016326159238815308,
0.02981298603117466,
-0.018968790769577026,
0.04070849344134331,
-0.0003693483304232359,
0.002452344633638859,
0.0038869769778102636,
0.1323881298303604,
-0.039203304797410965,
-0.06058381870388985,
0.0013715598033741117,
-0.10091601312160492,
-0.020508186891674995,
-0.021962061524391174,
-0.019327983260154724,
-0.014222316443920135,
-0.06174691766500473,
0.00016877241432666779,
-0.007803886663168669,
-0.04094795510172844,
0.0035855118185281754,
0.02914591319859028,
-0.050492215901613235,
0.024065904319286346,
0.03992168977856636,
-0.01674521714448929,
0.031985245645046234,
0.035303499549627304,
0.043787289410829544,
-0.009740960784256458,
0.008150250650942326,
0.004421489778906107,
0.012794097885489464,
0.01129746250808239,
0.005879640579223633,
0.005858260206878185,
0.004793510772287846,
-0.01282830722630024,
0.0001033614098560065,
-0.08764299005270004,
-0.0001556768547743559,
-0.09749513119459152,
-0.026015806943178177,
0.0361587218940258,
-0.051586899906396866,
-0.021791016682982445,
0.03403777256608009,
0.08401685953140259,
-0.012794097885489464,
-0.027247324585914612,
0.03838229551911354,
0.03718498721718788,
0.03814283385872841,
-0.0005342455115169287,
-0.008954158052802086,
-0.01589854806661606,
-0.031301070004701614,
0.004297482781112194,
-0.053536802530288696,
-0.027059175074100494,
-0.033678580075502396,
-0.05791553109884262,
-0.02480139397084713,
0.009587021544575691,
-0.013811810873448849,
-0.032241810113191605,
0.04053745046257973,
0.004938898142427206,
-0.0439925417304039,
-0.03975064679980278,
0.013358543626964092,
-0.035303499549627304,
-0.00883442722260952,
-0.01282830722630024,
-0.045908235013484955,
0.016941918060183525,
-0.018831955268979073,
-0.09024286270141602,
-0.06674140691757202,
0.015932757407426834,
-0.003824973478913307,
-0.005302366800606251,
-0.03999010846018791,
-0.031608946621418,
-0.06643352657556534,
-0.04861073195934296,
0.026648670434951782,
-0.01656562089920044,
0.004772130399942398,
-0.03253258764743805,
0.016847843304276466,
0.005845431704074144,
-0.02317647449672222,
-0.012930933386087418,
0.08059597760438919,
0.11651523411273956,
-0.036569226533174515,
-0.02829069271683693,
0.05801815539598465,
-0.01431639026850462,
0.006097721867263317,
0.01264871098101139,
-0.032224707305431366,
-0.07423313707113266,
0.01346116978675127,
0.029453793540596962,
0.017087304964661598,
-0.04423200339078903,
0.035200875252485275,
-0.046421367675065994,
-0.03261810913681984,
0.009681095369160175,
0.04823443293571472,
-0.01189611665904522,
0.04686608165502548,
0.024698767811059952,
0.019413504749536514,
-0.04245314374566078,
-0.025160586461424828,
-0.040229570120573044,
-0.054836735129356384,
-0.004241893533617258,
0.013196052052080631,
0.0188661627471447,
0.0723174437880516,
-0.034106191247701645,
-0.003350326092913747,
-0.008590689860284328,
-0.03547454625368118,
-0.022560715675354004,
-0.041563715785741806,
0.010065944865345955,
-0.059489134699106216,
-0.016505755484104156,
0.03509824723005295,
0.001543672988191247,
-0.03285757079720497,
0.02090158872306347,
-0.02480139397084713,
0.007436141837388277,
0.04536089301109314,
0.07457522302865982,
-0.03496141359210014,
-0.04122162610292435,
0.04019536077976227,
0.007448970340192318,
0.002304819179698825,
0.020525291562080383,
0.04782392829656601,
0.026956548914313316,
0.04416358470916748,
0.0009428805788047612,
-0.04375308007001877,
-0.006375668570399284,
0.015565012581646442,
0.015180163085460663,
-0.042863648384809494,
0.008009139448404312,
0.008500891737639904,
0.03660343587398529,
-0.03441407158970833,
0.0674939975142479,
0.03975064679980278,
-0.0528184175491333,
-0.044300418347120285,
-0.0042098225094377995,
0.05572616681456566,
0.06639931350946426,
0.009082441218197346,
0.0526815801858902,
-0.027230219915509224,
-0.044471465051174164,
0.055931419134140015,
-0.028170961886644363,
-0.02336462214589119,
-0.022389670833945274,
0.036466602236032486,
-0.03501272574067116,
-0.005315195303410292,
-0.017121514305472374,
0.02574213594198227,
0.013315782882273197,
0.04713975265622139,
0.017617542296648026,
0.0029334062710404396,
-0.00031856962596066296,
0.039613813161849976,
0.04077691212296486,
-0.003974637016654015,
0.04891861230134964,
-0.029659045860171318,
0.02276596799492836,
0.03422592207789421,
-0.05069746822118759,
-0.05435781180858612,
0.022218627855181694,
-0.010929717682301998,
0.002817951375618577,
0.03821124881505966,
0.04180317744612694,
-0.03429434075951576,
0.09188488870859146,
-0.006127654574811459,
0.0015650534769520164,
0.006418429780751467,
-0.0060806176625192165,
0.045224059373140335,
0.011519819498062134,
-0.020114785060286522,
0.00012868395424447954,
0.00998042244464159,
-0.04915807396173477,
-0.08203274756669998,
-0.042589977383613586,
-0.03680868819355965,
0.07183852046728134,
-0.008509443141520023,
0.005246777553111315,
0.018472762778401375,
-0.03383252024650574,
-0.009099545888602734,
-0.023758023977279663,
0.028393318876624107,
-0.016368919983506203,
0.01145995408296585,
-0.04204263910651207,
-0.07566990703344345,
-0.04546352103352547,
-0.009963318705558777,
0.042076848447322845,
0.01690770871937275,
0.008885740302503109,
-0.01151126716285944,
-0.009826483204960823,
0.0036795861087739468,
-0.02242388017475605,
-0.013255917467176914,
-0.0074703507125377655,
-0.016847843304276466,
0.027486786246299744,
-0.04946595057845116,
0.0860009714961052,
0.019430609419941902,
0.029676150530576706,
-0.0317457839846611,
0.010057392530143261,
0.0028051231056451797,
-0.0006114826537668705,
-0.023398831486701965,
0.018130673095583916,
-0.029932716861367226,
0.014957806095480919,
0.010792882181704044,
-0.0010476451134309173,
0.034533802419900894,
0.005195464473217726,
-0.08223799616098404,
-0.03906647115945816,
-0.019071416929364204,
0.02167128585278988,
0.02062791772186756,
0.034362759441137314,
-0.0069443900138139725,
0.019601652398705482,
0.0013138324720785022,
0.014632822014391422,
-0.006563817150890827,
-0.005734253209084272,
0.017685959115624428,
-0.010878404602408409,
0.026032911613583565,
-0.040469031780958176,
-0.07245428115129471,
0.03136948496103287,
-0.02394617348909378,
-0.017087304964661598,
-0.05901021137833595,
0.010544868186116219,
0.00756014883518219,
0.04861073195934296,
-0.015684742480516434,
-0.010989583097398281,
-0.0036539293359965086,
0.029847193509340286,
0.011058000847697258,
0.010100153274834156,
0.06807554513216019,
-0.06554409861564636,
-0.02803412638604641,
-0.03742444887757301,
0.028564363718032837,
-0.00743186566978693,
0.049055445939302444,
0.005866812542080879,
-0.01215268298983574,
0.09085862338542938,
-0.011485611088573933,
-0.03297730162739754,
0.01902010291814804,
-0.009373215958476067,
0.01091261301189661,
0.020696334540843964,
-0.03964802250266075,
-0.0019990778528153896,
-0.007051292806863785,
-0.05080009624361992,
-0.030941875651478767,
-0.016326159238815308,
-0.020662127062678337,
-0.0723174437880516,
-0.0377323254942894,
0.032395750284194946,
-0.022475194185972214,
-0.048884402960538864,
-0.034858785569667816,
0.011134970001876354,
0.07286478579044342,
0.033935148268938065,
-0.010544868186116219,
-0.04645557701587677,
-0.04231631010770798,
-0.01723269186913967,
0.000017622218365431763,
-0.018900372087955475,
-0.04782392829656601,
0.01758333295583725,
-0.01647154614329338,
0.02529742196202278,
0.019413504749536514,
-0.007709812372922897,
0.05620509013533592,
-0.025502674281597137,
0.05476832017302513,
0.02148313820362091,
-0.04618190601468086,
0.015992622822523117,
-0.09079020470380783,
0.016882052645087242,
-0.061541665345430374,
0.002533590653911233,
0.06800713390111923,
-0.00794927403330803,
-0.010288301855325699,
-0.01773727312684059,
0.04648978263139725,
0.0054990677163004875,
0.005918125621974468,
-0.03660343587398529,
0.03821124881505966,
0.0049474504776299,
0.003243423532694578,
-0.03930593281984329,
0.011759281158447266,
-0.03455090522766113,
0.04426621273159981,
0.025536883622407913,
-0.008436749689280987,
-0.045976653695106506,
0.056786637753248215,
0.046079277992248535,
-0.09763196855783463,
0.031027399003505707,
-0.0509711392223835,
0.005738529376685619,
-0.00227274838835001,
0.02038845606148243,
0.011126418597996235,
0.027743352577090263,
-0.02165418304502964,
0.013751945458352566,
0.0007151780882850289,
-0.0008573585073463619,
-0.019550340250134468,
0.015145954675972462,
-0.07012807577848434,
-0.05210002884268761,
0.03636397421360016,
0.05548670515418053,
0.0056187985464930534,
-0.03270363062620163,
0.08032230287790298,
0.01291382871568203,
-0.04724237695336342,
-0.05059484392404556,
-0.02028582990169525,
0.006007923744618893,
0.062054798007011414,
0.029419584199786186,
0.01519726775586605,
0.015607773326337337,
-0.05240790918469429,
-0.004241893533617258,
-0.015214372426271439,
0.011058000847697258,
0.0018408620962873101,
-0.009826483204960823,
0.026888132095336914,
0.010758673772215843,
0.03632976487278938,
0.022440984845161438,
0.026050014421343803,
0.042589977383613586,
0.005315195303410292,
-0.061199575662612915,
0.017891211435198784,
0.04861073195934296,
0.011562580242753029,
-0.08579571545124054,
-0.03131817281246185,
-0.04604506865143776,
0.03711656853556633,
-0.03302861377596855,
0.002171190921217203,
0.005982267204672098,
0.03780074417591095
]
|
42,135 | werkzeug.datastructures.headers | __delitem__ | null | def __delitem__(self, key, _index_operation=True):
if _index_operation and isinstance(key, (int, slice)):
del self._list[key]
return
key = key.lower()
new = []
for k, v in self._list:
if k.lower() != key:
new.append((k, v))
self._list[:] = new
| (self, key, _index_operation=True) | [
0.04760301485657692,
0.007676124572753906,
-0.07300601899623871,
-0.02943434752523899,
-0.041491568088531494,
-0.043700527399778366,
-0.02133483998477459,
0.029158227145671844,
0.06796223670244217,
-0.04741893708705902,
-0.042301520705223083,
0.017763692885637283,
0.03596917912364006,
-0.04498908296227455,
-0.04826570302248001,
-0.013585083186626434,
0.004648013040423393,
0.04336918145418167,
-0.014634338207542896,
-0.049517445266246796,
0.0031155492179095745,
0.009636573493480682,
0.024261707440018654,
0.06037814915180206,
-0.018288319930434227,
0.03225076571106911,
0.05629158020019531,
-0.007473636884242296,
0.07164382934570312,
-0.026912454515695572,
-0.012462196871638298,
-0.013695531524717808,
-0.032379623502492905,
0.021463695913553238,
-0.027575142681598663,
-0.01727588102221489,
-0.025071658194065094,
0.005600625649094582,
0.033152759075164795,
0.043995052576065063,
0.04535724222660065,
0.005025376565754414,
0.035601019859313965,
-0.027648774906992912,
0.09137717634439468,
0.0731901004910469,
0.017570409923791885,
0.06059904396533966,
0.028532356023788452,
0.003354853019118309,
-0.054598044604063034,
0.004878112580627203,
0.02220001444220543,
0.013189312070608139,
-0.02457464300096035,
0.029010964557528496,
0.017487574368715286,
0.026802007108926773,
0.021923894062638283,
0.04719804227352142,
-0.02041444182395935,
-0.009411076083779335,
-0.05677018687129021,
-0.04270649701356888,
0.026783598586916924,
-0.04763983190059662,
-0.0013552869204431772,
-0.011974385939538479,
-0.0010906723327934742,
-0.04594630002975464,
-0.016999762505292892,
-0.019843794405460358,
0.0410129614174366,
0.03118310496211052,
-0.014192546717822552,
-0.03447813168168068,
-0.0030557233840227127,
0.04756620153784752,
0.03865674138069153,
-0.02542140893638134,
-0.014441054314374924,
-0.007409208919852972,
-0.015352249145507812,
0.01513135340064764,
-0.03193783015012741,
0.0410129614174366,
0.054413966834545135,
0.010879111476242542,
0.051174163818359375,
0.03602440282702446,
-0.042264703661203384,
-0.001443875371478498,
-0.06324978917837143,
-0.016530359163880348,
-0.005964182782918215,
0.018417175859212875,
-0.010023141279816628,
-0.043001022189855576,
0.016953742131590843,
-0.01721145398914814,
0.060304515063762665,
0.021702999249100685,
0.015039313584566116,
0.021537328138947487,
0.004330475348979235,
0.02142687886953354,
0.01732190139591694,
-0.01801220141351223,
-0.02711494266986847,
0.04745575040578842,
-0.026010464876890182,
0.04811843857169151,
0.023138821125030518,
-0.01716543361544609,
0.0020202749874442816,
0.04495226964354515,
-0.030870169401168823,
-0.06781496852636337,
-0.03129355236887932,
-0.019972650334239006,
0.030612457543611526,
-0.03663186356425285,
-0.04035027325153351,
0.013980855233967304,
0.0329686775803566,
0.00821455754339695,
0.010041548870503902,
0.026783598586916924,
0.00896468199789524,
0.05345674976706505,
-0.04410549998283386,
0.017413942143321037,
-0.009940304793417454,
0.005807715002447367,
0.035582609474658966,
-0.018656479194760323,
0.02218160592019558,
-0.013235331512987614,
-0.04200699180364609,
0.010151996277272701,
0.014413442462682724,
0.022770661860704422,
0.048817943781614304,
0.10904882848262787,
0.05168958753347397,
-0.07930154353380203,
-0.06398610770702362,
-0.010290056467056274,
-0.015039313584566116,
0.030004994943737984,
-0.07068661600351334,
0.08077418059110641,
0.02216319926083088,
-0.057027898728847504,
0.033115942031145096,
0.02788807824254036,
-0.06623188406229019,
-0.018315931782126427,
-0.06199805065989494,
0.011017171666026115,
0.05422988533973694,
0.005503983702510595,
0.008835827000439167,
0.010667419992387295,
-0.03206668794155121,
-0.01792936399579048,
0.029268676415085793,
-0.04200699180364609,
-0.057764217257499695,
0.04278012737631798,
-0.0041486965492367744,
-0.0162358321249485,
0.0065946560353040695,
0.027335839346051216,
-0.022752253338694572,
0.03913534805178642,
-0.016208220273256302,
0.033189572393894196,
0.013308963738381863,
-0.04657217115163803,
-0.014947273768484592,
-0.012839560396969318,
-0.018269913271069527,
-0.023580612614750862,
-0.005715675186365843,
0.06229257956147194,
-0.015748020261526108,
0.025973647832870483,
0.027464695274829865,
0.033907484263181686,
-0.05993635579943657,
-0.06785178184509277,
0.006866173818707466,
-0.04973834007978439,
0.008752990514039993,
-0.009507717564702034,
-0.0410129614174366,
0.01389801874756813,
0.01352065522223711,
0.04756620153784752,
-0.08688563108444214,
-0.026746783405542374,
0.007096273358911276,
0.037257734686136246,
-0.0329318605363369,
0.0031408602371811867,
0.021776631474494934,
-0.009434085339307785,
0.0024413573555648327,
0.01807662844657898,
0.05249953642487526,
-0.009480105713009834,
0.033281613141298294,
0.035601019859313965,
0.05393536016345024,
-0.0817313939332962,
-0.08452940732240677,
0.0010038097389042377,
0.05264680087566376,
0.002054789802059531,
0.02131643146276474,
0.0024827751331031322,
0.02950797975063324,
-0.025955241173505783,
0.03619007393717766,
0.02527414634823799,
0.007459830492734909,
-0.003877179231494665,
-0.015260209329426289,
0.008384831249713898,
0.028826884925365448,
-0.015757223591208458,
0.04811843857169151,
-0.0028026136569678783,
0.003354853019118309,
-0.004427117295563221,
-0.08445577323436737,
-0.019825385883450508,
0.028256237506866455,
-0.012572645209729671,
-0.012627868913114071,
0.015066925436258316,
0.031551264226436615,
0.06413337588310242,
-0.025642305612564087,
0.06483288109302521,
0.024924393743276596,
0.058500535786151886,
-0.0010423514759168029,
-0.002116916701197624,
-0.005715675186365843,
-0.001871860702522099,
0.015968915075063705,
0.028329869732260704,
0.05632839351892471,
0.006902989465743303,
-0.06755726039409637,
-0.003462999826297164,
-0.019291555508971214,
-0.0205985214561224,
-0.03631892800331116,
-0.022402502596378326,
-0.0019420410972088575,
0.00822836346924305,
0.055444810539484024,
0.03372340649366379,
0.08909458667039871,
0.08585478365421295,
0.00817313976585865,
0.04815525561571121,
-0.011661450378596783,
-0.047971174120903015,
0.016861703246831894,
-0.028274646028876305,
-0.013833590783178806,
0.09513240307569504,
-0.003916296176612377,
-0.02717016637325287,
-0.006995029281824827,
0.012627868913114071,
0.06774133443832397,
-0.00010735586693044752,
-0.03584032133221626,
0.021463695913553238,
-0.008683960884809494,
0.05010649934411049,
0.0328030064702034,
-0.006723511964082718,
0.027335839346051216,
0.03379703685641289,
0.011044783517718315,
-0.037257734686136246,
0.0039669182151556015,
-0.005342913791537285,
-0.0005525267915800214,
0.03578509762883186,
-0.0411602258682251,
0.007993661798536777,
-0.012876376509666443,
0.021850263699889183,
-0.013152495957911015,
0.005964182782918215,
-0.0406816191971302,
-0.040460724383592606,
0.004526060074567795,
0.001767165376804769,
0.032471664249897,
0.04572540149092674,
-0.038914453238248825,
0.020948272198438644,
0.006746521685272455,
0.011357719078660011,
-0.05216819420456886,
0.04285375773906708,
0.014100506901741028,
-0.013428615406155586,
0.0027888077311217785,
0.03584032133221626,
-0.003787440247833729,
0.08379308879375458,
-0.020635336637496948,
-0.056217946112155914,
-0.11611748486757278,
0.0033640568144619465,
0.0020179739221930504,
-0.03029952198266983,
0.0020225760526955128,
-0.01888657920062542,
0.011854734271764755,
0.04509953036904335,
-0.0051174163818359375,
-0.0017199949361383915,
-0.024998025968670845,
-0.01310647651553154,
-0.03180897608399391,
-0.028974147513508797,
0.035656243562698364,
0.02794330194592476,
0.015711205080151558,
-0.012830356135964394,
-0.048081621527671814,
0.0037230122834444046,
0.02372787520289421,
0.01389801874756813,
0.0033502508886158466,
-0.033060718327760696,
-0.034109972417354584,
0.018233096227049828,
0.02140847221016884,
0.004470836371183395,
0.08776921033859253,
0.012038813903927803,
0.02284429408609867,
0.032434847205877304,
0.10448364913463593,
0.004201619420200586,
-0.005536197684705257,
-0.021537328138947487,
-0.03694479912519455,
-0.03792042285203934,
0.05216819420456886,
-0.04649853706359863,
-0.020764192566275597,
-0.01797538436949253,
0.007920029573142529,
-0.044768188148736954,
-0.0329686775803566,
-0.08916822075843811,
-0.02144528739154339,
-0.04778709635138512,
-0.014569910243153572,
-0.05168958753347397,
0.013382595963776112,
0.014477870427072048,
0.034662213176488876,
-0.028348276391625404,
0.03792042285203934,
0.05916322395205498,
-0.0655691996216774,
0.017027374356985092,
-0.009392667561769485,
-0.009328239597380161,
0.0329318605363369,
0.04005574807524681,
-0.03828858211636543,
0.04270649701356888,
-0.019825385883450508,
0.003205288201570511,
0.013585083186626434,
0.030133850872516632,
-0.03541693836450577,
-0.026783598586916924,
-0.032416440546512604,
-0.007657716516405344,
-0.042191073298454285,
-0.009590553119778633,
-0.028900517150759697,
-0.07057616859674454,
-0.06439108401536942,
-0.004859704524278641,
0.07451546937227249,
-0.01646593026816845,
-0.06313934177160263,
0.03033633902668953,
0.034864697605371475,
-0.009240802377462387,
-0.019917426630854607,
0.013612695038318634,
-0.01726667769253254,
-0.002630039118230343,
0.065201036632061,
-0.015076128765940666,
0.03714728727936745,
0.006636073812842369,
0.04660898447036743,
-0.01313408836722374,
-0.013262944296002388,
-0.008297393098473549,
0.006088436581194401,
0.0328030064702034,
0.006382964551448822,
-0.042191073298454285,
-0.007970651611685753,
-0.03508559614419937,
-0.03983485326170921,
-0.032324399799108505,
0.008012070320546627,
-0.016659215092658997,
-0.014661950059235096,
-0.005108212120831013,
-0.026654744520783424,
-0.07893338799476624,
-0.022678621113300323,
0.007639308460056782,
-0.02372787520289421,
0.02367265149950981,
-0.03225076571106911,
0.016778865829110146,
0.009236199781298637,
0.05986272543668747,
-0.03387066721916199,
-0.005122018046677113,
0.033907484263181686,
0.0030212083365768194,
0.005908959079533815,
0.05640202760696411,
-0.0011884646955877542,
0.016088567674160004,
0.05555526167154312,
-0.005011570639908314,
0.09476424008607864,
0.040792066603899,
-0.02707812748849392,
-0.03753385692834854,
0.03619007393717766,
-0.058684613555669785,
-0.025071658194065094,
-0.006498014088720083,
-0.009365055710077286,
-0.026581112295389175,
0.03526967391371727,
0.07028163969516754,
0.0043718935921788216,
-0.046351272612810135,
-0.034827884286642075,
0.028108973056077957,
0.009572145529091358,
0.018177872523665428,
0.03219554200768471,
0.0328030064702034,
-0.06623188406229019,
-0.05242590606212616,
-0.030962208285927773,
-0.04395823925733566,
-0.058684613555669785,
0.04200699180364609,
0.015757223591208458,
0.013419412076473236,
0.014661950059235096,
-0.028274646028876305,
0.023580612614750862,
-0.06199805065989494,
0.007611696608364582,
-0.021077128127217293,
-0.006258710753172636,
0.0023401135113090277,
-0.0028578375931829214,
-0.01395324245095253,
0.011863937601447105,
0.01724826917052269,
-0.00014647281204815954,
-0.06126173213124275,
0.014892049133777618,
0.008163935504853725,
0.08371945470571518,
-0.03377863019704819,
-0.04233833774924278,
0.007335576694458723,
0.032379623502492905,
0.0009065926424227655,
-0.0047170426696538925,
0.019991056993603706,
0.019144291058182716,
-0.04811843857169151,
0.05503983795642853,
-0.015821652486920357,
0.029139820486307144,
0.02124279923737049,
-0.06162989139556885,
-0.10868066549301147,
-0.031440816819667816,
-0.003612564643844962,
0.054450780153274536,
-0.011394535191357136,
0.01721145398914814,
-0.009682592935860157,
-0.12524783611297607,
0.0024160463362932205,
-0.003596457652747631,
0.03372340649366379,
0.04160201549530029,
0.006990427616983652,
-0.021721407771110535,
0.007878611795604229,
-0.006557839922606945,
-0.022807477042078972,
-0.0410129614174366,
-0.034036342054605484,
0.03613485023379326,
0.01969652995467186,
-0.0657164603471756,
0.013695531524717808,
0.013805978931486607,
-0.007004233542829752,
0.007597890682518482,
0.056033868342638016,
-0.02046966552734375,
-0.018269913271069527,
0.06836720556020737,
0.06258710473775864,
0.02304678037762642,
0.038840822875499725,
0.03416519612073898,
-0.08747468143701553,
0.011228863149881363,
0.04513634741306305,
-0.030870169401168823,
-0.04263286292552948,
-0.048081621527671814,
0.06671049445867538,
-0.06372839957475662,
-0.023488571867346764,
0.0031845790799707174,
-0.06361795216798782,
0.033042311668395996,
0.03694479912519455,
-0.009572145529091358,
-0.002450561383739114,
0.02937912382185459,
-0.010290056467056274,
-0.029287083074450493,
0.002653049072250724,
0.043995052576065063,
-0.030023403465747833,
0.033097535371780396,
0.05032739415764809,
-0.03768111765384674,
-0.05640202760696411,
0.07944880425930023,
-0.015499512664973736,
-0.002179043600335717,
-0.03536171466112137,
0.026415439322590828,
-0.006327740382403135,
-0.07079706341028214,
0.0016129985451698303,
0.04318510368466377,
-0.03613485023379326,
-0.02286270074546337,
-0.0823940858244896,
-0.011707469820976257,
0.03589554503560066,
0.04174927994608879,
-0.02367265149950981,
-0.008265179581940174,
0.05467167869210243,
0.0572856105864048,
-0.008306597359478474,
-0.019843794405460358,
0.0014093603240326047,
0.04977515712380409,
-0.03626370429992676,
0.05518709868192673,
-0.016861703246831894,
0.007027243264019489,
-0.01473558135330677,
-0.013861202634871006,
-0.022733844816684723,
-0.05456123128533363,
0.042964205145835876,
0.05146868899464607,
-0.04274331033229828,
0.06372839957475662,
-0.011192047037184238,
0.015076128765940666,
0.06847765296697617,
-0.036466192454099655,
-0.010464931838214397,
0.01556394062936306,
-0.07665079832077026,
-0.03828858211636543,
0.021868670359253883,
-0.013447023928165436,
-0.0028923526406288147,
0.035729873925447464,
-0.020708968862891197,
0.04167564958333969,
-0.029287083074450493,
0.01510374154895544,
-0.0040451521053910255,
-0.050437845289707184,
-0.0049931625835597515,
-0.025936832651495934,
0.034772660583257675,
-0.03018907457590103,
-0.061924416571855545,
0.03368658944964409,
0.06214531511068344,
-0.021629367023706436,
-0.01729428954422474,
-0.030004994943737984,
-0.022715438157320023,
-0.01430299412459135,
0.046461720019578934,
-0.016548767685890198,
0.01801220141351223,
0.005600625649094582,
0.00004181342228548601,
0.01191916223615408,
0.028072157874703407,
0.07053934782743454,
-0.0490020215511322,
0.01813185214996338,
0.03501196205615997,
-0.07908064872026443,
-0.0022561270743608475,
0.0010233682114630938,
-0.019862201064825058,
0.02127961628139019,
-0.013382595963776112,
-0.0011527992319315672,
0.02551344968378544,
-0.038030870258808136,
-0.03136718273162842,
-0.017524389550089836,
0.01565597951412201,
0.0007978705689311028,
-0.0651274025440216,
-0.04999605193734169,
-0.019862201064825058,
0.0024551632814109325,
-0.01521418895572424,
-0.026765191927552223,
-0.03179056942462921,
0.059494566172361374,
-0.043148286640644073,
-0.021463695913553238,
0.014634338207542896,
0.029213452711701393,
0.02221842296421528,
0.005154232028871775,
-0.06052541360259056,
-0.059494566172361374,
0.0071468953974545,
-0.0036838953383266926,
0.0006972019327804446,
0.0488915741443634,
0.015554736368358135,
0.01711020991206169,
-0.0031247532460838556,
-0.002221612026914954,
0.01152339018881321,
0.054524414241313934,
-0.0019098271150141954,
-0.006995029281824827,
0.057027898728847504,
-0.014818417839705944,
0.012591052800416946,
-0.014974885620176792,
-0.048707492649555206,
-0.01272911299020052,
-0.06358113884925842,
-0.023102005943655968,
-0.05242590606212616,
-0.0245562344789505,
0.01510374154895544,
-0.008808214217424393,
-0.028256237506866455,
0.03368658944964409,
0.026525888592004776,
-0.03547216206789017,
0.02939753234386444,
0.025992056354880333,
-0.014984088949859142,
0.015223393216729164,
-0.012968416325747967,
-0.006585452239960432,
-0.0012310331221669912,
0.025697529315948486,
-0.023378124460577965,
0.028219420462846756,
0.009180976077914238,
-0.008306597359478474,
0.003283522091805935,
0.0740368664264679,
0.014045283198356628,
-0.008002866059541702,
-0.03935624286532402,
0.017607225105166435,
-0.015748020261526108,
0.054598044604063034,
-0.04009256511926651,
0.05168958753347397,
0.04355326294898987,
0.00022779864957556129,
-0.06126173213124275,
0.02788807824254036,
-0.04719804227352142,
-0.08327766507863998,
0.042191073298454285,
0.0329318605363369,
0.017018171027302742,
-0.0004990285960957408,
-0.006700501777231693,
0.043001022189855576,
0.009203986264765263,
-0.008683960884809494,
-0.00987587682902813,
0.05006968602538109,
0.0735582560300827,
-0.03828858211636543,
0.04281694442033768,
-0.028329869732260704,
0.009332842193543911,
-0.05386172607541084,
-0.003214492229744792,
-0.023194044828414917,
0.04517316445708275,
-0.0143214026466012,
-0.04995923489332199,
-0.0028969545383006334,
0.024132851511240005,
-0.050401028245687485,
0.05551844462752342,
0.034772660583257675,
-0.05264680087566376,
0.00902450829744339,
-0.006617665756493807,
-0.005991795100271702,
-0.005849133245646954,
-0.013759959489107132,
0.0030994422268122435,
-0.033999525010585785,
0.0163462795317173,
-0.01716543361544609,
0.006898387335240841,
0.02127961628139019,
0.019107475876808167
]
|
42,136 | werkzeug.datastructures.headers | __eq__ | null | def __eq__(self, other):
def lowered(item):
return (item[0].lower(),) + item[1:]
return other.__class__ is self.__class__ and set(
map(lowered, other._list)
) == set(map(lowered, self._list))
| (self, other) | [
0.035638228058815,
-0.03004576824605465,
0.0056838407181203365,
0.03315269201993942,
-0.0390741191804409,
-0.08143792301416397,
0.019080160185694695,
0.02712160535156727,
0.06901023536920547,
-0.0052223713137209415,
-0.030319908633828163,
-0.05369493365287781,
0.05654599145054817,
0.036040302366018295,
-0.020926037803292274,
-0.031270261853933334,
-0.008046015165746212,
0.024453308433294296,
0.00016319910355377942,
-0.025951940566301346,
-0.041230689734220505,
0.02107224613428116,
0.03137991949915886,
0.06038395315408707,
0.006990575697273016,
0.05175767466425896,
-0.0019943700172007084,
0.004792884923517704,
-0.03870860114693642,
0.0553763248026371,
-0.016375308856368065,
0.002006934955716133,
-0.0003381062706466764,
-0.0038608082104474306,
0.08933316171169281,
-0.00011122668365715072,
-0.03790445625782013,
0.02322881482541561,
0.0069951447658240795,
-0.030118873342871666,
0.01756324991583824,
-0.03390200808644295,
0.0332806222140789,
-0.007630236446857452,
0.037155140191316605,
0.03262268751859665,
-0.030703704804182053,
0.040792066603899,
0.07423717528581619,
0.02476399950683117,
-0.010134050622582436,
-0.021967770531773567,
-0.0367165133357048,
0.012107860296964645,
-0.0386354960501194,
0.05201353877782822,
0.020761553198099136,
0.021912941709160805,
-0.02743229828774929,
0.037538934499025345,
-0.03022852912545204,
-0.020505689084529877,
-0.002736833179369569,
-0.07537028193473816,
-0.02657332643866539,
-0.03848928585648537,
-0.07193439453840256,
0.0007059110794216394,
0.014639087952673435,
0.03211095929145813,
-0.05040524899959564,
-0.037118587642908096,
-0.015918409451842308,
0.027870923280715942,
-0.0032896827906370163,
0.06038395315408707,
-0.001896136556752026,
0.08092619478702545,
0.007278422825038433,
-0.060164641588926315,
0.01096560899168253,
-0.021583974361419678,
0.008228776045143604,
-0.030721981078386307,
-0.06879092007875443,
-0.003483865410089493,
-0.020834656432271004,
0.016082894057035446,
0.020633621141314507,
-0.008873005397617817,
-0.012126135639846325,
0.04188862442970276,
0.035217881202697754,
-0.0016014358261600137,
-0.007689633406698704,
0.02867506816983223,
-0.029077140614390373,
-0.04404519498348236,
-0.0034495978616178036,
0.03426752984523773,
0.020725000649690628,
0.06162672117352486,
0.01444718986749649,
-0.008630848489701748,
-0.00701798964291811,
0.010801124386489391,
-0.03536408767104149,
-0.028053682297468185,
-0.03172716125845909,
0.01731652393937111,
-0.10461191087961197,
0.01944568008184433,
-0.01257389783859253,
0.0044159418903291225,
0.00556047772988677,
-0.024014683440327644,
-0.02712160535156727,
-0.012336309999227524,
-0.010033532045781612,
-0.029588868841528893,
0.0028807567432522774,
0.08933316171169281,
0.03441373631358147,
0.030923016369342804,
0.029004035517573357,
-0.003943050280213356,
0.015260472893714905,
-0.005048749037086964,
-0.045690037310123444,
0.0009058049763552845,
0.0630888044834137,
-0.019591888412833214,
-0.020030511543154716,
0.06184603273868561,
0.09569321572780609,
0.00003003763049491681,
-0.012244929559528828,
0.025641249492764473,
0.00036609143717214465,
0.062101900577545166,
0.06327156722545624,
0.019738096743822098,
0.04843144118785858,
0.030064044520258904,
-0.07661305367946625,
0.009279646910727024,
-0.07193439453840256,
0.05391424521803856,
0.004377105738967657,
0.02593366429209709,
-0.035601675510406494,
-0.029899559915065765,
0.028985759243369102,
-0.025988493114709854,
-0.07248267531394958,
-0.011047851294279099,
-0.047627296298742294,
-0.014182187616825104,
0.011221473105251789,
0.05508390814065933,
0.012656140141189098,
-0.003556969342753291,
-0.030831636860966682,
0.04748108610510826,
-0.01861412078142166,
-0.012765796855092049,
-0.04777350276708603,
-0.03331717476248741,
0.016786519438028336,
-0.01674083061516285,
0.003467873902991414,
-0.07844065874814987,
-0.02014016918838024,
0.03150784969329834,
-0.015836166217923164,
0.008799901232123375,
-0.0024535551201552153,
0.05168456956744194,
-0.012519069947302341,
0.01884257048368454,
0.02374054305255413,
-0.03834307938814163,
-0.0341213196516037,
-0.010335086844861507,
0.03525443375110626,
0.011897685937583447,
0.009357319213449955,
0.02068844810128212,
0.023375023156404495,
0.025860561057925224,
-0.032092683017253876,
-0.03112405352294445,
-0.027761267498135567,
-0.039987921714782715,
0.006446864455938339,
-0.029460936784744263,
-0.030118873342871666,
-0.020377757027745247,
0.018541017547249794,
0.05563218891620636,
-0.06572055071592331,
-0.03936653584241867,
0.0017179454443976283,
-0.009987842291593552,
0.051282498985528946,
0.008100843988358974,
-0.011596131138503551,
-0.04696935787796974,
0.06477019935846329,
-0.029643695801496506,
0.006551951169967651,
-0.031398192048072815,
-0.016439275816082954,
-0.001186798675917089,
0.026646429672837257,
0.016850486397743225,
-0.020542241632938385,
-0.03536408767104149,
-0.024745725095272064,
0.0020023658871650696,
0.07175163179636002,
-0.02871161885559559,
-0.014675639569759369,
-0.0028190752491354942,
-0.02026810124516487,
0.013332352973520756,
-0.01281148660928011,
0.015607716515660286,
-0.04799281433224678,
0.011102679185569286,
0.023703990504145622,
0.0006385182496160269,
0.06805987656116486,
-0.00022488065587822348,
-0.025732629001140594,
0.01444718986749649,
-0.022698810324072838,
0.029552316293120384,
-0.09211111813783646,
0.00531375128775835,
-0.04009757563471794,
0.013743563555181026,
0.05735013633966446,
0.027541954070329666,
0.01395373698323965,
-0.05552253499627113,
-0.021839838474988937,
0.007849548012018204,
0.003680332563817501,
0.016786519438028336,
-0.018824296072125435,
-0.009028350934386253,
-0.017764287069439888,
-0.05314665287733078,
0.005807203706353903,
-0.017389629036188126,
-0.04927213490009308,
0.014492879621684551,
0.033426832407712936,
-0.006963161751627922,
-0.0012439112178981304,
0.06681711226701736,
0.05113628879189491,
0.02326536737382412,
-0.04192517697811127,
0.02001223713159561,
0.011815443634986877,
0.06992403417825699,
0.000009869761925074272,
-0.021583974361419678,
0.04824867844581604,
-0.05691150948405266,
-0.00821049977093935,
0.09123386442661285,
-0.052817683666944504,
0.04261966794729233,
-0.013716149143874645,
-0.05460873246192932,
-0.0772709921002388,
-0.032860275357961655,
0.008662831038236618,
0.05336596444249153,
-0.0073743718676269054,
-0.04627487063407898,
0.015735648572444916,
-0.004224043805152178,
-0.014666502363979816,
-0.05592460557818413,
-0.022826742380857468,
-0.04130379483103752,
0.029826456680893898,
-0.03859894350171089,
0.03932998329401016,
-0.032823722809553146,
-0.014858400449156761,
0.02829127199947834,
0.05877566337585449,
-0.006794108543545008,
0.02953404001891613,
0.02781609445810318,
-0.02889437973499298,
0.02708505466580391,
0.043898988515138626,
-0.02699367329478264,
-0.012747520580887794,
-0.021693630144000053,
-0.021602248772978783,
0.06254052370786667,
0.014794434420764446,
-0.004943661857396364,
-0.008589726872742176,
0.047846607863903046,
-0.015424956567585468,
0.06422191858291626,
0.005976256914436817,
0.024672619998455048,
-0.019774647429585457,
-0.012692692689597607,
0.022205358371138573,
0.06977782398462296,
-0.003616366535425186,
0.005121853202581406,
-0.026646429672837257,
0.018084116280078888,
-0.003792273113504052,
-0.04229069873690605,
-0.010179740376770496,
0.06349087506532669,
0.051830779761075974,
0.03841618448495865,
-0.0022776483092457056,
-0.04601900652050972,
0.03797755762934685,
0.012007341720163822,
0.007589115295559168,
-0.011705787852406502,
0.033372003585100174,
0.046347975730895996,
0.03026508167386055,
-0.0515018105506897,
0.0022867864463478327,
-0.01386235747486353,
-0.017206868156790733,
-0.0330430343747139,
0.0014792149886488914,
0.007429200224578381,
-0.07858686149120331,
0.04897971823811531,
0.02494676038622856,
0.01206216961145401,
-0.05311010032892227,
-0.019043607637286186,
0.05592460557818413,
-0.04773695021867752,
0.01568995974957943,
0.04210793972015381,
-0.03211095929145813,
0.004281156696379185,
-0.030064044520258904,
0.013880633749067783,
0.09284215420484543,
-0.054791491478681564,
0.011797167360782623,
-0.03614995628595352,
-0.019299471750855446,
0.013277525082230568,
0.004559865687042475,
-0.05903152748942375,
-0.026171253994107246,
-0.027962302789092064,
-0.02867506816983223,
0.006410312373191118,
0.0008264185744337738,
-0.06506261229515076,
0.010919919237494469,
-0.03474270552396774,
-0.06477019935846329,
0.037155140191316605,
-0.019610164687037468,
0.011568717658519745,
0.053256306797266006,
0.011203196831047535,
0.02648194506764412,
0.06045705825090408,
-0.02498331293463707,
0.007666788063943386,
0.03463304787874222,
0.003531839931383729,
0.040792066603899,
0.07705167680978775,
-0.06926609575748444,
-0.04744453355669975,
-0.014364947564899921,
0.022735362872481346,
-0.04240035638213158,
-0.019134987145662308,
-0.06550123542547226,
-0.02180328592658043,
-0.058812215924263,
-0.039256881922483444,
0.009412148036062717,
-0.029424384236335754,
0.018559293821454048,
0.007365234196186066,
-0.01880601979792118,
0.046347975730895996,
0.0039042136631906033,
0.020505689084529877,
-0.03169060871005058,
0.05358527600765228,
-0.02978990413248539,
-0.04452037066221237,
0.0037877040449529886,
-0.05786186456680298,
-0.07460269331932068,
-0.022552601993083954,
-0.015699096024036407,
-0.01483098603785038,
0.11623545736074448,
-0.00991473812609911,
0.0017796269385144114,
0.022771915420889854,
0.0182394627481699,
0.0009366457816213369,
-0.019025331363081932,
-0.03837963193655014,
0.027706438675522804,
0.025440212339162827,
0.005048749037086964,
-0.04572658985853195,
-0.015589441172778606,
-0.015607716515660286,
0.04229069873690605,
-0.008891281671822071,
0.04952799901366234,
0.018376532942056656,
0.000008401791092182975,
-0.05932394415140152,
-0.002885325811803341,
0.004450209438800812,
-0.001336433575488627,
-0.016512379050254822,
-0.048577647656202316,
0.005542201455682516,
-0.01652151718735695,
-0.008041447028517723,
-0.02768816240131855,
0.01431925781071186,
0.039987921714782715,
0.012921142391860485,
-0.007072817999869585,
0.037027206271886826,
-0.09328077733516693,
-0.05592460557818413,
-0.013286663219332695,
0.022735362872481346,
0.022570878267288208,
-0.018952228128910065,
0.004902541171759367,
0.06294259428977966,
0.02816333994269371,
-0.021657077595591545,
0.01940912753343582,
0.0021497162524610758,
-0.04919903352856636,
0.0781482383608818,
-0.010764572769403458,
0.02953404001891613,
0.04843144118785858,
0.06904678791761398,
0.039732057601213455,
-0.06864470988512039,
-0.03271406516432762,
-0.026299186050891876,
-0.039220329374074936,
0.03757548704743385,
-0.034322354942560196,
0.021090520545840263,
-0.033847179263830185,
0.011605269275605679,
-0.032129235565662384,
0.01982947625219822,
0.04437416419386864,
-0.02679263800382614,
0.03684444725513458,
-0.07017989456653595,
0.01897050440311432,
-0.027487127110362053,
0.002057194011285901,
0.006876350846141577,
0.02549504116177559,
-0.038269974291324615,
-0.04587279632687569,
0.03030163235962391,
0.021876389160752296,
-0.012893728911876678,
-0.010938194580376148,
-0.011788029223680496,
-0.027066778391599655,
0.02240639366209507,
0.017746010795235634,
0.005555908661335707,
-0.01992085576057434,
0.034962017089128494,
0.0699605867266655,
0.017069797962903976,
-0.012391137890517712,
-0.05486459657549858,
-0.05859290435910225,
-0.023502955213189125,
0.016823071986436844,
-0.04605555906891823,
0.018221186473965645,
-0.07398130744695663,
0.037118587642908096,
0.015516337007284164,
-0.04188862442970276,
-0.04890661686658859,
-0.01953705959022045,
-0.014456328004598618,
0.00516297435387969,
-0.020871208980679512,
-0.02734091877937317,
-0.0373561754822731,
-0.03965895250439644,
-0.017782563343644142,
-0.018824296072125435,
0.00634177727624774,
0.03834307938814163,
-0.028620239347219467,
-0.027742991223931313,
-0.022845018655061722,
-0.04941834509372711,
0.018477050587534904,
-0.03635099530220032,
0.1227417141199112,
-0.04817557707428932,
-0.013688734732568264,
0.050588008016347885,
0.07350613176822662,
-0.006615917198359966,
0.007653081323951483,
0.019463956356048584,
-0.032768893986940384,
0.009238525293767452,
0.0390741191804409,
-0.06630538403987885,
-0.025348832830786705,
-0.036552030593156815,
0.05099008232355118,
-0.004132663831114769,
-0.032348547130823135,
0.030118873342871666,
-0.02129155769944191,
-0.011157507076859474,
-0.022991226986050606,
-0.021401213482022285,
0.047152116894721985,
0.04349691420793533,
0.0399148166179657,
0.026463668793439865,
0.02501986362040043,
0.03640582039952278,
-0.022223634645342827,
0.0038676615804433823,
-0.041742417961359024,
0.00224794982932508,
0.02712160535156727,
0.0502224899828434,
0.04108448326587677,
0.0179196335375309,
0.0035478314384818077,
-0.03203785419464111,
0.005642719566822052,
-0.023758819326758385,
0.018559293821454048,
0.022589154541492462,
0.04700591042637825,
-0.02215052954852581,
-0.046421077102422714,
-0.06963161379098892,
0.04718866944313049,
0.0015066289342939854,
-0.009466975927352905,
-0.00391335180029273,
-0.03757548704743385,
0.0251112449914217,
0.025531593710184097,
-0.04510520398616791,
-0.033116139471530914,
-0.04718866944313049,
0.022698810324072838,
-0.004966507200151682,
-0.02721298672258854,
-0.0033627867233008146,
-0.06199224293231964,
0.025001589208841324,
-0.0005668420344591141,
-0.0285471361130476,
-0.0016014358261600137,
0.028729895129799843,
-0.004347407259047031,
0.0016631173202767968,
-0.06100533902645111,
0.06294259428977966,
-0.008763349615037441,
-0.029771627858281136,
-0.020633621141314507,
0.004461632110178471,
0.057752206921577454,
0.02962541952729225,
0.05490114912390709,
0.04656728729605675,
-0.07357923686504364,
0.03189164772629738,
-0.043423812836408615,
-0.01992085576057434,
0.036204785108566284,
-0.022698810324072838,
0.033755797892808914,
0.017901357263326645,
0.007269285153597593,
-0.0006482274038717151,
0.031142329797148705,
-0.059397049248218536,
-0.0248919315636158,
0.03812376782298088,
0.013889770954847336,
0.0536583811044693,
-0.05117284134030342,
0.014693915843963623,
-0.011303715407848358,
0.03382890298962593,
-0.022132253274321556,
-0.0019292618380859494,
-0.043423812836408615,
0.007831272669136524,
-0.007022558711469173,
-0.01590927131474018,
0.03726479411125183,
-0.009722840040922165,
0.0001784767082426697,
-0.025769181549549103,
0.060201194137334824,
-0.06520882248878479,
0.03631444275379181,
-0.03790445625782013,
-0.02889437973499298,
0.017764287069439888,
-0.02112707309424877,
-0.018084116280078888,
0.06930264830589294,
-0.00037008931394666433,
0.0540970042347908,
-0.054023899137973785,
0.0274688508361578,
-0.004313139710575342,
-0.012975970283150673,
0.014090807177126408,
-0.014127359725534916,
0.04495899751782417,
0.014090807177126408,
0.03567478060722351,
-0.019774647429585457,
0.04598245397210121,
0.02609814889729023,
0.03742927685379982,
0.010801124386489391,
0.009069472551345825,
0.024416755884885788,
-0.014483741484582424,
0.00409839628264308,
-0.011998203583061695,
-0.05190388113260269,
-0.04060930386185646,
-0.019738096743822098,
0.023375023156404495,
0.025824008509516716,
-0.0008007179130800068,
-0.0639660507440567,
0.013889770954847336,
-0.02043258398771286,
-0.0008629705989733338,
-0.029351279139518738,
0.01740790344774723,
0.0772709921002388,
-0.047152116894721985,
0.012244929559528828,
0.045397620648145676,
-0.052781131118535995,
-0.018577570095658302,
-0.09708219021558762,
0.003520417492836714,
-0.00728756096214056,
0.0455072782933712,
0.07017989456653595,
-0.04656728729605675,
-0.042656220495700836,
-0.01441977545619011,
0.003056663554161787,
-0.01568995974957943,
-0.022223634645342827,
0.04258311539888382,
0.02593366429209709,
0.04528796672821045,
-0.017115488648414612,
-0.03322579339146614,
0.038964465260505676,
0.0931345745921135,
0.015534612350165844,
-0.0009834780357778072,
-0.011367681436240673,
-0.0017807692056521773,
-0.05760600045323372,
0.06941230595111847,
-0.047407981008291245,
0.033335451036691666,
0.0015157669549807906,
0.010983885265886784,
0.0319647490978241,
-0.0034358908887952566,
-0.038964465260505676,
0.03936653584241867,
-0.01683221012353897,
-0.005395993590354919,
0.032860275357961655,
0.039476193487644196,
-0.006355484016239643,
-0.03812376782298088,
-0.009713701903820038,
-0.013926323503255844,
0.09890979528427124,
0.016731692478060722,
0.058702558279037476,
-0.027322642505168915,
0.024106062948703766,
-0.06071292236447334,
0.007666788063943386,
-0.01429184339940548,
0.09671667218208313,
0.023027779534459114,
-0.029990941286087036,
0.051099736243486404,
-0.0018127522198483348,
-0.06919299066066742,
-0.006981437560170889,
0.01798359863460064,
0.011404233053326607,
-0.017782563343644142,
-0.006003670860081911,
0.0009954717243090272,
0.014282705262303352,
0.0056015984155237675,
-0.008438949473202229,
0.04236380383372307,
0.03454166650772095,
-0.023502955213189125,
-0.041705865412950516,
-0.0003272548783570528,
-0.03859894350171089,
-0.01047215610742569,
0.03256785869598389,
-0.0012667563278228045,
0.0007961489027366042,
0.008251620456576347,
0.029077140614390373,
0.005935135763138533,
0.09774012863636017
]
|
42,137 | werkzeug.datastructures.headers | __getitem__ | null | def __getitem__(self, key, _get_mode=False):
if not _get_mode:
if isinstance(key, int):
return self._list[key]
elif isinstance(key, slice):
return self.__class__(self._list[key])
if not isinstance(key, str):
raise BadRequestKeyError(key)
ikey = key.lower()
for k, v in self._list:
if k.lower() == ikey:
return v
# micro optimization: if we are in get mode we will catch that
# exception one stack level down so we can raise a standard
# key error instead of our special one.
if _get_mode:
raise KeyError()
raise BadRequestKeyError(key)
| (self, key, _get_mode=False) | [
0.04753788560628891,
-0.04186554253101349,
-0.10034555941820145,
0.0028247348964214325,
0.03000851906836033,
0.007113299798220396,
0.05551575869321823,
-0.027904262766242027,
0.0939778983592987,
-0.09544172883033752,
-0.04267064854502678,
0.02479362301528454,
0.028489794582128525,
-0.04607405513525009,
-0.002065372886136174,
0.0189931970089674,
0.014455323107540607,
0.039157457649707794,
-0.007666810415685177,
-0.019249366596341133,
0.018828514963388443,
0.009926598519086838,
0.08138895779848099,
0.034436605870723724,
0.016660217195749283,
0.04486639425158501,
0.09112342447042465,
-0.02106085605919361,
0.11556939035654068,
-0.028636178001761436,
-0.0003016290720552206,
0.010365747846662998,
-0.01014617271721363,
0.0794127881526947,
-0.035973627120256424,
-0.019578728824853897,
-0.024043411016464233,
0.0026120219845324755,
0.04025533050298691,
0.0007507847622036934,
-0.05214894935488701,
-0.03619319945573807,
0.0449029915034771,
-0.04958724603056908,
0.00763478921726346,
0.031673625111579895,
-0.005686065182089806,
0.035168521106243134,
0.01465659961104393,
0.010750003159046173,
-0.038315754383802414,
-0.00947830080986023,
-0.006212129257619381,
-0.06246895343065262,
-0.038388945162296295,
-0.0036001072730869055,
-0.01450106780976057,
0.03123447671532631,
-0.023421281948685646,
0.03019149787724018,
-0.03136255964636803,
-0.013540429063141346,
-0.0629080981016159,
0.01626681350171566,
-0.014190003275871277,
-0.06459150463342667,
-0.015781918540596962,
0.008352980948984623,
0.004498990718275309,
-0.0030786178540438414,
0.04973363131284714,
0.002856756094843149,
-0.0425974577665329,
0.002607447560876608,
0.009212980978190899,
-0.006239576265215874,
-0.05632086470723152,
-0.011902769096195698,
0.016733407974243164,
0.02931319922208786,
0.019505536183714867,
0.03182000666856766,
-0.00597425689920783,
-0.005525958724319935,
-0.03802298754453659,
0.006358512211591005,
0.0016353727551177144,
-0.03465617820620537,
0.03379618003964424,
0.04197533056139946,
-0.03725447878241539,
0.01952383480966091,
-0.056613631546497345,
0.00377851165831089,
-0.0007330587250180542,
0.0007284842431545258,
-0.0026234581600874662,
-0.07388682663440704,
0.00008684344356879592,
-0.0013860642211511731,
0.009981491602957249,
0.035095326602458954,
0.04984341561794281,
-0.0076530869118869305,
-0.004963299259543419,
-0.008252342231571674,
-0.011417875066399574,
0.04263405501842499,
-0.026074474677443504,
0.019194472581148148,
-0.007927555590867996,
0.024226389825344086,
-0.061224695295095444,
0.02049362286925316,
-0.039194051176309586,
0.07626555114984512,
-0.010054683312773705,
-0.02298213355243206,
-0.013924684375524521,
-0.021170644089579582,
-0.011271492578089237,
-0.03343022242188454,
-0.02689787931740284,
-0.02221362292766571,
0.04054809734225273,
0.0033187775406986475,
-0.035625968128442764,
0.00002019199382630177,
0.031179582700133324,
0.050941288471221924,
-0.023768942803144455,
0.02601958066225052,
-0.0491115041077137,
0.02228681370615959,
0.02290894277393818,
0.0036115434486418962,
-0.03220426291227341,
0.04014554247260094,
-0.04515916109085083,
0.058223843574523926,
0.053393203765153885,
0.034400008618831635,
0.06770214438438416,
0.020438728854060173,
-0.016239365562796593,
-0.05727235600352287,
0.057455334812402725,
0.00783606618642807,
0.05079490691423416,
0.026531921699643135,
-0.006106916349381208,
0.06451831758022308,
0.021701281890273094,
0.015589791350066662,
0.028782561421394348,
0.0039454796351492405,
-0.02064000628888607,
-0.04464682191610336,
-0.012643832713365555,
-0.013714258559048176,
0.0023146814201027155,
-0.038535330444574356,
-0.026495326310396194,
-0.07322810590267181,
0.0002786137629300356,
0.006257873959839344,
-0.04175575450062752,
-0.002634894335642457,
0.028800858184695244,
0.036998309195041656,
-0.003154096659272909,
0.019212771207094193,
-0.027757879346609116,
0.0046522351913154125,
0.03791320323944092,
0.024702133610844612,
-0.0537225678563118,
0.028947241604328156,
0.011006172746419907,
-0.0362480953335762,
-0.004311437252908945,
-0.006097767502069473,
-0.02071319706737995,
-0.03211277350783348,
0.00711787398904562,
0.09288002550601959,
0.000810252851806581,
0.015242131426930428,
-0.016074685379862785,
0.07794895768165588,
-0.03161873295903206,
-0.01752021722495556,
0.025305964052677155,
-0.042451076209545135,
-0.05599150434136391,
-0.0024839367251843214,
-0.004604203160852194,
0.008732661604881287,
-0.006459150463342667,
0.108177050948143,
-0.025562133640050888,
0.03668724372982979,
-0.008600002154707909,
0.06612852960824966,
-0.04995320364832878,
0.01791362091898918,
0.054271504282951355,
-0.023165112361311913,
0.0012900003930553794,
-0.0015004259767010808,
-0.03708979859948158,
-0.025488942861557007,
-0.004020958673208952,
0.030941709876060486,
0.05379575863480568,
0.024409368634223938,
-0.05855320766568184,
-0.039925966411828995,
0.02252468653023243,
0.000856569386087358,
0.06836087256669998,
-0.011362981982529163,
0.027483411133289337,
-0.013394045643508434,
0.02728213556110859,
-0.012158939614892006,
-0.013394045643508434,
0.01544340793043375,
-0.03582724183797836,
0.0364493727684021,
0.027721283957362175,
0.018828514963388443,
0.05291746184229851,
0.03288128599524498,
-0.018865112215280533,
-0.03449149802327156,
0.013503833673894405,
-0.003101490205153823,
0.04369533061981201,
-0.0006667288835160434,
0.00009077462163986638,
0.020548516884446144,
-0.0020356387831270695,
0.04918469488620758,
-0.0358821377158165,
0.01346723735332489,
0.012808513827621937,
0.05862639844417572,
-0.024262985214591026,
0.024500858038663864,
0.015791067853569984,
0.03518681600689888,
0.01752021722495556,
0.013156173750758171,
0.006898299790918827,
-0.04446384310722351,
-0.09844257682561874,
-0.041536182165145874,
0.015168939717113972,
-0.01714511029422283,
-0.11769194900989532,
0.011070216074585915,
0.019468940794467926,
-0.012625535018742085,
-0.046257033944129944,
0.02228681370615959,
0.06697022914886475,
0.08475576341152191,
0.012314471416175365,
0.06429874151945114,
-0.03784000873565674,
0.018846813589334488,
0.006477448623627424,
0.017931919544935226,
0.02347617596387863,
0.03930383920669556,
0.03784000873565674,
0.04816001281142235,
-0.020402133464813232,
-0.005576278083026409,
0.004178777802735567,
0.025873199105262756,
-0.05324682220816612,
0.01222298201173544,
-0.014821280725300312,
-0.041536182165145874,
0.05321022495627403,
-0.003977500833570957,
0.018197238445281982,
-0.011610003188252449,
0.011289790272712708,
-0.010557875037193298,
-0.00731915095821023,
-0.016907239332795143,
-0.03694341331720352,
0.03560766950249672,
-0.04442724585533142,
-0.04892852529883385,
0.051197461783885956,
-0.017931919544935226,
0.009025427512824535,
-0.0055168098770082,
-0.021774474531412125,
-0.023348091170191765,
0.015644684433937073,
-0.010612769052386284,
0.03886469081044197,
0.011344684287905693,
-0.050282567739486694,
0.04369533061981201,
-0.03522341325879097,
-0.012250429019331932,
-0.02697107009589672,
0.021170644089579582,
-0.05229533463716507,
0.0034948945976793766,
-0.04095064848661423,
0.07970555126667023,
-0.005260639823973179,
0.10005278885364532,
-0.017300643026828766,
-0.0019487239187583327,
-0.019542133435606956,
0.03816937282681465,
0.019048091024160385,
-0.02018255926668644,
-0.01239681150764227,
0.0006438565324060619,
-0.009116916917264462,
0.0659821480512619,
0.014985961839556694,
-0.026037879288196564,
-0.027574900537729263,
0.005612873937934637,
-0.048782140016555786,
0.0020184845197945833,
0.010118725709617138,
0.020768091082572937,
0.00670617213472724,
-0.0018320749513804913,
-0.0236042607575655,
-0.045598309487104416,
0.011427024379372597,
0.011820429004728794,
0.02644043229520321,
-0.03225915879011154,
0.0778757631778717,
0.02018255926668644,
0.02885575219988823,
-0.036998309195041656,
-0.010082130320370197,
-0.05932171642780304,
0.032515328377485275,
0.038754902780056,
0.0010075268801301718,
-0.02252468653023243,
0.013814897276461124,
-0.08958640694618225,
-0.010585322044789791,
0.00893851276487112,
0.06986129283905029,
-0.07831491529941559,
-0.03502213582396507,
-0.002113404916599393,
-0.07150810211896896,
-0.02720894291996956,
-0.0011659178417176008,
-0.041536182165145874,
0.0356808602809906,
-0.03621149808168411,
-0.005731809884309769,
-0.004345745779573917,
-0.06997108459472656,
-0.02504979446530342,
-0.00890191737562418,
-0.011372130364179611,
0.028361709788441658,
0.04010894522070885,
-0.02858128398656845,
0.04190213978290558,
0.0257085170596838,
-0.0033553731627762318,
0.013375747948884964,
0.05277107656002045,
0.004190213978290558,
0.009245002642273903,
-0.01871872879564762,
-0.011683194898068905,
0.04036511853337288,
0.0006301331450231373,
-0.03813277557492256,
-0.019780004397034645,
0.00013051532732788473,
0.025342559441924095,
-0.04739150032401085,
-0.01327511016279459,
0.058955758810043335,
-0.07161789387464523,
0.010997024364769459,
0.029532773420214653,
0.027904262766242027,
0.034857455641031265,
-0.041572775691747665,
0.08504853397607803,
0.03890128806233406,
0.0034628731664270163,
0.024683836847543716,
0.03364979475736618,
-0.05009958893060684,
0.0019521547947078943,
0.027483411133289337,
-0.023933622986078262,
0.0007107581477612257,
-0.04256086051464081,
-0.006230426952242851,
0.028014050796628,
-0.03064894489943981,
0.04958724603056908,
-0.051782991737127304,
0.027263836935162544,
0.02343958057463169,
-0.0713617205619812,
0.009469151496887207,
-0.018252132460474968,
-0.025964688509702682,
-0.0056265974417328835,
0.016797451302409172,
-0.016449792310595512,
0.023201707750558853,
-0.014976812526583672,
-0.044756606221199036,
-0.04193873330950737,
-0.0253242626786232,
-0.029898731037974358,
0.0006907448405399919,
-0.0032890434376895428,
-0.043219584971666336,
-0.012021705508232117,
0.007342023309320211,
-0.006820533890277147,
-0.00008984543819678947,
0.01828872784972191,
-0.0320395827293396,
0.038352351635694504,
0.0011510507902130485,
-0.03092341311275959,
-0.004297713749110699,
0.04936767369508743,
0.028251921758055687,
-0.06729958951473236,
0.025177879258990288,
0.022579580545425415,
0.022799154743552208,
0.03705320134758949,
0.04376852139830589,
-0.021500006318092346,
-0.05683320760726929,
0.04417107626795769,
0.0640791654586792,
0.0041604796424508095,
-0.002009335672482848,
0.040877457708120346,
-0.0071727680042386055,
-0.04351235181093216,
-0.004835214000195265,
0.06027320772409439,
-0.022414900362491608,
0.06089533492922783,
0.017776386812329292,
-0.03504043444991112,
-0.07780257612466812,
-0.02567192167043686,
-0.011545960791409016,
-0.03352171182632446,
-0.011811279691755772,
0.04208511859178543,
0.06667746603488922,
0.019615324214100838,
-0.002913936972618103,
-0.03194809332489967,
0.017721494659781456,
-0.08138895779848099,
0.009771066717803478,
-0.035973627120256424,
-0.02612936869263649,
-0.04618384316563606,
-0.022341707721352577,
0.0821208730340004,
-0.04186554253101349,
-0.003284469014033675,
0.012781066820025444,
0.024317879229784012,
0.0036115434486418962,
0.05006299167871475,
0.04651320353150368,
-0.0036732987500727177,
-0.07092256844043732,
-0.01348553504794836,
0.0026326070073992014,
0.0374191589653492,
0.05083150416612625,
-0.02462894283235073,
0.03613830730319023,
-0.01406191848218441,
0.0038608519826084375,
0.010804896242916584,
-0.009139789268374443,
0.03469277545809746,
0.034162137657403946,
-0.09309960156679153,
0.0027789901942014694,
0.03081362508237362,
0.03257022053003311,
-0.027154048904776573,
-0.0005283512291498482,
0.029862135648727417,
-0.037272777408361435,
0.0041398946195840836,
-0.014318089000880718,
0.05046554654836655,
0.0602366104722023,
-0.006248725112527609,
0.0003419415734242648,
0.014775536023080349,
0.018069153651595116,
0.03540639206767082,
-0.019578728824853897,
-0.03253362700343132,
-0.01888340897858143,
0.08175491541624069,
-0.05086809769272804,
0.029532773420214653,
0.0040735648944973946,
0.027080858126282692,
0.006125214509665966,
0.020091069862246513,
-0.04040171205997467,
0.018526600673794746,
0.042377881705760956,
0.01682489737868309,
0.02217702753841877,
0.02179277129471302,
0.020091069862246513,
-0.04021873325109482,
0.034747667610645294,
-0.020091069862246513,
-0.04431745782494545,
0.004531011916697025,
-0.03586383908987045,
-0.010072981007397175,
-0.03288128599524498,
-0.002785851713269949,
0.05145363137125969,
-0.012689577415585518,
0.02528766542673111,
-0.015937451273202896,
-0.03158213570713997,
-0.0027035113889724016,
-0.016495537012815475,
0.013723407872021198,
-0.002616596408188343,
-0.02221362292766571,
0.007067555096000433,
0.03633958473801613,
-0.04021873325109482,
0.00876010861247778,
-0.05240511894226074,
-0.02175617590546608,
0.05456427112221718,
-0.08914725482463837,
-0.004576756618916988,
-0.0039454796351492405,
-0.01906638778746128,
0.027757879346609116,
0.01972511224448681,
0.03901107236742973,
-0.01239681150764227,
-0.01895660161972046,
-0.021097451448440552,
-0.037199582904577255,
-0.010137024335563183,
-0.00627159746363759,
0.07410640269517899,
0.0020161974243819714,
0.0007828060770407319,
0.00763478921726346,
0.017410429194569588,
-0.04435405507683754,
-0.03476596623659134,
-0.00741521455347538,
0.026257453486323357,
-0.07421618700027466,
0.01208574790507555,
0.007611916866153479,
0.046403415501117706,
0.028910646215081215,
-0.042377881705760956,
-0.011582556180655956,
-0.02190255932509899,
-0.012973194941878319,
-0.0058095757849514484,
0.01344893965870142,
0.04047490283846855,
-0.01906638778746128,
0.043988097459077835,
0.049477458000183105,
0.00858627911657095,
0.02175617590546608,
0.04420766979455948,
-0.058040864765644073,
-0.04223150014877319,
-0.006847980432212353,
-0.009126066230237484,
-0.001135612023063004,
0.018599791452288628,
0.009890002198517323,
0.025836601853370667,
0.036888521164655685,
0.029953625053167343,
-0.06396938115358353,
-0.009084896184504032,
0.01941404677927494,
-0.01388808898627758,
0.03150894492864609,
-0.04614724591374397,
-0.052734483033418655,
0.04256086051464081,
-0.01615702547132969,
0.02010936662554741,
-0.04058469086885452,
0.019780004397034645,
0.014821280725300312,
0.05160001292824745,
0.013421492651104927,
-0.029496178030967712,
0.020237451419234276,
0.03930383920669556,
-0.0010441226186230779,
-0.04852597042918205,
0.08153533935546875,
-0.008160852827131748,
-0.017090218141674995,
-0.00543904397636652,
0.027757879346609116,
-0.023183410987257957,
0.02064000628888607,
0.001089867320843041,
-0.0002561702858656645,
0.07999832183122635,
0.01373255718499422,
-0.02977064624428749,
0.008979682810604572,
-0.03591873124241829,
0.008435321040451527,
-0.015727024525403976,
-0.022396601736545563,
0.023183410987257957,
-0.07088597863912582,
-0.05288086459040642,
-0.028032347559928894,
-0.06016341969370842,
-0.006491172127425671,
-0.04585447907447815,
-0.038462135940790176,
-0.017995962873101234,
-0.05233192816376686,
-0.07685108482837677,
-0.038388945162296295,
0.04735490679740906,
0.029953625053167343,
0.03930383920669556,
-0.05884597450494766,
-0.0358821377158165,
0.0077354274690151215,
-0.01822468638420105,
0.026184262707829475,
0.04486639425158501,
-0.013586173765361309,
0.027483411133289337,
0.000689029460772872,
0.02378723956644535,
-0.017227452248334885,
0.0021854527294635773,
0.06682384759187698,
-0.005265214014798403,
0.01479383371770382,
-0.00846276804804802,
0.005873618647456169,
-0.015168939717113972,
-0.0759727880358696,
0.039925966411828995,
-0.041719160974025726,
-0.01327511016279459,
-0.054308097809553146,
-0.05939491093158722,
-0.011372130364179611,
-0.047098737210035324,
0.022122133523225784,
0.003568086074665189,
0.05299065262079239,
-0.04208511859178543,
0.0014844152610749006,
0.023348091170191765,
-0.021811069920659065,
-0.015562344342470169,
-0.01615702547132969,
-0.020438728854060173,
0.038535330444574356,
-0.02190255932509899,
-0.03908426687121391,
0.007282555103302002,
-0.010402343235909939,
0.0425974577665329,
-0.06576257199048996,
0.06184682622551918,
-0.0005349270068109035,
-0.007442661561071873,
-0.006015426944941282,
-0.011253194883465767,
0.03959660604596138,
0.018791919574141502,
-0.0602366104722023,
0.014583407901227474,
0.0629080981016159,
0.007744576316326857,
-0.05862639844417572,
0.03150894492864609,
-0.024391070008277893,
-0.08724427968263626,
0.09383151680231094,
0.07154469937086105,
-0.02221362292766571,
0.0094965985044837,
-0.041682563722133636,
0.03035617806017399,
-0.07077618688344955,
-0.020054472610354424,
-0.01162830088287592,
0.055113207548856735,
0.06396938115358353,
-0.026458730921149254,
0.03864511474967003,
-0.07066640257835388,
-0.012195535004138947,
-0.07663150876760483,
-0.018581494688987732,
0.010942130349576473,
0.012213832698762417,
-0.006088618654757738,
0.012314471416175365,
-0.006084043998271227,
0.012826811522245407,
0.013952131383121014,
0.043256182223558426,
0.015489152632653713,
-0.06078554689884186,
-0.052697885781526566,
0.01714511029422283,
0.05002639442682266,
0.03824256360530853,
-0.034400008618831635,
-0.006344788707792759,
-0.06514044106006622,
0.055918313562870026,
-0.07553363591432571,
-0.01028340682387352,
-0.0004883246147073805,
0.025159580633044243
]
|
42,138 | werkzeug.datastructures.headers | __init__ | null | def __init__(self, defaults=None):
self._list = []
if defaults is not None:
self.extend(defaults)
| (self, defaults=None) | [
-0.004758012946695089,
-0.015149720013141632,
-0.01341561134904623,
-0.017944999039173126,
-0.032766878604888916,
0.015606972388923168,
-0.019670478999614716,
0.02574416995048523,
0.05797614902257919,
0.020584983751177788,
-0.04355113208293915,
0.01612461544573307,
-0.037891555577516556,
0.02524378150701523,
0.009938768111169338,
0.022793598473072052,
0.04531111940741539,
-0.00036450778134167194,
0.004507818259298801,
-0.017979508265852928,
0.02196536771953106,
-0.0014084235299378633,
-0.019032051786780357,
0.08758539706468582,
0.0041864472441375256,
0.07191803306341171,
0.028953565284609795,
-0.022103406488895416,
0.014364626258611679,
0.031886883080005646,
0.0039060567505657673,
0.012035227380692959,
-0.05925300344824791,
0.044655438512563705,
0.05597459152340889,
-0.034751180559396744,
-0.055871061980724335,
0.09593672305345535,
-0.09628181904554367,
0.01224228460341692,
0.10808410495519638,
-0.04189467057585716,
-0.0002968365733977407,
-0.03366412594914436,
0.005016834940761328,
0.06194475293159485,
0.03111041523516178,
0.04665699601173401,
0.049486782401800156,
-0.04186015948653221,
0.0415840819478035,
0.04862404242157936,
-0.007704271003603935,
-0.02381163276731968,
-0.07992426306009293,
0.06608590483665466,
0.020205378532409668,
0.08634305000305176,
0.0003100472968071699,
0.05217853561043739,
-0.01730656996369362,
0.0018850875785574317,
0.030420223250985146,
-0.09186458587646484,
0.0015939127188175917,
0.010033669881522655,
-0.07108980417251587,
-0.005452518817037344,
0.04883110150694847,
0.0503840334713459,
-0.010266609489917755,
0.006095260381698608,
-0.04741620644927025,
0.0241912379860878,
0.053765974938869476,
0.002284104935824871,
-0.024933194741606712,
0.005668203812092543,
-0.018704209476709366,
-0.021395958960056305,
-0.028073569759726524,
0.059529080986976624,
-0.03775351494550705,
0.05214402452111244,
0.03716685250401497,
-0.02410496398806572,
-0.03014414571225643,
0.004783894866704941,
0.031144924461841583,
0.030126892030239105,
-0.039030373096466064,
0.03216295689344406,
0.007479958701878786,
0.012734047137200832,
-0.04362015053629875,
-0.027021026238799095,
-0.0010897488100454211,
-0.06404983997344971,
-0.011301898397505283,
0.019618714228272438,
-0.0717109739780426,
-0.03733940050005913,
-0.019256364554166794,
-0.0425848625600338,
-0.04779581353068352,
-0.0668451189994812,
-0.013174044899642467,
-0.04555268958210945,
0.009602299891412258,
0.05852830410003662,
-0.025847699493169785,
-0.02826337330043316,
0.02313869446516037,
0.032231979072093964,
-0.017151277512311935,
0.019704988226294518,
-0.03421628102660179,
-0.0022754776291549206,
0.0870332419872284,
-0.03568293899297714,
-0.04127349704504013,
0.005047030746936798,
-0.046587977558374405,
0.04879659041762352,
0.027728473767638206,
0.0011528367176651955,
-0.005336049012839794,
0.018497152253985405,
0.013743452727794647,
-0.008791323751211166,
0.06363572180271149,
-0.029919834807515144,
-0.06522316485643387,
-0.022948892787098885,
0.04693307355046272,
-0.0833752229809761,
-0.00488311005756259,
0.008114072494208813,
-0.01284620352089405,
0.00978347472846508,
0.0145112918689847,
-0.024846920743584633,
0.05828673392534256,
0.04006566107273102,
-0.03720136359333992,
0.025226525962352753,
0.01960146054625511,
0.00235096737742424,
-0.039996638894081116,
0.03131747245788574,
-0.011120722629129887,
0.013777962885797024,
-0.04500053450465202,
-0.012587381526827812,
-0.026900243014097214,
-0.004225270822644234,
-0.04103193059563637,
-0.02607201226055622,
0.015839911997318268,
-0.020981844514608383,
0.0007230842020362616,
0.028142588213086128,
0.003386255819350481,
-0.0016823435435071588,
-0.01759990304708481,
0.009127792902290821,
-0.021050862967967987,
-0.0609784834086895,
-0.0019260677509009838,
0.034578632563352585,
0.021930858492851257,
-0.08434149622917175,
0.02583044394850731,
0.014925407245755196,
0.022534776479005814,
0.021930858492851257,
-0.03937546908855438,
0.0024156728759407997,
-0.014399135485291481,
0.010188963264226913,
-0.040376245975494385,
-0.013708943501114845,
-0.02015361376106739,
-0.031006887555122375,
0.037684496492147446,
0.019204599782824516,
0.02636534348130226,
0.03809861093759537,
0.02225870080292225,
0.02973003126680851,
0.016055596992373466,
0.0032137075904756784,
-0.009705828502774239,
-0.02510574273765087,
-0.03314648196101189,
0.02023988775908947,
0.004688993562012911,
-0.03480294346809387,
-0.03345707058906555,
0.04489700496196747,
-0.023656338453292847,
-0.039789583534002304,
0.023483790457248688,
-0.08875872194766998,
0.03875429555773735,
0.05207500606775284,
-0.016021087765693665,
-0.03438882902264595,
-0.03820214048027992,
-0.00959367211908102,
-0.000051899220125051215,
0.0017998919356614351,
-0.004538014065474272,
-0.046380918473005295,
0.022690070793032646,
-0.03544137254357338,
0.007557604927569628,
-0.02779749222099781,
0.004048408940434456,
0.02931591495871544,
0.08427247405052185,
-0.02196536771953106,
-0.04879659041762352,
0.004481935873627663,
-0.014580311253666878,
0.039582524448633194,
-0.0031188062857836485,
-0.06629296392202377,
-0.016029715538024902,
-0.009887004271149635,
-0.0171771589666605,
-0.039789583534002304,
-0.023449281230568886,
0.001894793356768787,
-0.0000709064697730355,
0.011698758229613304,
0.010128571651875973,
-0.021741054952144623,
-0.0735744908452034,
0.006388592068105936,
0.012863458134233952,
0.03582097589969635,
0.017875978723168373,
-0.011189742013812065,
0.01566736400127411,
0.037684496492147446,
0.0023186146281659603,
0.00024803783162496984,
0.012121501378715038,
-0.010672098025679588,
0.006962314248085022,
0.010206217877566814,
-0.010680724866688251,
-0.014054039493203163,
0.00595290819182992,
0.05245460942387581,
-0.02234497480094433,
0.005780360195785761,
-0.022793598473072052,
-0.04896913841366768,
0.037684496492147446,
-0.048175420612096786,
0.027469651773571968,
0.04475896805524826,
-0.018290095031261444,
0.04572523757815361,
0.014459528028964996,
0.021689292043447495,
-0.04220525547862053,
0.00465017044916749,
0.10490921884775162,
0.0025105744134634733,
0.01280306652188301,
-0.02032616175711155,
0.004337426740676165,
-0.010137198492884636,
0.034544121474027634,
-0.07053764909505844,
-0.06812197715044022,
0.04148055240511894,
0.04479347541928291,
0.008791323751211166,
0.013864236883819103,
-0.0013404827332124114,
0.04531111940741539,
-0.0037744888104498386,
-0.0004017134488094598,
0.07002000510692596,
-0.09179557114839554,
-0.03171433508396149,
0.06480905413627625,
0.039996638894081116,
0.05283421650528908,
0.016909709200263023,
0.03347432240843773,
-0.03968605399131775,
0.011707386001944542,
0.049072667956352234,
0.02985081449151039,
0.006841530557721853,
-0.0002968365733977407,
-0.05673380196094513,
0.06922627985477448,
0.014640702866017818,
-0.012061109766364098,
-0.08765441179275513,
-0.0076783886179327965,
0.024122219532728195,
0.0628420040011406,
0.004093702882528305,
0.035130783915519714,
0.056457724422216415,
-0.01167287677526474,
0.04707111045718193,
0.01190581638365984,
-0.007475644815713167,
0.0096799461171031,
-0.05576753243803978,
0.003651548409834504,
0.03920292109251022,
-0.03658019006252289,
-0.023984180763363838,
-0.0367872454226017,
-0.02381163276731968,
-0.012708164751529694,
0.009585045278072357,
-0.007855250500142574,
0.028573958203196526,
0.012449342757463455,
0.04565621539950371,
-0.028159843757748604,
-0.03383667394518852,
-0.019704988226294518,
0.0020479299128055573,
-0.02797004021704197,
-0.01530501339584589,
-0.030834339559078217,
-0.007768976502120495,
-0.012734047137200832,
-0.05311029404401779,
-0.04820992797613144,
-0.0032331193797290325,
-0.06135809049010277,
0.014261097647249699,
0.011301898397505283,
0.00027661610511131585,
0.05980515852570534,
0.028746506199240685,
0.01880773901939392,
-0.042722899466753006,
0.01634030230343342,
-0.019670478999614716,
0.006738001946359873,
0.040755853056907654,
0.0659133568406105,
-0.006211730185896158,
-0.013130907900631428,
0.00470193475484848,
0.03640764206647873,
-0.04303348809480667,
0.047968361526727676,
0.010413275100290775,
-0.023587319999933243,
0.007881132885813713,
0.040376245975494385,
0.0006152417045086622,
0.026555147022008896,
-0.024536333978176117,
0.018462643027305603,
-0.05676831305027008,
-0.0120956189930439,
-0.028522195294499397,
-0.008023484610021114,
-0.0142783522605896,
0.047726795077323914,
-0.026296325027942657,
-0.04800287261605263,
0.02469162829220295,
-0.012380323372781277,
-0.009930141270160675,
-0.057044390588998795,
-0.00583643838763237,
0.0503150150179863,
0.00814426876604557,
-0.021551253274083138,
-0.009205439127981663,
0.007855250500142574,
0.043482109904289246,
0.02003283053636551,
0.04372368007898331,
-0.0038629197515547276,
-0.043861716985702515,
-0.08054543286561966,
-0.026882987469434738,
-0.05235108360648155,
0.01099993847310543,
0.062289848923683167,
0.02779749222099781,
-0.007954465225338936,
-0.03161080554127693,
0.05321382358670235,
-0.05110873654484749,
0.009153674356639385,
0.0455181784927845,
-0.02498495951294899,
0.009671319276094437,
0.007027019746601582,
-0.015477561391890049,
0.002831944962963462,
0.004311544820666313,
0.014209332875907421,
-0.0162108913064003,
0.0010832783300429583,
-0.05107422545552254,
0.029333170503377914,
0.006975255440920591,
-0.013674434274435043,
0.021050862967967987,
0.06353219598531723,
-0.014502665027976036,
-0.005957221612334251,
0.0049823252484202385,
0.01701323874294758,
0.08109758794307709,
0.03314648196101189,
0.004227427300065756,
0.035217057913541794,
-0.01634030230343342,
-0.01822107471525669,
-0.06266945600509644,
-0.03588999807834625,
0.029764540493488312,
0.0017049905145540833,
-0.04068683460354805,
0.047140128910541534,
-0.009421124123036861,
0.015814030542969704,
-0.08585991710424423,
-0.057182427495718,
0.00986974872648716,
0.011750523000955582,
-0.015063446015119553,
0.021309684962034225,
0.017737939953804016,
0.005206637550145388,
-0.0033474324736744165,
-0.08868970721960068,
0.04548366740345955,
0.005327421240508556,
-0.054145582020282745,
-0.031024141237139702,
-0.011086213402450085,
0.07985524088144302,
0.00048421300016343594,
0.025847699493169785,
-0.03450961410999298,
-0.03716685250401497,
0.01154346577823162,
0.02363908477127552,
-0.0513157919049263,
0.066707082092762,
-0.017125394195318222,
0.030368458479642868,
-0.03723587095737457,
-0.010292491875588894,
0.08240895718336105,
0.020878314971923828,
0.036131564527750015,
-0.031852371990680695,
-0.009999159723520279,
0.042515844106674194,
0.005094481632113457,
-0.04886561259627342,
-0.10566843301057816,
-0.0015065602492541075,
0.008623089641332626,
0.04417230561375618,
-0.02791827730834484,
-0.04051428660750389,
-0.033905692398548126,
-0.016392065212130547,
-0.05266166850924492,
0.0167112797498703,
0.010456412099301815,
-0.05749301239848137,
-0.03758096694946289,
-0.004177819937467575,
-0.053386371582746506,
0.024795155972242355,
-0.007777603808790445,
-0.02137870527803898,
0.0049995798617601395,
-0.01910107024013996,
-0.009076028130948544,
0.023621829226613045,
0.006832903251051903,
0.02099909819662571,
-0.0023444967810064554,
0.03557940945029259,
0.009041517972946167,
0.02275908924639225,
-0.025381820276379585,
-0.0007176920771598816,
0.005499969236552715,
-0.0018149899551644921,
-0.03557940945029259,
-0.051591869443655014,
-0.016435202211141586,
-0.08199483901262283,
-0.01224228460341692,
0.0290225837379694,
0.02255203202366829,
-0.007389370817691088,
-0.020602239295840263,
0.015615599229931831,
-0.03330177441239357,
-0.05380048602819443,
0.004052722826600075,
0.062048282474279404,
0.0213269405066967,
0.008299562148749828,
0.056078121066093445,
-0.012181892991065979,
0.003418608568608761,
0.006211730185896158,
-0.007570546120405197,
-0.03418176993727684,
-0.010827390477061272,
0.03325001150369644,
0.09000106900930405,
0.017668921500444412,
-0.02876376174390316,
-0.06974392384290695,
0.029695522040128708,
-0.029868070036172867,
0.089034803211689,
0.015279131010174751,
-0.006190161686390638,
0.006315259262919426,
0.014269724488258362,
0.02917787805199623,
0.018083035945892334,
0.06008123606443405,
-0.06049535050988197,
-0.024294767528772354,
0.017824213951826096,
-0.07964818179607391,
0.020895570516586304,
0.001357737579382956,
-0.01697010174393654,
0.021344196051359177,
-0.03906488046050072,
-0.04534563049674034,
0.00583643838763237,
0.010758372023701668,
-0.08806852996349335,
0.000624408305156976,
-0.05010795593261719,
0.04903816059231758,
0.03488921746611595,
0.030851593241095543,
0.04437936097383499,
-0.04496602341532707,
0.0005834281328134239,
-0.0028599840588867664,
-0.014873642474412918,
-0.005323107820004225,
-0.002803906099870801,
0.004723503254354,
0.02469162829220295,
-0.00810113176703453,
-0.05849379301071167,
-0.01868695579469204,
0.04144604504108429,
-0.012596008367836475,
0.038443706929683685,
0.019463421776890755,
0.044482890516519547,
-0.020964588969945908,
-0.0754380151629448,
-0.00707447063177824,
-0.009947395883500576,
-0.022275954484939575,
-0.08924185484647751,
0.03438882902264595,
-0.0063972193747758865,
-0.007009765133261681,
-0.0036084114108234644,
-0.02645161747932434,
0.00844191387295723,
0.0057846736162900925,
0.07681839913129807,
-0.013596787117421627,
0.029661010950803757,
-0.0324217826128006,
-0.0008481815457344055,
0.0006093103438615799,
-0.049314234405756,
-0.019704988226294518,
0.03716685250401497,
0.00861014798283577,
0.03675273805856705,
-0.005456832237541676,
0.04127349704504013,
0.025761425495147705,
-0.03937546908855438,
-0.04068683460354805,
0.011681503616273403,
0.001654304563999176,
0.027228083461523056,
-0.0012649929849430919,
-0.0017341079656034708,
0.008308188989758492,
0.0033172364346683025,
-0.018617935478687286,
-0.027555925771594048,
-0.012371695600450039,
0.024795155972242355,
0.06725923717021942,
0.02196536771953106,
-0.030886102467775345,
0.035717450082302094,
0.01200934499502182,
0.02577868103981018,
-0.048347968608140945,
-0.06211730092763901,
-0.06556826084852219,
-0.04410328343510628,
0.0030670417472720146,
0.003013120498508215,
0.0833062008023262,
-0.03854723647236824,
0.014588939025998116,
0.004533700179308653,
0.022448502480983734,
-0.03640764206647873,
0.01590893045067787,
-0.05300676450133324,
0.028453174978494644,
0.01604696922004223,
-0.020671257749199867,
-0.03568293899297714,
0.04148055240511894,
0.019325383007526398,
-0.0406523235142231,
-0.004538014065474272,
-0.035924505442380905,
-0.0013221495319157839,
0.016383439302444458,
0.005987417884171009,
-0.05307578295469284,
0.027935530990362167,
-0.009395241737365723,
0.03947899490594864,
-0.03837468847632408,
0.02893630973994732,
-0.004063507076352835,
0.033853929489851,
0.049279727041721344,
-0.041929177939891815,
-0.075576052069664,
0.004512131679803133,
0.028867291286587715,
-0.005754477810114622,
0.005336049012839794,
-0.01297561451792717,
-0.0232594795525074,
-0.0061685931868851185,
0.014494037255644798,
0.03381941840052605,
-0.020515965297818184,
0.0036084114108234644,
-0.005927025806158781,
0.04865855351090431,
0.010327001102268696,
-0.01818656548857689,
-0.03183511644601822,
0.023190459236502647,
0.039237428456544876,
-0.013752080500125885,
0.033232755959033966,
-0.02557162195444107,
-0.022690070793032646,
-0.026175541803240776,
0.01559834461659193,
0.08240895718336105,
-0.020895570516586304,
0.011560720391571522,
0.0290225837379694,
0.035044509917497635,
0.010758372023701668,
-0.045414648950099945,
0.01915283501148224,
0.018911266699433327,
-0.008679167367517948,
0.04879659041762352,
-0.04769228398799896,
-0.07088274508714676,
0.001238032360561192,
-0.02472613751888275,
0.033232755959033966,
0.026900243014097214,
-0.05659576505422592,
0.07419566810131073,
0.013985020108520985,
-0.010206217877566814,
-0.007976033724844456,
0.02527829073369503,
0.038478218019008636,
0.0033797852229326963,
0.03078257478773594,
0.11174212396144867,
0.010352883487939835,
-0.0774395689368248,
-0.0193598922342062,
-0.005616439506411552,
0.11153506487607956,
0.0007009765249677002,
-0.048140909522771835,
0.004417230375111103,
0.057458505034446716,
-0.003776645753532648,
0.04914168640971184,
-0.02557162195444107,
0.04261936992406845,
-0.03733940050005913,
-0.028401410207152367,
-0.04955580458045006,
-0.015770893543958664,
-0.02888454496860504,
0.018031273037195206,
0.0038521355018019676,
0.01860068179666996,
0.04189467057585716,
-0.00046911503886803985,
-0.0513848140835762,
0.021188901737332344,
0.04789934307336807,
-0.01991204544901848,
0.049314234405756,
-0.027952786535024643,
-0.0483824759721756,
0.03840919956564903,
0.08420345187187195,
-0.04320603609085083,
-0.05380048602819443,
0.07419566810131073,
-0.03174884244799614,
0.0016801867168396711,
0.019204599782824516,
-0.01306188851594925,
-0.020291652530431747,
0.00493487436324358,
0.02049870975315571,
0.02023988775908947,
-0.009317595511674881,
-0.03278413042426109,
-0.02960924804210663,
-0.019463421776890755,
-0.03992762044072151,
-0.049659330397844315,
-0.04682954400777817,
0.030006108805537224,
0.017789704725146294,
0.02973003126680851,
0.04720915108919144,
0.045794256031513214,
-0.00022121200163383037
]
|
42,139 | werkzeug.datastructures.headers | __iter__ | Yield ``(key, value)`` tuples. | def __iter__(self):
"""Yield ``(key, value)`` tuples."""
return iter(self._list)
| (self) | [
0.0421258807182312,
-0.04940435662865639,
-0.06900817155838013,
-0.022127246484160423,
0.00641157990321517,
-0.00799087155610323,
0.007063895929604769,
0.027912259101867676,
0.10512587428092957,
0.016359400004148483,
-0.0273286085575819,
0.0011726667871698737,
0.01306348666548729,
0.057644136250019073,
-0.005312942434102297,
0.012333923019468784,
-0.010823296383023262,
0.030538689345121384,
-0.050846315920352936,
0.044941142201423645,
-0.01698596589267254,
-0.007003813982009888,
0.027826428413391113,
0.04669209569692612,
-0.009896321222186089,
0.010376974940299988,
0.02676212415099144,
-0.016805721446871758,
0.04305285960435867,
0.008441484533250332,
-0.02279672771692276,
-0.015363759361207485,
0.02537165954709053,
-0.00448467256501317,
0.045490458607673645,
0.01453119795769453,
-0.0819171592593193,
0.014908854849636555,
-0.016565393656492233,
0.03295912593603134,
0.07807192951440811,
-0.0284272450953722,
0.009947819635272026,
-0.008351361379027367,
0.03079618327319622,
0.019998636096715927,
0.021577928215265274,
0.01712329499423504,
0.05046866089105606,
-0.06152370199561119,
0.03230680897831917,
0.01453119795769453,
-0.004694958683103323,
-0.03254713490605354,
-0.039653949439525604,
0.03170599043369293,
0.0077462526969611645,
0.008098159916698933,
0.006244209129363298,
0.07484468072652817,
-0.02669345773756504,
-0.039722613990306854,
0.017887191846966743,
-0.06310299038887024,
0.028118254616856575,
-0.0439111664891243,
-0.07559999078512192,
-0.012497001327574253,
-0.007977996952831745,
0.01636798307299614,
-0.0009339491953141987,
-0.001888283179141581,
-0.02744877152144909,
0.012248091399669647,
-0.04360217601060867,
0.01700313203036785,
-0.0685618445277214,
0.05208228528499603,
0.03807465732097626,
-0.07518800348043442,
-0.033817436546087265,
0.051464300602674484,
-0.03146566450595856,
0.0009902757592499256,
-0.03225531056523323,
0.02029046230018139,
0.013552723452448845,
-0.012282423675060272,
-0.04164522886276245,
0.12064412981271744,
-0.017363622784614563,
0.0439111664891243,
-0.015518254600465298,
0.041404902935028076,
-0.026607627049088478,
-0.031173840165138245,
-0.03079618327319622,
-0.023603539913892746,
0.016290733590722084,
0.002695095259696245,
-0.0071454355493187904,
0.03670135885477066,
0.02696811780333519,
0.005119822453707457,
-0.013870298862457275,
-0.029422886669635773,
-0.042812529951334,
-0.036667026579380035,
0.028547409921884537,
0.024084193632006645,
-0.05867410823702812,
0.03446975350379944,
0.0027916550170630217,
0.02468501217663288,
-0.012205176055431366,
-0.021526429802179337,
-0.003731505246832967,
-0.02494250424206257,
0.03532806411385536,
-0.03503623604774475,
-0.018093187361955643,
0.029285555705428123,
-0.02585231326520443,
0.048065390437841415,
-0.016702722758054733,
0.033954765647649765,
0.03223814442753792,
-0.019088827073574066,
0.0019977178890258074,
0.00035754000418819487,
0.018453676253557205,
0.02621280401945114,
0.013466892763972282,
0.008595980703830719,
0.03862397372722626,
-0.05901743471622467,
0.062382012605667114,
-0.018436510115861893,
-0.030899180099368095,
0.06485394388437271,
0.04312152415513992,
0.0045190053060650826,
0.042297545820474625,
0.06677655875682831,
-0.03462424874305725,
-0.07312805950641632,
-0.008587397634983063,
0.07628664374351501,
0.033954765647649765,
-0.0069265663623809814,
-0.022007083520293236,
0.039585284888744354,
0.03996293991804123,
0.06172969564795494,
-0.03834931552410126,
0.019380653277039528,
-0.03690735250711441,
0.0061455038376152515,
0.014891688711941242,
-0.03223814442753792,
-0.02578364871442318,
-0.018505176529288292,
-0.00851444061845541,
0.010188146494328976,
0.00012297980720177293,
0.01994713768362999,
-0.02425585687160492,
-0.03824631869792938,
0.023466210812330246,
-0.039585284888744354,
0.0077462526969611645,
-0.07958255708217621,
-0.034933239221572876,
0.015192097052931786,
-0.047516074031591415,
0.06533460319042206,
-0.004216450732201338,
0.10334058851003647,
0.030624520033597946,
0.013295230455696583,
-0.03337111324071884,
-0.046039778739213943,
-0.06475094705820084,
-0.032495636492967606,
0.03642670065164566,
0.07299073040485382,
0.05101798102259636,
0.034727245569229126,
0.023534875363111496,
0.0038409398403018713,
-0.010411307215690613,
-0.05373024195432663,
-0.013484058901667595,
-0.02557765506207943,
-0.05156729742884636,
0.022144412621855736,
-0.050434328615665436,
0.024204358458518982,
-0.03168882429599762,
0.07505067437887192,
-0.07559999078512192,
-0.06063105911016464,
-0.017157627269625664,
0.010359808802604675,
0.008518732152879238,
0.019912805408239365,
-0.0060296314768493176,
-0.05551552772521973,
0.04995367303490639,
0.005965258460491896,
0.010591552592813969,
-0.04343051463365555,
0.012016347609460354,
0.0205822866410017,
0.034933239221572876,
-0.06416729837656021,
-0.03604904189705849,
-0.07868991047143936,
-0.009389917366206646,
-0.015561170876026154,
0.07237274944782257,
-0.03191198781132698,
0.0022294616792351007,
-0.05812479183077812,
0.02683078870177269,
-0.02224740944802761,
-0.024410352110862732,
-0.03670135885477066,
-0.09338419139385223,
0.0048966617323458195,
0.028667572885751724,
-0.0017541722627356648,
0.028719071298837662,
0.012085013091564178,
0.027980923652648926,
0.0038044615648686886,
-0.018127519637346268,
-0.01303773745894432,
-0.04858037829399109,
0.04476947709918022,
-0.003328099148347974,
0.041816890239715576,
0.03848664462566376,
0.0016329358331859112,
-0.05857111141085625,
0.024170026183128357,
0.022916892543435097,
0.0885089859366417,
0.012617165222764015,
0.030401360243558884,
0.01924332231283188,
0.002291689161211252,
-0.0022251701448112726,
-0.009398500435054302,
0.03793732821941376,
-0.04332751780748367,
-0.03580871596932411,
-0.012557083740830421,
0.03522506728768349,
-0.02635013498365879,
0.029903540387749672,
0.01448828261345625,
-0.004467506427317858,
0.0678751990199089,
0.04332751780748367,
0.053009260445833206,
0.02238473854959011,
0.029302721843123436,
-0.021303268149495125,
0.06396130472421646,
0.0671885535120964,
-0.02197275124490261,
-0.015286510810256004,
0.017011715099215508,
-0.01917465776205063,
0.0049309940077364445,
0.019294820725917816,
-0.027294276282191277,
-0.08280980587005615,
-0.00613262876868248,
0.01024822797626257,
0.03314795345067978,
-0.05180762708187103,
-0.021406264975667,
-0.0054373973980546,
-0.0029633173253387213,
0.0005273245624266565,
0.045765120536088943,
0.023037055507302284,
-0.008278405293822289,
0.06845884770154953,
-0.009613078087568283,
0.012230925261974335,
-0.03683868795633316,
0.07367737591266632,
-0.002637159312143922,
-0.03462424874305725,
0.004716416355222464,
0.016419481486082077,
0.009973568841814995,
0.047996725887060165,
-0.021921250969171524,
-0.03448691964149475,
0.0406152568757534,
0.0017938690725713968,
0.03786866366863251,
0.025560488924384117,
0.09626810997724533,
-0.054176561534404755,
0.017973022535443306,
0.015037600882351398,
0.01737220585346222,
-0.01529509387910366,
-0.002418289892375469,
-0.0034117845352739096,
-0.08074985444545746,
-0.019895639270544052,
0.026384467259049416,
-0.024994002655148506,
0.09262887388467789,
-0.07978855073451996,
-0.004100578837096691,
0.02516566589474678,
0.006428746040910482,
0.003787295427173376,
0.012908990494906902,
0.012660080567002296,
0.047447409480810165,
0.025560488924384117,
0.04669209569692612,
-0.015861578285694122,
-0.05184195935726166,
-0.02509700134396553,
0.06780653446912766,
-0.006591825280338526,
0.047722067683935165,
0.02585231326520443,
0.021406264975667,
0.00976757425814867,
-0.09551279991865158,
-0.04686375707387924,
-0.027225611731410027,
0.002360353944823146,
-0.006291416473686695,
-0.05414222925901413,
-0.003467574715614319,
-0.022470571100711823,
0.018659671768546104,
0.06100871413946152,
-0.016882969066500664,
0.01953514851629734,
-0.012866075150668621,
0.039379287511110306,
0.029302721843123436,
0.04748174175620079,
-0.02056512050330639,
-0.029422886669635773,
0.009492915123701096,
-0.0006882578018121421,
0.027362940832972527,
0.07381470501422882,
-0.02600681036710739,
-0.023397546261548996,
-0.00632574874907732,
0.0014709297101944685,
-0.05170462653040886,
-0.06481961160898209,
-0.0170717965811491,
0.03204931691288948,
-0.0018131810938939452,
-0.027912259101867676,
-0.008986511267721653,
-0.04329318553209305,
-0.04593678191304207,
0.037147682160139084,
-0.048134054988622665,
0.004074829164892435,
0.07388336956501007,
-0.04387683421373367,
0.02181825414299965,
0.029800543561577797,
-0.008694685995578766,
0.04511280357837677,
0.03804032504558563,
0.00948433205485344,
-0.041954219341278076,
0.05324958637356758,
0.0008781590149737895,
0.0030083784367889166,
0.025732150301337242,
-0.07154876738786697,
-0.008630312979221344,
-0.042503539472818375,
-0.008823432959616184,
-0.023723704740405083,
-0.04274386540055275,
0.05922342836856842,
-0.0560305118560791,
-0.020341960713267326,
-0.0419885516166687,
0.03594604507088661,
-0.01659972593188286,
-0.04864904284477234,
0.03407492861151695,
0.013295230455696583,
-0.06437329202890396,
0.013578472658991814,
-0.02988637425005436,
0.007952247746288776,
-0.042297545820474625,
0.008089576847851276,
-0.04071825370192528,
0.008111034519970417,
-0.05956675484776497,
0.0341435931622982,
0.002062091138213873,
-0.053833238780498505,
0.032907627522945404,
0.039035964757204056,
0.04016893357038498,
0.01702888123691082,
-0.058708444237709045,
0.01917465776205063,
0.024170026183128357,
-0.05448555573821068,
-0.04092424735426903,
-0.005162737797945738,
0.009673159569501877,
-0.0012027076445519924,
-0.04607411101460457,
-0.017458036541938782,
-0.059944409877061844,
0.005051157437264919,
-0.0038066073320806026,
0.036873020231723785,
-0.02473651058971882,
-0.053352583199739456,
-0.05142996832728386,
0.0223675724118948,
0.013200816698372364,
0.006660489831119776,
0.03779999539256096,
0.041404902935028076,
-0.03773133084177971,
0.07738527655601501,
-0.005643391981720924,
-0.060081738978624344,
0.03862397372722626,
0.10952042788267136,
-0.00472499942407012,
0.01515776477754116,
0.02550899051129818,
0.045902449637651443,
-0.02509700134396553,
0.03029836341738701,
0.024152860045433044,
-0.029766209423542023,
-0.04858037829399109,
0.014977519400417805,
0.0074029285460710526,
0.05180762708187103,
0.005274318624287844,
0.017389371991157532,
-0.05270026996731758,
-0.007737669628113508,
-0.027620434761047363,
-0.028787735849618912,
0.05846811458468437,
-0.0012606435921043158,
0.000023435901312041096,
0.008145366795361042,
-0.019826974719762802,
-0.032770298421382904,
-0.07477601617574692,
-0.017355039715766907,
0.021097274497151375,
-0.0032379766926169395,
0.01494318712502718,
-0.018745502457022667,
-0.06392697244882584,
-0.026453131809830666,
-0.04470081254839897,
0.04768773540854454,
-0.035139232873916626,
-0.026659125462174416,
-0.02786076068878174,
0.0341435931622982,
-0.02183542028069496,
-0.039447952061891556,
0.003744379850104451,
0.01566416770219803,
-0.019586646929383278,
-0.004707833286374807,
-0.007926497608423233,
0.032976292073726654,
-0.005724931601434946,
-0.004446048755198717,
0.011441280134022236,
0.010188146494328976,
-0.004729291424155235,
0.002692949492484331,
-0.007497342769056559,
0.07148010283708572,
0.014634194783866405,
0.02913106046617031,
0.03697602078318596,
-0.010694549418985844,
-0.020187463611364365,
-0.03584304824471474,
-0.05218528211116791,
0.01661689206957817,
-0.02662479318678379,
-0.009261171333491802,
-0.06574659049510956,
0.011492778547108173,
-0.06437329202890396,
-0.059944409877061844,
-0.010497137904167175,
-0.03879563882946968,
0.03120817244052887,
0.03841798007488251,
0.013672887347638607,
-0.0204449575394392,
0.031225338578224182,
-0.02947438508272171,
0.008698977530002594,
-0.010857628658413887,
-0.033250950276851654,
-0.0037057558074593544,
0.01508051622658968,
-0.004046934191137552,
-0.014402450993657112,
-0.010273977182805538,
-0.0047121248207986355,
-0.03352561220526695,
0.009947819635272026,
0.011544276960194111,
0.03828065097332001,
-0.016805721446871758,
0.07518800348043442,
0.06059672683477402,
0.002143630525097251,
-0.00441600801423192,
-0.04748174175620079,
0.024582015350461006,
0.007317097391933203,
-0.07106811553239822,
-0.04672642797231674,
-0.022333240136504173,
0.003516927594318986,
-0.030779017135500908,
-0.01917465776205063,
-0.007716211955994368,
0.00755742471665144,
-0.016213485971093178,
-0.017389371991157532,
0.011853269301354885,
-0.0034182218369096518,
-0.026796456426382065,
0.012685829773545265,
0.019226156175136566,
0.03738800808787346,
-0.11020707339048386,
-0.026504630222916603,
0.013724385760724545,
0.030109534040093422,
0.0014773670118302107,
0.033680107444524765,
0.010282560251653194,
0.027912259101867676,
0.016282150521874428,
0.007935081608593464,
0.01764686591923237,
0.026453131809830666,
0.02641879953444004,
0.030882013961672783,
-0.010960625484585762,
-0.0207882821559906,
0.0003012133529409766,
-0.11865285038948059,
-0.004353780299425125,
0.021165939047932625,
0.08129917830228806,
-0.02265939861536026,
-0.009844821877777576,
-0.016222069039940834,
-0.024221524596214294,
0.036667026579380035,
-0.045147135853767395,
0.008840599097311497,
0.0044932556338608265,
-0.050777651369571686,
-0.028856400400400162,
-0.014514031819999218,
0.011097955517470837,
-0.09166757017374039,
-0.02439318597316742,
-0.008385694585740566,
-0.06808119267225266,
0.009801906533539295,
0.016676973551511765,
0.046245772391557693,
0.02037629298865795,
0.03628937155008316,
0.05476021394133568,
-0.04579945281147957,
0.0036220706533640623,
0.006111171096563339,
0.01960381306707859,
0.029422886669635773,
-0.03759400174021721,
-0.0026092641055583954,
0.03865830600261688,
-0.037285011261701584,
0.014685694128274918,
0.0005399310030043125,
0.013415394350886345,
0.06753187626600266,
-0.00914100743830204,
0.023878199979662895,
-0.0004471261636354029,
0.0008143221493810415,
-0.021165939047932625,
0.06832151859998703,
-0.05338691547513008,
-0.0843890979886055,
0.05005667358636856,
-0.0049910759553313255,
0.04899236559867859,
-0.027689099311828613,
0.0021339745726436377,
-0.013484058901667595,
0.034555584192276,
-0.023809535428881645,
-0.03604904189705849,
0.0031693116761744022,
0.008741892874240875,
-0.017363622784614563,
-0.03266730159521103,
0.015338010154664516,
0.015835829079151154,
0.03824631869792938,
-0.023895366117358208,
0.0072398497723042965,
-0.024908171966671944,
0.013235148973762989,
-0.006385830696672201,
0.0032637258991599083,
0.0434991791844368,
-0.045627787709236145,
-0.010617301799356937,
0.05585885047912598,
-0.017088962718844414,
0.03079618327319622,
-0.059944409877061844,
-0.04037492722272873,
0.0006120827165432274,
-0.018728336319327354,
-0.019552314653992653,
0.013552723452448845,
-0.002542745089158416,
0.006450203713029623,
-0.014900271780788898,
-0.058845773339271545,
0.03642670065164566,
0.0016576122725382447,
-0.044872477650642395,
0.05582451820373535,
0.009063759818673134,
-0.0034911781549453735,
0.009347002021968365,
-0.010720298625528812,
-0.040134601294994354,
-0.016496729105710983,
-0.028581742197275162,
-0.010085148736834526,
-0.024358853697776794,
-0.004622002597898245,
0.0274659376591444,
-0.0042400541715323925,
-0.02593814581632614,
0.008892097510397434,
-0.006956607103347778,
0.03560272231698036,
-0.050228334963321686,
-0.004246491473168135,
-0.004199284594506025,
-0.02598964422941208,
-0.006012465339154005,
-0.09297219663858414,
0.01366430427879095,
-0.0673258826136589,
-0.012419753707945347,
-0.04219454899430275,
-0.031173840165138245,
0.033456943929195404,
0.0026543254498392344,
-0.0218869186937809,
0.06100871413946152,
-0.023517709225416183,
-0.019346319139003754,
0.016882969066500664,
0.05805612727999687,
0.0444604866206646,
0.053627245128154755,
-0.0011651566019281745,
0.004199284594506025,
0.007334263529628515,
0.02516566589474678,
0.02940572053194046,
0.00281525868922472,
0.06076838821172714,
-0.04981634393334389,
-0.04954168573021889,
0.03948228433728218,
-0.03975694626569748,
0.04648609831929207,
0.00651886872947216,
0.0404779277741909,
0.036461032927036285,
0.03383460268378258,
-0.02224740944802761,
0.004596252925693989,
0.058502446860075,
-0.014805857092142105,
0.007973705418407917,
-0.02071961760520935,
0.023397546261548996,
-0.06711988896131516,
0.05046866089105606,
0.014505448751151562,
-0.025354493409395218,
-0.03198065236210823,
0.03292479366064072,
-0.004096287302672863,
-0.011527110822498798,
-0.021801088005304337,
0.07429536432027817,
0.0002242336340714246,
0.06104304641485214,
-0.01764686591923237,
0.022075748071074486,
-0.00005327560575096868,
0.03156866133213043,
-0.04476947709918022,
-0.03474441170692444,
0.04068392142653465,
-0.003602758515626192,
-0.00781920924782753,
-0.015947410836815834,
0.02626430243253708,
0.03604904189705849,
0.03125967085361481,
0.02216157875955105,
0.05791879817843437,
-0.025182832032442093,
0.006175544578582048,
-0.038898635655641556,
-0.03766266629099846,
0.007119686342775822,
-0.050022341310977936,
0.004107016138732433,
0.01785285957157612,
0.011990598402917385,
-0.0410272441804409,
0.022985557094216347,
0.06753187626600266,
0.023157218471169472
]
|
42,140 | werkzeug.datastructures.headers | __len__ | null | def __len__(self):
return len(self._list)
| (self) | [
-0.001478576916269958,
-0.027408169582486153,
-0.02762203849852085,
0.038397759199142456,
0.0321790985763073,
0.03385715186595917,
0.0037056964356452227,
-0.02494044601917267,
0.043069981038570404,
0.0023340540938079357,
-0.03272199630737305,
-0.04951896145939827,
0.011269264854490757,
-0.023064978420734406,
0.018902752548456192,
0.01816243678331375,
0.018804043531417847,
-0.0004046036337967962,
0.017471473664045334,
0.022193050011992455,
-0.03087943233549595,
0.04376094415783882,
0.0635027214884758,
0.011795712634921074,
-0.03481133654713631,
0.02020242065191269,
0.05409247428178787,
-0.013284571468830109,
0.05787631496787071,
0.03991129621863365,
-0.0713336244225502,
0.026602046564221382,
0.00027556231361813843,
0.02783590741455555,
0.05336860939860344,
0.023755939677357674,
-0.02614140510559082,
-0.012174096889793873,
-0.011540714651346207,
0.012642963789403439,
0.010849752463400364,
-0.058402761816978455,
0.01831050030887127,
-0.006070597097277641,
0.04823574423789978,
0.010101210325956345,
0.0037385993637144566,
0.04425448551774025,
-0.0061034997925162315,
-0.04777510464191437,
0.001471379422582686,
0.05804082751274109,
-0.020482094958424568,
0.0042115794494748116,
-0.03750937804579735,
0.06583882868289948,
0.0410958006978035,
0.026503337547183037,
-0.0026754222344607115,
0.04790671542286873,
-0.028888802975416183,
-0.013202314265072346,
0.020284676924347878,
-0.09969598054885864,
0.029958149418234825,
-0.010167015716433525,
-0.03899001330137253,
0.04007580876350403,
0.04593253880739212,
0.015398587100207806,
0.011507811956107616,
0.02688172273337841,
-0.016706479713320732,
0.06310788542032242,
-0.016632448881864548,
-0.015275200828909874,
0.009303312748670578,
0.023114332929253578,
0.044682227075099945,
-0.0691620334982872,
0.0156042305752635,
0.02061370760202408,
0.039417751133441925,
0.053269900381565094,
0.02525302581489086,
-0.00257671345025301,
0.003765332978218794,
0.019939197227358818,
-0.04863058030605316,
0.0685039684176445,
-0.03530488163232803,
0.09811663627624512,
0.011943776160478592,
-0.007362038362771273,
-0.034350693225860596,
-0.0360945500433445,
-0.028757190331816673,
-0.08113870769739151,
0.014172951690852642,
-0.03635777533054352,
-0.03635777533054352,
0.07258393615484238,
0.026914624497294426,
0.007168733514845371,
-0.006847929209470749,
-0.013087154366075993,
-0.02318013831973076,
-0.03101104311645031,
-0.03974677994847298,
0.0360945500433445,
0.023821746930480003,
0.04270804673433304,
0.023755939677357674,
0.006440755445510149,
0.027868811041116714,
-0.00942669901996851,
0.014057791791856289,
-0.030303630977869034,
0.012823930010199547,
-0.025154316797852516,
0.02918493002653122,
0.03872678801417351,
-0.02770429663360119,
-0.05804082751274109,
0.056165359914302826,
0.03533778339624405,
-0.02851041778922081,
-0.02270304597914219,
0.03161974996328354,
-0.01492972020059824,
0.057185351848602295,
0.013662955723702908,
-0.0017695626011118293,
0.03438359871506691,
0.06639818102121353,
-0.04682091996073723,
0.04754478484392166,
-0.03237651661038399,
-0.04655769467353821,
0.04507705941796303,
0.005721002817153931,
0.022374015301465988,
0.07166265696287155,
0.03027072735130787,
-0.020992090925574303,
0.026092050597071648,
-0.01822824217379093,
0.0339229553937912,
-0.006778010632842779,
0.003321142867207527,
-0.01737276464700699,
-0.020498545840382576,
0.034613918513059616,
-0.02485818974673748,
-0.04520867392420769,
0.014650044962763786,
-0.0395822674036026,
-0.056922126561403275,
-0.003273844951763749,
-0.09515537321567535,
-0.045636411756277084,
0.007925501093268394,
-0.053269900381565094,
-0.006592931691557169,
-0.046985432505607605,
0.012050710618495941,
-0.01824469305574894,
-0.040569353848695755,
-0.06156144663691521,
0.06613495945930481,
0.02944815345108509,
-0.04007580876350403,
-0.005178104154765606,
0.02201208285987377,
-0.011943776160478592,
0.0591595284640789,
-0.029300089925527573,
0.049815088510513306,
0.004844961687922478,
-0.026223663240671158,
-0.0517563633620739,
-0.06182466819882393,
-0.021798213943839073,
-0.05856727808713913,
0.034548111259937286,
0.04991379752755165,
0.009541859850287437,
0.0292507354170084,
0.0086452541872859,
0.06949105858802795,
-0.054421503096818924,
-0.05356602743268013,
-0.006477770861238241,
-0.05007831007242203,
-0.04629446938633919,
-0.014921494759619236,
-0.02059725485742092,
0.020482094958424568,
-0.02735881507396698,
0.010504270903766155,
-0.06935945153236389,
-0.04274095222353935,
-0.01631164364516735,
-0.05228281021118164,
0.01722470112144947,
0.021436281502246857,
-0.03803582489490509,
-0.0004688672488555312,
0.007970742881298065,
-0.03754228353500366,
-0.03180071339011192,
-0.039417751133441925,
0.014987300150096416,
0.03254103288054466,
0.0706755667924881,
-0.08758769184350967,
-0.02790171280503273,
-0.06745107471942902,
0.0060089039616286755,
-0.0328371599316597,
0.09956437349319458,
-0.008941380307078362,
-0.05201958492398262,
-0.03701583296060562,
-0.028757190331816673,
-0.02992524579167366,
0.0009243676322512329,
0.03161974996328354,
-0.01482278574258089,
-0.03553520143032074,
-0.0039648073725402355,
0.025582054629921913,
0.048400260508060455,
0.0632724016904831,
0.013769890181720257,
0.01094846148043871,
-0.024496257305145264,
0.03629196807742119,
-0.059422753751277924,
-0.0096241170540452,
-0.04899251461029053,
-0.021041445434093475,
0.04142483323812485,
0.01689567230641842,
-0.0463273748755455,
0.017142444849014282,
0.0038619854021817446,
0.06922783702611923,
0.028806544840335846,
-0.0009449319913983345,
-0.030007503926753998,
-0.03750937804579735,
-0.053269900381565094,
-0.04484673961997032,
0.033199090510606766,
-0.0641607791185379,
-0.03227780759334564,
0.0015351289184764028,
-0.02054790034890175,
-0.029168477281928062,
0.04040484130382538,
-0.03586423024535179,
0.022982720285654068,
0.03648938611149788,
-0.03471262753009796,
0.04514286667108536,
0.04652479290962219,
0.04491254687309265,
-0.07646648585796356,
0.054355695843696594,
0.03310038149356842,
-0.03945065289735794,
-0.004717462696135044,
-0.041655153036117554,
-0.035699717700481415,
-0.013358603231608868,
0.017915664240717888,
-0.002395746996626258,
-0.0669904351234436,
0.024282388389110565,
0.039615169167518616,
0.008349127136170864,
-0.04369513690471649,
-0.02574656903743744,
-0.05471763014793396,
0.04122741520404816,
0.020284676924347878,
0.03586423024535179,
-0.0741632804274559,
-0.005568826571106911,
0.021913373842835426,
-0.016846317797899246,
0.0402403250336647,
0.015480844303965569,
0.04188547283411026,
-0.015628907829523087,
-0.0037056964356452227,
0.04135902598500252,
0.021386926993727684,
0.03655519336462021,
-0.0580737330019474,
-0.01659131981432438,
-0.05248022824525833,
-0.026865269988775253,
-0.0036769062280654907,
-0.02411787211894989,
0.048466067761182785,
0.03277135267853737,
0.03875969350337982,
0.007608810439705849,
0.005046491976827383,
0.06995170563459396,
-0.0069754282012581825,
0.054684728384017944,
0.09712955355644226,
0.01972532644867897,
-0.05781050771474838,
-0.005013589281588793,
-0.030649110674858093,
0.09087798744440079,
-0.047248657792806625,
0.03087943233549595,
0.018738238140940666,
0.004277385305613279,
-0.0027288896963000298,
-0.03994419798254967,
0.02755623310804367,
0.0456693135201931,
0.011187007650732994,
0.00716050760820508,
-0.023476265370845795,
-0.0652465745806694,
0.02020242065191269,
-0.01215764507651329,
-0.01676405966281891,
-0.014098919928073883,
0.04152354225516319,
0.01965952105820179,
-0.026980429887771606,
-0.009278635494410992,
-0.016517288982868195,
-0.0084807388484478,
-0.023426910862326622,
0.03282070532441139,
0.008842671290040016,
-0.021518537774682045,
0.03648938611149788,
0.01418117806315422,
0.052315711975097656,
-0.019889842718839645,
0.0121247423812747,
-0.009212830103933811,
0.03596293926239014,
0.038266148418188095,
0.049815088510513306,
-0.026256565004587173,
0.014345692470669746,
0.07515037059783936,
0.022587884217500687,
0.04701833426952362,
0.023591425269842148,
-0.02141983062028885,
-0.014855688437819481,
-0.013169411569833755,
0.012453772127628326,
-0.005482456646859646,
-0.021584345027804375,
-0.06258143484592438,
-0.025088509544730186,
-0.04099709168076515,
-0.04445190355181694,
-0.057645995169878006,
-0.02216014638543129,
-0.04925573617219925,
0.058468569070100784,
-0.0004974002949893475,
-0.02668430469930172,
0.04777510464191437,
-0.021798213943839073,
-0.008957832120358944,
-0.009336216375231743,
0.006391400936990976,
-0.006272127386182547,
-0.022604336962103844,
0.002846106421202421,
0.02775365114212036,
-0.07179427146911621,
-0.021090799942612648,
-0.017537279054522514,
0.033462315797805786,
-0.022374015301465988,
0.011367973871529102,
-0.08910122513771057,
-0.04323449358344078,
-0.07054395228624344,
0.027210751548409462,
0.038266148418188095,
-0.024973349645733833,
0.008357352577149868,
-0.020432740449905396,
0.06060726195573807,
-0.02201208285987377,
0.028674934059381485,
0.07659810036420822,
-0.02257143333554268,
0.009632342495024204,
0.01939629763364792,
-0.012601835653185844,
-0.04747897759079933,
-0.014526658691465855,
0.02600979246199131,
-0.0028296548407524824,
-0.013317475095391273,
-0.03018846921622753,
-0.008612350560724735,
-0.031192010268568993,
0.0013726705219596624,
-0.0006909622461535037,
0.09601084887981415,
0.04767639562487602,
0.01885339803993702,
0.03334715589880943,
0.04303707554936409,
0.09377344697713852,
-0.05040734261274338,
-0.01648438535630703,
-0.028691384941339493,
0.03092878684401512,
0.0036830755416303873,
-0.04932154342532158,
-0.024775931611657143,
0.004577625077217817,
0.015530198812484741,
-0.02439754828810692,
-0.013259894214570522,
-0.021913373842835426,
-0.0172905083745718,
-0.08311288803815842,
-0.015727616846561432,
0.03862807899713516,
0.04994669929146767,
0.02966202236711979,
0.016517288982868195,
0.05228281021118164,
0.06402917206287384,
-0.03945065289735794,
-0.008579447865486145,
-0.0428396612405777,
0.02985944040119648,
-0.04491254687309265,
-0.04149063676595688,
0.002669252920895815,
0.038068730384111404,
-0.024265935644507408,
-0.01401666272431612,
0.000056134256738005206,
-0.07712455093860626,
-0.014074242673814297,
-0.009879115037620068,
-0.05626406893134117,
-0.004853187128901482,
0.07120201736688614,
-0.010331531055271626,
-0.022456273436546326,
-0.021798213943839073,
-0.01650906167924404,
-0.021173058077692986,
0.038068730384111404,
-0.010808623395860195,
0.03875969350337982,
0.03899001330137253,
-0.037410669028759,
-0.07837486267089844,
-0.09206249564886093,
0.014238758012652397,
0.027605587616562843,
0.014156500808894634,
0.027062688022851944,
0.004380207043141127,
-0.025894632562994957,
-0.005354957655072212,
-0.02383819781243801,
0.03194877877831459,
-0.0004143716942053288,
-0.03311683237552643,
-0.032261356711387634,
-0.04925573617219925,
-0.015020202845335007,
0.01763598807156086,
-0.019215330481529236,
0.016229387372732162,
-0.055967941880226135,
-0.0010158789809793234,
-0.02809913083910942,
0.04994669929146767,
-0.0067327688448131084,
0.03013911470770836,
-0.016583094373345375,
-0.0006863352609798312,
-0.002237401669844985,
-0.027506878599524498,
0.023591425269842148,
0.04714994877576828,
0.018129533156752586,
-0.022258855402469635,
-0.020498545840382576,
0.03596293926239014,
-0.013860373757779598,
-0.012272805906832218,
-0.03494294732809067,
0.010504270903766155,
0.014329240657389164,
0.013325700536370277,
0.01287328451871872,
0.0417538620531559,
0.01185329258441925,
-0.024677222594618797,
0.0029818310867995024,
0.006230998784303665,
0.05929114297032356,
0.01896855980157852,
-0.016912123188376427,
-0.02201208285987377,
-0.026124954223632812,
-0.03899001330137253,
0.038331951946020126,
-0.03369263559579849,
-0.03140588104724884,
0.03852936998009682,
0.07909872382879257,
0.017718246206641197,
-0.008488965220749378,
-0.013004896230995655,
0.002821429166942835,
0.012922639027237892,
0.04701833426952362,
-0.02614140510559082,
-0.04787381365895271,
-0.0030229599215090275,
0.09324700385332108,
0.024956898763775826,
-0.04297127202153206,
0.0269639790058136,
-0.05629697069525719,
-0.056790515780448914,
0.03168555349111557,
-0.009837985970079899,
-0.05919243395328522,
0.006560028530657291,
0.006033581215888262,
-0.01374521292746067,
0.004705124069005251,
0.0456693135201931,
-0.019824035465717316,
0.07817744463682175,
0.01615535467863083,
0.01783340610563755,
-0.04106289893388748,
0.034548111259937286,
0.0018477070843800902,
0.007193410769104958,
-0.012659415602684021,
-0.01401666272431612,
0.00723042618483305,
-0.01381924469023943,
0.00016580009832978249,
-0.020926285535097122,
0.020235322415828705,
0.015867454931139946,
0.01242909487336874,
-0.00898250937461853,
-0.010849752463400364,
-0.040174517780542374,
0.002695986535400152,
0.03593003749847412,
0.008628802374005318,
-0.011532489210367203,
0.01798146963119507,
0.016254063695669174,
-0.11423908919095993,
-0.016451481729745865,
-0.0010482679354026914,
0.0463273748755455,
-0.010586529038846493,
-0.004824397154152393,
0.017241153866052628,
-0.05886340141296387,
-0.012486674822866917,
-0.048005424439907074,
0.0050094760954380035,
-0.040503550320863724,
0.014312789775431156,
-0.02829654887318611,
-0.028625579550862312,
0.012075387872755527,
0.015694713220000267,
-0.023542070761322975,
-0.02648688666522503,
-0.014370369724929333,
0.033215541392564774,
0.05409247428178787,
0.034613918513059616,
-0.01689567230641842,
0.013309248723089695,
0.039549361914396286,
-0.02655269205570221,
-0.016673577949404716,
0.0741632804274559,
0.029842989519238472,
0.0017489981837570667,
-0.011943776160478592,
-0.005408424884080887,
0.03183361887931824,
-0.08607415109872818,
-0.043596427887678146,
-0.02012016251683235,
0.010932009667158127,
0.06577302515506744,
0.06870138645172119,
0.06254853308200836,
0.010586529038846493,
0.04734736680984497,
0.027885261923074722,
0.04385965317487717,
-0.05761308968067169,
-0.03599584475159645,
-0.007654052227735519,
0.027325911447405815,
0.010051855817437172,
-0.020844027400016785,
0.01253602933138609,
-0.03711454197764397,
0.04636027663946152,
-0.009862663224339485,
0.0033458201214671135,
-0.03945065289735794,
-0.03895711153745651,
-0.016344547271728516,
0.013588923960924149,
0.017603086307644844,
0.007065911777317524,
0.00006233569729374722,
-0.030978141352534294,
0.006416078191250563,
-0.012165871448814869,
0.0024286501575261354,
0.00025615471531637013,
0.002517076674848795,
0.03875969350337982,
-0.0297936350107193,
-0.01219877414405346,
0.018359854817390442,
0.008859123103320599,
0.016410352662205696,
-0.028674934059381485,
-0.04626156762242317,
0.019067266955971718,
-0.01185329258441925,
-0.025220122188329697,
-0.04823574423789978,
-0.01992274448275566,
-0.023147234693169594,
-0.01101426687091589,
-0.08396836370229721,
0.08317869156599045,
-0.020695963874459267,
0.0063255950808525085,
0.01546439342200756,
0.016698254272341728,
0.00365634192712605,
-0.0005459835520014167,
0.044155776500701904,
-0.012980218976736069,
0.038134533911943436,
-0.008546545170247555,
0.007111153099685907,
-0.022884011268615723,
-0.01742211915552616,
0.03530488163232803,
-0.004421335645020008,
-0.0030373549088835716,
0.010668786242604256,
-0.04573512077331543,
-0.011771035380661488,
0.023821746930480003,
0.05646148696541786,
-0.049420252442359924,
-0.011269264854490757,
0.07962517440319061,
-0.043004173785448074,
-0.040371935814619064,
-0.09015411883592606,
-0.01162297185510397,
0.022308209910988808,
-0.011162330396473408,
0.02390400320291519,
-0.02201208285987377,
0.017668891698122025,
0.03714744746685028,
-0.02573011815547943,
0.007543004583567381,
0.034416500478982925,
0.02466077171266079,
0.014855688437819481,
-0.0038146874867379665,
0.01412359718233347,
-0.06274595111608505,
0.013383280485868454,
-0.0136465048417449,
-0.013991985470056534,
0.003658398287370801,
0.12285967171192169,
0.00439254567027092,
-0.08929864317178726,
-0.035173267126083374,
-0.007567681837826967,
0.082191601395607,
0.052644744515419006,
0.013827471062541008,
0.023525619879364967,
0.03255748376250267,
0.005256248638033867,
0.03829905018210411,
0.024035615846514702,
-0.017274055629968643,
0.00329440925270319,
0.0022312323562800884,
-0.018145984038710594,
-0.043201591819524765,
-0.011647649109363556,
0.014715850353240967,
-0.038660984486341476,
0.0032121518161147833,
-0.003076427150517702,
0.005190442781895399,
-0.003430133918300271,
0.019643070176243782,
0.03984548896551132,
-0.0041416604071855545,
0.04938735067844391,
0.06771430373191833,
-0.015192943625152111,
0.017241153866052628,
0.02844461239874363,
0.0022024421487003565,
-0.03546939417719841,
0.019429201260209084,
0.019774680957198143,
-0.008361466228961945,
-0.041029997169971466,
0.03369263559579849,
0.024611417204141617,
0.03389005362987518,
-0.04619576036930084,
0.03375844284892082,
0.03451520949602127,
-0.02263723872601986,
-0.037180349230766296,
-0.039812587201595306,
-0.0036604548804461956,
-0.03619325906038284,
-0.022867560386657715,
-0.010060081258416176,
0.06040984392166138,
-0.032870061695575714,
0.07205749303102493,
0.0023237718269228935,
0.021715955808758736
]
|
42,141 | werkzeug.datastructures.headers | __repr__ | null | def __repr__(self):
return f"{type(self).__name__}({list(self)!r})"
| (self) | [
0.008828723803162575,
-0.052721697837114334,
0.03699161857366562,
0.006667998153716326,
-0.00793418288230896,
-0.03619647026062012,
0.0008205354097299278,
-0.02039724588394165,
0.06226345896720886,
-0.014520074240863323,
-0.03671504557132721,
-0.014744789339601994,
-0.004788167309015989,
0.044735655188560486,
-0.01748458854854107,
0.014788003638386726,
0.006171031389385462,
-0.048538532108068466,
0.004610987845808268,
0.03515932336449623,
-0.00366675085388124,
0.04978311061859131,
0.055072564631700516,
-0.016905514523386955,
0.004658523481339216,
0.04625680670142174,
0.000495346263051033,
-0.00804221909493208,
-0.017225302755832672,
0.004654202144593,
-0.08324842154979706,
-0.031823161989450455,
0.0034355532843619585,
-0.024165552109479904,
0.01042333897203207,
0.0058080293238162994,
-0.05178826302289963,
0.046464234590530396,
-0.017873520031571388,
0.014122500084340572,
0.0714249312877655,
-0.01631779782474041,
-0.01737223193049431,
-0.038478195667266846,
-0.01799451932311058,
-0.011520987376570702,
0.08062098175287247,
-0.011287628673017025,
-0.01681908592581749,
-0.08311013877391815,
0.04096735268831253,
0.03263559564948082,
-0.019740385934710503,
-0.007264358457177877,
-0.042384788393974304,
0.02247154340147972,
0.03609275445342064,
0.002515084110200405,
-0.008534864522516727,
0.04798538610339165,
-0.04124392569065094,
0.0182192362844944,
0.04466651380062103,
-0.047086525708436966,
0.027363425120711327,
-0.03311959654092789,
-0.04390593618154526,
0.022834545001387596,
0.01520286314189434,
0.020587390288710594,
0.004978311248123646,
-0.02905743382871151,
-0.029697008430957794,
0.018150093033909798,
-0.007713789120316505,
-0.02655099146068096,
-0.00716496491804719,
0.03823619335889816,
0.018651381134986877,
-0.058979157358407974,
-0.00992205087095499,
0.03216887637972832,
-0.02414826489984989,
0.021607253700494766,
-0.005712957587093115,
-0.06226345896720886,
-0.028417859226465225,
-0.012903851456940174,
-0.06910863518714905,
0.023992693051695824,
-0.045012228190898895,
0.02598056010901928,
-0.042281072586774826,
0.03916962817311287,
-0.06544404476881027,
-0.04432079568505287,
-0.007355108857154846,
-0.06907406449317932,
0.029351292178034782,
-0.011157985776662827,
0.03144287317991257,
0.003980055917054415,
-0.027069566771388054,
-0.021780110895633698,
-0.051822833716869354,
-0.026360848918557167,
-0.05693943426012993,
0.0012769886525347829,
-0.017510518431663513,
0.027968427166342735,
-0.031079871580004692,
0.07771696895360947,
0.03201330453157425,
-0.006037066224962473,
0.024493981152772903,
-0.009256547316908836,
-0.02202211134135723,
-0.005133883096277714,
0.06212517246603966,
-0.014649717137217522,
0.024770554155111313,
0.023335833102464676,
-0.023162975907325745,
0.02347411960363388,
-0.029213005676865578,
0.05808029696345329,
-0.0451505146920681,
-0.0028435145504772663,
-0.015125077217817307,
-0.07737124711275101,
0.03393203020095825,
0.001562204328365624,
-0.08276442438364029,
0.03616189956665039,
0.06862463802099228,
0.017199372872710228,
0.028746288269758224,
-0.01310263853520155,
0.02675842121243477,
0.09389647841453552,
0.013742213137447834,
-0.023767977952957153,
0.03356902673840523,
0.06855548918247223,
-0.04117478057742119,
0.0016183832194656134,
0.029074719175696373,
0.11457029730081558,
-0.0196712426841259,
-0.02710413746535778,
-0.0002649589441716671,
0.0517536923289299,
0.045841947197914124,
0.004360343795269728,
-0.013880499638617039,
0.03431231901049614,
-0.022869115695357323,
-0.010138123296201229,
0.015617722645401955,
-0.02693128027021885,
-0.05880630016326904,
-0.021814681589603424,
-0.005967923440039158,
-0.02112325094640255,
0.01598072424530983,
0.028487002477049828,
0.029593292623758316,
-0.061952315270900726,
-0.00005270144174573943,
0.037302762269973755,
-0.008344721049070358,
-0.10869312286376953,
-0.032894883304834366,
0.06139916926622391,
-0.005708636250346899,
0.04331821948289871,
-0.02700042352080345,
0.11719773709774017,
-0.005535778123885393,
-0.01061348244547844,
0.03647304326295853,
-0.0582185834646225,
-0.06357718259096146,
-0.03228987753391266,
0.0701112151145935,
-0.030889729037880898,
0.02407912164926529,
-0.0060154590755701065,
0.038201622664928436,
-0.007908254861831665,
-0.011840774677693844,
0.017856232821941376,
-0.004159396048635244,
-0.00989612191915512,
-0.02146896719932556,
-0.03958448767662048,
-0.056075140833854675,
-0.03348260000348091,
-0.01173705980181694,
-0.014338572509586811,
-0.01042333897203207,
0.03391474485397339,
-0.008530543185770512,
0.011253057047724724,
0.01932552643120289,
0.0262744203209877,
0.019930530339479446,
-0.04477022960782051,
0.043733078986406326,
-0.03012915328145027,
0.03885848447680473,
0.013811356388032436,
0.01585972309112549,
-0.006525390315800905,
0.03050944022834301,
-0.041278496384620667,
-0.03040572628378868,
-0.04521965980529785,
-0.05050911381840706,
0.03626561164855957,
0.07875411212444305,
-0.026015132665634155,
-0.03813248127698898,
-0.03253187984228134,
-0.07813182473182678,
-0.007942826487123966,
-0.01254949253052473,
-0.024684125557541847,
-0.011011055670678616,
-0.011261699721217155,
0.022367827594280243,
-0.04919539391994476,
-0.033776458352804184,
0.012108704075217247,
-0.008565114811062813,
0.07827011495828629,
-0.022315971553325653,
-0.00735078752040863,
-0.016274582594633102,
0.023335833102464676,
-0.02425198070704937,
0.03006001003086567,
0.02362969145178795,
-0.007973075844347477,
0.06202145665884018,
-0.005591956898570061,
0.03474446386098862,
0.06668862700462341,
-0.02598056010901928,
-0.019809529185295105,
-0.003342641983181238,
-0.031996019184589386,
-0.022765401750802994,
-0.020829392597079277,
0.02928214892745018,
-0.0814507007598877,
-0.029939008876681328,
-0.02229868434369564,
0.026983138173818588,
0.023940837010741234,
-0.002983961720019579,
0.004308486357331276,
0.030768727883696556,
0.03626561164855957,
0.00165943696629256,
0.02414826489984989,
-0.060154590755701065,
0.018184663727879524,
-0.027951141819357872,
0.021278822794556618,
0.10890055447816849,
-0.015885652974247932,
-0.05790743604302406,
0.051442548632621765,
-0.029748866334557533,
0.004222057294100523,
0.0021488412749022245,
0.021935682743787766,
-0.06509833037853241,
-0.0487113893032074,
0.029126577079296112,
-0.010155408643186092,
-0.013214996084570885,
-0.016473369672894478,
0.01391507126390934,
-0.0149522190913558,
0.006715534254908562,
0.02582498826086521,
0.0048140957951545715,
0.011944489553570747,
0.0858067199587822,
0.028746288269758224,
0.02100224979221821,
0.00955904833972454,
0.07619581371545792,
-0.008223720826208591,
0.03650761395692825,
0.03496917709708214,
0.0028197464998811483,
0.000017707818187773228,
0.0034247494768351316,
-0.010449266992509365,
0.06679233908653259,
0.020639248192310333,
-0.04062163457274437,
-0.056801147758960724,
0.013647140935063362,
0.03441603109240532,
0.00018069065117742866,
-0.006559961941093206,
-0.0010220230324193835,
0.04293793439865112,
0.0182192362844944,
0.0530674122273922,
0.01432992983609438,
0.01520286314189434,
-0.032618310302495956,
0.00955904833972454,
0.01632644049823284,
0.06489089876413345,
-0.04795081540942192,
0.0091096181422472,
-0.015246077440679073,
0.030544012784957886,
0.03280845284461975,
-0.011875346302986145,
-0.026170704513788223,
0.01956752873957157,
0.02129610814154148,
0.024735983461141586,
0.0013180423993617296,
-0.07730210572481155,
0.016395583748817444,
0.041658785194158554,
0.015505364164710045,
0.022367827594280243,
0.028245000168681145,
0.026395419612526894,
-0.02955872192978859,
-0.07239294052124023,
0.028193144127726555,
0.009204689413309097,
-0.015799222514033318,
0.0127396360039711,
-0.03591989725828171,
0.05500342324376106,
-0.0007492314907722175,
0.0730152279138565,
0.06139916926622391,
0.022229541093111038,
-0.003768304828554392,
-0.034329604357481,
0.026983138173818588,
0.009973907843232155,
-0.0073464661836624146,
-0.0030639085453003645,
-0.02269625850021839,
0.041935354471206665,
-0.0262744203209877,
0.04477022960782051,
0.08587586879730225,
-0.018461236730217934,
-0.022212255746126175,
0.007610074244439602,
-0.0022028593812137842,
-0.008418185636401176,
0.004831381607800722,
-0.015799222514033318,
0.03885848447680473,
-0.005764815025031567,
-0.062436316162347794,
0.019740385934710503,
-0.036576759070158005,
-0.0524105541408062,
-0.05711229145526886,
0.025012556463479996,
0.002716031624004245,
0.02725970931351185,
-0.030077295377850533,
-0.06392289698123932,
0.016836371272802353,
-0.020812105387449265,
0.03223802149295807,
0.022886402904987335,
-0.02570398710668087,
0.017683375626802444,
0.020708391442894936,
0.01619679667055607,
0.019429242238402367,
0.036576759070158005,
-0.05413913354277611,
-0.042211927473545074,
-0.020379960536956787,
-0.014597860164940357,
-0.04929910972714424,
-0.05268712341785431,
0.03754476085305214,
-0.006365496665239334,
-0.06298946589231491,
-0.02357783354818821,
0.018288379535079002,
-0.023214831948280334,
-0.009533120319247246,
-0.014157071709632874,
-0.02252339944243431,
0.016741300001740456,
0.028919147327542305,
0.004353861324489117,
-0.007705146446824074,
-0.06475261598825455,
0.03681875765323639,
-0.01844395138323307,
-0.04058706387877464,
-0.07543524354696274,
0.06820977479219437,
-0.004356021992862225,
-0.041382212191820145,
0.018685951828956604,
0.05279083922505379,
0.008828723803162575,
-0.021261537447571754,
0.032877594232559204,
0.03521117940545082,
0.08255699276924133,
-0.023266689851880074,
0.05801115185022354,
-0.025444701313972473,
0.06101888045668602,
0.0459456630051136,
0.009412119165062904,
-0.02587684616446495,
-0.004649880807846785,
0.011166628450155258,
-0.02603241801261902,
0.022938258945941925,
-0.07764782011508942,
0.0067976415157318115,
-0.06375003606081009,
-0.022367827594280243,
0.07308436930179596,
0.01439043041318655,
-0.007683539297431707,
-0.012903851456940174,
-0.018979810178279877,
0.021261537447571754,
-0.011832132004201412,
-0.06502918899059296,
-0.005717278923839331,
0.0422465018928051,
-0.018357522785663605,
0.005522813647985458,
0.03671504557132721,
0.021780110895633698,
-0.022713543847203255,
0.009705977514386177,
-0.013845928013324738,
-0.007406966295093298,
-0.05237597972154617,
0.004126985091716051,
-0.029472293332219124,
0.0056913504377007484,
0.03885848447680473,
0.00929976161569357,
0.005916066002100706,
-0.005764815025031567,
-0.03553960844874382,
0.04992139711976051,
-0.008789830841124058,
-0.06202145665884018,
-0.008971331641077995,
0.06361175328493118,
0.008616972714662552,
-0.027415283024311066,
-0.06029287725687027,
-0.04089820757508278,
0.08960960060358047,
-0.01576465182006359,
-0.00980969239026308,
-0.050370827317237854,
-0.05310198292136192,
-0.0814507007598877,
-0.10544339567422867,
-0.02240240015089512,
-0.00760143157094717,
-0.016862299293279648,
0.012402563355863094,
-0.0048140957951545715,
0.015609079040586948,
-0.011183913797140121,
0.016966015100479126,
-0.004662845283746719,
0.047812528908252716,
-0.07557352632284164,
-0.0014077124651521444,
0.016283225268125534,
0.043836794793605804,
-0.019463812932372093,
-0.04131306707859039,
-0.060327447950839996,
-0.00033518249983899295,
0.0393424853682518,
-0.027121422812342644,
-0.0032886238768696785,
-0.00366675085388124,
0.030146438628435135,
-0.02134796604514122,
0.08062098175287247,
0.007748360745608807,
-0.03865105286240578,
-0.03334431350231171,
0.02347411960363388,
-0.04698280990123749,
0.041382212191820145,
-0.022938258945941925,
-0.02352597750723362,
-0.04200449958443642,
-0.03446789085865021,
0.005172776523977518,
-0.01911809667944908,
0.037129901349544525,
0.014399073086678982,
0.0091096181422472,
-0.07024949789047241,
0.006875427905470133,
-0.03699161857366562,
0.035850752145051956,
-0.009481262415647507,
0.0024567446671426296,
-0.014200286939740181,
0.0741906613111496,
0.014762074686586857,
0.0020116353407502174,
-0.009429405443370342,
0.01671537011861801,
-0.05102768912911415,
0.10274680703878403,
-0.04089820757508278,
0.020535532385110855,
0.016179511323571205,
0.044631943106651306,
0.030302010476589203,
-0.0030639085453003645,
0.011209842748939991,
-0.051442548632621765,
-0.021555395796895027,
-0.04622223600745201,
-0.0014228376094251871,
-0.020276246592402458,
0.027847427874803543,
-0.016404226422309875,
0.04107106477022171,
-0.037129901349544525,
-0.0000876444173627533,
-0.017242588102817535,
0.016240011900663376,
0.01977495849132538,
0.015030005015432835,
0.007666253484785557,
-0.011607415974140167,
0.02362969145178795,
0.0031892305705696344,
0.04179706797003746,
0.032601021230220795,
-0.030163723975419998,
0.009247904643416405,
0.03954991698265076,
0.014995433390140533,
0.06285117566585541,
-0.016473369672894478,
-0.0196712426841259,
0.0037553405854851007,
-0.028971005231142044,
0.04750138521194458,
-0.007445859257131815,
-0.0050690616481006145,
0.01432992983609438,
0.01649065501987934,
0.028469717130064964,
-0.005259205121546984,
-0.061330027878284454,
-0.04069077968597412,
0.00197814404964447,
-0.0530674122273922,
-0.06174488738179207,
-0.014381787739694118,
0.016628941521048546,
-0.028366001322865486,
0.004191807005554438,
0.0035263036843389273,
-0.01839209347963333,
-0.013543426059186459,
0.013543426059186459,
0.011322200298309326,
0.006546997465193272,
0.04317993298172951,
-0.0429033599793911,
-0.007981719449162483,
0.005855565425008535,
-0.030665013939142227,
0.05047454312443733,
0.0309588722884655,
0.022678973153233528,
0.029852580279111862,
0.014001499861478806,
0.03671504557132721,
-0.04843481630086899,
0.03144287317991257,
0.013794070109724998,
-0.027190566062927246,
0.036576759070158005,
-0.032047878950834274,
0.026810279116034508,
0.016464726999402046,
-0.07488209754228592,
0.006404389627277851,
-0.033828314393758774,
-0.02525455690920353,
0.038305338472127914,
-0.016499297693371773,
0.058253154158592224,
0.0026425670366734266,
0.024614982306957245,
-0.04846939072012901,
0.022990116849541664,
-0.023335833102464676,
-0.0029040146619081497,
-0.027570854872465134,
-0.01809823513031006,
0.06876292079687119,
-0.03301588073372841,
0.05794201046228409,
0.018478522077202797,
0.018530379980802536,
-0.0696963518857956,
-0.058979157358407974,
-0.024822412058711052,
-0.007899611257016659,
0.0019857066217809916,
-0.025185413658618927,
0.02923029102385044,
0.0027959784492850304,
-0.0262052770704031,
-0.08034440875053406,
0.008426828309893608,
-0.04632595181465149,
-0.021088678389787674,
-0.03647304326295853,
-0.07529695332050323,
0.03650761395692825,
-0.05192654952406883,
-0.04553080350160599,
0.07958383113145828,
0.010527053847908974,
0.03405303135514259,
-0.017199372872710228,
0.005328348372131586,
-0.014883075840771198,
0.019481098279356956,
-0.02470141090452671,
-0.0011419432703405619,
-0.025444701313972473,
-0.017527803778648376,
-0.0032605344895273447,
-0.026066990569233894,
0.02610156126320362,
0.008154577575623989,
-0.013448353856801987,
0.03598903864622116,
0.027847427874803543,
-0.027121422812342644,
-0.026084275916218758,
0.017804376780986786,
-0.01904895342886448,
-0.03135644644498825,
-0.06900492310523987,
0.022436970844864845,
0.0032389271073043346,
0.03619647026062012,
0.048089101910591125,
-0.03823619335889816,
-0.004727666731923819,
-0.030267439782619476,
-0.05583314225077629,
-0.021054107695817947,
0.022385114803910255,
0.06617005169391632,
-0.03346531465649605,
0.053724274039268494,
-0.006227210164070129,
-0.06630833446979523,
-0.0277264267206192,
-0.035747040063142776,
0.02532370015978813,
-0.0001447685936000198,
0.042211927473545074,
0.046809952706098557,
0.00821075588464737,
-0.09555591642856598,
0.024442125111818314,
-0.011002412997186184,
0.025358272716403008,
0.020552819594740868,
0.01932552643120289,
0.02637813426554203,
0.04753595590591431,
0.01610172539949417,
0.0524105541408062,
0.01033690944314003,
0.013586640357971191,
0.01098512765020132,
0.021607253700494766,
0.12452691793441772,
0.001113853882998228,
-0.04273050278425217,
-0.004602344706654549,
-0.05303284153342247,
0.06091516837477684,
0.024217408150434494,
-0.025513844564557076,
0.012169204652309418,
-0.0012164883082732558,
0.03242816403508186,
0.07260037213563919,
0.010215909220278263,
0.019152669236063957,
0.0814507007598877,
-0.033620886504650116,
-0.03325788304209709,
-0.05130426213145256,
-0.020535532385110855,
0.025358272716403008,
0.015030005015432835,
-0.03113172948360443,
0.009368904866278172,
0.028521573171019554,
-0.012981637381017208,
0.043283648788928986,
0.02039724588394165,
-0.009870192967355251,
0.024891555309295654,
-0.00560060003772378,
0.0074242521077394485,
0.016628941521048546,
0.03726818785071373,
-0.02172825299203396,
-0.015609079040586948,
0.037302762269973755,
0.054173704236745834,
-0.013448353856801987,
0.00735078752040863,
0.029524149373173714,
0.06540947407484055,
-0.03813248127698898,
-0.005021525546908379,
0.05438113212585449,
-0.021088678389787674,
0.007031000219285488,
0.0025820666924118996,
-0.012342062778770924,
-0.047363098710775375,
-0.06544404476881027,
-0.00877254456281662,
0.02146896719932556,
0.03365545719861984,
-0.015107790939509869,
0.04114020988345146,
-0.009956622496247292,
-0.01984410174190998
]
|
42,142 | werkzeug.datastructures.headers | __setitem__ | Like :meth:`set` but also supports index/slice based setting. | def __setitem__(self, key, value):
"""Like :meth:`set` but also supports index/slice based setting."""
if isinstance(key, (slice, int)):
if isinstance(key, int):
value = [value]
value = [(k, _str_header_value(v)) for (k, v) in value]
if isinstance(key, int):
self._list[key] = value[0]
else:
self._list[key] = value
else:
self.set(key, value)
| (self, key, value) | [
0.01460622064769268,
0.006274440325796604,
-0.1068035364151001,
-0.005691082216799259,
-0.019486835226416588,
-0.0038920233491808176,
-0.043070536106824875,
0.04485178366303444,
0.010892321355640888,
-0.049946147948503494,
-0.0556461364030838,
-0.014499345794320107,
0.031652748584747314,
0.004221553914248943,
0.014187627471983433,
0.017019808292388916,
0.04403240978717804,
0.03822554647922516,
0.011221852153539658,
0.0035892114974558353,
0.01532762497663498,
-0.03238305822014809,
0.05664363503456116,
0.04716740548610687,
-0.011319820769131184,
0.004640146624296904,
0.027074944227933884,
-0.000023622387743671425,
0.05614488571882248,
-0.007677171844989061,
0.005138895940035582,
-0.05065864697098732,
-0.03170618414878845,
0.018124181777238846,
0.028428692370653152,
-0.00834513921290636,
-0.03790492191910744,
-0.02034183405339718,
-0.008803809992969036,
0.08165233582258224,
-0.006198737304657698,
-0.037049923092126846,
0.005201239604502916,
-0.05254676938056946,
0.062343623489141464,
0.1006760448217392,
0.02712838165462017,
0.08108233660459518,
0.08450233191251755,
-0.014187627471983433,
-0.057712383568286896,
0.0068399859592318535,
-0.015229656361043453,
-0.04677553102374077,
-0.07064422965049744,
0.038653045892715454,
0.06679674237966537,
0.046918030828237534,
0.02144620567560196,
0.057997383177280426,
-0.007637093774974346,
-0.009939354844391346,
-0.04424615949392319,
-0.06294924765825272,
-0.0031283139251172543,
-0.016574498265981674,
-0.023102765902876854,
0.003037024987861514,
-0.008505451492965221,
-0.02937275357544422,
0.03797617182135582,
0.0045644440688192844,
-0.006341237109154463,
-0.006234362255781889,
-0.010233260691165924,
0.04948302358388901,
-0.08001358807086945,
0.05390051379799843,
0.0027898771222680807,
-0.02634463459253311,
0.035001490265131,
0.05949362739920616,
0.021410580724477768,
0.0351974293589592,
-0.030049625784158707,
0.023476827889680862,
0.013003098778426647,
0.04837865009903908,
0.03883117064833641,
0.054114263504743576,
-0.014232158660888672,
0.0268077589571476,
-0.007801859173923731,
-0.0006729771266691387,
-0.03658680245280266,
-0.02896306663751602,
0.026113072410225868,
-0.09561730921268463,
-0.03851054608821869,
0.01499809417873621,
-0.03224055841565132,
-0.007320922799408436,
0.02709275670349598,
-0.02769838087260723,
-0.051157396286726,
-0.03592773899435997,
0.023619327694177628,
0.01810636930167675,
-0.050765521824359894,
-0.01253997441381216,
0.03028118796646595,
-0.005833582021296024,
-0.04267866164445877,
-0.010233260691165924,
0.015888717025518417,
0.0659061148762703,
-0.0011900952085852623,
-0.07050172984600067,
0.008518810383975506,
-0.004306163173168898,
-0.024420887231826782,
-0.008465373888611794,
0.0057222540490329266,
0.07737734168767929,
-0.01017091702669859,
-0.020039021968841553,
0.005864753853529692,
0.03826117143034935,
0.052154894918203354,
-0.03305993229150772,
-0.02226557955145836,
-0.024082450196146965,
-0.026219947263598442,
0.028571192175149918,
0.07965733855962753,
-0.040861792862415314,
-0.026237759739160538,
-0.01245981827378273,
-0.03031681291759014,
-0.009609824046492577,
0.012967473827302456,
-0.007637093774974346,
0.03829679638147354,
0.03359430655837059,
0.03195555880665779,
-0.023708390071988106,
0.015381062403321266,
0.021161207929253578,
-0.024242762476205826,
0.024777136743068695,
-0.05653676018118858,
0.039828669279813766,
0.01773230731487274,
-0.00130142318084836,
-0.0025315964594483376,
-0.015256375074386597,
-0.028019005432724953,
-0.015149500221014023,
0.03564273938536644,
0.0495186485350132,
0.01323466096073389,
-0.0388667955994606,
0.00815365556627512,
0.018756523728370667,
-0.03993554413318634,
0.036034613847732544,
-0.009957167319953442,
-0.03174180909991264,
-0.02889181673526764,
0.029782438650727272,
0.04125366732478142,
-0.037869296967983246,
-0.026665259152650833,
0.030958062037825584,
0.023886514827609062,
-0.0010832204716280103,
-0.03289962187409401,
0.0527961440384388,
-0.028090255334973335,
-0.016360748559236526,
0.010714196600019932,
-0.011711695231497288,
-0.025222448632121086,
-0.0024269481655210257,
-0.031189624220132828,
0.033042121678590775,
0.008229358121752739,
0.038154296576976776,
0.049946147948503494,
0.0814385861158371,
0.036105863749980927,
-0.03818992152810097,
-0.0000484972151753027,
-0.06815048307180405,
-0.0033175714779645205,
-0.0052947551012039185,
-0.015951061621308327,
-0.03314899653196335,
-0.00016866176156327128,
0.07003860920667648,
-0.024331824854016304,
-0.025151198729872704,
0.04848552495241165,
0.0028544473461806774,
0.019664959982037544,
-0.002878939500078559,
0.06326986849308014,
-0.012620130553841591,
-0.040363043546676636,
0.02794775553047657,
-0.020876208320260048,
-0.02930150367319584,
0.0020729254465550184,
0.008474280126392841,
0.055468011647462845,
-0.08065483719110489,
-0.07837484031915665,
-0.024456512182950974,
0.027431193739175797,
-0.03297087177634239,
0.09668605029582977,
0.029141191393136978,
0.011034821160137653,
-0.007890921086072922,
0.03387930616736412,
-0.0009067657520063221,
-0.028054630383849144,
-0.07295985519886017,
-0.03589211404323578,
0.05675050988793373,
0.0376555472612381,
0.026166509836912155,
-0.004876161925494671,
-0.00536155141890049,
0.0038831171113997698,
-0.03327368199825287,
-0.0052903019823133945,
-0.054898012429475784,
0.0006618443876504898,
0.022942453622817993,
0.010518260300159454,
0.031528059393167496,
0.04431740939617157,
0.046918030828237534,
-0.0753110945224762,
0.038938045501708984,
-0.010090760886669159,
0.08207983523607254,
-0.024242762476205826,
0.0659061148762703,
-0.01854277402162552,
0.03156368434429169,
-0.04153866693377495,
-0.004880615044385195,
0.015389968641102314,
0.016921840608119965,
-0.03060181252658367,
0.028856191784143448,
-0.016040123999118805,
-0.03585648909211159,
-0.06469486653804779,
-0.04595615714788437,
0.0360168032348156,
-0.03195555880665779,
-0.010295604355633259,
0.0072363135404884815,
0.059315506368875504,
0.07994233816862106,
-0.03772679716348648,
0.07495484501123428,
0.042500536888837814,
-0.01593324914574623,
-0.02132151834666729,
-0.0033776883501559496,
0.021909330040216446,
0.026611821725964546,
0.030049625784158707,
-0.00984138622879982,
-0.009992792271077633,
0.013216848485171795,
0.0642673671245575,
0.004292803816497326,
-0.037584297358989716,
0.01923746056854725,
0.020306209102272987,
0.03503711521625519,
0.006612877361476421,
0.06348361819982529,
-0.037584297358989716,
-0.002302260836586356,
0.0027587052900344133,
0.006844439078122377,
-0.03612367808818817,
0.017393870279192924,
-0.015461218543350697,
0.041182417422533035,
-0.0405055433511734,
0.006822173483669758,
0.0368361733853817,
0.028446504846215248,
-0.018088556826114655,
0.023209640756249428,
-0.015585905872285366,
0.02671869657933712,
0.021374955773353577,
-0.045849282294511795,
0.011854195035994053,
0.030868999660015106,
-0.013350442051887512,
-0.004450889304280281,
0.03712117299437523,
0.04823615029454231,
-0.076949842274189,
0.01959371007978916,
0.09511855989694595,
0.028054630383849144,
-0.06658299267292023,
0.021143395453691483,
-0.025560885667800903,
0.08015608787536621,
-0.046098656952381134,
-0.0871385708451271,
-0.06619111448526382,
-0.008714747615158558,
0.06932611018419266,
-0.03482336550951004,
0.04207304120063782,
0.009048731997609138,
-0.018792148679494858,
0.06351924687623978,
-0.05942238122224808,
-0.02214089222252369,
0.0010548318969085813,
0.050801146775484085,
-0.010509354062378407,
0.003235188778489828,
-0.033576495945453644,
0.007810765411704779,
-0.012192631140351295,
-0.02438526228070259,
-0.01763433963060379,
-0.006688580382615328,
0.0004517129564192146,
-0.004586709663271904,
0.009877011179924011,
-0.04299928620457649,
0.01669027842581272,
0.03359430655837059,
0.023833077400922775,
0.040933042764663696,
0.016512153670191765,
-0.020039021968841553,
0.028820566833019257,
0.03311337158083916,
0.030494937673211098,
-0.029533065855503082,
0.0058736600913107395,
-0.07915858924388885,
0.001520739053376019,
-0.05375801771879196,
0.10096104443073273,
-0.019094960764050484,
0.023459015414118767,
-0.005686629097908735,
-0.048592399805784225,
0.014089658856391907,
-0.06002800166606903,
-0.00846982654184103,
0.04962552338838577,
-0.033416181802749634,
-0.0026295650750398636,
-0.06458799540996552,
0.008759278804063797,
0.019469022750854492,
0.039472419768571854,
-0.006274440325796604,
-0.015345437452197075,
0.058104258030653,
-0.08557107299566269,
-0.07295985519886017,
0.016761528328061104,
-0.008737013675272465,
0.028820566833019257,
0.03614148870110512,
-0.016298403963446617,
0.0041102259419858456,
0.04289241135120392,
-0.008460920304059982,
0.024367449805140495,
0.015318718738853931,
-0.010037323459982872,
0.032507747411727905,
-0.02365495264530182,
-0.020965270698070526,
-0.04438865929841995,
-0.02532932348549366,
0.02000339701771736,
-0.008371857926249504,
0.01659231074154377,
-0.03680054843425751,
0.05475551262497902,
-0.05422113835811615,
-0.009342636913061142,
0.08172358572483063,
0.04178804159164429,
-0.02393995225429535,
0.029533065855503082,
-0.005410535726696253,
-0.007423344533890486,
-0.0429636612534523,
0.043319910764694214,
-0.04079054296016693,
0.008167014457285404,
-0.07050172984600067,
0.044495534151792526,
0.025596510618925095,
-0.047238655388355255,
-0.016538873314857483,
0.02646932192146778,
0.022782141342759132,
0.003566945903003216,
-0.016476528719067574,
-0.019130585715174675,
0.05012427270412445,
-0.02005683444440365,
-0.05122864618897438,
-0.019504647701978683,
0.003553586546331644,
-0.01696637272834778,
-0.02418932504951954,
0.02949744090437889,
-0.01702871546149254,
0.023049328476190567,
0.015229656361043453,
0.005187880247831345,
-0.019344335421919823,
-0.005535223055630922,
-0.0368361733853817,
-0.0036448754835873842,
0.002974681556224823,
0.020466521382331848,
0.007013657595962286,
-0.019664959982037544,
-0.013840284198522568,
0.02296026609838009,
-0.024937449023127556,
-0.05112177133560181,
0.016788247972726822,
0.011961069889366627,
-0.025133386254310608,
0.04317741096019745,
0.027324318885803223,
0.0074678752571344376,
0.02041308395564556,
0.05169177055358887,
-0.0319199338555336,
-0.04374741017818451,
-0.016708090901374817,
0.054613012820482254,
-0.015318718738853931,
0.03555367887020111,
0.03505492955446243,
-0.011934351176023483,
-0.022639641538262367,
-0.02646932192146778,
0.02618432231247425,
-0.00251155742444098,
0.01612027920782566,
-0.002366831060498953,
0.011355445720255375,
-0.060704875737428665,
-0.030868999660015106,
-0.02385088987648487,
-0.025632135570049286,
-0.046098656952381134,
0.01602231152355671,
0.03662242740392685,
0.012985286302864552,
-0.06825736165046692,
-0.025543073192238808,
-0.00489842751994729,
-0.04246491193771362,
0.001666578697040677,
0.005717800930142403,
-0.019664959982037544,
-0.015496843494474888,
0.004907333757728338,
0.017117777839303017,
-0.02315620332956314,
0.04399678483605385,
0.012005601078271866,
-0.05015989765524864,
-0.026540571823716164,
0.00720068858936429,
0.05778363347053528,
0.013644346967339516,
-0.04645490646362305,
0.021517455577850342,
-0.011952163651585579,
-0.011346539482474327,
0.013083254918456078,
-0.025845885276794434,
0.014410283416509628,
-0.01528309378772974,
0.035749614238739014,
-0.005268036387860775,
0.014989187940955162,
0.0009835819946601987,
-0.04816490039229393,
-0.10088979452848434,
0.0034756569657474756,
0.01841808669269085,
-0.018685273826122284,
-0.01580856181681156,
-0.0003779582038987428,
0.008612326346337795,
-0.1100810244679451,
-0.0029412831645458937,
-0.039686169475317,
0.024723699316382408,
0.05211926996707916,
-0.03662242740392685,
0.048877399414777756,
-0.0075702969916164875,
0.005170067772269249,
-0.009939354844391346,
0.00577123835682869,
-0.05596676096320152,
0.010553885251283646,
0.03489461541175842,
-0.07659359276294708,
0.03890242055058479,
-0.012450912036001682,
0.04656178131699562,
0.04260741174221039,
0.059066131711006165,
0.051941145211458206,
-0.00397440604865551,
0.041752416640520096,
-0.00943169929087162,
-0.023886514827609062,
0.051050521433353424,
0.02655838429927826,
-0.10295604169368744,
0.001146677415817976,
0.0031194076873362064,
-0.04702490568161011,
-0.02356589026749134,
0.013127786107361317,
-0.038154296576976776,
-0.04620553180575371,
-0.01520293764770031,
0.05927988141775131,
-0.007392172701656818,
-0.03391493111848831,
-0.044210534542798996,
-0.004059015307575464,
-0.02296026609838009,
0.04039866849780083,
0.010990289971232414,
-0.0070893606171011925,
0.009440605528652668,
0.029141191393136978,
0.04274991154670715,
0.002415815368294716,
0.033986181020736694,
-0.039472419768571854,
-0.02839306741952896,
0.019825272262096405,
-0.04164554178714752,
0.013341535814106464,
-0.005593113601207733,
0.00323741533793509,
0.02205182984471321,
-0.045528657734394073,
0.011453414335846901,
0.007160610519349575,
0.010669665411114693,
-0.042536161839962006,
-0.05414988845586777,
-0.032222747802734375,
0.06661861389875412,
0.04139616712927818,
-0.043604910373687744,
0.01927308551967144,
0.005900378804653883,
0.023548077791929245,
0.011818570084869862,
-0.0605623759329319,
0.026041822507977486,
-0.028090255334973335,
-0.0335586816072464,
0.024118075147271156,
-0.017340432852506638,
0.01375122182071209,
0.002200952498242259,
-0.055468011647462845,
-0.040363043546676636,
-0.035500239580869675,
0.00356026622466743,
0.015541374683380127,
0.004706943407654762,
-0.032792747020721436,
-0.0015830827178433537,
0.03224055841565132,
-0.008456467650830746,
-0.00489842751994729,
0.03769117221236229,
0.028286192566156387,
-0.06818611174821854,
-0.028660254552960396,
0.043925534933805466,
-0.0022065190132707357,
-0.02385088987648487,
0.009707792662084103,
-0.03562492877244949,
0.007499047089368105,
0.023601515218615532,
0.00810912437736988,
-0.05447051301598549,
-0.003941007424145937,
0.02671869657933712,
-0.03174180909991264,
-0.00041970619349740446,
-0.028535567224025726,
-0.1051647886633873,
-0.005005302373319864,
-0.008425295352935791,
0.020591208711266518,
-0.09155606478452682,
0.016921840608119965,
-0.01096357125788927,
0.041716791689395905,
0.01383137796074152,
0.0004144181148149073,
0.0012735911877825856,
-0.007610375061631203,
0.00886615365743637,
0.029639940708875656,
0.06148862466216087,
0.06946860998868942,
-0.015416687354445457,
0.04848552495241165,
-0.004248272627592087,
-0.03024556301534176,
0.03232962265610695,
0.006880064029246569,
-0.025258073583245277,
0.03555367887020111,
-0.00971669889986515,
-0.021909330040216446,
0.03282837197184563,
-0.04285678640007973,
-0.0014506025472655892,
-0.010259979404509068,
0.013386067003011703,
0.027466818690299988,
-0.05254676938056946,
-0.032311808317899704,
-0.011025914922356606,
-0.009538574144244194,
-0.02000339701771736,
-0.006897876504808664,
-0.0564655102789402,
0.058496132493019104,
-0.016298403963446617,
-0.015594812110066414,
0.032472122460603714,
0.03744179755449295,
0.03900929540395737,
0.0401136688888073,
-0.0760948434472084,
-0.054898012429475784,
0.038973670452833176,
0.04242929071187973,
-0.06437424570322037,
-0.0003431682416703552,
-0.010785446502268314,
0.013822471722960472,
0.0243496373295784,
0.007392172701656818,
0.011070446111261845,
-0.013101067394018173,
0.003183977911248803,
-0.011043727397918701,
0.07110735774040222,
-0.012014507316052914,
-0.021838080137968063,
-0.021659955382347107,
-0.0507298968732357,
0.05671488493680954,
-0.05414988845586777,
-0.023138390854001045,
-0.000025257517336285673,
-0.07645109295845032,
0.02053777128458023,
-0.013163411058485508,
-0.025810260325670242,
0.011791851371526718,
0.014579501934349537,
-0.03794054687023163,
0.03498367965221405,
0.0029390566051006317,
0.020894020795822144,
-0.006661861669272184,
-0.04125366732478142,
-0.03379024565219879,
0.005597566720098257,
0.04898427426815033,
-0.039472419768571854,
0.02848212979733944,
0.0666898638010025,
-0.02401120215654373,
-0.03432461619377136,
0.02917681634426117,
-0.019005898386240005,
-0.004504326730966568,
-0.032596807926893234,
0.020804958418011665,
0.056038010865449905,
0.042001791298389435,
0.0034934694413095713,
0.024581199511885643,
-0.0023445654660463333,
-0.02078714594244957,
-0.06433861702680588,
0.017963869497179985,
0.0073387352749705315,
-0.06661861389875412,
0.02753806859254837,
0.04413928464055061,
0.03184868395328522,
0.01968277245759964,
-0.018507149070501328,
0.013145598582923412,
-0.011640445329248905,
-0.030352437868714333,
0.01889902353286743,
0.02459901198744774,
0.07716359198093414,
0.016645748168230057,
-0.009894823655486107,
-0.022906828671693802,
0.0035402271896600723,
-0.0957598090171814,
-0.020163709297776222,
0.0263980720192194,
0.04235804080963135,
-0.0008661310421302915,
0.05899488180875778,
-0.021998392418026924,
0.00512553658336401,
-0.06298486888408661,
0.034520555287599564,
0.06522924453020096,
-0.07659359276294708,
-0.040078043937683105,
0.024331824854016304,
0.05315239354968071,
0.010589510202407837,
-0.06665424257516861,
-0.0007854183204472065,
-0.0090042008087039,
-0.006367955822497606,
-0.043319910764694214,
0.04431740939617157,
0.0024336278438568115,
0.022372454404830933
]
|
42,143 | werkzeug.datastructures.headers | __str__ | Returns formatted headers suitable for HTTP transmission. | def __str__(self):
"""Returns formatted headers suitable for HTTP transmission."""
strs = []
for key, value in self.to_wsgi_list():
strs.append(f"{key}: {value}")
strs.append("\r\n")
return "\r\n".join(strs)
| (self) | [
-0.07596447318792343,
-0.012613103725016117,
-0.08446849137544632,
-0.044949814677238464,
0.025601385161280632,
-0.038982708007097244,
-0.046486254781484604,
-0.006458409130573273,
0.025190476328134537,
-0.018169300630688667,
-0.020170247182250023,
-0.033069200813770294,
0.03242603689432144,
0.023975616320967674,
0.040054645389318466,
0.015980767086148262,
0.018365822732448578,
-0.04720087721943855,
0.05595501512289047,
-0.03507014364004135,
-0.000911144888959825,
0.03276548534631729,
0.015418000519275665,
-0.016811516135931015,
-0.02092060074210167,
0.02208186499774456,
-0.026494663208723068,
-0.04387787729501724,
0.01972360722720623,
-0.0001861929049482569,
0.008905994705855846,
-0.08232461661100388,
0.020670482888817787,
-0.0057125212624669075,
0.014989226125180721,
0.006217224057763815,
0.020366767421364784,
-0.05288213491439819,
-0.027048496529459953,
0.007271293550729752,
-0.040376223623752594,
0.0046316529624164104,
-0.030996792018413544,
-0.07660762965679169,
-0.010013661347329617,
0.03381955251097679,
0.036731645464897156,
0.10462087392807007,
0.03253323212265968,
-0.017928116023540497,
-0.003122011199593544,
0.042305707931518555,
-0.010174451395869255,
-0.06713887304067612,
-0.04895170405507088,
0.005980504676699638,
0.044378116726875305,
-0.00863354466855526,
-0.01958068273961544,
0.015846773982048035,
-0.01607009395956993,
0.023368187248706818,
0.04334191232919693,
-0.037875041365623474,
-0.011943143792450428,
-0.01243444811552763,
-0.03178287670016289,
0.0032135723158717155,
0.02083127386868,
-0.01958068273961544,
0.02924596332013607,
-0.023243127390742302,
-0.03601701930165291,
0.023779094219207764,
0.0008173505775630474,
0.012657767161726952,
-0.08854184299707413,
-0.008343229070305824,
-0.012559507042169571,
-0.0647091493010521,
0.027102094143629074,
-0.02370763197541237,
0.006395879667252302,
0.00244088564068079,
0.02697703428566456,
-0.08804160356521606,
-0.0562765970826149,
-0.020331036299467087,
-0.0017016970086842775,
0.07803688198328018,
-0.051881659775972366,
0.02870999649167061,
-0.02506541647017002,
0.03246176987886429,
-0.0198129341006279,
-0.016748987138271332,
0.02058115415275097,
-0.0052167512476444244,
-0.01192527823150158,
-0.01459618378430605,
-0.004734380170702934,
0.061457615345716476,
-0.04219851270318031,
0.019419891759753227,
-0.06027848646044731,
-0.07546423375606537,
-0.028638534247875214,
-0.01823182962834835,
-0.03381955251097679,
0.01087120920419693,
0.022135460749268532,
-0.047022223472595215,
-0.0001317587011726573,
-0.03848247230052948,
0.08239608258008957,
-0.035338129848241806,
0.025422729551792145,
-0.012479111552238464,
0.03414113447070122,
-0.040197569876909256,
0.010638955980539322,
-0.03208659216761589,
-0.0010590942110866308,
0.0034190264996141195,
-0.012068203650414944,
0.04820135235786438,
-0.00414704903960228,
-0.0294960830360651,
0.06235089525580406,
-0.0340518057346344,
-0.03916136547923088,
0.016972307115793228,
-0.023922018706798553,
-0.009245440363883972,
0.07896588742733002,
-0.03078240528702736,
-0.04541432112455368,
0.03253323212265968,
0.06520938873291016,
0.10154799371957779,
-0.008182438090443611,
-0.044235192239284515,
0.009173978120088577,
0.00541327241808176,
-0.014730175957083702,
-0.022635696455836296,
0.04252009466290474,
0.030603747814893723,
0.010906940326094627,
-0.007521411869674921,
0.02856707200407982,
0.025797905400395393,
0.03891124576330185,
0.00337882898747921,
-0.02463664300739765,
0.022063998505473137,
-0.008838999085128307,
-0.04359202831983566,
0.021670956164598465,
-0.0043480368331074715,
-0.008696073666214943,
-0.03708895668387413,
0.033301450312137604,
-0.03385528549551964,
0.012157531455159187,
0.028888652101159096,
0.05041668191552162,
-0.028745727613568306,
0.0403047613799572,
0.013676105998456478,
-0.01507855486124754,
-0.053561028093099594,
-0.037732116878032684,
0.027048496529459953,
0.03905417025089264,
0.0005379216163419187,
-0.006954179145395756,
0.050773996859788895,
-0.059528131037950516,
-0.02120644971728325,
0.028924383223056793,
-0.06813934445381165,
-0.047879770398139954,
0.02227838523685932,
0.023010874167084694,
-0.004042088985443115,
0.006838052999228239,
-0.009433029219508171,
0.011103461496531963,
0.03117544762790203,
0.021528031677007675,
-0.03708895668387413,
-0.033408645540475845,
-0.005757185164839029,
-0.00012191866699140519,
-0.010424569249153137,
0.02588723413646221,
-0.08711259812116623,
0.05781303718686104,
-0.036874569952487946,
-0.042877405881881714,
0.0437706857919693,
-0.05284640192985535,
-0.007463348563760519,
0.06535231322050095,
0.011389311403036118,
0.01564132049679756,
-0.044235192239284515,
-0.026583991944789886,
0.013667172752320766,
0.0008346578688360751,
-0.002650806214660406,
-0.05570489540696144,
-0.0344269834458828,
0.01490883156657219,
-0.015936102718114853,
-0.01765119843184948,
0.0025637114886194468,
0.01689191162586212,
-0.056205134838819504,
0.03708895668387413,
-0.020599020645022392,
-0.009772475808858871,
-0.04109084606170654,
0.004202879033982754,
0.013434920459985733,
0.005435604602098465,
-0.017570802941918373,
-0.03406967222690582,
-0.0033296984620392323,
0.027477271854877472,
0.005346276797354221,
-0.0065924013033509254,
0.06853238493204117,
0.017972778528928757,
0.020938467234373093,
-0.05295359715819359,
0.0008636894053779542,
-0.05181019753217697,
0.001194761018268764,
0.0015554225537925959,
0.03421259671449661,
0.021367240697145462,
0.021813880652189255,
0.00649414025247097,
-0.06267247349023819,
0.014694444835186005,
0.050238028168678284,
-0.007923386991024017,
0.010138720273971558,
-0.018705269321799278,
-0.013595710508525372,
-0.03385528549551964,
-0.04198412597179413,
-0.017008038237690926,
0.003972859587520361,
-0.03219378739595413,
0.010004728101193905,
-0.013452786020934582,
-0.01881246268749237,
-0.006114496849477291,
-0.010915872640907764,
-0.0027624662034213543,
-0.007999315857887268,
0.0319436676800251,
0.033944614231586456,
-0.021009929478168488,
0.029031576588749886,
-0.009674214757978916,
0.05413272604346275,
0.08732698112726212,
-0.006360148545354605,
-0.057455725967884064,
-0.009575953707098961,
-0.02924596332013607,
-0.02703063189983368,
0.009924332611262798,
-0.0013901658821851015,
-0.0555977039039135,
-0.012175397016108036,
0.0032649359200149775,
-0.039375752210617065,
0.005306079052388668,
-0.028888652101159096,
0.04963059723377228,
0.015802111476659775,
-0.00727575970813632,
0.023260992020368576,
0.013765433803200722,
-0.0013053043512627482,
0.01679365150630474,
0.04041195660829544,
0.0029277228750288486,
-0.032586827874183655,
0.04712941497564316,
-0.009549155831336975,
0.048844512552022934,
-0.019973725080490112,
0.06478061527013779,
-0.002264463109895587,
-0.01958068273961544,
0.033265721052885056,
0.03833954781293869,
-0.06085018441081047,
-0.027352211996912956,
-0.029317425563931465,
-0.00337212928570807,
0.05302505940198898,
-0.0396258682012558,
-0.008615679107606411,
-0.015909304842352867,
0.05288213491439819,
0.0201523806899786,
0.03708895668387413,
0.01368503924459219,
0.06317271292209625,
-0.06585255265235901,
0.05027375742793083,
-0.008061845786869526,
0.0701402872800827,
-0.03555251657962799,
-0.04166254773736,
0.014104880392551422,
-0.0013064210070297122,
0.09940411895513535,
-0.07203403860330582,
0.012380851432681084,
-0.007972517982125282,
0.027262883260846138,
0.07142661511898041,
-0.002724501769989729,
-0.02947821654379368,
0.007516945246607065,
0.028299087658524513,
0.05220324173569679,
0.008437022566795349,
0.03310493007302284,
-0.00788765586912632,
-0.038125161081552505,
-0.04359202831983566,
-0.017133096233010292,
-0.03891124576330185,
0.008785401470959187,
0.006851452402770519,
-0.05570489540696144,
-0.052989326417446136,
-0.045235663652420044,
0.05752718821167946,
-0.021134987473487854,
-0.026869840919971466,
-0.018347956240177155,
-0.020652616396546364,
0.07382059842348099,
0.04959486797451973,
0.033212125301361084,
-0.02208186499774456,
-0.06578108668327332,
-0.01866953633725643,
0.018973251804709435,
0.05277493968605995,
0.062458086758852005,
0.030103512108325958,
-0.0023716564755886793,
0.021474434062838554,
-0.03458777442574501,
-0.0038321681786328554,
0.002443118952214718,
0.017186693847179413,
0.06874677538871765,
0.000936268363147974,
-0.04848720133304596,
0.00810204353183508,
0.016811516135931015,
-0.03289054334163666,
-0.04391361027956009,
0.05499027296900749,
0.028209760785102844,
-0.016275549307465553,
-0.07553569972515106,
-0.06356575340032578,
0.021474434062838554,
0.028316954150795937,
0.014319267123937607,
0.003984025679528713,
-0.01793704740703106,
-0.018365822732448578,
0.07510692626237869,
0.0003291175817139447,
-0.014301401562988758,
0.05166727304458618,
0.0038634329102933407,
-0.05531185492873192,
-0.0016436339356005192,
0.023975616320967674,
-0.08368240296840668,
-0.05752718821167946,
-0.00019847549265250564,
0.012979348190128803,
0.015400134958326817,
-0.014212073758244514,
0.07589300721883774,
-0.03776784986257553,
-0.02429719641804695,
0.01817823387682438,
-0.020188111811876297,
0.006244022399187088,
-0.0009128197561949492,
-0.002261113142594695,
0.03649939224123955,
0.0198129341006279,
0.009098049253225327,
-0.05223897472023964,
-0.02578004077076912,
-0.06435184180736542,
0.07603593170642853,
0.02544059418141842,
-0.02947821654379368,
0.026190949603915215,
0.027298614382743835,
0.023546842858195305,
-0.017633333802223206,
-0.013720770366489887,
0.008146706968545914,
0.07560715824365616,
-0.011389311403036118,
-0.020170247182250023,
-0.007691134698688984,
0.008218169212341309,
0.06195785105228424,
0.0007101570372469723,
0.03607061877846718,
-0.0008876962820068002,
-0.030139243230223656,
-0.02131364308297634,
0.047022223472595215,
-0.013595710508525372,
-0.009263305924832821,
0.011174923740327358,
0.024743836373090744,
-0.004756712354719639,
0.0009781408589333296,
-0.024886760860681534,
-0.020956331863999367,
-0.0048728385008871555,
0.043556299060583115,
0.009008721448481083,
-0.042698752135038376,
-0.04602174833416939,
0.03035362996160984,
-0.002958987606689334,
-0.0037026426289230585,
-0.007074771914631128,
-0.03015710972249508,
-0.03876832127571106,
0.04366349056363106,
-0.05959959328174591,
0.034748565405607224,
-0.030085647478699684,
-0.04226997494697571,
-0.025315534323453903,
0.02856707200407982,
0.04852293059229851,
0.00520781846717,
0.01938416063785553,
-0.030460823327302933,
-0.044235192239284515,
0.011880614794790745,
0.04366349056363106,
-0.02981766313314438,
-0.0333729162812233,
-0.00431677233427763,
0.028263356536626816,
-0.04541432112455368,
0.013399189338088036,
0.006864851340651512,
0.08246754109859467,
0.02197466976940632,
0.028442012146115303,
-0.04194839671254158,
-0.0011355812894180417,
-0.04394933953881264,
-0.06699594855308533,
-0.02000945620238781,
-0.023171665146946907,
0.010924805887043476,
-0.014274602755904198,
0.06620986014604568,
-0.0020913900807499886,
0.021813880652189255,
-0.010451368056237698,
0.08139561116695404,
0.04941621050238609,
-0.07085491716861725,
-0.006101097445935011,
0.06242235749959946,
0.035195205360651016,
-0.03823235258460045,
-0.032104458659887314,
-0.06717460602521896,
-0.009522357024252415,
0.014274602755904198,
-0.06052860617637634,
0.006766590755432844,
0.013524248264729977,
0.02126004733145237,
-0.01507855486124754,
0.024743836373090744,
0.01459618378430605,
-0.01315800379961729,
-0.03651725873351097,
0.00696311192587018,
-0.02165308967232704,
-0.02429719641804695,
0.00026923997211270034,
-0.021099256351590157,
-0.020331036299467087,
-0.0959739238023758,
0.0291923675686121,
-0.0037294409703463316,
0.0260658897459507,
0.011550101451575756,
0.02611948736011982,
0.02410067617893219,
-0.022957278415560722,
-0.03155062347650528,
0.033069200813770294,
-0.028995845466852188,
0.02385055646300316,
-0.01610582508146763,
0.08739844709634781,
-0.0170259028673172,
0.043842148035764694,
0.020563289523124695,
0.002646339824423194,
-0.011701959185302258,
0.08947085589170456,
-0.07625032216310501,
0.017088433727622032,
-0.021956805139780045,
0.008575481362640858,
0.04473542794585228,
0.005694655701518059,
-0.02722715213894844,
-0.05381114408373833,
-0.06267247349023819,
-0.003242603735998273,
0.0350344143807888,
-0.004006357863545418,
-0.04877305030822754,
-0.05109557509422302,
-0.0777510330080986,
-0.005609794054180384,
0.04566443711519241,
-0.01741001382470131,
-0.04223424568772316,
0.010585359297692776,
0.015150017105042934,
-0.006239555776119232,
0.019848665222525597,
0.014828436076641083,
0.02853134088218212,
-0.03001418337225914,
-0.010906940326094627,
0.027066363021731377,
-0.08925646543502808,
0.059813980013132095,
0.008767535910010338,
0.04863012582063675,
-0.03649939224123955,
-0.01411381270736456,
0.000857548147905618,
0.026762647554278374,
-0.00014920555986464024,
0.047308072447776794,
0.009709945879876614,
0.0198129341006279,
0.050380952656269073,
0.06996163725852966,
0.02794177643954754,
0.014354998245835304,
0.017597602680325508,
-0.006704061292111874,
-0.008097576908767223,
-0.09475906938314438,
-0.0204918272793293,
-0.024851029738783836,
-0.0059090424329042435,
0.003925962373614311,
-0.0018234063172712922,
0.004343570675700903,
-0.06424465030431747,
-0.03555251657962799,
0.025958696380257607,
-0.03569544106721878,
0.06210077553987503,
-0.03083600103855133,
-0.02549419179558754,
0.0013421521289274096,
-0.04141242802143097,
0.05581209063529968,
0.054382842034101486,
0.0444495789706707,
0.01098733488470316,
0.041198041290044785,
0.08025221526622772,
-0.0027713989838957787,
0.01490883156657219,
0.0035999156534671783,
-0.03934001922607422,
-0.01459618378430605,
-0.045628707855939865,
0.018651671707630157,
-0.02963900752365589,
0.001373416860587895,
0.0032649359200149775,
0.017133096233010292,
0.002697703428566456,
-0.019848665222525597,
-0.012148598209023476,
-0.04473542794585228,
0.07575008273124695,
-0.014292468316853046,
-0.012362985871732235,
0.041448161005973816,
0.0015520728193223476,
0.034266192466020584,
0.02126004733145237,
-0.03558824583888054,
0.004444064572453499,
-0.09554515033960342,
0.01578424498438835,
0.026869840919971466,
0.01716882735490799,
-0.02967473864555359,
-0.014462191611528397,
0.05123849958181381,
-0.012228993698954582,
0.03973306342959404,
-0.017928116023540497,
-0.006078765727579594,
0.049809254705905914,
-0.012604170478880405,
-0.035230934619903564,
-0.02760232985019684,
-0.028459878638386726,
0.04655771702528,
-0.03192580118775368,
-0.07960905134677887,
0.022439176216721535,
-0.09418737143278122,
-0.04530712589621544,
0.008955124765634537,
0.011800219304859638,
0.020670482888817787,
-0.033944614231586456,
0.023010874167084694,
0.006869317963719368,
0.005109557416290045,
0.023868422955274582,
-0.034659236669540405,
0.03381955251097679,
-0.053132250905036926,
0.09047132730484009,
-0.0916861891746521,
0.03001418337225914,
-0.00452222628518939,
-0.013283062726259232,
0.016034362837672234,
0.04816561937332153,
-0.04766538366675377,
0.045914556831121445,
0.038696859031915665,
-0.0051854862831532955,
0.007164099719375372,
0.0013153537875041366,
0.025333400815725327,
0.007427617441862822,
-0.012291522696614265,
0.03462350368499756,
-0.0409836545586586,
0.048844512552022934,
0.017276020720601082,
-0.015364403836429119,
-0.05263201519846916,
0.0351058766245842,
-0.02188534289598465,
-0.009156112559139729,
0.03601701930165291,
-0.030103512108325958,
-0.029085174202919006,
-0.012523775920271873,
-0.07789395749568939,
-0.015721715986728668,
0.04880877956748009,
0.047593921422958374,
0.026923438534140587,
0.04344910383224487,
-0.043270450085401535,
0.04916609078645706,
0.015694918110966682,
-0.009817139245569706,
0.012291522696614265,
0.040519148111343384,
-0.000544900365639478,
0.0038812984712421894,
-0.008678208105266094,
0.0749640017747879,
-0.02193893864750862,
0.013961954973638058,
-0.02197466976940632,
-0.010817612521350384,
0.07596447318792343,
0.044270921498537064,
-0.007065839134156704,
0.04116230830550194,
-0.03414113447070122,
0.02231411635875702,
-0.011112394742667675,
0.04109084606170654,
0.04534285515546799,
-0.007561609148979187,
0.03876832127571106,
0.025386998429894447,
-0.012148598209023476,
-0.0006364614819176495,
0.004484261851757765,
-0.03362303227186203,
0.02245704084634781,
-0.07596447318792343,
0.005699121858924627,
0.018633805215358734,
0.020813407376408577,
-0.06374441087245941,
0.015480530448257923,
0.02901371195912361,
-0.005471335723996162,
-0.028888652101159096,
0.033069200813770294,
0.023100202903151512,
0.06181492656469345,
0.022725025191903114,
0.013149071484804153,
0.044092267751693726,
-0.014247804880142212,
0.004263175651431084,
-0.04194839671254158,
0.0514528863132,
-0.017910249531269073,
-0.007534810807555914,
0.06517365574836731,
0.03410540521144867,
0.010138720273971558,
-0.013193734921514988,
-0.032979872077703476,
0.06846092641353607,
-0.02794177643954754,
-0.07071199268102646,
0.034373387694358826,
-0.0060251690447330475,
0.012559507042169571,
-0.005306079052388668,
0.003483789274469018,
-0.004524459596723318,
0.047308072447776794,
-0.00042737831245176494,
0.06538804620504379,
0.04205558821558952,
0.007043507415801287
]
|
42,144 | werkzeug.datastructures.headers | add | Add a new header tuple to the list.
Keyword arguments can specify additional parameters for the header
value, with underscores converted to dashes::
>>> d = Headers()
>>> d.add('Content-Type', 'text/plain')
>>> d.add('Content-Disposition', 'attachment', filename='foo.png')
The keyword argument dumping uses :func:`dump_options_header`
behind the scenes.
.. versionadded:: 0.4.1
keyword arguments were added for :mod:`wsgiref` compatibility.
| def add(self, _key, _value, **kw):
"""Add a new header tuple to the list.
Keyword arguments can specify additional parameters for the header
value, with underscores converted to dashes::
>>> d = Headers()
>>> d.add('Content-Type', 'text/plain')
>>> d.add('Content-Disposition', 'attachment', filename='foo.png')
The keyword argument dumping uses :func:`dump_options_header`
behind the scenes.
.. versionadded:: 0.4.1
keyword arguments were added for :mod:`wsgiref` compatibility.
"""
if kw:
_value = _options_header_vkw(_value, kw)
_value = _str_header_value(_value)
self._list.append((_key, _value))
| (self, _key, _value, **kw) | [
-0.042760562151670456,
0.013866797089576721,
-0.05303635448217392,
-0.021380281075835228,
0.014410051517188549,
0.013756304048001766,
0.007430614437907934,
0.047585394233465195,
-0.051157984882593155,
-0.03775157034397125,
-0.03055115044116974,
-0.023350728675723076,
0.04401280730962753,
0.009267550893127918,
0.02287192828953266,
0.03502609208226204,
-0.0016758014680817723,
0.03323979675769806,
-0.024179421365261078,
-0.03977726399898529,
0.0015699128853157163,
0.0052898237481713295,
0.009686500765383244,
-0.027567854151129723,
0.005704170558601618,
0.03815671056509018,
-0.007191214244812727,
-0.027402115985751152,
0.03395799919962883,
0.01057044044137001,
0.018507476896047592,
-0.06806331872940063,
-0.06968387961387634,
-0.05112115293741226,
-0.03382909297943115,
0.03156399726867676,
-0.013443242758512497,
-0.03881966322660446,
-0.009594423696398735,
0.014050951227545738,
0.06231771782040596,
0.006371728610247374,
0.0038948573637753725,
-0.032705750316381454,
0.022061649709939957,
0.09546543657779694,
-0.03933529555797577,
0.06541150063276291,
0.03228219598531723,
-0.05182093754410744,
-0.04493357613682747,
0.01873767003417015,
0.01677642948925495,
-0.058045342564582825,
-0.03419739753007889,
0.015551806427538395,
0.009539177641272545,
-0.026168284937739372,
-0.02108563482761383,
0.08286930620670319,
0.024253083392977715,
0.006426974665373564,
-0.009111019782721996,
-0.03027491830289364,
0.011813479475677013,
-0.01766957715153694,
-0.018314115703105927,
-0.029888195917010307,
-0.013332749716937542,
0.00805673748254776,
0.04334985464811325,
-0.016804052516818047,
-0.013811551034450531,
-0.0016619899543002248,
-0.0018380872206762433,
0.019207263365387917,
-0.09111940115690231,
0.04239225387573242,
-0.031692903488874435,
-0.02025694027543068,
0.00796926487237215,
0.008738107979297638,
-0.019170431420207024,
-0.009161662310361862,
0.013931251130998135,
-0.0030247296672314405,
-0.06242820993065834,
-0.04150831326842308,
0.028838517144322395,
0.06684790551662445,
-0.017356514930725098,
-0.02618669904768467,
-0.022908758372068405,
-0.018001053482294083,
0.017301268875598907,
-0.04452843964099884,
0.03557855263352394,
-0.003991538193076849,
-0.01199763361364603,
0.03937212750315666,
-0.0335528589785099,
-0.031085196882486343,
0.09531811624765396,
0.016702769324183464,
-0.04312887042760849,
-0.08456352353096008,
-0.0015802716370671988,
-0.005823870655149221,
-0.02830447070300579,
0.03591003268957138,
0.03027491830289364,
-0.09377121925354004,
0.0034920203033834696,
0.0048662698827683926,
0.0078035262413322926,
0.032981984317302704,
0.07170957326889038,
-0.029611963778734207,
-0.014538958668708801,
-0.003091485472396016,
-0.003390735713765025,
-0.031692903488874435,
0.026923315599560738,
0.026536593213677406,
-0.029372563585639,
-0.03771474212408066,
-0.012771080248057842,
-0.039850927889347076,
0.017135530710220337,
0.00369228795170784,
-0.03145350515842438,
0.023019250482320786,
-0.002252433681860566,
-0.0425395742058754,
0.03705178573727608,
-0.050936996936798096,
0.010699347592890263,
0.02009120211005211,
0.05141579732298851,
0.01250405702739954,
-0.009493139572441578,
-0.030680058524012566,
-0.01784452423453331,
-0.0034828127827495337,
0.012513265013694763,
-0.031195688992738724,
-0.040919020771980286,
0.0012936819111928344,
0.004571623168885708,
0.06364362686872482,
-0.026444515213370323,
0.019280925393104553,
-0.01001797802746296,
0.02254045009613037,
0.04670145735144615,
-0.04055071249604225,
-0.0026495158672332764,
0.005994212813675404,
0.00917086936533451,
0.041987113654613495,
0.060954976826906204,
-0.018268076702952385,
0.028451794758439064,
0.033700183033943176,
-0.008116587996482849,
0.017255229875445366,
0.00234335963614285,
0.04246591404080391,
-0.0000865379988681525,
0.0408453606069088,
0.0023732848931103945,
-0.0335528589785099,
0.00903735775500536,
0.04032972827553749,
0.021472357213497162,
-0.021619681268930435,
-0.020790986716747284,
0.058266326785087585,
-0.01907835528254509,
-0.06250187009572983,
0.028820103034377098,
-0.029777703806757927,
-0.011408341117203236,
0.025873638689517975,
-0.03395799919962883,
0.01138992514461279,
0.0058514936827123165,
0.03624150902032852,
0.030182842165231705,
0.033313460648059845,
0.024308329448103905,
-0.01907835528254509,
-0.0040675015188753605,
-0.034381553530693054,
-0.018083924427628517,
-0.017356514930725098,
-0.02522909827530384,
-0.03322138264775276,
0.07097295671701431,
0.04320253059267998,
-0.03038541041314602,
-0.03718069568276405,
-0.019501909613609314,
-0.006809094455093145,
0.06353313475847244,
-0.03988775983452797,
0.021343449130654335,
-0.04743807390332222,
-0.046517301350831985,
0.017780069261789322,
0.03686763346195221,
0.017246022820472717,
-0.012347525916993618,
0.04368133097887039,
-0.036167848855257034,
-0.05624063313007355,
-0.06717938184738159,
-0.03659140318632126,
0.002232867293059826,
-0.0335528589785099,
0.0682843029499054,
0.013295919634401798,
0.005708774086087942,
0.006763055920600891,
0.052889030426740646,
0.029280487447977066,
0.01694216951727867,
-0.03257684409618378,
-0.05756654217839241,
0.006090893875807524,
0.010957163758575916,
0.02500811405479908,
-0.044049639254808426,
0.029022671282291412,
-0.03204279765486717,
0.009322796948254108,
-0.02802824042737484,
0.025192268192768097,
-0.01538606733083725,
-0.0209751408547163,
0.033423952758312225,
0.07019950449466705,
0.0058514936827123165,
0.0481010265648365,
0.0006140384939499199,
-0.022172141820192337,
-0.04485991597175598,
0.052778538316488266,
-0.028230808675289154,
0.06334897875785828,
0.010303416289389133,
0.02858070284128189,
0.0015468936180695891,
-0.018894201144576073,
-0.017835315316915512,
0.039408959448337555,
-0.027052223682403564,
-0.014419258572161198,
-0.02445565164089203,
-0.05218924582004547,
-0.002709365915507078,
-0.0006025289185345173,
0.03764107823371887,
-0.011399133130908012,
-0.02550533041357994,
0.008098172955214977,
0.02451089769601822,
0.03182181343436241,
-0.04935327544808388,
0.03491559997200966,
0.02870960906147957,
-0.04714342579245567,
-0.019557155668735504,
-0.027457362040877342,
0.024805545806884766,
-0.004537094384431839,
0.012034464627504349,
0.010174509137868881,
-0.047364410012960434,
0.028893763199448586,
0.04574385657906532,
-0.036388833075761795,
-0.012513265013694763,
0.00870127696543932,
0.0015710638836026192,
0.07170957326889038,
0.0019439758034422994,
0.11807955056428909,
-0.04460209980607033,
-0.0204226803034544,
-0.023129742592573166,
0.022448373958468437,
-0.011841102503240108,
0.016500199213624,
0.021564435213804245,
0.03172973543405533,
0.006647959817200899,
0.012973649427294731,
0.05981322005391121,
0.035375986248254776,
0.03377384692430496,
0.035265494138002396,
0.03697812557220459,
-0.04751173406839371,
-0.052447061985731125,
-0.007559522055089474,
0.0065006366930902,
0.027273207902908325,
-0.056093309074640274,
-0.010819047689437866,
0.017632747069001198,
0.04452843964099884,
-0.05775069817900658,
-0.013470865786075592,
0.028893763199448586,
0.031913891434669495,
-0.05694041773676872,
0.001659687957726419,
-0.0536993071436882,
-0.012899988330900669,
-0.038119878619909286,
-0.07815495878458023,
-0.06393827497959137,
-0.042208097875118256,
0.10342089086771011,
-0.046517301350831985,
0.028949009254574776,
-0.06555882841348648,
0.04342351481318474,
0.041987113654613495,
-0.037346433848142624,
0.016270006075501442,
0.0015503466129302979,
0.08036480844020844,
-0.02382952906191349,
0.006606524810194969,
-0.024658221751451492,
0.04449160769581795,
-0.0419502817094326,
0.000680218858178705,
-0.07248301804065704,
0.0035288510844111443,
-0.039850927889347076,
-0.01476915180683136,
-0.002690950408577919,
-0.11211296170949936,
-0.01295523438602686,
0.04872715100646019,
0.01807471551001072,
0.03662823140621185,
0.001682707224972546,
-0.04563336446881294,
0.035044506192207336,
0.018489062786102295,
0.11505942791700363,
-0.007430614437907934,
-0.04765905812382698,
-0.058266326785087585,
0.040256064385175705,
-0.0025597407948225737,
0.09649670124053955,
-0.012144956737756729,
0.004829438868910074,
0.02948305755853653,
-0.036278340965509415,
0.0026518176309764385,
0.009769369848072529,
0.009097208268940449,
0.025358006358146667,
-0.040366560220718384,
-0.012973649427294731,
-0.0248976219445467,
0.03318455070257187,
0.037401679903268814,
0.02887534908950329,
-0.013268296606838703,
0.0441969633102417,
0.04688560962677002,
-0.06537467241287231,
-0.05285219848155975,
0.01043232437223196,
0.01661989837884903,
0.008222476579248905,
0.003825799562036991,
0.01604902185499668,
-0.022411542013287544,
0.05565134063363075,
0.01979655586183071,
0.010542817413806915,
0.013664226979017258,
0.025302760303020477,
0.005561450961977243,
0.013986497186124325,
0.007702241186052561,
-0.017982639372348785,
-0.04622265696525574,
-0.003197374055162072,
0.01812075451016426,
-0.02265094220638275,
-0.041213665157556534,
0.07336695492267609,
-0.027678348124027252,
-0.04670145735144615,
0.04655413329601288,
0.0024032099172472954,
-0.018673216924071312,
-0.06239137798547745,
0.005409523844718933,
-0.006666374858468771,
-0.03384750708937645,
0.03204279765486717,
-0.0799965038895607,
-0.04323936253786087,
-0.005078046582639217,
-0.007195817772299051,
0.04891130328178406,
-0.032540012151002884,
0.005713378079235554,
-0.023203404620289803,
0.01683167554438114,
0.018360154703259468,
-0.059223927557468414,
-0.06515368819236755,
0.08574210852384567,
0.009041962213814259,
-0.027052223682403564,
-0.0028152544982731342,
0.014410051517188549,
-0.004578528925776482,
-0.08397422730922699,
0.01610426791012287,
0.053515154868364334,
0.035615384578704834,
0.04136098921298981,
0.002750800456851721,
-0.00015609929687343538,
-0.02344280481338501,
-0.06957338750362396,
0.0170618686825037,
-0.0022720000706613064,
-0.04257640615105629,
-0.031858641654253006,
-0.05322050675749779,
0.01812075451016426,
0.0030109179206192493,
-0.01295523438602686,
-0.036002106964588165,
-0.02775200828909874,
0.08692069351673126,
-0.019649231806397438,
0.06003420799970627,
-0.01102161779999733,
0.010837463662028313,
0.02797299437224865,
0.029372563585639,
-0.041987113654613495,
0.007366160396486521,
-0.049316443502902985,
-0.0019957690965384245,
-0.06541150063276291,
0.0866997092962265,
0.01940983161330223,
0.014566581696271896,
-0.024013683199882507,
-0.041876621544361115,
0.04301837459206581,
0.02176700346171856,
0.007177402265369892,
0.029004257172346115,
-0.022687774151563644,
-0.03944578766822815,
0.01395887415856123,
-0.046517301350831985,
-0.022743020206689835,
0.03071688860654831,
0.040477052330970764,
0.03721752390265465,
-0.011482002213597298,
-0.06066032871603966,
-0.040256064385175705,
0.0727040022611618,
-0.008010699413716793,
0.00850791484117508,
-0.008351384662091732,
0.018774501979351044,
0.055577680468559265,
0.03360810503363609,
-0.01728285290300846,
0.04950059577822685,
0.013848381116986275,
0.030182842165231705,
-0.018535101786255836,
-0.016748806461691856,
-0.014971720986068249,
0.040366560220718384,
0.015910906717181206,
-0.016748806461691856,
-0.0029004255775362253,
0.0028129525016993284,
0.008158022537827492,
0.024179421365261078,
-0.0520419217646122,
0.008650634437799454,
0.02942780964076519,
-0.013940458185970783,
-0.02646293118596077,
0.0035219453275203705,
0.024124175310134888,
-0.050089891999959946,
-0.018535101786255836,
-0.010469155386090279,
0.027052223682403564,
0.008075153455138206,
0.004097426775842905,
0.05756654217839241,
0.01847064681351185,
-0.11719561368227005,
0.007752883713692427,
0.01401412021368742,
0.02657342329621315,
0.025836806744337082,
0.0212697871029377,
0.05377297103404999,
-0.08353225886821747,
-0.018829748034477234,
0.021214541047811508,
-0.06798966228961945,
-0.03003551810979843,
0.020183280110359192,
0.06968387961387634,
-0.06865261495113373,
0.029133163392543793,
-0.004675209987908602,
0.008402026258409023,
0.024547729641199112,
0.04828518256545067,
0.03955627977848053,
0.04368133097887039,
-0.045449208468198776,
-0.06839479506015778,
0.029188409447669983,
0.028507040813565254,
-0.041876621544361115,
-0.08758364617824554,
-0.014511335641145706,
0.014612620696425438,
-0.011141317896544933,
-0.02003595605492592,
0.008558557368814945,
-0.07727102190256119,
-0.05307318642735481,
0.0005392259336076677,
-0.01610426791012287,
0.02003595605492592,
-0.03688604757189751,
0.0010819047456607223,
-0.0007682674913667142,
-0.029409395530819893,
-0.001984259346500039,
-0.023148158565163612,
0.030569564551115036,
-0.0003519068122841418,
-0.03425264731049538,
0.021582849323749542,
-0.038119878619909286,
-0.018710047006607056,
-0.018774501979351044,
-0.022337881848216057,
0.020606832578778267,
-0.041213665157556534,
0.014594204723834991,
-0.019962294027209282,
-0.006947210058569908,
0.0037291187327355146,
-0.04427062347531319,
-0.007789714727550745,
0.009253738448023796,
0.07712370157241821,
0.006090893875807524,
-0.0260025467723608,
-0.048542995005846024,
0.029722457751631737,
0.03539440035820007,
-0.04375499114394188,
0.0034528877586126328,
0.014759943820536137,
0.04574385657906532,
0.002467663725838065,
-0.009990354999899864,
0.00544175086542964,
-0.06257553398609161,
-0.04504407197237015,
-0.0012706626439467072,
-0.02020169422030449,
-0.011592495255172253,
-0.028783271089196205,
-0.016150306910276413,
-0.001819671830162406,
-0.020514756441116333,
0.06088131666183472,
0.04603850096464157,
0.00597119377925992,
-0.0004221155249979347,
-0.008457273244857788,
0.02456614375114441,
0.038119878619909286,
-0.021398695185780525,
0.015524182468652725,
-0.026941731572151184,
-0.05163678526878357,
0.01018371619284153,
0.015745168551802635,
-0.04073486477136612,
0.031637657433748245,
-0.018111547455191612,
0.0011377264745533466,
0.02701539359986782,
-0.0020256941206753254,
0.05856097489595413,
0.013535319827497005,
-0.022245803847908974,
0.0031398257706314325,
0.025652652606368065,
0.030072350054979324,
0.024179421365261078,
-0.05635112524032593,
-0.021048802882432938,
0.00027133943513035774,
-0.023092912510037422,
-0.05605648085474968,
-0.013940458185970783,
0.036388833075761795,
0.02898584119975567,
-0.0030546546913683414,
0.035486478358507156,
0.051894597709178925,
0.021472357213497162,
0.008802562020719051,
0.046517301350831985,
-0.017420969903469086,
0.0005265653599053621,
0.029077917337417603,
-0.020625248551368713,
-0.01974130980670452,
0.012973649427294731,
0.11461745202541351,
-0.02382952906191349,
-0.05789801850914955,
0.04401280730962753,
-0.03870917111635208,
0.0553935244679451,
-0.012062087655067444,
-0.030680058524012566,
0.008774938061833382,
0.029169995337724686,
0.011168940924108028,
-0.025155438110232353,
0.005741001106798649,
0.004889288917183876,
-0.030238088220357895,
0.020570002496242523,
-0.029169995337724686,
0.07469286769628525,
-0.08228000998497009,
-0.027825670316815376,
-0.03592844679951668,
0.016537029296159744,
-0.024547729641199112,
0.0006226707482710481,
0.016408121213316917,
0.0012741155223920941,
-0.06136011704802513,
-0.033589690923690796,
0.05454641580581665,
0.05399395525455475,
-0.032650504261255264,
-0.038009386509656906,
-0.019262509420514107,
0.014529751613736153,
0.005925155244767666,
0.033700183033943176,
0.0068367174826562405,
0.01417985837906599,
-0.00956680066883564,
-0.013406411744654179,
0.044233791530132294,
-0.005579866468906403,
0.04935327544808388,
-0.04872715100646019,
-0.030422242358326912,
0.04172929748892784,
-0.050384536385536194,
-0.03878283500671387,
0.029077917337417603,
-0.013323542661964893,
0.026647085323929787,
0.04773271828889847,
-0.042871054261922836,
0.029519887641072273,
-0.0027254794258624315,
-0.03760425001382828,
0.02209848165512085,
0.01879291608929634,
0.02443723753094673,
-0.012025256641209126,
-0.04567019268870354,
0.04331302270293236,
-0.005681151058524847,
0.06942605972290039,
-0.006284255534410477,
-0.03335029259324074,
-0.009189285337924957,
-0.0032687336206436157,
0.0017494630301371217,
0.0022179048974066973,
-0.026775993406772614,
0.059997376054525375,
-0.03486035391688347,
0.02462139166891575,
0.02948305755853653,
0.06997852027416229,
0.02522909827530384,
0.05646161735057831,
-0.04614899307489395,
0.019059939309954643,
-0.07182006537914276,
-0.000035841694625560194,
-0.007246460299938917,
-0.012246241793036461,
0.009585215710103512,
0.05252072215080261,
0.021380281075835228,
-0.0011221885215491056,
0.03955627977848053,
0.015063798055052757,
-0.011868725530803204,
-0.0643065795302391,
0.06113912910223007,
0.027880916371941566,
0.07366160303354263,
-0.013747096993029118,
0.023590128868818283,
0.03881966322660446,
-0.041987113654613495,
-0.028157148510217667,
-0.04832201078534126,
0.06386461108922958,
-0.0016654428327456117,
0.011316264048218727,
0.0559459887444973,
-0.05101066082715988,
-0.0061231208965182304,
-0.023350728675723076,
0.051673613488674164,
0.05226290598511696,
-0.044160131365060806,
-0.0015837245155125856,
0.010717763565480709,
0.050495028495788574,
-0.040698036551475525,
-0.013581357896327972,
-0.012890780344605446,
0.023350728675723076,
-0.005506204906851053,
0.025947298854589462,
0.03999825194478035,
0.01037707831710577,
0.071599081158638
]
|
42,145 | werkzeug.datastructures.headers | add_header | Add a new header tuple to the list.
An alias for :meth:`add` for compatibility with the :mod:`wsgiref`
:meth:`~wsgiref.headers.Headers.add_header` method.
| def add_header(self, _key, _value, **_kw):
"""Add a new header tuple to the list.
An alias for :meth:`add` for compatibility with the :mod:`wsgiref`
:meth:`~wsgiref.headers.Headers.add_header` method.
"""
self.add(_key, _value, **_kw)
| (self, _key, _value, **_kw) | [
-0.06815332919359207,
-0.006710893474519253,
-0.06639253348112106,
0.016209721565246582,
-0.00047337691648863256,
0.0028267749585211277,
-0.008467378094792366,
0.05613845959305763,
-0.009658508002758026,
-0.05593130365014076,
0.00122349732555449,
-0.04225920885801315,
0.05354904755949974,
0.01563141867518425,
0.016572238877415657,
0.027447769418358803,
0.010996370576322079,
0.055033642798662186,
-0.022061793133616447,
-0.06224947050213814,
-0.005170193035155535,
-0.00712088355794549,
0.015079011209309101,
-0.045642707496881485,
-0.013206002302467823,
0.035664837807416916,
-0.008217068389058113,
-0.018453877419233322,
0.061248231679201126,
-0.019783109426498413,
0.006374269723892212,
-0.061248231679201126,
-0.05089058354496956,
-0.06269830465316772,
0.004281161818653345,
0.021578434854745865,
-0.018626505509018898,
-0.044261686503887177,
0.009917449206113815,
0.013603045605123043,
0.052064448595047,
-0.00862274318933487,
-0.020007524639368057,
-0.047092776745557785,
0.030969370156526566,
0.09846671670675278,
-0.022907666862010956,
0.07050106674432755,
0.0437438040971756,
-0.017746105790138245,
-0.03787447139620781,
-0.010910057462751865,
0.023839855566620827,
-0.04937146231532097,
-0.02523813769221306,
0.008329275995492935,
0.016598133370280266,
-0.005019144155085087,
-0.0146388104185462,
0.06746282428503036,
0.04277709126472473,
-0.002265735762193799,
-0.02074982412159443,
-0.0070993052795529366,
0.023822592571377754,
-0.022096317261457443,
0.004906936082988977,
-0.024685731157660484,
0.0010557249188423157,
-0.001931270002387464,
0.030969370156526566,
0.015898991376161575,
-0.004531471524387598,
-0.0111085781827569,
0.010547539219260216,
0.03673512861132622,
-0.07692280411720276,
0.0292776208370924,
-0.018402090296149254,
-0.03946264460682869,
0.007940864190459251,
-0.020905189216136932,
0.002831090707331896,
0.018402090296149254,
0.008100545033812523,
0.007297826930880547,
-0.040153153240680695,
-0.042086582630872726,
0.02049088291823864,
0.09045679867267609,
-0.03752921521663666,
-0.021975478157401085,
-0.023442812263965607,
-0.028535323217511177,
0.04357117787003517,
-0.033869512379169464,
0.035802941769361496,
-0.007677607238292694,
-0.022562412545084953,
0.03383498638868332,
-0.008631374686956406,
-0.014293556101620197,
0.04971671476960182,
-0.0013259948464110494,
-0.020318254828453064,
-0.0693962499499321,
0.01990394853055477,
-0.02102602832019329,
-0.004095586948096752,
0.0155364740639925,
0.03060685284435749,
-0.10979107767343521,
0.008838526904582977,
-0.0007520084618590772,
0.0011058948002755642,
0.02875973843038082,
0.07927054166793823,
-0.03355878219008446,
-0.004378264769911766,
0.02551434189081192,
0.027551347389817238,
-0.026481056585907936,
0.04232826083898544,
0.03452549874782562,
-0.033420681953430176,
-0.03721848502755165,
-0.0012148659443482757,
-0.02352912537753582,
0.017564846202731133,
-0.01943785510957241,
-0.05745042860507965,
0.03502611815929413,
-0.00837674830108881,
-0.03853045403957367,
0.039290014654397964,
-0.021302232518792152,
0.0018212199211120605,
0.03411119058728218,
0.017418112605810165,
0.021958215162158012,
-0.011514252983033657,
-0.02406427077949047,
0.005308295134454966,
-0.010193653404712677,
0.0312628373503685,
0.0006219983915798366,
-0.04930241033434868,
0.03873760625720024,
-0.017556214705109596,
0.05551699921488762,
-0.018609242513775826,
0.005990173667669296,
0.020922450348734856,
0.02339102327823639,
0.013801567256450653,
-0.02226894535124302,
-0.021526647731661797,
0.0009623982477933168,
0.018609242513775826,
0.03701133280992508,
0.06463173031806946,
-0.020956976339221,
0.020905189216136932,
0.02240704745054245,
-0.01567457616329193,
0.024340474978089333,
-0.011911296285688877,
0.047230880707502365,
-0.013447681441903114,
0.001575225847773254,
0.01590762287378311,
-0.05064890533685684,
0.006624579895287752,
0.035129692405462265,
0.019455118104815483,
-0.0341629795730114,
-0.027516821399331093,
0.05455028638243675,
-0.029691927134990692,
-0.034076664596796036,
0.045573655515909195,
-0.009235570207238197,
-0.0026886730920523405,
0.005001881159842014,
-0.03159083053469658,
0.04505577310919762,
0.019006285816431046,
0.03825424984097481,
0.07060464471578598,
0.04263898730278015,
0.023373762145638466,
-0.005114089231938124,
-0.0021805008873343468,
-0.03535410761833191,
-0.01948964223265648,
-0.02128496952354908,
-0.009960605762898922,
-0.04288066551089287,
0.05486101284623146,
0.02523813769221306,
-0.050061970949172974,
-0.015993935987353325,
-0.016321929171681404,
0.007871813140809536,
0.06028151884675026,
-0.021716536954045296,
0.0271025151014328,
-0.03759826719760895,
-0.07554178684949875,
0.012049398384988308,
0.041223444044589996,
0.010668378323316574,
-0.017210960388183594,
0.023822592571377754,
-0.04633321613073349,
-0.045504603534936905,
-0.06508056074380875,
-0.029329409822821617,
0.024823831394314766,
-0.040809135884046555,
0.05751947686076164,
-0.0013303105952218175,
0.009468617849051952,
-0.05762305483222008,
0.06732472032308578,
0.0042056371457874775,
0.020456356927752495,
-0.025479815900325775,
-0.06590917706489563,
-0.01929975301027298,
0.0027728290297091007,
0.031573567539453506,
-0.030555065721273422,
0.008816949091851711,
-0.023822592571377754,
-0.036113668233156204,
-0.006611632648855448,
0.0022333681117743254,
-0.024616679176688194,
0.006663420703262091,
0.02030099183320999,
0.05109773576259613,
0.014086402952671051,
0.056552764028310776,
-0.009313252754509449,
-0.00856232363730669,
-0.041085340082645416,
0.05254780501127243,
-0.034335605800151825,
0.05154656618833542,
-0.027206091210246086,
0.020473619922995567,
-0.01728864200413227,
-0.0251172985881567,
-0.02518635056912899,
0.022372521460056305,
-0.04605701193213463,
0.005649234633892775,
-0.026947150006890297,
-0.06314713507890701,
0.00020472540927585214,
-0.018730081617832184,
0.03825424984097481,
-0.050061970949172974,
-0.024167848750948906,
0.011030896566808224,
0.0242023728787899,
0.049336936324834824,
-0.035595785826444626,
0.03502611815929413,
0.03694228082895279,
-0.04136154428124428,
-0.010927319526672363,
-0.024219635874032974,
0.03305816277861595,
-0.026066750288009644,
0.0013324683532118797,
0.05427408218383789,
-0.02252788655459881,
0.028500797227025032,
0.05558605119585991,
-0.05596582964062691,
-0.02156117372214794,
0.03267838433384895,
-0.017608003690838814,
0.06083392724394798,
-0.004276846069842577,
0.12373938411474228,
-0.06166253611445427,
-0.03304089978337288,
-0.010901425965130329,
0.015312057919800282,
-0.008816949091851711,
0.03476717695593834,
0.009330515749752522,
0.032488491386175156,
-0.030106233432888985,
0.024271424859762192,
0.07305595278739929,
0.04764518514275551,
0.03516421839594841,
0.051857296377420425,
-0.006512371823191643,
-0.07436791807413101,
-0.025894122198224068,
-0.04301876947283745,
0.00756971538066864,
0.046436794102191925,
-0.083827905356884,
0.001612988067790866,
-0.008078966289758682,
0.03708038479089737,
-0.08852337300777435,
-0.039704322814941406,
0.03203966096043587,
-0.0030619800090789795,
-0.04729992896318436,
0.01242054719477892,
-0.024961933493614197,
-0.008173911832273006,
-0.03614819422364235,
-0.09480701386928558,
-0.06621990352869034,
-0.028121016919612885,
0.09646423906087875,
-0.04270803928375244,
0.04747255891561508,
-0.07146777957677841,
0.018868183717131615,
0.04702372848987579,
-0.02762039750814438,
-0.002731829881668091,
-0.005014828406274319,
0.04609153792262077,
-0.03897928446531296,
0.0026821994688361883,
-0.01917891390621662,
0.023218397051095963,
-0.043260447680950165,
-0.0022182632237672806,
-0.09708569943904877,
0.013775673694908619,
-0.049267884343862534,
0.004578943829983473,
-0.009175150655210018,
-0.11918201297521591,
-0.04950956255197525,
0.062491148710250854,
0.028863314539194107,
0.008299066685140133,
-0.007034569978713989,
-0.029381198808550835,
0.039220962673425674,
0.028397221118211746,
0.10647663474082947,
-0.003987695090472698,
-0.04799044132232666,
-0.06407932192087173,
0.04826664552092552,
-0.006814470048993826,
0.07678470760583878,
0.014103665947914124,
0.010331754572689533,
0.02724061720073223,
-0.027775762602686882,
0.006132591515779495,
-0.019247964024543762,
0.019783109426498413,
-0.0031785035971552134,
-0.024961933493614197,
-0.016106143593788147,
-0.026187589392066002,
0.03278195858001709,
0.06280188262462616,
0.02584233507514,
-0.029191307723522186,
0.05558605119585991,
0.0462641641497612,
-0.08990439772605896,
-0.05827903747558594,
0.03074495494365692,
0.019748583436012268,
0.008691794238984585,
0.012774433940649033,
-0.006559844594448805,
-0.007332352455705404,
0.08320644497871399,
0.007755289785563946,
-0.009615350514650345,
0.018747344613075256,
0.009977868758141994,
-0.0242023728787899,
0.005049353931099176,
-0.012437810190021992,
-0.032954588532447815,
-0.04957861453294754,
-0.007759605534374714,
-0.0014403605600818992,
-0.010064182803034782,
-0.04923335835337639,
0.09100920706987381,
-0.02988181822001934,
-0.040498409420251846,
0.037391114979982376,
-0.00006615139136556536,
-0.029001416638493538,
-0.048680949956178665,
0.017374956980347633,
-0.005325558129698038,
-0.003843119367957115,
-0.013490837998688221,
-0.05810641124844551,
-0.03319626674056053,
-0.0045012617483735085,
0.002852669218555093,
0.0567253902554512,
0.0038323302287608385,
-0.002524676965549588,
0.0025850965175777674,
0.024547629058361053,
0.01133299432694912,
-0.06829143315553665,
-0.06276735663414001,
0.10095255076885223,
0.005247875582426786,
-0.04288066551089287,
-0.00026946072466671467,
-0.00011402854579500854,
-0.012083924375474453,
-0.05175371840596199,
0.04388190805912018,
0.03442192077636719,
0.021992741152644157,
0.026204852387309074,
0.006499424576759338,
-0.010210915468633175,
-0.009097468107938766,
-0.028863314539194107,
0.00637858547270298,
-0.00800128374248743,
-0.012170237489044666,
0.00489398930221796,
-0.0292776208370924,
0.0025289927143603563,
-0.002440521027892828,
-0.010659746825695038,
-0.04163774847984314,
-0.03283374756574631,
0.06463173031806946,
-0.030572326853871346,
0.059591006487607956,
-0.02023194171488285,
0.018816396594047546,
0.024616679176688194,
0.028673425316810608,
-0.04785233736038208,
-0.016226982697844505,
-0.057795681059360504,
0.02292492985725403,
-0.05755400285124779,
0.06884384155273438,
0.042604465037584305,
0.01778063178062439,
-0.030520539730787277,
-0.03569936379790306,
0.010219546966254711,
0.028207331895828247,
-0.02327018417418003,
0.015217112377285957,
-0.03424929454922676,
0.00009791215416043997,
0.005178824532777071,
-0.04294971749186516,
-0.031245574355125427,
0.02359817735850811,
0.028915103524923325,
0.01325779128819704,
-0.0065468973480165005,
-0.04930241033434868,
-0.007155409082770348,
0.05876239761710167,
0.001948532764799893,
0.016477294266223907,
-0.01686570607125759,
0.035802941769361496,
0.05047627538442612,
0.03488801419734955,
-0.010271335020661354,
0.04464146867394447,
0.006154169794172049,
0.02537623979151249,
0.0004968434805050492,
-0.006866258103400469,
0.022061793133616447,
0.029778240248560905,
0.025997698307037354,
-0.0017284327186644077,
-0.01034038607031107,
0.0010789218358695507,
0.02266598865389824,
0.011479727923870087,
-0.06925814598798752,
0.002285156399011612,
0.0238571185618639,
-0.0029562455601990223,
-0.031245574355125427,
-0.00358633603900671,
0.00094621442258358,
-0.03331710398197174,
-0.02775849960744381,
-0.011479727923870087,
0.04743803292512894,
0.016805285587906837,
-0.002481520175933838,
0.05530984699726105,
0.020870663225650787,
-0.10516466200351715,
0.004963040351867676,
0.01480280701071024,
0.00978797860443592,
0.02651558257639408,
0.023097557947039604,
0.0751274824142456,
-0.043916430324316025,
-0.008022862486541271,
0.009805240668356419,
-0.04136154428124428,
-0.026291165500879288,
0.04025673121213913,
0.06166253611445427,
-0.07692280411720276,
0.02768944762647152,
-0.004311371594667435,
-0.004518524277955294,
0.035388633608818054,
0.03887571021914482,
0.027534084394574165,
0.016416873782873154,
-0.043916430324316025,
-0.06628895550966263,
0.015993935987353325,
0.0053039793856441975,
-0.03292006254196167,
-0.07284879684448242,
-0.034939803183078766,
0.034335605800151825,
-0.034076664596796036,
-0.03563031181693077,
-0.03369688615202904,
-0.0708463191986084,
-0.0765775516629219,
-0.02226894535124302,
-0.002600201405584812,
0.022424310445785522,
-0.04053293168544769,
0.011911296285688877,
-0.013102426193654537,
-0.01936880312860012,
-0.020473619922995567,
0.00905431155115366,
0.03060685284435749,
-0.002246315125375986,
-0.006723840720951557,
0.0491643063724041,
-0.026412004604935646,
-0.011781825684010983,
-0.01206666138023138,
0.003862540004774928,
0.03074495494365692,
-0.03345520794391632,
0.013361367397010326,
-0.019610481336712837,
0.012299708090722561,
0.00899389199912548,
-0.049475036561489105,
-0.0028785632457584143,
0.0038949076551944017,
0.051857296377420425,
0.005877966061234474,
-0.031763456761837006,
-0.03231586515903473,
0.022027267143130302,
0.017832418903708458,
-0.06601274758577347,
0.014587022364139557,
0.01784968189895153,
0.031021159142255783,
0.04595343768596649,
-0.026412004604935646,
0.01129846926778555,
-0.09294264018535614,
-0.05051080137491226,
-0.00074769277125597,
-0.0207670871168375,
-0.011937190778553486,
-0.011876771226525307,
-0.04450336471199989,
-0.014552497304975986,
-0.037253011018037796,
0.07961579412221909,
0.05524079501628876,
0.008967997506260872,
0.016485923901200294,
-0.009183782152831554,
0.02544529177248478,
0.01109994761645794,
-0.013758410699665546,
-0.008907577954232693,
-0.03642439842224121,
-0.03424929454922676,
0.021716536954045296,
0.0393935926258564,
-0.03708038479089737,
0.032557543367147446,
-0.014664704911410809,
0.0034331290517002344,
-0.01440576370805502,
-0.011781825684010983,
0.019213439896702766,
0.016900230199098587,
-0.030434224754571915,
-0.0018233777955174446,
-0.0043048979714512825,
0.03773636743426323,
0.024772044271230698,
-0.039566218852996826,
0.027447769418358803,
-0.0229421928524971,
-0.026342954486608505,
-0.04619511589407921,
-0.013861986808478832,
0.024426789954304695,
0.034939803183078766,
-0.018747344613075256,
0.03742563724517822,
0.0585552416741848,
-0.004859463777393103,
0.01797052100300789,
0.02768944762647152,
-0.013542626053094864,
-0.027879338711500168,
0.03278195858001709,
-0.014276293106377125,
-0.021906428039073944,
0.015165324322879314,
0.09839766472578049,
-0.024012483656406403,
-0.06635800749063492,
0.026342954486608505,
-0.030192546546459198,
0.03476717695593834,
0.013931037858128548,
-0.027654923498630524,
0.038047097623348236,
0.039566218852996826,
0.017444007098674774,
-0.050338175147771835,
0.006672052200883627,
-0.0018622189527377486,
-0.03597556799650192,
0.04146512225270271,
-0.04364022985100746,
0.09135446697473526,
-0.06452815234661102,
-0.0016647763550281525,
-0.03474991396069527,
0.035129692405462265,
-0.027723973616957664,
0.019265227019786835,
0.018488403409719467,
0.009028417058289051,
-0.041913952678442,
-0.008890315890312195,
0.037391114979982376,
0.05827903747558594,
-0.0375637412071228,
-0.016062987968325615,
-0.023356499150395393,
0.014820070005953312,
0.006236168090254068,
0.007863181643188,
0.03181524574756622,
0.009995131753385067,
-0.012575912289321423,
-0.003879802767187357,
0.04819759353995323,
0.00244699465110898,
0.05109773576259613,
-0.021302232518792152,
-0.04357117787003517,
0.04212110489606857,
-0.054101452231407166,
-0.03569936379790306,
0.024961933493614197,
-0.024478577077388763,
0.026860836893320084,
0.03614819422364235,
-0.02518635056912899,
0.0030814006458967924,
0.003094347659498453,
-0.009494511410593987,
0.023511864244937897,
0.0242023728787899,
0.0063483756966888905,
-0.010728797875344753,
-0.016339192166924477,
0.05613845959305763,
-0.03217776492238045,
0.036907754838466644,
-0.014621548354625702,
-0.049198832362890244,
-0.013827461749315262,
0.023373762145638466,
0.02670547179877758,
-0.0019183228723704815,
-0.0024340476375073195,
0.05406692996621132,
-0.04111986607313156,
0.009934712201356888,
0.041223444044589996,
0.047161828726530075,
0.023097557947039604,
0.06839501112699509,
-0.03184977173805237,
-0.007077727001160383,
-0.08362075686454773,
0.027931127697229385,
-0.026066750288009644,
-0.0404638834297657,
0.0070432014763355255,
0.05755400285124779,
0.03590651601552963,
-0.007133830804377794,
0.06014341488480568,
0.03866855800151825,
0.001973347971215844,
-0.0647353082895279,
0.06314713507890701,
0.0005151851219125092,
0.06994865834712982,
0.01173003762960434,
-0.005947016645222902,
0.027016201987862587,
-0.0643555298447609,
-0.01325779128819704,
-0.04357117787003517,
0.040360305458307266,
-0.008924840949475765,
0.014103665947914124,
0.07637039572000504,
-0.05002744495868683,
0.01997300051152706,
-0.016969282180070877,
0.010564802214503288,
0.051063209772109985,
-0.04850832372903824,
0.005873650312423706,
0.02682631090283394,
0.03518148139119148,
-0.026273902505636215,
-0.007699185982346535,
0.021008765324950218,
0.003187134861946106,
-0.006253430619835854,
0.05254780501127243,
0.0429842434823513,
0.017677053809165955,
0.06766997277736664
]
|
42,146 | werkzeug.datastructures.headers | clear | Clears all headers. | def clear(self):
"""Clears all headers."""
del self._list[:]
| (self) | [
-0.034199465066194534,
0.05057903006672859,
-0.052421312779188156,
-0.0748971626162529,
-0.028706111013889313,
-0.021956657990813255,
-0.06849941611289978,
0.030900102108716965,
-0.008415881544351578,
0.01270337589085102,
-0.0506795197725296,
-0.05915401875972748,
0.03520434349775314,
0.011874348856508732,
-0.032474417239427567,
0.028940584510564804,
0.018389329314231873,
0.026662852615118027,
0.024736830964684486,
-0.09365494549274445,
-0.00020333146676421165,
-0.010006943717598915,
0.019997140392661095,
0.0327758826315403,
-0.01444516982883215,
-0.00933702290058136,
-0.0007813999545760453,
-0.04920569062232971,
0.057345230132341385,
0.011204427108168602,
-0.03888890892267227,
0.0011912031332030892,
-0.0360417477786541,
0.022274870425462723,
-0.014152079820632935,
-0.010475888848304749,
0.03496987372636795,
-0.04609055817127228,
0.03597475215792656,
0.07369130104780197,
0.028756355866789818,
0.003986029420047998,
0.01818835362792015,
-0.04284144192934036,
0.024334877729415894,
0.05319172143936157,
0.0655517652630806,
0.03352954238653183,
0.024753578007221222,
-0.006707583088427782,
-0.016396313905715942,
0.06035987660288811,
-0.008742468431591988,
0.0019396304851397872,
-0.03617573156952858,
-0.018657298758625984,
0.04776536300778389,
-0.004752251785248518,
0.026193907484412193,
0.03376401588320732,
0.011321663856506348,
-0.01062662061303854,
-0.052454810589551926,
-0.06404443830251694,
0.05426359549164772,
-0.026897326111793518,
0.008507995866239071,
0.03490288183093071,
0.028354402631521225,
-0.03326157480478287,
-0.030447905883193016,
0.01912624202668667,
-0.026629356667399406,
0.04532014951109886,
0.0006453222595155239,
-0.020265107974410057,
-0.014914114959537983,
0.010701986961066723,
-0.026361389085650444,
-0.09445884823799133,
0.032859623432159424,
0.039391350001096725,
-0.03778354078531265,
0.04106615483760834,
0.010057187639176846,
-0.01740119606256485,
0.06849941611289978,
0.036879148334264755,
-0.013842240907251835,
0.020198116078972816,
0.008298645727336407,
0.007013234775513411,
-0.039156876504421234,
-0.05386164411902428,
0.021069012582302094,
-0.0013189067831262946,
-0.029309039935469627,
-0.01354915089905262,
-0.04903821274638176,
-0.019896650686860085,
-0.009571495465934277,
0.0015429116319864988,
0.014286063611507416,
0.02961050532758236,
-0.03711361810564995,
-0.0013911327114328742,
0.03597475215792656,
-0.06411143392324448,
-0.001496854587458074,
0.0791846513748169,
-0.03331181779503822,
-0.022442352026700974,
0.01609485037624836,
-0.010509384796023369,
0.09660259634256363,
-0.022861052304506302,
-0.018305588513612747,
-0.0070927878841757774,
0.011296541430056095,
0.0030439533293247223,
0.03411572426557541,
-0.008231653831899166,
-0.03473540022969246,
-0.05185187980532646,
0.047028448432683945,
-0.0031716569792479277,
0.006535916123539209,
-0.00407395651564002,
0.05590490251779556,
-0.015316067263484001,
-0.03667817264795303,
0.018690794706344604,
-0.01021629385650158,
0.0012079512234777212,
0.016597291454672813,
-0.03450092673301697,
0.010417270474135876,
-0.06501582264900208,
0.01652192510664463,
-0.000678818323649466,
-0.0385204516351223,
-0.0040907044894993305,
0.025507239624857903,
0.023748697713017464,
0.06196768581867218,
0.013750127516686916,
0.018322337418794632,
-0.04096566513180733,
-0.07831375300884247,
0.01358264684677124,
-0.05151692032814026,
-0.011807356029748917,
0.002598037011921406,
-0.06772900372743607,
-0.03979330137372017,
0.02915830910205841,
-0.053727660328149796,
-0.0044633480720222,
-0.06715957075357437,
0.012435407377779484,
0.019595187157392502,
0.012301422655582428,
0.021621698513627052,
-0.01516533549875021,
-0.04796633869409561,
0.0005725730443373322,
0.005049529019743204,
-0.04555462300777435,
-0.06367598474025726,
-0.02086803689599037,
-0.025390002876520157,
-0.029694246128201485,
-0.013867363333702087,
0.0023237881250679493,
0.007314699236303568,
0.020064132288098335,
-0.039324358105659485,
0.02465309016406536,
-0.010425644926726818,
-0.026227405294775963,
-0.00798043329268694,
-0.04150160029530525,
-0.029342535883188248,
-0.007289577275514603,
0.0011074630310758948,
0.018456321209669113,
-0.003667816985398531,
-0.01952819526195526,
0.017652416601777077,
0.008692224510014057,
-0.03205571696162224,
-0.0025017359293997288,
-0.022911295294761658,
0.0063349399715662,
0.045889582484960556,
-0.025155531242489815,
0.004990911111235619,
-0.021470965817570686,
0.02565797232091427,
-0.04491819813847542,
-0.04769837111234665,
-0.014989480376243591,
0.03260840103030205,
-0.04632503166794777,
0.010768978856503963,
0.030682379379868507,
0.018556809052824974,
-0.06886786967515945,
-0.05449806898832321,
0.07811278104782104,
0.02366495691239834,
0.006305630784481764,
0.01217581331729889,
-0.030179938301444054,
0.01602785848081112,
-0.06411143392324448,
-0.0770409032702446,
-0.02696431800723076,
0.028354402631521225,
-0.0051667653024196625,
-0.004748064558953047,
-0.0017470282036811113,
-0.03758256509900093,
-0.05027756467461586,
0.0028785665053874254,
0.036912642419338226,
-0.016505176201462746,
-0.000011407954843889456,
-0.013716630637645721,
-0.05928800255060196,
0.04481770843267441,
0.007348195184022188,
0.0021981780882924795,
0.009604991413652897,
-0.011698494665324688,
-0.02500479854643345,
-0.046961456537246704,
0.003290986642241478,
-0.06598721444606781,
-0.030447905883193016,
-0.03758256509900093,
0.010467514395713806,
0.031000591814517975,
0.020030636340379715,
-0.025256019085645676,
0.0385204516351223,
-0.011891096830368042,
0.04421478137373924,
-0.0010315735125914216,
-0.000321876083035022,
-0.04012826457619667,
-0.04123363271355629,
0.038051508367061615,
-0.0388554148375988,
0.03269214183092117,
-0.057345230132341385,
-0.03644369915127754,
-0.018657298758625984,
-0.04615755379199982,
-0.011229549534618855,
0.01854006201028824,
-0.051148463040590286,
0.02651211991906166,
0.034132473170757294,
0.08119441568851471,
0.05017707869410515,
0.03260840103030205,
0.07596903294324875,
-0.0005877509247511625,
0.01100345142185688,
0.05915401875972748,
-0.05459855496883392,
0.002168868901208043,
-0.04176957160234451,
0.009177916683256626,
0.06709258258342743,
-0.023564469069242477,
-0.01946120336651802,
-0.03718061000108719,
0.06287208199501038,
0.09238209575414658,
-0.03959232568740845,
0.009931577369570732,
0.017451440915465355,
0.02148771472275257,
0.05309123545885086,
-0.005522660445421934,
-0.01390923373401165,
-0.04247298836708069,
0.019410958513617516,
0.00964686181396246,
0.029911968857049942,
-0.005769694223999977,
0.003196778940036893,
0.04615755379199982,
-0.002761330222710967,
0.0007206883747130632,
0.0003763071435969323,
0.014068339951336384,
0.043276891112327576,
-0.03731459751725197,
-0.00899368803948164,
0.006900185719132423,
-0.027868710458278656,
-0.005095586180686951,
-0.03878842294216156,
-0.012753619812428951,
0.06330753117799759,
0.029074568301439285,
-0.016898754984140396,
0.020817792043089867,
0.026713097468018532,
-0.035338327288627625,
0.01818835362792015,
0.08595085889101028,
0.011815730482339859,
-0.02765098586678505,
0.04528665542602539,
-0.010651743039488792,
0.04253998026251793,
-0.040697697550058365,
-0.04351136460900307,
0.01091971155256033,
-0.02589244395494461,
-0.0016057167667895555,
-0.06608770042657852,
-0.015793386846780777,
0.03470190241932869,
-0.044449254870414734,
0.023916177451610565,
0.0071011618711054325,
-0.027014560997486115,
0.021002020686864853,
-0.00004795430140802637,
0.004509405232965946,
0.0009954606648534536,
-0.002551980083808303,
0.021202998235821724,
0.020265107974410057,
-0.016932250931859016,
-0.0462915375828743,
0.013130450621247292,
0.029392780736088753,
-0.0013450756669044495,
-0.04253998026251793,
-0.036644674837589264,
0.005778068210929632,
0.02661260962486267,
0.026495372876524925,
-0.010425644926726818,
0.07864871621131897,
0.02204039879143238,
0.09593267738819122,
0.045722104609012604,
0.1289597749710083,
-0.016413062810897827,
-0.033579785376787186,
0.04639202356338501,
0.011773860082030296,
0.00682481937110424,
0.0664561539888382,
0.03450092673301697,
-0.06029288470745087,
-0.03260840103030205,
0.026009680703282356,
-0.03868793323636055,
-0.01874103769659996,
0.0159943625330925,
-0.005083024967461824,
-0.024703335016965866,
-0.04103265702724457,
-0.08079246431589127,
-0.026746593415737152,
-0.018456321209669113,
0.02595943585038185,
0.006422867067158222,
0.009395641274750233,
0.07784481346607208,
-0.048435281962156296,
-0.014085087925195694,
0.01658891700208187,
0.00677457544952631,
0.018791282549500465,
-0.026361389085650444,
-0.06592021882534027,
-0.010944833047688007,
-0.015785012394189835,
0.015391433611512184,
-0.02957700937986374,
0.05459855496883392,
0.03466840833425522,
-0.05309123545885086,
-0.040597207844257355,
-0.00930352695286274,
0.002811574377119541,
0.05513449385762215,
0.009772471152245998,
0.005057903006672859,
-0.06156573444604874,
-0.035505808889865875,
0.08132839947938919,
-0.031034087762236595,
-0.024117153137922287,
0.057546209543943405,
0.013113702647387981,
-0.02696431800723076,
0.015140213072299957,
-0.044482748955488205,
0.04079818353056908,
-0.017183471471071243,
0.08374011516571045,
0.008734093979001045,
0.013817119412124157,
0.008884826675057411,
0.040697697550058365,
0.03992728888988495,
0.019695675000548363,
-0.007603602483868599,
0.0872906967997551,
0.07215048372745514,
-0.01358264684677124,
0.03363003209233284,
-0.012912726029753685,
0.08394109457731247,
-0.0009028231143020093,
-0.017819896340370178,
-0.041970547288656235,
-0.007712464779615402,
-0.010551254265010357,
-0.03986029699444771,
-0.006661526393145323,
-0.02589244395494461,
-0.05272277817130089,
0.008248401805758476,
-0.04515267163515091,
0.04743040353059769,
-0.04548763111233711,
0.0026524681597948074,
-0.02716529369354248,
0.04401380568742752,
0.01194971427321434,
-0.012678253464400768,
-0.007905066944658756,
-0.043209899216890335,
0.017451440915465355,
0.024904310703277588,
-0.0010666397865861654,
0.032792627811431885,
0.00090596335940063,
0.0262441523373127,
0.0029644002206623554,
0.028639119118452072,
-0.008382385596632957,
-0.07335634529590607,
-0.019662179052829742,
-0.03651069104671478,
0.01919323392212391,
0.029376033693552017,
-0.0298449769616127,
-0.016530299559235573,
0.03274238482117653,
0.08347214758396149,
0.014554032124578953,
-0.051181960850954056,
0.010852718725800514,
0.01690712943673134,
0.005698515102267265,
0.004609893541783094,
-0.01234329305589199,
-0.0010498916963115335,
-0.040664199739694595,
-0.06592021882534027,
-0.049105204641819,
-0.03386450186371803,
-0.016237208619713783,
0.01095320750027895,
0.030280426144599915,
0.03339555859565735,
-0.01148914359509945,
-0.021990153938531876,
0.02899082750082016,
-0.039190374314785004,
-0.002160494914278388,
-0.031519778072834015,
0.045688606798648834,
0.0245526023209095,
0.022542839869856834,
-0.04253998026251793,
-0.0020746614318341017,
-0.058953043073415756,
-0.005300749558955431,
-0.06709258258342743,
-0.05644083768129349,
-0.04679397866129875,
0.07322235405445099,
-0.0032344618812203407,
-0.010258164256811142,
0.006079532206058502,
-0.02899082750082016,
-0.049875613301992416,
0.04163558408617973,
-0.03614223375916481,
-0.04558812081813812,
0.0004974686307832599,
0.02314576879143715,
-0.015089969150722027,
0.06880088150501251,
-0.039391350001096725,
-0.059924427419900894,
-0.052153345197439194,
-0.04659299924969673,
0.022877799347043037,
-0.021437469869852066,
0.02696431800723076,
0.002612691605463624,
0.0089266961440444,
-0.11294867098331451,
-0.00618002051487565,
0.034065477550029755,
0.039424847811460495,
-0.020064132288098335,
0.03349604830145836,
-0.039391350001096725,
-0.005129082128405571,
-0.05131594464182854,
0.03972630947828293,
-0.06367598474025726,
0.010006943717598915,
0.08152937889099121,
0.03105083480477333,
-0.004915544763207436,
-0.002761330222710967,
-0.005945548415184021,
-0.01019954588264227,
0.014294438064098358,
0.014629398472607136,
-0.02723228558897972,
-0.11020199209451675,
0.021722186356782913,
0.016697779297828674,
0.00487367482855916,
0.00043257002835161984,
0.04032924026250839,
-0.023748697713017464,
-0.040831681340932846,
0.02451910637319088,
-0.013850615359842777,
-0.002252609236165881,
-0.01736770011484623,
0.04341087490320206,
-0.04937317222356796,
-0.07476317882537842,
0.03366352617740631,
-0.03758256509900093,
-0.024050161242485046,
0.006142337340861559,
0.025875695049762726,
-0.010408896021544933,
0.055000510066747665,
-0.017752904444932938,
0.006037662271410227,
0.019310470670461655,
0.02039909176528454,
0.019142990931868553,
0.03207246586680412,
0.043343883007764816,
-0.003466840833425522,
0.026763340458273888,
0.02537325583398342,
-0.0030523273162543774,
-0.03225669264793396,
0.016898754984140396,
0.03758256509900093,
-0.0040258062072098255,
0.0007096974877640605,
0.006138150580227375,
-0.0031276934314519167,
0.039558831602334976,
0.011170931160449982,
-0.056206364184617996,
0.008893200196325779,
-0.015123465098440647,
-0.001350309350527823,
-0.10557954013347626,
-0.0037745856679975986,
-0.017669163644313812,
-0.013515654951334,
-0.023095523938536644,
0.004785747732967138,
0.007783643901348114,
-0.026210656389594078,
-0.005635709967464209,
0.03450092673301697,
-0.03346255049109459,
-0.035271335393190384,
0.053526680916547775,
0.03825248405337334,
-0.05325871333479881,
-0.08662077784538269,
0.05309123545885086,
0.0727534145116806,
0.023497477173805237,
0.008851330727338791,
0.04170257970690727,
0.025423498824238777,
0.03131880238652229,
-0.02266007475554943,
0.028170175850391388,
0.04398030787706375,
-0.013163946568965912,
-0.00897694006562233,
-0.0027571432292461395,
-0.0022714505903422832,
-0.011095565743744373,
0.011371907778084278,
-0.024803822860121727,
0.02853863127529621,
-0.05660831928253174,
0.01349890697747469,
0.00043492522672750056,
-0.017769653350114822,
-0.03202221915125847,
-0.04173607379198074,
0.03376401588320732,
-0.022224627435207367,
0.025607727468013763,
-0.02066706120967865,
0.03574028238654137,
-0.002646187786012888,
0.05831661820411682,
0.015022977255284786,
-0.09432486444711685,
-0.0278184674680233,
0.06652314960956573,
0.008281897753477097,
0.03855394944548607,
-0.057546209543943405,
0.009973447769880295,
0.02627764828503132,
0.0005856574280187488,
0.08588386327028275,
-0.032725635915994644,
0.03972630947828293,
-0.0062637608498334885,
-0.049909111112356186,
0.002411715453490615,
-0.02974448911845684,
-0.06297256797552109,
0.034031983464956284,
-0.019059250131249428,
-0.05429708957672119,
0.04173607379198074,
0.01704111322760582,
-0.003745276713743806,
-0.012544269673526287,
-0.018925266340374947,
-0.03624272346496582,
-0.034165967255830765,
0.015860378742218018,
-0.02125324122607708,
0.006431241054087877,
-0.019276974722743034,
0.06813095510005951,
-0.018171604722738266,
0.05513449385762215,
-0.03895590081810951,
0.007762708701193333,
0.06190069392323494,
-0.04156859219074249,
0.024602845311164856,
-0.017082983627915382,
0.013230938464403152,
-0.006900185719132423,
-0.0023551906924694777,
-0.00978084560483694,
0.04923918843269348,
0.005740385036915541,
-0.0021730561275035143,
0.022341862320899963,
0.03986029699444771,
0.011824104003608227,
0.03125181049108505,
0.004379608202725649,
-0.04220501706004143,
0.02301178313791752,
0.03332856670022011,
-0.053560178726911545,
-0.009311900474131107,
-0.04605706408619881,
-0.025490490719676018,
-0.012812238186597824,
-0.060125403106212616,
0.034199465066194534,
0.02585894800722599,
-0.02589244395494461,
0.049607645720243454,
0.039190374314785004,
-0.08561589568853378,
0.03049815073609352,
0.023983169347047806,
-0.004092798102647066,
0.01645493321120739,
-0.006121402606368065,
0.018238596618175507,
0.02018136717379093,
0.04253998026251793,
0.02070055715739727,
0.036611177027225494,
-0.05707726255059242,
0.014955984428524971,
0.05031106248497963,
0.0692698210477829,
-0.02961050532758236,
0.06826494634151459,
0.06447988748550415,
0.017099732533097267,
-0.005103960167616606,
-0.04424827918410301,
0.010978328995406628,
0.035673290491104126,
0.058852553367614746,
0.040530215948820114,
0.026294397190213203,
0.036946140229701996,
0.042071033269166946,
0.005694327875971794,
-0.07623700052499771,
-0.017484936863183975,
-0.026126915588974953,
0.03125181049108505,
0.003345417557284236,
-0.0001212269053212367,
0.00276761082932353,
0.03855394944548607,
0.02716529369354248,
-0.01364963874220848,
0.06414493173360825,
0.04763137921690941,
0.026713097468018532,
0.023363491520285606,
-0.0577806793153286,
-0.013004840351641178,
0.008826208300888538,
0.030414409935474396,
-0.019762666895985603,
-0.00548497773706913,
0.0298449769616127,
0.036644674837589264,
0.0011346786050125957,
0.05955597013235092,
-0.017585424706339836,
-0.03841996565461159,
-0.021269990131258965,
0.020985273644328117,
0.0304646547883749,
0.01023304183036089,
-0.05178488790988922,
-0.009278404526412487,
-0.021169502288103104,
0.016639161854982376,
0.006142337340861559,
-0.0008023349801078439,
-0.018037620931863785,
0.04096566513180733,
0.042037539184093475,
0.03290986642241478,
0.04766487330198288,
-0.004199566785246134
]
|
42,147 | werkzeug.datastructures.headers | copy | null | def copy(self):
return self.__class__(self._list)
| (self) | [
0.006965501233935356,
-0.00916022714227438,
-0.01996438018977642,
-0.012134547345340252,
-0.09056846052408218,
0.021303247660398483,
0.01801539584994316,
0.02096429467201233,
0.0648757666349411,
0.02399793080985546,
-0.03565794229507446,
-0.025489328429102898,
-0.03053973987698555,
0.03942032903432846,
-0.0035717259161174297,
0.01315988227725029,
0.005596975330263376,
0.007092609070241451,
-0.0021110468078404665,
0.004847039934247732,
0.00017000653315335512,
-0.025963863357901573,
0.03375980257987976,
0.045250337570905685,
-0.004139473661780357,
0.002313359873369336,
0.004215738270431757,
-0.006906184367835522,
0.004190316889435053,
0.005855427589267492,
0.025167321786284447,
-0.02625197358429432,
-0.03330221399664879,
0.005541895050555468,
0.04162352904677391,
0.0071095568127930164,
-0.0717904195189476,
0.016795162111520767,
0.007787464186549187,
-0.0009416561224497855,
0.03143796697258949,
-0.06382500380277634,
-0.003001859877258539,
0.010431304574012756,
0.05592738091945648,
0.05202941223978996,
0.022591272369027138,
0.03162439167499542,
0.026167236268520355,
-0.03925085440278053,
0.012312497943639755,
0.06240139901638031,
-0.03053973987698555,
0.014761439524590969,
-0.03470887243747711,
0.04545370861887932,
0.0516226701438427,
0.035929106175899506,
-0.014032688923180103,
0.06853646785020828,
-0.025794386863708496,
-0.01724427565932274,
0.02481142058968544,
-0.09924568235874176,
0.03247177600860596,
-0.028370436280965805,
-0.07233274728059769,
-0.01049062144011259,
0.04396231099963188,
0.02015080489218235,
-0.012126073241233826,
-0.002709512133151293,
0.013541205786168575,
0.013693735003471375,
0.003434025915339589,
0.020049119368195534,
0.02486226335167885,
0.008838221430778503,
0.01042283046990633,
-0.04857208579778671,
-0.03223450854420662,
0.040640562772750854,
-0.049588944762945175,
0.06514692306518555,
-0.01894751936197281,
0.013422572053968906,
0.00045997093548066914,
-0.02594691514968872,
-0.03823399171233177,
-0.0011450283927842975,
-0.014312325976788998,
0.06331657618284225,
-0.06097779422998428,
0.018032344058156013,
0.0026671430096030235,
-0.02348950132727623,
-0.04684342071413994,
-0.04206417128443718,
0.004207264631986618,
0.039318643510341644,
-0.032387036830186844,
0.046063825488090515,
-0.0616895966231823,
-0.00497414730489254,
0.016201993450522423,
0.028048429638147354,
0.014244535006582737,
-0.021065980195999146,
-0.04043719172477722,
0.03187860921025276,
-0.0009119976311922073,
0.12222675234079361,
-0.0182526633143425,
0.03206503391265869,
0.0005134621169418097,
-0.015049549750983715,
-0.021371038630604744,
-0.029692355543375015,
0.039318643510341644,
0.0076264613308012486,
-0.0011736276792362332,
0.01499023288488388,
-0.02450636215507984,
0.029607616364955902,
-0.01776118017733097,
0.0579272098839283,
0.006079984363168478,
-0.052300576120615005,
0.02003217115998268,
-0.041081205010414124,
-0.022828539833426476,
-0.01757475547492504,
-0.02915002964437008,
0.04670783877372742,
0.03131933510303497,
-0.0340309664607048,
-0.048707664012908936,
0.0014543237630277872,
-0.025607962161302567,
0.019930485635995865,
0.0078679658472538,
0.005058886017650366,
0.12127768248319626,
0.07782380282878876,
-0.0409456230700016,
-0.04118289053440094,
-0.020438916981220245,
0.08704334497451782,
-0.017303593456745148,
0.04572487249970436,
-0.011083790101110935,
0.04935167729854584,
0.04616551101207733,
0.020743975415825844,
-0.05341912433505058,
0.016074884682893753,
-0.06704507023096085,
-0.03292936459183693,
0.002929832087829709,
-0.011066842824220657,
-0.02921782061457634,
0.009405968710780144,
0.011439692229032516,
-0.02191336452960968,
-0.016668055206537247,
-0.012761611491441727,
0.037556085735559464,
-0.07273948937654495,
-0.047894176095724106,
0.014736018143594265,
-0.0001992677862290293,
-0.04579266160726547,
0.03508172184228897,
0.03481055796146393,
-0.06036767736077309,
0.04938557371497154,
-0.01655789464712143,
0.024777526035904884,
0.013176830485463142,
-0.0044064000248909,
-0.020421968773007393,
-0.03420044109225273,
-0.008990750648081303,
-0.00631301524117589,
0.04664004594087601,
0.012702294625341892,
-0.0012604845687747002,
0.046131618320941925,
0.050165168941020966,
0.05491052195429802,
0.003599266055971384,
0.022523481398820877,
0.049080513417720795,
-0.046945106238126755,
-0.06535030156373978,
-0.04182690382003784,
-0.0831114798784256,
-0.020066067576408386,
-0.049961794167757034,
0.08284031599760056,
-0.05074138939380646,
-0.03406485915184021,
0.04413178935647011,
-0.029692355543375015,
0.015456294640898705,
0.014515697956085205,
-0.04067445918917656,
-0.020116910338401794,
0.026794301345944405,
0.011668485589325428,
0.025607962161302567,
0.016888374462723732,
0.028946656733751297,
-0.028099272400140762,
0.027539998292922974,
-0.06284204125404358,
-0.06070663034915924,
-0.07172263413667679,
0.0529106929898262,
-0.009626288898289204,
0.03065837360918522,
-0.017049377784132957,
-0.11219371855258942,
-0.0026226553600281477,
-0.05467325448989868,
0.004520796705037355,
-0.02870938926935196,
-0.055520638823509216,
-0.03691207244992256,
-0.027489155530929565,
0.031827766448259354,
-0.04836871102452278,
0.00721124280244112,
-0.04728405922651291,
0.021049033850431442,
0.0061647226102650166,
-0.036674804985523224,
0.001418309984728694,
-0.0321158766746521,
0.03477666154503822,
-0.038878004997968674,
0.0033492876682430506,
0.08494182676076889,
0.05345302075147629,
0.037115443497896194,
0.028929710388183594,
-0.030336368829011917,
0.017964553087949753,
0.044674113392829895,
0.008215393871068954,
0.01813402958214283,
0.0055249473080039024,
-0.0390474796295166,
0.01331241149455309,
0.027099359780550003,
0.015473242849111557,
-0.01604946330189705,
-0.06101169064640999,
-0.017405278980731964,
-0.011007525958120823,
0.014253009110689163,
-0.012312497943639755,
0.079382985830307,
-0.03752218931913376,
-0.06812971830368042,
0.02462499588727951,
-0.030878694728016853,
0.03758997842669487,
-0.046945106238126755,
0.05616464838385582,
0.08473845571279526,
0.02909918688237667,
0.009304282255470753,
0.04040329530835152,
-0.04836871102452278,
-0.03514951094985008,
-0.03918306156992912,
0.011405796743929386,
-0.04223364591598511,
-0.02304886095225811,
0.037318818271160126,
0.05080917850136757,
-0.0049148304387927055,
-0.04050498455762863,
-0.02140493504703045,
0.0007033292204141617,
0.026980724185705185,
0.03172607719898224,
-0.02059144526720047,
-0.019761009141802788,
0.01042283046990633,
0.01984574645757675,
0.049216095358133316,
-0.05799499899148941,
0.04938557371497154,
0.019625427201390266,
-0.07972194254398346,
0.03501392900943756,
0.001547536114230752,
0.047758594155311584,
-0.00016113546735141426,
-0.031336281448602676,
-0.02001522295176983,
0.06941774487495422,
-0.02121851034462452,
-0.019727112725377083,
-0.0137022091075778,
0.029065290465950966,
0.01706632599234581,
0.017778128385543823,
0.027184097096323967,
0.011634590104222298,
-0.039386436343193054,
0.0698922798037529,
0.008096759207546711,
-0.03318357840180397,
-0.006156248971819878,
0.017227329313755035,
0.0038428890984505415,
0.051859937608242035,
-0.08284031599760056,
-0.03884410858154297,
-0.01624436303973198,
0.004813144449144602,
0.03311578929424286,
0.021082928404211998,
-0.017608651891350746,
0.028167063370347023,
-0.004355556797236204,
0.02430298924446106,
-0.004152184352278709,
0.01255823951214552,
0.0018430614145472646,
0.04680952429771423,
0.0023154783993959427,
0.00047506496775895357,
0.017812024801969528,
-0.019184786826372147,
-0.015778301283717155,
-0.0655197724699974,
-0.012354867532849312,
0.033844541758298874,
-0.0030548213981091976,
-0.02311665192246437,
-0.03413265198469162,
0.0023493736516684294,
-0.018862780183553696,
0.06246919184923172,
-0.025235112756490707,
-0.05535116046667099,
0.02713325433433056,
-0.01769338920712471,
0.01984574645757675,
0.05189383029937744,
0.05596127733588219,
-0.002332426141947508,
-0.04636888578534126,
0.028607703745365143,
-0.033776748925447464,
-0.038945794105529785,
0.04453853517770767,
-0.010227931663393974,
-0.0033747090492397547,
-0.05630023032426834,
0.05202941223978996,
0.026658719405531883,
-0.05433429777622223,
-0.05250394716858864,
-0.07972194254398346,
-0.05735098943114281,
-0.038505155593156815,
-0.004099222831428051,
-0.02272685430943966,
-0.03609858453273773,
0.012524344027042389,
-0.03986097127199173,
-0.07233274728059769,
0.01416826993227005,
-0.048334818333387375,
0.05026685446500778,
0.03986097127199173,
-0.01499023288488388,
-0.008745009079575539,
0.016193518415093422,
0.04453853517770767,
0.003408604534342885,
0.012990405783057213,
-0.008906012400984764,
0.0579272098839283,
0.015642719343304634,
-0.042538706213235855,
-0.04179300740361214,
-0.0466061532497406,
0.027760319411754608,
-0.03333611041307449,
0.0094483382999897,
-0.001741375308483839,
0.029641512781381607,
-0.02437078021466732,
-0.02216758020222187,
0.039894867688417435,
-0.01168543379753828,
0.013041248545050621,
0.021896418184041977,
-0.02838738262653351,
-0.02555711939930916,
0.030861746519804,
0.04494527727365494,
0.002838738262653351,
-0.04741964116692543,
0.02254042960703373,
-0.016574842855334282,
0.00893990695476532,
-0.021947260946035385,
0.013592048548161983,
-0.007037528790533543,
0.030200786888599396,
-0.03323442488908768,
0.03572573512792587,
0.011388848535716534,
0.010914313606917858,
0.025845229625701904,
-0.01199896540492773,
-0.0051605720072984695,
-0.005821532104164362,
-0.03248872607946396,
-0.035420674830675125,
0.0667400062084198,
-0.031149856746196747,
-0.02664177119731903,
0.011575273238122463,
-0.004923304542899132,
-0.003088716883212328,
0.00019714931841008365,
0.04243702068924904,
-0.021998103708028793,
0.01454111933708191,
-0.04233533516526222,
0.012329445220530033,
0.06318099796772003,
0.026489242911338806,
-0.02933645434677601,
0.02708241157233715,
-0.04538591951131821,
0.007762042805552483,
-0.014617384411394596,
-0.059825349599123,
0.0005322634242475033,
0.011914227157831192,
-0.04630109295248985,
0.03826788812875748,
0.03613247722387314,
0.06158791109919548,
-0.017227329313755035,
-0.022642115131020546,
-0.00016616682114545256,
-0.030505845323204994,
-0.05640191584825516,
0.004321661312133074,
-0.00573255680501461,
0.027167148888111115,
0.006393516436219215,
0.06921437382698059,
-0.022387901321053505,
-0.0058723753318190575,
-0.02298106998205185,
-0.015125814825296402,
0.018032344058156013,
0.0013229792239144444,
0.02872633747756481,
0.06341826170682907,
-0.037996724247932434,
-0.023336971178650856,
-0.10188952088356018,
0.014032688923180103,
0.033081892877817154,
0.004711458459496498,
-0.03318357840180397,
-0.020811764523386955,
-0.012617556378245354,
-0.030861746519804,
-0.04125067964196205,
0.03318357840180397,
0.011227846145629883,
-0.06087610870599747,
0.011634590104222298,
0.022455692291259766,
-0.004126762971282005,
0.01813402958214283,
0.03860684111714363,
-0.02291327901184559,
0.030827851966023445,
-0.08270473778247833,
0.01042283046990633,
0.0027179860044270754,
0.0050122798420488834,
-0.014303851872682571,
0.004283529240638018,
0.03165828809142113,
-0.028556860983371735,
0.016413839533925056,
-0.020625339820981026,
0.014439432881772518,
0.04260649532079697,
0.0039106798358261585,
0.003705189097672701,
-0.005495288874953985,
-0.00743156298995018,
-0.04497917369008064,
-0.029133081436157227,
0.012329445220530033,
0.0031437966972589493,
-0.03877631947398186,
-0.008024731650948524,
0.0026798537001013756,
-0.03518340736627579,
-0.07945077866315842,
-0.006588415242731571,
0.009897451847791672,
-0.03362422063946724,
0.04264039173722267,
0.06585872918367386,
-0.02965846098959446,
-0.0585712231695652,
-0.037691667675971985,
-0.021116822957992554,
-0.0005449742311611772,
0.01199896540492773,
0.042165856808423996,
0.01676126755774021,
-0.008605190552771091,
-0.03853905200958252,
-0.02386234886944294,
0.01982880011200905,
0.021133771166205406,
0.04399620741605759,
-0.026099445298314095,
-0.01575287990272045,
0.019320368766784668,
0.007308692205697298,
-0.010473673231899738,
0.005618159659206867,
0.03640364110469818,
-0.04419957846403122,
-0.04830092191696167,
0.03438686579465866,
-0.05202941223978996,
-0.005546132102608681,
-0.05124982073903084,
0.01593082956969738,
0.017286645248532295,
-0.05131760984659195,
-0.0033577613066881895,
0.0020919807720929384,
0.02191336452960968,
0.001063467701897025,
-0.003828059881925583,
-0.012083704583346844,
0.027065463364124298,
0.002073973650112748,
0.04582655802369118,
-0.013320885598659515,
0.016634158790111542,
-0.009355125948786736,
0.002929832087829709,
0.029183924198150635,
-0.019930485635995865,
0.0850096195936203,
-0.013922528363764286,
-0.02520121820271015,
0.03470887243747711,
0.00039615228888578713,
0.012948036193847656,
0.02191336452960968,
0.039013586938381195,
0.03237009048461914,
0.05108034238219261,
0.009295809082686901,
-0.0013674668734893203,
-0.04508085921406746,
-0.0023091230541467667,
0.016574842855334282,
0.008173024281859398,
-0.03833567723631859,
-0.04779249057173729,
-0.0076349349692463875,
-0.015083445236086845,
-0.003224298357963562,
0.014312325976788998,
-0.03928475081920624,
0.04457242786884308,
0.07321402430534363,
-0.0038577183149755,
0.008719587698578835,
-0.019100047647953033,
-0.039081376045942307,
-0.037488292902708054,
-0.03155660256743431,
-0.04057277366518974,
0.059350814670324326,
0.053486913442611694,
0.05270732194185257,
0.0396576002240181,
0.004630956798791885,
0.024065721780061722,
-0.02001522295176983,
-0.03250567242503166,
-0.05616464838385582,
0.04633498936891556,
0.014125901274383068,
-0.0013780591543763876,
0.010033033788204193,
0.010507568717002869,
-0.0862976461648941,
0.0037496767472475767,
-0.023777611553668976,
-0.04836871102452278,
0.043928418308496475,
-0.020947346463799477,
0.012744664214551449,
-0.0017657376592978835,
0.014583488926291466,
-0.000005072722160548437,
0.033776748925447464,
-0.04664004594087601,
-0.05762215331196785,
-0.005469867493957281,
0.017210381105542183,
0.02374371513724327,
0.04043719172477722,
0.043555568903684616,
-0.060740526765584946,
0.016413839533925056,
-0.002720104530453682,
0.0024468230549246073,
0.01838824525475502,
0.0015613060677424073,
0.0017773892031982541,
0.013041248545050621,
0.05392755568027496,
0.0295906700193882,
-0.025726595893502235,
-0.014558067545294762,
-0.005630870349705219,
-0.09172090888023376,
-0.08887369185686111,
0.0011513838544487953,
-0.038945794105529785,
-0.017795076593756676,
-0.015795249491930008,
-0.053181856870651245,
0.05616464838385582,
0.0002471979823894799,
0.06934995204210281,
-0.028607703745365143,
-0.0027921320870518684,
0.009550023823976517,
0.01554950699210167,
0.018100135028362274,
-0.01517665758728981,
-0.0012096414575353265,
0.04433516040444374,
0.012041334994137287,
-0.04670783877372742,
0.08575531840324402,
0.026082497090101242,
0.00609269505366683,
0.03477666154503822,
0.015786774456501007,
0.04579266160726547,
-0.05830005928874016,
-0.036437537521123886,
-0.08853474259376526,
0.032590411603450775,
-0.03445465862751007,
-0.026675665751099586,
0.007948467507958412,
0.003359879832714796,
0.009685605764389038,
-0.02260822057723999,
0.004080156795680523,
0.0020263083279132843,
-0.001867423765361309,
-0.014227586798369884,
-0.027794213965535164,
0.09965242445468903,
-0.02513342723250389,
-0.002429875312373042,
-0.015024128369987011,
-0.03406485915184021,
-0.004321661312133074,
-0.010973630473017693,
0.0014447907451540232,
0.014973285607993603,
-0.005198704544454813,
0.08955160528421402,
-0.03260735794901848,
-0.10873638838529587,
0.01420216541737318,
0.01199896540492773,
0.014583488926291466,
0.009990664198994637,
0.011134633794426918,
0.029421193525195122,
0.04901272431015968,
-0.006779076531529427,
-0.037556085735559464,
0.04874156042933464,
-0.01394794974476099,
-0.012515869922935963,
0.043860625475645065,
0.05596127733588219,
0.041081205010414124,
0.025828281417489052,
0.03181081637740135,
-0.03942032903432846,
0.04884324595332146,
-0.040267717093229294,
-0.021421881392598152,
-0.0008892241748981178,
0.019066153094172478,
-0.03687817603349686,
0.06704507023096085,
0.0365392230451107,
0.029065290465950966,
0.057723838835954666,
0.022845488041639328,
-0.04674173519015312,
-0.03514951094985008,
-0.022303162142634392,
0.02569270133972168,
0.03484445437788963,
0.0320989266037941,
0.013049722649157047,
0.03942032903432846,
-0.04223364591598511,
-0.000055477208661613986,
0.06474018096923828,
-0.01959153078496456,
0.05124982073903084,
-0.010244879871606827,
-0.03470887243747711,
0.017278172075748444,
0.09016171842813492,
-0.14303851127624512,
-0.04636888578534126,
0.030319420620799065,
-0.017778128385543823,
-0.003948812372982502,
-0.029878780245780945,
0.0007674126536585391,
0.0085035040974617,
0.006478255148977041,
0.045928243547677994,
0.031590498983860016,
-0.028760232031345367,
0.004775011911988258,
-0.019201735034585,
-0.012075230479240417,
-0.0573170930147171,
-0.0009220603387802839,
-0.011736276559531689,
0.005440209060907364,
0.056198544800281525,
-0.004427584353834391,
0.04772469773888588,
0.05219889059662819,
0.0015221145004034042
]
|
42,148 | werkzeug.datastructures.headers | extend | Extend headers in this object with items from another object
containing header items as well as keyword arguments.
To replace existing keys instead of extending, use
:meth:`update` instead.
If provided, the first argument can be another :class:`Headers`
object, a :class:`MultiDict`, :class:`dict`, or iterable of
pairs.
.. versionchanged:: 1.0
Support :class:`MultiDict`. Allow passing ``kwargs``.
| def extend(self, *args, **kwargs):
"""Extend headers in this object with items from another object
containing header items as well as keyword arguments.
To replace existing keys instead of extending, use
:meth:`update` instead.
If provided, the first argument can be another :class:`Headers`
object, a :class:`MultiDict`, :class:`dict`, or iterable of
pairs.
.. versionchanged:: 1.0
Support :class:`MultiDict`. Allow passing ``kwargs``.
"""
if len(args) > 1:
raise TypeError(f"update expected at most 1 arguments, got {len(args)}")
if args:
for key, value in iter_multi_items(args[0]):
self.add(key, value)
for key, value in iter_multi_items(kwargs):
self.add(key, value)
| (self, *args, **kwargs) | [
-0.047164011746644974,
-0.014616377651691437,
-0.06712198257446289,
-0.029078176245093346,
-0.010837760753929615,
-0.021400712430477142,
-0.03596556559205055,
0.02754955366253853,
0.004564397502690554,
-0.027223218232393265,
-0.00368844554759562,
-0.07433570176362991,
0.02468124032020569,
0.04201135039329529,
-0.04345409572124481,
0.009918869473040104,
0.0016853490378707647,
0.04630523547530174,
-0.010915050283074379,
-0.06464870274066925,
0.03337205946445465,
-0.00010956110781989992,
-0.00188394112046808,
0.03143122419714928,
0.00529865175485611,
0.030984660610556602,
0.0053802356123924255,
-0.00006816539098508656,
0.08271735906600952,
-0.005358765833079815,
0.004525752738118172,
-0.04771362990140915,
-0.03459152206778526,
0.0064708818681538105,
-0.0006145620136521757,
-0.07268685102462769,
-0.0047533283941447735,
0.00026326871011406183,
-0.03527854382991791,
0.07667157799005508,
0.010751883499324322,
-0.02378811128437519,
0.04012204334139824,
-0.020851096138358116,
0.08086240291595459,
0.07179372757673264,
-0.003735678270459175,
0.06062962859869003,
0.057125817984342575,
0.014307218603789806,
-0.020988499745726585,
-0.014994239434599876,
0.04170219227671623,
-0.05516780912876129,
-0.07625935971736908,
0.07900744676589966,
0.007235192693769932,
0.012503786943852901,
-0.0597708523273468,
0.05472124367952347,
-0.001362234354019165,
-0.03919456526637077,
-0.007351127918809652,
-0.03155145421624184,
-0.04022509604692459,
-0.03833578899502754,
-0.047747980803251266,
-0.006363534834235907,
-0.019614458084106445,
0.005989966914057732,
0.013688898645341396,
0.026845356449484825,
-0.013809127733111382,
-0.0024625419173389673,
-0.043282341212034225,
0.09171734005212784,
-0.08244255185127258,
0.01817171275615692,
0.013998058624565601,
-0.02426902763545513,
0.028820542618632317,
-0.0030679793562740088,
-0.04338539391756058,
0.037923574447631836,
0.033938851207494736,
0.007054849993437529,
-0.07282425463199615,
-0.026862531900405884,
0.05832810699939728,
0.005294357892125845,
-0.04001899063587189,
0.013293861411511898,
0.007033380214124918,
-0.060251764953136444,
0.023393074050545692,
-0.02203620783984661,
-0.023015212267637253,
-0.007072025444358587,
-0.031963665038347244,
0.01920224539935589,
-0.05427468195557594,
-0.08841963857412338,
0.0639616847038269,
-0.007419829722493887,
-0.01794843189418316,
-0.05880902335047722,
-0.0005281476187519729,
-0.038438841700553894,
0.009317725896835327,
0.03064114972949028,
0.016720380634069443,
-0.06949220597743988,
-0.01817171275615692,
-0.014959888532757759,
0.017038127407431602,
-0.022259488701820374,
0.036068618297576904,
0.01794843189418316,
0.006853037513792515,
-0.00046051896060816944,
0.004323940258473158,
0.02554001659154892,
0.04967163875699043,
0.02442360669374466,
0.029198404401540756,
-0.07811432331800461,
-0.010494249872863293,
-0.014075348153710365,
0.05108003318309784,
-0.06643495708703995,
-0.051767054945230484,
-0.04297317937016487,
-0.020851096138358116,
-0.055373914539813995,
0.049534235149621964,
-0.048263244330883026,
0.010185090824961662,
0.005564872175455093,
0.01842934638261795,
-0.008282900787889957,
0.002975660841912031,
-0.011602072045207024,
0.015286223962903023,
0.010674593038856983,
-0.06853037327528,
-0.018343469128012657,
0.01277000829577446,
-0.025952229276299477,
-0.01568126119673252,
0.01968315988779068,
-0.04658004269003868,
0.0006397885736078024,
0.0035832454450428486,
0.037442658096551895,
-0.027068639174103737,
-0.023272845894098282,
-0.04445027559995651,
0.0009988645324483514,
-0.00964406132698059,
0.03460869565606117,
0.0476105734705925,
0.021520942449569702,
0.007776222191751003,
0.04757622256875038,
-0.015432215295732021,
0.01942552626132965,
-0.010631654411554337,
-0.0476105734705925,
0.0013096343027427793,
-0.018103010952472687,
0.04211440309882164,
-0.007832042872905731,
0.043660201132297516,
-0.013396915048360825,
0.003937490750104189,
0.00029922998510301113,
-0.047267064452171326,
0.00015645836538169533,
-0.039160214364528656,
0.00737689109519124,
0.041908297687768936,
-0.038301438093185425,
0.004119980614632368,
0.00737689109519124,
-0.014633553102612495,
0.009498069062829018,
0.015749963000416756,
0.035312894731760025,
0.042664021253585815,
-0.013293861411511898,
0.06725938618183136,
-0.03998463973402977,
-0.016127824783325195,
0.03177473321557045,
-0.023272845894098282,
0.003976135514676571,
-0.036686938256025314,
-0.019906440749764442,
0.05891207605600357,
0.10690051317214966,
-0.1014043390750885,
-0.024131622165441513,
-0.020146898925304413,
0.004388348665088415,
0.05691971257328987,
-0.007256662473082542,
0.05568307638168335,
-0.06166015937924385,
-0.07024792581796646,
-0.00818843487650156,
0.02366788312792778,
0.015535268932580948,
0.020009495317935944,
0.007733283098787069,
-0.010082037188112736,
0.02902664989233017,
-0.03946937248110771,
-0.02057628706097603,
0.006561053451150656,
-0.02804764360189438,
0.03816403076052666,
0.006608285941183567,
-0.0023745172657072544,
-0.01928812265396118,
0.03229000046849251,
-0.0025698889512568712,
0.0040770419873297215,
-0.018635451793670654,
-0.014556263573467731,
0.009446542710065842,
0.02605528198182583,
0.03610296919941902,
-0.04245791584253311,
0.03603426739573479,
-0.009068680927157402,
0.01749327965080738,
-0.010794822126626968,
-0.013963707722723484,
-0.0010342890163883567,
0.004555809777230024,
0.037202201783657074,
0.07378608733415604,
-0.000765921373385936,
0.046545691788196564,
-0.026433143764734268,
-0.05595788359642029,
-0.008630705066025257,
0.04575561732053757,
-0.015664085745811462,
0.036686938256025314,
-0.012349207885563374,
0.02153811790049076,
0.001057368703186512,
0.04159913957118988,
-0.04407241567969322,
0.04307623580098152,
0.013654547743499279,
0.007784809917211533,
-0.038438841700553894,
-0.06660671532154083,
0.03275373950600624,
-0.04420981928706169,
-0.009678412228822708,
0.015148819424211979,
-0.012735657393932343,
0.025488490238785744,
0.034419767558574677,
0.023856814950704575,
-0.03960677608847618,
0.037545714527368546,
0.00199236162006855,
-0.02253429777920246,
0.03275373950600624,
0.012100161984562874,
0.04187394678592682,
0.057366278022527695,
0.026999935507774353,
-0.011370202526450157,
-0.049534235149621964,
0.0018936024280264974,
0.06062962859869003,
-0.030349165201187134,
-0.019769037142395973,
-0.030194586142897606,
0.020644988864660263,
0.0029456038028001785,
-0.03301137313246727,
0.07261814922094345,
-0.03826708719134331,
-0.030486568808555603,
0.022345367819070816,
0.007995210587978363,
-0.009008566848933697,
0.03696174547076225,
0.000820131681393832,
0.011610659770667553,
-0.008922688663005829,
0.0038043803069740534,
0.08587765693664551,
0.03648082911968231,
0.01476236991584301,
0.020816745236516,
-0.008433186449110508,
-0.03922891616821289,
-0.021366361528635025,
-0.07096929848194122,
0.06327465921640396,
0.05207621306180954,
-0.03103618696331978,
0.004001899156719446,
0.0036905924789607525,
0.04424417018890381,
-0.054858651012182236,
-0.02353047952055931,
-0.019906440749764442,
-0.03802662715315819,
-0.0023981337435543537,
0.025333909317851067,
-0.04036249965429306,
0.015767138451337814,
-0.043660201132297516,
-0.042183104902505875,
-0.0358625091612339,
-0.04012204334139824,
0.056129638105630875,
-0.022843457758426666,
0.06643495708703995,
0.0128988241776824,
0.012220391072332859,
0.00592126464471221,
-0.030366340652108192,
-0.019786212593317032,
0.046786148101091385,
0.028081994503736496,
-0.07433570176362991,
0.006698457524180412,
-0.00947230588644743,
0.021469414234161377,
0.020713692530989647,
0.006737102288752794,
-0.048881564289331436,
0.0064408243633806705,
-0.03503808379173279,
-0.02528238296508789,
-0.04232051223516464,
-0.11212187260389328,
0.027068639174103737,
0.023719409480690956,
0.03747701272368431,
0.025196505710482597,
-0.01401523407548666,
-0.02353047952055931,
0.062347181141376495,
0.013980883173644543,
0.07268685102462769,
-0.026433143764734268,
-0.05245407670736313,
-0.0794883593916893,
0.06626320630311966,
-0.01880720816552639,
0.030555270612239838,
0.04249226674437523,
0.011610659770667553,
0.029095351696014404,
-0.039057161659002304,
0.0008222786127589643,
-0.0508052222430706,
0.04352279752492905,
-0.008853986859321594,
-0.05764108523726463,
0.011868292465806007,
-0.03162015601992607,
0.03940067067742348,
0.04506859555840492,
0.020954148843884468,
-0.024080095812678337,
-0.04022509604692459,
0.03412778303027153,
-0.06701892614364624,
-0.019528580829501152,
0.05204186215996742,
-0.027102990075945854,
-0.022207962349057198,
-0.01477095764130354,
0.013551495037972927,
-0.0060715507715940475,
0.07777080684900284,
-0.03065832518041134,
0.03211824595928192,
0.038198381662368774,
0.014453209936618805,
-0.018377820029854774,
-0.003958960063755512,
0.027240393683314323,
-0.08264865726232529,
-0.02241406962275505,
-0.00802956148982048,
-0.009824404492974281,
-0.0597708523273468,
-0.06578228622674942,
0.06966395676136017,
-0.04998079687356949,
0.007540058344602585,
0.03575945645570755,
0.014247103594243526,
-0.05764108523726463,
0.020524760708212852,
-0.00328267365694046,
0.04912202060222626,
0.02514497935771942,
-0.0149427130818367,
-0.02803046815097332,
-0.06571358442306519,
0.019391175359487534,
-0.00738547882065177,
0.011687949299812317,
0.005745215341448784,
-0.02902664989233017,
-0.023358723148703575,
0.05915253236889839,
0.03675564005970955,
-0.025454139336943626,
-0.07900744676589966,
0.05334720388054848,
0.02478429302573204,
-0.05915253236889839,
-0.06166015937924385,
-0.03799227625131607,
0.007260956335812807,
-0.052866287529468536,
-0.01077764667570591,
0.007776222191751003,
0.0007304968312382698,
0.01477095764130354,
0.033698394894599915,
0.013585845939815044,
0.004568691365420818,
-0.043557148426771164,
0.0031946490053087473,
-0.005753803066909313,
-0.019580107182264328,
-0.029919777065515518,
-0.02277475595474243,
-0.01307916734367609,
-0.04984339326620102,
-0.0448281392455101,
-0.003383579896762967,
-0.035931214690208435,
0.0031130651477724314,
-0.0017497573280707002,
0.08333568274974823,
0.03065832518041134,
0.008600647561252117,
-0.009034330025315285,
0.009798641316592693,
-0.07364868372678757,
0.031843435019254684,
0.0082184923812747,
0.008291488513350487,
-0.03672128915786743,
0.03251328319311142,
-0.0223110169172287,
0.008853986859321594,
0.0054747010581195354,
-0.013439853675663471,
0.04568691551685333,
0.015904542058706284,
-0.015767138451337814,
-0.0011475402861833572,
0.01475378219038248,
0.0068015106953680515,
-0.002271464094519615,
-0.04338539391756058,
-0.024011394008994102,
0.04098081961274147,
0.049018967896699905,
0.04036249965429306,
0.003883817233145237,
-0.03977853059768677,
-0.03946937248110771,
0.043041884899139404,
-0.017725149169564247,
0.04798843711614609,
-0.03850754350423813,
0.03950372338294983,
0.00022864926722832024,
0.03204954415559769,
-0.01601618342101574,
0.027446500957012177,
0.011722300201654434,
0.05719452351331711,
-0.005075369495898485,
-0.05341590568423271,
0.04407241567969322,
0.034814804792404175,
-0.009970396757125854,
-0.02679383009672165,
0.021520942449569702,
0.010124975815415382,
-0.002730909502133727,
0.03471175208687782,
-0.04345409572124481,
0.0518014058470726,
-0.003490926930680871,
-0.016290992498397827,
-0.007866393774747849,
-0.011490430682897568,
0.014831071719527245,
-0.02054193615913391,
-0.02229384146630764,
-0.023891165852546692,
0.02952473983168602,
-0.0053802356123924255,
0.03747701272368431,
0.04956858605146408,
-0.024080095812678337,
-0.08450362086296082,
0.05334720388054848,
0.054755594581365585,
-0.013551495037972927,
0.062106724828481674,
0.028957946226000786,
0.04170219227671623,
-0.0657479390501976,
-0.040431201457977295,
0.026089632883667946,
0.0009162072674371302,
0.0039804293774068356,
0.012349207885563374,
0.03527854382991791,
-0.06605709344148636,
0.023753760382533073,
-0.035828158259391785,
0.008931276388466358,
0.004706095904111862,
0.025625893846154213,
-0.011679361574351788,
-0.0016091326251626015,
-0.0064494120888412,
-0.009592534974217415,
0.028562908992171288,
0.03448846936225891,
0.013757601380348206,
-0.0739234909415245,
-0.0356564037501812,
0.030555270612239838,
-0.019339649006724358,
-0.031465575098991394,
0.002771701430901885,
-0.0378548726439476,
-0.08910665661096573,
-0.04122127592563629,
-0.009343489073216915,
0.07715249061584473,
-0.05928993597626686,
-0.030125882476568222,
-0.05149224400520325,
-0.06128229945898056,
0.0010090625146403909,
0.026965584605932236,
0.04637393727898598,
0.018137361854314804,
0.0009972542757168412,
0.03840449079871178,
-0.021898804232478142,
0.02107437700033188,
0.01544939074665308,
0.07516013085842133,
-0.05190445855259895,
0.03689304366707802,
-0.028202224522829056,
0.05746933072805405,
-0.09109902381896973,
-0.0010670298943296075,
-0.025248032063245773,
0.008695113472640514,
-0.010167915374040604,
0.03222129866480827,
-0.003628331236541271,
-0.04331669211387634,
-0.030933132395148277,
-0.008248548954725266,
0.02329002134501934,
-0.08072499930858612,
0.02567742019891739,
-0.01657438836991787,
0.0003212361189071089,
0.03857624530792236,
0.022001856938004494,
0.03476327657699585,
-0.061110541224479675,
-0.02555719204246998,
-0.018738506361842155,
-0.03141404688358307,
-0.0035081023816019297,
0.03014305792748928,
-0.03261633589863777,
-0.014590614475309849,
-0.07282425463199615,
-0.024990398436784744,
0.023891165852546692,
0.011936995200812817,
-0.011361614800989628,
0.03198084235191345,
0.0031946490053087473,
0.0006011436344124377,
-0.009008566848933697,
0.032101068645715714,
-0.003907433710992336,
-0.03524419292807579,
0.013371151871979237,
0.008690819144248962,
-0.0057924482971429825,
0.01276142057031393,
0.0015350631438195705,
0.001090646255761385,
-0.023891165852546692,
-0.03689304366707802,
0.059358637779951096,
-0.012289092876017094,
-0.04984339326620102,
-0.022276664152741432,
-0.050015147775411606,
0.03417930752038956,
-0.021589644253253937,
-0.018120186403393745,
-0.016600152477622032,
-0.009893106296658516,
0.002013831166550517,
-0.011593484319746494,
-0.002322990680113435,
0.016265228390693665,
0.06368687003850937,
-0.0010133563773706555,
0.03833578899502754,
0.05448078736662865,
-0.017347287386655807,
0.016857784241437912,
0.0018270472064614296,
0.022122085094451904,
0.052488427609205246,
-0.0006950722890906036,
0.004942259285598993,
-0.01930529810488224,
-0.03397320210933685,
0.07055708765983582,
-0.033698394894599915,
-0.0496029369533062,
0.004684626590460539,
-0.041908297687768936,
0.031946491450071335,
0.03520984202623367,
-0.031345345079898834,
0.02107437700033188,
-0.0298854261636734,
0.011799590662121773,
-0.016866372898221016,
-0.012529551051557064,
0.05345025658607483,
-0.024234674870967865,
0.03373274579644203,
-0.02840832993388176,
0.07921355217695236,
-0.036824341863393784,
0.054858651012182236,
0.005320121068507433,
0.0010047686519101262,
-0.02541978657245636,
0.06591968983411789,
0.029456038028001785,
0.007097788620740175,
-0.014247103594243526,
-0.031242292374372482,
0.06492350995540619,
0.01858392544090748,
-0.014547675848007202,
-0.019459877163171768,
-0.0324789322912693,
0.045412108302116394,
0.028064819052815437,
0.03733960539102554,
-0.0005187547649256885,
-0.004942259285598993,
0.0015082263853400946,
0.0005225118948146701,
0.015277635306119919,
0.011224210262298584,
0.03527854382991791,
-0.08182423561811447,
-0.015183170326054096,
0.08457232266664505,
-0.06890823692083359,
-0.033578164875507355,
0.019477052614092827,
0.0008872235775925219,
0.014161226339638233,
0.01719270832836628,
-0.07674027979373932,
-0.020507585257291794,
-0.01531198713928461,
0.0035961270332336426,
0.03871364891529083,
0.0131478700786829,
-0.001077764667570591,
-0.010614478960633278,
0.012976114638149738,
0.00024434877559542656,
0.0034651635214686394,
0.04115257412195206,
-0.019648808985948563,
-0.03709914907813072,
0.061969321221113205,
0.036686938256025314,
0.003926755860447884,
0.07289295643568039,
0.019975144416093826,
0.06897693872451782,
-0.02344460040330887,
0.02414879761636257,
0.0649578645825386,
0.03062397427856922,
0.04757622256875038,
0.036583881825208664,
-0.019391175359487534,
-0.0007310335640795529,
-0.06660671532154083,
-0.011404553428292274,
0.02031865529716015,
-0.03610296919941902,
0.015921717509627342,
0.05331285297870636,
0.010262380354106426,
-0.020249951630830765,
0.038301438093185425,
0.026707952842116356,
-0.01879003271460533,
-0.062347181141376495,
0.04036249965429306,
0.017579156905412674,
0.06378992646932602,
-0.012460848316550255,
-0.012469436042010784,
0.04049990326166153,
0.00014491855108644813,
-0.019236596301198006,
-0.052247967571020126,
0.04798843711614609,
0.018738506361842155,
0.005908383056521416,
0.0695265531539917,
-0.007067731581628323,
-0.007089200895279646,
-0.005234243348240852,
-0.00073908461490646,
0.06547313183546066,
-0.01276142057031393,
-0.04414111748337746,
-0.004895026795566082,
0.04496554285287857,
-0.010880699381232262,
-0.011198447085916996,
-0.013233747333288193,
0.03641212731599808,
0.017106829211115837,
0.02167552150785923,
0.060251764953136444,
0.06042352318763733,
0.0476105734705925
]
|
42,149 | werkzeug.datastructures.headers | get | Return the default value if the requested data doesn't exist.
If `type` is provided and is a callable it should convert the value,
return it or raise a :exc:`ValueError` if that is not possible. In
this case the function will return the default as if the value was not
found:
>>> d = Headers([('Content-Length', '42')])
>>> d.get('Content-Length', type=int)
42
:param key: The key to be looked up.
:param default: The default value to be returned if the key can't
be looked up. If not further specified `None` is
returned.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the default value is returned.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
| def get(self, key, default=None, type=None):
"""Return the default value if the requested data doesn't exist.
If `type` is provided and is a callable it should convert the value,
return it or raise a :exc:`ValueError` if that is not possible. In
this case the function will return the default as if the value was not
found:
>>> d = Headers([('Content-Length', '42')])
>>> d.get('Content-Length', type=int)
42
:param key: The key to be looked up.
:param default: The default value to be returned if the key can't
be looked up. If not further specified `None` is
returned.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the default value is returned.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
"""
try:
rv = self.__getitem__(key, _get_mode=True)
except KeyError:
return default
if type is None:
return rv
try:
return type(rv)
except ValueError:
return default
| (self, key, default=None, type=None) | [
0.04514114186167717,
-0.004432522691786289,
-0.028346143662929535,
-0.04935822635889053,
0.04283091425895691,
0.03395669907331467,
0.062009479850530624,
-0.0007855466101318598,
0.0229189395904541,
-0.05218183994293213,
0.012275383807718754,
0.027026012539863586,
0.017785096541047096,
-0.03777041286230087,
0.018261810764670372,
0.07015028595924377,
-0.00636229757219553,
0.06934354454278946,
0.03690866008400917,
-0.03127976879477501,
0.0327465794980526,
-0.030821388587355614,
0.02986796200275421,
-0.023358982056379318,
-0.003233862342312932,
0.0035982734989374876,
0.034158386290073395,
-0.05907585844397545,
0.08375497162342072,
0.022863933816552162,
-0.01087274495512247,
-0.050164975225925446,
-0.049064863473176956,
0.04770806431770325,
-0.04488445073366165,
0.023890702053904533,
0.0002968002518173307,
0.006403551436960697,
-0.0015527581563219428,
0.024734118953347206,
-0.04121742025017738,
-0.0025371264200657606,
0.019361918792128563,
-0.06395300477743149,
-0.02555919997394085,
0.0179409459233284,
-0.03802710399031639,
0.035276830196380615,
-0.026127589866518974,
-0.018243474885821342,
0.03234320506453514,
-0.008796288631856441,
0.012990454211831093,
-0.058415792882442474,
-0.04022732004523277,
-0.03685365244746208,
-0.0074119847267866135,
0.026805991306900978,
-0.0395672544836998,
0.06677661836147308,
0.03549685329198837,
-0.007705347146838903,
-0.04745136946439743,
-0.011257782578468323,
0.003224694635719061,
-0.024899134412407875,
0.02183716557919979,
-0.029336242005228996,
0.031958166509866714,
-0.004265214316546917,
0.020076990127563477,
0.025174163281917572,
-0.06098271161317825,
-0.004822144750505686,
0.06431970745325089,
-0.0018839368131011724,
-0.03393836319446564,
-0.07253386080265045,
0.018830200657248497,
0.023432323709130287,
0.02873118221759796,
0.01216537319123745,
-0.03507514297962189,
-0.02211219258606434,
-0.01972862333059311,
-0.00991014949977398,
0.006609822157770395,
-0.031646471470594406,
0.04011731222271919,
0.00018077313143294305,
-0.0458378791809082,
-0.055958881974220276,
-0.02066371589899063,
-0.0018564340425655246,
0.0019687367603182793,
-0.06288956850767136,
0.02779608964920044,
-0.01947193033993244,
0.05441872775554657,
-0.005913086235523224,
-0.010771901346743107,
0.03241654857993126,
0.06989359855651855,
0.0196002759039402,
-0.011798669584095478,
-0.044554416090250015,
0.0002947948523797095,
0.0098001379519701,
-0.022772258147597313,
-0.007503660395741463,
0.0024981643073260784,
-0.05896584689617157,
-0.06813342124223709,
0.01564905233681202,
0.04308760538697243,
0.011101934127509594,
-0.008388331159949303,
0.012522907927632332,
-0.064393050968647,
0.029629604890942574,
-0.03817378357052803,
0.0019973854068666697,
-0.005936005152761936,
-0.03967726603150368,
0.022515565156936646,
-0.008360829204320908,
-0.011248615570366383,
-0.0482947863638401,
0.09094235301017761,
0.0488448441028595,
0.0275577325373888,
0.01967361755669117,
-0.050935048609972,
0.05859914422035217,
-0.0039076791144907475,
0.026054250076413155,
-0.014640618115663528,
0.07356062531471252,
0.000885816989466548,
0.0511183999478817,
0.02315729670226574,
0.004780890420079231,
0.03723869100213051,
-0.055152133107185364,
0.011991188861429691,
-0.02869451232254505,
0.0992298349738121,
-0.05452873930335045,
-0.03736703842878342,
0.02889619767665863,
0.020553704351186752,
0.017235042527318,
0.011450301855802536,
0.014897310175001621,
0.02876785211265087,
-0.02081039734184742,
-0.002825905103236437,
-0.024660777300596237,
-0.04063069447875023,
-0.013540509156882763,
0.014118066057562828,
0.02759440243244171,
0.0022082398645579815,
-0.07532080262899399,
0.026035914197564125,
0.02887786366045475,
0.01157864835113287,
0.055005453526973724,
0.073487289249897,
0.009598451666533947,
-0.09482940286397934,
0.035441845655441284,
-0.054932113736867905,
-0.002555461600422859,
0.06842678040266037,
-0.0022151153534650803,
-0.046864647418260574,
0.016015755012631416,
0.008044547401368618,
-0.018747691065073013,
0.0371103473007679,
-0.013852206990122795,
-0.02647595852613449,
0.0022964777890592813,
-0.01971028745174408,
0.08793538808822632,
0.028382813557982445,
0.0034263813868165016,
-0.040997397154569626,
0.034030038863420486,
-0.004242295399308205,
-0.0037495384458452463,
-0.03390169516205788,
-0.032801587134599686,
0.0059085022658109665,
0.018261810764670372,
0.01501648873090744,
-0.005601388867944479,
-0.0034813869278877974,
0.09834975004196167,
-0.02658596821129322,
0.015713224187493324,
0.004221668466925621,
0.029262900352478027,
-0.048991523683071136,
-0.06017596647143364,
0.05478543043136597,
-0.0007064762758091092,
-0.07191046327352524,
0.025632541626691818,
-0.05518880486488342,
-0.03505680710077286,
-0.06585986167192459,
-0.003119267523288727,
0.019911974668502808,
-0.04462775960564613,
-0.09512276202440262,
-0.04246421158313751,
0.022387219592928886,
-0.001691417652182281,
0.04836812987923622,
0.0022632451727986336,
0.02427574060857296,
0.06277956068515778,
0.05929587781429291,
0.004608998540788889,
-0.03905387222766876,
-0.019416924566030502,
-0.039823949337005615,
-0.011312788352370262,
0.038797181099653244,
0.05694897845387459,
0.026182595640420914,
0.022423889487981796,
0.02297394350171089,
-0.061752788722515106,
0.04055735468864441,
0.049064863473176956,
0.008617521263659,
0.03377334773540497,
0.021580472588539124,
0.06567651033401489,
-0.008690861985087395,
0.04855148121714592,
-0.025742551311850548,
-0.017601745203137398,
-0.04041067138314247,
0.07502743601799011,
-0.024990810081362724,
0.014163903892040253,
0.011285285465419292,
0.010533544234931469,
0.035331837832927704,
-0.032874926924705505,
0.015181505121290684,
-0.004494403954595327,
-0.05786573514342308,
-0.05438205972313881,
0.023579005151987076,
-0.0358818918466568,
-0.036651965230703354,
-0.02436741627752781,
0.029501257464289665,
0.015914911404252052,
-0.06505311280488968,
-0.02526583895087242,
0.0008869629236869514,
0.04957824945449829,
0.012000356800854206,
0.026127589866518974,
0.0015814068028703332,
0.044517748057842255,
-0.0044004363007843494,
-0.053611982613801956,
0.034085046499967575,
-0.009644289501011372,
0.01035019289702177,
-0.009433435276150703,
0.030381346121430397,
-0.0068894331343472,
-0.04418771341443062,
0.0013017957098782063,
-0.02326730638742447,
-0.053942013531923294,
-0.03802710399031639,
0.028474489226937294,
-0.03485512360930443,
-0.0018369529861956835,
-0.005495961755514145,
-0.0007076222100295126,
0.011569480411708355,
0.006839011330157518,
-0.09512276202440262,
-0.027374381199479103,
-0.008768785744905472,
-0.02181882970035076,
-0.07048032432794571,
-0.015007320791482925,
0.0988631322979927,
0.016547473147511482,
-0.04121742025017738,
-0.003923722542822361,
0.004253754857927561,
-0.02194717526435852,
-0.03215985372662544,
-0.002231158781796694,
0.01667582057416439,
-0.028291137889027596,
0.005312609951943159,
0.05449206754565239,
0.01208286453038454,
0.0015607797540724277,
-0.011991188861429691,
0.017060857266187668,
0.01216537319123745,
0.029244566336274147,
-0.025870898738503456,
0.05643559619784355,
-0.016400793567299843,
0.06659326702356339,
-0.027209363877773285,
0.009217997081577778,
-0.05276856571435928,
0.00007455817103618756,
0.020040320232510567,
-0.03437840938568115,
-0.038687169551849365,
0.02084706723690033,
0.0196002759039402,
0.05988260358572006,
-0.002436283277347684,
-0.00015183797222562134,
-0.0034470083191990852,
-0.0030688459519296885,
-0.059442561119794846,
0.00495507474988699,
0.03111475147306919,
0.01734505221247673,
0.02302894927561283,
0.01693251170217991,
-0.024495761841535568,
-0.03226986527442932,
-0.006939854472875595,
-0.015383191406726837,
0.006586903240531683,
-0.03481845185160637,
0.08045464009046555,
0.015447365120053291,
0.0334249809384346,
-0.023432323709130287,
-0.035203490406274796,
-0.06938020884990692,
0.007407401222735643,
0.03945724666118622,
-0.011074431240558624,
-0.03480011597275734,
0.03591855987906456,
-0.06787672638893127,
0.044554416090250015,
0.005706815980374813,
0.03120642714202404,
-0.000921914295759052,
-0.0603959858417511,
0.004088738467544317,
-0.07433070242404938,
-0.0020203045569360256,
0.0034538840409368277,
0.006779422052204609,
0.026879331097006798,
-0.019966980442404747,
0.001423266134224832,
0.041144080460071564,
-0.07271721214056015,
0.017335886135697365,
0.010753566399216652,
-0.03507514297962189,
-0.02895120345056057,
0.03118809126317501,
-0.024074053391814232,
-0.00005013517875340767,
0.01808762736618519,
0.007934536784887314,
-0.055958881974220276,
0.061826128512620926,
0.003275116439908743,
-0.027466056868433952,
0.01972862333059311,
0.016565809026360512,
-0.016996685415506363,
-0.009497608058154583,
0.008635856211185455,
-0.02073705568909645,
0.007760352920740843,
-0.013797201216220856,
-0.015374024398624897,
-0.012101199477910995,
0.013137135654687881,
0.00727447122335434,
0.006055183708667755,
0.012981287203729153,
0.06490643322467804,
0.060872700065374374,
-0.009525110945105553,
0.08918217569589615,
0.007907033897936344,
0.03241654857993126,
0.03382835537195206,
-0.03104141168296337,
-0.02425740472972393,
-0.04495779052376747,
0.01967361755669117,
-0.015401527285575867,
-0.01106526330113411,
-0.063036248087883,
0.017335886135697365,
0.018582675606012344,
0.03690866008400917,
0.04140077158808708,
-0.03263656795024872,
0.021635478362441063,
-0.03843047842383385,
-0.0836816281080246,
-0.020993748679757118,
-0.022295543923974037,
0.0256508756428957,
0.010304355062544346,
-0.010331857949495316,
-0.005537215620279312,
-0.045691195875406265,
-0.006632741075009108,
0.019948644563555717,
-0.036266930401325226,
-0.022387219592928886,
-0.02075539156794548,
0.05797574669122696,
0.026090919971466064,
-0.03498346731066704,
-0.019251909106969833,
0.0068940166383981705,
-0.0046502528712153435,
-0.026952672749757767,
0.012330388650298119,
-0.05086170881986618,
0.021250439807772636,
-0.04297759383916855,
-0.0311514213681221,
0.015584878623485565,
0.03597356751561165,
0.017409225925803185,
-0.0642096996307373,
-0.02321230061352253,
-0.010735230520367622,
0.06831677258014679,
0.04404103383421898,
0.03725702688097954,
-0.031646471470594406,
-0.07150708884000778,
0.03120642714202404,
0.03613858297467232,
-0.014163903892040253,
0.015300683677196503,
0.017106695100665092,
-0.004936739336699247,
-0.03124309703707695,
-0.04404103383421898,
0.028749516233801842,
0.013467168435454369,
0.005880999844521284,
-0.00522093428298831,
-0.03813711553812027,
-0.01440226100385189,
0.004324803594499826,
-0.027429385110735893,
-0.04037400335073471,
0.002207093872129917,
-0.012559578754007816,
0.043417636305093765,
0.02445909194648266,
-0.01795927993953228,
-0.04173080250620842,
0.03703700378537178,
0.011193609796464443,
0.004725885111838579,
-0.04426105320453644,
-0.020205335691571236,
-0.020242007449269295,
-0.011010258458554745,
0.07583418488502502,
0.017702588811516762,
0.014933981001377106,
0.017574243247509003,
0.08016128093004227,
-0.005913086235523224,
0.009864311665296555,
0.04059402272105217,
0.03142644837498665,
-0.024679113179445267,
-0.039897289127111435,
0.017015019431710243,
0.005422621034085751,
0.040960729122161865,
-0.05390534549951553,
0.020168665796518326,
0.017464231699705124,
-0.019178567454218864,
-0.07532080262899399,
-0.029537929221987724,
0.007086535915732384,
0.03228820115327835,
-0.04745136946439743,
0.011129437014460564,
0.08991558104753494,
-0.004512738902121782,
-0.014704790897667408,
0.0035982734989374876,
0.007228633388876915,
-0.0014897310175001621,
-0.013045459985733032,
0.01334798987954855,
0.03905387222766876,
0.030766382813453674,
0.0412907600402832,
0.0020947910379618406,
0.01158781535923481,
-0.01850016787648201,
0.052695225924253464,
-0.020553704351186752,
-0.031976502388715744,
0.00847542379051447,
0.05408869683742523,
-0.023652344942092896,
-0.004909236915409565,
-0.03621192276477814,
0.04653461277484894,
0.035331837832927704,
0.00108521175570786,
-0.0556655190885067,
0.04503113031387329,
-0.013247146271169186,
-0.04151078313589096,
0.021598808467388153,
-0.019343584775924683,
-0.023945707827806473,
-0.02869451232254505,
0.02060871012508869,
-0.015346521511673927,
0.004464609082788229,
0.06332961469888687,
0.028254467993974686,
-0.02189216949045658,
-0.06534647941589355,
-0.025724217295646667,
0.024679113179445267,
-0.00718279555439949,
-0.027356045320630074,
0.02884119190275669,
-0.04660795256495476,
-0.006811508443206549,
0.01982029899954796,
0.010597717016935349,
0.040043968707323074,
-0.014301417395472527,
-0.024605773389339447,
0.07433070242404938,
-0.05859914422035217,
-0.016125764697790146,
0.00017375420429743826,
0.03168313950300217,
0.027099354192614555,
-0.0603959858417511,
-0.020333683118224144,
0.051521774381399155,
0.02319396659731865,
0.022900603711605072,
0.02647595852613449,
0.07561416178941727,
-0.017207538709044456,
-0.002823613351210952,
-0.01971028745174408,
0.023964041844010353,
0.026054250076413155,
-0.014768964610993862,
0.050128303468227386,
0.00047270310460589826,
-0.0026310940738767385,
-0.049174875020980835,
-0.03441507741808891,
-0.02887786366045475,
-0.03945724666118622,
-0.00989181362092495,
-0.03575354442000389,
-0.022258874028921127,
-0.02084706723690033,
0.03964059799909592,
0.073487289249897,
0.04972492903470993,
0.015979083254933357,
0.007984958589076996,
-0.04195082560181618,
-0.017106695100665092,
0.0358818918466568,
0.0041620791889727116,
-0.013989720493555069,
0.035148486495018005,
0.04077737778425217,
0.022790592163801193,
-0.010836074128746986,
0.03784375265240669,
0.04415104538202286,
-0.09211579710245132,
0.0005964653682895005,
-0.03707367554306984,
-0.0007729412172921002,
0.027356045320630074,
-0.005225518252700567,
-0.013595514930784702,
0.00842041801661253,
-0.023780690506100655,
-0.04235420003533363,
-0.07532080262899399,
0.00839291512966156,
0.028602834790945053,
0.008369996212422848,
0.0206453800201416,
0.034158386290073395,
-0.03331496939063072,
-0.020352017134428024,
-0.03148145601153374,
-0.013586346991360188,
-0.03557019308209419,
0.020517034456133842,
0.03351665660738945,
0.06695996969938278,
0.015887407585978508,
-0.020113660022616386,
0.038687169551849365,
0.050935048609972,
0.01808762736618519,
0.013329654932022095,
0.05423537641763687,
-0.005789324175566435,
0.011230279691517353,
0.030913064256310463,
0.038613829761743546,
0.020223671570420265,
0.017464231699705124,
0.04503113031387329,
0.018866870552301407,
0.05570219084620476,
-0.021397121250629425,
-0.0463879331946373,
-0.0009299359517171979,
-0.022845597937703133,
0.009671792387962341,
-0.019270243123173714,
-0.05225517973303795,
0.03909054398536682,
-0.03931056335568428,
-0.03267323970794678,
-0.03395669907331467,
-0.040043968707323074,
-0.019966980442404747,
-0.005165928974747658,
-0.0458378791809082,
-0.008296655490994453,
-0.08551514148712158,
-0.05973592400550842,
-0.02906121499836445,
0.04022732004523277,
-0.032874926924705505,
0.047011326998472214,
-0.02198384702205658,
-0.007916201837360859,
-0.024972476065158844,
-0.02532084286212921,
-0.015859905630350113,
0.017427561804652214,
-0.03469010442495346,
0.00750824436545372,
0.027062682434916496,
0.10993756353855133,
0.01781259849667549,
-0.04649794474244118,
0.0901356041431427,
-0.03267323970794678,
0.025815892964601517,
0.05005496367812157,
-0.03824712336063385,
-0.0266959797590971,
-0.04154745116829872,
0.03912721201777458,
-0.03225152939558029,
-0.003314078552648425,
-0.011541977524757385,
-0.026237601414322853,
-0.025687547400593758,
-0.03489179164171219,
-0.01282543782144785,
-0.032838255167007446,
0.036596961319446564,
-0.03723869100213051,
-0.03964059799909592,
-0.007599920034408569,
-0.020113660022616386,
-0.03698199987411499,
-0.034323401749134064,
-0.0089704729616642,
0.03571687266230583,
-0.007948287762701511,
-0.027979440987110138,
-0.03610191121697426,
0.014448098838329315,
0.04470109939575195,
-0.04506780207157135,
0.0004924706881865859,
0.008457088842988014,
-0.05108173191547394,
0.042280860245227814,
-0.044407736510038376,
0.09820307046175003,
0.01866518333554268,
-0.04477443918585777,
0.04070403426885605,
0.00607351865619421,
0.030711378902196884,
-0.01956360600888729,
0.002674640156328678,
-0.02306561917066574,
-0.07286389172077179,
0.09079566597938538,
0.09746966511011124,
0.0076365903951227665,
0.038723837584257126,
-0.00803996343165636,
0.006738168187439442,
-0.06688663363456726,
-0.00981847383081913,
-0.011972853913903236,
0.05705899000167847,
0.05533548444509506,
-0.036266930401325226,
0.06644658744335175,
0.005702232010662556,
-0.0002268974931212142,
0.0023881534580141306,
-0.06883015483617783,
0.03329663351178169,
0.03687198832631111,
0.008264569565653801,
0.04708466678857803,
-0.03575354442000389,
-0.023340648040175438,
0.03373667970299721,
0.019435260444879532,
0.033131618052721024,
-0.04770806431770325,
-0.04715801030397415,
0.024807458743453026,
0.06754669547080994,
0.06164277717471123,
-0.008007877506315708,
-0.018151799216866493,
-0.05691231042146683,
0.01451227255165577,
-0.05089838057756424,
-0.030949734151363373,
0.005115507170557976,
0.027337709441781044
]
|
42,150 | werkzeug.datastructures.headers | get_all | Return a list of all the values for the named field.
This method is compatible with the :mod:`wsgiref`
:meth:`~wsgiref.headers.Headers.get_all` method.
| def get_all(self, name):
"""Return a list of all the values for the named field.
This method is compatible with the :mod:`wsgiref`
:meth:`~wsgiref.headers.Headers.get_all` method.
"""
return self.getlist(name)
| (self, name) | [
-0.000984611571766436,
-0.02001900225877762,
-0.069447360932827,
-0.04605746269226074,
-0.015323823317885399,
0.0469861775636673,
-0.01405973732471466,
-0.11275307089090347,
0.0714767798781395,
-0.02180764079093933,
-0.026399629190564156,
-0.030148891732096672,
0.005383116193115711,
-0.014446701854467392,
0.06463179737329483,
-0.0005739984335377812,
0.00017789652338251472,
0.05080423504114151,
0.037423837929964066,
-0.039694033563137054,
-0.008113371208310127,
0.009785921312868595,
0.022684762254357338,
-0.03776780888438225,
-0.004024438560009003,
0.00949354749172926,
0.05138898268342018,
-0.06872502714395523,
0.03451729938387871,
0.05957544967532158,
-0.022942738607525826,
-0.026348033919930458,
-0.0048757619224488735,
-0.018023980781435966,
-0.02710476517677307,
-0.046401429921388626,
0.016888882964849472,
-0.0024292818270623684,
-0.02081013098359108,
0.07608596235513687,
0.00699117174372077,
-0.02734554372727871,
-0.014326312579214573,
-0.05771801620721817,
0.02650281973183155,
0.0037062671035528183,
0.0049875518307089806,
0.053143225610256195,
0.02385425753891468,
-0.006311832927167416,
0.0032204107847064734,
0.04671100527048111,
-0.029718929901719093,
-0.06291195005178452,
-0.005305723287165165,
-0.019468650221824646,
0.022289197891950607,
0.05902509763836861,
0.029426556080579758,
0.08076394349336624,
-0.0193482618778944,
-0.021738847717642784,
0.007262047845870256,
-0.07732425630092621,
0.01670829951763153,
-0.0366671048104763,
0.06277436017990112,
-0.036632709205150604,
-0.010207283310592175,
-0.016467520967125893,
-0.01714685931801796,
-0.006071054842323065,
-0.023338302969932556,
0.033588580787181854,
0.007214752025902271,
0.020036200061440468,
0.02058655023574829,
0.014893862418830395,
0.003355848602950573,
-0.05592937394976616,
-0.00020678454893641174,
0.020087795332074165,
-0.025006553158164024,
0.010731835849583149,
-0.016433123499155045,
-0.0034375411923974752,
-0.030303677543997765,
-0.01344919204711914,
0.0632215216755867,
0.06573249399662018,
0.00047322624595835805,
0.011677751317620277,
-0.028618229553103447,
0.058405954390764236,
-0.05469108745455742,
-0.04729575291275978,
-0.02179044298827648,
0.03372617065906525,
-0.06136408820748329,
0.05548221617937088,
-0.03646072372794151,
0.011419774033129215,
-0.011583159677684307,
0.03278025612235069,
-0.011239190585911274,
-0.05854354053735733,
-0.023200714960694313,
-0.06858743727207184,
0.07443491369485855,
0.0428241528570652,
0.024232622236013412,
-0.035807184875011444,
0.04127629101276398,
-0.010663041844964027,
-0.00008572355000069365,
-0.0021326083224266768,
-0.009355959482491016,
-0.021893633529543877,
-0.07422853261232376,
-0.04392485320568085,
0.05056345835328102,
0.037045471370220184,
0.04674540087580681,
0.008986192755401134,
0.016166547313332558,
0.060882531106472015,
-0.0388341099023819,
-0.03604796156287193,
0.016570711508393288,
0.03752702847123146,
0.011952926404774189,
0.04203302413225174,
-0.0347236804664135,
-0.010026698932051659,
0.06380626559257507,
-0.02590087242424488,
0.050288282334804535,
0.01690608076751232,
0.05733964964747429,
-0.00550780538469553,
-0.028687022626399994,
0.02101651206612587,
0.06335911154747009,
-0.04261777177453041,
0.00653541274368763,
-0.02670920081436634,
0.0998886302113533,
0.008405745029449463,
-0.058027587831020355,
-0.029082586988806725,
0.01633853279054165,
0.02995970845222473,
0.006071054842323065,
-0.02753472700715065,
-0.03136998042464256,
0.052558477967977524,
-0.027655115351080894,
-0.04340890049934387,
-0.05166415870189667,
-0.023613478988409042,
-0.016605108976364136,
0.012589269317686558,
-0.05424392595887184,
-0.057236459106206894,
0.010697439312934875,
0.023819860070943832,
0.026485620066523552,
-0.06480377912521362,
0.0019778222776949406,
0.00867232121527195,
-0.04471598193049431,
0.005297123920172453,
-0.03321021795272827,
0.016398726031184196,
0.009613936766982079,
0.018453942611813545,
-0.041517071425914764,
0.021274488419294357,
0.006225840654224157,
0.004617785103619099,
-0.017026470974087715,
-0.07092642784118652,
-0.009312963113188744,
-0.008706717751920223,
0.036598313599824905,
0.018711918964982033,
-0.03142157569527626,
0.009433352388441563,
-0.0013522285735234618,
0.040485162287950516,
0.010757633484899998,
-0.044544000178575516,
-0.012296895496547222,
-0.019262269139289856,
-0.047674115747213364,
-0.03690788522362709,
-0.023579081520438194,
-0.008822807110846043,
0.021893633529543877,
-0.012718257494270802,
-0.03615115210413933,
-0.032745856791734695,
-0.06917218863964081,
0.019107483327388763,
-0.00392124755308032,
0.03319301828742027,
0.0695161521434784,
-0.061914436519145966,
-0.04196422919631004,
-0.006367728114128113,
0.02058655023574829,
0.035394418984651566,
-0.05665171146392822,
0.006247338838875294,
-0.004862863104790449,
-0.02081013098359108,
-0.05668610706925392,
-0.054347116500139236,
0.06628284603357315,
-0.02182483859360218,
0.03646072372794151,
-0.014670281670987606,
0.0030333774629980326,
-0.03245348483324051,
0.0214120764285326,
0.020070597529411316,
-0.003506334964185953,
-0.02488616481423378,
-0.05080423504114151,
-0.06463179737329483,
0.0173274427652359,
0.03429371863603592,
-0.007201853208243847,
0.012357089668512344,
0.00927856657654047,
0.027379941195249557,
0.021532464772462845,
-0.005129439290612936,
0.03787099942564964,
0.02036297135055065,
0.031731151044368744,
0.023630676791071892,
-0.03577278554439545,
0.03278025612235069,
-0.02939216047525406,
-0.021945228800177574,
-0.027603520080447197,
0.07856254279613495,
0.022891143336892128,
-0.00988051202148199,
-0.03935006633400917,
-0.025969667360186577,
0.0173790380358696,
-0.017903592437505722,
0.005112240556627512,
-0.05369357764720917,
-0.0448879674077034,
0.020878924056887627,
0.022512776777148247,
-0.052145715802907944,
0.021670052781701088,
-0.06287755072116852,
0.0037557126488536596,
0.03646072372794151,
-0.006092552561312914,
0.0117379454895854,
0.032711461186409,
0.013251409865915775,
-0.05733964964747429,
0.03164515644311905,
0.018677521497011185,
-0.02975332736968994,
-0.07010090351104736,
-0.04137948155403137,
0.014377908781170845,
-0.01305362768471241,
0.057030078023672104,
0.06989452242851257,
-0.0387653186917305,
0.018419545143842697,
0.012107712216675282,
-0.016845887526869774,
0.008134868927299976,
-0.0035622299183160067,
-0.00499185174703598,
-0.017396237701177597,
-0.026606010273098946,
0.056410931050777435,
-0.09761843085289001,
-0.016656704246997833,
0.027861496433615685,
0.002375536598265171,
-0.018711918964982033,
-0.06243039295077324,
0.01632993295788765,
-0.0023583380971103907,
-0.011970124207437038,
-0.020517757162451744,
0.04911878705024719,
0.03800858557224274,
0.03413893282413483,
0.04199862852692604,
-0.019743826240301132,
-0.017000673338770866,
-0.0469517819583416,
-0.032556675374507904,
0.018058378249406815,
0.033984147012233734,
-0.024817369878292084,
0.01141117513179779,
-0.032092317938804626,
0.03002850152552128,
-0.055998168885707855,
-0.03914368525147438,
-0.005000450648367405,
-0.04062275215983391,
-0.03842134773731232,
0.053762368857860565,
-0.004224370699375868,
0.02650281973183155,
-0.028652625158429146,
-0.0004554903425741941,
-0.011849735863506794,
-0.05187053978443146,
0.03143877536058426,
0.0005981837748549879,
0.015985963866114616,
0.005722785834223032,
-0.0066987983882427216,
0.022787952795624733,
-0.01164335384964943,
-0.041104309260845184,
-0.005163836292922497,
0.026365231722593307,
0.013148218393325806,
0.005520704202353954,
0.02572888880968094,
0.011540163308382034,
-0.03353698551654816,
-0.03147317096590996,
-0.03505045175552368,
-0.019933009520173073,
-0.04003800451755524,
0.012632264755666256,
-0.04791489616036415,
-0.023200714960694313,
0.022719159722328186,
0.06411583721637726,
0.04643582925200462,
-0.036735899746418,
0.026863986626267433,
-0.07938806712627411,
0.04994431510567665,
0.09135819226503372,
0.0776682198047638,
-0.002005769871175289,
-0.016261139884591103,
-0.010680240578949451,
0.011970124207437038,
0.06903459876775742,
0.06053856015205383,
-0.0008550856728106737,
-0.022151609882712364,
-0.010654442943632603,
0.030320875346660614,
-0.03302103281021118,
-0.02165285497903824,
0.02958134189248085,
0.03862772881984711,
-0.021670052781701088,
-0.055791787803173065,
0.027809901162981987,
-0.014283317141234875,
-0.04935956746339798,
-0.008302554488182068,
-0.034328117966651917,
0.04915318265557289,
0.013268607668578625,
-0.06604206562042236,
-0.0015629095723852515,
-0.011669151484966278,
0.011626155115664005,
0.013526584953069687,
-0.0034869867376983166,
-0.0066300043836236,
-0.0173790380358696,
0.024628188461065292,
-0.013724367134273052,
-0.012752654030919075,
0.018505537882447243,
0.033382199704647064,
-0.021343283355236053,
-0.07285265624523163,
0.02466258406639099,
-0.04526633396744728,
-0.04605746269226074,
0.01676849275827408,
-0.0163041353225708,
0.012967634946107864,
-0.029116984456777573,
0.06673000752925873,
-0.006844985298812389,
-0.07464129477739334,
0.042101819068193436,
-0.04622944816946983,
-0.044784776866436005,
0.044991157948970795,
-0.04440641030669212,
0.0034052941482514143,
0.008100472390651703,
0.02954694628715515,
-0.0006567660020664334,
0.003319301875308156,
-0.077530637383461,
0.03835255280137062,
-0.025797681882977486,
0.0386965237557888,
0.039246875792741776,
0.05850914493203163,
0.021962426602840424,
-0.005641093011945486,
-0.06879381835460663,
-0.023389898240566254,
0.08895041048526764,
0.042961739003658295,
-0.007128759752959013,
-0.012245300225913525,
0.030338075011968613,
0.0009340911055915058,
-0.021463671699166298,
0.04877481982111931,
0.02918577753007412,
-0.04984112083911896,
-0.04017559066414833,
0.04757092520594597,
-0.0002339258644497022,
-0.012391487136483192,
-0.0065698097459971905,
-0.026004064828157425,
-0.034156132489442825,
-0.02633083425462246,
0.03243628516793251,
0.001317831571213901,
-0.0408291332423687,
0.04330570995807648,
-0.017800400033593178,
-0.011445571668446064,
0.03615115210413933,
0.014825068414211273,
-0.1020900309085846,
-0.020466161891818047,
-0.02897939644753933,
0.06439101696014404,
-0.036013565957546234,
0.023200714960694313,
0.034190528094768524,
0.010181485675275326,
-0.025126943364739418,
0.0024615288712084293,
-0.016587909311056137,
0.05407194420695305,
0.030234884470701218,
0.00817786529660225,
-0.013827557675540447,
-0.01812717132270336,
-0.008319752290844917,
-0.038455747067928314,
0.045610301196575165,
0.025539705529808998,
-0.01919347606599331,
0.015366819687187672,
0.03240188956260681,
-0.03573838993906975,
-0.06057295948266983,
-0.005043447017669678,
-0.0067718918435275555,
-0.017817599698901176,
0.047605324536561966,
-0.04984112083911896,
-0.05338400602340698,
0.0265200175344944,
-0.06628284603357315,
0.02020818553864956,
-0.03618554770946503,
0.006918078288435936,
-0.04874042049050331,
0.04997871071100235,
0.005533603020012379,
-0.032161109149456024,
-0.014850866049528122,
0.025058148428797722,
-0.004372707102447748,
0.000395027018385008,
0.011548762209713459,
0.034586094319820404,
0.010112691670656204,
0.02854943461716175,
0.002483026823028922,
-0.003420342691242695,
0.08516675233840942,
0.006200043018907309,
-0.06979133188724518,
0.007829596288502216,
0.029529746621847153,
-0.015813980251550674,
-0.031507570296525955,
0.02793029136955738,
-0.00323975901119411,
0.02650281973183155,
-0.02184203825891018,
-0.03360578045248985,
0.014033939689397812,
-0.012365689501166344,
0.026468422263860703,
0.017095264047384262,
-0.03931566700339317,
-0.06879381835460663,
0.019073085859417915,
-0.02321791462600231,
0.06979133188724518,
0.004056685604155064,
0.04409683868288994,
-0.020104993134737015,
-0.0035643798764795065,
-0.0076060169376432896,
0.05042586848139763,
-0.0753980278968811,
-0.032092317938804626,
0.010301874950528145,
0.03556640446186066,
0.04567909613251686,
-0.042548976838588715,
0.0007965034455992281,
0.007971484214067459,
-0.008754014037549496,
0.02041456662118435,
-0.04347769543528557,
0.007064265199005604,
-0.059265874326229095,
0.039074890315532684,
0.042961739003658295,
0.019915811717510223,
0.013827557675540447,
0.020878924056887627,
-0.05930027365684509,
0.027379941195249557,
-0.024232622236013412,
0.0057829804718494415,
0.04915318265557289,
-0.036632709205150604,
-0.008732515387237072,
-0.04220500960946083,
-0.0022723458241671324,
-0.07814978063106537,
0.0061613465659320354,
-0.044578395783901215,
-0.026176048442721367,
-0.007287845481187105,
-0.037251852452754974,
-0.015865575522184372,
0.06800269335508347,
-0.00867232121527195,
-0.02672639861702919,
0.06040097400546074,
-0.05589497834444046,
0.03283185139298439,
0.0025539705529809,
0.02631363645195961,
-0.02490336261689663,
-0.03076803684234619,
-0.010749034583568573,
0.0034934361465275288,
0.01335460040718317,
0.046607814729213715,
0.08193343877792358,
0.06473498791456223,
0.006943876389414072,
-0.009011990390717983,
-0.005542201921343803,
-0.024198226630687714,
0.033107027411460876,
-0.03448290377855301,
-0.009957905858755112,
-0.048843611031770706,
0.013019230216741562,
0.02039736695587635,
0.018195966258645058,
0.028635427355766296,
0.02103370986878872,
0.049703534692525864,
-0.04320251941680908,
-0.03511924669146538,
0.00960533693432808,
0.01153156440705061,
-0.023338302969932556,
0.0469517819583416,
-0.08812488615512848,
0.019709428772330284,
-0.048843611031770706,
0.020087795332074165,
0.028859008103609085,
0.011445571668446064,
0.03302103281021118,
-0.009450551122426987,
0.001543561345897615,
-0.011909930035471916,
0.03493006154894829,
0.008164966478943825,
0.02328670769929886,
0.0035579304676502943,
-0.03553200885653496,
-0.040485162287950516,
-0.01490246132016182,
0.014145729131996632,
-0.008418643847107887,
0.03890290483832359,
-0.012855845503509045,
-0.008487437851727009,
0.02510974369943142,
-0.03350258991122246,
0.01979542151093483,
0.0028850408270955086,
0.0011157498229295015,
0.045197539031505585,
-0.017628416419029236,
-0.07381577044725418,
-0.002850643824785948,
-0.021738847717642784,
-0.03104321099817753,
0.020276978611946106,
-0.010362069122493267,
-0.0013823257759213448,
0.037630219012498856,
0.0020261930767446756,
0.006251638289541006,
0.04096671938896179,
-0.002155181486159563,
-0.05902509763836861,
-0.04137948155403137,
0.026365231722593307,
-0.013492187485098839,
0.04567909613251686,
-0.026365231722593307,
0.006513915024697781,
-0.018006782978773117,
0.06562930345535278,
-0.028876205906271935,
-0.046195048838853836,
0.050288282334804535,
-0.0509762205183506,
-0.030733639374375343,
0.06583568453788757,
0.0041297790594398975,
0.04791489616036415,
0.006049556657671928,
-0.007863993756473064,
-0.035394418984651566,
0.0006992247072048485,
-0.01750802807509899,
-0.0388341099023819,
-0.01469608023762703,
-0.043133724480867386,
0.05451910197734833,
-0.08619865775108337,
-0.023991845548152924,
-0.010319072753190994,
-0.04839645326137543,
0.04241139069199562,
0.006634303834289312,
0.05076983943581581,
0.03563519939780235,
0.07821857184171677,
0.016433123499155045,
-0.02302873134613037,
-0.005099341738969088,
0.05207692086696625,
0.021893633529543877,
-0.01919347606599331,
0.06098572164773941,
0.03303823247551918,
0.05400314927101135,
-0.018866704776883125,
0.01656211167573929,
0.07450370490550995,
0.032298699021339417,
-0.004561890382319689,
-0.0018262609373778105,
0.012030319310724735,
-0.0017080215038731694,
0.022942738607525826,
0.013002032414078712,
-0.0631871223449707,
0.025986865162849426,
0.02507534809410572,
0.007425433024764061,
0.09431632608175278,
0.04020998626947403,
-0.03360578045248985,
0.03584158048033714,
0.06617965549230576,
-0.021343283355236053,
-0.009252768941223621,
0.024387409910559654,
0.0036654206924140453,
0.000007377364454441704,
-0.013234211131930351,
0.09892551600933075,
-0.0014457451179623604,
-0.06817467510700226,
0.00750712538138032,
-0.02220320515334606,
0.053968749940395355,
0.0036503721494227648,
-0.03790539503097534,
0.053555987775325775,
-0.01417152676731348,
0.022151609882712364,
0.01051685493439436,
0.019537445157766342,
0.0755356177687645,
0.05262727290391922,
0.05386555939912796,
0.01957184262573719,
-0.001281284843571484,
-0.02349308878183365,
0.00247657741419971,
-0.03852453827857971,
0.03635753318667412,
-0.03321021795272827,
0.045988667756319046,
0.044956762343645096,
0.04358088597655296,
-0.004299613647162914,
0.013595378957688808,
0.007421133108437061,
-0.03157636150717735,
0.027001574635505676,
0.02449060045182705,
-0.04464719071984291,
0.01793798804283142,
0.025402117520570755,
0.001241513411514461,
0.044784776866436005,
0.014068336226046085,
0.007747903931885958,
-0.05221451073884964,
0.040106795728206635,
0.01690608076751232,
-0.03200632333755493,
0.030234884470701218,
-0.017181256785988808,
0.027053169906139374,
0.029220174998044968,
-0.04836205393075943,
-0.004540392197668552,
-0.007932787761092186,
-0.01714685931801796,
-0.027913091704249382,
-0.03511924669146538,
0.04733014851808548,
-0.04791489616036415,
0.049909915775060654,
-0.08475398272275925,
0.07175195217132568,
0.009347360581159592,
0.024645386263728142,
0.04636703431606293,
0.01286444440484047
]
|
42,151 | werkzeug.datastructures.headers | getlist | Return the list of items for a given key. If that key is not in the
:class:`Headers`, the return value will be an empty list. Just like
:meth:`get`, :meth:`getlist` accepts a `type` parameter. All items will
be converted with the callable defined there.
:param key: The key to be looked up.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the value will be removed from the list.
:return: a :class:`list` of all the values for the key.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
| def getlist(self, key, type=None):
"""Return the list of items for a given key. If that key is not in the
:class:`Headers`, the return value will be an empty list. Just like
:meth:`get`, :meth:`getlist` accepts a `type` parameter. All items will
be converted with the callable defined there.
:param key: The key to be looked up.
:param type: A callable that is used to cast the value in the
:class:`Headers`. If a :exc:`ValueError` is raised
by this callable the value will be removed from the list.
:return: a :class:`list` of all the values for the key.
.. versionchanged:: 3.0
The ``as_bytes`` parameter was removed.
.. versionchanged:: 0.9
The ``as_bytes`` parameter was added.
"""
ikey = key.lower()
result = []
for k, v in self:
if k.lower() == ikey:
if type is not None:
try:
v = type(v)
except ValueError:
continue
result.append(v)
return result
| (self, key, type=None) | [
0.005748915020376444,
-0.008984668180346489,
-0.08071204274892807,
-0.07671279460191727,
0.002154138870537281,
0.023104730993509293,
0.02559516951441765,
-0.020723361521959305,
0.045773182064294815,
-0.01481538638472557,
-0.02766750566661358,
-0.012788495980203152,
0.02712215483188629,
-0.04144672304391861,
0.0014531349297612906,
0.03839275613427162,
-0.010025381110608578,
0.04435526579618454,
0.02890363708138466,
-0.0618792325258255,
-0.0033130112569779158,
0.0009236893383786082,
0.033430054783821106,
0.0031016874127089977,
0.006648745387792587,
-0.01057073287665844,
0.02672223001718521,
-0.05522594228386879,
0.06947779655456543,
0.03257567062973976,
-0.0024904392194002867,
-0.022468486800789833,
-0.04690023884177208,
-0.0016144680557772517,
-0.02983073517680168,
-0.0015644774539396167,
0.02732211723923683,
-0.015569789335131645,
0.02134142816066742,
0.055880364030599594,
-0.0023518288508057594,
-0.023904580622911453,
0.04344634711742401,
-0.0565347857773304,
0.013979179784655571,
0.022523023188114166,
-0.030594225972890854,
0.039483457803726196,
0.0252497810870409,
-0.024231791496276855,
-0.03364819660782814,
0.020214367657899857,
-0.007221364416182041,
-0.05766184628009796,
-0.02317744493484497,
-0.02906724251806736,
0.01234312541782856,
0.0018428340554237366,
-0.00352433486841619,
0.10078097879886627,
0.014806296676397324,
-0.020759718492627144,
-0.04937250167131424,
-0.042101144790649414,
0.04762737452983856,
-0.04555504024028778,
-0.008493851870298386,
-0.03890174999833107,
0.001428139628842473,
-0.04053780436515808,
-0.012215876951813698,
-0.009661813266575336,
-0.03486614674329758,
0.04010152444243431,
0.03461164981126785,
0.012670336291193962,
-0.009075559675693512,
0.009380048140883446,
-0.007412237580865622,
-0.02555881254374981,
0.012188608758151531,
0.05933425948023796,
-0.027722042053937912,
-0.016733206808567047,
-0.01403371524065733,
0.02328651398420334,
0.015915177762508392,
-0.0018882800359278917,
0.028740031644701958,
0.07016857713460922,
-0.06097031384706497,
-0.050317779183387756,
-0.042900994420051575,
0.019414518028497696,
-0.02655862458050251,
-0.041955720633268356,
-0.02950352430343628,
-0.03652038052678108,
-0.029249025508761406,
0.029921626672148705,
0.01662413589656353,
0.01829654723405838,
0.054535161703825,
0.033866334706544876,
-0.007562209386378527,
-0.07165920734405518,
-0.03766562044620514,
-0.034029942005872726,
0.030448799952864647,
0.07387696951627731,
-0.02966712974011898,
-0.028376463800668716,
0.019359983503818512,
-0.023740975186228752,
0.025413386523723602,
0.020087119191884995,
-0.0032675652764737606,
-0.004076503682881594,
-0.07013221830129623,
-0.04948157072067261,
0.010888854041695595,
0.024831676855683327,
0.005103582516312599,
0.03017612360417843,
-0.009034658782184124,
0.020450687035918236,
0.007334979251027107,
-0.042028430849313736,
0.04184664785861969,
0.07340432703495026,
-0.013288401067256927,
0.013788307085633278,
-0.05053591728210449,
0.03261202946305275,
0.039083532989025116,
-0.010988835245370865,
-0.022795697674155235,
0.011270600371062756,
0.043700844049453735,
0.0054807839915156364,
0.02297748252749443,
0.017942069098353386,
0.05471694841980934,
-0.022486666217446327,
0.021032394841313362,
-0.05071770027279854,
0.09678173810243607,
-0.002247303258627653,
-0.02966712974011898,
-0.005149028263986111,
-0.02923084795475006,
0.040792301297187805,
0.022286703810095787,
-0.012115895748138428,
-0.007575843017548323,
0.005708013661205769,
-0.04937250167131424,
0.010825229808688164,
-0.050863128155469894,
-0.0016053789295256138,
-0.022486666217446327,
0.03730205073952675,
-0.029412630945444107,
-0.07838521152734756,
0.039919737726449966,
0.0160515159368515,
0.04031966254115105,
0.014051893725991249,
0.026867657899856567,
-0.017714839428663254,
-0.0658784806728363,
-0.015551610849797726,
-0.035738710314035416,
0.010688891634345055,
0.05969782546162605,
0.0023472842294722795,
-0.04319185018539429,
0.027213046327233315,
0.02190495654940605,
-0.002200721064582467,
0.006807806435972452,
-0.051226697862148285,
-0.02314108796417713,
-0.005576220341026783,
0.0115432757884264,
0.06613297760486603,
0.0030107954517006874,
0.030612405389547348,
-0.0331210233271122,
0.0015326653374359012,
-0.04362813010811806,
-0.017914801836013794,
-0.01622421108186245,
-0.03110322169959545,
-0.019850799813866615,
0.00007139988156268373,
-0.045336898416280746,
0.03686577081680298,
-0.08391144126653671,
0.048281796276569366,
-0.02977619878947735,
-0.0200689397752285,
-0.008057570084929466,
0.005844351835548878,
-0.015715215355157852,
-0.012334035709500313,
0.04435526579618454,
-0.04671845585107803,
0.011043370701372623,
0.0049354322254657745,
0.020596113055944443,
-0.009289155714213848,
-0.04857265204191208,
-0.008552931249141693,
-0.005389892030507326,
-0.040356021374464035,
-0.07140471041202545,
-0.02652226760983467,
0.04362813010811806,
-0.032393887639045715,
0.03659309446811676,
-0.007230453658849001,
-0.05348081514239311,
0.007539486512541771,
0.04799094423651695,
0.0461731031537056,
-0.03397540748119354,
-0.02719486877322197,
-0.04697295278310776,
-0.018578311428427696,
0.03748383745551109,
0.02026890218257904,
-0.016396906226873398,
0.023359227925539017,
0.029448987916111946,
-0.013370203785598278,
0.006657834630459547,
0.03161221742630005,
0.03984702751040459,
0.02715851180255413,
0.013588344678282738,
0.038647253066301346,
-0.022068561986088753,
0.05511687323451042,
-0.04639124497771263,
0.020886966958642006,
0.00035050202859565616,
0.08165732026100159,
-0.02337740734219551,
0.04595496505498886,
-0.02190495654940605,
-0.00866200216114521,
0.05235375836491585,
-0.039047177881002426,
0.008943766355514526,
-0.0454823262989521,
-0.06009775027632713,
-0.016451440751552582,
0.009261888451874256,
-0.046682100743055344,
-0.02823103591799736,
-0.03582960367202759,
0.039483457803726196,
0.017969336360692978,
-0.0072986227460205555,
-0.0007129336590878665,
0.03682941198348999,
0.08289344608783722,
-0.041155871003866196,
0.06907787173986435,
-0.019723551347851753,
-0.01986897736787796,
-0.03204849734902382,
-0.025940559804439545,
0.0364658460021019,
0.03715662285685539,
0.02997616119682789,
0.00013974634930491447,
-0.0014781301142647862,
0.02675858698785305,
-0.01759667880833149,
0.01411551795899868,
-0.010761605575680733,
-0.026376841589808464,
-0.0063806138932704926,
-0.006507862824946642,
-0.02806743048131466,
0.018978236243128777,
-0.02839464135468006,
0.016505975276231766,
0.01608787290751934,
-0.004685479681938887,
-0.04595496505498886,
-0.06544219702482224,
0.009234621189534664,
0.03528425097465515,
-0.003706118790432811,
-0.02584966830909252,
0.0930006355047226,
0.015333469957113266,
0.010625267401337624,
0.058752547949552536,
0.009643634781241417,
-0.03666580840945244,
-0.02584966830909252,
0.0034402599558234215,
0.020596113055944443,
0.013551987707614899,
-0.0431554913520813,
0.014524531550705433,
-0.004676390439271927,
0.02314108796417713,
-0.03459347039461136,
-0.01658777892589569,
-0.008689269423484802,
-0.0020655193366110325,
-0.07078664004802704,
0.10114455223083496,
-0.028285572305321693,
0.07155013084411621,
-0.03421172499656677,
-0.015906089916825294,
0.0007856471929699183,
0.005698924418538809,
0.025395207107067108,
0.0010759333381429315,
0.009825418703258038,
-0.0009293700568377972,
0.013252045027911663,
0.015115329064428806,
-0.0016303741140291095,
-0.012515819631516933,
-0.036374952644109726,
0.021395962685346603,
-0.011588722467422485,
0.02823103591799736,
0.03090325929224491,
0.04068323224782944,
0.00016161722305696458,
-0.02883092314004898,
-0.06987772136926651,
-0.044137123972177505,
0.0021041485015302896,
0.016006071120500565,
-0.01598789170384407,
-0.03762926161289215,
0.016933167353272438,
0.05224468559026718,
0.04933614283800125,
0.02317744493484497,
0.018223833292722702,
-0.0769309401512146,
0.0588616207242012,
0.09678173810243607,
0.05358988791704178,
-0.011397848837077618,
-0.005517140496522188,
-0.06736910343170166,
0.03422990441322327,
0.04591860622167587,
0.12434016913175583,
0.021196000277996063,
-0.05697106570005417,
-0.03662944957613945,
-0.0006657834746874869,
-0.023668261244893074,
0.010988835245370865,
-0.03424808382987976,
0.08005762100219727,
0.010061738081276417,
-0.023541012778878212,
0.039919737726449966,
-0.04719109460711479,
-0.013624701648950577,
0.014342747628688812,
-0.043700844049453735,
0.035575106739997864,
0.03795647248625755,
-0.07445867359638214,
0.04635488986968994,
-0.00040560527122579515,
-0.028121965005993843,
0.007466772571206093,
0.03421172499656677,
-0.0021779981907457113,
0.006339712534099817,
0.05609850585460663,
-0.009725437499582767,
0.016951346769928932,
0.021723173558712006,
0.002483622170984745,
-0.02177770808339119,
-0.03284834697842598,
0.0034288982860744,
-0.011206976138055325,
-0.04486425966024399,
0.01047075167298317,
-0.017278557643294334,
0.033030129969120026,
-0.027067620307207108,
0.056716568768024445,
-0.018214745447039604,
-0.06995043903589249,
0.06980501115322113,
-0.032866526395082474,
0.005885253194719553,
0.008825607597827911,
-0.04933614283800125,
-0.030194303020834923,
-0.06449691951274872,
0.08005762100219727,
-0.056171219795942307,
0.018814630806446075,
-0.08332972973585129,
0.050390489399433136,
0.017451252788305283,
-0.03157585859298706,
0.04435526579618454,
-0.003517518052831292,
0.039556171745061874,
-0.005199018865823746,
-0.07947590947151184,
-0.023159265518188477,
0.009989024139940739,
0.027958359569311142,
0.026849478483200073,
-0.003651583567261696,
0.012815763242542744,
-0.01779664121568203,
-0.027612971141934395,
0.05758913233876228,
0.025395207107067108,
-0.04879079386591911,
-0.04021059349179268,
0.004594587720930576,
0.048281796276569366,
-0.019214555621147156,
-0.01829654723405838,
0.0038765412755310535,
-0.006598754785954952,
-0.07671279460191727,
0.05493508651852608,
-0.04304642230272293,
-0.004780916031450033,
0.025667883455753326,
-0.0007748538046143949,
-0.0252497810870409,
0.04697295278310776,
0.04279192537069321,
-0.0715864896774292,
-0.0531899631023407,
0.005153573118150234,
0.0625700131058693,
0.01766030304133892,
0.04839086905121803,
0.04264649748802185,
-0.026704052463173866,
0.04108315706253052,
0.028049252927303314,
-0.01445181854069233,
0.07642193883657455,
0.015369826927781105,
0.010098094120621681,
-0.03853818029165268,
-0.024595359340310097,
0.005403525661677122,
-0.01698770374059677,
0.037847403436899185,
0.05388073995709419,
-0.011961379088461399,
-0.0240863636136055,
0.014969902113080025,
-0.010343502275645733,
-0.04504604637622833,
0.010643445886671543,
0.05740734934806824,
0.07122292369604111,
0.03762926161289215,
-0.04221021756529808,
-0.06540583819150925,
0.011715970933437347,
-0.06696917861700058,
-0.0015042616287246346,
-0.05188111960887909,
-0.039956096559762955,
-0.030848724767565727,
0.02584966830909252,
-0.016833188012242317,
-0.025140710175037384,
0.00031300910632126033,
-0.010325324721634388,
0.028994528576731682,
0.009416405111551285,
0.03897446393966675,
0.08216631412506104,
0.026667695492506027,
-0.039992451667785645,
-0.005612577311694622,
0.0003877109265886247,
0.04879079386591911,
0.0668964684009552,
-0.044173482805490494,
0.03230299428105354,
0.03835639730095863,
-0.00784397404640913,
-0.01686045527458191,
0.024868033826351166,
0.01065253559499979,
-0.018069317564368248,
-0.07151377946138382,
0.003808372188359499,
0.07300440222024918,
-0.0037697432562708855,
-0.03632041811943054,
-0.04679116979241371,
-0.019959868863224983,
-0.06107938289642334,
-0.020996037870645523,
-0.017542144283652306,
0.0708957090973854,
0.019359983503818512,
0.027303937822580338,
0.008521119132637978,
0.0017769373953342438,
0.0077485376968979836,
0.03272109851241112,
-0.07511309534311295,
-0.0387926809489727,
0.002522251335904002,
0.04090137407183647,
-0.018369261175394058,
-0.02026890218257904,
-0.02348647639155388,
-0.009879954159259796,
0.02130507118999958,
0.027176689356565475,
-0.01433365885168314,
0.01986897736787796,
0.016378726810216904,
0.006176107097417116,
0.0207415409386158,
0.03690212592482567,
-0.01234312541782856,
-0.02405000664293766,
0.0026131432969123125,
0.033630017191171646,
-0.03719298169016838,
-0.0013542899396270514,
-0.04504604637622833,
-0.011870487593114376,
-0.014060982502996922,
-0.019160021096467972,
0.0033789079170674086,
-0.04071958735585213,
-0.007384969852864742,
-0.027049440890550613,
-0.008557476103305817,
-0.036411311477422714,
-0.027903825044631958,
-0.01073433831334114,
0.030248837545514107,
-0.010797962546348572,
-0.07802163809537888,
0.05391709879040718,
-0.09343691170215607,
0.00617156270891428,
0.011025192216038704,
0.06249729543924332,
0.027485722675919533,
-0.03821096941828728,
-0.005798905622214079,
0.01809658482670784,
0.03204849734902382,
0.02146867662668228,
0.05013599246740341,
0.049626998603343964,
0.018614668399095535,
-0.014260944910347462,
-0.02365008182823658,
-0.04802729934453964,
0.0105343759059906,
-0.02619505673646927,
0.03670216351747513,
-0.00607158150523901,
0.0025631526950746775,
-0.001163416774943471,
0.004235564265400171,
-0.013679237104952335,
-0.014860832132399082,
0.03708391264081001,
-0.007984857074916363,
0.01419732067734003,
0.01023443229496479,
0.03886539489030838,
0.014824475161731243,
-0.03737476468086243,
0.0052081081084907055,
0.04141036793589592,
-0.12564902007579803,
0.025031639263033867,
0.06896880269050598,
0.020396150648593903,
0.047082025557756424,
-0.0006231778534129262,
0.06460598856210709,
-0.03128500655293465,
-0.008457494899630547,
0.03264838457107544,
0.04224657267332077,
-0.02555881254374981,
-0.031230470165610313,
0.010897943750023842,
0.024704428389668465,
0.008652912452816963,
0.021886778995394707,
0.018278369680047035,
0.003465255256742239,
-0.011506919749081135,
0.02412272058427334,
-0.028776388615369797,
0.01035259198397398,
-0.010679802857339382,
0.04566410928964615,
0.0699140802025795,
-0.027576614171266556,
-0.09874500334262848,
-0.019887156784534454,
-0.03755654767155647,
0.0005501802661456168,
-0.05155390873551369,
0.013615612871944904,
0.01252490933984518,
0.05024506524205208,
0.025740597397089005,
-0.030885081738233566,
0.0695868656039238,
-0.009361869655549526,
-0.032393887639045715,
0.00015906088810879737,
0.0012293134350329638,
0.017342181876301765,
-0.004903620108962059,
-0.0006754407077096403,
0.0044287098571658134,
0.006416970863938332,
0.02799471653997898,
0.006794172339141369,
-0.019123664125800133,
0.06500591337680817,
-0.03792011737823486,
-0.023359227925539017,
0.06267908215522766,
-0.017842087894678116,
0.05646207183599472,
-0.04304642230272293,
-0.008675635792315006,
-0.028158321976661682,
-0.022759340703487396,
-0.023468298837542534,
-0.02823103591799736,
-0.009452762082219124,
0.0014213226968422532,
0.011206976138055325,
-0.02659498155117035,
-0.033902693539857864,
-0.05260825529694557,
-0.03110322169959545,
0.031430430710315704,
0.02357736974954605,
0.012034093029797077,
0.06402428448200226,
-0.006907787173986435,
-0.01005264837294817,
-0.03488432615995407,
-0.019523588940501213,
0.04897257685661316,
-0.008193908259272575,
-0.01409733947366476,
0.03157585859298706,
0.00913009513169527,
0.03857453912496567,
-0.028921814635396004,
-0.012815763242542744,
0.07918505370616913,
-0.0015122146578505635,
0.024195434525609016,
0.03802918642759323,
-0.011397848837077618,
-0.06275179237127304,
-0.05977053940296173,
0.0414830818772316,
-0.022468486800789833,
0.017869355157017708,
-0.007771260570734739,
-0.006176107097417116,
0.04002881050109863,
-0.021595925092697144,
-0.02150503359735012,
0.020886966958642006,
0.06504227221012115,
-0.04933614283800125,
-0.03857453912496567,
0.009425493888556957,
0.007280444260686636,
-0.006780538707971573,
-0.047918230295181274,
0.03817461431026459,
0.015142597258090973,
-0.017987513914704323,
0.0015326653374359012,
-0.021123286336660385,
-0.01575157232582569,
0.018941879272460938,
-0.06965958327054977,
0.03130318224430084,
-0.037011198699474335,
-0.02903088554739952,
-0.008466583676636219,
0.011197886429727077,
0.06369706988334656,
0.05682564154267311,
-0.01445181854069233,
0.07020493596792221,
0.0354660339653492,
0.029648950323462486,
-0.027249403297901154,
0.008861963637173176,
0.024668071419000626,
-0.09758158773183823,
0.03632041811943054,
0.08209359645843506,
0.01005264837294817,
-0.021323248744010925,
0.018451062962412834,
0.015297112986445427,
-0.026776764541864395,
-0.062097374349832535,
0.0016190126771107316,
0.000014210741937858984,
0.06478777527809143,
-0.02612234279513359,
0.03722933679819107,
0.007939411327242851,
0.02639501914381981,
-0.045009687542915344,
-0.08013033121824265,
0.04671845585107803,
0.006807806435972452,
-0.002247303258627653,
-0.0031607672572135925,
-0.056643854826688766,
0.007984857074916363,
-0.005094493273645639,
-0.023831866681575775,
0.049954209476709366,
-0.0230865515768528,
-0.04311913624405861,
0.0011759144254028797,
-0.005062681157141924,
0.03642949089407921,
-0.01823292300105095,
-0.010997924953699112,
-0.06962322443723679,
0.03941074386239052,
-0.019178198650479317,
-0.028012895956635475,
0.02432268299162388,
0.003194851567968726
]
|
42,152 | werkzeug.datastructures.headers | items | null | def items(self, lower=False):
for key, value in self:
if lower:
key = key.lower()
yield key, value
| (self, lower=False) | [
0.06024112552404404,
-0.03454145789146423,
-0.034593064337968826,
-0.05907139554619789,
0.0033092196099460125,
-0.01509468536823988,
0.023205392062664032,
-0.04183506965637207,
0.12075748294591904,
-0.015266704373061657,
-0.031651534140110016,
0.029707716777920723,
0.03897955268621445,
0.00986530166119337,
-0.0665714368224144,
-0.008381635881960392,
-0.026508159935474396,
0.05301631987094879,
-0.03115267865359783,
-0.005216482561081648,
-0.015154892578721046,
0.04823418706655502,
0.057832859456539154,
0.013623921200633049,
0.005715338047593832,
-0.007087191566824913,
-0.03110107220709324,
-0.02852078527212143,
0.06227095425128937,
-0.007848376408219337,
-0.006588335614651442,
-0.006261499132961035,
0.019317757338285446,
-0.020934738218784332,
0.04276397451758385,
-0.06402555108070374,
0.010863012634217739,
-0.00017094408394768834,
0.021278776228427887,
0.015567738562822342,
0.04819978028535843,
-0.013761536218225956,
0.030000150203704834,
0.009925507940351963,
0.019283352419734,
0.020831525325775146,
0.03166873753070831,
0.0025630861055105925,
0.09103256464004517,
0.002462024800479412,
0.024031084030866623,
-0.013477704487740993,
0.020676709711551666,
-0.03440384194254875,
-0.016548248007893562,
0.004119860008358955,
-0.021846439689397812,
-0.014776449650526047,
-0.02255171723663807,
0.0825004130601883,
0.0062184943817555904,
-0.022482911124825478,
-0.03836028277873993,
-0.058968182653188705,
0.01899092085659504,
-0.0438648983836174,
-0.01655684784054756,
-0.01145647931843996,
-0.0033307219855487347,
-0.020143449306488037,
0.0027867110911756754,
-0.009297638200223446,
-0.0011998339323326945,
0.056009452790021896,
-0.0046144151128828526,
0.06901410967111588,
-0.07961048930883408,
0.029638908803462982,
0.0370529368519783,
-0.057454414665699005,
0.016470838338136673,
0.01282403152436018,
-0.052534665912389755,
-0.015455925837159157,
-0.044759396463632584,
0.01175751257687807,
-0.0347822830080986,
-0.01687508448958397,
0.09461056441068649,
0.06588335335254669,
-0.008510650135576725,
0.06725951284170151,
0.01154248882085085,
0.05817689746618271,
-0.00946105644106865,
0.034593064337968826,
-0.025149207562208176,
-0.018474863842129707,
-0.020229458808898926,
0.056250281631946564,
0.00497565558180213,
0.03366415947675705,
0.035367149859666824,
0.004558509215712547,
-0.0138045409694314,
-0.028159543871879578,
-0.009598671458661556,
-0.06000030040740967,
0.050264012068510056,
0.05250026285648346,
-0.09516102820634842,
-0.028314361348748207,
-0.005840051919221878,
0.048991069197654724,
-0.046789225190877914,
-0.04094057157635689,
-0.014363603666424751,
-0.0002627324720378965,
-0.031290292739868164,
-0.005556220188736916,
-0.01657405123114586,
0.024633150547742844,
0.010493171401321888,
0.023033371195197105,
0.014053969644010067,
0.00035075790947303176,
0.05453008785843849,
-0.025751275941729546,
-0.015326911583542824,
0.04245433956384659,
0.01672026701271534,
0.012454190291464329,
0.008502049371600151,
-0.023945074528455734,
0.022224880754947662,
-0.03457586094737053,
0.027110226452350616,
0.010622185654938221,
0.05194979906082153,
0.06467922031879425,
0.03622724488377571,
0.0007294689421541989,
0.020212257280945778,
0.049059879034757614,
-0.02019505575299263,
-0.0809178352355957,
0.005857253912836313,
0.04014928266406059,
0.01981661282479763,
-0.0038553804624825716,
0.002520081354305148,
0.03290727362036705,
0.038841936737298965,
0.06412876397371292,
-0.04004606977105141,
0.019937025383114815,
-0.080160953104496,
-0.018818901851773262,
-0.039977263659238815,
0.029312072321772575,
0.015352713875472546,
-0.019231747835874557,
-0.03141070902347565,
0.01081140711903572,
-0.0017115911468863487,
0.01973060332238674,
-0.004433794878423214,
-0.006162588018923998,
0.054495684802532196,
-0.04045891761779785,
0.02625013142824173,
-0.07596368342638016,
-0.07830314338207245,
0.04334884136915207,
0.005341196432709694,
-0.009125619195401669,
-0.027488669380545616,
0.03622724488377571,
0.016075195744633675,
0.01528390683233738,
0.025682467967271805,
0.0017094408394768834,
-0.023635439574718475,
-0.039323590695858,
0.0055304174311459064,
-0.00012451234215404838,
0.031187081709504128,
0.02201845869421959,
0.017141714692115784,
-0.020848728716373444,
-0.008910594508051872,
-0.04045891761779785,
-0.052844300866127014,
-0.006407715380191803,
0.009134219959378242,
0.0158773735165596,
-0.034696273505687714,
-0.00161160493735224,
-0.04039011150598526,
0.040665339678525925,
-0.06550491601228714,
-0.056697532534599304,
-0.002168517094105482,
0.04985116794705391,
0.01289283949881792,
0.006523828487843275,
0.017571762204170227,
-0.07128475606441498,
0.009658878669142723,
-0.039598822593688965,
0.015120488591492176,
-0.022637728601694107,
-0.021227169781923294,
0.003249012865126133,
-0.006055076140910387,
-0.0283659677952528,
-0.007740864530205727,
-0.031359102576971054,
-0.02640494890511036,
-0.009521262720227242,
-0.0006214193999767303,
0.027815505862236023,
-0.009125619195401669,
-0.03443824499845505,
0.07438110560178757,
-0.01100062858313322,
0.015017276629805565,
-0.050711262971162796,
-0.06543610990047455,
0.06330306828022003,
0.030378591269254684,
-0.013383094221353531,
0.027798304334282875,
0.009013806469738483,
-0.03939239680767059,
-0.004506903234869242,
-0.006880768109112978,
-0.013899152167141438,
-0.0098308976739645,
0.013899152167141438,
-0.004081155639141798,
0.06340628117322922,
0.012325176037847996,
0.02678338997066021,
-0.044587377458810806,
-0.03110107220709324,
-0.01297884900122881,
0.030963458120822906,
-0.0010165260173380375,
0.036880917847156525,
-0.012393984012305737,
-0.004971355199813843,
0.01032115239650011,
0.021726025268435478,
0.01914573833346367,
-0.03591760993003845,
-0.01096622459590435,
-0.001520219724625349,
-0.0219324491918087,
-0.0298797357827425,
-0.02291295863687992,
0.06901410967111588,
0.0063432082533836365,
0.0763765275478363,
0.0348166860640049,
0.05432366579771042,
0.057901665568351746,
0.018354449421167374,
-0.010828609578311443,
0.03591760993003845,
-0.0173911415040493,
-0.0177695844322443,
-0.00154602259863168,
0.02384186163544655,
0.006631340365856886,
0.07575725764036179,
0.0007343069883063436,
-0.001597628346644342,
-0.07149118185043335,
-0.007168900687247515,
-0.01990262232720852,
0.06120443344116211,
-0.06065397337079048,
-0.03497150540351868,
0.04076855257153511,
-0.03942680358886719,
-0.012239166535437107,
-0.03510912135243416,
-0.01164570078253746,
-0.030000150203704834,
0.002384616294875741,
-0.02943248674273491,
-0.017442747950553894,
-0.07782149314880371,
0.006106681656092405,
-0.04575710743665695,
-0.0016492342110723257,
-0.001311646425165236,
0.04627316817641258,
-0.009177224710583687,
0.047614917159080505,
-0.004902547225356102,
-0.006704448722302914,
0.011146844364702702,
-0.02329140156507492,
0.05157135799527168,
-0.01161129679530859,
0.04372728243470192,
-0.08174353092908859,
0.007005482446402311,
-0.062133338302373886,
0.018062015995383263,
-0.0119123300537467,
0.008274124003946781,
-0.05862414464354515,
-0.02277534268796444,
-0.015266704373061657,
0.10080325603485107,
-0.0005692760460078716,
0.039323590695858,
-0.03540155291557312,
-0.020384276285767555,
-0.047924552112817764,
-0.0162644162774086,
-0.010854411870241165,
0.06306224316358566,
-0.01164570078253746,
0.012411185540258884,
0.025665266439318657,
-0.01252299826592207,
-0.014329199679195881,
0.032649245113134384,
-0.040424514561891556,
0.018044814467430115,
-0.08504629880189896,
0.04555068537592888,
0.036433666944503784,
0.0620301254093647,
0.03147951513528824,
-0.04331443831324577,
-0.01444961316883564,
-0.04555068537592888,
0.010458767414093018,
-0.007727962918579578,
-0.03123868815600872,
-0.020177852362394333,
-0.022723738104104996,
-0.03283846750855446,
0.039323590695858,
-0.017717977985739708,
0.0431080125272274,
-0.0264737568795681,
0.05078006908297539,
0.010828609578311443,
0.07596368342638016,
0.006897970102727413,
-0.052156224846839905,
-0.0756884515285492,
-0.008841787464916706,
0.044449761509895325,
0.06474802643060684,
-0.06990860402584076,
-0.011705907061696053,
-0.00423382269218564,
-0.018818901851773262,
-0.060929205268621445,
0.011473680846393108,
0.00918582547456026,
-0.00979649368673563,
-0.007706460542976856,
0.00995131116360426,
0.02444393001496792,
-0.009744888171553612,
-0.04703005030751228,
0.005323994439095259,
-0.03836028277873993,
0.018801700323820114,
0.03101506270468235,
-0.04668601229786873,
0.06725951284170151,
0.04813097417354584,
0.010957623831927776,
0.0628214180469513,
0.06770676374435425,
-0.0276090819388628,
-0.024185901507735252,
0.07135356962680817,
0.022190477699041367,
0.01157689280807972,
0.025011593475937843,
-0.048991069197654724,
-0.003629605285823345,
-0.03280406445264816,
0.04252314940094948,
-0.013400296680629253,
-0.04802776128053665,
-0.014724844135344028,
-0.06750033795833588,
-0.007087191566824913,
-0.015344113111495972,
0.008893392980098724,
-0.06725951284170151,
-0.061754897236824036,
-0.02201845869421959,
0.014845257624983788,
-0.04221351444721222,
0.006966778077185154,
0.027660688385367393,
0.0340598039329052,
0.016014987602829933,
-0.024873977527022362,
-0.032718054950237274,
-0.007005482446402311,
-0.08649125695228577,
-0.016892286017537117,
-0.05514935776591301,
0.006708749104291201,
0.009719084948301315,
-0.00033059940324164927,
0.021450795233249664,
0.006915172096341848,
-0.04978235810995102,
-0.03003455325961113,
-0.0023652641102671623,
0.017064305022358894,
-0.03560797497630119,
0.04400251433253288,
-0.038394685834646225,
0.02495998702943325,
-0.027505870908498764,
-0.0026469456497579813,
-0.04231672361493111,
-0.00161160493735224,
-0.03849789872765541,
0.04923189803957939,
0.03753459081053734,
-0.03275245800614357,
0.0006456095725297928,
-0.013185271993279457,
-0.025630861520767212,
0.0036360560916364193,
0.001995422877371311,
0.006059376522898674,
-0.06264939904212952,
0.03290727362036705,
0.009366446174681187,
-0.0055175162851810455,
0.02466755360364914,
0.07892241328954697,
0.015593540854752064,
-0.005134773440659046,
0.03428342938423157,
-0.02284415066242218,
-0.04675482213497162,
0.0370529368519783,
0.06694987416267395,
0.006919472478330135,
-0.03387058153748512,
-0.011327465064823627,
0.038704320788383484,
0.08793622255325317,
-0.031737543642520905,
0.015868771821260452,
0.0016481589991599321,
-0.0026512460317462683,
0.033784572035074234,
-0.04985116794705391,
0.05917460843920708,
0.02086593024432659,
0.022568920627236366,
0.0006203442462719977,
-0.0007563469698652625,
0.019111333414912224,
-0.030671024695038795,
-0.01725352741777897,
-0.026146920397877693,
-0.01717611774802208,
0.01316807046532631,
-0.034386638551950455,
-0.05862414464354515,
0.028606794774532318,
-0.015507531352341175,
0.033853381872177124,
-0.008760077878832817,
0.01959298737347126,
-0.029449688270688057,
0.025613659992814064,
-0.028950832784175873,
-0.03526393696665764,
-0.014157180674374104,
0.0298797357827425,
-0.005250886548310518,
0.013004652224481106,
0.040424514561891556,
0.013271281495690346,
-0.0027630585245788097,
-0.04252314940094948,
0.00660123722627759,
-0.039220377802848816,
0.018251238390803337,
0.009805094450712204,
-0.018509266898036003,
0.01876729540526867,
0.003081294009461999,
0.04190387949347496,
0.027867112308740616,
0.002494278596714139,
-0.04396811127662659,
-0.001590102561749518,
-0.07021824270486832,
0.03204717859625816,
-0.01221336331218481,
-0.02843477576971054,
-0.052293840795755386,
0.009065411984920502,
-0.03194396570324898,
-0.06970218569040298,
0.014062570407986641,
-0.04441535845398903,
0.014501219615340233,
0.0068162609823048115,
-0.03956441953778267,
-0.019283352419734,
0.057075973600149155,
-0.013950757682323456,
0.0011729559628292918,
0.00474773021414876,
-0.030843043699860573,
0.026439351961016655,
0.007590347435325384,
-0.013830344192683697,
-0.0431080125272274,
-0.0015632245922461152,
0.009409450925886631,
0.004203719552606344,
0.024031084030866623,
0.030086159706115723,
0.011241455562412739,
-0.016324622556567192,
0.0816747173666954,
0.06209893524646759,
0.04888786002993584,
0.013331488706171513,
-0.00956426840275526,
0.08408299088478088,
-0.005715338047593832,
-0.07121594995260239,
-0.04400251433253288,
-0.08834906667470932,
-0.010854411870241165,
-0.07355540990829468,
-0.04751170426607132,
-0.03462746739387512,
-0.03457586094737053,
-0.007302215322852135,
-0.04751170426607132,
-0.030000150203704834,
0.008295626379549503,
-0.012075748294591904,
0.035143524408340454,
0.05016079917550087,
0.017365338280797005,
-0.07314256578683853,
0.030378591269254684,
-0.019833814352750778,
0.0075000375509262085,
-0.010166334919631481,
0.04923189803957939,
0.07768387347459793,
0.045275457203388214,
0.03268364816904068,
0.006949576083570719,
0.03994286060333252,
0.04056213051080704,
-0.017666373401880264,
0.007095792330801487,
-0.023033371195197105,
-0.0008660092134959996,
-0.04438095539808273,
-0.059484243392944336,
-0.020625103265047073,
0.051330532878637314,
0.00020333207794465125,
0.01869848743081093,
-0.025596458464860916,
-0.04355526342988014,
-0.003629605285823345,
0.05415164679288864,
-0.03670889884233475,
0.02284415066242218,
-0.0006214193999767303,
-0.05009199306368828,
-0.03939239680767059,
0.01733093522489071,
0.010983426123857498,
-0.07961048930883408,
0.02466755360364914,
-0.02330860309302807,
-0.09516102820634842,
-0.015068882144987583,
-0.0249771885573864,
0.020487487316131592,
0.030000150203704834,
0.04272957146167755,
0.030688226222991943,
0.009710484184324741,
0.04424333944916725,
-0.043383244425058365,
-0.011275858618319035,
0.025734074413776398,
-0.025080399587750435,
0.002659847028553486,
0.047546107321977615,
0.008768679574131966,
0.015000075101852417,
0.022637728601694107,
0.003898385213688016,
-0.0378098227083683,
0.03466187044978142,
-0.03371576592326164,
-0.0061238836497068405,
-0.08208756893873215,
-0.014896863140165806,
0.024254707619547844,
-0.04004606977105141,
-0.01444961316883564,
0.07967929542064667,
0.010957623831927776,
0.016169805079698563,
-0.09522983431816101,
-0.015679551288485527,
-0.0431424155831337,
0.06787878274917603,
0.0068076602183282375,
-0.0340426005423069,
0.0650576651096344,
-0.0010525424731895328,
-0.003274815622717142,
-0.04627316817641258,
-0.042385533452034,
-0.006751753855496645,
0.015645146369934082,
0.031513918191194534,
0.03677770495414734,
0.0003736042126547545,
0.05002318695187569,
-0.021381987258791924,
-0.002498578978702426,
-0.0166428592056036,
-0.029226062819361687,
-0.007087191566824913,
0.04503462836146355,
-0.04555068537592888,
0.04682362824678421,
0.002922176383435726,
0.019248949363827705,
0.0051691774278879166,
-0.061307646334171295,
-0.0035995019134134054,
-0.010080325417220592,
-0.024392323568463326,
0.022826949134469032,
0.018182430416345596,
-0.06247737631201744,
0.04324562847614288,
0.010381359606981277,
-0.019283352419734,
0.04479380324482918,
-0.0010724322637543082,
-0.0022728038020431995,
0.04771813005208969,
0.015369916334748268,
-0.002956580137833953,
-0.07596368342638016,
0.01761476695537567,
0.051158513873815536,
0.018182430416345596,
0.003008185885846615,
0.037706609815359116,
-0.036124031990766525,
-0.023945074528455734,
-0.02556205354630947,
0.0230849776417017,
0.03794743865728378,
0.012273570522665977,
-0.03299328312277794,
-0.05415164679288864,
-0.0083214296028018,
-0.012264969758689404,
-0.012411185540258884,
0.011301661841571331,
-0.03911716863512993,
0.0036038022954016924,
-0.024839574471116066,
-0.004868143703788519,
0.0461355522274971,
0.039151571691036224,
-0.05122731998562813,
0.06013791635632515,
0.016212809830904007,
0.006725951097905636,
-0.027643486857414246,
0.05797047168016434,
0.00903960969299078,
0.0033608253579586744,
-0.013030455447733402,
0.01823403686285019,
0.03805064782500267,
0.03598641976714134,
0.062442973256111145,
-0.0010568429715931416,
0.002305057365447283,
-0.059793878346681595,
0.0022513014264404774,
0.06725951284170151,
-0.02662857249379158,
0.014699040912091732,
0.012075748294591904,
0.05270668491721153,
0.03197837248444557,
0.03615843877196312,
-0.027884313836693764,
-0.020005833357572556,
0.039598822593688965,
0.01748575270175934,
-0.0031307495664805174,
-0.049885571002960205,
0.014010964892804623,
-0.09089495241641998,
0.07348660379648209,
0.014174383133649826,
-0.014561425894498825,
-0.047167666256427765,
0.0431424155831337,
0.008334330283105373,
0.011886526830494404,
-0.05883057042956352,
0.020401477813720703,
0.0017051403410732746,
0.08332610130310059,
-0.00986530166119337,
0.02329140156507492,
0.023876266553997993,
0.010097527876496315,
-0.059484243392944336,
-0.060929205268621445,
0.05914020538330078,
0.028503581881523132,
-0.012781026773154736,
0.00325331324711442,
-0.012987449765205383,
0.05456449091434479,
0.0029974346980452538,
0.017571762204170227,
0.0024082688614726067,
-0.0044940016232430935,
0.007388224825263023,
-0.03805064782500267,
-0.011499484069645405,
0.01066519133746624,
0.01959298737347126,
-0.01365832518786192,
-0.014544224366545677,
0.06461041420698166,
-0.017520155757665634,
-0.023583833128213882,
0.0855279490351677,
0.0438648983836174
]
|
42,153 | werkzeug.datastructures.headers | keys | null | def keys(self, lower=False):
for key, _ in self.items(lower):
yield key
| (self, lower=False) | [
0.03276480361819267,
-0.03830702602863312,
-0.03817225992679596,
-0.04022742807865143,
0.01660981774330139,
0.011505584232509136,
0.01450411044061184,
-0.0529964379966259,
0.12795960903167725,
-0.018799753859639168,
-0.012263638898730278,
0.006856182590126991,
0.03995789960026741,
-0.005184250883758068,
-0.06259845942258835,
-0.021680360659956932,
-0.011059174314141273,
0.03534219041466713,
-0.04858287423849106,
-0.02506633847951889,
-0.014032432809472084,
0.05582650750875473,
0.07014531642198563,
0.010882294736802578,
-0.025217948481440544,
0.013577600009739399,
-0.03244473412632942,
-0.029345134273171425,
0.07775955647230148,
-0.01621394418179989,
-0.058083824813365936,
-0.005087388679385185,
0.031299229711294174,
-0.011353973299264908,
0.015556964091956615,
-0.08598023653030396,
0.021596131846308708,
-0.004325122572481632,
0.03264688327908516,
0.024594658985733986,
0.06499054282903671,
0.006489789579063654,
0.014024009928107262,
-0.013838707469403744,
0.0009849445195868611,
0.016247635707259178,
0.05026744306087494,
0.012398404069244862,
0.06492315977811813,
0.008102761581540108,
0.041541390120983124,
-0.02467888779938221,
-0.0007475260645151138,
-0.04352917894721031,
-0.022000428289175034,
-0.018547069281339645,
-0.01422615721821785,
-0.01817646436393261,
-0.025083184242248535,
0.07573807239532471,
-0.017805859446525574,
-0.018681833520531654,
-0.014773641712963581,
-0.03551064431667328,
0.04255212843418121,
-0.05319858714938164,
-0.011766691692173481,
-0.0002443936245981604,
0.00017543173453304917,
-0.018934518098831177,
-0.011935148388147354,
-0.009399876929819584,
0.0003590230771806091,
0.05764583870768547,
-0.022067811340093613,
0.010006320662796497,
-0.08254372328519821,
0.03316909819841385,
0.015809649601578712,
-0.046190790832042694,
0.0018582865595817566,
-0.0033017487730830908,
-0.043293338268995285,
0.015531696379184723,
-0.02548747882246971,
0.030558021739125252,
-0.00819541234523058,
-0.03232681751251221,
0.07412089407444,
0.07277324050664902,
-0.04871764034032822,
0.0767488181591034,
0.00269109383225441,
0.07034746557474136,
-0.0034028226509690285,
0.020787540823221207,
-0.041406624019145966,
0.032528962939977646,
0.004320911131799221,
0.034937892109155655,
0.014403036795556545,
0.03062540479004383,
0.05862288549542427,
0.026329761371016502,
0.00015358501696027815,
-0.02968204766511917,
-0.04103602096438408,
-0.04730260372161865,
0.050873883068561554,
0.045078977942466736,
-0.09447044879198074,
-0.012533169239759445,
0.023954523727297783,
0.03276480361819267,
-0.02548747882246971,
-0.0195072703063488,
0.0017003585817292333,
-0.020332708954811096,
0.004274585749953985,
-0.0029058759100735188,
-0.012836391106247902,
0.021276064217090607,
0.006190779153257608,
0.035038966685533524,
0.017106764018535614,
0.012474209070205688,
0.04214783385396004,
-0.0016235002549365163,
-0.010638032108545303,
0.04460730031132698,
0.056432951241731644,
0.04952623322606087,
-0.002263635164126754,
-0.03033902868628502,
0.004506213124841452,
-0.019136667251586914,
0.06283430010080338,
0.021730897948145866,
0.049896836280822754,
0.08449781686067581,
0.0354432612657547,
0.00866709090769291,
0.03384292498230934,
0.06552960723638535,
-0.01778901368379593,
-0.053602881729602814,
0.007997475564479828,
0.0390145406126976,
0.051042340695858,
-0.01391451247036457,
0.012701625935733318,
0.02405559830367565,
0.031164465472102165,
0.06394611299037933,
-0.05289536342024803,
0.019271431490778923,
-0.08726050704717636,
-0.025992849841713905,
-0.04366394504904747,
0.0019477790920063853,
0.011623503640294075,
-0.027391038835048676,
-0.019237739965319633,
-0.01716572418808937,
-0.004388293717056513,
0.010958099737763405,
0.0011728788958862424,
0.003996632061898708,
0.04295642673969269,
-0.03197305649518967,
0.02282586507499218,
-0.04676354303956032,
-0.060880206525325775,
0.03918299823999405,
0.010966522619128227,
-0.0030406410805881023,
-0.033960845321416855,
0.04726891592144966,
-0.00036060233833268285,
0.024594658985733986,
0.05208677053451538,
0.004110340494662523,
-0.03830702602863312,
-0.0445399172604084,
0.020181097090244293,
-0.01180038321763277,
0.028654463589191437,
0.02639714442193508,
0.011758268810808659,
-0.028401779010891914,
-0.03369131311774254,
-0.02314593270421028,
-0.024409357458353043,
0.014428305439651012,
0.0005780166247859597,
0.010410616174340248,
-0.03931776434183121,
-0.025790700688958168,
-0.06061067432165146,
0.007113078609108925,
-0.06445148587226868,
-0.04443884268403053,
-0.03183829039335251,
0.026750903576612473,
0.018024852499365807,
0.0009159825858660042,
0.019625190645456314,
-0.04346179589629173,
0.0287723820656538,
-0.03989051654934883,
0.016651932150125504,
-0.046056028455495834,
-0.02055170200765133,
0.0065740179270505905,
-0.009180882945656776,
-0.022977476939558983,
-0.0076521397568285465,
-0.01824384741485119,
-0.03615077957510948,
-0.02324700728058815,
0.03527480736374855,
0.056230802088975906,
-0.004809434991329908,
-0.038643937557935715,
0.05781429633498192,
-0.02045062743127346,
0.029277753084897995,
-0.04477575793862343,
-0.0816003605723381,
0.025150565430521965,
0.02523479424417019,
0.006447675172239542,
0.013122767210006714,
0.00970309879630804,
-0.0380374938249588,
-0.005415878724306822,
-0.004211414139717817,
-0.004264057148247957,
0.029631510376930237,
0.022674255073070526,
-0.019692573696374893,
0.08045485615730286,
0.023162778466939926,
0.027188891544938087,
-0.026649829000234604,
-0.012432094663381577,
-0.019692573696374893,
0.034904200583696365,
0.011623503640294075,
0.03631923720240593,
-0.020602239295840263,
-0.03463467210531235,
0.014689412899315357,
0.03128238394856453,
0.03020426258444786,
-0.02776164375245571,
-0.015582232736051083,
-0.004080860409885645,
-0.009686253033578396,
-0.002842704765498638,
-0.019877875223755836,
0.07944411784410477,
-0.039385147392749786,
0.07257109135389328,
0.04726891592144966,
0.036757223308086395,
0.06768584996461868,
0.01461360789835453,
-0.03456728905439377,
0.04117078706622124,
-0.018648141995072365,
-0.017839550971984863,
-0.03379238769412041,
0.00403874646872282,
0.016348710283637047,
0.055321138352155685,
-0.006519269198179245,
0.0038871353026479483,
-0.07007793337106705,
0.011842496693134308,
-0.039452530443668365,
0.03456728905439377,
-0.0529964379966259,
-0.010056857019662857,
0.004847337957471609,
-0.013560754247009754,
-0.005988630931824446,
-0.06044221669435501,
-0.021107608452439308,
-0.03463467210531235,
0.024763116613030434,
-0.015624347142875195,
-0.021057071164250374,
-0.07176250219345093,
0.017890088260173798,
-0.05481576919555664,
-0.00796799547970295,
-0.036689840257167816,
0.03847547993063927,
0.008220680989325047,
0.061924636363983154,
-0.006152876187115908,
0.002579491352662444,
-0.009711521677672863,
-0.021410830318927765,
0.034061919897794724,
0.009526219218969345,
0.033185943961143494,
-0.06940411031246185,
0.007921670563519001,
-0.08739527314901352,
0.021023379638791084,
0.0077026765793561935,
-0.02510003000497818,
-0.05855550616979599,
-0.058184899389743805,
0.002752159256488085,
0.098850317299366,
0.017502637580037117,
0.06461994349956512,
-0.02321331575512886,
0.00659928610548377,
-0.05191831663250923,
-0.030490640550851822,
-0.02548747882246971,
0.03834071755409241,
0.015380085445940495,
0.0127605851739645,
0.013249109499156475,
-0.024021906778216362,
-0.008953467011451721,
-0.005331650376319885,
-0.0448768325150013,
0.01497578900307417,
-0.07344706356525421,
0.0481111966073513,
0.05286167189478874,
0.04821227118372917,
0.009172460064291954,
-0.03387661650776863,
0.003508108202368021,
-0.07897244393825531,
0.027913253754377365,
-0.011244475841522217,
-0.07142558693885803,
-0.013931358233094215,
-0.01144662406295538,
-0.023786067962646484,
0.02873869054019451,
0.0008175408001989126,
0.034904200583696365,
-0.010360078886151314,
0.07553593069314957,
0.02237103320658207,
0.09561595320701599,
0.011741423048079014,
-0.03874501213431358,
-0.04086756333708763,
-0.016003374010324478,
0.06960625946521759,
0.06785430759191513,
-0.04740367829799652,
-0.04639293998479843,
-0.029345134273171425,
-0.01513582281768322,
-0.06054329127073288,
0.010562227107584476,
-0.01100863702595234,
0.00778690492734313,
-0.0021330814342945814,
-0.004489367827773094,
0.02292693965137005,
-0.02737419307231903,
-0.03205728530883789,
0.01398189552128315,
-0.055287446826696396,
0.025992849841713905,
0.046224482357501984,
-0.037532124668359756,
0.07775955647230148,
0.03453359752893448,
0.00534849613904953,
0.07742264121770859,
0.06933672726154327,
-0.04275427758693695,
-0.0012086759088560939,
0.06141926720738411,
-0.007660562638193369,
0.0015898088458925486,
0.0222699586302042,
-0.016837233677506447,
-0.02201727405190468,
-0.015481159090995789,
0.04383239895105362,
-0.028115401044487953,
-0.047942738980054855,
0.003634450491517782,
-0.061823561787605286,
-0.0057191005907952785,
-0.034769438207149506,
0.03689198940992355,
-0.041372932493686676,
-0.07486210018396378,
-0.018766062334179878,
0.03188882768154144,
-0.04480944946408272,
0.011960417032241821,
-0.013628136366605759,
0.026413990184664726,
-0.013148035854101181,
-0.03921668976545334,
-0.013872398994863033,
-0.007163615897297859,
-0.06832598894834518,
0.007989052683115005,
-0.061048660427331924,
-0.01025900524109602,
0.008334388956427574,
0.006738262716680765,
0.03520742431282997,
0.011733000166714191,
-0.07129082083702087,
-0.009374608285725117,
-0.0010496950708329678,
0.058959800750017166,
0.010907563380897045,
0.016626663506031036,
-0.04528112709522247,
0.02461150474846363,
-0.006034956779330969,
-0.025571707636117935,
-0.038643937557935715,
-0.01347652543336153,
-0.036555077880620956,
0.026835132390260696,
0.019305123016238213,
-0.02991788648068905,
0.0060265338979661465,
-0.016163408756256104,
-0.011000214144587517,
0.004409350920468569,
-0.0030680152121931314,
0.014318808913230896,
-0.05296274647116661,
0.057308927178382874,
0.01817646436393261,
-0.001492946408689022,
0.05282798036932945,
0.1001305878162384,
0.013594445772469044,
-0.0006459256983362138,
0.010781221091747284,
-0.010132662951946259,
-0.08672144263982773,
0.03551064431667328,
0.07567068934440613,
-0.016626663506031036,
-0.0048557608388364315,
-0.026380298659205437,
0.027593186125159264,
0.08281324803829193,
-0.0005611709784716368,
0.014091392047703266,
-0.005104233976453543,
0.018681833520531654,
0.006152876187115908,
-0.05289536342024803,
0.058083824813365936,
0.01947358064353466,
0.026936205103993416,
-0.008064858615398407,
0.012996424920856953,
-0.007277323864400387,
-0.043293338268995285,
-0.01775532215833664,
-0.00643925229087472,
-0.004417773801833391,
0.03911561518907547,
-0.04528112709522247,
-0.06687726080417633,
0.013687096536159515,
-0.026582447811961174,
0.01730049028992653,
-0.02643083594739437,
0.018429148942232132,
-0.029092449694871902,
-0.00024202471831813455,
-0.03345547616481781,
-0.05569174140691757,
-0.02356707490980625,
0.019204048439860344,
-0.007942727766931057,
-0.010646454989910126,
0.04174353927373886,
0.05481576919555664,
0.004628344438970089,
-0.002343652071431279,
0.0036913047078996897,
-0.04582018777728081,
0.020366400480270386,
-0.002354180673137307,
0.00042719533666968346,
0.023095395416021347,
0.014436728321015835,
0.027845870703458786,
0.02107391692698002,
0.02247210592031479,
-0.04187830537557602,
-0.00819541234523058,
-0.06755108386278152,
0.0313834585249424,
-0.010688569396734238,
-0.005992842372506857,
-0.018479686230421066,
0.010553804226219654,
-0.043192263692617416,
-0.05491684377193451,
0.017216261476278305,
-0.026649829000234604,
0.03840809687972069,
-0.0033944000024348497,
-0.012920618988573551,
-0.007256266660988331,
0.05491684377193451,
-0.00014832074521109462,
0.026228688657283783,
-0.008397560566663742,
-0.04386609047651291,
0.008237526752054691,
0.01778901368379593,
0.02496526390314102,
-0.032983798533678055,
0.013653405010700226,
0.02793009951710701,
-0.03101285547018051,
0.006342390086501837,
0.0039903149008750916,
0.013805015943944454,
-0.007584757171571255,
0.06738262623548508,
0.06256476789712906,
0.024139827117323875,
0.03706044703722,
0.010949676856398582,
0.06967363506555557,
0.029614664614200592,
-0.07068438082933426,
-0.04858287423849106,
-0.07782693952322006,
-0.015826495364308357,
-0.04945885017514229,
-0.03810487687587738,
-0.016938308253884315,
-0.05424301698803902,
0.013746056705713272,
-0.02880607359111309,
-0.010006320662796497,
-0.0031438206788152456,
-0.03227628022432327,
0.019844183698296547,
0.039654675871133804,
0.006527692079544067,
-0.078702911734581,
0.005327438935637474,
-0.029665201902389526,
0.005946516990661621,
0.0021225528325885534,
0.037801653146743774,
0.05582650750875473,
0.0627332255244255,
0.010680146515369415,
0.03182144835591316,
0.03554433584213257,
0.04251844063401222,
-0.017401564866304398,
0.026262380182743073,
-0.027323655784130096,
-0.006868816912174225,
-0.0307264793664217,
-0.0673152431845665,
0.007260478101670742,
0.030979163944721222,
0.014916829764842987,
0.041474007070064545,
-0.018614450469613075,
-0.036016013473272324,
0.015228474512696266,
0.039553605020046234,
-0.039385147392749786,
0.021410830318927765,
0.008043801411986351,
-0.05016636848449707,
-0.03101285547018051,
0.003962941002100706,
0.0009975787252187729,
-0.05764583870768547,
0.025891775265336037,
-0.013148035854101181,
-0.06391242146492004,
-0.010705415159463882,
-0.0031880405731499195,
0.025891775265336037,
0.028957685455679893,
0.05666879191994667,
0.02045062743127346,
0.022741638123989105,
0.06158772110939026,
-0.01989472098648548,
-0.00854917149990797,
0.023533383384346962,
-0.08247634023427963,
-0.010865448974072933,
0.03439883142709732,
-0.005209519527852535,
-0.00803958997130394,
0.039587292820215225,
0.040564343333244324,
-0.050705429166555405,
0.03360708802938461,
-0.009046117775142193,
-0.028132246807217598,
-0.0806570053100586,
-0.007635293994098902,
0.04164246469736099,
-0.03631923720240593,
-0.03030533716082573,
0.05296274647116661,
0.0307264793664217,
0.021730897948145866,
-0.06788799911737442,
-0.024948418140411377,
-0.04871764034032822,
0.04086756333708763,
0.0071257129311561584,
-0.014655721373856068,
0.050705429166555405,
-0.01755317486822605,
-0.01996210403740406,
-0.059060875326395035,
-0.03306802362203598,
-0.04346179589629173,
0.022539488971233368,
0.003916615154594183,
0.035847559571266174,
-0.011909879744052887,
0.04528112709522247,
-0.02649821899831295,
0.02659929357469082,
0.006519269198179245,
-0.04922300949692726,
0.01212887279689312,
0.04076648876070976,
-0.02737419307231903,
0.029614664614200592,
-0.015759112313389778,
0.014470419846475124,
-0.002507897326722741,
-0.05319858714938164,
0.0031922520138323307,
-0.027037279680371284,
-0.007555277086794376,
0.02289324812591076,
0.006957256235182285,
-0.048919789493083954,
0.014200889505445957,
0.006531903520226479,
-0.00754264323040843,
0.026936205103993416,
-0.015380085445940495,
-0.0046409787610173225,
0.03150137886404991,
0.007184672635048628,
-0.01255001500248909,
-0.09777219593524933,
0.001130764721892774,
0.07519901543855667,
0.017704784870147705,
-0.002994315465912223,
0.07149296998977661,
-0.051581401377916336,
-0.05107603222131729,
-0.011893033981323242,
0.020686466246843338,
0.03561171889305115,
0.02373553067445755,
-0.025352714583277702,
-0.04639293998479843,
-0.01017477735877037,
-0.008414405398070812,
-0.014739950187504292,
0.022168884053826332,
-0.04494421184062958,
0.0008638663566671312,
-0.013131190091371536,
-0.008658668026328087,
0.05393979325890541,
0.04164246469736099,
-0.033506013453006744,
0.03978944197297096,
0.003268057480454445,
0.01373763382434845,
-0.01853022351861,
0.044270388782024384,
0.007685831282287836,
-0.03279849514365196,
-0.0023583921138197184,
0.0274752676486969,
0.028300704434514046,
0.014706258662045002,
0.05575912445783615,
-0.009324070997536182,
0.006805645301938057,
-0.0429227352142334,
-0.024409357458353043,
0.03989051654934883,
-0.0429227352142334,
0.005546432454138994,
-0.001021267962642014,
0.06563068181276321,
0.030288491398096085,
0.03246157988905907,
-0.025773854926228523,
-0.024240901693701744,
0.07371659576892853,
0.019102975726127625,
0.012676357291638851,
-0.04720153287053108,
0.019321968778967857,
-0.09858078509569168,
0.05889241769909859,
0.017418408766388893,
-0.039654675871133804,
-0.07169511914253235,
0.025049492716789246,
0.010831757448613644,
-0.007188884075731039,
-0.05316489562392235,
-0.006830913946032524,
0.024021906778216362,
0.05279428884387016,
-0.02009686827659607,
0.03807118535041809,
0.017502637580037117,
-0.00018306491256225854,
-0.022842710837721825,
-0.07533378154039383,
0.04565173014998436,
0.03463467210531235,
0.011994107626378536,
-0.00741208903491497,
-0.014680990017950535,
0.044135622680187225,
0.0034133512526750565,
-0.007416300475597382,
-0.028469160199165344,
0.010343233123421669,
-0.01940619759261608,
-0.02432512864470482,
-0.018395457416772842,
0.01688777096569538,
-0.0004100864753127098,
-0.03830702602863312,
-0.012440517544746399,
0.06364289671182632,
-0.004489367827773094,
-0.020703312009572983,
0.09447044879198074,
0.005074754357337952
]
|
42,154 | werkzeug.datastructures.headers | pop | Removes and returns a key or index.
:param key: The key to be popped. If this is an integer the item at
that position is removed, if it's a string the value for
that key is. If the key is omitted or `None` the last
item is removed.
:return: an item.
| def pop(self, key=None, default=_missing):
"""Removes and returns a key or index.
:param key: The key to be popped. If this is an integer the item at
that position is removed, if it's a string the value for
that key is. If the key is omitted or `None` the last
item is removed.
:return: an item.
"""
if key is None:
return self._list.pop()
if isinstance(key, int):
return self._list.pop(key)
try:
rv = self[key]
self.remove(key)
except KeyError:
if default is not _missing:
return default
raise
return rv
| (self, key=None, default=no value) | [
0.04872423782944679,
-0.006419866345822811,
-0.0564526692032814,
-0.014613758772611618,
-0.035743989050388336,
-0.01133795827627182,
-0.008439796976745129,
0.04854859411716461,
0.06793992966413498,
-0.057998355478048325,
-0.05697960779070854,
0.005594329442828894,
-0.030738074332475662,
-0.00564702320843935,
-0.001946378848515451,
0.0713123306632042,
0.03198516368865967,
0.019303511828184128,
0.015404166653752327,
-0.013928739354014397,
0.06368929147720337,
-0.0115048224106431,
0.038361117243766785,
0.030773203819990158,
-0.036112844944000244,
0.0256267711520195,
0.09133599698543549,
-0.037236981093883514,
0.0520966462790966,
-0.014192208647727966,
0.007021454628556967,
-0.01334032416343689,
-0.04928630590438843,
0.034005094319581985,
-0.018741443753242493,
0.012277665548026562,
-0.0712069422006607,
0.023220419883728027,
0.01998853124678135,
-0.0032604315783828497,
0.02188550867140293,
-0.024133779108524323,
0.05167509615421295,
-0.0659726932644844,
0.03195003420114517,
0.06765889376401901,
0.020199306309223175,
0.05244793742895126,
0.02483636513352394,
0.033864576369524,
0.025257915258407593,
0.057717323303222656,
-0.013797004707157612,
-0.03151091933250427,
-0.054239530116319656,
0.005796322599053383,
-0.00501908827573061,
-0.014429330825805664,
-0.0256267711520195,
0.027769654989242554,
0.03015844151377678,
-0.0009869117056950927,
-0.05543392151594162,
-0.05796322599053383,
0.04967273026704788,
0.006349607836455107,
0.05076173320412636,
-0.01732749119400978,
0.0091160349547863,
-0.01763487234711647,
0.005778757855296135,
0.01677420735359192,
0.006327652372419834,
0.005120085086673498,
0.01877657324075699,
-0.03577911853790283,
0.036007460206747055,
-0.027119765058159828,
0.036358751356601715,
-0.023852745071053505,
-0.007587913423776627,
0.05293974652886391,
-0.0000854902682476677,
0.04457899183034897,
-0.01229523029178381,
0.019408898428082466,
0.07672223448753357,
-0.00658233929425478,
-0.005862189922481775,
0.04745958745479584,
-0.0317041277885437,
-0.01034555770456791,
-0.015623724088072777,
-0.018267199397087097,
0.0033460590057075024,
-0.04285765811800957,
-0.0015665440587326884,
-0.05149944871664047,
0.015008962713181973,
-0.036534398794174194,
-0.0023097468074411154,
0.024309426546096802,
-0.0018860003910958767,
-0.02798043005168438,
0.008268541656434536,
0.05062121897935867,
0.051569707691669464,
0.02293938584625721,
-0.04724881052970886,
0.057401157915592194,
-0.001963943475857377,
-0.039660897105932236,
-0.05332616716623306,
0.006086139008402824,
0.03460228815674782,
0.05950891226530075,
-0.055820342153310776,
-0.022131413221359253,
0.008839392103254795,
0.005682152695953846,
-0.056171637028455734,
-0.05880632624030113,
-0.03758827596902847,
-0.0040047322399914265,
0.006345216650515795,
-0.01273434516042471,
-0.013928739354014397,
0.000902930973097682,
0.03987167403101921,
0.07601965218782425,
0.01620335690677166,
-0.008466144092381,
-0.03563860058784485,
0.012628957629203796,
0.009054558351635933,
0.030017925426363945,
0.0164931733161211,
0.02936803549528122,
-0.010977883823215961,
0.006441822275519371,
0.07187440246343613,
0.011829767376184464,
0.04633545130491257,
0.07960283011198044,
0.03265261650085449,
-0.0868394523859024,
0.00994157139211893,
-0.03333763778209686,
-0.02589024044573307,
0.021586909890174866,
-0.04117145389318466,
0.02710220031440258,
0.033864576369524,
-0.048091914504766464,
0.0529748760163784,
0.006011489313095808,
-0.00008988142508314922,
-0.011469692923128605,
-0.056241896003484726,
-0.05058608949184418,
0.04798652604222298,
0.029122130945324898,
0.04464925080537796,
-0.04935656487941742,
-0.026013193652033806,
-0.004979568067938089,
0.04292791709303856,
0.018969783559441566,
0.010556332767009735,
0.07363086193799973,
-0.026118580251932144,
0.005506506655365229,
0.011917591094970703,
-0.027699396014213562,
-0.0338997058570385,
0.017933471128344536,
-0.06822095811367035,
0.027400797232985497,
0.02076137438416481,
-0.00653842743486166,
-0.03481306508183479,
-0.0072585768066346645,
0.003910322207957506,
-0.09224935621023178,
0.017792953178286552,
0.04535183310508728,
-0.003611723892390728,
0.014315160922706127,
-0.01328763086348772,
0.04046887159347534,
-0.019672367721796036,
-0.027225151658058167,
0.02545112557709217,
-0.0115048224106431,
0.015263649635016918,
0.021428829059004784,
-0.00544942170381546,
0.03282826393842697,
0.028805967420339584,
0.04436821490526199,
-0.03625336289405823,
-0.04211994633078575,
0.035743989050388336,
0.0034646200947463512,
-0.061651796102523804,
-0.023343371227383614,
0.013595011085271835,
-0.045316703617572784,
-0.0329863466322422,
0.01719575747847557,
-0.005589938256889582,
0.02590780518949032,
0.025134962052106857,
-0.029596375301480293,
0.024889057502150536,
-0.05445030331611633,
-0.08072696626186371,
-0.03586694225668907,
0.05002402141690254,
0.018109116703271866,
0.04067964479327202,
-0.040539130568504333,
0.017450444400310516,
0.018390150740742683,
0.014754275791347027,
0.012585045769810677,
-0.034005094319581985,
-0.03899344429373741,
0.023431194946169853,
0.009440979920327663,
0.05402875319123268,
-0.011882461607456207,
0.05438004434108734,
-0.010565115138888359,
0.006384737323969603,
-0.035234615206718445,
-0.05030505359172821,
-0.017819300293922424,
0.02703194133937359,
0.044614121317863464,
-0.0008156567928381264,
0.04784600809216499,
0.017099151387810707,
0.04134710133075714,
0.007855773903429508,
0.08128903061151505,
-0.000597745762206614,
0.04011758044362068,
0.02216654270887375,
0.013823350891470909,
0.06228412315249443,
0.015360254794359207,
0.018442844972014427,
0.04127684235572815,
0.044789765030145645,
0.009300462901592255,
-0.0895092710852623,
-0.05406388267874718,
-0.014262466691434383,
-0.021182924509048462,
-0.024221602827310562,
-0.047916267067193985,
0.016018928959965706,
0.006542818620800972,
-0.021007278934121132,
0.03899344429373741,
0.032266195863485336,
0.03221350163221359,
0.022904256358742714,
0.04767036437988281,
-0.01316467858850956,
-0.03744775801897049,
0.0091160349547863,
-0.08641789853572845,
0.05726064369082451,
0.04580851271748543,
-0.01164533942937851,
-0.024432377889752388,
0.010521204210817814,
-0.0018563601188361645,
0.025134962052106857,
0.0031067412346601486,
-0.01684446446597576,
-0.005462594795972109,
-0.016001364216208458,
0.07974334806203842,
0.012022978626191616,
-0.023677099496126175,
0.03563860058784485,
0.03189733996987343,
0.0608086958527565,
-0.00005502664134837687,
-0.07155823707580566,
-0.0018289154395461082,
-0.020410081371665,
-0.0057260640896856785,
-0.08100800216197968,
0.042190201580524445,
0.04528157413005829,
0.039309605956077576,
-0.033583540469408035,
-0.041311971843242645,
-0.03716672211885452,
-0.014517153613269329,
-0.010187475942075253,
-0.014587411656975746,
0.054590821266174316,
0.0004926325636915863,
-0.00851005595177412,
0.03713159263134003,
0.02710220031440258,
-0.004204529337584972,
-0.004489954560995102,
0.0029201169963926077,
0.009019429795444012,
-0.036955948919057846,
-0.008360756561160088,
-0.0015489794313907623,
0.0063935196958482265,
0.038958314806222916,
-0.01893465407192707,
-0.055293403565883636,
-0.08620712906122208,
-0.018442844972014427,
-0.0036314839962869883,
-0.00842223223298788,
-0.11100836098194122,
0.03758827596902847,
0.02631179243326187,
0.05343155562877655,
0.012444528751075268,
-0.04447360336780548,
-0.041557878255844116,
-0.02067355066537857,
-0.01763487234711647,
-0.02796286530792713,
-0.02659282647073269,
0.051218416541814804,
0.01555346604436636,
-0.009045775979757309,
-0.049742985516786575,
-0.031247448176145554,
0.01998853124678135,
-0.0009078709990717471,
0.05002402141690254,
0.037763919681310654,
0.06221386417746544,
-0.010503639467060566,
-0.00453606154769659,
-0.016932288184762,
0.053045134991407394,
0.015061656944453716,
-0.01263774000108242,
0.0199709665030241,
0.006042227149009705,
0.006266176234930754,
0.04099581018090248,
0.0021406873129308224,
0.045843642204999924,
-0.04057426005601883,
0.02318529039621353,
-0.041241712868213654,
-0.03779904916882515,
0.0011137062683701515,
-0.03231889009475708,
-0.03344302624464035,
-0.040187835693359375,
-0.03660465404391289,
-0.05522314831614494,
-0.021411264315247536,
0.026382049545645714,
-0.02657526172697544,
-0.03484819456934929,
0.04823242872953415,
0.02005879022181034,
0.009274115785956383,
0.03604258969426155,
0.0720851793885231,
-0.024976881220936775,
-0.07573861628770828,
-0.0014644496841356158,
-0.010398251935839653,
-0.047319069504737854,
0.04788113757967949,
-0.0004188062739558518,
0.031142061576247215,
-0.0373774990439415,
-0.019057605415582657,
-0.01203176099807024,
-0.024889057502150536,
-0.03804495558142662,
-0.043911535292863846,
-0.032371584326028824,
-0.033161990344524384,
-0.04493028298020363,
0.006314478814601898,
0.0076933009549975395,
-0.043489985167980194,
-0.04552748054265976,
-0.018372585996985435,
0.09829158335924149,
0.027400797232985497,
-0.004584364127367735,
0.007087321951985359,
0.027506185695528984,
0.004169400315731764,
-0.009607844054698944,
-0.017424097284674644,
-0.0530100055038929,
-0.0017059631645679474,
0.03744775801897049,
-0.017353838309645653,
-0.017099151387810707,
-0.037834178656339645,
0.0599304623901844,
-0.033671364188194275,
-0.015017745085060596,
0.051991257816553116,
0.03955551236867905,
-0.010784673504531384,
-0.032459408044815063,
-0.050094280391931534,
-0.019040042534470558,
-0.004202333744615316,
-0.05012940987944603,
0.007021454628556967,
-0.016932288184762,
-0.024695847183465958,
-0.09344374388456345,
-0.019250817596912384,
-0.011496040038764477,
-0.08213213831186295,
0.026364486664533615,
0.037658531218767166,
0.03460228815674782,
0.016633689403533936,
-0.003728089388459921,
-0.016528302803635597,
-0.028630321845412254,
0.029736891388893127,
0.017617307603359222,
-0.007868947461247444,
-0.029227517545223236,
0.0659726932644844,
0.03535756841301918,
0.020726244896650314,
-0.0004794590640813112,
0.03396996483206749,
0.0382557287812233,
-0.023589277639985085,
0.004263809882104397,
-0.006103703286498785,
0.0317041277885437,
0.028261464089155197,
0.046440839767456055,
-0.08845539391040802,
-0.12913504242897034,
0.03165143355727196,
0.016177009791135788,
-0.053466685116291046,
0.022974515333771706,
0.04422769695520401,
0.012707998044788837,
-0.03396996483206749,
-0.027471056208014488,
0.06706169992685318,
-0.0019496721215546131,
0.00008988142508314922,
-0.030632687732577324,
0.003730284981429577,
-0.03716672211885452,
-0.031844645738601685,
-0.05005915090441704,
-0.06407571583986282,
-0.05178048089146614,
-0.0008645083289593458,
0.06063304841518402,
0.015667635947465897,
0.011302828788757324,
0.005177170038223267,
0.06161666661500931,
-0.013928739354014397,
-0.018179375678300858,
0.008492491208016872,
-0.04566799849271774,
0.038361117243766785,
-0.0012394030345603824,
0.01684446446597576,
0.00994157139211893,
0.022658351808786392,
0.017397750169038773,
-0.043033305555582047,
0.004544843919575214,
0.012110801413655281,
0.020884325727820396,
-0.012909991666674614,
-0.012277665548026562,
-0.022201672196388245,
0.019356204196810722,
-0.006736029405146837,
0.04552748054265976,
-0.0012800212716683745,
0.026101017370820045,
-0.0036314839962869883,
-0.005216690246015787,
-0.05371259152889252,
0.012778257019817829,
0.04784600809216499,
-0.0014194403775036335,
-0.04447360336780548,
-0.014095602557063103,
0.052518196403980255,
0.04788113757967949,
-0.052518196403980255,
0.0025819982402026653,
0.014701581560075283,
0.0008085211156867445,
-0.024309426546096802,
0.03713159263134003,
0.04700290784239769,
0.061195116490125656,
-0.012866079807281494,
-0.027576444670557976,
0.020884325727820396,
-0.005840233992785215,
0.019250817596912384,
-0.039660897105932236,
0.00328019168227911,
0.012110801413655281,
0.03959064185619354,
-0.034286126494407654,
0.02005879022181034,
-0.04415744170546532,
0.008207065984606743,
0.043665628880262375,
0.010802237316966057,
-0.0033592325635254383,
0.02207872085273266,
0.03110693208873272,
-0.0299652311950922,
0.0060597918927669525,
0.017476791515946388,
0.03231889009475708,
-0.04528157413005829,
-0.011847332119941711,
-0.02894648350775242,
-0.040539130568504333,
0.021955767646431923,
0.012804604135453701,
0.054696209728717804,
-0.08487221598625183,
-0.011996631510555744,
0.0373774990439415,
-0.038009826093912125,
0.048970144242048264,
0.024625588208436966,
-0.02327311411499977,
0.03790443763136864,
0.04907553270459175,
0.004158422350883484,
-0.00749130779877305,
0.04338459670543671,
0.01002939511090517,
-0.006349607836455107,
0.018899524584412575,
0.010134782642126083,
-0.07278776168823242,
-0.04854859411716461,
0.0869097113609314,
0.0026017585769295692,
0.003747849492356181,
-0.031001543626189232,
0.017889559268951416,
0.004175987094640732,
-0.02146395854651928,
0.02815607562661171,
0.020831631496548653,
0.007227838505059481,
-0.02111266553401947,
-0.004698534496128559,
-0.0030518516432493925,
0.049567341804504395,
0.0963946059346199,
-0.02894648350775242,
-0.011425781063735485,
0.013665270060300827,
0.004839051049202681,
0.00045393549953587353,
-0.05276409909129143,
0.028981612995266914,
0.06091408059000969,
-0.020743809640407562,
0.03927447646856308,
0.03152848407626152,
0.053466685116291046,
0.008843783289194107,
0.005616285372525454,
-0.005502115469425917,
-0.04587877169251442,
0.040539130568504333,
0.029930101707577705,
-0.018917089328169823,
0.05845503509044647,
0.01073197927325964,
0.013612575829029083,
0.05532853305339813,
-0.04911066219210625,
0.011153530329465866,
0.049391694366931915,
-0.060597918927669525,
-0.025942934677004814,
-0.048267558217048645,
-0.062319252640008926,
0.02399326302111149,
0.002406352199614048,
-0.021323442459106445,
0.042084816843271255,
0.020919455215334892,
-0.03850163519382477,
-0.01884683035314083,
-0.03864214941859245,
0.028261464089155197,
-0.050691477954387665,
0.03221350163221359,
0.02694411762058735,
-0.08838513493537903,
-0.035585906356573105,
0.007728429976850748,
0.0024744151160120964,
0.03692081943154335,
-0.01573789492249489,
-0.024204038083553314,
0.0399419330060482,
0.05543392151594162,
-0.022184107452630997,
0.0033855794463306665,
0.03212567791342735,
-0.014657670632004738,
-0.0004009671974927187,
0.012330358847975731,
0.033759187906980515,
-0.017476791515946388,
-0.004909309558570385,
0.0538531057536602,
-0.03442664444446564,
-0.0077064745128154755,
0.006810679100453854,
0.029649069532752037,
0.03663978353142738,
-0.029649069532752037,
-0.027067070826888084,
-0.0052781663835048676,
0.01403412688523531,
-0.039660897105932236,
-0.04370075836777687,
-0.03144066035747528,
0.06238950788974762,
-0.014736711047589779,
-0.08030541241168976,
-0.028349287807941437,
-0.03899344429373741,
-0.032880958169698715,
-0.04233071953058243,
0.015219737775623798,
-0.008092896081507206,
-0.045492351055145264,
-0.05325590819120407,
-0.0064989072270691395,
0.04587877169251442,
-0.0030694163870066404,
0.0004794590640813112,
-0.09765925258398056,
-0.022956950590014458,
-0.0018640446942299604,
-0.04545722156763077,
-0.03133527189493179,
0.02381761744618416,
0.04127684235572815,
-0.004566799849271774,
0.010231387801468372,
0.05378284677863121,
0.026733342558145523,
-0.019848013296723366,
0.011056924238801003,
-0.011241353116929531,
0.09962648898363113,
0.0008008365985006094,
-0.014323942363262177,
-0.01688837632536888,
-0.009871313348412514,
0.04875936731696129,
-0.07071513682603836,
-0.03405778855085373,
-0.04138223081827164,
-0.0642513558268547,
0.012277665548026562,
-0.04907553270459175,
-0.00827732402831316,
0.01116231270134449,
-0.00422209408134222,
-0.008141198195517063,
-0.003840063698589802,
0.016440479084849358,
-0.026013193652033806,
-0.010055741295218468,
0.0012723366962745786,
-0.015061656944453716,
0.04587877169251442,
-0.012716780416667461,
-0.025503819808363914,
0.0028103382792323828,
0.03425099700689316,
0.0005241939797997475,
-0.021744992583990097,
0.010907625779509544,
0.02243001200258732,
-0.0034141219221055508,
0.037658531218767166,
-0.07454422116279602,
0.03941499441862106,
0.02060329169034958,
-0.014771840535104275,
0.035322438925504684,
-0.009177510626614094,
0.03344302624464035,
-0.02069111540913582,
0.041557878255844116,
-0.09618382900953293,
-0.07391189783811569,
0.0963946059346199,
0.02710220031440258,
-0.0006751398323103786,
0.057717323303222656,
0.019356204196810722,
0.02659282647073269,
-0.06625372171401978,
0.02553894929587841,
0.005247428547590971,
0.04858372360467911,
0.025486255064606667,
-0.04742445796728134,
0.021516652777791023,
-0.027822349220514297,
0.030913719907402992,
-0.03490088880062103,
-0.03885292634367943,
-0.03128257766366005,
-0.009924006648361683,
-0.019356204196810722,
-0.001958454493433237,
-0.015474424697458744,
-0.030386783182621002,
0.017845647409558296,
0.06498907506465912,
-0.010494857095181942,
-0.042190201580524445,
-0.013050508685410023,
0.03563860058784485,
0.024274297058582306,
0.027997994795441628,
-0.04767036437988281,
-0.03544539213180542,
-0.02848980389535427,
-0.001353573054075241,
-0.054344914853572845,
0.012602610513567924,
-0.02206115610897541,
0.007807470858097076
]
|
42,155 | werkzeug.datastructures.headers | popitem | Removes a key or index and returns a (key, value) item. | def popitem(self):
"""Removes a key or index and returns a (key, value) item."""
return self.pop()
| (self) | [
0.03715421259403229,
0.008849927224218845,
-0.0822896957397461,
-0.05143105983734131,
-0.02937934920191765,
-0.041867293417453766,
-0.026781994849443436,
0.04547950625419617,
0.1274251788854599,
-0.05583452433347702,
-0.04059441760182381,
0.002274835482239723,
-0.021707691252231598,
0.03581253066658974,
-0.02974057011306286,
0.048919711261987686,
0.009193947538733482,
0.02955135889351368,
0.0017512792255729437,
0.021810898557305336,
0.029207337647676468,
0.004080942831933498,
0.04355299100279808,
0.026403572410345078,
-0.026179958134889603,
-0.01790626533329487,
0.06632714718580246,
-0.031856294721364975,
0.0913030356168747,
-0.018181482329964638,
-0.04300256073474884,
-0.027040010318160057,
-0.006041859742254019,
-0.008501606062054634,
-0.03099624440073967,
0.022172119468450546,
-0.04262413829565048,
0.000905741413589567,
0.052256710827350616,
0.029224539175629616,
-0.001325553865171969,
-0.04214250668883324,
0.04768123850226402,
-0.04410342499613762,
0.057692233473062515,
0.03966556116938591,
0.034384846687316895,
0.03144347295165062,
0.020555224269628525,
0.007263132371008396,
0.012892167083919048,
0.059756357222795486,
0.015609929338097572,
0.011000054888427258,
-0.06395340710878372,
0.0025393010582774878,
0.01057002879679203,
-0.012642752379179,
0.005689238663762808,
0.0523943193256855,
0.03472886607050896,
0.00814038421958685,
-0.03815187141299248,
-0.04417223110795021,
0.059962768107652664,
-0.03214871510863304,
0.0034466551151126623,
-0.012814763002097607,
-0.009864787571132183,
-0.027814054861664772,
-0.01907593570649624,
0.010294812731444836,
-0.004652876872569323,
0.0026274563279002905,
-0.012178325094282627,
-0.03268194571137428,
0.030050188302993774,
0.013253388926386833,
0.05270393565297127,
-0.03182189539074898,
-0.028588101267814636,
0.027968864887952805,
-0.004476566333323717,
0.0433809831738472,
-0.01573033630847931,
0.042589735239744186,
0.08352816849946976,
0.007899570278823376,
-0.03911512717604637,
0.06309335678815842,
-0.009813183918595314,
-0.000573009136132896,
-0.024373851716518402,
0.016246367245912552,
-0.014526264742016792,
-0.04451625049114227,
0.007731860037893057,
-0.028777312487363815,
-0.0006455759285017848,
-0.020400414243340492,
0.028794514015316963,
0.01143008004873991,
-0.051637474447488785,
-0.029310544952750206,
-0.0005756967584602535,
0.03168428689241409,
0.04331217706203461,
-0.010286211967468262,
-0.001520140445791185,
0.03581253066658974,
-0.02067563124001026,
0.008062980137765408,
-0.05504327639937401,
0.017562245950102806,
0.013520005159080029,
0.04582352936267853,
-0.05631615221500397,
-0.02077883668243885,
0.004321757238358259,
-0.009684176184237003,
-0.006132164970040321,
-0.036913398653268814,
-0.01653018407523632,
0.0167193952947855,
0.018817920237779617,
-0.000700941716786474,
0.004919492639601231,
-0.020727233961224556,
-0.007688857614994049,
0.03233792632818222,
-0.013115780428051949,
-0.014792880974709988,
-0.04000958055257797,
-0.018198683857917786,
0.020039193332195282,
-0.003973436541855335,
0.06364379078149796,
-0.025319907814264297,
0.0020856240298599005,
-0.0024532959796488285,
0.03503848612308502,
0.03469446673989296,
0.020727233961224556,
0.08063840121030807,
0.0052721137180924416,
-0.09089020639657974,
-0.027968864887952805,
-0.002030795905739069,
-0.013778019696474075,
0.013270589523017406,
-0.03777344897389412,
0.03901192173361778,
0.032475534826517105,
-0.019746774807572365,
0.03505568578839302,
-0.0007439442561008036,
-0.0185083020478487,
-0.021845299750566483,
-0.04589233174920082,
-0.05951554328203201,
0.035004083067178726,
0.022172119468450546,
0.04300256073474884,
-0.024287845939397812,
-0.026885200291872025,
0.018577106297016144,
0.09687616676092148,
0.028794514015316963,
-0.029602961614727974,
0.037188611924648285,
-0.022705351933836937,
-0.015850743278861046,
-0.06464144587516785,
-0.025354309007525444,
-0.07458364218473434,
0.02095084637403488,
-0.04410342499613762,
0.06089162454009056,
0.04190169274806976,
-0.04200490191578865,
-0.006480485666543245,
-0.040800828486680984,
-0.020039193332195282,
-0.05635055527091026,
0.03099624440073967,
0.017115019261837006,
0.01088824775069952,
0.04406902194023132,
0.032045505940914154,
0.03956235572695732,
-0.027624843642115593,
-0.056419357657432556,
-0.005861248821020126,
0.0003690157027449459,
0.0388743132352829,
-0.010785042308270931,
-0.033025965094566345,
0.05951554328203201,
0.006635294761508703,
0.04035360366106033,
-0.06488226354122162,
-0.05194709077477455,
0.014113440178334713,
0.007142724934965372,
-0.039906375110149384,
-0.018835121765732765,
0.028983725234866142,
-0.05992836877703667,
-0.03380001336336136,
0.04726841300725937,
-0.0008718768949620426,
0.03749823197722435,
0.06894170492887497,
-0.016770998015999794,
0.03378280997276306,
-0.0904085785150528,
-0.063230961561203,
-0.03173588961362839,
0.027676448225975037,
0.009279952384531498,
0.012075118720531464,
-0.06333416700363159,
0.02151848003268242,
-0.010604430921375751,
0.01571313478052616,
-0.007538348902016878,
-0.06116684153676033,
-0.025285504758358,
0.017502041533589363,
-0.003109085140749812,
0.057967450469732285,
-0.005689238663762808,
0.07568450272083282,
-0.04320897161960602,
-0.00890152994543314,
-0.02492428384721279,
-0.0488165058195591,
-0.043140169233083725,
0.028880519792437553,
0.044413045048713684,
0.01093985140323639,
0.06164846941828728,
0.02194850705564022,
0.07919351756572723,
-0.021105656400322914,
0.0975642055273056,
0.034281641244888306,
0.06254292279481888,
0.0112924724817276,
0.01229013130068779,
0.04888530820608139,
0.007073921151459217,
0.01654738560318947,
0.04943574219942093,
0.05586892366409302,
-0.03994077816605568,
-0.05170627683401108,
-0.0478532500565052,
-0.007779162842780352,
-0.012479342520236969,
0.006372979376465082,
-0.026885200291872025,
0.0452042892575264,
0.036190953105688095,
0.006815905682742596,
0.028777312487363815,
0.05432083457708359,
0.04434423893690109,
0.01359740924090147,
0.07534048706293106,
0.06808165460824966,
-0.0388743132352829,
-0.0005356506444513798,
-0.053804803639650345,
0.016487181186676025,
0.056247349828481674,
-0.038530293852090836,
0.0043067061342298985,
-0.00013458456669468433,
-0.0076802573166787624,
0.03932154178619385,
-0.0007149175507947803,
-0.043140169233083725,
0.009374557994306087,
-0.020297208800911903,
0.045032281428575516,
0.040628816932439804,
0.004601273685693741,
0.08387219160795212,
0.04627075418829918,
0.02230972796678543,
-0.01053562667220831,
-0.07238190621137619,
0.01324478816241026,
0.023513799533247948,
0.016564585268497467,
-0.07258831709623337,
0.014036035165190697,
0.03921833261847496,
0.06137325242161751,
-0.003485357388854027,
-0.04210810735821724,
-0.10602711141109467,
-0.017209624871611595,
0.019471559673547745,
0.040078386664390564,
0.060409996658563614,
0.05648816376924515,
-0.04565151780843735,
0.026093952357769012,
0.00021971621026750654,
-0.014560666866600513,
-0.026764793321490288,
0.035915736109018326,
-0.0124191390350461,
-0.04434423893690109,
-0.022516140714287758,
0.018835121765732765,
0.008523107506334782,
0.038633499294519424,
-0.04200490191578865,
-0.08800043910741806,
-0.046924393624067307,
-0.025801535695791245,
0.023186979815363884,
-0.01679679937660694,
-0.12350334972143173,
0.004283054731786251,
0.030032986775040627,
0.0487821027636528,
-0.007572750560939312,
0.0060461596585810184,
-0.014491862617433071,
-0.013657612726092339,
0.019660770893096924,
0.0026210059877485037,
-0.0005068926839157939,
0.07238190621137619,
0.02963736467063427,
-0.028605302795767784,
-0.02838168852031231,
-0.046133145689964294,
0.01778585836291313,
0.0015265909023582935,
0.04217690974473953,
0.017751457169651985,
-0.00903053767979145,
-0.008200587704777718,
0.023909423500299454,
-0.02783125638961792,
0.06495106965303421,
0.009245550259947777,
-0.007796363905072212,
0.050364598631858826,
0.015842143446207047,
0.01997038908302784,
-0.002113575814291835,
0.002020045183598995,
0.024081433191895485,
-0.023358989506959915,
0.045582711696624756,
-0.01273735798895359,
-0.02657558210194111,
-0.008501606062054634,
-0.01296097133308649,
-0.051534269005060196,
-0.061304450035095215,
0.004437864292412996,
-0.03897751867771149,
-0.04826607182621956,
0.0032961461693048477,
-0.018852321431040764,
-0.0024941484443843365,
0.024184638634324074,
0.00015252470620907843,
0.006867508869618177,
0.030136194080114365,
0.06474465131759644,
-0.0506054125726223,
-0.07300114631652832,
0.009701377712190151,
-0.022378532215952873,
-0.03448805212974548,
0.03949354961514473,
0.013984432443976402,
0.027263622730970383,
-0.03259593993425369,
-0.021810898557305336,
0.00989058893173933,
0.010991454124450684,
-0.07258831709623337,
-0.033129170536994934,
-0.03515889123082161,
-0.046064343303442,
-0.03364520147442818,
-0.005052800755947828,
-0.007981275208294392,
-0.07898709923028946,
-0.06567350775003433,
-0.011756899766623974,
0.08394099771976471,
0.021656088531017303,
-0.01888672448694706,
-0.018559904769062996,
0.026902401819825172,
-0.023720212280750275,
-0.03856469690799713,
0.024150237441062927,
-0.009133744053542614,
-0.048025257885456085,
0.03660377860069275,
-0.022705351933836937,
-0.02014239877462387,
-0.06364379078149796,
0.06264612823724747,
-0.04410342499613762,
-0.001607220619916916,
0.0767853707075119,
0.034281641244888306,
0.013287791050970554,
-0.0226021446287632,
-0.01635817438364029,
-0.04688999056816101,
-0.02132926881313324,
-0.06488226354122162,
-0.00024551773094572127,
-0.01842229627072811,
0.0119633125141263,
-0.07217549532651901,
0.01950596086680889,
-0.011318273842334747,
-0.11882467567920685,
0.012178325094282627,
0.01833629235625267,
-0.008351096883416176,
0.013760819099843502,
-0.023892221972346306,
-0.020572423934936523,
-0.004240052308887243,
0.09199107438325882,
0.02432224713265896,
0.04073202610015869,
0.014096238650381565,
0.015523924492299557,
0.06020358204841614,
0.014973491430282593,
-0.009950792416930199,
0.0026339066680520773,
0.06636154651641846,
-0.004820587113499641,
0.03089303895831108,
0.026799194514751434,
0.03393762186169624,
-0.006497686728835106,
0.0352621003985405,
-0.07781743258237839,
-0.09914670139551163,
-0.0027027109172195196,
-0.014758478850126266,
-0.030411411076784134,
0.02058962546288967,
0.031219858676195145,
-0.004070192109793425,
-0.030411411076784134,
-0.024356650188565254,
0.025354309007525444,
-0.002532850718125701,
0.02141527459025383,
-0.043415382504463196,
0.03261313959956169,
-0.036638181656599045,
-0.039424747228622437,
-0.06285253912210464,
-0.0623709112405777,
-0.02377181500196457,
0.012573948130011559,
0.023341789841651917,
0.003769174451008439,
0.015472320839762688,
-0.029860977083444595,
-0.015455120243132114,
-0.021793697029352188,
-0.01607435755431652,
0.029052529484033585,
-0.02501028962433338,
0.03369680419564247,
0.015515323728322983,
-0.026248762384057045,
0.0009417560650035739,
0.007349137216806412,
0.00336710037663579,
-0.05377040058374405,
-0.0032208918128162622,
0.02476947382092476,
0.03842708840966225,
-0.021484078839421272,
-0.03333558514714241,
-0.013993033207952976,
0.0024059931747615337,
-0.019746774807572365,
0.04228011518716812,
0.007865168154239655,
0.010458222590386868,
-0.04489467293024063,
0.011851505376398563,
-0.05170627683401108,
0.004682978615164757,
0.028605302795767784,
-0.023255784064531326,
-0.07898709923028946,
-0.040525611490011215,
0.010716238059103489,
0.04320897161960602,
-0.012324533425271511,
0.01002819649875164,
0.014818682335317135,
-0.030118992552161217,
0.010423820465803146,
0.025681128725409508,
0.05205029994249344,
0.04289935529232025,
-0.010810843668878078,
-0.025285504758358,
0.00619236845523119,
-0.025956345722079277,
-0.009477764368057251,
-0.02655838057398796,
-0.0005458637606352568,
0.016684992238879204,
0.004437864292412996,
-0.056419357657432556,
0.014087638817727566,
-0.028226880356669426,
-0.013089979067444801,
0.025440314784646034,
-0.010733438655734062,
-0.006760002579540014,
0.013726416975259781,
0.035468511283397675,
0.022000109776854515,
0.0275732409209013,
0.008910130709409714,
0.03017059527337551,
-0.04482586681842804,
-0.0117482990026474,
0.014509063214063644,
-0.04145446792244911,
0.0008718768949620426,
-0.03828947991132736,
0.041798487305641174,
-0.10079800337553024,
-0.03503848612308502,
0.04465385898947716,
-0.0221549179404974,
0.032939959317445755,
0.04547950625419617,
-0.021552883088588715,
0.022653749212622643,
0.03811746835708618,
0.008639214560389519,
-0.0119633125141263,
0.02043481543660164,
-0.0018544853664934635,
0.00976158119738102,
0.016736596822738647,
0.03918393328785896,
-0.039699964225292206,
0.02368580922484398,
0.048025257885456085,
0.0017362283542752266,
0.008007076568901539,
-0.0216904915869236,
0.02549191750586033,
-0.0121955256909132,
-0.019093137234449387,
0.0067040990106761456,
0.018456699326634407,
-0.011576289311051369,
-0.016779597848653793,
-0.023152578622102737,
-0.002659708261489868,
0.06718719750642776,
0.05865549296140671,
-0.024236243218183517,
-0.01192891038954258,
0.029121333733201027,
0.02041761577129364,
0.03300876542925835,
-0.028054870665073395,
0.05311676114797592,
0.04083523154258728,
-0.003715421073138714,
0.021363671869039536,
-0.008028578013181686,
0.0641254186630249,
-0.03681018948554993,
0.03290555998682976,
0.005727941170334816,
-0.09027097374200821,
0.016401175409555435,
0.015214305371046066,
-0.011258070357143879,
0.06216450035572052,
0.006940613035112619,
0.0016964509850367904,
-0.0009293928160332143,
-0.0433465801179409,
-0.01589374616742134,
0.008501606062054634,
-0.021398073062300682,
-0.026523979380726814,
-0.03842708840966225,
-0.03214871510863304,
0.02131206914782524,
0.01769985444843769,
-0.015394916757941246,
0.015291710384190083,
0.017287028953433037,
-0.05848348140716553,
0.004298105835914612,
-0.03288835659623146,
-0.010406619869172573,
-0.06742801517248154,
0.050743021070957184,
0.007469544652849436,
-0.08958293497562408,
0.016745196655392647,
0.004433563910424709,
0.0027156115975230932,
0.015308910980820656,
-0.017854662612080574,
-0.060134779661893845,
0.04998617619276047,
-0.00021770046441815794,
-0.04544510319828987,
0.04492907598614693,
0.009692776948213577,
0.020899243652820587,
-0.020847640931606293,
0.03336998447775841,
0.058586686849594116,
-0.00814038421958685,
-0.04688999056816101,
0.012264329940080643,
-0.019471559673547745,
-0.00607626186683774,
-0.008385499007999897,
0.008867127820849419,
0.04809406399726868,
-0.05638495460152626,
0.0014255348360165954,
0.006334276869893074,
-0.0021598036400973797,
-0.012143922969698906,
-0.0334043875336647,
-0.01943715661764145,
0.05631615221500397,
0.002894072327762842,
-0.08394099771976471,
-0.02440825290977955,
-0.02086484245955944,
-0.023806216195225716,
-0.03044581227004528,
-0.0028102172072976828,
0.051740679889917374,
-0.030652225017547607,
-0.03994077816605568,
0.06615513563156128,
0.01778585836291313,
0.013588808476924896,
0.029293343424797058,
-0.08029437810182571,
-0.029671765863895416,
-0.003646617056801915,
-0.032028306275606155,
-0.038358282297849655,
0.00019902121857739985,
0.03295716270804405,
-0.007925371639430523,
0.03493528068065643,
0.01905873417854309,
0.03787665441632271,
-0.02411583624780178,
0.01799227111041546,
-0.0067901043221354485,
0.032028306275606155,
0.0034875075798481703,
0.014973491430282593,
-0.03928713873028755,
-0.046580374240875244,
0.02882891520857811,
-0.07437722384929657,
-0.02294616587460041,
-0.02196570672094822,
-0.0650886744260788,
0.006901910994201899,
-0.0052033099345862865,
-0.04623635113239288,
0.047578033059835434,
0.025715529918670654,
-0.002982227597385645,
0.0167107954621315,
0.04664917662739754,
-0.03481487184762955,
0.02492428384721279,
0.013167384080588818,
-0.003238092642277479,
0.00283386860974133,
-0.029430951923131943,
-0.020486420020461082,
-0.01943715661764145,
0.05738261714577675,
-0.012393337674438953,
0.0234965980052948,
0.033662404865026474,
0.02222372218966484,
-0.03732622042298317,
0.014466061256825924,
-0.06876969337463379,
0.030755430459976196,
-0.021122857928276062,
-0.006020358297973871,
0.036913398653268814,
0.025096293538808823,
0.042692940682172775,
-0.018903926014900208,
0.02657558210194111,
-0.0722443014383316,
-0.06570791453123093,
0.06876969337463379,
-0.00979598332196474,
-0.018387895077466965,
0.0006923411856405437,
0.027263622730970383,
0.035743728280067444,
-0.021621687337756157,
0.015429317951202393,
-0.006596592720597982,
0.07795503735542297,
0.02492428384721279,
-0.014483261853456497,
0.035193294286727905,
-0.006385880056768656,
0.016736596822738647,
-0.028983725234866142,
-0.04912612587213516,
-0.022103315219283104,
0.02972336858510971,
-0.049917370080947876,
-0.03280235081911087,
0.036638181656599045,
0.041248057037591934,
0.002670458983629942,
0.03276795148849487,
0.01609155721962452,
-0.01580774039030075,
0.02022840455174446,
0.014663873240351677,
-0.007886669598519802,
0.025319907814264297,
-0.023565402254462242,
-0.0033649501856416464,
-0.004906591959297657,
0.01807827688753605,
-0.046201951801776886,
0.02521670050919056,
-0.0016792499227449298,
0.007658755872398615
]
|
42,156 | werkzeug.datastructures.headers | remove | Remove a key.
:param key: The key to be removed.
| def remove(self, key):
"""Remove a key.
:param key: The key to be removed.
"""
return self.__delitem__(key, _index_operation=False)
| (self, key) | [
0.027376892045140266,
0.02190857008099556,
-0.04896794632077217,
0.002052825875580311,
-0.010760247707366943,
-0.013661987148225307,
-0.036655399948358536,
0.05337788537144661,
0.07331079989671707,
-0.04247651994228363,
-0.03019925206899643,
0.003803571220487356,
0.04625142738223076,
0.014482235535979271,
-0.03616148978471756,
0.02081490494310856,
0.03644372522830963,
0.008555279113352299,
-0.013176893815398216,
-0.0651259571313858,
-0.0001023932418320328,
0.018645215779542923,
0.06477316468954086,
-0.007673291489481926,
-0.04219428449869156,
0.044663846492767334,
0.08015502244234085,
-0.007871738635003567,
0.09730086475610733,
-0.04095949977636337,
-0.028241239488124847,
-0.010795527137815952,
-0.01599925383925438,
0.005296335089951754,
-0.05408347398042679,
0.008775776252150536,
-0.02642434649169445,
0.0018742234678938985,
-0.009225589223206043,
0.007126459386199713,
0.03215726464986801,
0.023019874468445778,
0.0486857108771801,
-0.05634136125445366,
0.06900670379400253,
0.04427577182650566,
0.020497389137744904,
0.044416893273591995,
-0.012339005246758461,
0.02000347711145878,
0.007990807294845581,
0.04371130093932152,
-0.007395465392619371,
0.003325092839077115,
-0.04258235916495323,
0.0025776084512472153,
-0.008877204731106758,
0.009957639500498772,
0.01622856967151165,
0.037114035338163376,
0.021344097331166267,
0.006857452914118767,
-0.05052024498581886,
-0.028382359072566032,
0.029281985014677048,
-0.05366012081503868,
0.014596893452107906,
-0.0023923912085592747,
0.04445217177271843,
-0.03353316709399223,
-0.018962731584906578,
0.012100868858397007,
0.03258061781525612,
0.057117510586977005,
-0.030410930514335632,
-0.0467100590467453,
-0.005296335089951754,
0.029687700793147087,
0.025119004771113396,
-0.05394235625863075,
0.02637142688035965,
-0.014526334591209888,
-0.019562482833862305,
0.017816148698329926,
-0.010804346762597561,
0.03012869320809841,
0.07606260478496552,
-0.02284347638487816,
-0.023672545328736305,
0.046039748936891556,
-0.07041788101196289,
0.02771204710006714,
-0.06223303824663162,
-0.010045837610960007,
0.017983725294470787,
-0.002824564930051565,
0.00837006140500307,
-0.034044716507196426,
0.016501987352967262,
-0.04706285521388054,
0.04995577409863472,
0.05584745109081268,
0.05500074103474617,
0.029140867292881012,
0.013212173245847225,
0.0305344071239233,
0.01283291820436716,
-0.02033863216638565,
-0.038631051778793335,
0.04653366282582283,
-0.006301800720393658,
0.034044716507196426,
0.01733105443418026,
0.02039155177772045,
0.01385602355003357,
0.034168194979429245,
-0.04219428449869156,
-0.034450434148311615,
0.02190857008099556,
0.0006488120416179299,
0.025242483243346214,
-0.01181863248348236,
-0.05418931320309639,
-0.019033290445804596,
0.029917016625404358,
0.004231335129588842,
-0.012127328664064407,
0.03478558734059334,
0.018574656918644905,
-0.013538508675992489,
-0.06399701535701752,
0.009587204083800316,
0.024254657328128815,
0.012277266010642052,
0.02451925352215767,
0.009401987306773663,
0.04487552493810654,
-0.010019377805292606,
-0.005702049471437931,
0.043252669274806976,
0.013944222591817379,
0.035561736673116684,
0.06392645835876465,
0.06759552657604218,
0.05687055364251137,
-0.1039334088563919,
-0.057576145976781845,
-0.021291179582476616,
-0.0018731210147961974,
0.006429689005017281,
-0.05969291552901268,
0.04293515160679817,
0.05655303969979286,
-0.037008196115493774,
0.04752148687839508,
0.033286210149526596,
-0.016793042421340942,
0.007686521392315626,
-0.05203726515173912,
-0.028664594516158104,
0.04240595921874046,
0.03437987342476845,
0.0447344072163105,
-0.05754086747765541,
-0.03820769861340523,
-0.03153987228870392,
0.031910307705402374,
-0.005014099180698395,
-0.0466042198240757,
0.05048496648669243,
-0.030093414708971977,
-0.004231335129588842,
-0.010530930943787098,
0.007060309872031212,
-0.01743689365684986,
0.012974036857485771,
-0.025401240214705467,
0.04039502888917923,
0.0029833228327333927,
-0.02492496743798256,
0.02294931560754776,
0.001143276342190802,
-0.004568695556372404,
-0.020761985331773758,
0.01767502911388874,
0.031151799485087395,
-0.016501987352967262,
-0.0009696350316517055,
0.016122732311487198,
0.02370782382786274,
-0.050167448818683624,
-0.04445217177271843,
-0.004460651893168688,
0.0012568322708830237,
-0.0051904963329434395,
-0.024254657328128815,
-0.03094012290239334,
0.0015710402512922883,
-0.03441515192389488,
0.0446285679936409,
-0.04050086811184883,
-0.01674012281000614,
0.0034904656931757927,
0.028294159099459648,
-0.022561240941286087,
-0.022578880190849304,
0.015725838020443916,
-0.021291179582476616,
0.0071837883442640305,
0.05923428013920784,
0.05715279281139374,
-0.012594781816005707,
0.06015154719352722,
0.01710173860192299,
0.051261115819215775,
-0.0734519213438034,
-0.08594086766242981,
-0.004718633368611336,
0.0010390914976596832,
0.01402360200881958,
0.04501664265990257,
0.011606955900788307,
0.055776890367269516,
-0.03471503034234047,
0.022384842857718468,
0.014279377646744251,
0.0005140333669260144,
-0.012877018190920353,
-0.011095402762293816,
-0.04173564910888672,
0.073028564453125,
0.024589812383055687,
0.03894856944680214,
-0.00947254616767168,
-0.0014365371316671371,
-0.04508720338344574,
-0.08269514888525009,
-0.002612888114526868,
0.037466831505298615,
-0.016934160143136978,
-0.01181863248348236,
0.031786829233169556,
0.026177389547228813,
0.035667575895786285,
-0.020603228360414505,
0.04688645526766777,
0.0045995647087693214,
0.06629018485546112,
0.006628136150538921,
-0.028064843267202377,
0.029758259654045105,
-0.04427577182650566,
0.0021167700178921223,
0.047380369156599045,
0.05859925225377083,
-0.009737142361700535,
-0.07401639223098755,
-0.029917016625404358,
-0.023725464940071106,
0.003907204605638981,
-0.021608693525195122,
-0.04028918966650963,
-0.006579626817256212,
0.01970360055565834,
0.04222956299781799,
0.02376074343919754,
0.052354779094457626,
0.09059775620698929,
0.020126955583691597,
0.032245464622974396,
0.07761490345001221,
-0.024766210466623306,
0.01083962619304657,
-0.071370430290699,
0.012612421996891499,
0.05200198292732239,
-0.03078136406838894,
-0.026759501546621323,
0.0038961798418313265,
0.043781861662864685,
0.05655303969979286,
-0.04501664265990257,
0.0037749065086245537,
0.029917016625404358,
-0.014288198202848434,
0.05584745109081268,
0.012929936870932579,
0.01860993728041649,
0.026935899630188942,
0.046745337545871735,
0.006980931386351585,
-0.020197514444589615,
-0.03494434431195259,
0.025242483243346214,
0.01965068280696869,
0.006240061484277248,
-0.07930831611156464,
-0.009304968640208244,
0.03487378731369972,
0.043781861662864685,
0.016960620880126953,
0.011457017622888088,
-0.061633288860321045,
-0.03499726578593254,
0.012727079913020134,
0.005949005950242281,
0.03337440639734268,
0.04600447043776512,
-0.05545937642455101,
0.06646657735109329,
-0.013697266578674316,
0.012233166955411434,
-0.030993040651082993,
0.02462509088218212,
0.025418879464268684,
-0.043217387050390244,
-0.009798881597816944,
0.017630930989980698,
-0.0002655609278008342,
0.05083775892853737,
-0.003494875505566597,
-0.061739128082990646,
-0.07613316178321838,
-0.034044716507196426,
-0.0027628259267657995,
-0.04815651848912239,
-0.031963229179382324,
-0.038913290947675705,
0.006989751011133194,
0.031328197568655014,
0.016546085476875305,
-0.00015930899826344103,
-0.00797316711395979,
-0.015099626034498215,
-0.05249589681625366,
-0.04081838205456734,
0.02839999832212925,
0.02033863216638565,
0.014508694410324097,
0.026741862297058105,
-0.011395278386771679,
-0.01761328987777233,
0.023778382688760757,
-0.019544843584299088,
-0.0325629785656929,
-0.022155527025461197,
-0.02781788632273674,
-0.031204719096422195,
0.027676768600940704,
-0.043323226273059845,
0.12277266383171082,
0.015893414616584778,
0.015302483923733234,
0.009181490167975426,
0.07613316178321838,
-0.0031134160235524178,
-0.014164719730615616,
0.009648943319916725,
-0.00262832292355597,
-0.025013165548443794,
0.025754036381840706,
-0.00520372623577714,
-0.055671051144599915,
-0.04335850477218628,
-0.04021863266825676,
-0.017410432919859886,
-0.052072543650865555,
-0.07260521501302719,
-0.01970360055565834,
-0.018168943002820015,
-0.0013538508210331202,
-0.03319801017642021,
-0.040253911167383194,
0.05464794859290123,
0.01621975004673004,
0.015214284881949425,
0.04208844527602196,
0.073028564453125,
-0.053519003093242645,
-0.02330210991203785,
-0.0034441612660884857,
0.012074409052729607,
0.007695341017097235,
0.00412990665063262,
-0.03690235689282417,
0.048544593155384064,
-0.00991353951394558,
-0.00941962655633688,
-0.012480122968554497,
0.026406707242131233,
-0.02601863257586956,
-0.04424049332737923,
-0.06219775974750519,
-0.013538508675992489,
-0.0771915465593338,
-0.010645589791238308,
0.008321552537381649,
-0.04554583504796028,
-0.04974409565329552,
-0.021838011220097542,
0.1056973859667778,
0.007351365871727467,
-0.05037912726402283,
0.001031374209560454,
0.053871799260377884,
0.017489813268184662,
-0.03824297711253166,
-0.0003392895741853863,
-0.03273937851190567,
-0.04004223272204399,
0.05736446753144264,
-0.012480122968554497,
0.00750571396201849,
0.006901552435010672,
0.03365664556622505,
-0.029123228043317795,
0.003027422120794654,
-0.05094359815120697,
0.008096645586192608,
0.031098879873752594,
-0.015778757631778717,
-0.02561291679739952,
-0.07031204551458359,
-0.01710173860192299,
-0.03771378472447395,
0.015549439936876297,
0.017181117087602615,
-0.03291577473282814,
-0.026530183851718903,
0.008581738919019699,
-0.027835525572299957,
-0.06269167363643646,
-0.015919875353574753,
0.0505555234849453,
-0.04177092760801315,
0.00470981327816844,
-0.014623353257775307,
-0.010081117041409016,
-0.021979128941893578,
0.06265639513731003,
-0.04138285294175148,
-0.02654782496392727,
0.039901115000247955,
0.0031795650720596313,
-0.002908353926613927,
0.0072411177679896355,
-0.00991353951394558,
0.058563970029354095,
0.09003328531980515,
-0.02787080593407154,
0.07031204551458359,
0.036373164504766464,
-0.00004341032399679534,
-0.025224843993782997,
0.02081490494310856,
-0.09553688764572144,
-0.0586698092520237,
-0.01935080625116825,
-0.02203204855322838,
-0.046216145157814026,
-0.01397068239748478,
0.08297738432884216,
-0.003534564981237054,
-0.07133515179157257,
-0.02033863216638565,
0.030993040651082993,
0.03923080489039421,
0.004811241757124662,
-0.001176350866444409,
0.0002381366357440129,
-0.038807451725006104,
-0.062444716691970825,
-0.02781788632273674,
-0.053519003093242645,
-0.045298878103494644,
0.03714931383728981,
0.023549066856503487,
0.031098879873752594,
0.01005465816706419,
-0.012136148288846016,
0.009313788264989853,
-0.04925018176436424,
-0.02984645776450634,
0.01633440889418125,
0.02555999904870987,
0.015408322215080261,
-0.021608693525195122,
-0.02079726569354534,
0.016704844310879707,
0.015866955742239952,
-0.0002262849302496761,
-0.05926956236362457,
0.014729191549122334,
0.013512048870325089,
0.08206012099981308,
-0.041700370609760284,
-0.016995899379253387,
0.01101602427661419,
0.014367576688528061,
0.0035918941721320152,
0.003283198457211256,
0.011157141998410225,
0.005406583659350872,
-0.004978819750249386,
0.03402707725763321,
-0.029758259654045105,
0.019227327778935432,
0.006028384901583195,
-0.034326955676078796,
-0.08227179944515228,
-0.025859873741865158,
0.015858136117458344,
0.058916766196489334,
-0.013485589064657688,
0.058740369975566864,
-0.014147079549729824,
-0.09892372041940689,
0.003611738793551922,
0.016643105074763298,
0.034097637981176376,
0.036020372062921524,
0.01952720433473587,
0.009234409779310226,
0.009278508834540844,
-0.020038755610585213,
-0.002161971991881728,
-0.054154034703969955,
-0.013556147925555706,
0.03030509129166603,
0.031222358345985413,
-0.039442483335733414,
0.009957639500498772,
-0.0008092235657386482,
-0.0055785709992051125,
-0.002694471972063184,
-0.0016129346331581473,
-0.019315525889396667,
-0.014420496299862862,
0.05179030820727348,
0.03187502920627594,
0.028840992599725723,
0.036073289811611176,
0.057046953588724136,
-0.031839750707149506,
-0.029281985014677048,
0.05881092697381973,
-0.021696893498301506,
0.008211303502321243,
-0.030763724818825722,
0.0337095633149147,
-0.08763428032398224,
0.02081490494310856,
0.03078136406838894,
-0.0488973893225193,
0.09073887765407562,
0.03824297711253166,
-0.002617297926917672,
-0.011227700859308243,
0.00008075698133325204,
-0.006350310053676367,
-0.022684719413518906,
-0.015611179172992706,
0.019915279000997543,
-0.00261509302072227,
0.019738880917429924,
0.03796074166893959,
-0.021308818832039833,
-0.047309812158346176,
0.07789713889360428,
-0.009137391112744808,
-0.013106334954500198,
-0.01750745251774788,
0.03704347461462021,
-0.02277291752398014,
-0.08537638932466507,
0.02115005999803543,
0.012638880871236324,
-0.010919005610048771,
-0.0547185055911541,
-0.0689714252948761,
-0.01000173855572939,
0.022279005497694016,
0.07514533400535583,
0.005574161186814308,
-0.050731923431158066,
0.03217490389943123,
0.013741365633904934,
-0.0032170494087040424,
-0.03007577359676361,
0.023619625717401505,
0.04699229449033737,
-0.03834881633520126,
0.043852418661117554,
-0.021308818832039833,
0.031204719096422195,
-0.0007050387794151902,
0.021996768191456795,
-0.035791054368019104,
-0.052178382873535156,
0.07535701245069504,
0.077403225004673,
-0.065337635576725,
0.08911602199077606,
0.044769685715436935,
-0.014482235535979271,
0.05824645608663559,
-0.02242012321949005,
-0.0015875775134190917,
0.009904719889163971,
-0.07309912890195847,
-0.04953242093324661,
-0.017066458240151405,
-0.022702358663082123,
0.002582018496468663,
0.025754036381840706,
-0.02446633391082287,
0.05337788537144661,
-0.03743154928088188,
-0.028011923655867577,
-0.024536892771720886,
-0.014420496299862862,
0.001225962652824819,
-0.03012869320809841,
0.03437987342476845,
-0.01808074489235878,
-0.04247651994228363,
0.002363726496696472,
0.020532669499516487,
-0.038983847945928574,
0.003534564981237054,
-0.03407999873161316,
-0.06808943301439285,
0.013582607731223106,
0.041876766830682755,
0.014076520688831806,
0.01330037135630846,
0.01975652016699314,
0.00472304318100214,
0.020444471389055252,
0.03252770006656647,
0.061174653470516205,
-0.01494968868792057,
-0.04145341366529465,
0.04219428449869156,
-0.073028564453125,
0.00590931624174118,
-0.0035257451236248016,
-0.014623353257775307,
0.03356844559311867,
-0.028999749571084976,
0.007589502725750208,
0.003790341317653656,
0.01098074484616518,
-0.0446285679936409,
0.014729191549122334,
-0.045581113547086716,
0.011739253997802734,
-0.031204719096422195,
-0.07627428323030472,
-0.033286210149526596,
0.01975652016699314,
-0.016590185463428497,
-0.019033290445804596,
-0.0016592390602454543,
0.01240074448287487,
-0.06537291407585144,
-0.03071080520749092,
0.004802422132343054,
-0.006187142338603735,
0.0305344071239233,
0.04776844382286072,
-0.043676022440195084,
-0.06547875702381134,
-0.02386658266186714,
-0.020215153694152832,
0.028011923655867577,
0.01982707902789116,
-0.006482608150690794,
0.01142173819243908,
0.0021740992087870836,
-0.0032501239329576492,
0.0674191266298294,
0.010592670179903507,
-0.01052211131900549,
-0.010636769235134125,
0.042970433831214905,
-0.0004197709495201707,
0.021838011220097542,
-0.01188037171959877,
-0.08481191843748093,
0.010266334749758244,
-0.07951999455690384,
-0.032951053231954575,
-0.03750211000442505,
-0.01853937841951847,
-0.004630434326827526,
-0.005005279090255499,
-0.04226484149694443,
0.032474782317876816,
0.01744571328163147,
-0.010266334749758244,
0.027376892045140266,
0.02213788591325283,
-0.017869066447019577,
-0.010178135707974434,
-0.00624447176232934,
0.023778382688760757,
0.019086210057139397,
-0.019386086612939835,
-0.030869564041495323,
0.03535005822777748,
0.02566583640873432,
0.022702358663082123,
-0.029811177402734756,
0.031275276094675064,
0.01726931519806385,
-0.00234829168766737,
-0.05175502598285675,
-0.016025712713599205,
-0.003871925175189972,
0.024942606687545776,
-0.014932048507034779,
0.054965462535619736,
0.030093414708971977,
-0.004674533847719431,
-0.023972420021891594,
0.005137577187269926,
-0.0649142786860466,
-0.059834033250808716,
0.05602384731173515,
0.04695701599121094,
-0.024660371243953705,
-0.030322730541229248,
-0.002731956308707595,
0.05803477764129639,
-0.04021863266825676,
-0.021943848580121994,
-0.027659129351377487,
0.09666582942008972,
0.0305344071239233,
-0.03501490503549576,
0.0625152736902237,
0.0018301240634173155,
-0.022931676357984543,
0.007942297495901585,
-0.01611391268670559,
-0.026530183851718903,
0.052531175315380096,
-0.0017033383483067155,
-0.010222235694527626,
-0.023143352940678596,
0.01553180068731308,
-0.01889217272400856,
0.061104096472263336,
0.013256272301077843,
-0.0385957732796669,
-0.02010931633412838,
0.040253911167383194,
0.023019874468445778,
-0.005225776229053736,
-0.02144993655383587,
-0.01193329133093357,
-0.015276024118065834,
-0.012497763149440289,
-0.010239874944090843,
-0.004330558702349663,
0.01778968796133995,
0.011307080276310444
]
|
42,157 | werkzeug.datastructures.headers | set | Remove all header tuples for `key` and add a new one. The newly
added key either appears at the end of the list if there was no
entry or replaces the first one.
Keyword arguments can specify additional parameters for the header
value, with underscores converted to dashes. See :meth:`add` for
more information.
.. versionchanged:: 0.6.1
:meth:`set` now accepts the same arguments as :meth:`add`.
:param key: The key to be inserted.
:param value: The value to be inserted.
| def set(self, _key, _value, **kw):
"""Remove all header tuples for `key` and add a new one. The newly
added key either appears at the end of the list if there was no
entry or replaces the first one.
Keyword arguments can specify additional parameters for the header
value, with underscores converted to dashes. See :meth:`add` for
more information.
.. versionchanged:: 0.6.1
:meth:`set` now accepts the same arguments as :meth:`add`.
:param key: The key to be inserted.
:param value: The value to be inserted.
"""
if kw:
_value = _options_header_vkw(_value, kw)
_value = _str_header_value(_value)
if not self._list:
self._list.append((_key, _value))
return
listiter = iter(self._list)
ikey = _key.lower()
for idx, (old_key, _old_value) in enumerate(listiter):
if old_key.lower() == ikey:
# replace first occurrence
self._list[idx] = (_key, _value)
break
else:
self._list.append((_key, _value))
return
self._list[idx + 1 :] = [t for t in listiter if t[0].lower() != ikey]
| (self, _key, _value, **kw) | [
0.004450682550668716,
0.015173518098890781,
-0.08117230236530304,
-0.040400996804237366,
-0.03380944952368736,
-0.012618367560207844,
0.0012474871473386884,
0.05447283759713173,
-0.002216083463281393,
-0.056879863142967224,
-0.06839655339717865,
-0.028421415016055107,
0.03036555089056492,
0.007887637242674828,
-0.006924827117472887,
0.020385652780532837,
0.00581852113828063,
0.05924985557794571,
-0.013044225983321667,
-0.06247156485915184,
0.04169708490371704,
-0.03262445330619812,
0.020607840269804,
0.025255251675844193,
0.008845818229019642,
-0.030384067445993423,
-0.005494498182088137,
-0.010220600292086601,
0.043067239224910736,
0.0003358841931913048,
0.026310639455914497,
-0.03832725062966347,
-0.06780405342578888,
-0.04058615118265152,
-0.00589721230790019,
-0.011266730725765228,
0.014210707508027554,
-0.011516690254211426,
0.06595249474048615,
0.0207744799554348,
0.011451886035501957,
-0.00971142202615738,
0.03442046418786049,
-0.02832883782684803,
0.043474581092596054,
0.12790562212467194,
0.021755807101726532,
0.08569010347127914,
0.06395281106233597,
-0.002691702451556921,
-0.03701264411211014,
0.004594178404659033,
0.0017659234581515193,
-0.04954769089818001,
-0.05754642188549042,
0.014016293920576572,
0.022774163633584976,
0.0042909858748316765,
0.009304079227149487,
0.045622389763593674,
0.013516373001039028,
-0.013294186443090439,
-0.05132518708705902,
-0.027106808498501778,
-0.004422909114509821,
-0.038771625608205795,
0.007151642814278603,
-0.029773052781820297,
0.0035133312921971083,
-0.023403692990541458,
0.0038836428429931402,
0.003279572119936347,
0.0029324048664420843,
-0.015525314025580883,
0.012183251790702343,
0.0540284626185894,
-0.07961699366569519,
0.05917579308152199,
-0.0460667610168457,
-0.04921441152691841,
0.034087181091308594,
0.03962334245443344,
-0.0016953328158706427,
-0.0022276556119322777,
-0.021663228049874306,
0.027125325053930283,
0.037345923483371735,
0.03088398650288582,
0.07572872191667557,
0.038660530000925064,
-0.02251494489610195,
-0.02053377777338028,
-0.020978152751922607,
0.00043193376041017473,
-0.014173676259815693,
-0.0005690647521987557,
-0.003140705171972513,
-0.04006771370768547,
-0.0211262758821249,
0.0034855578560382128,
0.0017763384385034442,
-0.0030180395115166903,
0.05832407623529434,
0.006304555106908083,
-0.012414696626365185,
-0.04221552237868309,
0.027791885659098625,
-0.005448209587484598,
-0.02486642450094223,
0.005915727932006121,
-0.03366132453083992,
-0.07539544254541397,
-0.004332645796239376,
0.0009714893531054258,
0.04610379412770271,
0.0026847589761018753,
0.02116330713033676,
-0.034753743559122086,
-0.0050454954616725445,
0.003997050691395998,
-0.010646458715200424,
-0.00422849552705884,
0.009841030463576317,
0.034087181091308594,
-0.02805110439658165,
-0.07335872948169708,
0.04865894466638565,
0.013257155194878578,
0.05128815770149231,
-0.016608474776148796,
-0.039734434336423874,
-0.0043095010332763195,
0.0000041497319216432516,
-0.027680791914463043,
0.04473363980650902,
-0.048918161541223526,
-0.01334973331540823,
0.006642464082688093,
0.0037794928066432476,
0.007776543498039246,
0.0316801555454731,
-0.014386605471372604,
0.00199505384080112,
0.03353171423077583,
0.04484473541378975,
-0.03642014414072037,
-0.037068191915750504,
0.002450999803841114,
-0.007947812788188457,
0.06876686215400696,
-0.06376765668392181,
0.007387716323137283,
0.010729778558015823,
0.006003676913678646,
0.01846929080784321,
-0.02033010683953762,
-0.03969740495085716,
-0.005050124600529671,
-0.009470718912780285,
0.0716923251748085,
0.08843041211366653,
-0.03493889793753624,
0.022496430203318596,
0.047844257205724716,
-0.0550653338432312,
0.03716076910495758,
-0.009572554379701614,
0.011516690254211426,
-0.011313019320368767,
0.01647886633872986,
0.017099138349294662,
-0.027921494096517563,
-0.01509945560246706,
0.02808813564479351,
-0.0075265830382704735,
0.0045756627805531025,
-0.029458288103342056,
0.03884568810462952,
-0.008429218083620071,
-0.014747659675776958,
0.02929164655506611,
0.011414854787290096,
-0.00432801665738225,
0.01362746674567461,
-0.0296064130961895,
0.030550707131624222,
0.035475850105285645,
0.021144792437553406,
0.031735703349113464,
0.04795535281300545,
0.03262445330619812,
-0.04980691149830818,
-0.004846453201025724,
-0.009341110475361347,
-0.005563931539654732,
-0.016247421503067017,
-0.02705126255750656,
-0.037179283797740936,
0.02801407314836979,
0.05502830445766449,
-0.05354705825448036,
-0.04747394844889641,
0.05247315391898155,
0.01165555790066719,
0.06498968601226807,
-0.03051367588341236,
0.06735967844724655,
-0.049436599016189575,
-0.05351002514362335,
0.045140985399484634,
0.047696132212877274,
-0.007022033911198378,
-0.007887637242674828,
-0.0007157428772188723,
-0.0019429787062108517,
-0.08302386105060577,
-0.06376765668392181,
0.002420912031084299,
0.0039021584670990705,
-0.03673490881919861,
0.042956143617630005,
0.025236735120415688,
0.029773052781820297,
0.0009876905241981149,
0.05199174955487251,
0.0242368932813406,
-0.01686769351363182,
-0.07180342078208923,
-0.04865894466638565,
0.018200814723968506,
0.03142093867063522,
-0.005656509660184383,
-0.027106808498501778,
0.0002851109893526882,
-0.031328361481428146,
-0.04284505173563957,
-0.018561867997050285,
-0.0057213143445551395,
-0.00428635673597455,
0.015006877481937408,
-0.009878061711788177,
0.040845368057489395,
0.052102841436862946,
0.0588795430958271,
-0.04921441152691841,
0.002205668482929468,
-0.031106173992156982,
0.04314130172133446,
-0.006281410343945026,
0.07754325121641159,
-0.02494048699736595,
0.014312542974948883,
-0.0038952152244746685,
-0.02029307559132576,
0.025199703872203827,
-0.01357191987335682,
-0.02275564707815647,
0.03193937614560127,
-0.012414696626365185,
-0.03645717725157738,
-0.03940115496516228,
-0.02382955141365528,
0.02988414652645588,
-0.0031592207960784435,
0.014368089847266674,
0.013294186443090439,
0.05088081210851669,
0.06573031097650528,
-0.038216158747673035,
0.048881132155656815,
-0.037864360958337784,
-0.043030206114053726,
-0.02618102915585041,
-0.015469767153263092,
0.03969740495085716,
0.0568058006465435,
-0.021237369626760483,
-0.03508702293038368,
-0.006721155717968941,
0.021792838349938393,
0.07350685447454453,
-0.008091308176517487,
-0.01615484431385994,
0.04025287181138992,
-0.0025806089397519827,
0.07054436206817627,
-0.013062741607427597,
0.04580754414200783,
-0.04902925714850426,
-0.012785008177161217,
-0.004214609041810036,
0.013257155194878578,
-0.03995662182569504,
0.015155002474784851,
0.007646934594959021,
0.040771305561065674,
-0.019515421241521835,
0.0005392662715166807,
0.0561022087931633,
0.021459557116031647,
0.007193302735686302,
0.02853250876069069,
-0.007818203419446945,
-0.003256427589803934,
-0.010877903550863266,
-0.03019891120493412,
-0.016654763370752335,
0.03943818435072899,
-0.026347670704126358,
-0.007281251717358828,
0.009387399069964886,
0.030828440561890602,
-0.06210125610232353,
-0.032365232706069946,
0.05947204306721687,
0.014460667967796326,
-0.07265513390302658,
0.0211262758821249,
-0.0436227060854435,
0.030828440561890602,
-0.045696452260017395,
-0.10679786652326584,
-0.10324287414550781,
-0.031069142743945122,
0.01615484431385994,
-0.039808496832847595,
0.051621437072753906,
-0.01686769351363182,
0.0027055891696363688,
0.025644078850746155,
-0.052028778940439224,
-0.01622890494763851,
-0.012229540385305882,
0.09324446320533752,
-0.026069937273859978,
0.01596043072640896,
-0.0005326122045516968,
0.022607523947954178,
0.014321801252663136,
-0.004122030921280384,
-0.039215996861457825,
0.013720044866204262,
-0.012951647862792015,
-0.04765910282731056,
-0.01778421364724636,
-0.07076654583215714,
-0.02642173320055008,
0.03103211149573326,
0.02033010683953762,
0.04003068432211876,
0.052065812051296234,
-0.04332645609974861,
0.04747394844889641,
0.03377241641283035,
0.11768502742052078,
-0.004615008365362883,
-0.04921441152691841,
-0.05839813873171806,
0.03453155606985092,
-0.04128974303603172,
0.06661905348300934,
-0.028995398432016373,
-0.008267206139862537,
0.014331058599054813,
-0.051028937101364136,
-0.012220283038914204,
-0.07572872191667557,
0.005587076302617788,
-0.014423636719584465,
-0.04851081967353821,
0.017636090517044067,
-0.045770514756441116,
0.034513041377067566,
0.0011670601088553667,
0.0484737865626812,
0.0036707136314362288,
0.01499762013554573,
0.08109824359416962,
-0.07820980995893478,
-0.04006771370768547,
0.03230968862771988,
0.011849971488118172,
0.013970005325973034,
0.021033698692917824,
-0.035235147923231125,
-0.006860022433102131,
0.07424747198820114,
0.016127070412039757,
0.027310481294989586,
0.01561789121478796,
-0.008993943221867085,
0.014877268113195896,
0.02295931987464428,
-0.014247738756239414,
-0.001684917719103396,
-0.020311590284109116,
-0.024477597326040268,
-0.009188356809318066,
-0.0032517986837774515,
-0.04854784905910492,
0.07358091324567795,
-0.04973284900188446,
0.0032425408717244864,
0.06469343602657318,
0.01390520017594099,
-0.039215996861457825,
0.010933449491858482,
0.01006321795284748,
0.008419959805905819,
-0.03621647506952286,
0.0242368932813406,
-0.06402687728404999,
0.014895783737301826,
-0.057916734367609024,
-0.005378775764256716,
0.04902925714850426,
-0.020941121503710747,
0.022903772071003914,
0.011849971488118172,
0.033050309866666794,
0.004022509790956974,
-0.06299000233411789,
-0.06987779587507248,
0.06195313110947609,
0.00839681550860405,
-0.03906787186861038,
-0.010970480740070343,
-0.030347036197781563,
-0.03836428001523018,
-0.07695075124502182,
0.023885097354650497,
0.010776067152619362,
0.03660530224442482,
0.03356874734163284,
-0.011970322579145432,
0.006304555106908083,
-0.005124186631292105,
-0.005619478411972523,
0.011442628689110279,
0.014664338901638985,
-0.024681268259882927,
-0.04336348921060562,
-0.05591705068945885,
-0.015451251529157162,
-0.010924192145466805,
-0.0060916258953511715,
-0.04428926855325699,
-0.013294186443090439,
0.0685817077755928,
0.017774956300854683,
0.06187906861305237,
0.02590329572558403,
-0.05088081210851669,
0.007434005383402109,
0.025755172595381737,
-0.03623498976230621,
0.012164736166596413,
-0.0038720706943422556,
0.012822039425373077,
-0.003888271749019623,
0.07983917742967606,
0.042030368000268936,
0.019515421241521835,
0.002559778979048133,
-0.03951224684715271,
0.04288208484649658,
0.008169999346137047,
0.011470401659607887,
0.007679336704313755,
-0.010664974339306355,
-0.056953925639390945,
-0.05491720885038376,
-0.023422207683324814,
-0.012211024761199951,
-0.02188541553914547,
0.004670555237680674,
0.05128815770149231,
0.012220283038914204,
-0.0484737865626812,
-0.011313019320368767,
0.054176587611436844,
-0.03627202287316322,
0.003548047970980406,
-0.03210601583123207,
0.03799397125840187,
0.007679336704313755,
0.035235147923231125,
-0.034476008266210556,
-0.001829570741392672,
0.020718934014439583,
0.04114161804318428,
-0.051621437072753906,
-0.026051420718431473,
-0.0008945339359343052,
0.07039623707532883,
-0.007702481467276812,
-0.018913665786385536,
0.007498810067772865,
0.00040676415665075183,
-0.03382796421647072,
0.0356610082089901,
-0.058990638703107834,
0.011313019320368767,
-0.002661614678800106,
0.03140242397785187,
-0.013377506285905838,
0.012655398808419704,
-0.004434481263160706,
-0.0540284626185894,
-0.06661905348300934,
-0.0034693568013608456,
0.006364730652421713,
-0.011063058860599995,
-0.021385494619607925,
0.03023594245314598,
0.005471353884786367,
-0.1339787393808365,
-0.007947812788188457,
-0.020552294328808784,
0.03858646750450134,
0.010776067152619362,
0.013812622986733913,
0.039290059357881546,
-0.015210549347102642,
-0.01518277544528246,
-0.008045019581913948,
0.004749246407300234,
-0.060620009899139404,
0.05247315391898155,
-0.002341063693165779,
-0.07917261868715286,
0.0023341202177107334,
-0.009970639832317829,
0.031976405531167984,
0.0651007816195488,
0.041363805532455444,
0.03438343107700348,
0.012553563341498375,
0.02382955141365528,
-0.03282812237739563,
0.002569036791101098,
0.06195313110947609,
-0.038660530000925064,
-0.07217372953891754,
-0.006688753142952919,
0.032642967998981476,
-0.0415489599108696,
-0.027940010651946068,
-0.018534095957875252,
-0.03164312615990639,
-0.09428133070468903,
-0.01026688888669014,
0.030291488394141197,
-0.0024255409371107817,
-0.07143310457468033,
-0.037345923483371735,
-0.016136327758431435,
0.004929773043841124,
0.026162514463067055,
0.004939030855894089,
0.00615643011406064,
0.00042788346763700247,
-0.004473826847970486,
0.024662751704454422,
0.028143681585788727,
0.024088770151138306,
-0.022792678326368332,
-0.002249642973765731,
0.05232502892613411,
-0.013340475037693977,
0.025773687288165092,
-0.002652356866747141,
-0.01032243575900793,
0.027921494096517563,
-0.07946886867284775,
0.0013713100925087929,
0.03782733157277107,
0.034753743559122086,
-0.01058165356516838,
-0.034753743559122086,
-0.04969581589102745,
0.05351002514362335,
0.07843199372291565,
-0.04058615118265152,
0.006313812918961048,
-0.00662394892424345,
0.04151193052530289,
0.03590171039104462,
-0.021422525867819786,
0.0240702535957098,
-0.05254721641540527,
-0.040326934307813644,
0.025810718536376953,
-0.03356874734163284,
-0.021237369626760483,
-0.01790456660091877,
0.00340223778039217,
-0.03536475822329521,
-0.03480929136276245,
0.05380627512931824,
0.017562028020620346,
-0.015728985890746117,
-0.009105036035180092,
0.009720679372549057,
0.04128974303603172,
0.002724104793742299,
-0.03356874734163284,
0.007484923116862774,
-0.000025296187232015654,
-0.041956305503845215,
-0.011525948531925678,
0.022533461451530457,
-0.012664657086133957,
-0.004781648516654968,
-0.01686769351363182,
-0.007373829837888479,
0.043474581092596054,
-0.043585676699876785,
-0.0019152052700519562,
-0.04877003654837608,
-0.021940961480140686,
-0.016654763370752335,
-0.006730413530021906,
0.011229699477553368,
-0.013831138610839844,
-0.050991907715797424,
-0.001581924851052463,
0.02510712668299675,
-0.02064487151801586,
-0.05395440012216568,
-0.017562028020620346,
-0.01147965993732214,
0.018959954380989075,
0.03377241641283035,
-0.020107919350266457,
0.053658150136470795,
-0.00006400894199032336,
0.008031132631003857,
0.024977516382932663,
0.023903613910079002,
0.06243453547358513,
0.0020957321394234896,
0.05869438871741295,
-0.006230492610484362,
-0.025199703872203827,
0.07369200885295868,
0.00841533113270998,
-0.05121409520506859,
0.019922763109207153,
-0.017969369888305664,
0.0085727134719491,
0.03836428001523018,
-0.05239909142255783,
0.0132478978484869,
0.014830979518592358,
0.004976062104105949,
-0.02562556229531765,
-0.01571046933531761,
0.006480453070253134,
-0.02725493349134922,
0.03597577288746834,
-0.019645029678940773,
0.06021266430616379,
-0.056435488164424896,
0.034438978880643845,
-0.00076955376425758,
0.014719885773956776,
0.02368142642080784,
0.01547902449965477,
0.026292122900485992,
0.00015593589341733605,
-0.07776543498039246,
-0.048881132155656815,
0.012414696626365185,
0.04025287181138992,
-0.04162302240729332,
-0.01949690654873848,
-0.025884781032800674,
-0.006355472840368748,
0.010822356678545475,
0.028754696249961853,
0.035994287580251694,
0.011572237126529217,
-0.016858436167240143,
-0.009470718912780285,
0.07887636870145798,
-0.024440566077828407,
0.01175739336758852,
-0.040400996804237366,
-0.044030047953128815,
0.023885097354650497,
-0.05773157998919487,
-0.05328783765435219,
0.032254140824079514,
-0.03027297370135784,
0.021755807101726532,
0.0027264191303402185,
-0.06469343602657318,
0.029791567474603653,
0.02486642450094223,
-0.0034369544591754675,
0.038253188133239746,
0.010340951383113861,
0.016321483999490738,
-0.0051936199888587,
-0.028995398432016373,
0.004709900822490454,
0.006790589075535536,
0.040808338671922684,
-0.008230174891650677,
0.010340951383113861,
0.03627202287316322,
-0.03414272889494896,
0.019441358745098114,
0.05028831586241722,
-0.021422525867819786,
0.00428635673597455,
-0.07961699366569519,
0.0415489599108696,
0.04984394088387489,
0.0876157209277153,
0.007054436020553112,
0.026255091652274132,
-0.02073744870722294,
0.02295931987464428,
-0.05302862077951431,
-0.004767762031406164,
-0.014636565931141376,
-0.054769083857536316,
0.019904248416423798,
0.03675342723727226,
0.048362694680690765,
-0.03175421804189682,
0.056435488164424896,
0.03425382450222969,
-0.006387874949723482,
-0.040771305561065674,
0.03334655985236168,
0.04099349305033684,
0.09568851441144943,
-0.00865140464156866,
-0.00028699147514998913,
0.012127704918384552,
-0.012636883184313774,
-0.07613606750965118,
-0.019441358745098114,
0.04340051859617233,
0.029032429680228233,
-0.005735200829803944,
0.07006295770406723,
-0.06191609799861908,
-0.025607047602534294,
-0.031495001167058945,
0.06810030341148376,
0.0401788093149662,
-0.0630270317196846,
-0.020959636196494102,
0.03580913320183754,
0.05284346640110016,
0.005466724745929241,
-0.020607840269804,
-0.009665132500231266,
0.019626514986157417,
-0.00869306456297636,
0.02001534216105938,
0.0332539826631546,
0.045178014785051346,
0.048881132155656815
]
|
42,158 | werkzeug.datastructures.headers | setdefault | Return the first value for the key if it is in the headers,
otherwise set the header to the value given by ``default`` and
return that.
:param key: The header key to get.
:param default: The value to set for the key if it is not in the
headers.
| def setdefault(self, key, default):
"""Return the first value for the key if it is in the headers,
otherwise set the header to the value given by ``default`` and
return that.
:param key: The header key to get.
:param default: The value to set for the key if it is not in the
headers.
"""
if key in self:
return self[key]
self.set(key, default)
return default
| (self, key, default) | [
0.0007470455020666122,
0.006215058267116547,
-0.05296310409903526,
-0.014087465591728687,
-0.03431792929768562,
-0.01469095703214407,
-0.010628650896251202,
0.042154308408498764,
0.036425646394491196,
-0.02422972023487091,
-0.02763449214398861,
-0.030426762998104095,
-0.027850667014718056,
0.0027697542682290077,
0.006877097301185131,
0.03354329988360405,
0.02188781462609768,
0.04464033246040344,
0.0534675158560276,
-0.02131134457886219,
0.03682196885347366,
-0.03898372873663902,
0.025328613817691803,
-0.01581687293946743,
-0.01905951276421547,
0.016681576147675514,
0.013240776024758816,
-0.041253574192523956,
0.07443658262491226,
-0.017095914110541344,
0.0008799036149866879,
-0.06269102543592453,
-0.05188222602009773,
0.031201394274830818,
0.020338553935289383,
-0.0022169293370097876,
-0.0017958366079255939,
0.03498447313904762,
-0.04528886079788208,
-0.0004523369134403765,
-0.01605106331408024,
-0.011439310386776924,
-0.0011608197819441557,
-0.07202261686325073,
-0.001855510170571506,
0.09461300075054169,
0.023347001522779465,
0.07890421897172928,
0.07166232168674469,
-0.003323705168440938,
0.009664866141974926,
-0.00994409341365099,
0.008421854116022587,
-0.027706550434231758,
-0.05616971477866173,
-0.012358058243989944,
0.014835073612630367,
0.025959128513932228,
-0.05526898428797722,
0.04388371482491493,
0.03721829131245613,
-0.014997205697000027,
-0.025688907131552696,
-0.03282271325588226,
-0.01431264914572239,
0.024662071838974953,
0.029616104438900948,
-0.024770159274339676,
0.03707417473196983,
0.004918002523481846,
-0.030534852296113968,
0.015258418396115303,
-0.04521680250763893,
-0.03529072180390358,
0.04460430145263672,
0.03819108381867409,
-0.06261896342039108,
-0.047234442085027695,
-0.033183008432388306,
-0.03512858971953392,
0.026031186804175377,
-0.0026391479186713696,
-0.06186234951019287,
0.009709903039038181,
-0.04038887098431587,
0.00025065711815841496,
0.059412356466054916,
0.03039073385298252,
0.05476457253098488,
0.005521493963897228,
-0.026931919157505035,
-0.01519536692649126,
0.029706178233027458,
0.019203629344701767,
0.028823459520936012,
-0.022410240024328232,
0.0020334050059318542,
-0.015051250346004963,
0.004048795439302921,
-0.02671574428677559,
-0.06593365967273712,
0.0133668789640069,
0.019599951803684235,
-0.023527149111032486,
-0.028517208993434906,
-0.03323705121874809,
0.04309106990695,
-0.00412085372954607,
-0.0004011077107861638,
-0.01444775890558958,
-0.055485159158706665,
-0.15204374492168427,
-0.02930985391139984,
0.01123214140534401,
0.047234442085027695,
0.005314325448125601,
0.036930058151483536,
-0.0022878621239215136,
-0.0011405532713979483,
0.053827811032533646,
-0.020788919180631638,
-0.03311095014214516,
-0.008759628981351852,
-0.011331222020089626,
0.017357125878334045,
-0.06460057944059372,
0.038767553865909576,
0.045324888080358505,
0.08344390988349915,
0.047414589673280716,
0.004976550117135048,
0.037506524473428726,
-0.0047828927636146545,
0.004350540693849325,
0.01963598094880581,
-0.01551963109523058,
-0.025670893490314484,
0.08157038688659668,
0.017375141382217407,
0.04518077149987221,
0.031237423419952393,
-0.02489626221358776,
0.025256555527448654,
0.009304572828114033,
0.058547649532556534,
-0.025905083864927292,
0.03927196189761162,
-0.01515033096075058,
-0.06578954309225082,
0.029652133584022522,
0.014808052219450474,
0.04763076454401016,
-0.011223134584724903,
-0.01169151533395052,
-0.0038596412632614374,
-0.01889738067984581,
-0.023184869438409805,
-0.0013004334177821875,
-0.021833769977092743,
0.03410175442695618,
0.05476457253098488,
0.009583800099790096,
0.028084857389330864,
0.008669556118547916,
-0.012952541932463646,
0.01963598094880581,
-0.02197788655757904,
0.03055286593735218,
0.057394713163375854,
0.01972605474293232,
-0.05245869606733322,
0.014645920135080814,
-0.057070448994636536,
0.015402535907924175,
0.058151327073574066,
0.010007144883275032,
-0.03620947152376175,
-0.008349795825779438,
-0.00089228869182989,
0.03959622606635094,
0.014501802623271942,
0.011466332711279392,
0.003483585314825177,
0.00455545773729682,
-0.03246242180466652,
0.049648407846689224,
0.05126972869038582,
0.005062120035290718,
-0.026031186804175377,
0.04395577311515808,
0.03323705121874809,
-0.017104921862483025,
-0.01560970488935709,
-0.006197043694555759,
0.03071499802172184,
-0.017095914110541344,
0.029670147225260735,
-0.058655738830566406,
0.024770159274339676,
0.08214686065912247,
-0.04301901161670685,
-0.020590757951140404,
0.024499939754605293,
0.008183159865438938,
0.009574792347848415,
-0.0022799805738031864,
0.037830788642168045,
-0.030012426897883415,
-0.14404523372650146,
0.0188073068857193,
-0.041649896651506424,
0.004990061279386282,
-0.051053550094366074,
-0.023941485211253166,
-0.012727358378469944,
-0.03152565658092499,
-0.012862468138337135,
0.002835057443007827,
0.00503960158675909,
-0.00916045531630516,
0.02972419187426567,
-0.016015034168958664,
0.04845944046974182,
0.006395204924046993,
0.05559324473142624,
0.022194063290953636,
-0.011304200626909733,
-0.07209467887878418,
-0.049143996089696884,
-0.0013206999283283949,
0.017780471593141556,
0.021167227998375893,
-0.010952914133667946,
-0.015087279491126537,
0.022013917565345764,
-0.11608648300170898,
0.008223692886531353,
-0.024409865960478783,
-0.018438005819916725,
0.03689402714371681,
0.01315971091389656,
0.02648155204951763,
0.031111320480704308,
0.0316157303750515,
-0.004967542830854654,
-0.02005031891167164,
-0.06892409920692444,
0.028661327436566353,
-0.006341160740703344,
0.03887563943862915,
-0.020770905539393425,
-0.0015988012310117483,
-0.01607808656990528,
-0.02131134457886219,
0.031237423419952393,
0.01772642694413662,
-0.06420425325632095,
0.055160894989967346,
-0.00961982924491167,
-0.01749223656952381,
-0.00857497937977314,
-0.036425646394491196,
-0.01161044929176569,
-0.029508015140891075,
-0.025184497237205505,
0.03287675604224205,
0.003350727027282119,
0.041073430329561234,
0.025959128513932228,
0.03289477154612541,
0.11233942955732346,
0.004093831870704889,
-0.022932665422558784,
-0.08358803391456604,
0.07695863395929337,
0.012817432172596455,
-0.04759473726153374,
-0.020266493782401085,
0.003028715029358864,
0.004048795439302921,
0.02431979402899742,
-0.002425223821774125,
-0.010511554777622223,
0.020770905539393425,
-0.04244254156947136,
0.04586533084511757,
-0.03174183517694473,
0.008313766680657864,
-0.051918257027864456,
-0.04464033246040344,
0.02314884029328823,
0.05386383831501007,
-0.06593365967273712,
0.032174184918403625,
-0.05112561210989952,
-0.03345322608947754,
-0.0627991110086441,
-0.018627161160111427,
0.08978507667779922,
0.048243265599012375,
-0.03064293973147869,
-0.014826066792011261,
-0.013637099415063858,
-0.03898372873663902,
-0.038659464567899704,
-0.031669776886701584,
-0.006516803987324238,
0.018428999930620193,
0.016105107963085175,
0.016510438174009323,
-0.016096100211143494,
0.015852902084589005,
-0.04626165330410004,
-0.030192572623491287,
0.04219033941626549,
-0.0029048642609268427,
-0.02363523654639721,
0.01914958469569683,
0.029363898560404778,
0.028337063267827034,
-0.028174931183457375,
-0.03471425175666809,
-0.10196298360824585,
-0.02379736863076687,
0.031201394274830818,
-0.03514660522341728,
0.011709529906511307,
0.006147503387182951,
-0.02986830845475197,
0.0749409943819046,
0.02055472880601883,
-0.021779725328087807,
-0.019329732283949852,
0.023166855797171593,
-0.04784694314002991,
0.020194435492157936,
0.007773326709866524,
-0.005372873041778803,
0.012637285515666008,
0.0010893241269513965,
-0.05433221906423569,
-0.03707417473196983,
0.003375497180968523,
-0.041757985949516296,
-0.008579482324421406,
-0.05692633241415024,
0.054728541523218155,
0.00503960158675909,
0.01132221519947052,
-0.04204621911048889,
-0.007178842555731535,
0.006129488814622164,
0.04835135117173195,
0.028607282787561417,
0.059232208877801895,
-0.017537273466587067,
0.015375513583421707,
-0.06935644894838333,
0.052818987518548965,
-0.02313082665205002,
0.019762083888053894,
0.015690770000219345,
-0.06672630459070206,
0.016699591651558876,
-0.004918002523481846,
0.0007245271699503064,
-0.009061374701559544,
0.03489439934492111,
-0.032174184918403625,
-0.02296869456768036,
0.013835260644555092,
-0.01551963109523058,
-0.03469623997807503,
-0.014717978425323963,
0.04705429822206497,
0.006728476379066706,
-0.037254322320222855,
0.03711020201444626,
-0.04388371482491493,
-0.0724189430475235,
0.023365017026662827,
0.012385079637169838,
-0.02862529829144478,
0.06744689494371414,
-0.018428999930620193,
-0.02064480260014534,
0.06478072702884674,
0.036407630890607834,
0.014114487916231155,
-0.01132221519947052,
0.01956392265856266,
-0.02462604269385338,
-0.013276806101202965,
-0.002958908211439848,
-0.025076409801840782,
-0.035669028759002686,
0.010286372154951096,
-0.015033234842121601,
-0.001808221684768796,
-0.05667412653565407,
0.07007703185081482,
0.019617967307567596,
0.002794524421915412,
0.03934402018785477,
0.0020829453133046627,
0.0010054432787001133,
0.01705988496541977,
-0.04247857257723808,
-0.0046117533929646015,
-0.023941485211253166,
-0.005125171504914761,
0.0012396338861435652,
-0.016105107963085175,
-0.03768667206168175,
-0.00040786320460028946,
0.04118151590228081,
0.0361374132335186,
0.049324143677949905,
0.025274571031332016,
0.018005654215812683,
-0.04925208538770676,
-0.046153564006090164,
-0.021779725328087807,
0.04006460681557655,
0.01690676063299179,
-0.012934527359902859,
-0.013195740059018135,
-0.051305755972862244,
-0.06593365967273712,
-0.05559324473142624,
0.03545285388827324,
-0.022860605269670486,
0.005859268829226494,
0.0055530196987092495,
0.06103367358446121,
0.02347310446202755,
0.005715151317417622,
0.013015593402087688,
-0.022698473185300827,
0.005215244367718697,
0.015933968126773834,
-0.0497564971446991,
-0.05703441798686981,
-0.007822866551578045,
-0.034173812717199326,
-0.024788174778223038,
-0.01796962507069111,
0.036930058151483536,
0.013105666264891624,
-0.04186607524752617,
-0.0027855171356350183,
-0.03221021592617035,
0.013348864391446114,
0.01871723309159279,
0.028697356581687927,
-0.030534852296113968,
-0.05260281264781952,
0.019167600199580193,
0.06204249709844589,
-0.008174153044819832,
0.06672630459070206,
0.040424901992082596,
0.024121632799506187,
0.038407258689403534,
-0.06009691208600998,
0.03112933598458767,
-0.00037549310945905745,
-0.003958722110837698,
0.010763760656118393,
-0.0255447905510664,
-0.01748322881758213,
-0.017933595925569534,
-0.029760221019387245,
-0.04845944046974182,
-0.026841845363378525,
-0.03190396726131439,
0.02903963439166546,
0.019005468115210533,
-0.03273263946175575,
0.023617221042513847,
0.01460989098995924,
-0.01797863282263279,
0.01832091063261032,
-0.04118151590228081,
0.0521344318985939,
-0.007111287675797939,
0.0028688348829746246,
-0.007899429649114609,
-0.00832727737724781,
0.01749223656952381,
0.04337930679321289,
0.018176794052124023,
-0.027184125036001205,
-0.00328992772847414,
0.033273082226514816,
0.02123928628861904,
0.022518327459692955,
0.02089700847864151,
0.02015840634703636,
-0.032678596675395966,
0.023743323981761932,
-0.07198658585548401,
-0.02388744242489338,
-0.0029926856514066458,
-0.02898559160530567,
-0.06070940941572189,
-0.030444778501987457,
-0.049143996089696884,
0.017951611429452896,
-0.0348043255507946,
0.015762828290462494,
0.06816747784614563,
-0.062402788549661636,
-0.019527893513441086,
0.025905083864927292,
0.0006828682962805033,
-0.039992548525333405,
-0.012087837792932987,
0.030516836792230606,
0.014402722008526325,
0.029399927705526352,
0.000463596050394699,
0.0482792928814888,
0.02338303066790104,
-0.021257301792502403,
0.05804324150085449,
-0.009718909859657288,
-0.0171409510076046,
0.027778608724474907,
0.032678596675395966,
-0.07281526178121567,
0.005431420635432005,
-0.016123121604323387,
0.117887943983078,
0.03536278009414673,
0.023527149111032486,
0.00649428553879261,
0.014465773478150368,
-0.05137781426310539,
-0.02995838224887848,
-0.004589234944432974,
0.00885870959609747,
-0.020194435492157936,
-0.04128960520029068,
0.009763946756720543,
-0.003094018204137683,
-0.03239036351442337,
0.0734637901186943,
0.01161044929176569,
-0.0616101436316967,
-0.08121009916067123,
-0.006534818559885025,
0.017879551276564598,
-0.014492795802652836,
-0.01979811303317547,
-0.026265377178788185,
-0.045072682201862335,
0.025256555527448654,
0.04103739932179451,
0.019780099391937256,
0.02812088653445244,
0.0028733385261148214,
0.05317928269505501,
0.06578954309225082,
0.0013240776024758816,
-0.017276059836149216,
-0.019870171323418617,
-0.0046117533929646015,
0.023455088958144188,
-0.0014817059272900224,
-0.01224096305668354,
0.0060349116101861,
0.017339112237095833,
0.04330724850296974,
-0.010034166276454926,
0.05299913510680199,
0.01564573310315609,
0.015798859298229218,
-0.04283886402845383,
-0.013177725486457348,
0.026103245094418526,
-0.00007649194594705477,
0.06852777302265167,
-0.07861598581075668,
-0.004728848580271006,
-0.04128960520029068,
-0.0039024262223392725,
0.023995529860258102,
-0.033759474754333496,
0.02487824857234955,
-0.09691888093948364,
-0.0026053704787045717,
-0.030570881441235542,
-0.008543453179299831,
-0.017330104485154152,
0.07184246927499771,
0.03345322608947754,
-0.03952416777610779,
0.0016033048741519451,
0.04269474744796753,
0.022103989496827126,
0.0020525455474853516,
-0.01790657453238964,
0.07072556018829346,
0.03556094318628311,
0.007669742219150066,
-0.03154367208480835,
0.021113183349370956,
0.02606721594929695,
-0.0667983666062355,
-0.015078271739184856,
-0.034678224474191666,
-0.016924774274230003,
0.04636973887681961,
-0.03298484534025192,
0.004620760679244995,
0.016465401276946068,
-0.032264258712530136,
-0.03754255548119545,
-0.053647663444280624,
-0.026607654988765717,
0.004102839156985283,
-0.03498447313904762,
-0.027454344555735588,
0.019131571054458618,
-0.032840728759765625,
-0.023959500715136528,
-0.0012283747782930732,
-0.005602560006082058,
0.004332526121288538,
-0.005197229795157909,
-0.00007198828097898513,
0.06651013344526291,
0.03703814372420311,
0.03080507181584835,
0.037506524473428726,
0.01630326919257641,
0.01519536692649126,
0.025490745902061462,
0.01581687293946743,
-0.009718909859657288,
0.0402807854115963,
0.09504535794258118,
0.01841098442673683,
-0.006264598574489355,
0.013033607974648476,
0.019996274262666702,
0.020176421850919724,
0.048171207308769226,
-0.029327869415283203,
-0.07825569063425064,
0.026787802577018738,
-0.0034903406631201506,
0.017384149134159088,
-0.018212823197245598,
-0.05588148161768913,
0.009763946756720543,
-0.010880855843424797,
0.00393620366230607,
-0.0709417387843132,
-0.004688315559178591,
-0.030516836792230606,
0.04568518325686455,
-0.03543483838438988,
0.0017811997095122933,
-0.04950429126620293,
-0.041073430329561234,
-0.03004845604300499,
-0.0034092748537659645,
-0.016186174005270004,
0.03543483838438988,
-0.020410612225532532,
-0.002490526996552944,
-0.018212823197245598,
0.04273077845573425,
-0.03919990360736847,
0.0354708693921566,
-0.017276059836149216,
0.012457138858735561,
0.011394273489713669,
0.10571003705263138,
0.03988446295261383,
-0.012394087389111519,
0.01748322881758213,
-0.011637471616268158,
0.0522785484790802,
0.011475339531898499,
-0.027112066745758057,
0.004152379464358091,
0.008759628981351852,
0.03743446618318558,
-0.1045570969581604,
0.0003898485447280109,
0.022932665422558784,
-0.05825941637158394,
0.030931174755096436,
-0.057646919041872025,
0.004981053993105888,
-0.059556473046541214,
0.02687787637114525,
-0.029904339462518692,
0.00048161071026697755,
-0.046910177916288376,
0.0287333857268095,
-0.04579326882958412,
-0.04885576292872429,
0.01186265517026186,
0.027922725304961205,
0.006336657330393791,
-0.04038887098431587,
0.01771741919219494,
0.020933037623763084,
-0.003035470610484481,
0.021365389227867126,
0.01427661906927824,
0.007813859730958939,
-0.04734253138303757,
-0.019762083888053894,
-0.015222389250993729,
0.08077774196863174,
0.012394087389111519,
-0.04334327578544617,
0.005962852854281664,
-0.02514846809208393,
0.005206237081438303,
-0.06128587946295738,
0.004800907336175442,
-0.03489439934492111,
-0.03469623997807503,
0.0666542500257492,
0.051918257027864456,
0.05559324473142624,
0.010475525632500648,
0.023941485211253166,
0.0013950103893876076,
-0.05404398590326309,
0.00811560545116663,
0.009088397026062012,
0.03938005119562149,
0.06326749175786972,
-0.029093679040670395,
-0.01215989701449871,
0.012051808647811413,
-0.004249208141118288,
-0.04384768754243851,
-0.05667412653565407,
0.03356131538748741,
0.042334455996751785,
0.006336657330393791,
0.09763946384191513,
-0.055557217448949814,
-0.023833397775888443,
0.012168903835117817,
0.015213381499052048,
0.044063862413167953,
-0.02430177852511406,
-0.05703441798686981,
0.045505035668611526,
0.07948068529367447,
0.06910423934459686,
-0.03437197580933571,
-0.025364642962813377,
-0.03039073385298252,
0.010718723759055138,
0.0019264428410679102,
0.02073487639427185,
0.05988073721528053,
0.04020872339606285
]
|
42,159 | werkzeug.datastructures.headers | setlist | Remove any existing values for a header and add new ones.
:param key: The header key to set.
:param values: An iterable of values to set for the key.
.. versionadded:: 1.0
| def setlist(self, key, values):
"""Remove any existing values for a header and add new ones.
:param key: The header key to set.
:param values: An iterable of values to set for the key.
.. versionadded:: 1.0
"""
if values:
values_iter = iter(values)
self.set(key, next(values_iter))
for value in values_iter:
self.add(key, value)
else:
self.remove(key)
| (self, key, values) | [
0.00014094433572608978,
0.009738955646753311,
-0.11129245907068253,
-0.04782043769955635,
-0.04234930872917175,
-0.007232798263430595,
-0.039405979216098785,
0.051179297268390656,
0.012223471887409687,
0.007276082411408424,
-0.06163677200675011,
-0.04124123230576515,
0.05131780728697777,
-0.005674565210938454,
0.00889924168586731,
0.023927532136440277,
0.030073896050453186,
0.04761267453432083,
-0.001841744757257402,
-0.047855064272880554,
0.027546096593141556,
-0.017105935141444206,
-0.017149219289422035,
0.026524588465690613,
-0.014102008193731308,
-0.0428340919315815,
0.020412851125001907,
-0.0008656849968247116,
0.0428340919315815,
0.031718697398900986,
0.031926460564136505,
0.005354261491447687,
-0.05516144633293152,
-0.0340733602643013,
0.0030904954764992,
-0.011963766068220139,
-0.005921285133808851,
-0.02032628282904625,
-0.005020972806960344,
0.05394948646426201,
0.02713056653738022,
-0.002274587284773588,
0.05152557045221329,
-0.01933940313756466,
0.06419920176267624,
0.11710986495018005,
0.00689518079161644,
0.05218349024653435,
0.08823060989379883,
0.0019964859820902348,
-0.04338813200592995,
0.0059472559951245785,
-0.015201427973806858,
-0.03705131635069847,
-0.05284141004085541,
0.054365016520023346,
0.030645247548818588,
0.017988933250308037,
0.008427442982792854,
0.04664310812950134,
-0.010708522982895374,
-0.023460062220692635,
-0.04342275857925415,
-0.039960019290447235,
0.019062383100390434,
0.0075357877649366856,
0.003945359494537115,
-0.02835983969271183,
0.002071151277050376,
-0.024221865460276604,
-0.03840178623795509,
0.018075501546263695,
-0.012058991938829422,
0.014638733118772507,
0.03187452256679535,
0.05928210914134979,
-0.03054136596620083,
0.04747416451573372,
-0.05786238610744476,
-0.041726015508174896,
0.009972690604627132,
0.04563891142606735,
0.009141633287072182,
0.021278537809848785,
-0.008678492158651352,
0.039960019290447235,
0.05142168700695038,
0.0483744777739048,
0.058866579085588455,
0.048755377531051636,
-0.0280135665088892,
-0.012024364434182644,
-0.036982063204050064,
-0.05252976343035698,
-0.002884895307943225,
0.019252834841609,
0.0004750446241814643,
-0.04477322846651077,
-0.05550771951675415,
0.02167675271630287,
-0.008704462088644505,
-0.056546542793512344,
0.06322962790727615,
0.022265417501330376,
0.0040102857165038586,
-0.08227469772100449,
0.01160017866641283,
-0.025468451902270317,
0.007206827402114868,
0.00499933073297143,
0.0011567715555429459,
-0.03594323992729187,
0.06901240348815918,
-0.021624810993671417,
0.005752476863563061,
0.003954016137868166,
0.0013331548543646932,
-0.027684606611728668,
-0.021347790956497192,
-0.003164078574627638,
-0.0015106203500181437,
-0.007977287285029888,
0.01570352539420128,
0.04768192768096924,
-0.004466934595257044,
-0.02231735922396183,
0.022282730787992477,
0.009306113235652447,
0.06039018556475639,
-0.021399732679128647,
-0.03923284262418747,
-0.009366711601614952,
0.027667291462421417,
0.006804284173995256,
0.053464703261852264,
-0.046019814908504486,
-0.021572869271039963,
-0.028740741312503815,
0.04584667831659317,
-0.04813208431005478,
-0.000664413208141923,
-0.009470594115555286,
-0.0015171129489317536,
0.029329407960176468,
0.04813208431005478,
-0.032705578953027725,
-0.002482351614162326,
0.021174654364585876,
-0.02164212428033352,
0.058970462530851364,
-0.06354127824306488,
0.010085229761898518,
0.010621954686939716,
-0.015218742191791534,
-0.02571084350347519,
-0.021347790956497192,
-0.03374440222978592,
0.02430843375623226,
0.0008770470740273595,
0.06257171183824539,
0.035977866500616074,
-0.0123619819059968,
0.006219946779310703,
0.05543846637010574,
-0.036774296313524246,
-0.0013374832924455404,
0.006423382554203272,
-0.0037527442909777164,
-0.01791968010365963,
-0.006263230927288532,
0.04103346914052963,
-0.06291798502206802,
-0.010743150487542152,
0.009704329073429108,
-0.04086033254861832,
-0.05297992005944252,
-0.022161535918712616,
0.0017822289373725653,
-0.00541053107008338,
0.006743685808032751,
-0.010145828127861023,
-0.009712985716760159,
-0.001959694316610694,
-0.016101740300655365,
-0.016785630956292152,
0.052495136857032776,
-0.008812673389911652,
0.0033480366691946983,
0.024879787117242813,
0.018646854907274246,
0.009990004822611809,
-0.061290495097637177,
-0.02178063429892063,
0.005449486896395683,
0.012552432715892792,
-0.019962696358561516,
-0.03170138597488403,
-0.02328692562878132,
0.008340874686837196,
0.04903239756822586,
-0.03213422745466232,
-0.05010584741830826,
0.06101347878575325,
-0.018819991499185562,
0.06655386090278625,
0.013227666728198528,
0.06658849120140076,
-0.04376903176307678,
-0.033900223672389984,
0.006410397123545408,
0.029190897941589355,
-0.015495761297643185,
-0.060078538954257965,
0.009323427453637123,
0.0014316265005618334,
-0.00689518079161644,
-0.10873003304004669,
-0.0291216429322958,
-0.0039496878162026405,
-0.052287373691797256,
0.04685087129473686,
0.009583132341504097,
0.004834850784391165,
-0.019079696387052536,
0.03289603069424629,
0.022819455713033676,
-0.0417606420814991,
-0.08033556491136551,
-0.04903239756822586,
0.03211691230535507,
0.017504150047898293,
0.039302099496126175,
-0.030247032642364502,
0.001981336623430252,
-0.050071220844984055,
-0.05613101273775101,
-0.0029822848737239838,
-0.0075574298389256,
0.012439893558621407,
0.07514145970344543,
-0.008518340066075325,
0.009747613221406937,
0.03341544046998024,
0.025122178718447685,
-0.03583936020731926,
0.03916358947753906,
-0.02977956272661686,
0.06582668423652649,
-0.01374707743525505,
0.06766194105148315,
-0.03263632208108902,
0.009141633287072182,
-0.009254172444343567,
-0.006851896643638611,
0.0120936194434762,
0.009150289930403233,
0.009912093169987202,
0.02320035733282566,
-0.006743685808032751,
-0.059074342250823975,
-0.011608835309743881,
-0.058208659291267395,
0.03570085018873215,
0.00889924168586731,
0.01791968010365963,
0.0012227800907567143,
0.027321018278598785,
0.07521071285009384,
-0.021728692576289177,
0.03209960088133812,
0.03535457327961922,
-0.04432307183742523,
-0.042383935302495956,
-0.044565461575984955,
0.07624953240156174,
0.07244051992893219,
0.046331461519002914,
-0.045881304889917374,
-0.024343062192201614,
0.024654708802700043,
0.0747951790690422,
-0.021157341077923775,
-0.004752610344439745,
0.030056582763791084,
0.02681891992688179,
0.06561892479658127,
-0.019079696387052536,
0.046227578073740005,
-0.033813655376434326,
-0.01603248529136181,
0.02946791611611843,
0.04993271082639694,
-0.04054868593811989,
-0.004986345302313566,
-0.00944462325423956,
0.023338867351412773,
0.011453012004494667,
-0.03130316734313965,
0.05571548640727997,
0.04747416451573372,
0.00415095966309309,
0.016846230253577232,
0.012015707790851593,
-0.009479250758886337,
-0.019633734598755836,
-0.07998929172754288,
0.015487104654312134,
0.06180990859866142,
-0.030195092782378197,
0.009340740740299225,
0.022906024008989334,
0.062363944947719574,
-0.08823060989379883,
-0.025416512042284012,
0.06890852749347687,
0.0007585564744658768,
-0.06132512539625168,
0.02439500205218792,
-0.04484248161315918,
0.03374440222978592,
-0.012448550201952457,
-0.08871539682149887,
-0.06201767176389694,
0.0009149208199232817,
0.01804087497293949,
0.000973354559391737,
0.06901240348815918,
-0.006739357486367226,
-0.0302124060690403,
0.014855154789984226,
-0.03916358947753906,
-0.0626409649848938,
0.005051271989941597,
0.042799465358257294,
0.046885497868061066,
0.025035610422492027,
-0.01968567632138729,
0.01999732293188572,
0.031943775713443756,
-0.023044534027576447,
-0.06066720187664032,
-0.0018666333053261042,
-0.02430843375623226,
-0.01082971878349781,
-0.03694743663072586,
-0.03902507945895195,
-0.016448015347123146,
0.03684355318546295,
0.034454263746738434,
0.04716251790523529,
0.03261901065707207,
-0.001241175807081163,
0.053464703261852264,
0.0516987070441246,
0.08656849712133408,
0.010561357252299786,
-0.026334136724472046,
-0.045569658279418945,
0.0335020087659359,
-0.05284141004085541,
0.06288335472345352,
0.019616421312093735,
0.00728041073307395,
-0.004077376332134008,
-0.03033360093832016,
0.0050296299159526825,
-0.06523802131414413,
0.006769656669348478,
0.010336278937757015,
-0.017045337706804276,
0.006795627065002918,
-0.04692012444138527,
0.05318768694996834,
0.03899045288562775,
0.049413297325372696,
0.011790629476308823,
-0.002087382832542062,
0.06831985712051392,
-0.0736178532242775,
-0.018542971462011337,
-0.013331548310816288,
-0.032168854027986526,
0.03232467547059059,
0.02219616249203682,
-0.014084694907069206,
-0.0030255690217018127,
0.06219080835580826,
-0.007111601997166872,
-0.014733958058059216,
0.010587327182292938,
0.024360375478863716,
-0.0028935519512742758,
-0.015244712121784687,
-0.03254975378513336,
-0.038090139627456665,
-0.04207228869199753,
0.006410397123545408,
0.025901295244693756,
0.013946184888482094,
-0.03767460957169533,
0.036774296313524246,
-0.06419920176267624,
-0.011470326222479343,
0.06721178442239761,
-0.0007342090830206871,
-0.04802820459008217,
0.033467382192611694,
-0.032480500638484955,
0.016690406948328018,
-0.03441963344812393,
0.03746684640645981,
-0.04757804796099663,
0.024014102295041084,
-0.027632664889097214,
0.03306916728615761,
0.022144222632050514,
-0.04550040140748024,
-0.016465328633785248,
0.04536189138889313,
0.011626149527728558,
0.012024364434182644,
-0.06911628693342209,
-0.018993128091096878,
0.06866613030433655,
-0.02616100013256073,
-0.04518875479698181,
0.006358456332236528,
-0.006514279637485743,
-0.07001660019159317,
-0.04110272228717804,
0.006899509113281965,
-0.009790897369384766,
-0.001804953208193183,
0.0060511380434036255,
0.016941454261541367,
0.029294779524207115,
-0.0016458835452795029,
0.013201695866882801,
-0.018768049776554108,
-0.02835983969271183,
-0.05640803277492523,
-0.029433289542794228,
-0.01263900101184845,
-0.04979420080780983,
-0.00725444033741951,
0.009643730707466602,
-0.04363052174448967,
-0.02243855409324169,
0.04685087129473686,
-0.0033956493716686964,
0.019200893118977547,
0.030524052679538727,
-0.018975814804434776,
-0.016162337735295296,
0.05218349024653435,
-0.024897100403904915,
-0.021486300975084305,
0.0029563142452389,
0.05599250644445419,
-0.013902900740504265,
0.08345203101634979,
0.0011957273818552494,
-0.002865417394787073,
-0.01954716630280018,
-0.001663197297602892,
-0.003839312819764018,
-0.0006855143001303077,
-0.020949576050043106,
0.03263632208108902,
0.001957530155777931,
-0.05484979972243309,
-0.030593307688832283,
0.009314770810306072,
0.0011037483345717192,
-0.04421918839216232,
0.0006119310855865479,
0.060840342193841934,
0.040167782455682755,
-0.1087992861866951,
-0.028169389814138412,
0.032809462398290634,
-0.050071220844984055,
-0.0003725150600075722,
-0.012777510099112988,
0.0483744777739048,
-0.002560263266786933,
0.022230790928006172,
-0.04086033254861832,
-0.015963230282068253,
0.017833109945058823,
0.059178225696086884,
-0.09390950947999954,
-0.0061117359437048435,
-0.01263900101184845,
0.0703282505273819,
-0.03351932391524315,
-0.04221079871058464,
0.0263860784471035,
0.009990004822611809,
0.0076223560608923435,
0.009990004822611809,
-0.04570816829800606,
0.03100883588194847,
-0.012050335295498371,
0.043803662061691284,
-0.009081035852432251,
0.04075644910335541,
-0.028758054599165916,
-0.06534190475940704,
-0.08843837678432465,
-0.0019012606935575604,
0.029190897941589355,
-0.011556894518435001,
0.006241588853299618,
0.013859616592526436,
0.0007331269443966448,
-0.11994931101799011,
0.00033193608396686614,
-0.02342543564736843,
0.0346100851893425,
0.011582865379750729,
-0.003705131821334362,
0.02548576518893242,
0.016690406948328018,
-0.035025615245103836,
0.007570415269583464,
-0.016508612781763077,
-0.043041858822107315,
0.039509862661361694,
0.004856492858380079,
-0.08802285045385361,
0.030610620975494385,
-0.02408335544168949,
0.0001908564881887287,
0.050625257194042206,
0.04408067837357521,
0.06167139858007431,
-0.006782641634345055,
0.0340733602643013,
0.01757340505719185,
-0.012985275126993656,
0.049621064215898514,
-0.0032636323012411594,
-0.04664310812950134,
-0.03978688269853592,
-0.006756671238690615,
-0.0680774673819542,
-0.04224542900919914,
0.018283266574144363,
-0.020914949476718903,
-0.05793163925409317,
-0.04023703932762146,
0.009712985716760159,
-0.02713056653738022,
-0.04879000410437584,
-0.032168854027986526,
0.0005307731335051358,
-0.01324498001486063,
-0.007977287285029888,
0.01434439979493618,
0.008756403811275959,
-0.007830120623111725,
-0.004778581205755472,
0.04660847783088684,
0.004544846247881651,
0.02242124080657959,
-0.03781311959028244,
-0.03781311959028244,
0.02067255787551403,
0.010890317149460316,
-0.00421805027872324,
0.027736546471714973,
0.001828759559430182,
-0.001396999112330377,
-0.020585989579558372,
-0.018854618072509766,
0.04498099163174629,
0.012119589373469353,
-0.022161535918712616,
-0.05703132599592209,
-0.029277466237545013,
0.027476841583848,
0.027546096593141556,
-0.05135243386030197,
0.04120660573244095,
0.025780098512768745,
0.0024910084903240204,
0.05000196397304535,
0.004213721491396427,
0.07534921914339066,
-0.02209228090941906,
-0.01160017866641283,
0.01186854112893343,
-0.03454083204269409,
-0.028532976284623146,
-0.018508344888687134,
-0.01991075463593006,
-0.030281661078333855,
-0.07167872041463852,
0.0527375303208828,
0.021520929411053658,
-0.0269228033721447,
-0.019287461414933205,
0.015590986236929893,
0.008146096020936966,
-0.048963144421577454,
-0.0067350291647017,
0.006782641634345055,
0.0034908747766166925,
-0.04331887513399124,
-0.011444355361163616,
0.04141436889767647,
0.009574475698173046,
0.023442748934030533,
0.03440232202410698,
-0.007462204433977604,
0.02155555598437786,
-0.0016069277189671993,
0.02846372313797474,
-0.021901831030845642,
-0.011150022968649864,
-0.041068095713853836,
-0.005722177680581808,
0.011885854415595531,
0.007055332418531179,
-0.04768192768096924,
-0.04460009187459946,
-0.013219010084867477,
-0.024983668699860573,
-0.02230004593729973,
-0.0038219993002712727,
-0.005414859391748905,
-0.0016458835452795029,
0.04899777099490166,
0.004990674089640379,
0.020308969542384148,
-0.013608568347990513,
-0.017616689205169678,
0.05111004039645195,
0.016300847753882408,
0.05969763547182083,
-0.004101182799786329,
0.028948506340384483,
0.006514279637485743,
-0.009089692495763302,
0.06122124195098877,
-0.01374707743525505,
-0.07105542719364166,
0.015036948025226593,
-0.019651049748063087,
-0.005968898069113493,
0.07680357247591019,
-0.044911738485097885,
0.029173584654927254,
0.002088465029373765,
-0.013219010084867477,
-0.01615368202328682,
-0.04937867075204849,
-0.004856492858380079,
-0.005077242385596037,
0.031199287623167038,
-0.018439089879393578,
0.062398575246334076,
-0.049413297325372696,
0.03384828194975853,
-0.005120526533573866,
0.013920214958488941,
0.035562340170145035,
0.009738955646753311,
0.04903239756822586,
0.02122659608721733,
-0.072579026222229,
-0.025987863540649414,
0.02538188360631466,
0.06825060397386551,
-0.021036144345998764,
-0.02451619878411293,
-0.008799687959253788,
0.022265417501330376,
0.03774386644363403,
0.007752208970487118,
0.030073896050453186,
0.024810532107949257,
0.008232664316892624,
-0.0050296299159526825,
0.05772387608885765,
-0.00213499553501606,
-0.019287461414933205,
-0.05516144633293152,
-0.005609638523310423,
0.0659305676817894,
-0.05969763547182083,
-0.02979687787592411,
-0.014456938952207565,
-0.043457385152578354,
0.05879732593894005,
-0.011080767959356308,
-0.041587505489587784,
0.04273021221160889,
0.06849299371242523,
-0.04307648539543152,
0.027546096593141556,
-0.00659219129011035,
0.031060777604579926,
0.0042418562807142735,
-0.016084427013993263,
0.025433825328946114,
0.01049210224300623,
0.004358723759651184,
-0.025312628597021103,
0.0036856539081782103,
0.0384364128112793,
-0.03549308329820633,
-0.013643194921314716,
0.019079696387052536,
-0.030974209308624268,
0.003402142086997628,
-0.06724640727043152,
0.041726015508174896,
0.04581204801797867,
0.08379830420017242,
0.028515662997961044,
0.028065506368875504,
-0.05252976343035698,
-0.012768853455781937,
-0.08372905105352402,
-0.008384158834815025,
0.028082821518182755,
-0.035008300095796585,
0.014673360623419285,
0.036220259964466095,
0.05543846637010574,
-0.010119857266545296,
0.041379742324352264,
0.012872735969722271,
-0.02726907655596733,
-0.046677734702825546,
0.03512949496507645,
0.0395444892346859,
0.08857689052820206,
-0.0037462518084794283,
-0.044565461575984955,
0.030749130994081497,
-0.0033480366691946983,
-0.06385292112827301,
-0.03308647871017456,
-0.010189112275838852,
0.02108808606863022,
-0.024533512070775032,
0.04782043769955635,
-0.03680892661213875,
0.00999866146594286,
-0.037085942924022675,
0.007154886610805988,
0.07514145970344543,
-0.07063989341259003,
-0.017460865899920464,
0.00006905190093675628,
-0.0016155845951288939,
0.014725301414728165,
-0.00857893843203783,
0.032584384083747864,
-0.012336011044681072,
-0.005427844822406769,
-0.0023568272590637207,
0.04518875479698181,
0.053049176931381226,
0.010241053067147732
]
|
42,160 | werkzeug.datastructures.headers | setlistdefault | Return the list of values for the key if it is in the
headers, otherwise set the header to the list of values given
by ``default`` and return that.
Unlike :meth:`MultiDict.setlistdefault`, modifying the returned
list will not affect the headers.
:param key: The header key to get.
:param default: An iterable of values to set for the key if it
is not in the headers.
.. versionadded:: 1.0
| def setlistdefault(self, key, default):
"""Return the list of values for the key if it is in the
headers, otherwise set the header to the list of values given
by ``default`` and return that.
Unlike :meth:`MultiDict.setlistdefault`, modifying the returned
list will not affect the headers.
:param key: The header key to get.
:param default: An iterable of values to set for the key if it
is not in the headers.
.. versionadded:: 1.0
"""
if key not in self:
self.setlist(key, default)
return self.getlist(key)
| (self, key, default) | [
0.010881779715418816,
0.008622722700238228,
-0.07086215168237686,
-0.015460832975804806,
-0.04088066890835762,
0.0056106457486748695,
-0.011978663504123688,
0.03515250235795975,
0.04822804778814316,
0.0024571057874709368,
-0.0441887304186821,
-0.06414156407117844,
-0.017149684950709343,
-0.02590734139084816,
0.03614491969347,
0.019099699333310127,
0.024914924055337906,
0.02245999313890934,
0.03409044072031975,
-0.012796972878277302,
0.03362034633755684,
-0.062087081372737885,
0.02045774646103382,
0.009497617371380329,
-0.01301460899412632,
0.0006442013545893133,
0.007094920612871647,
-0.04861108586192131,
0.05432184413075447,
0.021014893427491188,
0.007808765396475792,
-0.03229712322354317,
-0.08057740330696106,
0.03649313747882843,
0.03443865850567818,
0.007730416487902403,
-0.008452966809272766,
0.025942163541913033,
-0.026830116286873817,
0.0042613050900399685,
0.02188543602824211,
-0.0470789335668087,
0.02743949554860592,
-0.026795294135808945,
0.02947656437754631,
0.11052405834197998,
0.006402839440852404,
0.07368271052837372,
0.08343278616666794,
-0.01570458523929119,
-0.01936086267232895,
0.017672009766101837,
-0.0017040867824107409,
-0.02743949554860592,
-0.0663701519370079,
-0.007282087113708258,
0.022268474102020264,
0.01962202601134777,
-0.01682758517563343,
0.04833251237869263,
0.016679592430591583,
-0.02613368257880211,
-0.012370407581329346,
-0.07354342192411423,
0.005536649376153946,
0.01627914234995842,
0.02353946678340435,
-0.03295873478055,
-0.0032884739339351654,
0.00024103141913656145,
-0.06577818095684052,
0.009114578366279602,
-0.03959226608276367,
0.017045220360159874,
0.051884327083826065,
0.060798682272434235,
-0.03711992874741554,
-0.02031845971941948,
-0.06445495784282684,
-0.030973898246884346,
-0.0013504289090633392,
0.030381929129362106,
-0.03934851661324501,
0.028571201488375664,
-0.012544515542685986,
0.0121875936165452,
0.04265657812356949,
0.06194779649376869,
0.08628816157579422,
0.016514189541339874,
-0.028257805854082108,
-0.00165620690677315,
0.011186469346284866,
0.0038434446323662996,
-0.018229156732559204,
-0.018995234742760658,
-0.031914085149765015,
-0.01681017316877842,
-0.008561784401535988,
-0.001889077015221119,
-0.062435299158096313,
-0.035344019532203674,
0.037990469485521317,
-0.013162600807845592,
-0.019569793716073036,
-0.06793712824583054,
0.01729767769575119,
-0.018821125850081444,
0.009245160035789013,
0.020475156605243683,
-0.07235947996377945,
-0.10927048325538635,
0.04314408078789711,
-0.0015136555302888155,
0.01887335814535618,
0.039766374975442886,
0.01887335814535618,
-0.02521090768277645,
0.010298516601324081,
0.018577374517917633,
-0.027126101776957512,
-0.040253881365060806,
0.007121036760509014,
-0.009671726264059544,
-0.021798381581902504,
-0.045128919184207916,
0.034995805472135544,
0.03565741702914238,
0.07208091020584106,
0.04659142717719078,
0.010472624562680721,
0.02033586986362934,
-0.0306779146194458,
-0.01182196568697691,
0.06344512850046158,
-0.060554929077625275,
-0.04763608053326607,
0.03806011378765106,
0.045128919184207916,
0.0185251422226429,
0.038686905056238174,
-0.013362825848162174,
0.05453077703714371,
0.04704410955309868,
0.05038699507713318,
-0.01925639808177948,
0.06490764021873474,
0.0015375955263152719,
-0.042865507304668427,
0.04551195725798607,
-0.00325365224853158,
0.05721204727888107,
-0.028101108968257904,
-0.05498345568776131,
-0.01520837564021349,
-0.0015082147438079119,
-0.05024770647287369,
-0.013536933809518814,
-0.0007230942719615996,
0.037990469485521317,
0.028814952820539474,
-0.007417021319270134,
0.00813957117497921,
0.017497902736067772,
0.00006695694901281968,
0.01597445271909237,
-0.03806011378765106,
-0.025367604568600655,
0.02352205477654934,
0.022634102031588554,
-0.01188290398567915,
-0.007399610243737698,
-0.022320706397294998,
0.006189556326717138,
0.056515611708164215,
0.006755408830940723,
-0.04171639308333397,
0.00571075826883316,
-0.0043244194239377975,
0.01901264488697052,
-0.022512225434184074,
0.008614016696810722,
0.014137607999145985,
-0.005210196133702993,
-0.029511386528611183,
0.07737381011247635,
0.007425726391375065,
0.008426850661635399,
-0.046661071479320526,
0.02815334126353264,
-0.0034168788697570562,
-0.03879136964678764,
0.009610787965357304,
-0.02651672065258026,
-0.03847797214984894,
0.000891217787284404,
0.009767485782504082,
-0.03983601927757263,
0.010307221673429012,
0.05049145966768265,
-0.0328020378947258,
-0.06323619931936264,
0.030347106978297234,
-0.026568952947854996,
0.025141263380646706,
0.020039886236190796,
-0.0009200545027852058,
-0.060903146862983704,
-0.07507557421922684,
0.009358330629765987,
0.02507162094116211,
0.021241234615445137,
-0.07598093897104263,
-0.011134237051010132,
-0.010942718014121056,
-0.034995805472135544,
-0.061251360923051834,
-0.005371246486902237,
-0.006885990500450134,
-0.023365357890725136,
0.03527437895536423,
-0.02141534350812435,
0.011142942123115063,
0.029389511793851852,
0.03722439333796501,
0.05393880605697632,
-0.003686747048050165,
-0.08134347945451736,
-0.03624938428401947,
0.0127186244353652,
-0.005919688381254673,
-0.010916601866483688,
-0.0463128536939621,
-0.018925592303276062,
0.00008147733024088666,
-0.062330834567546844,
0.028693078085780144,
-0.026203325018286705,
-0.004056727513670921,
0.07758273929357529,
0.016087623313069344,
0.021136770024895668,
0.054217379540205,
0.03494357317686081,
-0.018490320071578026,
0.022616691887378693,
-0.03436901420354843,
0.019204165786504745,
0.007978521287441254,
0.07514522224664688,
-0.037154749035835266,
0.03900029882788658,
-0.0015745935961604118,
-0.021554630249738693,
0.032401587814092636,
0.04056727513670921,
-0.06354959309101105,
0.04547713324427605,
-0.03217524662613869,
-0.03436901420354843,
-0.018142104148864746,
-0.05571471154689789,
-0.008278857916593552,
-0.018507732078433037,
-0.011961252428591251,
0.03125247359275818,
0.013206128031015396,
0.05905759707093239,
-0.0042765396647155285,
0.056271858513355255,
0.04906376823782921,
-0.03624938428401947,
-0.023487234488129616,
-0.08176133781671524,
0.060206711292266846,
0.05721204727888107,
0.008161335252225399,
-0.054844170808792114,
-0.01277956273406744,
0.03771189600229263,
0.03295873478055,
0.009427974000573158,
-0.02578546479344368,
0.016070213168859482,
-0.015025561675429344,
0.04053245484828949,
-0.03614491969347,
0.06717105209827423,
-0.08162205666303635,
-0.03292391449213028,
0.027909589931368828,
0.051396824419498444,
-0.03402079641819,
0.00037732571945525706,
-0.024462241679430008,
-0.03590116649866104,
-0.004320066422224045,
-0.02247740514576435,
0.07423985749483109,
0.048053938895463943,
-0.022164009511470795,
0.01384162437170744,
0.044397663325071335,
-0.026185914874076843,
-0.020266227424144745,
-0.06365405768156052,
-0.0011795848840847611,
0.014294305816292763,
0.0013765451731160283,
-0.013728453777730465,
0.00038276659324765205,
0.03621456399559975,
-0.06804159283638,
-0.05836116150021553,
0.053312014788389206,
-0.0024244606029242277,
-0.03327212855219841,
0.016757940873503685,
0.00864013284444809,
0.019204165786504745,
-0.04840215668082237,
-0.036771710962057114,
-0.06957374513149261,
-0.02745690755546093,
0.03826904296875,
-0.019900599494576454,
0.05404327064752579,
0.024322954937815666,
-0.012344291433691978,
0.07020054012537003,
0.007425726391375065,
-0.03764225170016289,
-0.04756643623113632,
0.02390509471297264,
-0.00763900950551033,
-0.007147152908146381,
0.0007377846632152796,
0.00451811496168375,
-0.007482311688363552,
-0.024410009384155273,
-0.0976400375366211,
-0.03480428457260132,
-0.002581158187240362,
-0.02414884604513645,
-0.0022133539896458387,
-0.027718069031834602,
0.05003877729177475,
0.06797195225954056,
0.009149400517344475,
0.01527801901102066,
0.02696940302848816,
-0.013589167036116123,
0.044989630579948425,
0.05035217106342316,
0.06320137530565262,
-0.005040440242737532,
-0.020527388900518417,
-0.07354342192411423,
0.055575426667928696,
-0.0001374504790874198,
0.04293515160679817,
0.010794725269079208,
-0.03210560232400894,
0.012840500101447105,
0.02864084392786026,
0.00020988233154639602,
0.0017073513008654118,
-0.01611373946070671,
0.009845834225416183,
-0.022164009511470795,
-0.0053364248014986515,
-0.011717500165104866,
-0.0047009289264678955,
-0.008657543919980526,
0.05999778211116791,
-0.01236170157790184,
-0.05251111835241318,
0.03865208104252815,
-0.07479700446128845,
-0.032262299209833145,
-0.012535810470581055,
-0.020614443346858025,
-0.0021088889334350824,
0.03767707571387291,
-0.021432753652334213,
-0.01817692443728447,
0.051292356103658676,
0.022982319816946983,
0.00677281990647316,
-0.011804554611444473,
0.018037637695670128,
-0.016009274870157242,
-0.03342882916331291,
0.002761795651167631,
-0.030242642387747765,
-0.04599945992231369,
0.0428306870162487,
0.006929517257958651,
0.0408458486199379,
-0.0677281990647316,
0.06010224670171738,
0.00933221448212862,
-0.02284303307533264,
0.02686493843793869,
-0.034403834491968155,
-0.014163725078105927,
0.031652919948101044,
-0.04244764521718025,
-0.02460152842104435,
-0.03255828469991684,
0.044641412794589996,
-0.00047771012759767473,
0.006855521351099014,
-0.030956488102674484,
0.020823374390602112,
0.042029786854982376,
-0.04251728951931,
0.036771710962057114,
0.0458601713180542,
0.013293182477355003,
-0.015817755833268166,
-0.05418255925178528,
0.013180011883378029,
0.05108342692255974,
0.023365357890725136,
-0.025123853236436844,
-0.03311543166637421,
-0.011917725205421448,
-0.06473353505134583,
-0.08893460780382156,
0.04993431270122528,
0.006267905235290527,
0.006811994127929211,
0.00009045479237101972,
0.026081450283527374,
0.037259213626384735,
0.00849649403244257,
0.001815080875530839,
-0.02531537227332592,
-0.025733232498168945,
-0.01960461400449276,
-0.03079978935420513,
-0.05240665003657341,
-0.002565923612564802,
0.028362270444631577,
-0.0047009289264678955,
-0.05303344130516052,
0.03362034633755684,
0.021537218242883682,
-0.03816457837820053,
-0.0004779821902047843,
-0.02235552854835987,
0.030329696834087372,
0.038930654525756836,
0.018351033329963684,
0.0030817200895398855,
-0.028606023639440536,
0.02747431769967079,
0.0731952041387558,
-0.03614491969347,
0.11567766964435577,
0.015983158722519875,
0.04091549292206764,
0.014834042638540268,
-0.027996642515063286,
0.03490874916315079,
-0.005362540949136019,
-0.016653476282954216,
0.019064879044890404,
-0.013650104403495789,
-0.0132496552541852,
-0.015617530792951584,
-0.01574811153113842,
-0.07389163970947266,
-0.016305258497595787,
-0.0015375955263152719,
0.054600417613983154,
-0.002197031397372484,
-0.03767707571387291,
-0.015878692269325256,
0.01687111146748066,
-0.04801911860704422,
0.017471786588430405,
-0.04485034570097923,
-0.0035909872967749834,
-0.04175121337175369,
0.0037172159645706415,
-0.027143511921167374,
-0.031200239434838295,
0.017576251178979874,
0.051988791674375534,
-0.01432042196393013,
-0.009462796151638031,
-0.013876445591449738,
0.05205843597650528,
-0.0013166953576728702,
0.023696163669228554,
0.01468604989349842,
0.05884866416454315,
0.02460152842104435,
0.04547713324427605,
-0.07946310937404633,
0.012048306874930859,
0.01574811153113842,
-0.013475996442139149,
-0.0463128536939621,
-0.008805536665022373,
-0.03698064014315605,
-0.023852860555052757,
-0.03931369259953499,
0.013293182477355003,
0.058883488178253174,
-0.03515250235795975,
-0.015713289380073547,
0.0082396836951375,
-0.022024722769856453,
-0.08008989691734314,
0.00312089454382658,
0.05278969183564186,
0.018455497920513153,
0.02925022505223751,
0.021345699205994606,
0.016966871917247772,
-0.0006931693642400205,
-0.009515028446912766,
0.036423493176698685,
-0.02162427268922329,
-0.02992924675345421,
0.01349340658634901,
0.054391488432884216,
-0.05783883482217789,
-0.010254989378154278,
-0.00864013284444809,
0.08754174411296844,
-0.005262428894639015,
0.04882001876831055,
0.014659933745861053,
0.034630175679922104,
-0.027195744216442108,
-0.013519523665308952,
-0.020997483283281326,
0.03806011378765106,
-0.010533562861382961,
-0.04014941677451134,
0.008631427772343159,
0.02947656437754631,
-0.09123284369707108,
0.05620221793651581,
0.010664144530892372,
-0.05850045010447502,
-0.040358345955610275,
-0.020962661132216454,
0.00413507642224431,
-0.03494357317686081,
-0.030225232243537903,
-0.07075768709182739,
-0.015347662381827831,
0.007534544449299574,
0.01241393480449915,
-0.007686889264732599,
0.023556876927614212,
0.030381929129362106,
0.012614158913493156,
0.02959844097495079,
0.021450163796544075,
-0.003934851381927729,
-0.02865825593471527,
0.01491239108145237,
0.014538058079779148,
-0.004228659439831972,
-0.01551306527107954,
-0.024810457602143288,
0.015817755833268166,
0.03311543166637421,
0.0005345674580894411,
0.043805692344903946,
0.051779862493276596,
-0.012500988319516182,
-0.024758225306868553,
-0.058291517198085785,
0.0008852328173816204,
0.003127423580735922,
0.06912106275558472,
-0.05870937928557396,
0.03557036072015762,
-0.020492568612098694,
-0.00006940535240573809,
0.0045050568878650665,
-0.019204165786504745,
0.04728786274790764,
-0.055575426667928696,
0.04157710447907448,
0.006006742361932993,
-0.000902099534869194,
-0.04673071578145027,
0.03861726075410843,
-0.013832918368279934,
0.005379952024668455,
-0.0023787571117281914,
0.05898795276880264,
0.04074138402938843,
0.002894553355872631,
0.003634514519944787,
0.049969132989645004,
0.03774671629071236,
-0.037990469485521317,
-0.009985120967030525,
-0.010254989378154278,
0.0292328130453825,
-0.02994665876030922,
-0.037398502230644226,
-0.0021458868868649006,
-0.023435000330209732,
0.011282229796051979,
-0.02162427268922329,
-0.0018085518386214972,
0.02651672065258026,
-0.006037211511284113,
0.02662118710577488,
-0.03837350755929947,
-0.004004495218396187,
-0.02613368257880211,
0.014094081707298756,
-0.007987226359546185,
0.012596748769283295,
-0.10077399015426636,
-0.037990469485521317,
0.014764399267733097,
-0.004692223388701677,
0.005075261928141117,
0.021606862545013428,
0.02639484591782093,
0.04728786274790764,
0.06194779649376869,
0.042865507304668427,
0.04599945992231369,
0.008318032138049603,
-0.03865208104252815,
0.04777536541223526,
0.0060807387344539165,
0.018855948001146317,
0.014094081707298756,
0.06191297620534897,
0.008191803470253944,
-0.029441744089126587,
0.017201917245984077,
0.001367839751765132,
0.004949033260345459,
0.06825052201747894,
-0.02496715635061264,
-0.06396745145320892,
0.048436976969242096,
-0.027961822226643562,
0.022529637441039085,
-0.05940581113100052,
-0.02745690755546093,
-0.025367604568600655,
-0.01831621117889881,
-0.0077739437110722065,
-0.06320137530565262,
-0.01854255236685276,
-0.014834042638540268,
0.03299355506896973,
-0.04923787713050842,
-0.010437803342938423,
-0.05125753581523895,
-0.010185346007347107,
0.009375741705298424,
0.028466736897826195,
0.01972649060189724,
0.027039047330617905,
-0.05494863539934158,
-0.03478687256574631,
0.0066378857009112835,
0.027752891182899475,
-0.01986577734351158,
0.021310877054929733,
-0.003993613179773092,
0.0298421923071146,
0.031217649579048157,
0.08468636125326157,
0.0014701284235343337,
-0.030486393719911575,
0.044153910130262375,
0.012553221546113491,
0.07625951617956161,
0.012318174354732037,
-0.02625555917620659,
-0.024880101904273033,
0.03886101394891739,
0.047705721110105515,
-0.0900489017367363,
-0.007556308060884476,
-0.012109244242310524,
-0.0529986210167408,
0.05714240297675133,
-0.07166305184364319,
-0.0022982319351285696,
-0.04018423706293106,
0.037154749035835266,
-0.03879136964678764,
0.01864701882004738,
-0.033237308263778687,
0.04126371070742607,
-0.0036432198248803616,
-0.04192532226443291,
0.016853701323270798,
0.019935421645641327,
-0.014407476410269737,
-0.029145758599042892,
0.027195744216442108,
0.029215402901172638,
-0.012178887613117695,
-0.035727061331272125,
0.004335300996899605,
-0.035831525921821594,
0.009906772524118423,
-0.05905759707093239,
0.015957042574882507,
0.050212886184453964,
0.0513271801173687,
-0.017376026138663292,
0.025611357763409615,
-0.04537266865372658,
0.02151980809867382,
-0.07758273929357529,
-0.0004069785645697266,
-0.03241899982094765,
-0.052093256264925,
0.05547096207737923,
0.060659393668174744,
0.07256841659545898,
0.02900647185742855,
0.03320248797535896,
0.018142104148864746,
-0.05334683880209923,
-0.016636064276099205,
0.03778154030442238,
0.004280892200767994,
0.053799521178007126,
-0.028362270444631577,
-0.02329571358859539,
0.03320248797535896,
0.05773437023162842,
-0.06567371636629105,
-0.0710710808634758,
0.03445606678724289,
0.009706547483801842,
0.002348288195207715,
0.051884327083826065,
-0.05125753581523895,
-0.026934580877423286,
-0.007612893357872963,
-0.017497902736067772,
0.047845009714365005,
-0.023452412337064743,
-0.046034280210733414,
0.015408600680530071,
0.027718069031834602,
0.050212886184453964,
-0.021084535866975784,
0.0071863275952637196,
-0.035831525921821594,
0.01611373946070671,
-0.0010664144065231085,
0.027718069031834602,
0.0432833693921566,
0.025959573686122894
]
|
42,161 | werkzeug.datastructures.headers | to_wsgi_list | Convert the headers into a list suitable for WSGI.
:return: list
| def to_wsgi_list(self):
"""Convert the headers into a list suitable for WSGI.
:return: list
"""
return list(self)
| (self) | [
-0.029334167018532753,
-0.007145930081605911,
-0.08891971409320831,
-0.06797388941049576,
0.005986905191093683,
0.03166889399290085,
-0.019111402332782745,
-0.00536153232678771,
0.017276974394917488,
0.021212656050920486,
0.004802865441888571,
-0.047461651265621185,
0.030434824526309967,
-0.01829424872994423,
0.03852298483252525,
0.01428352203220129,
0.02983446605503559,
0.002322218846529722,
0.043659381568431854,
-0.064605213701725,
-0.019478287547826767,
-0.01606792025268078,
0.0039044127333909273,
-0.002322218846529722,
-0.027933331206440926,
-0.010106028988957405,
-0.01389995962381363,
-0.045393750071525574,
0.07451111823320389,
-0.006253730971366167,
-0.008430029265582561,
-0.04262543097138405,
0.03942352160811424,
-0.011998825706541538,
0.035921432077884674,
0.03141874447464943,
0.047495003789663315,
-0.018527720123529434,
0.013599780388176441,
0.02686602808535099,
0.012382387183606625,
-0.018094127997756004,
-0.02321385033428669,
-0.04249201714992523,
0.011615263298153877,
0.05419900268316269,
0.014333551749587059,
0.06293755024671555,
0.05146403610706329,
0.010564636439085007,
0.012899362482130527,
0.018494367599487305,
-0.008071482181549072,
-0.04862901195883751,
-0.023980973288416862,
0.011106626130640507,
0.03615490347146988,
0.03210248798131943,
0.012649212963879108,
0.041024476289749146,
0.020111998543143272,
0.0065789250656962395,
0.03745568171143532,
-0.09692449122667313,
0.05766773968935013,
-0.0008390422444790602,
-0.0029246616177260876,
-0.008042298257350922,
0.0013685248559340835,
-0.04155812785029411,
-0.029884496703743935,
-0.053531937301158905,
-0.022796934470534325,
0.05243128165602684,
-0.003502089297398925,
0.005328178871423006,
0.01575106382369995,
0.006237054243683815,
-0.05379876494407654,
-0.07157603651285172,
0.023947620764374733,
0.03293631598353386,
-0.033870209008455276,
0.05506618693470955,
0.05833480507135391,
-0.045793987810611725,
-0.04649440571665764,
-0.012590845115482807,
-0.03755573928356171,
0.08498403429985046,
-0.053098347038030624,
0.01590949110686779,
-0.02064565010368824,
0.04739494249224663,
-0.004940447397530079,
-0.02027876488864422,
-0.023047083988785744,
-0.0003103413910139352,
-0.024748098105192184,
0.00492794020101428,
-0.014325213618576527,
0.07104238122701645,
-0.03735562041401863,
0.05666714161634445,
-0.010122706182301044,
-0.044893451035022736,
-0.03280290216207504,
-0.05119721218943596,
0.0068665966391563416,
0.013516397215425968,
0.025064954534173012,
-0.020929154008626938,
0.02980111353099346,
-0.030634943395853043,
0.019578346982598305,
-0.023764178156852722,
0.023980973288416862,
0.01459203939884901,
-0.0018802884733304381,
-0.0020897884387522936,
0.01182372123003006,
-0.004944616928696632,
0.023697471246123314,
0.03919004648923874,
0.00473615899682045,
0.0706421434879303,
-0.0025744526647031307,
-0.03575466573238373,
0.02046220749616623,
0.02172963134944439,
-0.03058491460978985,
-0.00676236767321825,
-0.07717937976121902,
-0.03256943076848984,
0.03952357918024063,
-0.05860162898898125,
-0.010072676464915276,
-0.005761770997196436,
0.03682196885347366,
0.005645034369081259,
-0.03518766164779663,
0.013458029367029667,
0.010306148789823055,
0.020979182794690132,
-0.036388374865055084,
-0.00602859677746892,
0.050530146807432175,
0.05146403610706329,
-0.02379753068089485,
0.00571174081414938,
-0.019144754856824875,
0.012624198570847511,
0.04469333216547966,
-0.025832079350948334,
-0.07024190574884415,
0.026515819132328033,
-0.04182495176792145,
-0.018811222165822983,
0.015100675635039806,
-0.024381212890148163,
-0.026599202305078506,
-0.0189446359872818,
-0.033353231847286224,
-0.04556051641702652,
0.009463979862630367,
-0.013933313079178333,
0.05643367022275925,
-0.011873750947415829,
-0.014708775095641613,
-0.00936392042785883,
-0.0378892719745636,
-0.030985152348876,
-0.011848735623061657,
0.024031003937125206,
0.017126884311437607,
0.014742128551006317,
-0.010197751224040985,
0.05106379836797714,
-0.009930924512445927,
0.003460397943854332,
0.02162957191467285,
-0.05860162898898125,
-0.03815609961748123,
0.008221571333706379,
0.006979163736104965,
0.026015521958470345,
-0.04465997964143753,
0.010189412161707878,
0.0027391342446208,
0.052598048001527786,
0.040624238550662994,
-0.01533414889127016,
-0.004254621919244528,
-0.017693890258669853,
-0.03011796809732914,
0.015550944954156876,
-0.005086367949843407,
-0.04512692242860794,
-0.02646579034626484,
-0.016935104504227638,
-0.015592636540532112,
-0.024497948586940765,
-0.028650427237153053,
-0.022029809653759003,
0.0189446359872818,
0.03939016908407211,
0.014558685943484306,
-0.06970825791358948,
-0.0467945858836174,
0.007617044262588024,
0.018310924991965294,
0.011231700889766216,
-0.043626029044389725,
-0.051830921322107315,
0.006178686395287514,
-0.013224557042121887,
-0.03622160851955414,
-0.03775585815310478,
0.05833480507135391,
-0.07404417544603348,
0.027833271771669388,
0.020562266930937767,
-0.038889870047569275,
-0.03602148965001106,
0.011089949868619442,
0.007750457152724266,
-0.0312686562538147,
-0.03738897293806076,
-0.03905663639307022,
-0.018611103296279907,
0.011581909842789173,
-0.0013393406989052892,
0.017810625955462456,
0.0021721292287111282,
0.056467022746801376,
0.047928594052791595,
0.0024785620626062155,
0.008938666433095932,
-0.006320437416434288,
0.030835064128041267,
0.0001766679051797837,
0.041524775326251984,
0.01470043696463108,
0.02061229757964611,
-0.011548556387424469,
0.017110208049416542,
-0.00916380062699318,
0.050897032022476196,
0.005344855599105358,
0.017660535871982574,
-0.022880317643284798,
-0.013808238320052624,
-0.003883566940203309,
-0.04999649524688721,
-0.017510447651147842,
0.02129603922367096,
-0.029917849227786064,
0.019144754856824875,
-0.04686129093170166,
-0.04309237748384476,
0.014533670619130135,
-0.028466984629631042,
0.036288317292928696,
0.011790367774665356,
-0.003472905373200774,
0.04129130020737648,
0.008300785906612873,
0.06884106993675232,
-0.05893516167998314,
0.07964751869440079,
0.0503300279378891,
-0.037222206592559814,
-0.04412632808089256,
-0.029600992798805237,
0.006412158720195293,
-0.018461013212800026,
0.021129272878170013,
0.011890427209436893,
-0.06200365722179413,
0.074177585542202,
0.0031289500184357166,
-0.032852932810783386,
0.01545922365039587,
-0.02618228830397129,
0.03048485517501831,
0.003898159135133028,
-0.014291860163211823,
0.06237054616212845,
-0.03058491460978985,
-0.01459203939884901,
0.00829244777560234,
0.03432047739624977,
0.004060755949467421,
-0.07297687232494354,
0.023847561329603195,
0.02253010869026184,
-0.02603219822049141,
-0.024197770282626152,
0.08351649343967438,
0.01937822811305523,
0.017560476437211037,
0.059535518288612366,
-0.024197770282626152,
-0.015651004388928413,
-0.026815999299287796,
-0.012265651486814022,
0.009205492213368416,
0.05159744992852211,
-0.04262543097138405,
-0.0041566467843949795,
-0.03261946141719818,
0.036355022341012955,
-0.026265669614076614,
-0.002046012319624424,
0.0055199600756168365,
0.0020209974609315395,
-0.0568339079618454,
0.06760700047016144,
-0.030251381918787956,
0.07257663458585739,
-0.055266305804252625,
0.003158134175464511,
0.02940087392926216,
-0.026715939864516258,
0.09272198379039764,
0.007838009856641293,
0.037188854068517685,
-0.007216805592179298,
0.016301391646265984,
0.02664923295378685,
-0.00880525354295969,
-0.02349735237658024,
-0.003241517348214984,
0.02321385033428669,
0.05473265424370766,
-0.02918407879769802,
0.03170224651694298,
-0.00000903045292943716,
-0.031035182997584343,
-0.09325563907623291,
-0.07537830621004105,
-0.04385950043797493,
-0.011948795057833195,
0.03952357918024063,
-0.07644560933113098,
-0.050463441759347916,
-0.028333570808172226,
0.06363796442747116,
-0.016142964363098145,
-0.06610610336065292,
0.018744517117738724,
-0.02278025820851326,
0.05966893211007118,
0.08004775643348694,
0.03512095287442207,
-0.036788616329431534,
-0.04379279538989067,
-0.0034291292540729046,
0.010239441879093647,
0.06016923114657402,
0.07851351052522659,
0.048829130828380585,
-0.023163819685578346,
-0.014350228011608124,
0.017226943746209145,
-0.026632556691765785,
0.001983474940061569,
-0.017843978479504585,
0.057634387165308,
-0.020595621317625046,
-0.04929607734084129,
0.0036917859688401222,
-0.018194187432527542,
-0.04095776751637459,
-0.014808835461735725,
0.0005508494796231389,
0.0009807934984564781,
0.013157850131392479,
-0.08044799417257309,
0.01655988022685051,
-0.013558088801801205,
0.025398487225174904,
0.01937822811305523,
-0.013591442257165909,
-0.01475046668201685,
-0.00039033705252222717,
0.06010252609848976,
-0.019461611285805702,
-0.013441353105008602,
0.035888079553842545,
0.0014998532133176923,
-0.07844680547714233,
-0.09018713980913162,
0.04502686485648155,
-0.041024476289749146,
-0.04129130020737648,
0.003998218569904566,
0.05686726048588753,
0.05156409740447998,
-0.02599884383380413,
0.09405611455440521,
-0.02845030650496483,
-0.04042411595582962,
0.035521190613508224,
-0.04139136150479317,
-0.053064994513988495,
0.0269327349960804,
0.02057894505560398,
0.010964875109493732,
0.01671830751001835,
0.043659381568431854,
-0.04209177941083908,
-0.0022638505324721336,
-0.06500545144081116,
0.02414773963391781,
0.02271355129778385,
0.018711162731051445,
0.05019661411643028,
0.03475406765937805,
0.02549854665994644,
0.039356812834739685,
-0.037989333271980286,
0.031869012862443924,
0.05643367022275925,
0.017810625955462456,
-0.004506855737417936,
-0.01318286545574665,
-0.013741531409323215,
-0.025765372440218925,
-0.00934724323451519,
0.04289225861430168,
0.016051243990659714,
-0.04516027495265007,
-0.04355932027101517,
0.04115789011120796,
0.0008989738416858017,
-0.01377488486468792,
0.020412178710103035,
0.008234078995883465,
0.0343538299202919,
-0.02271355129778385,
0.0400572307407856,
-0.0050988756120204926,
-0.014508656226098537,
0.07170944660902023,
0.005194765981286764,
-0.08731876313686371,
-0.0029184077866375446,
0.033286526799201965,
-0.07244321703910828,
-0.01804409921169281,
-0.04932942986488342,
0.03472071513533592,
-0.0438261479139328,
0.01249078568071127,
0.0024806465953588486,
0.03482077643275261,
-0.03143542259931564,
-0.01575106382369995,
-0.024598008021712303,
0.062070365995168686,
0.003243601880967617,
0.032019104808568954,
-0.038089390844106674,
-0.018494367599487305,
-0.01984517276287079,
-0.0229970533400774,
0.014333551749587059,
0.011440158821642399,
-0.0050530144944787025,
0.028400277718901634,
0.01866113394498825,
-0.01615130342543125,
-0.08578451722860336,
0.008671840652823448,
0.06990837305784225,
0.012849332764744759,
0.03265281394124031,
-0.00868017878383398,
-0.017343681305646896,
-0.03268616646528244,
-0.06223713234066963,
-0.004502686206251383,
-0.008997034281492233,
-0.013207879848778248,
-0.05239792913198471,
0.05016326159238815,
-0.048362188041210175,
0.005832646507769823,
-0.04686129093170166,
0.03755573928356171,
0.0189446359872818,
-0.029567640274763107,
-0.014925571158528328,
0.07237651199102402,
0.03878980875015259,
-0.0244812723249197,
-0.027649829164147377,
0.0022972039878368378,
0.041091181337833405,
0.01075641717761755,
-0.08184882998466492,
0.010989890433847904,
0.018961312249302864,
-0.0008479016833007336,
-0.03972369804978371,
0.010856477543711662,
-0.050596851855516434,
-0.04526033625006676,
-0.0489625446498394,
-0.03080170974135399,
0.03228592872619629,
-0.0446266233921051,
0.01807745173573494,
-0.009680775925517082,
-0.00591186061501503,
-0.10733070224523544,
0.042825549840927124,
-0.008359153755009174,
0.04465997964143753,
0.005932706408202648,
0.0015655173920094967,
0.010931521654129028,
0.015375840477645397,
0.0025556914042681456,
0.00008755223825573921,
-0.09445635229349136,
-0.01652652584016323,
0.029567640274763107,
0.07377734780311584,
0.003449975047260523,
0.008888636715710163,
0.0006535148713737726,
0.007967253215610981,
-0.0053365170024335384,
0.048829130828380585,
-0.020228736102581024,
-0.022029809653759003,
-0.0032894625328481197,
0.013091144151985645,
0.01565934345126152,
0.013274586759507656,
-0.000050876707973657176,
0.018577750772237778,
-0.07571183890104294,
0.02646579034626484,
-0.029450904577970505,
-0.007375233341008425,
-0.05946881324052811,
-0.045760635286569595,
-0.05189763009548187,
-0.022496754303574562,
0.01563432812690735,
0.006633124314248562,
0.014808835461735725,
-0.057367559522390366,
0.0414247140288353,
-0.021179301664233208,
-0.030401472002267838,
0.024614686146378517,
0.05086367949843407,
-0.04892919212579727,
-0.06006916984915733,
0.03495418652892113,
-0.09625742584466934,
0.06690658628940582,
0.0028871390968561172,
0.06030264496803284,
-0.03532107174396515,
-0.02414773963391781,
0.009822526946663857,
-0.01811080425977707,
0.00998095516115427,
0.041057828813791275,
0.05216445401310921,
0.04729488492012024,
0.06030264496803284,
0.05316505208611488,
0.030868416652083397,
-0.04349261522293091,
0.07491136342287064,
-0.029884496703743935,
-0.016935104504227638,
-0.06750693917274475,
-0.01575106382369995,
-0.03305305168032646,
0.020729033276438713,
0.024031003937125206,
0.013591442257165909,
0.017543800175189972,
-0.044092971831560135,
0.01832760125398636,
0.0481620691716671,
-0.016543203964829445,
0.00431090546771884,
-0.017543800175189972,
-0.041091181337833405,
0.01677667535841465,
-0.07364393770694733,
0.04159148037433624,
0.06930802017450333,
0.011923780664801598,
0.05583330988883972,
0.021996457129716873,
0.05860162898898125,
-0.0516975112259388,
0.017877332866191864,
-0.004719482269138098,
-0.0011975894449278712,
-0.004294228740036488,
-0.052231162786483765,
-0.009847542271018028,
-0.0010891915298998356,
-0.013574765995144844,
0.0032602783758193254,
0.03875645622611046,
-0.022480078041553497,
-0.004335920326411724,
0.03942352160811424,
-0.027199560776352882,
0.057634387165308,
-0.0335533507168293,
0.031185273081064224,
0.042825549840927124,
-0.0046319300308823586,
-0.011865412816405296,
0.013491382822394371,
-0.01180704403668642,
-0.0015050646616145968,
-0.03051820769906044,
0.03618825599551201,
-0.019578346982598305,
0.06310431659221649,
-0.028283540159463882,
0.00751281576231122,
0.07217639684677124,
-0.05036338046193123,
-0.020945830270648003,
0.025114983320236206,
0.0135247353464365,
0.07357723265886307,
-0.04502686485648155,
-0.004048248752951622,
-0.02791665494441986,
-0.023664118722081184,
0.014725452288985252,
-0.005732586607336998,
-0.061269886791706085,
0.02219657599925995,
-0.049562904983758926,
-0.02206316404044628,
0.03828950971364975,
-0.03835621848702431,
0.014767143875360489,
-0.07878033816814423,
0.025615282356739044,
-0.031068535521626472,
-0.0029142387211322784,
-0.008113173767924309,
-0.042358603328466415,
0.032385990023612976,
-0.014325213618576527,
0.08898642659187317,
-0.07984764128923416,
0.008488398045301437,
-0.0009203407680615783,
-0.000016692902136128396,
0.04252536967396736,
0.04299231618642807,
-0.001650984981097281,
0.054799359291791916,
0.020295441150665283,
-0.0015863630687817931,
0.015200736001133919,
-0.00936392042785883,
0.0422251932322979,
-0.006216208450496197,
-0.03320314362645149,
0.05726749822497368,
0.009897571988403797,
-0.009372258558869362,
-0.0006128656677901745,
-0.023630764335393906,
0.020328795537352562,
0.012932715937495232,
-0.042792197316884995,
-0.010314486920833588,
-0.0014696267899125814,
0.009197154082357883,
-0.013424675911664963,
-0.007329372689127922,
-0.044526565819978714,
0.028717132285237312,
0.03995717316865921,
0.036721907556056976,
0.06593933701515198,
0.030401472002267838,
-0.040624238550662994,
0.035954784601926804,
0.07117579877376556,
-0.001142348162829876,
-0.02209651656448841,
0.026132257655262947,
0.023163819685578346,
0.030201351270079613,
-0.02194642648100853,
0.07677914202213287,
-0.008083989843726158,
0.00801728293299675,
-0.0076712435111403465,
-0.01984517276287079,
0.038089390844106674,
0.041091181337833405,
-0.021963102743029594,
0.04045747220516205,
-0.02769985981285572,
0.012999421916902065,
0.015792755410075188,
0.04682793840765953,
0.036321669816970825,
0.0012872263323515654,
0.027566445991396904,
0.045760635286569595,
0.0039836266078054905,
-0.025265073403716087,
-0.05019661411643028,
-0.004565223585814238,
0.044092971831560135,
-0.05189763009548187,
0.031869012862443924,
0.009030387736856937,
-0.020545590668916702,
-0.04906260594725609,
0.018177511170506477,
0.023163819685578346,
-0.0200286153703928,
-0.01717691496014595,
0.038956575095653534,
-0.046594467014074326,
0.035921432077884674,
0.03915669396519661,
-0.010256119072437286,
0.01426684483885765,
0.019178109243512154,
-0.00848005898296833,
-0.07024190574884415,
0.06350455433130264,
-0.044926803559064865,
0.008013114333152771,
0.03778921067714691,
0.008755223825573921,
0.013191203586757183,
-0.009922586381435394,
-0.04385950043797493,
0.0033374077174812555,
-0.005190596915781498,
-0.04642770066857338,
-0.008655163459479809,
-0.03380350023508072,
-0.00645385030657053,
-0.005895183887332678,
0.028917253017425537,
-0.06583928316831589,
0.04716147109866142,
0.05790121108293533,
0.028333570808172226,
0.06410491466522217,
-0.00942228827625513
]
|
42,162 | werkzeug.datastructures.headers | update | Replace headers in this object with items from another
headers object and keyword arguments.
To extend existing keys instead of replacing, use :meth:`extend`
instead.
If provided, the first argument can be another :class:`Headers`
object, a :class:`MultiDict`, :class:`dict`, or iterable of
pairs.
.. versionadded:: 1.0
| def update(self, *args, **kwargs):
"""Replace headers in this object with items from another
headers object and keyword arguments.
To extend existing keys instead of replacing, use :meth:`extend`
instead.
If provided, the first argument can be another :class:`Headers`
object, a :class:`MultiDict`, :class:`dict`, or iterable of
pairs.
.. versionadded:: 1.0
"""
if len(args) > 1:
raise TypeError(f"update expected at most 1 arguments, got {len(args)}")
if args:
mapping = args[0]
if isinstance(mapping, (Headers, MultiDict)):
for key in mapping.keys():
self.setlist(key, mapping.getlist(key))
elif isinstance(mapping, dict):
for key, value in mapping.items():
if isinstance(value, (list, tuple)):
self.setlist(key, value)
else:
self.set(key, value)
else:
for key, value in mapping:
self.set(key, value)
for key, value in kwargs.items():
if isinstance(value, (list, tuple)):
self.setlist(key, value)
else:
self.set(key, value)
| (self, *args, **kwargs) | [
-0.017340445891022682,
0.011090126819908619,
-0.09873563051223755,
-0.07285279035568237,
-0.04527733847498894,
-0.02651757001876831,
-0.04880361258983612,
0.04661732167005539,
0.005959400441497564,
-0.017014265060424805,
-0.04481892287731171,
-0.05289408937096596,
0.012042220681905746,
0.04527733847498894,
-0.02013501711189747,
0.007845956832170486,
0.005646443925797939,
0.0512014776468277,
-0.003927385900169611,
-0.05680825188755989,
0.03499825671315193,
-0.025882840156555176,
0.014325481839478016,
0.04654679819941521,
0.00558473402634263,
-0.03702586144208908,
0.021316317841410637,
-0.007259713485836983,
0.07327594608068466,
0.01971186324954033,
0.06551814079284668,
-0.011839459650218487,
-0.03228302672505379,
0.03288249298930168,
0.021228160709142685,
-0.05913558974862099,
-0.0018832499627023935,
0.0005173702957108617,
-0.00484862457960844,
0.04090476036071777,
-0.017428603023290634,
-0.027011247351765633,
0.0042910329066216946,
-0.0010677993996068835,
0.08138637244701385,
0.08999047428369522,
-0.030519889667630196,
0.06068715080618858,
0.06463657319545746,
0.03032594360411167,
-0.03150724619626999,
-0.03106646053493023,
0.025107061490416527,
-0.04319683834910393,
-0.056138258427381516,
0.07532118260860443,
0.0027284533716738224,
0.023696551099419594,
-0.019658969715237617,
0.01631782576441765,
0.022039202973246574,
-0.03755480423569679,
-0.018706876784563065,
-0.054093021899461746,
-0.026305994018912315,
-0.05412828549742699,
-0.0013521051732823253,
0.0025521398056298494,
-0.000708009407389909,
-0.010129217989742756,
-0.010041060857474804,
0.01220090314745903,
-0.005201252177357674,
-0.007841548882424831,
-0.009036073461174965,
0.10056929290294647,
-0.08138637244701385,
0.04968518018722534,
0.010578817687928677,
-0.021316317841410637,
0.030907778069376945,
-0.0077137211337685585,
-0.02863333374261856,
-0.008335227146744728,
0.00577867915853858,
0.0018942694878205657,
-0.02267393283545971,
0.00641340808942914,
0.04488945007324219,
-0.008709893561899662,
-0.045559439808130264,
0.002832037629559636,
0.00043830464710481465,
-0.06865652650594711,
-0.007616748567670584,
0.010111586190760136,
-0.015744807198643684,
-0.06149819493293762,
-0.05599720776081085,
0.022180253639817238,
-0.010349609889090061,
-0.06509499251842499,
0.05299987643957138,
0.01239484827965498,
0.0005107585457153618,
-0.03921215236186981,
0.008595289662480354,
-0.05225935950875282,
-0.008582065813243389,
0.0038766958750784397,
0.009300543926656246,
-0.06999651342630386,
-0.02526574209332466,
-0.0198176521807909,
0.010296715423464775,
-0.02688782848417759,
0.002644704421982169,
-0.041786327958106995,
-0.017322814092040062,
0.0048574404790997505,
-0.015074815601110458,
0.02515995502471924,
0.030801991000771523,
0.020805008709430695,
0.022938402369618416,
-0.05264724791049957,
-0.004361558239907026,
-0.002538916189223528,
0.06287343800067902,
-0.04235053434967995,
-0.0529293492436409,
-0.05761929228901863,
-0.01411390583962202,
-0.008899430744349957,
0.09259992092847824,
-0.028263075277209282,
-0.03282959759235382,
-0.023696551099419594,
0.02484259009361267,
-0.01895371451973915,
0.0285804383456707,
-0.02024080418050289,
0.01593875139951706,
-0.014713372103869915,
-0.032529864460229874,
-0.019412130117416382,
0.0253010056912899,
-0.024631014093756676,
-0.03543904051184654,
0.026323623955249786,
-0.05046096071600914,
0.0010556778870522976,
0.03448694571852684,
0.043126314878463745,
-0.05797192081809044,
-0.020293697714805603,
-0.02017027884721756,
-0.03840110823512077,
-0.0005457457737065852,
0.0629439651966095,
0.05352881923317909,
0.00027659200713969767,
0.022867877036333084,
0.03064330853521824,
-0.016591113060712814,
-0.004048601724207401,
0.0018105205381289124,
-0.05282356217503548,
-0.0013399835443124175,
-0.033587746322155,
0.019658969715237617,
0.012800369411706924,
0.021633682772517204,
0.003387425560504198,
0.027963342145085335,
0.00005874825001228601,
-0.05765455588698387,
-0.016291379928588867,
-0.0007785348570905626,
0.021140003576874733,
0.027998603880405426,
-0.02434891276061535,
0.003942813724279404,
0.017781229689717293,
-0.022409461438655853,
0.06146293133497238,
-0.025406794622540474,
0.03833058103919029,
0.028650963678956032,
0.00482658576220274,
0.06146293133497238,
-0.053987231105566025,
-0.005796310491859913,
0.020258435979485512,
-0.005756639875471592,
0.00610485952347517,
-0.040552135556936264,
-0.04548891633749008,
0.0679512694478035,
0.07722537219524384,
-0.06424868851900101,
-0.0318598710000515,
-0.0038039665669202805,
0.047287315130233765,
0.044783663004636765,
-0.0019482655916363,
0.08723998069763184,
-0.051906730979681015,
-0.038083743304014206,
0.005483353976160288,
0.015506783500313759,
0.01846003718674183,
-0.015436258167028427,
-0.04086950048804283,
0.016070988029241562,
0.010252637788653374,
-0.049861494451761246,
-0.028421755880117416,
0.010367241688072681,
-0.05719614028930664,
0.05642035976052284,
0.015674281865358353,
-0.00045566054177470505,
-0.02147500030696392,
0.017507942393422127,
0.02018791064620018,
-0.005999071057885885,
0.00007148966687964275,
-0.018565824255347252,
0.01154854241758585,
0.004738428629934788,
0.015718359500169754,
-0.012068667449057102,
0.04153949022293091,
0.023767076432704926,
-0.0598408468067646,
-0.024102073162794113,
-0.026799671351909637,
-0.013382204808294773,
0.011830644682049751,
0.024525225162506104,
0.03524509444832802,
0.017084790393710136,
0.05299987643957138,
-0.04760468006134033,
-0.03233591839671135,
-0.03064330853521824,
0.027487294748425484,
-0.005285000894218683,
0.0446426123380661,
-0.0289683286100626,
0.02819254994392395,
-0.035121675580739975,
0.05670246109366417,
-0.01429021917283535,
0.03184224292635918,
0.043549466878175735,
0.008586473762989044,
-0.026693882420659065,
-0.04880361258983612,
-0.0029774964787065983,
-0.0715833306312561,
-0.0006275663035921752,
0.0065985373221337795,
0.01681150496006012,
0.015489152632653713,
0.02854517661035061,
0.04111633822321892,
-0.033393800258636475,
0.027928078547120094,
0.021721838042140007,
-0.024542856961488724,
0.013320494443178177,
0.011160653084516525,
0.048556774854660034,
0.05765455588698387,
0.04161001741886139,
-0.0411868616938591,
-0.026605727151036263,
0.0001863690122263506,
0.07976428419351578,
-0.04612364619970322,
-0.021704208105802536,
-0.013170627877116203,
0.05187147110700607,
0.0214573685079813,
-0.032159604132175446,
0.1050829216837883,
-0.0394589900970459,
-0.02359076403081417,
0.036391131579875946,
0.012544714845716953,
-0.03282959759235382,
0.015665465965867043,
-0.04235053434967995,
0.04238579794764519,
-0.035985611379146576,
-0.0022391830570995808,
0.0927409678697586,
0.004998491145670414,
-0.0016959167551249266,
0.04693468660116196,
0.03249460086226463,
-0.03667323291301727,
0.02015264704823494,
-0.06756338477134705,
0.03351721912622452,
0.04658206179738045,
-0.0198176521807909,
0.01429021917283535,
0.041398439556360245,
0.035086411982774734,
-0.07856535166501999,
-0.0198176521807909,
-0.000776330940425396,
-0.030872516334056854,
-0.05211830884218216,
0.020046859979629517,
-0.02859807014465332,
0.026640988886356354,
-0.047780994325876236,
-0.053634606301784515,
-0.022479986771941185,
-0.021651312708854675,
0.010666974820196629,
-0.03230065479874611,
0.06107503920793533,
0.04150422662496567,
0.030079104006290436,
0.014572321437299252,
-0.03461036458611488,
-0.015841780230402946,
0.042667899280786514,
0.022056834772229195,
-0.036391131579875946,
0.011909985914826393,
-0.01900660991668701,
0.02403154782950878,
0.039705827832221985,
-0.0012099522864446044,
-0.037695854902267456,
0.016714531928300858,
-0.025406794622540474,
-0.003841433208435774,
-0.07271174341440201,
-0.0681275874376297,
0.007696089800447226,
0.03991740569472313,
0.044007882475852966,
0.005915322341024876,
-0.019553180783987045,
-0.04168054088950157,
0.08801576495170593,
0.024296017363667488,
0.061145566403865814,
-0.014184431172907352,
-0.009423963725566864,
-0.11502701044082642,
0.043972618877887726,
-0.03480431064963341,
0.03351721912622452,
0.00879804976284504,
-0.004341722931712866,
0.0016948147676885128,
-0.025477319955825806,
0.007286160718649626,
-0.06424868851900101,
0.03275907039642334,
-0.0101027712225914,
-0.03418721258640289,
0.017419787123799324,
-0.020699219778180122,
0.005055793095380068,
0.047675203531980515,
0.029232800006866455,
0.01684676669538021,
-0.05176568031311035,
0.05381092056632042,
-0.0781422033905983,
-0.02433128096163273,
0.01639716699719429,
-0.036391131579875946,
-0.00641340808942914,
-0.012747474946081638,
0.010649343021214008,
-0.018301354721188545,
0.05335250496864319,
-0.01849529892206192,
0.019024239853024483,
0.027963342145085335,
0.011239993385970592,
-0.01073750015348196,
0.009362253360450268,
-0.02147500030696392,
-0.04584154486656189,
-0.007722537033259869,
0.007863587699830532,
0.01493376400321722,
-0.022885508835315704,
-0.09556198865175247,
0.0379074290394783,
-0.061110302805900574,
0.013417467474937439,
0.05211830884218216,
0.02193341590464115,
-0.06513025611639023,
0.03751954063773155,
0.0039295898750424385,
0.049861494451761246,
0.029303325340151787,
0.03748427703976631,
-0.035156939178705215,
-0.04495997354388237,
0.0014259364688768983,
-0.005624404642730951,
0.04954412952065468,
0.0035196607932448387,
-0.039353203028440475,
0.008158912882208824,
0.06315553933382034,
0.052329882979393005,
-0.026182573288679123,
-0.044713135808706284,
0.03942372649908066,
0.02688782848417759,
-0.06844495236873627,
-0.029655952006578445,
-0.0486978255212307,
0.006721957121044397,
-0.014748634770512581,
0.001319046365097165,
-0.017340445891022682,
-0.018689244985580444,
0.018759770318865776,
0.04065792262554169,
0.041856855154037476,
0.010208559222519398,
-0.0063076200895011425,
0.007294976152479649,
-0.009961719624698162,
-0.021316317841410637,
-0.019077135249972343,
-0.028897803276777267,
-0.009970535524189472,
-0.059452954679727554,
-0.024102073162794113,
-0.008079571649432182,
-0.06953809410333633,
0.018583456054329872,
0.014731003902852535,
0.05634983628988266,
0.02225077897310257,
-0.020082121714949608,
-0.009018441662192345,
0.00619742413982749,
-0.06403710693120956,
0.0077137211337685585,
0.012218534015119076,
0.017005449160933495,
-0.020752113312482834,
0.042315270751714706,
-0.048979926854372025,
0.024542856961488724,
0.020276067778468132,
-0.024983640760183334,
0.04122212529182434,
0.013135365210473537,
-0.0059946635738015175,
-0.01137222908437252,
-0.01594756729900837,
0.012280244380235672,
-0.029550164937973022,
-0.029691215604543686,
-0.00513513432815671,
0.0022788536734879017,
0.023784708231687546,
0.04280894994735718,
0.02780465967953205,
-0.05684351176023483,
-0.018795032054185867,
0.04295000061392784,
-0.006501565221697092,
0.054057758301496506,
-0.01728755049407482,
0.022356567904353142,
-0.05218883231282234,
0.04203316941857338,
-0.01846003718674183,
0.029532533138990402,
0.011469201184809208,
0.07204174995422363,
-0.06319080293178558,
-0.009318174794316292,
-0.0007686172029934824,
0.02313234843313694,
-0.009988167323172092,
-0.04132791608572006,
0.01759609952569008,
-0.01473981887102127,
-0.026605727151036263,
0.024454699829220772,
-0.04957939311861992,
0.04707573726773262,
-0.0015306227141991258,
-0.002792367013171315,
-0.014334297738969326,
-0.004694350529462099,
0.0004934026510454714,
-0.01851293072104454,
-0.016696900129318237,
-0.0496499165892601,
0.027857553213834763,
-0.002911378862336278,
0.011204730719327927,
0.04083423689007759,
0.010843288153409958,
-0.0854768455028534,
0.028104392811655998,
-0.017014265060424805,
-0.003949425183236599,
0.04065792262554169,
0.013152997009456158,
0.03861268609762192,
-0.034292999655008316,
-0.018177935853600502,
0.012950235977768898,
0.05627930909395218,
-0.018354248255491257,
0.05335250496864319,
-0.03023778647184372,
-0.08872101455926895,
0.01935923658311367,
-0.0419626422226429,
0.02110474184155464,
0.04950886592268944,
0.030079104006290436,
0.015841780230402946,
-0.021281054243445396,
-0.0155861247330904,
0.0023603986483067274,
0.004147778265178204,
0.0746864527463913,
-0.03235355019569397,
-0.06192134693264961,
-0.014396008104085922,
-0.011645515449345112,
-0.01600927673280239,
-0.039247412234544754,
0.010428951121866703,
-0.022814983502030373,
-0.11178284138441086,
-0.04919150099158287,
0.02768123894929886,
0.07602643966674805,
-0.09118940681219101,
-0.012262612581253052,
-0.04615890607237816,
-0.06523603945970535,
0.0011284071952104568,
0.01890082098543644,
0.01238603238016367,
-0.006016702391207218,
0.019941071048378944,
0.05003780871629715,
-0.013188259676098824,
0.028827277943491936,
0.021316317841410637,
0.06960862129926682,
-0.031701188534498215,
0.04316157475113869,
0.002227061428129673,
0.07101912796497345,
-0.06065188720822334,
0.009124230593442917,
-0.0012110542738810182,
-0.009423963725566864,
0.03452220931649208,
-0.0013950816355645657,
0.03275907039642334,
-0.05324671417474747,
0.00693353358656168,
0.024930747225880623,
0.00817213673144579,
-0.06819811463356018,
0.02357313223183155,
-0.0063516986556351185,
-0.027452031150460243,
0.04044634476304054,
0.04072844982147217,
0.019482655450701714,
-0.07087808102369308,
-0.02651757001876831,
-0.010631712153553963,
-0.03166592866182327,
-0.02147500030696392,
0.037166912108659744,
-0.02565363235771656,
-0.038471635431051254,
-0.042280007153749466,
-0.014193247072398663,
0.008723116479814053,
-0.009309359826147556,
-0.02057580091059208,
0.018160304054617882,
0.022920772433280945,
-0.03952951356768608,
-0.011442754417657852,
0.036391131579875946,
0.01236840058118105,
-0.02780465967953205,
0.025812314823269844,
0.012518267147243023,
0.01974712684750557,
0.024296017363667488,
0.01595638319849968,
-0.013082470744848251,
-0.009362253360450268,
-0.024966008961200714,
0.022056834772229195,
-0.045136287808418274,
-0.059452954679727554,
-0.061568718403577805,
-0.03893004730343819,
0.014157984405755997,
-0.004024358466267586,
-0.017992805689573288,
-0.0011372228618711233,
-0.033358536660671234,
-0.011248809285461903,
-0.0022898733150213957,
0.006796890404075384,
0.012624056078493595,
0.07024335116147995,
0.01900660991668701,
0.042632635682821274,
0.06773969531059265,
-0.02776939608156681,
0.01808977872133255,
-0.0030965080950409174,
0.025318637490272522,
0.08018743991851807,
-0.006364922039210796,
0.0438668318092823,
-0.0022050223778933287,
-0.022462356835603714,
0.04848624765872955,
0.008683445863425732,
-0.04598259553313255,
0.01410508994013071,
-0.027522556483745575,
-0.0008264701464213431,
0.052329882979393005,
-0.0504256971180439,
0.046017855405807495,
-0.013073655776679516,
0.035015884786844254,
-0.04802783206105232,
-0.042280007153749466,
0.038083743304014206,
-0.03610903024673462,
0.02399628423154354,
-0.025459688156843185,
0.058994539082050323,
-0.0563850998878479,
0.022797351703047752,
-0.0031846649944782257,
0.00042287723044864833,
0.006065188907086849,
0.06255607306957245,
0.043514203280210495,
0.01728755049407482,
-0.025724157691001892,
-0.023308660835027695,
0.030890148133039474,
0.019200554117560387,
-0.0581129714846611,
-0.0032089080195873976,
-0.040516871958971024,
0.02521284855902195,
0.03787216544151306,
0.03649692237377167,
0.000928952416870743,
-0.03023778647184372,
0.018160304054617882,
0.00839693658053875,
0.04873308539390564,
0.0038788998499512672,
0.021140003576874733,
-0.0494736023247242,
0.02346734330058098,
0.08018743991851807,
-0.0739106759428978,
-0.04298526421189308,
0.0019008812960237265,
-0.0011405288241803646,
-0.0059549929574131966,
-0.010755131021142006,
-0.06276765465736389,
-0.01071105245500803,
0.01302957721054554,
-0.007220042869448662,
0.013100102543830872,
0.014889685437083244,
-0.012571161612868309,
-0.0136643061414361,
0.009406331926584244,
-0.020258435979485512,
0.025353899225592613,
0.04495997354388237,
-0.01240366417914629,
-0.008555619046092033,
0.04908571392297745,
0.045206815004348755,
-0.005712561309337616,
0.0892852246761322,
0.03418721258640289,
0.0404110848903656,
-0.008996402844786644,
0.04365525394678116,
0.023396817967295647,
0.042315270751714706,
0.04922676458954811,
0.005602365359663963,
-0.03284722939133644,
0.013919960707426071,
-0.10529449582099915,
-0.009005218744277954,
0.031348563730716705,
-0.048944663256406784,
0.005999071057885885,
0.06597656011581421,
0.02898596040904522,
-0.0394589900970459,
-0.02687019668519497,
0.006532419938594103,
-0.04072844982147217,
-0.039741091430187225,
0.01771952025592327,
0.012059852480888367,
0.0923883393406868,
-0.014916133135557175,
0.006369329988956451,
0.02186289057135582,
0.013135365210473537,
-0.026164941489696503,
-0.0345398411154747,
0.01814267225563526,
0.004317480139434338,
0.022991297766566277,
0.05345829203724861,
0.009326990693807602,
-0.01974712684750557,
-0.020311329513788223,
-0.002386845648288727,
0.06604708731174469,
-0.05680825188755989,
-0.034645628184080124,
0.005915322341024876,
0.03268854692578316,
0.011239993385970592,
-0.002724045654758811,
0.018759770318865776,
0.027839921414852142,
0.0009823974687606096,
0.012870894744992256,
0.05307040363550186,
0.04161001741886139,
0.033852215856313705
]
|
42,163 | werkzeug.datastructures.headers | values | null | def values(self):
for _, value in self.items():
yield value
| (self) | [
0.07021692395210266,
-0.05429248511791229,
-0.07334069162607193,
-0.05303618684411049,
-0.004110558889806271,
0.02729903534054756,
-0.03042280673980713,
-0.04414023086428642,
0.11870326846837997,
0.03884340450167656,
-0.013691959902644157,
0.048825886100530624,
0.053545497357845306,
0.027112288400530815,
0.008726184256374836,
0.019251931458711624,
-0.004808738827705383,
0.047433771193027496,
-0.009982483461499214,
0.04427604749798775,
0.0012881307629868388,
0.009804224595427513,
0.009804224595427513,
0.001854738569818437,
-0.03602521866559982,
-0.035787541419267654,
0.002234599320217967,
-0.06502195447683334,
0.02111940272152424,
0.03517637029290199,
-0.064546599984169,
-0.021306149661540985,
0.014201270416378975,
-0.012562989257276058,
0.02144196629524231,
-0.06342611461877823,
-0.06542940437793732,
0.024718530476093292,
-0.048825886100530624,
0.05300223082304001,
0.04892775043845177,
-0.02955697849392891,
-0.020694978535175323,
0.0007703319424763322,
0.0030282745137810707,
-0.013955104164779186,
0.05531110614538193,
0.03247702494263649,
0.044513724744319916,
-0.0441741868853569,
0.008641298860311508,
0.005725497379899025,
-0.0010684906737878919,
-0.02755369059741497,
-0.008768626488745213,
0.044242095202207565,
-0.004388557747006416,
0.011790535412728786,
-0.0021794240456074476,
0.0905214324593544,
-0.012656362727284431,
-0.01709585078060627,
-0.022205932065844536,
-0.03992993384599686,
0.04339324310421944,
-0.045973747968673706,
-0.01909913867712021,
-0.004346115048974752,
-0.011841465719044209,
0.016187580302357674,
0.008076814003288746,
-0.02933627739548683,
0.001854738569818437,
0.03680616244673729,
-0.007334069348871708,
0.003949277568608522,
-0.03850386291742325,
0.06342611461877823,
0.04661887511610985,
-0.0852925106883049,
-0.01016074139624834,
0.021832438185811043,
-0.03254493325948715,
-0.02342827618122101,
-0.03422565758228302,
0.05276455357670784,
-0.006247540470212698,
-0.007261916995048523,
0.04627933353185654,
0.11754883080720901,
-0.01772399991750717,
0.02556738071143627,
-0.0169515460729599,
0.03393704816699028,
-0.03473496809601784,
0.0293023232370615,
-0.031084910035133362,
0.00035625198506750166,
-0.06987737864255905,
0.022969897836446762,
-0.013989058323204517,
0.006001373752951622,
0.020083805546164513,
0.018437035381793976,
0.00010948846465907991,
-0.013140207156538963,
-0.01698550023138523,
-0.059860944747924805,
0.053477589040994644,
0.04227276146411896,
-0.05069335922598839,
0.042442530393600464,
0.034344494342803955,
0.014753023162484169,
-0.06386751681566238,
-0.025991804897785187,
-0.048044946044683456,
0.0007989806472323835,
-0.02463364414870739,
0.0169515460729599,
-0.028470449149608612,
0.04610956460237503,
0.03359750658273697,
0.06118515133857727,
-0.0017327163368463516,
0.050319865345954895,
0.013921150006353855,
-0.01190937403589487,
-0.008611589670181274,
0.020066827535629272,
0.02636530064046383,
0.017910748720169067,
0.04234066978096962,
-0.0010287008481100202,
0.012469615787267685,
-0.04223880544304848,
0.056703221052885056,
-0.03042280673980713,
0.05704276263713837,
0.03045675903558731,
0.0016892127459868789,
0.02519388683140278,
0.04414023086428642,
0.025295747444033623,
0.011467971839010715,
-0.053511541336774826,
0.032595861703157425,
0.10471421480178833,
0.002858504420146346,
-0.027163218706846237,
0.010118299163877964,
0.06967365741729736,
0.06359589099884033,
0.07524211704730988,
-0.02729903534054756,
0.0012520547024905682,
-0.019353793933987617,
-0.015151983126997948,
-0.0035672946833074093,
-0.01913309283554554,
-0.021306149661540985,
-0.021255219355225563,
0.02293594367802143,
0.011467971839010715,
-0.009693874046206474,
0.06946993619203568,
0.018470989540219307,
-0.018793553113937378,
0.040507152676582336,
-0.025601334869861603,
0.016730844974517822,
-0.07965613901615143,
-0.05215338245034218,
0.013233580626547337,
0.006892667151987553,
0.015881994739174843,
-0.014897327870130539,
0.030541645362973213,
0.03096606954932213,
0.04784122109413147,
-0.044208139181137085,
-0.04427604749798775,
-0.05663531273603439,
-0.07408767938613892,
0.02663693204522133,
-0.012851598672568798,
0.017876794561743736,
0.0017995632952079177,
0.02694251760840416,
-0.0083866436034441,
0.0031407473143190145,
-0.0289458055049181,
-0.011748092249035835,
0.0004602361877914518,
0.001357099856249988,
-0.020406369119882584,
-0.034633103758096695,
0.0017496932996436954,
-0.007750005926936865,
0.02432805858552456,
-0.06237354129552841,
-0.10919614136219025,
-0.02959093265235424,
0.0033465935848653316,
-0.037519197911024094,
0.01535570714622736,
0.020508231595158577,
-0.01770702376961708,
-0.009872132912278175,
-0.023869678378105164,
-0.0076269228011369705,
-0.02816486358642578,
-0.016883637756109238,
-0.0021210655104368925,
-0.0029200459830462933,
-0.05106685310602188,
-0.027349967509508133,
-0.06026839464902878,
-0.041899267584085464,
-0.001132154488004744,
0.04437790811061859,
-0.037553150206804276,
-0.003870758693665266,
-0.009150609374046326,
0.05768788605928421,
-0.0143370870500803,
-0.00885351188480854,
-0.06787409633398056,
-0.07877333462238312,
0.018708666786551476,
0.017325041815638542,
0.034972645342350006,
-0.021951276808977127,
0.015610362403094769,
-0.012062166817486286,
0.03738338127732277,
0.012257402762770653,
-0.013428816571831703,
-0.02057613804936409,
0.05300223082304001,
0.003575783222913742,
0.024124333634972572,
0.0004246905737090856,
0.00645550899207592,
-0.038402002304792404,
0.005105836316943169,
0.0007061376236379147,
0.1036955937743187,
0.037553150206804276,
0.022766172885894775,
0.005250141024589539,
-0.018335172906517982,
0.006183876655995846,
0.030881185084581375,
0.014150340110063553,
-0.04699236899614334,
0.0004793353145942092,
0.004250619560480118,
0.06142282858490944,
-0.03327494487166405,
0.03799455240368843,
0.0025274527724832296,
-0.04845239222049713,
0.0795203223824501,
-0.002142286626622081,
0.0310170017182827,
0.021323127672076225,
-0.033767275512218475,
-0.025618311017751694,
0.05249292030930519,
0.05799347534775734,
-0.01465116161853075,
-0.0620340034365654,
-0.0039068348705768585,
-0.018929367884993553,
0.04950496926903725,
0.0335465744137764,
-0.012147052213549614,
-0.07401977479457855,
-0.013420328497886658,
0.012265891768038273,
0.018352150917053223,
-0.025024116039276123,
-0.04644910618662834,
0.013284511864185333,
-0.02521086297929287,
-0.010729472152888775,
-0.020168690010905266,
0.027366943657398224,
-0.030592575669288635,
0.049131471663713455,
-0.015983857214450836,
-0.027791369706392288,
-0.051168713718652725,
0.07829798012971878,
-0.020389391109347343,
-0.029115576297044754,
-0.003942911047488451,
0.011544368229806423,
0.018504943698644638,
0.05531110614538193,
-0.026874611154198647,
-0.021849414333701134,
0.040439244359731674,
-0.0016319153364747763,
0.04118623211979866,
0.06967365741729736,
0.0452607162296772,
-0.01792772486805916,
0.023343391716480255,
-0.008327224291861057,
0.025142954662442207,
0.036127083003520966,
-0.0007920837379060686,
-0.028606265783309937,
-0.06227168068289757,
-0.017010966315865517,
0.05541296675801277,
-0.0009337356896139681,
0.0360591746866703,
-0.03938666731119156,
0.0030685949604958296,
0.0018759598024189472,
-0.0031789455097168684,
-0.017180737107992172,
0.05313804745674133,
-0.012520546093583107,
0.02639925479888916,
-0.008513971231877804,
-0.0252448171377182,
-0.024277128279209137,
-0.04729795455932617,
0.001994798891246319,
0.07368022948503494,
0.019608449190855026,
0.057246483862400055,
0.013420328497886658,
0.05133848637342453,
0.0342596098780632,
-0.06587080657482147,
-0.01792772486805916,
-0.03561777248978615,
-0.016883637756109238,
0.00607777014374733,
-0.03992993384599686,
0.0019088528351858258,
-0.042476482689380646,
-0.016459213569760323,
0.06444473564624786,
0.011417040601372719,
0.01403998862951994,
0.005908000282943249,
0.047060277312994,
0.02346223033964634,
0.039590392261743546,
0.0023810260463505983,
-0.009201540611684322,
-0.06644802540540695,
-0.02611064538359642,
0.04845239222049713,
0.07055646181106567,
-0.008119256235659122,
-0.004293061792850494,
-0.007890066131949425,
0.01769004762172699,
-0.05982699245214462,
-0.03738338127732277,
0.01722317934036255,
0.013488235883414745,
0.00008952720963861793,
0.006442775949835777,
0.023037806153297424,
0.007053948473185301,
-0.0166799146682024,
0.03356355428695679,
-0.036975931376218796,
0.008335713297128677,
0.04200112819671631,
-0.03677221015095711,
0.02346223033964634,
0.03711174800992012,
-0.020372414961457253,
0.012495080940425396,
0.034055884927511215,
0.01031353510916233,
-0.0191161148250103,
0.08814464509487152,
-0.029098598286509514,
-0.04488721862435341,
0.02726508118212223,
-0.010797379538416862,
-0.008946885354816914,
-0.0533757247030735,
-0.0015735568013042212,
-0.031713057309389114,
-0.07259370386600494,
0.02003287523984909,
-0.014600230380892754,
-0.014243713580071926,
-0.03397100046277046,
0.03356355428695679,
-0.03385216370224953,
-0.06651593744754791,
-0.004889379721134901,
0.010695517994463444,
-0.13119834661483765,
0.010440862737596035,
0.014549299143254757,
0.02145894430577755,
0.000018767555957310833,
-0.0202875304967165,
-0.059012092649936676,
0.0029158019460737705,
-0.04142390936613083,
0.04054110497236252,
-0.06444473564624786,
-0.006548882462084293,
0.007877334021031857,
0.017859816551208496,
0.015168960206210613,
0.02869115024805069,
-0.054903656244277954,
-0.017452368512749672,
0.0481468066573143,
0.014150340110063553,
-0.053511541336774826,
-0.01915006898343563,
0.004363092128187418,
-0.002773619256913662,
-0.004167856648564339,
-0.01700247824192047,
-0.0667196586728096,
-0.02054218389093876,
-0.03663639351725578,
0.043087657541036606,
0.0007544159889221191,
-0.03218841552734375,
0.00168390735052526,
0.014107896946370602,
-0.011552857235074043,
-0.016671426594257355,
0.018182380124926567,
0.04987846314907074,
-0.060438163578510284,
0.07008110731840134,
-0.013708936981856823,
-0.00565334502607584,
0.032918427139520645,
0.04030342772603035,
0.00015743526455480605,
-0.021662667393684387,
0.010585167445242405,
0.008658275939524174,
-0.06291680783033371,
0.047365862876176834,
0.05422457680106163,
-0.07218625396490097,
-0.06284889578819275,
0.0002262717462144792,
0.030507691204547882,
0.06946993619203568,
-0.032969359308481216,
-0.009507127106189728,
-0.054903656244277954,
-0.015050121583044529,
-0.021934300661087036,
-0.030083265155553818,
0.03938666731119156,
-0.02432805858552456,
0.03731547296047211,
-0.0030282745137810707,
0.019184023141860962,
-0.012214960530400276,
-0.058604646474123,
-0.03076234646141529,
-0.025109000504016876,
-0.0013082909863442183,
0.012546012178063393,
-0.059589311480522156,
-0.06576894223690033,
0.014345575124025345,
-0.0065064397640526295,
0.014837908558547497,
-0.02495620772242546,
-0.010899242013692856,
0.004923333413898945,
0.04807889834046364,
-0.051779888570308685,
-0.011849954724311829,
-0.005759451538324356,
0.008743161335587502,
-0.03619499132037163,
-0.005033683963119984,
-0.005806138273328543,
-0.002192156622186303,
-0.007363779004663229,
0.02901371382176876,
0.02841951884329319,
-0.022952919825911522,
0.015881994739174843,
-0.004651701543480158,
0.020219622179865837,
0.02577110379934311,
0.019472632557153702,
0.0045965262688696384,
0.03510846197605133,
0.017325041815638542,
-0.06183027848601341,
-0.01684119552373886,
-0.041593678295612335,
0.017520276829600334,
-0.0022473318967968225,
-0.017791908234357834,
-0.023988518863916397,
-0.014455925673246384,
-0.06536149978637695,
-0.05802742764353752,
0.0007586602587252855,
-0.04627933353185654,
0.011145408265292645,
0.011467971839010715,
-0.031220724806189537,
0.0025444296188652515,
0.040405288338661194,
-0.04933519661426544,
0.05310409516096115,
-0.04617747291922569,
-0.018148425966501236,
0.00508037069812417,
-0.007232207339257002,
0.02349618449807167,
-0.042476482689380646,
-0.0008308125543408096,
0.022409657016396523,
-0.016238512471318245,
-0.03330889716744423,
0.07205043733119965,
-0.009006304666399956,
-0.06485218554735184,
0.09873830527067184,
0.05334177240729332,
0.036127083003520966,
0.009235494770109653,
0.006990284658968449,
0.050625450909137726,
-0.0249731857329607,
-0.04933519661426544,
-0.047705404460430145,
0.03969225287437439,
-0.024769460782408714,
-0.03762105852365494,
-0.032103531062603,
0.012919506058096886,
0.0029136796947568655,
-0.01628095470368862,
-0.001806990709155798,
0.01831819675862789,
0.018759598955512047,
-0.020151713863015175,
-0.011900885961949825,
0.0789770632982254,
0.009345845319330692,
-0.07727935910224915,
-0.020745908841490746,
-0.03139049559831619,
0.038164325058460236,
-0.024480851367115974,
0.058163244277238846,
-0.008454551920294762,
0.05334177240729332,
-0.02926836907863617,
0.013097764924168587,
0.01027109194546938,
-0.009031770750880241,
0.04604165628552437,
0.025669243186712265,
-0.06261122226715088,
-0.034055884927511215,
-0.017605161294341087,
-0.0382322296500206,
-0.010763425379991531,
0.05948745086789131,
0.07008110731840134,
-0.022969897836446762,
0.00022322118456941098,
0.014837908558547497,
-0.04145786538720131,
0.059012092649936676,
0.020678000524640083,
0.04373278468847275,
0.014753023162484169,
-0.03704383969306946,
-0.0742914080619812,
-0.014175805263221264,
0.02521086297929287,
-0.06980947405099869,
-0.04434395581483841,
-0.01855587400496006,
-0.09595407545566559,
0.004295184276998043,
0.008785603567957878,
0.04950496926903725,
0.0017995632952079177,
0.05592227727174759,
-0.00565758952870965,
-0.006523416843265295,
0.054971564561128616,
0.021968252956867218,
0.013038345612585545,
0.029064644128084183,
-0.04434395581483841,
-0.01796167902648449,
0.03809641674160957,
-0.03254493325948715,
0.017070386558771133,
0.007805181201547384,
-0.010865287855267525,
0.04295184090733528,
-0.039013173431158066,
-0.01304683368653059,
-0.020779862999916077,
-0.04753563553094864,
-0.0551752895116806,
0.05568460002541542,
-0.023954564705491066,
-0.04088064655661583,
0.022834081202745438,
-0.01696852408349514,
0.002063767984509468,
-0.023682931438088417,
-0.014269178733229637,
-0.02521086297929287,
0.016900615766644478,
-0.02690856344997883,
-0.04383464530110359,
0.03196771442890167,
-0.020983587950468063,
-0.0018642881186679006,
-0.02987954206764698,
-0.02286803536117077,
0.006803537718951702,
0.03619499132037163,
-0.014269178733229637,
0.029387207701802254,
-0.014175805263221264,
0.02612762153148651,
-0.048588208854198456,
0.018369127064943314,
0.003215021686628461,
-0.04383464530110359,
0.0018197235185652971,
0.049708690494298935,
-0.01765609346330166,
0.02437898889183998,
0.00344208930619061,
-0.0010684906737878919,
0.03775687515735626,
-0.025024116039276123,
-0.007363779004663229,
0.014124874025583267,
-0.024803414940834045,
0.015983857214450836,
-0.007346801925450563,
-0.07741517573595047,
0.038469910621643066,
0.024854345247149467,
-0.04784122109413147,
0.040133655071258545,
0.0171298049390316,
0.007991928607225418,
0.04138995707035065,
0.002620826242491603,
-0.03356355428695679,
-0.01116238534450531,
-0.007592968642711639,
0.014124874025583267,
-0.000819140812382102,
0.03819827735424042,
0.06335821002721786,
-0.01825028844177723,
-0.007368023507297039,
0.011926351115107536,
0.00023383181542158127,
0.04879193380475044,
-0.03045675903558731,
-0.05334177240729332,
-0.032018646597862244,
0.016365839168429375,
-0.018420057371258736,
-0.055820416659116745,
0.02933627739548683,
-0.07999568432569504,
0.007210985757410526,
-0.05188174918293953,
-0.03213748335838318,
0.07666818797588348,
0.04427604749798775,
-0.04206903651356697,
0.0661763921380043,
0.04627933353185654,
-0.019234955310821533,
-0.01682421937584877,
0.04485326632857323,
0.009210028685629368,
0.025092024356126785,
0.013029856607317924,
0.022698264569044113,
0.026331346482038498,
0.005678810644894838,
0.034361474215984344,
-0.00242559053003788,
0.0806068554520607,
-0.0921512246131897,
-0.024158287793397903,
-0.012800667434930801,
-0.027910208329558372,
-0.024990161880850792,
0.03422565758228302,
0.042748115956783295,
0.05388503521680832,
0.01304683368653059,
0.04410627856850624,
-0.018148425966501236,
0.056058093905448914,
-0.011646230705082417,
0.06003071367740631,
-0.018046563491225243,
0.06118515133857727,
-0.028198817744851112,
0.041933219879865646,
-0.006370623596012592,
-0.022222908213734627,
-0.028470449149608612,
-0.020151713863015175,
-0.03799455240368843,
-0.0015226257964968681,
-0.02987954206764698,
0.04081273823976517,
-0.009031770750880241,
0.026297392323613167,
-0.004469198640435934,
0.024463875219225883,
0.0168581735342741,
0.023648977279663086,
-0.02089870162308216,
-0.03381820768117905,
0.024701552465558052,
0.02991349622607231,
-0.012503569945693016,
-0.01568675972521305,
0.006688942667096853,
0.0580613799393177,
0.002671757247298956,
0.021577782928943634,
0.03397100046277046,
-0.0042824512347579,
0.028181839734315872,
-0.07008110731840134,
-0.03381820768117905,
0.01508407574146986,
-0.04960682988166809,
-0.00943073071539402,
0.005326537415385246,
0.058604646474123,
-0.035549864172935486,
0.025584356859326363,
0.05687298998236656,
0.017155271023511887
]
|
42,164 | werkzeug.exceptions | InternalServerError | *500* `Internal Server Error`
Raise if an internal server error occurred. This is a good fallback if an
unknown error occurred in the dispatcher.
.. versionchanged:: 1.0.0
Added the :attr:`original_exception` attribute.
| class InternalServerError(HTTPException):
"""*500* `Internal Server Error`
Raise if an internal server error occurred. This is a good fallback if an
unknown error occurred in the dispatcher.
.. versionchanged:: 1.0.0
Added the :attr:`original_exception` attribute.
"""
code = 500
description = (
"The server encountered an internal error and was unable to"
" complete your request. Either the server is overloaded or"
" there is an error in the application."
)
def __init__(
self,
description: str | None = None,
response: Response | None = None,
original_exception: BaseException | None = None,
) -> None:
#: The original exception that caused this 500 error. Can be
#: used by frameworks to provide context when handling
#: unexpected errors.
self.original_exception = original_exception
super().__init__(description=description, response=response)
| (description: str | None = None, response: 'Response | None' = None, original_exception: 'BaseException | None' = None) -> 'None' | [
-0.01820528134703636,
-0.03321956470608711,
-0.03788616508245468,
0.031577952206134796,
-0.00424005975946784,
-0.06086871773004532,
-0.04124316945672035,
0.025989098474383354,
0.049358997493982315,
-0.03722214326262474,
0.0801253691315651,
0.027612265199422836,
0.0611269511282444,
-0.0042285313829779625,
0.002554641803726554,
0.014304148964583874,
0.036705683916807175,
0.0056718578562140465,
0.059282444417476654,
-0.07105039805173874,
-0.009434651583433151,
0.03366224467754364,
0.006363547872751951,
0.03661345690488815,
-0.007553254719823599,
0.06459462642669678,
-0.016840346157550812,
0.0013614764902740717,
0.08005158603191376,
-0.09023326635360718,
-0.03519318625330925,
-0.05662635341286659,
0.01220141164958477,
0.009489987045526505,
0.022687431424856186,
0.010338460095226765,
-0.03906664997339249,
-0.0027183417696505785,
-0.09628324955701828,
0.00967443734407425,
-0.02556486241519451,
0.004004884976893663,
-0.06145896017551422,
-0.045301083475351334,
0.07378026843070984,
-0.010984037071466446,
0.00018574758723843843,
0.04128005728125572,
-0.03185462951660156,
0.000006588167252630228,
-0.06249188631772995,
-0.008387894369661808,
0.005745638161897659,
-0.03781238570809364,
0.0005314484587870538,
0.077395498752594,
0.03652122989296913,
0.0556672103703022,
-0.017845602706074715,
-0.018131500110030174,
-0.06086871773004532,
0.07547721266746521,
0.014211923815310001,
-0.030489694327116013,
0.0114543866366148,
0.03325645625591278,
-0.027224918827414513,
0.011574279516935349,
-0.05504008010029793,
0.02539885602891445,
0.03950933367013931,
0.016176322475075722,
-0.046297118067741394,
0.031743958592414856,
0.03969378396868706,
0.0074748629704117775,
-0.0764363557100296,
-0.020215792581439018,
0.007401083130389452,
-0.0033800583332777023,
0.06212298572063446,
-0.009194865822792053,
0.0006893843528814614,
-0.03515629842877388,
0.055814772844314575,
-0.07820708304643631,
-0.020363353192806244,
-0.04242365434765816,
-0.029881007969379425,
0.03010234795510769,
-0.055482760071754456,
-0.014811388216912746,
-0.026782236993312836,
0.019016863778233528,
0.008627680130302906,
-0.01873096451163292,
-0.005127728451043367,
-0.05053948238492012,
0.03076637163758278,
-0.06249188631772995,
0.04412059858441353,
0.0583970807492733,
-0.026782236993312836,
-0.014165811240673065,
0.03921421244740486,
0.006856953259557486,
0.043677918612957,
-0.06057359650731087,
0.020861370489001274,
-0.03167017921805382,
0.009374705143272877,
-0.019533324986696243,
-0.04924832656979561,
-0.014894391410052776,
-0.047957174479961395,
0.04504285380244255,
0.01766115054488182,
0.0000620359496679157,
0.01720002479851246,
-0.02311166748404503,
0.013391118496656418,
-0.025085290893912315,
-0.05231020972132683,
0.023886360228061676,
0.04448949918150902,
0.03076637163758278,
0.0010876825544983149,
-0.035875655710697174,
0.007064460311084986,
-0.0357280932366848,
-0.047293148934841156,
0.018140722066164017,
-0.01712624356150627,
0.010670471005141735,
-0.03473205864429474,
0.050428811460733414,
-0.02692979760468006,
0.03026835434138775,
-0.01308677438646555,
-0.0014802166260778904,
-0.04109560698270798,
0.01583508960902691,
-0.0028635966591537,
0.05371203273534775,
0.021968074142932892,
-0.017015574499964714,
0.005588855128735304,
-0.033311791718006134,
0.011528166942298412,
0.0019286622991785407,
-0.0014156588586047292,
-0.004163973964750767,
0.01304988469928503,
0.016572892665863037,
-0.047293148934841156,
0.002616893732920289,
0.021599173545837402,
-0.0338282510638237,
0.004897165112197399,
0.012524200603365898,
0.00860462337732315,
-0.05422849580645561,
0.04585443437099457,
-0.04843674600124359,
-0.017799489200115204,
0.0017499757232144475,
0.02410770207643509,
-0.03578342869877815,
0.006566443480551243,
0.0014006722485646605,
-0.06120073050260544,
-0.004585904534906149,
-0.0708659440279007,
0.0017603510059416294,
-0.024624163284897804,
0.046297118067741394,
0.028718968853354454,
0.04412059858441353,
-0.01761503890156746,
0.013345005922019482,
0.0512772835791111,
-0.04511663317680359,
-0.06710315495729446,
0.010393794625997543,
0.005247621331363916,
0.03646589815616608,
-0.01918286830186844,
0.04648156836628914,
0.007673147600144148,
0.05149862542748451,
0.06441017240285873,
-0.018380507826805115,
0.014101252891123295,
0.007816096767783165,
0.04301389679312706,
0.025878427550196648,
0.035838764160871506,
-0.036871686577796936,
0.12800876796245575,
0.046592239290475845,
-0.058581531047821045,
0.09473386406898499,
0.014258036389946938,
-0.002152308588847518,
0.012929991818964481,
0.04755138233304024,
0.006464995909482241,
-0.035008735954761505,
-0.059651345014572144,
-0.014599270187318325,
-0.04648156836628914,
0.016969460994005203,
-0.037074584513902664,
0.06400438398122787,
0.01391680259257555,
0.010366127826273441,
-0.008120440877974033,
-0.020953595638275146,
0.04021024331450462,
-0.01591809280216694,
0.0049109989777207375,
0.030987711623311043,
-0.0008081244886852801,
-0.042571213096380234,
0.04131694883108139,
0.03150417283177376,
0.0305634755641222,
-0.01518028974533081,
-0.0025684754364192486,
-0.0012819321127608418,
-0.051351066678762436,
0.007617812603712082,
-0.018002385273575783,
-0.011260713450610638,
0.011030149646103382,
0.007714649196714163,
0.034713614732027054,
-0.05492940917611122,
0.02713269367814064,
-0.019883781671524048,
0.015410852618515491,
-0.05120350420475006,
-0.02490084059536457,
0.03648434206843376,
-0.010181676596403122,
-0.04600199684500694,
-0.06684491783380508,
0.08986436575651169,
-0.0556672103703022,
-0.011943180114030838,
0.003481506370007992,
-0.0267637912184,
-0.019256649538874626,
-0.0382181778550148,
0.04744071140885353,
0.025159070268273354,
-0.07164064049720764,
-0.019035307690501213,
-0.01754125766456127,
0.016932571306824684,
0.03412337228655815,
0.01907219924032688,
-0.032352644950151443,
0.037572599947452545,
-0.013538679108023643,
-0.03792305663228035,
0.005256843753159046,
0.04677668958902359,
0.03419715166091919,
0.05013369023799896,
0.14807699620723724,
0.053453803062438965,
-0.0030964654870331287,
0.025896873325109482,
-0.0297334473580122,
0.011076262220740318,
-0.027612265199422836,
0.03781238570809364,
-0.05850775167346001,
-0.01095636934041977,
0.007248911075294018,
-0.02940143644809723,
0.02849762700498104,
-0.0020946678705513477,
0.03416026383638382,
-0.019367320463061333,
0.010273901745676994,
0.03060036525130272,
-0.009093417786061764,
-0.011989293619990349,
0.033477794378995895,
0.011620392091572285,
-0.0005461468826979399,
-0.0009406983735971153,
-0.04135384038090706,
-0.016803456470370293,
-0.06263944506645203,
0.021027375012636185,
0.03558053448796272,
-0.019053753465414047,
0.021691398695111275,
0.025251295417547226,
0.015346295200288296,
-0.010513687506318092,
0.03436315804719925,
-0.04234987124800682,
0.05083460360765457,
0.004442955367267132,
0.009517653845250607,
-0.019736221060156822,
-0.0033570020459592342,
0.004897165112197399,
-0.02667156606912613,
-0.00806510541588068,
-0.003481506370007992,
0.05769616737961769,
0.05433916673064232,
-0.0004328826616983861,
-0.007663925178349018,
0.06075805053114891,
0.000043014471884816885,
-0.009434651583433151,
-0.002879736013710499,
-0.012846988625824451,
0.015899647027254105,
0.0008259931346401572,
0.033145785331726074,
0.00795904640108347,
0.014516266994178295,
-0.030379025265574455,
0.017642706632614136,
-0.051019053906202316,
-0.028848083689808846,
-0.07267355918884277,
0.019865335896611214,
-0.0949552059173584,
0.05090838298201561,
-0.01981000229716301,
-0.006220598705112934,
-0.05061326175928116,
-0.04375169798731804,
-0.00926403421908617,
0.0020474023185670376,
0.04205475002527237,
-0.017550481483340263,
-0.029419880360364914,
-0.010200121439993382,
-0.03150417283177376,
-0.01060591358691454,
-0.01977311074733734,
-0.05385959520936012,
-0.015807421877980232,
-0.042165420949459076,
-0.002559253014624119,
0.04054225608706474,
-0.043530356138944626,
-0.03582032024860382,
-0.03432627022266388,
-0.016369996592402458,
0.01584431156516075,
0.01914597861468792,
-0.003981828689575195,
-0.03795994818210602,
0.0032716935966163874,
-0.014709940180182457,
-0.020621584728360176,
0.009296313859522343,
-0.0144517095759511,
-0.03832884877920151,
0.0035368415992707014,
0.010827253572642803,
-0.04755138233304024,
-0.02862674370408058,
0.013861467130482197,
0.03023146465420723,
0.010467574931681156,
-0.058950431644916534,
-0.003638289403170347,
-0.06485285609960556,
0.013345005922019482,
0.05020746961236,
-0.04242365434765816,
-0.03404959291219711,
-0.02716958336532116,
0.051019053906202316,
-0.0099695585668087,
0.05463428795337677,
-0.017430588603019714,
-0.017817934975028038,
0.04190719127655029,
-0.02713269367814064,
-0.05212575942277908,
-0.03203907981514931,
0.04371480643749237,
-0.021580727770924568,
-0.039398662745952606,
-0.040763597935438156,
-0.0357280932366848,
-0.01401825062930584,
0.008134274743497372,
0.006889232434332371,
0.060647379606962204,
-0.03043435886502266,
0.035875655710697174,
0.02787049487233162,
0.025085290893912315,
0.03452916443347931,
0.04279255494475365,
-0.0011776022147387266,
0.02497461996972561,
-0.012146076187491417,
-0.015152622014284134,
-0.048326075077056885,
-0.05031814053654671,
0.031743958592414856,
0.02340678870677948,
0.026948241516947746,
-0.014377929270267487,
0.009840442799031734,
-0.01724613644182682,
0.005330624058842659,
0.037443485110998154,
0.09879177808761597,
-0.010541355237364769,
-0.04294011369347572,
-0.014377929270267487,
-0.05290045216679573,
-0.03416026383638382,
-0.017301471903920174,
0.017356807366013527,
-0.003693624632433057,
-0.022466091439127922,
-0.08883143961429596,
-0.014359484426677227,
0.04290322586894035,
-0.059208665043115616,
-0.0556672103703022,
-0.002490083919838071,
-0.026819126680493355,
0.01073502842336893,
0.0226689875125885,
0.0014709940878674388,
0.044526390731334686,
0.008088161237537861,
0.07887110114097595,
-0.030674146488308907,
-0.01861107163131237,
0.012902324087917805,
0.022558316588401794,
-0.0409480482339859,
-0.002049708040431142,
-0.013243557885289192,
0.020529359579086304,
-0.03452916443347931,
0.02311166748404503,
-0.050391919910907745,
-0.07791195809841156,
-0.03561742231249809,
0.02969655767083168,
0.03781238570809364,
-0.009877333417534828,
0.026579340919852257,
-0.00498477928340435,
-0.048326075077056885,
-0.01348334364593029,
0.010642803274095058,
0.060278479009866714,
0.0031471895053982735,
0.034141819924116135,
0.03421559929847717,
-0.005492018535733223,
0.010467574931681156,
0.02600754424929619,
0.0010041033383458853,
-0.006303601432591677,
-0.00846167467534542,
-0.02862674370408058,
-0.014756052754819393,
0.052752889692783356,
-0.02630266547203064,
0.04994923993945122,
0.022429201751947403,
0.04039469733834267,
-0.02646866999566555,
0.0015678306808695197,
-0.05681080371141434,
0.013852245174348354,
-0.010144786909222603,
0.008360226638615131,
-0.02663467638194561,
0.049358997493982315,
0.03220508620142937,
-0.01316977757960558,
0.0000971968547673896,
-0.033440906554460526,
0.013907579705119133,
-0.08669181168079376,
0.018389731645584106,
-0.029253875836730003,
-0.008198832161724567,
0.010255456902086735,
-0.10506309568881989,
0.031006157398223877,
-0.013409563340246677,
0.07761684060096741,
-0.03784927725791931,
0.019754666835069656,
0.03495340049266815,
0.0583970807492733,
-0.04157517850399017,
-0.037111472338438034,
-0.005478184670209885,
0.01646222174167633,
0.015327850356698036,
0.002221477683633566,
0.011518944054841995,
-0.05326935276389122,
0.04068981483578682,
0.0708659440279007,
0.04190719127655029,
0.047662053257226944,
-0.0028451515827327967,
0.028442293405532837,
0.013824577443301678,
0.012883879244327545,
-0.034270934760570526,
0.03764637932181358,
0.012745540589094162,
0.017061686143279076,
0.08123207092285156,
-0.021857403218746185,
0.018592627719044685,
0.03266621381044388,
-0.0035760372411459684,
0.03519318625330925,
0.025693977251648903,
-0.07960890978574753,
0.007092128042131662,
0.025417301803827286,
0.02014201320707798,
-0.012136853300035,
0.05061326175928116,
0.0010265832534059882,
-0.02753848396241665,
-0.06891077011823654,
-0.09370093792676926,
-0.03969378396868706,
0.03312733769416809,
-0.00036169623490422964,
-0.03613388538360596,
-0.001603567972779274,
-0.0010265832534059882,
0.014691495336592197,
-0.037074584513902664,
-0.002147697377949953,
0.021746734157204628,
0.017098575830459595,
0.05979890376329422,
0.013372673653066158,
0.022281641140580177,
-0.015410852618515491,
0.01496817171573639,
0.0414276197552681,
-0.03899287059903145,
-0.03611544147133827,
0.054449837654829025,
-0.014258036389946938,
0.006746283266693354,
-0.04234987124800682,
-0.040357805788517,
-0.019164424389600754,
0.04437882825732231,
0.03725903481245041,
0.0002534755622036755,
0.03026835434138775,
0.0512772835791111,
0.04065292701125145,
0.036576565355062485,
0.023794135078787804,
-0.0011643448378890753,
0.03255554288625717,
0.010283124633133411,
-0.04511663317680359,
0.0004524805408436805,
-0.03242642804980278,
-0.05703214555978775,
0.007322691380977631,
0.006686336826533079,
-0.014543934725224972,
-0.019293539226055145,
-0.010845699347555637,
-0.039398662745952606,
0.012542645446956158,
-0.051719967275857925,
0.03932488337159157,
0.05703214555978775,
-0.07182508707046509,
-0.0529373399913311,
-0.009951113723218441,
0.025251295417547226,
0.00841556116938591,
0.06547998636960983,
-0.017227692529559135,
-0.00848011951893568,
0.06319279968738556,
0.00690767727792263,
0.023056333884596825,
-0.007479474414139986,
-0.03226042166352272,
-0.005316790193319321,
0.010015671141445637,
-0.005925477482378483,
-0.03303511440753937,
-0.007078294176608324,
-0.05710592493414879,
-0.007899099960923195,
-0.010292347520589828,
0.025509526953101158,
-0.005607300437986851,
-0.06902144104242325,
-0.00019367320055607706,
-0.003520702011883259,
-0.033643800765275955,
0.02633955515921116,
-0.00260075437836349,
0.026892906054854393,
0.06721382588148117,
-0.003446921706199646,
-0.07842842489480972,
0.00924558937549591,
-0.011103929951786995,
0.04194408282637596,
-0.018749410286545753,
-0.05850775167346001,
-0.029641222208738327,
0.05467117577791214,
0.027224918827414513,
0.011150042526423931,
0.04164896160364151,
0.05212575942277908,
0.05190441757440567,
0.0037720161490142345,
-0.07075527310371399,
-0.0021108072251081467,
-0.01849117875099182,
0.01951488107442856,
0.0025569472927600145,
-0.06957478821277618,
0.022355420514941216,
-0.051756855100393295,
-0.014756052754819393,
0.03995201364159584,
0.009425428695976734,
-0.007525586988776922,
-0.07319002598524094,
0.02563864178955555,
0.008927412331104279,
-0.023628130555152893,
0.011897067539393902,
0.0193488746881485,
-0.010642803274095058,
-0.0556672103703022,
0.07440739870071411,
-0.05492940917611122,
0.07628879696130753,
0.040505364537239075,
0.04703491926193237,
-0.07894488424062729,
0.05061326175928116,
-0.048030953854322433,
0.042866334319114685,
-0.012828543782234192,
0.02737247943878174,
-0.015014284290373325,
-0.005787139758467674,
0.04707181081175804,
-0.026191994547843933,
-0.014460932463407516,
-0.01424881350249052,
-0.0060730380937457085,
0.019754666835069656,
0.03545141592621803,
-0.09761129319667816,
0.011057817377150059,
-0.022853437811136246,
-0.00024684687377884984,
-0.013142109848558903,
0.04271877557039261,
-0.008798296563327312,
-0.039804454892873764,
-0.02692979760468006,
-0.013040661811828613,
-0.05422849580645561,
0.07599367201328278,
-0.044932182878255844,
-0.009499209001660347,
0.013852245174348354,
-0.08469974249601364,
0.01984689198434353,
0.055150747299194336,
0.019736221060156822,
-0.017061686143279076,
-0.0021142656914889812,
0.005118506029248238,
0.033348679542541504,
0.001919439760968089,
0.022466091439127922,
-0.025989098474383354,
0.031245943158864975,
-0.022263195365667343,
0.026985133066773415,
0.03135661408305168,
0.052383989095687866,
-0.01304988469928503,
-0.004046386573463678,
-0.0321681946516037,
0.040763597935438156,
0.027151137590408325,
-0.044600170105695724,
0.02220785990357399,
-0.02277965657413006,
0.01435026153922081,
0.03781238570809364,
0.0065941112115979195,
-0.022318530827760696,
-0.007553254719823599,
0.003735125996172428,
-0.05658946558833122,
0.0172092467546463,
0.01391680259257555,
0.009840442799031734,
0.01716313511133194,
-0.045301083475351334,
-0.026191994547843933,
0.008922801353037357,
-0.0371483638882637,
-0.01695101521909237,
0.007133629638701677,
0.036041658371686935,
0.028257841244339943,
0.027427813038229942,
-0.029216986149549484,
-0.00922253355383873,
-0.07606745511293411,
0.0025800035800784826,
-0.00733191380277276,
0.010393794625997543,
0.04024713486433029,
0.019699331372976303,
0.0764363557100296,
0.027778269723057747,
-0.0294936615973711,
-0.003550675231963396,
0.04124316945672035,
0.031780850142240524,
-0.03443693742156029,
0.02506684511899948,
-0.002388636115938425,
0.02121182717382908,
-0.029216986149549484,
0.014377929270267487,
0.02327767387032509,
-0.013492566533386707,
-0.008881299756467342,
-0.015069619752466679,
0.07532965391874313,
-0.010098674334585667,
0.019625550135970116
]
|
42,166 | werkzeug.exceptions | __init__ | null | def __init__(
self,
description: str | None = None,
response: Response | None = None,
original_exception: BaseException | None = None,
) -> None:
#: The original exception that caused this 500 error. Can be
#: used by frameworks to provide context when handling
#: unexpected errors.
self.original_exception = original_exception
super().__init__(description=description, response=response)
| (self, description: 'str | None' = None, response: 'Response | None' = None, original_exception: 'BaseException | None' = None) -> 'None' | [
-0.024655207991600037,
-0.03618659824132919,
0.018596652895212173,
0.02152526006102562,
-0.023538677021861076,
-0.05341046303510666,
-0.031793687492609024,
0.08068311214447021,
0.03675401583313942,
-0.024362346157431602,
0.045576442033052444,
0.06157395616173744,
0.01718726009130478,
0.01694015972316265,
-0.022660095244646072,
0.03300173580646515,
0.026668624952435493,
0.00620040949434042,
0.045649655163288116,
-0.031226269900798798,
0.00783859845250845,
-0.0036218627355992794,
-0.03693705052137375,
0.07914559543132782,
-0.02304447442293167,
0.08639390021562576,
-0.03208654746413231,
0.01076263003051281,
0.06669902056455612,
-0.055497098714113235,
-0.011851705610752106,
-0.01436847634613514,
-0.03302004188299179,
0.06633294373750687,
0.012913324870169163,
-0.005701631307601929,
-0.04129335284233093,
-0.01394748967140913,
-0.09627794474363327,
0.03873082250356674,
-0.016445957124233246,
0.002175863366574049,
-0.03221467509865761,
-0.013316008262336254,
0.027199434116482735,
0.01974979229271412,
0.0002957206452265382,
-0.011101249605417252,
-0.02461859956383705,
-0.002740992931649089,
-0.048541657626628876,
0.027547206729650497,
-0.01122022420167923,
-0.0305856354534626,
-0.01838615909218788,
0.06010965257883072,
0.049456845968961716,
0.042245153337717056,
-0.032965127378702164,
-0.002374917035922408,
-0.07416696846485138,
0.056412287056446075,
-0.022733310237526894,
0.0024458442348986864,
0.004678906872868538,
0.027126219123601913,
-0.024051181972026825,
0.000016337564375135116,
-0.001592429936863482,
0.007504554465413094,
0.07658306509256363,
0.025570398196578026,
-0.042428188025951385,
0.02304447442293167,
0.05139704793691635,
0.00690510543063283,
-0.058242667466402054,
-0.04477107524871826,
-0.007582345977425575,
-0.04228175804018974,
0.02101275324821472,
0.02106766402721405,
-0.04056120291352272,
0.005788573995232582,
0.05494798347353935,
-0.05860874056816101,
-0.004855080973356962,
-0.02967044711112976,
-0.010021326132118702,
0.048395223915576935,
-0.08060990273952484,
0.0008757220348343253,
-0.03728482499718666,
0.012519793584942818,
0.03785224258899689,
-0.018139056861400604,
-0.01558567862957716,
-0.06984727084636688,
0.061647169291973114,
-0.027217738330364227,
0.03300173580646515,
0.051946163177490234,
0.019072551280260086,
-0.01607072912156582,
0.022019460797309875,
-0.008854459039866924,
0.03393523022532463,
-0.05341046303510666,
0.0374312549829483,
-0.04327016323804855,
-0.006525301840156317,
0.01856919750571251,
-0.015713805332779884,
-0.0012618176406249404,
-0.03466738015413284,
0.031738776713609695,
0.013535654172301292,
0.026174422353506088,
0.03583882376551628,
-0.0044981567189097404,
0.05179972946643829,
-0.06358737498521805,
-0.04700413718819618,
0.0338803194463253,
0.03611338138580322,
0.01869732327759266,
-0.00633311178535223,
-0.012776046991348267,
0.02611951157450676,
-0.014707096852362156,
-0.024856548756361008,
-0.004106913227587938,
0.002235350664705038,
0.00620040949434042,
-0.020701589062809944,
0.03393523022532463,
0.009472212754189968,
0.044661253690719604,
-0.014899286441504955,
-0.0034273851197212934,
-0.009316629730165005,
0.029157940298318863,
0.04081745445728302,
0.018340399488806725,
-0.0002651189861353487,
-0.02553378976881504,
-0.012675375677645206,
-0.022330626845359802,
0.008218402974307537,
-0.009316629730165005,
-0.0064612384885549545,
-0.010909060016274452,
0.02599138393998146,
-0.0086302375420928,
-0.036589279770851135,
-0.006987472530454397,
0.01506402064114809,
-0.022623486816883087,
-0.0036195749416947365,
0.03408166021108627,
0.0031688439194113016,
-0.05751051381230354,
0.05183633789420128,
-0.042574621737003326,
-0.016107337549328804,
-0.03662588819861412,
0.0032146035227924585,
-0.031665559858083725,
0.016683906316757202,
-0.029249459505081177,
-0.032782092690467834,
-0.03499684855341911,
-0.05637567862868309,
-0.004537052474915981,
-0.02868204191327095,
0.078193798661232,
0.06490524858236313,
0.009536275640130043,
-0.04799254238605499,
0.00038580960244871676,
0.06351415812969208,
-0.022879740223288536,
-0.03931654617190361,
0.02710791490972042,
0.01036909781396389,
-0.0059167006984353065,
0.00021578454470727593,
0.04960327595472336,
0.01450575515627861,
0.0715678259730339,
0.06534453481435776,
0.002175863366574049,
-0.004598827566951513,
-0.0024893158115446568,
0.05399618670344353,
0.004303678870201111,
0.04173264652490616,
-0.03957279771566391,
0.07409375160932541,
0.05538727343082428,
-0.012263540178537369,
0.09217789769172668,
0.02809632010757923,
-0.031464219093322754,
0.03175707906484604,
0.042245153337717056,
-0.029890092089772224,
-0.018029235303401947,
-0.03583882376551628,
-0.039536189287900925,
0.004731530323624611,
0.004514172673225403,
-0.00991150364279747,
-0.012345907278358936,
-0.004010818433016539,
0.036204900592565536,
-0.025936473160982132,
-0.051214009523391724,
0.024984676390886307,
-0.031665559858083725,
0.04693092405796051,
-0.02073819562792778,
-0.04726039245724678,
-0.05366671830415726,
0.04103710129857063,
0.04001208767294884,
0.018285488709807396,
-0.056339070200920105,
0.005225732456892729,
0.009966414421796799,
-0.08632068336009979,
-0.016107337549328804,
-0.017956020310521126,
-0.03668079897761345,
0.0388406477868557,
-0.0042785112746059895,
0.033294595777988434,
-0.03157404065132141,
-0.029945002868771553,
-0.07098210602998734,
0.02106766402721405,
-0.04004869610071182,
-0.01066195871680975,
0.049749705940485,
-0.018797993659973145,
-0.04784611240029335,
-0.08976179361343384,
0.08104918897151947,
-0.06450255960226059,
-0.019511841237545013,
0.027473991736769676,
-0.020134171470999718,
-0.03642454743385315,
-0.020189082249999046,
0.03569239377975464,
0.01499080564826727,
-0.005651295650750399,
-0.03677231818437576,
0.00201799301430583,
-0.001961937639862299,
0.05425243824720383,
-0.008117731660604477,
-0.03565578535199165,
-0.008996313437819481,
0.005481985863298178,
-0.007010352332144976,
-0.012638768181204796,
0.009225111454725266,
0.06314808130264282,
0.013736995868384838,
0.13522841036319733,
0.06512489169836044,
0.01122022420167923,
0.03949958458542824,
-0.051104187965393066,
0.019310500472784042,
-0.04733360558748245,
-0.013215337879955769,
-0.05498459190130234,
0.026137813925743103,
0.024911461398005486,
-0.03309325501322746,
0.037120088934898376,
0.028462396934628487,
0.03669910132884979,
-0.024398954585194588,
-0.012135414406657219,
0.01989622227847576,
-0.02802310511469841,
-0.012593008577823639,
-0.0021609915420413017,
0.07548483461141586,
0.009225111454725266,
-0.008744636550545692,
-0.028663737699389458,
-0.031940117478370667,
-0.017214715480804443,
0.025112802162766457,
0.026760144159197807,
0.010808388702571392,
0.023319030180573463,
0.0008202386670745909,
0.03314816579222679,
0.016226312145590782,
-0.02624763734638691,
-0.04305052012205124,
0.07014013081789017,
0.02185472659766674,
0.007824870757758617,
-0.004955751821398735,
0.01600666530430317,
0.06691866368055344,
-0.022586878389120102,
0.03243431821465492,
-0.004983207210898399,
0.03538123145699501,
0.05835248902440071,
-0.006589365191757679,
-0.016299527138471603,
0.07028656452894211,
0.021891335025429726,
-0.03117135725915432,
-0.0027707365807145834,
0.004031409975141287,
0.07350803166627884,
0.02185472659766674,
0.011476477608084679,
0.0022181908134371042,
0.013004844076931477,
-0.030732067301869392,
0.02586325816810131,
-0.028663737699389458,
-0.015649741515517235,
-0.05524084344506264,
0.01896272785961628,
-0.06413649022579193,
-0.006360567640513182,
-0.015613134950399399,
-0.032782092690467834,
-0.059890005737543106,
-0.0208114106208086,
-0.00662597268819809,
0.005665023811161518,
0.029414193704724312,
0.010478921234607697,
-0.03686383739113808,
-0.013993249274790287,
-0.09327612072229385,
-0.030695458874106407,
-0.025698523968458176,
-0.03644284978508949,
-0.007788263261318207,
0.005276068113744259,
0.022403841838240623,
0.055350665003061295,
-0.030109737068414688,
-0.04916398599743843,
0.023593587800860405,
-0.01686694473028183,
-0.014478299766778946,
-0.010204363614320755,
-0.03906029090285301,
-0.027675332501530647,
-0.008483807556331158,
-0.002660913858562708,
-0.009211382828652859,
-0.018459374085068703,
0.010899907909333706,
-0.07899916917085648,
0.038950469344854355,
0.010121996514499187,
-0.05333724990487099,
-0.0662597268819809,
0.012748590670526028,
0.03137269988656044,
-0.04114692285656929,
-0.09166538715362549,
0.009110712446272373,
-0.08397779613733292,
0.01739775389432907,
0.04784611240029335,
-0.012638768181204796,
-0.04356302320957184,
-0.016500867903232574,
-0.027748549357056618,
-0.01647341251373291,
0.04718717560172081,
0.003631014609709382,
0.020884627476334572,
-0.00006159654731163755,
-0.028206143528223038,
-0.06874904036521912,
-0.014267805963754654,
0.04154960811138153,
0.0009140456095337868,
-0.05282474309206009,
-0.032855305820703506,
-0.015466704033315182,
-0.07068924605846405,
0.002935470547527075,
-0.04630859196186066,
0.014029856771230698,
-0.011018882505595684,
0.019383715465664864,
0.06043912097811699,
-0.0022467905655503273,
0.013050603680312634,
0.06728474050760269,
0.026815054938197136,
0.013892577961087227,
-0.017013374716043472,
-0.044844288378953934,
-0.04436838999390602,
-0.0454300120472908,
-0.030878497287631035,
0.010597895830869675,
0.00873090885579586,
-0.0029835181776434183,
0.0043219830840826035,
-0.01876138709485531,
0.010716870427131653,
0.04037816449999809,
0.052934564650058746,
-0.017818741500377655,
-0.04363624006509781,
0.004946599714457989,
-0.029176244512200356,
-0.018560044467449188,
0.010588743723928928,
-0.02611951157450676,
-0.0040588658303022385,
0.04832201078534126,
-0.054838161915540695,
-0.005468257702887058,
0.08500280976295471,
-0.017086589708924294,
-0.033642370253801346,
0.007147630676627159,
-0.026998093351721764,
0.04751664400100708,
0.026137813925743103,
-0.04660145565867424,
0.04510054364800453,
0.00356923951767385,
0.03739464655518532,
-0.007532010320574045,
-0.020573461428284645,
0.005152517464011908,
0.017544183880090714,
-0.0205551590770483,
0.04034155607223511,
-0.010131148621439934,
0.0393531508743763,
-0.062379322946071625,
-0.041915684938430786,
-0.045503225177526474,
-0.09349577128887177,
-0.0174526646733284,
0.024856548756361008,
0.05066489428281784,
-0.007348972372710705,
-0.0014814632013440132,
-0.00034176610643044114,
-0.03543614223599434,
-0.006305656395852566,
0.04286748170852661,
0.020701589062809944,
-0.015375184826552868,
-0.022147588431835175,
0.009819984436035156,
0.016253767535090446,
0.003628726815804839,
0.02901151031255722,
0.012327603995800018,
-0.01621715910732746,
-0.010936515405774117,
-0.0029697902500629425,
-0.027473991736769676,
0.03657097741961479,
0.046491630375385284,
0.04455142840743065,
0.025698523968458176,
0.05073811113834381,
-0.020829714834690094,
0.030805282294750214,
-0.05300778150558472,
0.005257764365524054,
-0.031189661473035812,
-0.008877338841557503,
0.028828471899032593,
0.016235463321208954,
0.029176244512200356,
-0.044990722090005875,
-0.004640011116862297,
0.004088609479367733,
0.0047086505219340324,
-0.02972535789012909,
0.02007925882935524,
-0.0029583503492176533,
-0.02697978913784027,
-0.00507015036419034,
-0.09986548870801926,
0.024069486185908318,
-0.039609406143426895,
0.03677231818437576,
-0.025295840576291084,
-0.015219602733850479,
0.04034155607223511,
0.025369055569171906,
-0.025186017155647278,
-0.004795593675225973,
0.039279937744140625,
-0.01046976912766695,
-0.007742504123598337,
-0.007705896161496639,
0.005848061293363571,
-0.06911511719226837,
0.03263566270470619,
0.04894433915615082,
0.034026749432086945,
0.054106008261442184,
0.036204900592565536,
0.05524084344506264,
-0.010213515721261501,
0.03097001649439335,
-0.03561918064951897,
0.07453303784132004,
-0.01582362875342369,
0.042501404881477356,
0.039865657687187195,
-0.0489809475839138,
-0.034740597009658813,
-0.024966372177004814,
0.02053685486316681,
0.015182995237410069,
0.08017060905694962,
-0.07812058180570602,
-0.003974210936576128,
-0.01413967926055193,
0.015576526522636414,
0.00501981470733881,
0.0489809475839138,
-0.012776046991348267,
0.004303678870201111,
-0.07237319648265839,
-0.07687592506408691,
-0.05139704793691635,
0.07229997962713242,
-0.052019376307725906,
-0.004349438473582268,
0.01043316163122654,
-0.03433791175484657,
-0.00549571355804801,
-0.0059167006984353065,
0.0047178021632134914,
0.023849841207265854,
0.028663737699389458,
0.0341365709900856,
0.0454300120472908,
0.03971922770142555,
0.03164725750684738,
-0.008891066536307335,
0.012821806594729424,
-0.012492338195443153,
0.03281869739294052,
0.025295840576291084,
0.014514907263219357,
0.03677231818437576,
-0.09042073041200638,
-0.018596652895212173,
-0.039865657687187195,
0.05597299709916115,
0.0022445025388151407,
0.061061449348926544,
0.005568928550928831,
0.03005482628941536,
0.04597912356257439,
0.046564847230911255,
0.006923409178853035,
-0.014844375662505627,
0.0004784725606441498,
-0.025973081588745117,
-0.053849756717681885,
-0.02022569067776203,
-0.07061602920293808,
-0.03913350775837898,
-0.013535654172301292,
0.005111333914101124,
-0.004319694824516773,
-0.016757121309638023,
-0.018797993659973145,
-0.04396570846438408,
-0.022367233410477638,
-0.030677154660224915,
-0.006708339788019657,
0.03946297615766525,
-0.00708814337849617,
-0.10272087901830673,
0.004905416164547205,
0.04447821527719498,
-0.01857834868133068,
0.020042652264237404,
0.015430096536874771,
0.03228788822889328,
0.03576561063528061,
-0.02119579166173935,
0.0067586749792099,
-0.002988093998283148,
-0.008007909171283245,
0.029963307082653046,
0.0023017018102109432,
0.015311121940612793,
-0.009646098129451275,
-0.008941402658820152,
-0.06333111971616745,
-0.03971922770142555,
-0.009229687042534351,
0.04015851765871048,
0.010021326132118702,
-0.016482563689351082,
0.0113575030118227,
0.0013521926011890173,
-0.020957842469215393,
0.06252575665712357,
-0.04363624006509781,
0.028389181941747665,
0.030823584645986557,
-0.048395223915576935,
-0.05040864273905754,
0.03289191424846649,
0.016162248328328133,
0.000335188175085932,
-0.0012194900773465633,
-0.06248914450407028,
-0.0071384790353477,
0.055680133402347565,
0.031153053045272827,
0.005967036355286837,
0.03752277418971062,
0.05040864273905754,
0.05271492153406143,
-0.0030567331705242395,
-0.029945002868771553,
0.027144523337483406,
-0.026924878358840942,
-0.010158604942262173,
-0.010250123217701912,
-0.08309921622276306,
0.021873030811548233,
-0.04993274435400963,
-0.00043156908941455185,
0.06593025475740433,
-0.020573461428284645,
-0.006708339788019657,
-0.058974817395210266,
0.009774224832654,
-0.04114692285656929,
0.006310232449322939,
0.032580748200416565,
0.02126900665462017,
0.012986540794372559,
-0.03181198984384537,
0.08141526579856873,
-0.017672311514616013,
0.07167764753103256,
0.016391046345233917,
0.078193798661232,
-0.06940797716379166,
0.0035555115900933743,
0.011485629715025425,
0.03371558338403702,
-0.03655267134308815,
0.013773603364825249,
0.01092736329883337,
0.01477115973830223,
0.014524058438837528,
-0.03358745947480202,
-0.0036149988882243633,
0.011366655118763447,
-0.013004844076931477,
0.027345865964889526,
0.060878410935401917,
-0.058974817395210266,
-0.01381021086126566,
-0.022586878389120102,
0.019310500472784042,
-0.04030495136976242,
0.032653965055942535,
0.01608903333544731,
-0.013782755471765995,
-0.02809632010757923,
-0.047150567173957825,
-0.08449030667543411,
0.03792545571923256,
-0.021708296611905098,
-0.014093919657170773,
-0.01262961607426405,
-0.12329433858394623,
0.05395957827568054,
0.024362346157431602,
0.05066489428281784,
0.011622907593846321,
-0.018102450296282768,
0.05751051381230354,
0.00695544108748436,
-0.015539919026196003,
-0.01342583168298006,
-0.021708296611905098,
0.041915684938430786,
-0.022531967610120773,
0.05264170467853546,
0.013572261668741703,
0.04802915081381798,
-0.05564352869987488,
0.00738100428134203,
-0.003933027386665344,
0.033697281032800674,
-0.000733295688405633,
-0.04041477292776108,
-0.008222978562116623,
-0.013370919972658157,
-0.018221424892544746,
0.02888338454067707,
0.027748549357056618,
0.016052424907684326,
-0.00826873816549778,
-0.025643613189458847,
-0.046235378831624985,
0.04370945319533348,
-0.0009231974836438894,
-0.014661337248980999,
-0.006406327243894339,
-0.020445335656404495,
-0.03873082250356674,
0.011476477608084679,
-0.05491137504577637,
-0.01792856492102146,
0.04630859196186066,
0.057071223855018616,
0.012968236580491066,
0.03380710259079933,
-0.041439786553382874,
0.004241903778165579,
-0.030439205467700958,
0.0267784483730793,
0.016720514744520187,
-0.018221424892544746,
0.010826692916452885,
0.01654662750661373,
0.05084793269634247,
0.003425097092986107,
-0.05363010987639427,
0.00595788424834609,
0.05267831310629845,
-0.011037186719477177,
-0.03530801460146904,
0.019969437271356583,
0.0035257679410278797,
0.0057519664987921715,
-0.005088454112410545,
0.013563109561800957,
-0.015558223240077496,
0.0035257679410278797,
-0.029414193704724312,
0.033953532576560974,
0.08185455948114395,
0.04850504919886589,
0.00021506955090444535
]
|
42,183 | werkzeug.exceptions | MethodNotAllowed | *405* `Method Not Allowed`
Raise if the server used a method the resource does not handle. For
example `POST` if the resource is view only. Especially useful for REST.
The first argument for this exception should be a list of allowed methods.
Strictly speaking the response would be invalid if you don't provide valid
methods in the header which you can do with that list.
| class MethodNotAllowed(HTTPException):
"""*405* `Method Not Allowed`
Raise if the server used a method the resource does not handle. For
example `POST` if the resource is view only. Especially useful for REST.
The first argument for this exception should be a list of allowed methods.
Strictly speaking the response would be invalid if you don't provide valid
methods in the header which you can do with that list.
"""
code = 405
description = "The method is not allowed for the requested URL."
def __init__(
self,
valid_methods: t.Iterable[str] | None = None,
description: str | None = None,
response: Response | None = None,
) -> None:
"""Takes an optional list of valid http methods
starting with werkzeug 0.3 the list will be mandatory."""
super().__init__(description=description, response=response)
self.valid_methods = valid_methods
def get_headers(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> list[tuple[str, str]]:
headers = super().get_headers(environ, scope)
if self.valid_methods:
headers.append(("Allow", ", ".join(self.valid_methods)))
return headers
| (valid_methods: 't.Iterable[str] | None' = None, description: str | None = None, response: 'Response | None' = None) -> 'None' | [
0.029556045308709145,
-0.05658402666449547,
-0.0025768596678972244,
-0.0010996381752192974,
-0.02232503704726696,
-0.04963184893131256,
0.01821693405508995,
0.03184245526790619,
0.05279193073511124,
0.014443425461649895,
0.03844144567847252,
0.0012698411010205746,
0.05766217038035393,
-0.029091326519846916,
-0.005251309834420681,
-0.005251309834420681,
0.059595394879579544,
0.042716849595308304,
0.00811397098004818,
-0.11220143735408783,
0.017389735206961632,
-0.01593981683254242,
0.012556672096252441,
0.005883325822651386,
-0.0003674174367915839,
0.06520918756723404,
-0.02726963348686695,
-0.0053210174664855,
0.0546136237680912,
-0.027492698282003403,
-0.007695724721997976,
-0.026600440964102745,
0.0030764311086386442,
0.013681288808584213,
0.031321972608566284,
0.010149434208869934,
-0.01652536168694496,
0.014582840725779533,
-0.055171284824609756,
0.011366995051503181,
-0.06929869949817657,
0.022194916382431984,
-0.029128504917025566,
-0.08959756791591644,
0.04836781695485115,
-0.0025373585522174835,
-0.01469437312334776,
0.09755353629589081,
-0.026600440964102745,
-0.009415180422365665,
-0.007454071659594774,
0.021767375990748405,
0.03697293996810913,
-0.05175096169114113,
-0.00439855270087719,
0.04018878564238548,
0.030634190887212753,
0.05788523703813553,
-0.024574270471930504,
-0.000022945436285226606,
-0.005511551629751921,
0.05082152783870697,
-0.00539072509855032,
-0.04078362509608269,
-0.003689858363941312,
-0.01669265888631344,
-0.024555683135986328,
-0.008425331674516201,
0.022733990103006363,
0.02070781961083412,
0.04193612560629845,
0.0029207507614046335,
-0.041601527482271194,
0.051193300634622574,
0.04070926830172539,
0.00558125926181674,
-0.015410038642585278,
0.01033532153815031,
0.025912659242749214,
-0.005585906561464071,
0.03847862407565117,
-0.04119257628917694,
-0.010093668475747108,
-0.025522295385599136,
0.019090602174401283,
-0.05193684995174408,
-0.03171233460307121,
-0.04569104313850403,
-0.03275330364704132,
0.004040720406919718,
-0.0837978944182396,
-0.055171284824609756,
-0.03851580247282982,
-0.050189509987831116,
0.0073704225942492485,
-0.009038759395480156,
0.021655844524502754,
-0.04137846454977989,
-0.0015033617382869124,
-0.05197402462363243,
0.030429713428020477,
0.07918789237737656,
-0.003013694193214178,
0.01181312371045351,
0.04364628717303276,
0.005237368401139975,
-0.000697076553478837,
-0.02362624742090702,
-0.04230789840221405,
-0.031024552881717682,
0.008448567241430283,
0.034277576953172684,
0.00790020078420639,
-0.021284069865942,
-0.00019329351198393852,
0.012789030559360981,
0.01461072452366352,
-0.016618303954601288,
0.006803466938436031,
-0.029630400240421295,
-0.007021884433925152,
0.027492698282003403,
-0.003095019841566682,
-0.023235883563756943,
0.030355360358953476,
0.061045315116643906,
-0.04141563922166824,
-0.05294064059853554,
0.010530502535402775,
0.001137396553531289,
-0.04349757730960846,
0.03206552192568779,
-0.07056273519992828,
0.05948386341333389,
-0.0328834243118763,
0.03433334454894066,
-0.049111366271972656,
0.010753567330539227,
0.014592135325074196,
0.03338531777262688,
0.00945235788822174,
0.0029951054602861404,
0.016330178827047348,
0.06431692838668823,
-0.03037394769489765,
-0.002259689848870039,
0.006045977119356394,
-0.04952031746506691,
0.02784588374197483,
0.02723245695233345,
0.028292013332247734,
0.02838495559990406,
0.01828199438750744,
-0.03674987331032753,
0.03156362473964691,
0.0057996767573058605,
0.008388154208660126,
-0.04119257628917694,
0.016395239159464836,
-0.034240398555994034,
-0.016822779551148415,
-0.02189749665558338,
0.023607658222317696,
-0.010734979063272476,
0.019685441628098488,
0.02106100507080555,
0.04320015758275986,
-0.021544311195611954,
-0.007286773528903723,
0.048888299614191055,
-0.0365082211792469,
-0.0009346634615212679,
0.02838495559990406,
-0.00018501572776585817,
0.053758542984724045,
0.025150520727038383,
0.019313666969537735,
0.002997429110109806,
0.007481954991817474,
-0.03593197092413902,
0.07799821346998215,
-0.08677208423614502,
-0.04018878564238548,
-0.006831349804997444,
0.03498394787311554,
0.03948241472244263,
-0.03433334454894066,
0.001426683273166418,
-0.045467980206012726,
0.05030104145407677,
0.0017055139178410172,
-0.0011623750906437635,
0.02466721460223198,
0.027027981355786324,
-0.022176329046487808,
-0.015716752037405968,
-0.03275330364704132,
-0.029630400240421295,
0.08327741175889969,
-0.022046206519007683,
-0.015623808838427067,
0.059818461537361145,
0.016069937497377396,
0.005200190935283899,
0.026303021237254143,
0.02777152881026268,
0.011199695989489555,
-0.07338821887969971,
-0.06327596306800842,
-0.015884051099419594,
-0.021618666127324104,
-0.0005399438668973744,
-0.04926007613539696,
-0.017036549746990204,
0.004412494599819183,
-0.019016247242689133,
0.032084107398986816,
-0.04461289942264557,
0.04479878395795822,
-0.01735255867242813,
0.025912659242749214,
0.08647466450929642,
-0.025224875658750534,
0.03524418920278549,
0.045059025287628174,
0.019573908299207687,
0.05676991119980812,
0.00660828547552228,
-0.04342322051525116,
-0.009094525128602982,
-0.0333295539021492,
-0.011004514992237091,
-0.020187336951494217,
0.017649978399276733,
0.0019390345551073551,
0.02182314358651638,
0.03543007746338844,
-0.025522295385599136,
0.012417256832122803,
-0.008913285098969936,
0.029741931706666946,
-0.002078449819236994,
-0.006473517511039972,
0.04186176881194115,
-0.05111894756555557,
-0.006473517511039972,
-0.013439635746181011,
0.04728967323899269,
-0.01612570323050022,
-0.02585689164698124,
0.0010554901091381907,
-0.0240909643471241,
-0.040411848574876785,
-0.07911354303359985,
-0.028626609593629837,
-0.004742444027215242,
-0.054948218166828156,
0.027009392157197,
-0.0007075326866470277,
0.00024136275169439614,
-0.0011443672701716423,
-0.004695972427725792,
0.01791951432824135,
0.028329189866781235,
0.006598991341888905,
0.016581127420067787,
0.0003964622737839818,
0.04595128446817398,
-0.030448302626609802,
0.011896773241460323,
0.07926224917173386,
-0.0017938102828338742,
-0.010669917799532413,
-0.0055580236949026585,
0.020800763741135597,
-0.022845521569252014,
0.02070781961083412,
0.053535476326942444,
-0.043943703174591064,
-0.021116772666573524,
-0.0071612996980547905,
-0.044352658092975616,
-0.00030293784220702946,
0.04082080349326134,
-0.016599716618657112,
0.05346112325787544,
-0.011041692458093166,
0.04807039722800255,
0.003740977495908737,
-0.01850505918264389,
0.05940951034426689,
0.03411027789115906,
0.028589433059096336,
-0.012900562956929207,
-0.016079232096672058,
0.025949835777282715,
-0.04557951167225838,
-0.045059025287628174,
0.040374673902988434,
-0.04621152579784393,
0.005251309834420681,
0.03241870552301407,
0.01752915047109127,
-0.03134056180715561,
-0.00942912232130766,
-0.0973304733633995,
0.06494894623756409,
0.014601429924368858,
-0.017445502802729607,
-0.029091326519846916,
0.020540522411465645,
0.018960481509566307,
-0.04688072204589844,
-0.049074187874794006,
0.027176691219210625,
0.07933660596609116,
0.01033532153815031,
0.02005721628665924,
-0.012157014571130276,
0.03721459209918976,
-0.017938103526830673,
0.05840571969747543,
-0.00634804368019104,
-0.009024817496538162,
-0.02712092362344265,
-0.040523383766412735,
0.05903773382306099,
-0.03775366395711899,
0.010753567330539227,
0.05041257664561272,
-0.004298638552427292,
0.007244948763400316,
-0.03068995662033558,
-0.05097023770213127,
-0.04710378497838974,
-0.010725684463977814,
0.030281005427241325,
-0.012779736891388893,
-0.013086450286209583,
-0.03228858485817909,
-0.036656931042671204,
-0.02531781978905201,
0.03766072168946266,
-0.004347433801740408,
-0.031619392335414886,
-0.013755643740296364,
0.00663616880774498,
0.05398160591721535,
0.0011583088198676705,
-0.01248231716454029,
-0.006134273484349251,
-0.03247447311878204,
-0.008527569472789764,
-0.0166647769510746,
-0.014657195657491684,
-0.04740120470523834,
-0.01889542117714882,
-0.01828199438750744,
-0.025131933391094208,
-0.022733990103006363,
0.06175168603658676,
-0.02286411076784134,
-0.055171284824609756,
0.01260314416140318,
-0.03033677116036415,
-0.04978055879473686,
0.051453541964292526,
-0.055171284824609756,
-0.027251046150922775,
-0.03225140646100044,
0.03715882822871208,
-0.03411027789115906,
-0.007556309457868338,
-0.038181204348802567,
0.026990802958607674,
0.01583757810294628,
0.010344616137444973,
-0.01716667227447033,
-0.006650110241025686,
0.07186394184827805,
0.03959394618868828,
-0.012259252369403839,
-0.01702725701034069,
0.001747338566929102,
0.011515703983604908,
-0.05063563957810402,
0.043943703174591064,
-0.022771166637539864,
0.0020099040120840073,
0.04215918853878975,
-0.01419247779995203,
-0.08037757128477097,
-0.008615866303443909,
0.059929993003606796,
-0.033701326698064804,
-0.03888757526874542,
-0.062346525490283966,
0.0019657558295875788,
0.04550515487790108,
0.032734714448451996,
0.04691789671778679,
0.05186249315738678,
-0.013448930345475674,
0.03232576325535774,
0.03275330364704132,
0.05097023770213127,
0.01166441384702921,
0.01972261816263199,
0.010075079277157784,
-0.03411027789115906,
0.01298421248793602,
0.011171813122928143,
0.0029695460107177496,
0.0012849443592131138,
0.07911354303359985,
0.036340922117233276,
0.007310009095817804,
0.0075470153242349625,
-0.011013809591531754,
-0.006724465172737837,
0.04587693139910698,
-0.013913647271692753,
0.07807257026433945,
-0.0005971622304059565,
-0.001418550731614232,
0.008597277104854584,
-0.04609999433159828,
0.001875135931186378,
0.014936026185750961,
0.03697293996810913,
0.023291651159524918,
0.035151246935129166,
-0.06431692838668823,
-0.033162254840135574,
-0.004122045822441578,
-0.047698624432086945,
-0.058628782629966736,
-0.008313799276947975,
0.004154575988650322,
0.017938103526830673,
-0.011636530980467796,
0.0001498714555054903,
-0.023217296227812767,
0.008355624042451382,
0.0608222521841526,
-0.05450209230184555,
0.018421409651637077,
0.04461289942264557,
0.027567053213715553,
-0.05829418823122978,
0.0074912491254508495,
-0.007816551253199577,
0.0066872877068817616,
0.001627673744224012,
-0.028589433059096336,
0.008913285098969936,
0.004298638552427292,
-0.029909230768680573,
0.005999505519866943,
0.04215918853878975,
0.05070999264717102,
0.03245588392019272,
-0.031935401260852814,
-0.042902737855911255,
-0.030968787148594856,
0.014657195657491684,
0.03702870383858681,
0.019164957106113434,
0.028013182803988457,
0.0025117991026490927,
-0.0028556901961565018,
-0.026674795895814896,
-0.0037014763802289963,
-0.05695579946041107,
-0.0026721267495304346,
0.05223426967859268,
0.04007725417613983,
-0.008866813965141773,
0.005153719335794449,
0.0026651560328900814,
0.017938103526830673,
-0.033738505095243454,
-0.0008115132804960012,
-0.024871690198779106,
-0.027027981355786324,
-0.07673418521881104,
-0.010642034932971,
0.028793908655643463,
0.03437051922082901,
-0.0423450767993927,
0.09138208627700806,
-0.00811861827969551,
-0.02243657037615776,
0.040597736835479736,
-0.00663616880774498,
0.05825700983405113,
-0.07665982842445374,
-0.03639668971300125,
-0.02186032012104988,
-0.019685441628098488,
-0.0008452052716165781,
-0.033162254840135574,
0.03751201182603836,
0.03977983444929123,
0.041601527482271194,
-0.051342010498046875,
0.0037851256784051657,
0.022771166637539864,
0.07260749489068985,
-0.044055238366127014,
-0.036062091588974,
-0.007607428357005119,
0.027288222685456276,
0.028031770139932632,
-0.0008550805505365133,
-0.00030700411298312247,
-0.0667334571480751,
0.05182531848549843,
0.06364773213863373,
0.036879993975162506,
0.03429616615176201,
-0.013039978221058846,
0.04323733225464821,
0.017101610079407692,
-0.016330178827047348,
-0.018077518790960312,
0.00594373932108283,
-0.031507860869169235,
0.04981773719191551,
0.06848079711198807,
0.015679575502872467,
0.08253385871648788,
0.047512736171483994,
-0.013225865550339222,
0.006166803650557995,
0.0539444275200367,
-0.055022574961185455,
-0.03087584301829338,
0.004589087329804897,
0.02546652965247631,
-0.0018123990157619119,
0.045170560479164124,
-0.03743765875697136,
0.009749776683747768,
-0.06011588126420975,
-0.1087067648768425,
-0.022417981177568436,
-0.05795959010720253,
0.04119257628917694,
-0.045467980206012726,
-0.01534497831016779,
0.04130410775542259,
0.0135046960785985,
-0.030095117166638374,
-0.012779736891388893,
0.0006726788706146181,
0.06803467124700546,
0.03451922908425331,
0.016943607479333878,
-0.003415674902498722,
-0.0547623336315155,
-0.04137846454977989,
0.024258263409137726,
-0.039184994995594025,
-0.06993071734905243,
0.026916448026895523,
0.04245660826563835,
0.010958042927086353,
-0.01771503873169422,
-0.0838722512125969,
-0.007760785520076752,
0.03163798153400421,
0.06647321581840515,
-0.0041964007541537285,
0.03944523632526398,
0.06130555644631386,
0.029351569712162018,
0.01143205538392067,
0.03245588392019272,
-0.0011920009274035692,
0.03862733393907547,
-0.02282693237066269,
-0.06747701019048691,
-0.07844434678554535,
-0.02762281894683838,
0.0004411913687363267,
0.014722255989909172,
0.007226360030472279,
-0.03007652796804905,
-0.03433334454894066,
-0.04699225351214409,
-0.02059628814458847,
0.07041402161121368,
-0.0849132165312767,
0.032511647790670395,
0.06866668909788132,
-0.06766289472579956,
-0.02002003788948059,
-0.022696811705827713,
0.06885257363319397,
0.0058879731222987175,
0.006250452715903521,
0.001915798638947308,
-0.042791206389665604,
0.09346402436494827,
0.022771166637539864,
-0.01116251852363348,
-0.024611448869109154,
-0.042754027992486954,
-0.062160637229681015,
0.01918354630470276,
-0.017389735206961632,
-0.02918427065014839,
-0.017445502802729607,
-0.01673913188278675,
-0.016079232096672058,
-0.06394515186548233,
-0.006468870211392641,
0.027585642412304878,
-0.04974338039755821,
-0.018347054719924927,
-0.058517251163721085,
-0.024258263409137726,
0.013486106880009174,
-0.013969413936138153,
0.05193684995174408,
0.015242740511894226,
0.0666591078042984,
-0.10751708596944809,
-0.027455521747469902,
-0.009777660481631756,
0.0037479482125490904,
-0.01593981683254242,
0.013439635746181011,
-0.01238937396556139,
0.026767738163471222,
0.009563890285789967,
-0.040411848574876785,
0.045356445014476776,
0.04844217374920845,
0.046583302319049835,
-0.031043142080307007,
-0.041713058948516846,
0.0017624418251216412,
-0.03689858317375183,
0.05331241339445114,
0.0005713123246096075,
-0.07104603946208954,
0.05420467257499695,
-0.0666591078042984,
-0.023180117830634117,
0.042493786662817,
-0.05472515523433685,
-0.05052410811185837,
-0.029016971588134766,
-0.023756368085741997,
-0.028366368263959885,
-0.036879993975162506,
0.013160805217921734,
-0.0010206361766904593,
0.016004877164959908,
-0.021693021059036255,
0.08112111687660217,
-0.04479878395795822,
0.014898848719894886,
0.026879271492362022,
0.006668698973953724,
-0.04728967323899269,
0.07439200580120087,
0.01652536168694496,
0.03386862576007843,
-0.025875480845570564,
0.013997296802699566,
0.02697221376001835,
-0.0037130943965166807,
0.08208773285150528,
-0.02055910974740982,
-0.039222173392772675,
0.01669265888631344,
0.017649978399276733,
-0.0007772403187118471,
0.025559473782777786,
-0.08573111891746521,
0.02163725532591343,
-0.007124122232198715,
0.014304010197520256,
0.0047912392765283585,
0.02171161025762558,
-0.011850301176309586,
-0.04070926830172539,
-0.02239939197897911,
-0.04119257628917694,
0.008425331674516201,
0.08193901926279068,
-0.047624267637729645,
0.005460432730615139,
0.0002746191166806966,
-0.057216040790081024,
-0.022046206519007683,
0.09324095398187637,
-0.009061994962394238,
-0.013904353603720665,
0.015568042173981667,
0.026247255504131317,
0.005637025460600853,
-0.02535499632358551,
0.010037901811301708,
-0.02362624742090702,
0.026265844702720642,
0.003908275626599789,
-0.024462739005684853,
0.044018059968948364,
0.06595273315906525,
0.001452242722734809,
0.00513048330321908,
0.015484393574297428,
0.03660116344690323,
-0.03907346352934837,
-0.016255823895335197,
-0.015326389111578465,
-0.04148999601602554,
-0.00708694476634264,
0.0478845089673996,
-0.017194554209709167,
-0.01329092588275671,
-0.042716849595308304,
-0.0420476570725441,
-0.026247255504131317,
-0.028793908655643463,
-0.011896773241460323,
0.01828199438750744,
0.03083866648375988,
-0.04465007409453392,
0.028292013332247734,
0.021116772666573524,
-0.04728967323899269,
0.009382650256156921,
0.03656398877501488,
-0.012686792761087418,
0.05591483414173126,
-0.023254472762346268,
-0.01883036084473133,
-0.03455640748143196,
-0.041601527482271194,
0.056175075471401215,
0.007974555715918541,
0.0025443292688578367,
0.01231501903384924,
0.045467980206012726,
0.06145426630973816,
0.028217658400535583,
-0.053870074450969696,
-0.008220856077969074,
0.03401733562350273,
0.05338676646351814,
-0.039333704859018326,
-0.006747700739651918,
0.0027790118474513292,
0.029091326519846916,
-0.023793546482920647,
-0.04981773719191551,
0.05546870455145836,
-0.03234435245394707,
0.026637617498636246,
-0.009480240754783154,
0.03383144736289978,
-0.0051723080687224865,
0.025094754993915558
]
|
42,185 | werkzeug.exceptions | __init__ | Takes an optional list of valid http methods
starting with werkzeug 0.3 the list will be mandatory. | def __init__(
self,
valid_methods: t.Iterable[str] | None = None,
description: str | None = None,
response: Response | None = None,
) -> None:
"""Takes an optional list of valid http methods
starting with werkzeug 0.3 the list will be mandatory."""
super().__init__(description=description, response=response)
self.valid_methods = valid_methods
| (self, valid_methods: 't.Iterable[str] | None' = None, description: 'str | None' = None, response: 'Response | None' = None) -> 'None' | [
0.012039835564792156,
-0.030510444194078445,
0.0387275405228138,
-0.058591485023498535,
-0.04083540663123131,
0.009172782301902771,
0.013852955773472786,
0.02140018157660961,
0.006975601892918348,
0.05459011346101761,
0.04940976947546005,
0.07531148940324783,
0.0010399764869362116,
0.017255906015634537,
-0.0004516054759733379,
-0.022686336189508438,
0.05162481218576431,
0.0260982196778059,
-0.032654035836458206,
-0.08702979236841202,
0.003650803118944168,
0.022668473422527313,
-0.021042916923761368,
0.08495765179395676,
0.002462896518409252,
0.10596483945846558,
-0.0028737515676766634,
-0.013817229308187962,
0.05941319465637207,
-0.01864924095571041,
0.018291974440217018,
0.028259672224521637,
-0.016559239476919174,
0.032153863459825516,
0.0603778101503849,
-0.014245947822928429,
-0.0009266564738936722,
0.016916504129767418,
-0.08695833384990692,
0.053554046899080276,
0.005055301822721958,
0.010253509506583214,
-0.037798650562763214,
-0.04576566442847252,
0.030849846079945564,
0.02663411572575569,
0.0019694240763783455,
0.07652619481086731,
-0.009208508767187595,
-0.03029608353972435,
-0.03751283884048462,
0.006363785360008478,
0.05116036906838417,
-0.018542060628533363,
-0.011137740686535835,
0.06841627508401871,
0.012352442368865013,
0.10567902773618698,
-0.0035659526474773884,
0.023633088916540146,
-0.0579841323196888,
0.0384417288005352,
0.011718296445906162,
-0.02388317510485649,
0.04219301417469978,
0.011200262233614922,
-0.03908480703830719,
-0.012531074695289135,
0.03958497941493988,
0.04587284475564957,
0.06309302151203156,
0.01673787273466587,
-0.08395730704069138,
0.031189247965812683,
0.05119609460234642,
-0.0018309839069843292,
-0.00867261178791523,
0.008092055097222328,
0.005711776670068502,
-0.018810009583830833,
0.03324352204799652,
0.009637227281928062,
-0.017291633412241936,
-0.0061985501088202,
0.0078910943120718,
-0.06209268048405647,
-0.009771201759576797,
-0.05691233649849892,
-0.02016761712729931,
0.05766259506344795,
-0.11804040521383286,
-0.01982821524143219,
-0.030367536470294,
-0.027420099824666977,
-0.009387142024934292,
-0.012986588291823864,
-0.0037267219740897417,
-0.046051476150751114,
-0.004577459767460823,
-0.04719472676515579,
-0.004262619651854038,
0.025812406092882156,
-0.012084493413567543,
0.019578129053115845,
-0.00550188310444355,
-0.02361522614955902,
-0.02170385792851448,
-0.053732678294181824,
-0.041514210402965546,
-0.008641351014375687,
-0.00007410460239043459,
0.03686976432800293,
0.034172412008047104,
0.03109993040561676,
-0.031046340242028236,
0.05880584195256233,
-0.011593254283070564,
-0.05623353272676468,
0.0031997559126466513,
-0.03392232581973076,
0.009592569433152676,
0.014335263520479202,
-0.010664364323019981,
0.007203358691185713,
0.038298822939395905,
0.058091312646865845,
-0.04290754348039627,
-0.017863256856799126,
0.02808104082942009,
-0.000598419108428061,
0.009396073408424854,
0.014674665406346321,
-0.010280304588377476,
0.050946008414030075,
-0.03224318102002144,
-0.024436935782432556,
-0.059734731912612915,
0.026848476380109787,
-0.010450005531311035,
0.016148384660482407,
-0.013022314757108688,
0.025615910068154335,
0.005296455696225166,
0.002652693772688508,
-0.0411926694214344,
0.004173303488641977,
-0.014504964463412762,
-0.04805216193199158,
0.02395462803542614,
0.05298241972923279,
-0.004039329010993242,
-0.012093424797058105,
0.020256932824850082,
-0.007582952734082937,
0.029813775792717934,
-0.020381975919008255,
0.013058041222393513,
-0.04701609164476395,
0.03106420487165451,
-0.032654035836458206,
0.003456540172919631,
-0.047158997505903244,
-0.006363785360008478,
-0.03344001621007919,
0.0172648373991251,
0.013656459748744965,
0.012173810042440891,
-0.06416481733322144,
0.027938134968280792,
0.06562960892915726,
-0.0029608348850160837,
0.010280304588377476,
-0.0037088587414473295,
0.009815859608352184,
0.06709439307451248,
0.026777023449540138,
0.030885571613907814,
-0.014906887896358967,
0.026455484330654144,
-0.043836433440446854,
0.014201289042830467,
-0.01261145994067192,
-0.055411823093891144,
0.014558554627001286,
0.055411823093891144,
0.06441490352153778,
-0.007131905294954777,
0.013397443108260632,
-0.057055242359638214,
0.05269660800695419,
-0.017068341374397278,
0.03815591707825661,
0.03369010239839554,
0.007203358691185713,
-0.014630007557570934,
-0.020792830735445023,
-0.009217441082000732,
0.012441758997738361,
0.03808446601033211,
-0.03958497941493988,
-0.014683597721159458,
0.06466498970985413,
0.027348646894097328,
0.005814490374177694,
0.008498444221913815,
0.05512601137161255,
-0.009226372465491295,
0.015558896586298943,
-0.03009958751499653,
-0.05280378833413124,
0.010423210449516773,
0.001829867367632687,
-0.017282702028751373,
-0.024919243529438972,
-0.02704497054219246,
-0.01187906600534916,
0.03869181498885155,
-0.04144275560975075,
-0.014433511532843113,
-0.015237358398735523,
0.07795525342226028,
0.07531148940324783,
0.00035168288741260767,
-0.014013725332915783,
0.020792830735445023,
0.039942242205142975,
0.06048499047756195,
-0.01117346715182066,
-0.06062789633870125,
0.010450005531311035,
-0.07184602320194244,
-0.02566950023174286,
0.003474403638392687,
0.03542283922433853,
-0.06420054286718369,
-0.02949223853647709,
0.039906516671180725,
0.00846271775662899,
-0.0019493279978632927,
-0.020346250385046005,
0.05512601137161255,
0.009914107620716095,
-0.0004959845100529492,
0.023793859407305717,
-0.013915477320551872,
0.030849846079945564,
-0.035619333386421204,
0.03694121539592743,
-0.02391890063881874,
-0.02811676636338234,
-0.0037490511313080788,
-0.03697694092988968,
-0.028474032878875732,
-0.04780207574367523,
-0.008788722567260265,
0.016827188432216644,
-0.024544116109609604,
-0.028259672224521637,
0.014996204525232315,
-0.057555414736270905,
0.02750941552221775,
0.00802506785839796,
-0.012941929511725903,
0.06980960816144943,
-0.004017000086605549,
0.0002933481882791966,
0.056983791291713715,
0.004854340106248856,
-0.06552242487668991,
-0.007913422770798206,
0.07481132447719574,
-0.02066778764128685,
-0.011512869037687778,
0.011235988698899746,
0.034172412008047104,
0.0026660910807549953,
0.03143933415412903,
-0.03747711330652237,
-0.046587374061346054,
-0.024615569040179253,
0.044229425489902496,
-0.05005284771323204,
0.021453771740198135,
0.03926343843340874,
0.02811676636338234,
0.003172961063683033,
-0.02150736190378666,
0.06798755377531052,
-0.022757789120078087,
-0.05944892019033432,
0.03199309483170509,
0.038298822939395905,
0.02322223410010338,
0.01692543551325798,
0.022150438278913498,
0.006323593202978373,
-0.0314929224550724,
-0.017631035298109055,
0.03179659694433212,
-0.0768120065331459,
-0.03236822038888931,
-0.03690548986196518,
0.02842044271528721,
-0.008266222663223743,
-0.021078644320368767,
-0.09410364180803299,
0.03983506187796593,
0.01699688844382763,
0.017782872542738914,
-0.0000074313938966952264,
0.06495080143213272,
0.05133900046348572,
-0.0770978182554245,
-0.05601917579770088,
-0.003190824296325445,
0.059734731912612915,
-0.01699688844382763,
0.015478512272238731,
-0.02972446009516716,
0.052124984562397,
-0.017890052869915962,
0.013317057862877846,
-0.006292332429438829,
-0.014085178263485432,
0.005028506740927696,
-0.0047337631694972515,
0.07170311361551285,
-0.06888072192668915,
-0.013379579409956932,
0.02399035356938839,
-0.004517171066254377,
0.03944207355380058,
0.016514580696821213,
-0.06502225250005722,
-0.029134972020983696,
0.019256591796875,
-0.01261145994067192,
0.01186120230704546,
-0.011200262233614922,
-0.03179659694433212,
-0.03704839572310448,
-0.02234693430364132,
0.004925793036818504,
-0.007520431187003851,
-0.049874212592840195,
-0.009208508767187595,
0.008346606977283955,
0.016416333615779877,
0.02281137928366661,
-0.05855575576424599,
-0.008587760850787163,
-0.0576983205974102,
0.03854890912771225,
0.01615731604397297,
0.04680173471570015,
-0.04840942844748497,
-0.03109993040561676,
0.0072480165399611,
0.020078301429748535,
-0.04194292798638344,
0.06605832278728485,
-0.01972103677690029,
-0.0662369579076767,
0.01945308782160282,
-0.006354853510856628,
-0.02522291988134384,
0.05766259506344795,
-0.04812361299991608,
-0.003298003925010562,
-0.026544800028204918,
0.046515922993421555,
-0.039334893226623535,
-0.039406344294548035,
-0.05058874562382698,
0.026687705889344215,
-0.011057356372475624,
0.00806079525500536,
0.007913422770798206,
-0.033940188586711884,
0.06005626916885376,
0.002036411315202713,
-0.008739599026739597,
0.05191062390804291,
0.002668323926627636,
-0.020149754360318184,
-0.03240394964814186,
-0.0010182056576013565,
0.02670556865632534,
0.02456197887659073,
0.057055242359638214,
-0.005207139533013105,
-0.054733019322156906,
-0.07302499562501907,
0.022489840164780617,
-0.022293344140052795,
-0.026794886216521263,
0.002295428654178977,
0.03676258400082588,
-0.001213585026562214,
-0.005912737920880318,
0.05559045821428299,
0.0069934651255607605,
0.010628637857735157,
0.025240782648324966,
0.04723045229911804,
0.04883814603090286,
0.052517976611852646,
0.018542060628533363,
0.03199309483170509,
-0.004543966148048639,
0.02281137928366661,
-0.019113685935735703,
0.0006051178206689656,
-0.031689416617155075,
-0.009985560551285744,
0.05058874562382698,
0.005644789431244135,
0.035047709941864014,
0.00018854110385291278,
0.001756181474775076,
0.06259285658597946,
0.00105058285407722,
0.0359051451086998,
0.06019917502999306,
0.021150097250938416,
0.050874557346105576,
0.01261145994067192,
-0.04287181794643402,
0.04129984974861145,
-0.017255906015634537,
-0.004441252443939447,
0.06548669934272766,
-0.12239903956651688,
-0.05462583899497986,
0.016344880685210228,
-0.04583711922168732,
-0.052017804235219955,
-0.05108891427516937,
-0.021525224670767784,
0.0038651623763144016,
-0.058127038180828094,
-0.02815249375998974,
0.017666760832071304,
0.022471977397799492,
0.04783780127763748,
-0.030974887311458588,
-0.014906887896358967,
0.007212290074676275,
0.026777023449540138,
-0.08631525933742523,
0.005872545763850212,
-0.013861887156963348,
0.017702488228678703,
0.017586376518011093,
0.019238727167248726,
0.0027755035553127527,
-0.004845408722758293,
0.013540348969399929,
-0.004626583773642778,
0.010530389845371246,
0.054733019322156906,
-0.00901647936552763,
-0.047087546437978745,
-0.033833008259534836,
-0.049302589148283005,
0.08474329113960266,
-0.014406717382371426,
0.01902436837553978,
0.012084493413567543,
0.033100616186857224,
-0.02082855813205242,
-0.017523854970932007,
0.030403263866901398,
-0.012093424797058105,
-0.012772228568792343,
0.04748053848743439,
0.05130327492952347,
-0.05826994404196739,
-0.04397933930158615,
-0.037155576050281525,
-0.01615731604397297,
0.001627789344638586,
0.004907929804176092,
0.003487800946459174,
-0.029081381857395172,
-0.08602944761514664,
-0.01476398203521967,
0.0028603540267795324,
-0.008248358964920044,
-0.0179525725543499,
0.04344344139099121,
0.021864626556634903,
-0.01304910983890295,
0.0247942004352808,
0.01593402586877346,
0.05005284771323204,
-0.012280989438295364,
-0.009208508767187595,
0.0031260699033737183,
0.014603212475776672,
-0.007489170413464308,
0.0038562307599931955,
0.02854548580944538,
0.03483335301280022,
0.05930601432919502,
-0.046051476150751114,
-0.046587374061346054,
-0.03033181093633175,
-0.03479762375354767,
-0.028331125155091286,
-0.01627342775464058,
-0.013209878467023373,
0.04037095978856087,
0.028527621179819107,
0.005890408996492624,
0.0220432598143816,
-0.05880584195256233,
0.0205963347107172,
0.029081381857395172,
0.054840199649333954,
0.016443127766251564,
0.02449052594602108,
0.05826994404196739,
-0.008038465864956379,
0.004680173471570015,
-0.048230793327093124,
0.021489499136805534,
-0.03622668609023094,
0.051446180790662766,
0.03736993297934532,
0.00489006657153368,
0.0020888845901936293,
-0.021042916923761368,
0.003961177077144384,
-0.02402608096599579,
0.09253167361021042,
-0.036619678139686584,
-0.042050108313560486,
0.032528992742300034,
0.019738899543881416,
0.016746804118156433,
0.04362207278609276,
-0.0275808684527874,
-0.03201095759868622,
-0.05905592814087868,
-0.09853372722864151,
-0.005385771859437227,
-0.02109650708734989,
0.03586941957473755,
-0.011548595502972603,
-0.017711419612169266,
-0.0171219315379858,
-0.032957710325717926,
-0.014906887896358967,
-0.028331125155091286,
-0.024204714223742485,
0.047659169882535934,
-0.007167631760239601,
0.007725858595222235,
0.0103160310536623,
-0.044300876557826996,
-0.019113685935735703,
-0.03912053257226944,
-0.013852955773472786,
-0.020256932824850082,
0.03947779908776283,
0.061378151178359985,
-0.0137904342263937,
-0.018738556653261185,
-0.04555130749940872,
-0.006529020611196756,
0.014647871255874634,
-0.0038249699864536524,
0.0387275405228138,
0.030385401099920273,
0.023936765268445015,
0.026044629514217377,
-0.006368251051753759,
-0.003353826468810439,
-0.04508686065673828,
-0.00005934648652328178,
0.010923381894826889,
-0.05266088247299194,
-0.08195662498474121,
-0.016478855162858963,
-0.017104068771004677,
-0.016076931729912758,
0.011700433678925037,
-0.005479554180055857,
-0.030671212822198868,
-0.015496375970542431,
-0.027223603799939156,
0.0024428004398941994,
-0.034368906170129776,
-0.033940188586711884,
0.02633044123649597,
-0.06934516131877899,
-0.03606591746211052,
-0.036351729184389114,
0.054232850670814514,
-0.020417703315615654,
0.06002054363489151,
-0.015826845541596413,
-0.0317072831094265,
0.053053874522447586,
0.0006815948872826993,
-0.040513865649700165,
0.027830954641103745,
-0.047087546437978745,
0.0038227371405810118,
0.014094109646975994,
-0.003043452510610223,
0.025437278673052788,
0.003994670696556568,
-0.010030219331383705,
-0.025240782648324966,
-0.037691473960876465,
0.03958497941493988,
0.0496598556637764,
-0.054697293788194656,
-0.06695149093866348,
-0.0357622392475605,
0.0018075383268296719,
0.06148533150553703,
-0.0493740439414978,
0.0077481879852712154,
0.0002608314680401236,
0.020542746409773827,
-0.04397933930158615,
0.005434895865619183,
0.05076737701892853,
-0.04037095978856087,
0.015317742712795734,
-0.013156289234757423,
-0.003976807463914156,
0.006211947649717331,
0.031350016593933105,
-0.0036708994302898645,
0.05158908665180206,
0.06420054286718369,
-0.021793173626065254,
-0.03313634172081947,
0.022739926353096962,
-0.03143933415412903,
-0.028706254437565804,
0.035476427525281906,
-0.019310180097818375,
-0.04330053552985191,
0.07063131779432297,
-0.03626241162419319,
-0.019971121102571487,
0.07459696382284164,
-0.03736993297934532,
0.012870476581156254,
-0.017631035298109055,
-0.013835093006491661,
-0.04694464057683945,
0.00681929849088192,
0.03461899235844612,
-0.017336290329694748,
-0.06048499047756195,
-0.027723774313926697,
0.10896586626768112,
-0.019470950588583946,
-0.009226372465491295,
0.049266863614320755,
0.03174300864338875,
-0.0688449963927269,
-0.016791461035609245,
0.04062104597687721,
0.03033181093633175,
0.005734105594456196,
0.026258988305926323,
0.04733763262629509,
0.011825475841760635,
0.04840942844748497,
-0.061378151178359985,
-0.013710049912333488,
0.03808446601033211,
0.031421467661857605,
-0.030010271817445755,
0.027598733082413673,
-0.07048841565847397,
-0.0014926984440535307,
-0.02418684959411621,
0.009038807824254036,
-0.04029950872063637,
0.04748053848743439,
-0.013272400014102459,
-0.04569421336054802,
-0.01335278432816267,
-0.02368667908012867,
0.006171755492687225,
0.028098903596401215,
-0.021525224670767784,
0.007038123439997435,
-0.021721720695495605,
-0.11839766800403595,
0.02036411315202713,
0.03476189821958542,
0.04562275856733322,
0.0075740208849310875,
-0.03704839572310448,
0.061413876712322235,
-0.0019002039916813374,
-0.010432141833007336,
-0.019149411469697952,
-0.020685652270913124,
0.00515801552683115,
-0.014085178263485432,
0.02911710925400257,
0.045336946845054626,
0.05101746320724487,
-0.04719472676515579,
-0.008788722567260265,
0.008793188259005547,
0.09024517238140106,
-0.003427512478083372,
0.019167274236679077,
-0.03636959195137024,
0.02388317510485649,
-0.008873572573065758,
0.018399154767394066,
0.012879408895969391,
0.04469386860728264,
-0.029510101303458214,
-0.055947721004486084,
0.004872203338891268,
0.024579841643571854,
-0.014120904728770256,
-0.0019314646488055587,
-0.02399035356938839,
-0.054268576204776764,
-0.00524286599829793,
-0.01875641942024231,
-0.11318159848451614,
0.018970778211951256,
0.019149411469697952,
0.004066124092787504,
0.024365482851862907,
0.012236331589519978,
-0.06530807167291641,
0.042728912085294724,
-0.007471307180821896,
0.003081411821767688,
0.008815517649054527,
0.012441758997738361,
-0.019846078008413315,
0.04405079036951065,
-0.006470964755862951,
-0.03143933415412903,
-0.03392232581973076,
-0.029599417001008987,
0.057519689202308655,
0.034440360963344574,
-0.034368906170129776,
-0.0007083897944539785,
0.016184110194444656,
-0.020185479894280434,
-0.006301263812929392,
-0.07077422738075256,
0.01757744513452053,
0.02693779207766056,
-0.007654405664652586,
0.04619438201189041,
0.029778050258755684,
0.02868839167058468,
0.013317057862877846
]
|
42,190 | werkzeug.exceptions | get_headers | null | def get_headers(
self,
environ: WSGIEnvironment | None = None,
scope: dict[str, t.Any] | None = None,
) -> list[tuple[str, str]]:
headers = super().get_headers(environ, scope)
if self.valid_methods:
headers.append(("Allow", ", ".join(self.valid_methods)))
return headers
| (self, environ: 'WSGIEnvironment | None' = None, scope: 'dict[str, t.Any] | None' = None) -> 'list[tuple[str, str]]' | [
-0.02792087011039257,
-0.009849714115262032,
-0.03680073842406273,
-0.044168006628751755,
-0.030714737251400948,
-0.0032053834293037653,
0.02921992912888527,
-0.01696784608066082,
0.029184337705373764,
0.024219442158937454,
0.026497244834899902,
-0.04477304592728615,
0.025073617696762085,
-0.007714274805039167,
-0.04203256592154503,
-0.0267997644841671,
0.01980620063841343,
0.030038515105843544,
0.008457229472696781,
-0.08406513184309006,
-0.007505179848521948,
-0.036907512694597244,
-0.036587193608284,
-0.021728096529841423,
-0.01124664768576622,
0.08207205682992935,
-0.002308943774551153,
-0.026906536892056465,
0.07285407185554504,
-0.0025091413408517838,
-0.01618485152721405,
0.0019485884113237262,
0.008523962460458279,
-0.0050672199577093124,
0.05876017361879349,
0.00039483385626226664,
0.0336509644985199,
-0.0037614875473082066,
-0.017412729561328888,
0.010267904959619045,
-0.0614650659263134,
-0.017804225906729698,
0.01454768143594265,
-0.041996974498033524,
-0.013177440501749516,
0.015117131173610687,
0.010730583220720291,
0.10598897933959961,
0.041036028414964676,
-0.01686997152864933,
-0.005267417058348656,
0.08719711005687714,
0.04804738610982895,
-0.05591292306780815,
-0.02163911983370781,
-0.040110670030117035,
0.05431134253740311,
-0.005538796074688435,
-0.027031103149056435,
0.05317244306206703,
0.0025558541528880596,
-0.0036814084742218256,
0.01311515737324953,
-0.09168153256177902,
0.015935717150568962,
-0.040964845567941666,
0.0009559427853673697,
-0.02797425538301468,
0.03078591823577881,
0.033775534480810165,
0.011691531166434288,
-0.02582102082669735,
-0.03164009377360344,
0.03391789644956589,
0.023881331086158752,
-0.023863535374403,
-0.03393569216132164,
0.02687094546854496,
0.0047335573472082615,
-0.07082540541887283,
0.01589122787117958,
0.033045925199985504,
-0.028846226632595062,
-0.00025094192824326456,
0.01278594322502613,
0.011291136033833027,
-0.08555994182825089,
-0.04149870574474335,
0.017688555642962456,
0.01896982081234455,
-0.0758792832493782,
-0.00840829312801361,
0.0005928069003857672,
-0.026532834395766258,
0.04039539396762848,
0.035270340740680695,
-0.009387035854160786,
0.007638644892722368,
-0.007256045006215572,
-0.016887767240405083,
-0.04395446181297302,
0.07018477469682693,
-0.019058797508478165,
0.01921895518898964,
-0.013640119694173336,
-0.012403343804180622,
-0.024664325639605522,
-0.023418651893734932,
-0.0024223891086876392,
0.04701525717973709,
-0.0004020631895400584,
-0.023507628589868546,
0.051357317715883255,
-0.0418546125292778,
0.06530885398387909,
-0.024005897343158722,
-0.002978492993861437,
-0.009351445361971855,
0.001596018555574119,
-0.011335624381899834,
0.01758178509771824,
0.02542952448129654,
0.03754814341664314,
0.006642106454819441,
0.014520987868309021,
0.04035980626940727,
-0.02530495636165142,
-0.02195943519473076,
0.038544680923223495,
0.00004299378997529857,
-0.07246257364749908,
0.029148748144507408,
-0.0503251887857914,
-0.0029006386175751686,
-0.0251625943928957,
-0.028917409479618073,
0.005187338218092918,
0.03929208591580391,
0.03929208591580391,
0.039256494492292404,
0.029380086809396744,
-0.00228669960051775,
0.033241674304008484,
-0.018382573500275612,
-0.034291598945856094,
0.016095874831080437,
0.05673150718212128,
-0.0021910497453063726,
0.04032421484589577,
-0.00009210472489940003,
0.02954024448990822,
0.02334747090935707,
-0.009369240142405033,
0.004586745984852314,
-0.01640729233622551,
0.0179910771548748,
-0.057443320751190186,
-0.01726146787405014,
0.03470088914036751,
-0.01036577858030796,
-0.0349678210914135,
-0.04092925414443016,
-0.04431036859750748,
-0.003754814388230443,
0.0824279636144638,
0.009894202463328838,
0.0307325329631567,
-0.014200672507286072,
0.017279263585805893,
-0.014627760276198387,
-0.003926094155758619,
-0.006953524425625801,
0.057443320751190186,
0.02445078082382679,
0.09502705186605453,
-0.009787430986762047,
-0.01740383170545101,
0.05217590183019638,
-0.021016282960772514,
-0.017297059297561646,
0.06107356771826744,
-0.06683925539255142,
-0.028134414926171303,
0.0359821543097496,
0.04505776986479759,
0.021817073225975037,
0.026906536892056465,
-0.03596435859799385,
-0.049862511456012726,
0.04790502414107323,
-0.007918921299278736,
0.010125542059540749,
0.028027642518281937,
0.01936131715774536,
-0.029504654929041862,
0.0007373939151875675,
0.019930768758058548,
0.0023423100356012583,
-0.024824483320116997,
-0.044096823781728745,
-0.02936229109764099,
-0.001003211596980691,
-0.03957680985331535,
0.010312392376363277,
0.024344008415937424,
0.05598410218954086,
-0.006642106454819441,
-0.07285407185554504,
-0.026568425819277763,
0.030358830466866493,
-0.01647847332060337,
-0.021852662786841393,
-0.05680269002914429,
-0.05178440734744072,
-0.0398971252143383,
-0.0017784206429496408,
0.014165081083774567,
-0.009992077015340328,
0.05509433522820473,
-0.014432011172175407,
0.06644775718450546,
-0.0008041263790801167,
-0.011949563398957253,
-0.027155671268701553,
0.06655453145503998,
0.019788404926657677,
0.0074918330647051334,
-0.012572399340569973,
-0.07936716824769974,
0.00794561393558979,
-0.021354394033551216,
0.03480766341090202,
-0.047371163964271545,
0.0025180389638990164,
-0.018026668578386307,
0.03900735825300217,
0.030501192435622215,
-0.004012846387922764,
-0.004555603954941034,
0.00521403132006526,
0.01811564341187477,
0.05591292306780815,
0.03637365251779556,
0.057443320751190186,
-0.012857125140726566,
-0.04000389948487282,
-0.009253570809960365,
0.06822729110717773,
-0.005009384825825691,
0.0011778282932937145,
-0.05562819540500641,
0.025803226977586746,
-0.06328018754720688,
-0.04267319664359093,
-0.05836867541074753,
0.007442896254360676,
-0.03258324787020683,
0.017003435641527176,
0.016638632863759995,
-0.04733557254076004,
0.016522962599992752,
-0.0055343471467494965,
0.01258129719644785,
-0.01444980688393116,
0.011602554470300674,
0.08015015721321106,
0.062283650040626526,
0.03811759501695633,
-0.0829974114894867,
0.06456144899129868,
-0.0012234288733452559,
-0.023774558678269386,
-0.054702840745449066,
-0.00892435759305954,
0.03811759501695633,
0.028081027790904045,
0.02667519822716713,
0.015188313089311123,
-0.05039637163281441,
0.02300935983657837,
0.010214518755674362,
-0.02361440099775791,
-0.0020620336290448904,
0.02026887983083725,
-0.02254668064415455,
0.015455243177711964,
-0.034291598945856094,
0.01752839796245098,
-0.022831406444311142,
-0.04473745450377464,
-0.01760847680270672,
0.04413241520524025,
0.007549668196588755,
-0.045413676649332047,
0.0804348811507225,
-0.013248622417449951,
0.01503705233335495,
-0.026977717876434326,
0.04552045091986656,
0.0010938566410914063,
-0.007055847905576229,
0.04537808895111084,
-0.009974281303584576,
-0.06957973539829254,
0.003739243373274803,
-0.06456144899129868,
0.026532834395766258,
0.03669396787881851,
-0.026176927611231804,
-0.028401345014572144,
-0.012501218356192112,
0.060504116117954254,
-0.02562527358531952,
-0.06299546360969543,
0.05093022808432579,
0.00603261636570096,
-0.02608795091509819,
0.0621056966483593,
-0.02955804020166397,
0.04804738610982895,
-0.0379396416246891,
0.009387035854160786,
0.0022455479484051466,
-0.03616010770201683,
0.012358855456113815,
0.0047869435511529446,
0.04957778379321098,
-0.03019867278635502,
-0.030323239043354988,
0.06829847395420074,
-0.015339572913944721,
0.019841792061924934,
-0.020518014207482338,
0.013177440501749516,
0.013346496038138866,
0.030679145827889442,
0.02288479171693325,
0.010988615453243256,
-0.01579335331916809,
-0.026176927611231804,
-0.09773194044828415,
-0.040964845567941666,
0.02268904447555542,
0.003454518038779497,
-0.07285407185554504,
-0.05224708467721939,
-0.009787430986762047,
0.08755301684141159,
0.008639631792902946,
0.010205620899796486,
-0.00018782413098961115,
0.005165094044059515,
0.05434693396091461,
0.029771585017442703,
0.038544680923223495,
-0.06587830930948257,
-0.05107259377837181,
0.0034478448797017336,
-0.0007601942052133381,
0.06224805861711502,
0.08847837150096893,
0.008394946344196796,
-0.02921992912888527,
0.0073717148043215275,
0.012385549023747444,
-0.031871434301137924,
0.06118033826351166,
-0.03836672753095627,
0.01591792143881321,
-0.06975768506526947,
-0.015188313089311123,
-0.009787430986762047,
-0.0029006386175751686,
-0.08997318148612976,
-0.01726146787405014,
0.019396908581256866,
0.05327921360731125,
0.004526686854660511,
-0.02398810349404812,
0.01745721697807312,
0.0287750456482172,
0.0020598091650754213,
0.004119618330150843,
0.009894202463328838,
-0.04797620698809624,
0.005472063552588224,
0.08406513184309006,
-0.025251571089029312,
0.014779020100831985,
0.06915264576673508,
0.03772609680891037,
-0.1242113932967186,
-0.04423918575048447,
0.08007897436618805,
-0.06224805861711502,
-0.031871434301137924,
-0.07488273829221725,
0.00010739758727140725,
0.04982692003250122,
-0.009965384379029274,
0.03872263431549072,
-0.005734544713050127,
-0.03509238734841347,
0.021621324121952057,
0.020838329568505287,
-0.013346496038138866,
0.029718197882175446,
0.017786430194973946,
0.03996830806136131,
-0.02804543823003769,
-0.01679879054427147,
-0.026639606803655624,
0.026194723322987556,
0.008541757240891457,
0.040110670030117035,
0.03439836949110031,
0.010766173712909222,
-0.02060699090361595,
8.906353059501271e-7,
-0.000828038901090622,
0.002326739253476262,
-0.0745268389582634,
-0.014698941260576248,
0.04132075235247612,
0.005716749466955662,
0.018382573500275612,
-0.030892690643668175,
-0.0069668712094426155,
0.01743052341043949,
-0.03373994305729866,
0.05644678324460983,
0.10299935936927795,
-0.05078786611557007,
-0.04858124628663063,
-0.002223303774371743,
0.005107259377837181,
-0.006762224715203047,
-0.010347983799874783,
0.028330162167549133,
0.03550168126821518,
-0.04922187700867653,
0.02640826813876629,
-0.05523670092225075,
0.02112305536866188,
0.022386522963643074,
0.012127515859901905,
-0.017172491177916527,
0.046979665756225586,
-0.014191774651408195,
-0.053385984152555466,
-0.00329213566146791,
0.006713287439197302,
-0.014520987868309021,
-0.02589220367372036,
-0.020108720287680626,
0.03445175662636757,
0.023525424301624298,
-0.01719028688967228,
-0.043456193059682846,
-0.026639606803655624,
0.10299935936927795,
0.04438154771924019,
-0.02667519822716713,
-0.0169945377856493,
-0.027956461533904076,
0.018863048404455185,
0.012243186123669147,
-0.03190702199935913,
0.009120105765759945,
0.003848239779472351,
0.012421139515936375,
-0.014102797955274582,
-0.048225339502096176,
-0.04733557254076004,
-0.02687094546854496,
0.04779825359582901,
0.04349178448319435,
0.04132075235247612,
-0.03158670663833618,
-0.02039344608783722,
-0.020553603768348694,
0.0032854625023901463,
-0.023756762966513634,
-0.031088437885046005,
0.012243186123669147,
-0.028223391622304916,
0.010712787508964539,
-0.012083028443157673,
-0.007171517238020897,
-0.022938178852200508,
0.07758763432502747,
-0.0031008359510451555,
-0.05160645395517349,
0.04406123235821724,
0.02071376144886017,
0.06975768506526947,
0.014921383000910282,
-0.025073617696762085,
-0.00518288929015398,
0.014191774651408195,
0.017466114833950996,
-0.04270878806710243,
0.0015415203524753451,
0.04352737218141556,
-0.004915959667414427,
-0.030234262347221375,
-0.008394946344196796,
-0.03178245574235916,
-0.0379396416246891,
-0.04100043699145317,
0.007313880138099194,
0.0333484448492527,
-0.03386450931429863,
0.019076591357588768,
-0.003298809053376317,
0.0019708327017724514,
-0.06424113363027573,
0.029735993593931198,
-0.006108246278017759,
0.034825459122657776,
0.006419664714485407,
0.020642580464482307,
0.0614650659263134,
0.0034456204157322645,
-0.0022822509054094553,
0.025002436712384224,
-0.03126639127731323,
-0.016318315640091896,
0.026497244834899902,
0.007740967907011509,
0.0031964858062565327,
0.025002436712384224,
-0.0067933667451143265,
-0.019717223942279816,
0.0032565451692789793,
0.08484812825918198,
-0.023258494213223457,
-0.015570912510156631,
-0.024895664304494858,
0.020090926438570023,
0.02623031474649906,
-0.032654426991939545,
-0.03060796484351158,
0.0019018757157027721,
-0.042530834674835205,
-0.03993271663784981,
0.003096387255936861,
-0.06118033826351166,
-0.020411241799592972,
-0.041036028414964676,
-0.04505776986479759,
-0.01877407170832157,
-0.019895177334547043,
-0.018106747418642044,
-0.021728096529841423,
-0.05630441755056381,
0.04633903503417969,
-0.028258981183171272,
-0.027280239388346672,
0.015321778133511543,
0.028205595910549164,
-0.060895614326000214,
-0.06374286860227585,
0.023632196709513664,
-0.10677196830511093,
-0.0168432779610157,
0.0026781968772411346,
0.09132562577724457,
0.0016694242367520928,
-0.01281263679265976,
-0.013035078532993793,
0.0327078141272068,
-0.011789404787123203,
0.02921992912888527,
0.025073617696762085,
0.025447320193052292,
0.012269878759980202,
0.013284212909638882,
0.00603261636570096,
-0.021140851080417633,
0.061820972710847855,
-0.04028862342238426,
-0.03190702199935913,
-0.06965091824531555,
-0.04605431109666824,
-0.02039344608783722,
-0.028258981183171272,
0.02936229109764099,
0.03375773876905441,
0.0064508067443966866,
-0.04687289521098137,
0.01777753233909607,
0.0673731118440628,
-0.06701720505952835,
-0.008092425763607025,
-0.008025692775845528,
-0.04235288128256798,
-0.01196735817939043,
-0.08470576256513596,
0.028223391622304916,
0.044025640934705734,
0.0058190724812448025,
0.0336865559220314,
0.04366973415017128,
0.04423918575048447,
-0.03712105378508568,
-0.03786845877766609,
-0.003912747837603092,
-0.01941470243036747,
-0.028614887967705727,
-0.03623128682374954,
-0.004379875026643276,
0.005058322101831436,
-0.03391789644956589,
-0.005267417058348656,
0.03797522932291031,
-0.04630344361066818,
-0.005712300539016724,
0.05068109557032585,
-0.02589220367372036,
-0.0004510003491304815,
-0.05327921360731125,
-0.015775559470057487,
0.02576763555407524,
0.026301495730876923,
-0.022653453052043915,
0.03438057377934456,
0.02217298001050949,
-0.022706838324666023,
-0.0008308194228447974,
0.0209273062646389,
0.011086490005254745,
0.017759738489985466,
0.0024424088187515736,
0.0026114643551409245,
0.08534639328718185,
-0.0307325329631567,
0.007620849180966616,
0.031017256900668144,
-0.005071668419986963,
0.03183584287762642,
-0.05153527110815048,
0.0267997644841671,
0.013097361661493778,
-0.0339890755712986,
0.0627463310956955,
-0.06000584736466408,
0.010312392376363277,
0.05039637163281441,
-0.09452878683805466,
-0.015473037958145142,
0.010454755276441574,
-0.00903557799756527,
-0.001521500525996089,
-0.01987738162279129,
0.005979230161756277,
-0.09573886543512344,
0.022084003314375877,
0.03354419395327568,
-0.05068109557032585,
0.022439908236265182,
-0.00012804294237866998,
0.08548875898122787,
-0.0089955385774374,
0.006037065293639898,
-0.0012456730473786592,
-0.020055335015058517,
-0.0418546125292778,
0.021425575017929077,
0.007941165007650852,
0.033045925199985504,
0.010668299160897732,
-0.01311515737324953,
0.04680171236395836,
-0.03509238734841347,
0.06694602221250534,
0.0205891951918602,
-0.02190604992210865,
0.02183486707508564,
0.034344982355833054,
-0.00017823133384808898,
-0.0175017062574625,
-0.01019672304391861,
-0.0052496218122541904,
0.0379396416246891,
-0.014129490591585636,
-0.004199697636067867,
0.006326239090412855,
-0.007407305296510458,
0.01975281536579132,
0.014191774651408195,
-0.06765783578157425,
0.04203256592154503,
0.06573594361543655,
0.03178245574235916,
0.008604041300714016,
0.002954024588689208,
-0.033579785376787186,
-0.040573347359895706,
0.06637657433748245,
-0.004653478506952524,
-0.007958960719406605,
0.007340572774410248,
-0.007941165007650852,
0.022208569571375847,
-0.0424952432513237,
0.06427672505378723,
0.01216310728341341,
-0.035003412514925,
0.016611939296126366,
-0.017644068226218224,
-0.006433011032640934,
0.026052361354231834,
-0.0002487175224814564,
0.023845739662647247,
-0.018934229388833046,
0.06854760646820068,
-0.02738700993359089,
0.04616108164191246,
0.008835380896925926,
0.011736019514501095,
0.022208569571375847,
-0.005165094044059515,
0.02398810349404812,
0.0029562488198280334,
0.004366528708487749,
-0.0379040502011776,
0.014165081083774567,
-0.0712880864739418,
-0.008434985764324665,
0.03258324787020683,
0.008132465183734894,
-0.05256740003824234,
0.034754276275634766,
0.030376626178622246,
-0.02902418002486229,
-0.03503900021314621,
0.06623421609401703,
-0.042993512004613876,
0.06940177828073502,
0.01398712769150734,
0.002274465514346957,
0.014663350768387318,
0.0029606977477669716,
0.0019497006433084607,
-0.03124859742820263,
0.018453756347298622,
-0.037299007177352905,
0.061820972710847855,
0.03954121842980385,
-0.009938690811395645,
-0.022279750555753708,
0.03295694664120674,
-0.07509628683328629,
0.026532834395766258,
-0.024344008415937424,
-0.059721123427152634,
0.002813886385411024,
0.0061126952059566975,
0.014396420679986477,
-0.02491346001625061,
0.009760737419128418,
-0.035466089844703674,
0.06000584736466408,
0.04267319664359093,
0.010259007103741169,
0.06121592968702316,
0.02393471635878086
]
|
42,192 | builtins | method | method(function, instance)
Create a bound instance method object. | from builtins import method
| null | [
0.024731356650590897,
-0.04695615544915199,
0.043012507259845734,
0.025750689208507538,
-0.01761273667216301,
-0.015549005009233952,
0.02260913886129856,
0.03599414974451065,
0.011638776399195194,
0.011563580483198166,
-0.015448742546141148,
0.03208392113447189,
0.04060621187090874,
0.01960127055644989,
-0.08475502580404282,
-0.010201684199273586,
0.03646203875541687,
0.09197390824556351,
-0.045485641807317734,
-0.029627496376633644,
-0.04063963517546654,
0.026987256482243538,
0.04862719401717186,
-0.006972404196858406,
0.028457770124077797,
0.13969874382019043,
0.027003968134522438,
-0.02210782654583454,
0.03200037032365799,
-0.043313294649124146,
-0.033637985587120056,
-0.02063731476664543,
0.003448603907600045,
0.016785573214292526,
0.021506253629922867,
-0.033621277660131454,
0.023478077724575996,
0.04394828900694847,
-0.06105971336364746,
-0.029460392892360687,
0.009316034615039825,
0.002374962205067277,
0.03893517702817917,
-0.034156009554862976,
-0.007523846812546253,
-0.031415507197380066,
0.0006511824321933091,
0.00534314289689064,
0.019400745630264282,
-0.04371434450149536,
-0.01300902757793665,
-0.03133195638656616,
0.07807087898254395,
-0.019701533019542694,
-0.0073191444389522076,
0.06072550639510155,
0.028892239555716515,
0.04909508302807808,
-0.03950332850217819,
0.08836446702480316,
-0.0323011577129364,
0.013827836140990257,
-0.023728733882308006,
-0.041074104607105255,
0.04732378572225571,
0.020286396145820618,
-0.05658133327960968,
0.0022183023393154144,
-0.006813655607402325,
0.03168287128210068,
-0.015181376598775387,
0.01665188930928707,
-0.004499268718063831,
0.013401721604168415,
0.04037226736545563,
-0.0235282089561224,
-0.08241557329893112,
-0.012925475835800171,
0.046755630522966385,
-0.04294566437602043,
-0.006111819762736559,
-0.024246755987405777,
-0.007590688299387693,
0.008672685362398624,
-0.05160164088010788,
-0.03452363610267639,
-0.03181655704975128,
-0.040272004902362823,
-0.03940306603908539,
-0.024731356650590897,
-0.08268293738365173,
-0.0060533336363732815,
-0.04795878008008003,
0.018481675535440445,
-0.011321279220283031,
-0.008083644323050976,
0.020186133682727814,
-0.033905353397130966,
0.0016407499788329005,
-0.04160883650183678,
0.02907605469226837,
0.01958456076681614,
0.02160651609301567,
-0.06871306896209717,
0.010978717356920242,
0.04892798140645027,
0.012290481477975845,
-0.0032355464063584805,
-0.043079350143671036,
0.031064588576555252,
-0.02874184586107731,
0.03893517702817917,
-0.019283773377537727,
-0.018498385325074196,
-0.00954998005181551,
-0.023411236703395844,
-0.0029514702036976814,
-0.02332768402993679,
0.0015540649183094501,
0.02578411065042019,
0.0060282680206000805,
0.03629493713378906,
-0.006115997675806284,
-0.019484298303723335,
0.0671088695526123,
0.021456122398376465,
-0.013669087551534176,
0.0029848909471184015,
0.04294566437602043,
-0.02334439568221569,
-0.016451364383101463,
0.020236264914274216,
-0.04348039627075195,
0.042578037828207016,
-0.022391904145479202,
0.015507228672504425,
-0.010936941020190716,
0.05039849504828453,
0.004171327687799931,
0.04351381957530975,
0.0013034093426540494,
0.0019310928182676435,
0.04408197104930878,
0.00030157004948705435,
-0.03886833414435387,
-0.009516558609902859,
-0.009942674078047276,
0.03539257496595383,
-0.0005308155086822808,
0.016008539125323296,
-0.021238887682557106,
0.018799172714352608,
0.05230347812175751,
0.005125907715409994,
0.026452524587512016,
0.037330981343984604,
0.026719890534877777,
-0.016476429998874664,
-0.009750504046678543,
-0.07787035405635834,
0.005999024957418442,
0.02180704101920128,
-0.06259706616401672,
-0.021255597472190857,
0.030128806829452515,
0.016810638830065727,
0.0161505788564682,
-0.03813307732343674,
0.007741081528365612,
0.027672382071614265,
-0.04294566437602043,
-0.03997121751308441,
-0.00551860174164176,
0.022943345829844475,
0.06904727220535278,
0.03370482847094536,
-0.034323111176490784,
0.0869607925415039,
0.012106667272746563,
0.015473808161914349,
0.006579710636287928,
-0.04100726172327995,
-0.09464757144451141,
-0.00738180847838521,
0.03295285999774933,
0.06520389020442963,
0.042076725512742996,
-0.027655672281980515,
-0.009382875636219978,
-0.02782277576625347,
-0.02030310593545437,
0.00483765359967947,
0.034590478986501694,
0.02184046059846878,
-0.006496158428490162,
-0.07078514993190765,
-0.08341819792985916,
0.02531621977686882,
-0.002521177986636758,
0.02284308336675167,
0.01090352050960064,
0.045485641807317734,
0.017729708924889565,
0.06667439639568329,
0.02133915014564991,
0.038099657744169235,
-0.009758859872817993,
0.021907303482294083,
-0.04013832286000252,
-0.03676282614469528,
0.06550467014312744,
-0.03646203875541687,
0.02055376209318638,
0.023879127576947212,
-0.01711142435669899,
0.005059066228568554,
0.07840508222579956,
-0.031164851039648056,
-0.0010292547522112727,
0.03542599827051163,
0.05377398803830147,
0.05591291934251785,
-0.031131429597735405,
0.0005415205960161984,
0.0422104075551033,
-0.01688583567738533,
-0.021021652966737747,
0.009742149151861668,
-0.01614222303032875,
-0.06607282906770706,
0.05798500403761864,
-0.010619443841278553,
-0.017796549946069717,
-0.008137953467667103,
-0.04047252982854843,
-0.024748066440224648,
0.031064588576555252,
0.06891358643770218,
-0.02033652737736702,
0.02653607726097107,
0.019183510914444923,
0.05735000967979431,
0.002059553749859333,
0.07172093540430069,
-0.002381228609010577,
-0.011020492762327194,
0.02230835147202015,
0.036127831786870956,
-0.015816370025277138,
-0.010636154562234879,
0.02504885382950306,
-0.06587230414152145,
-0.013393365778028965,
-0.03579362481832504,
0.007607398554682732,
-0.012323901988565922,
0.0018339637899771333,
0.026135027408599854,
0.015239862725138664,
-0.001797409844584763,
-0.016518207266926765,
-0.026419105008244514,
0.012399098835885525,
0.00018838337564375252,
-0.03049643523991108,
-0.00402511190623045,
-0.019501008093357086,
0.04394828900694847,
0.000642827246338129,
-0.004121196456253529,
0.09658597409725189,
-0.04835982620716095,
-0.003185415407642722,
0.024413859471678734,
-0.054241880774497986,
0.029477102681994438,
-0.041074104607105255,
0.017930233851075172,
0.009800635278224945,
-0.060692086815834045,
0.03946990892291069,
0.011605355888605118,
-0.03047972545027733,
-0.00307470909319818,
-0.08214820921421051,
0.0223250612616539,
0.02805672027170658,
0.012357322499155998,
0.007064311299473047,
0.004127462860196829,
0.0643349438905716,
0.006182839162647724,
0.029694337397813797,
0.021924013271927834,
0.09337758272886276,
0.06259706616401672,
-0.04013832286000252,
-0.033871930092573166,
0.0470898374915123,
-0.030162228271365166,
-0.013368301093578339,
-0.04047252982854843,
-0.060424719005823135,
0.011839301325380802,
-0.010452340357005596,
-0.04287882521748543,
0.06627335399389267,
0.014746906235814095,
-0.05481003224849701,
0.000704968988429755,
-0.008192261680960655,
0.008655974641442299,
-0.07018357515335083,
-0.06627335399389267,
0.03923596069216728,
0.027338175103068352,
-0.03445679321885109,
0.035125210881233215,
-0.007853876799345016,
0.06146076321601868,
-0.04665536805987358,
0.034323111176490784,
0.021639937534928322,
0.05083296447992325,
-0.01633439213037491,
-0.01641794480383396,
-0.006654907017946243,
-0.0006370830815285444,
0.009733794257044792,
0.028207113966345787,
-0.06232970207929611,
0.050532177090644836,
0.06801123172044754,
0.02578411065042019,
-0.021255597472190857,
0.05029823258519173,
0.01915009133517742,
0.010176618583500385,
-0.020470211282372475,
0.01227377075701952,
-0.0006872141966596246,
0.02209111675620079,
0.0013535404577851295,
-0.0032063033431768417,
-0.010393854230642319,
-0.00016997585771605372,
-0.03442337363958359,
0.04013832286000252,
0.1042059063911438,
-0.05564555153250694,
0.029142895713448524,
-0.06513704359531403,
-0.02956065535545349,
-0.0010543202515691519,
0.02501543238759041,
0.009015248157083988,
-0.016008539125323296,
-0.015231507830321789,
-0.019233642145991325,
-0.027672382071614265,
0.05587949603796005,
-0.05584607645869255,
-0.01536519080400467,
0.010945295915007591,
0.004670550115406513,
-0.024463990703225136,
0.0011571935610845685,
0.012708241119980812,
0.01786339096724987,
-0.03990437835454941,
-0.00944136269390583,
-0.062129177153110504,
-0.05882052332162857,
-0.03126511350274086,
-0.054175037890672684,
0.022458745166659355,
0.050231389701366425,
0.021289018914103508,
-0.0470564179122448,
0.056915540248155594,
0.06346600502729416,
0.0035781092010438442,
-0.00004455012458493002,
-0.0136356670409441,
0.025516744703054428,
-0.023862415924668312,
-0.0036533058155328035,
0.046521686017513275,
-0.006646552123129368,
0.030128806829452515,
-0.02956065535545349,
-0.022675979882478714,
-0.04742404818534851,
-0.011530159041285515,
-0.015799660235643387,
-0.019016407430171967,
-0.03502494841814041,
-0.04842666909098625,
-0.02137257158756256,
0.038066234439611435,
0.05678185820579529,
0.06186181306838989,
0.021405991166830063,
0.06132707744836807,
0.013994939625263214,
0.004018845502287149,
0.05524450168013573,
-0.00905702356249094,
0.021506253629922867,
-0.07539721578359604,
0.01739550195634365,
-0.015766238793730736,
-0.0819476842880249,
-0.05237031728029251,
0.03076380118727684,
-0.009098799899220467,
0.03870122879743576,
-0.044817227870225906,
0.01314271055161953,
-0.004411539062857628,
0.02157309465110302,
-0.01956785097718239,
-0.0036700163036584854,
0.040539372712373734,
-0.019985608756542206,
-0.030078675597906113,
-0.010268526151776314,
0.00020613815286196768,
-0.01690254546701908,
0.03626151382923126,
-0.023260843008756638,
0.02927657775580883,
-0.03592730686068535,
-0.028624873608350754,
0.028624873608350754,
-0.05230347812175751,
-0.06333232671022415,
-0.014061781577765942,
0.05230347812175751,
0.014295726083219051,
-0.023377815261483192,
0.044549863785505295,
-0.014061781577765942,
-0.05477661266922951,
0.01766286790370941,
-0.0446167029440403,
-0.0007973982719704509,
0.06473599374294281,
0.01584143564105034,
-0.04936245083808899,
0.003331631189212203,
0.006888852454721928,
0.034089166671037674,
0.009775569662451744,
0.02753870002925396,
-0.008647619746625423,
-0.02285979501903057,
0.03375495970249176,
0.036796245723962784,
0.0015237773768603802,
-0.01908324845135212,
0.01500591728836298,
-0.06734281778335571,
-0.028591452166438103,
-0.03876807168126106,
0.0917065441608429,
-0.021539675071835518,
0.028591452166438103,
0.011404831893742085,
-0.00288045103661716,
0.04317961260676384,
-0.014604868367314339,
-0.031198272481560707,
-0.02031981758773327,
0.011354700662195683,
0.08147979527711868,
-0.024915169924497604,
-0.01712813600897789,
-0.00563975190743804,
-0.040071479976177216,
-0.03692993149161339,
-0.03592730686068535,
0.0007817322621122003,
0.008831433951854706,
-0.045051172375679016,
-0.004382295999675989,
0.008906629867851734,
0.0017765217926353216,
0.027872906997799873,
-0.069448322057724,
0.02110520377755165,
0.10367117077112198,
0.009132220409810543,
0.003768189810216427,
0.023678602650761604,
0.05240373685956001,
-0.03913570195436478,
0.015816370025277138,
-0.02057047188282013,
-0.021974144503474236,
0.016183998435735703,
0.024998722597956657,
-0.00582774356007576,
0.0421435683965683,
0.02854132279753685,
0.0322176031768322,
0.044015128165483475,
0.0028219646774232388,
-0.018698910251259804,
-0.016818992793560028,
0.03569336235523224,
0.023444658145308495,
-0.028875529766082764,
0.0030559098813682795,
0.05681527778506279,
-0.026469236239790916,
-0.05364030599594116,
0.010719706304371357,
-0.05972288176417351,
0.011571935378015041,
0.022542297840118408,
-0.06176155060529709,
-0.027003968134522438,
-0.06991621106863022,
-0.023127160966396332,
-0.0397372730076313,
-0.029944993555545807,
0.034857843071222305,
-0.0019478031899780035,
0.030429594218730927,
0.04638800397515297,
0.025516744703054428,
-0.006663262378424406,
-0.02133915014564991,
-0.011588646098971367,
0.11784157156944275,
-0.05547844618558884,
-0.021472832188010216,
0.03769860789179802,
0.03946990892291069,
-0.012198573909699917,
-0.00048381759552285075,
-0.031198272481560707,
0.04571959003806114,
-0.00794160645455122,
-0.042310670018196106,
-0.06349942833185196,
-0.04889455810189247,
0.007787035312503576,
-0.0063165221363306046,
-0.029426971450448036,
0.01401165034621954,
-0.03525889292359352,
0.018982987850904465,
0.049997445195913315,
-0.059388674795627594,
0.0038412977010011673,
-0.016710376366972923,
-0.011404831893742085,
0.006738459225744009,
-0.04174251854419708,
0.008764591999351978,
0.00843873992562294,
0.02038665860891342,
-0.06095945090055466,
0.04368092119693756,
0.02558358572423458,
0.040272004902362823,
0.007030890788882971,
-0.10454010963439941,
0.021639937534928322,
-0.010460695251822472,
0.042310670018196106,
-0.020754287019371986,
0.012925475835800171,
0.11115741729736328,
-0.0005702415946871042,
-0.03599414974451065,
0.010886809788644314,
-0.058653417974710464,
-0.06483625620603561,
-0.0223250612616539,
0.009733794257044792,
-0.07573142647743225,
-0.06176155060529709,
-0.037832289934158325,
-0.0223417729139328,
0.02533292956650257,
0.03505836799740791,
-0.025132404640316963,
-0.009458072483539581,
-0.015707753598690033,
0.007924895733594894,
-0.05738342925906181,
-0.008488871157169342,
-0.008125420659780502,
-0.0421435683965683,
0.030830644071102142,
-0.03799939528107643,
-0.018481675535440445,
0.021940723061561584,
0.004645484499633312,
0.0016543272649869323,
-0.028324086219072342,
0.048292987048625946,
0.02404623106122017,
-0.04411539062857628,
-0.007548912428319454,
-0.024748066440224648,
0.011972984299063683,
-0.013134355656802654,
-0.05176874250173569,
0.007289901375770569,
0.0004921727813780308,
0.04919534549117088,
0.041541993618011475,
0.014462830498814583,
-0.00421310355886817,
0.019417457282543182,
0.04732378572225571,
-0.08241557329893112,
-0.00957504566758871,
-0.0027384129352867603,
-0.02578411065042019,
0.029677627608180046,
0.04581984877586365,
-0.001863206853158772,
0.020887969061732292,
0.029193026944994926,
-0.02608489617705345,
-0.0496298149228096,
-0.020169423893094063,
0.08154663443565369,
-0.05237031728029251,
-0.02060389332473278,
-0.03052985668182373,
0.018464965745806694,
-0.01327639352530241,
-0.015373545698821545,
0.03195023909211159,
0.013978229835629463,
-0.05337294191122055,
-0.034857843071222305,
0.0036449506878852844,
-0.01403671596199274,
0.02157309465110302,
-0.04348039627075195,
-0.003862185636535287,
0.008422029204666615,
-0.0470564179122448,
-0.01549887377768755,
0.01838141307234764,
-0.0471900999546051,
0.06877990812063217,
-0.013702508062124252,
-0.05230347812175751,
-0.002615173812955618,
-0.039336223155260086,
0.05009770765900612,
-0.02829066663980484,
-0.009533269330859184,
0.005221992265433073,
-0.02083783783018589,
0.012399098835885525,
0.007365098223090172,
-0.015030982904136181,
-0.007937428541481495,
-0.01739550195634365,
0.036328356713056564,
-0.0002579664287623018,
0.054943714290857315,
-0.036796245723962784,
0.02334439568221569,
-0.051501378417015076,
-0.014512961730360985,
0.023745443671941757,
0.018398122861981392,
0.004075243137776852,
0.007185461465269327,
0.014613223262131214,
-0.04398170858621597,
-0.030613409355282784,
-0.039804115891456604,
-0.03987095504999161,
0.0018934945110231638,
0.03565994277596474,
-0.003632417879998684,
0.028959080576896667,
-0.018732331693172455,
-0.07720193266868591,
0.00015887912013567984,
-0.0035572212655097246,
-0.015039337798953056,
0.011195952072739601,
0.030195649713277817,
0.04364750161767006,
-0.023862415924668312,
-0.09732122719287872,
-0.000604184519033879,
-0.004917027894407511,
0.04682247340679169,
-0.009274258278310299,
0.020152714103460312,
-0.011388121172785759,
0.020954811945557594,
-0.01684405840933323,
-0.014930720441043377,
0.0056188637390732765,
-0.010184974409639835,
0.02433030679821968,
0.02406294085085392,
-0.007532201707363129,
0.002220391295850277,
-0.013568825088441372,
0.06754334270954132,
-0.01981850527226925,
-0.013393365778028965,
0.052704524248838425,
-0.009065378457307816,
0.016919255256652832,
0.017729708924889565,
-0.05815210938453674,
0.03672940656542778,
-0.03519205003976822,
0.05805184692144394,
0.018665490671992302,
-0.059889987111091614,
0.01911666989326477,
-0.04174251854419708,
0.03769860789179802,
-0.03866780921816826,
0.015615846030414104,
-0.03699677065014839,
0.07893981784582138,
0.00415879487991333,
-0.03549283742904663,
-0.03296957165002823,
0.025182535871863365,
0.004332164768129587,
0.0017619002610445023,
-0.07025042176246643,
-0.05628054589033127,
0.017512474209070206,
-0.02132244035601616,
0.036829669028520584,
-0.005886229686439037,
0.019701533019542694,
-0.014446119777858257,
0.033821798861026764,
0.03422284871339798,
0.022208089008927345,
0.05511081963777542,
0.0285580325871706,
0.018698910251259804,
0.03816649690270424,
-0.023461367934942245,
-0.004858541768044233,
0.002855385420843959,
-0.006579710636287928,
-0.03990437835454941,
-0.11102373898029327,
0.01809733733534813,
-0.0064126066863536835,
0.00151751097291708,
0.03779887035489082,
-0.0013023648643866181,
0.022943345829844475,
0.034724161028862
]
|
42,193 | flask.views | MethodView | Dispatches request methods to the corresponding instance methods.
For example, if you implement a ``get`` method, it will be used to
handle ``GET`` requests.
This can be useful for defining a REST API.
:attr:`methods` is automatically set based on the methods defined on
the class.
See :doc:`views` for a detailed guide.
.. code-block:: python
class CounterAPI(MethodView):
def get(self):
return str(session.get("counter", 0))
def post(self):
session["counter"] = session.get("counter", 0) + 1
return redirect(url_for("counter"))
app.add_url_rule(
"/counter", view_func=CounterAPI.as_view("counter")
)
| class MethodView(View):
"""Dispatches request methods to the corresponding instance methods.
For example, if you implement a ``get`` method, it will be used to
handle ``GET`` requests.
This can be useful for defining a REST API.
:attr:`methods` is automatically set based on the methods defined on
the class.
See :doc:`views` for a detailed guide.
.. code-block:: python
class CounterAPI(MethodView):
def get(self):
return str(session.get("counter", 0))
def post(self):
session["counter"] = session.get("counter", 0) + 1
return redirect(url_for("counter"))
app.add_url_rule(
"/counter", view_func=CounterAPI.as_view("counter")
)
"""
def __init_subclass__(cls, **kwargs: t.Any) -> None:
super().__init_subclass__(**kwargs)
if "methods" not in cls.__dict__:
methods = set()
for base in cls.__bases__:
if getattr(base, "methods", None):
methods.update(base.methods) # type: ignore[attr-defined]
for key in http_method_funcs:
if hasattr(cls, key):
methods.add(key.upper())
if methods:
cls.methods = methods
def dispatch_request(self, **kwargs: t.Any) -> ft.ResponseReturnValue:
meth = getattr(self, request.method.lower(), None)
# If the request method is HEAD and we don't have a handler for it
# retry with GET.
if meth is None and request.method == "HEAD":
meth = getattr(self, "get", None)
assert meth is not None, f"Unimplemented method {request.method!r}"
return current_app.ensure_sync(meth)(**kwargs) # type: ignore[no-any-return]
| () | [
0.00430590845644474,
-0.08585617691278458,
-0.02330769971013069,
0.004803210496902466,
0.03535939380526543,
0.000983081292361021,
-0.03631033003330231,
0.008281899616122246,
0.02396753616631031,
-0.005967624951153994,
0.05022508651018143,
0.011750884354114532,
0.07289236038923264,
0.004228280857205391,
0.04354910925030708,
0.01632121205329895,
0.10425392538309097,
-0.00526412483304739,
0.037785254418849945,
-0.09074671566486359,
0.04510166123509407,
0.021367009729146957,
-0.0004921471117995679,
0.008728258311748505,
-0.03619388863444328,
0.036252111196517944,
0.007068967446684837,
0.002262118039652705,
0.0707964152097702,
-0.015826335176825523,
-0.00940264854580164,
-0.00940264854580164,
0.017495330423116684,
0.029459690675139427,
0.0502639003098011,
-0.0209206510335207,
-0.01666083373129368,
0.02433626726269722,
-0.05864768475294113,
0.0015610434347763658,
-0.02870282158255577,
0.002052280819043517,
-0.01059617381542921,
-0.05985091254115105,
0.04277283325791359,
0.023773465305566788,
-0.03582515940070152,
0.08492464572191238,
0.01627269573509693,
-0.021522264927625656,
0.0018448694609105587,
-0.013012333773076534,
-0.016651129350066185,
0.0075638433918356895,
0.015331460162997246,
0.035378798842430115,
-0.016233881935477257,
0.07118455320596695,
0.005987032316625118,
0.013507209718227386,
0.018184276297688484,
0.005826924927532673,
0.011556815356016159,
-0.004875986371189356,
0.018523896113038063,
0.03613566979765892,
-0.05496037378907204,
0.01387594174593687,
0.03671787679195404,
-0.020765395835042,
0.03594160079956055,
0.016884012147784233,
-0.010101296938955784,
0.056862249970436096,
0.026859164237976074,
-0.003859549527987838,
0.02645161934196949,
-0.05166119709610939,
0.04009467735886574,
0.01843656599521637,
0.06493552774190903,
-0.055270884186029434,
0.01685490272939205,
-0.058414801955223083,
0.007209667470306158,
-0.037785254418849945,
-0.017757324501872063,
-0.09059146046638489,
-0.04743048921227455,
0.040560442954301834,
-0.04940999671816826,
0.01621447503566742,
-0.01748562604188919,
-0.03706720098853111,
0.0038474202156066895,
-0.019795048981904984,
-0.00499242777004838,
-0.021444637328386307,
-0.024083977565169334,
-0.049953389912843704,
0.007743357680737972,
0.08616668730974197,
-0.01759236492216587,
0.001514952047728002,
0.02507372945547104,
-0.0024537614081054926,
0.017767027020454407,
-0.003015348920598626,
-0.01348780281841755,
0.008985400199890137,
0.040405187755823135,
0.014526072889566422,
-0.02716967649757862,
0.005899700801819563,
-0.028217649087309837,
0.020202593877911568,
0.004963317420333624,
-0.006137435790151358,
-0.042734019458293915,
-0.012071099132299423,
-0.0375523716211319,
-0.022473203018307686,
-0.017340075224637985,
-0.021037092432379723,
0.01698104664683342,
0.043820805847644806,
-0.026703909039497375,
-0.012401016429066658,
0.03768822178244591,
-0.02214328572154045,
-0.06322771310806274,
0.013206402771174908,
0.008063571527600288,
0.022938968613743782,
0.00008278260793304071,
0.05022508651018143,
-0.02827586978673935,
-0.005205904133617878,
-0.01395356934517622,
0.06625519692897797,
-0.017553551122546196,
0.03844509273767471,
0.03380683809518814,
0.031148092821240425,
0.031148092821240425,
-0.02002793177962303,
0.01497243158519268,
0.02907155267894268,
0.07300879806280136,
0.012556271627545357,
0.04292808845639229,
0.006826381199061871,
0.07700662314891815,
0.014196155592799187,
0.03287530690431595,
0.022997189313173294,
-0.014118527993559837,
0.020804209634661674,
0.010372994467616081,
-0.08003409951925278,
-0.007719099055975676,
-0.024006349965929985,
0.023579396307468414,
-0.08298395574092865,
0.040560442954301834,
-0.007898612879216671,
0.00605010474100709,
0.0003096008731517941,
-0.0283534973859787,
0.0652848482131958,
-0.03935721516609192,
-0.030934616923332214,
0.03510710224509239,
-0.023734651505947113,
0.0501086451113224,
0.0003996610757894814,
0.00904847215861082,
-0.006719642784446478,
0.04028874635696411,
0.012866782024502754,
0.031070465222001076,
-0.06955436617136002,
-0.08150902390480042,
-0.00039814491174183786,
0.009849007241427898,
0.08026698231697083,
-0.0037091458216309547,
-0.026412805542349815,
-0.05065203830599785,
0.055697835981845856,
-0.002401605248451233,
0.026044074445962906,
0.041530791670084,
-0.017941689118742943,
-0.023288292810320854,
-0.01740799844264984,
-0.04607200622558594,
0.008063571527600288,
0.040560442954301834,
-0.03312759846448898,
-0.01020803488790989,
0.029828421771526337,
0.05546495318412781,
0.013924458995461464,
0.0035005216486752033,
0.07347456365823746,
0.049953389912843704,
0.00826734397560358,
-0.06408162415027618,
-0.046809468418359756,
-0.05558139458298683,
0.03256479650735855,
-0.025772377848625183,
-0.0040342118591070175,
-0.02330769971013069,
-0.006792419124394655,
0.06660451740026474,
-0.001842443598434329,
0.020862430334091187,
-0.029906049370765686,
0.03776584938168526,
0.05857005715370178,
-0.05631885677576065,
0.04385961964726448,
0.016602613031864166,
0.00011212039680685848,
0.0504191555082798,
-0.012323388829827309,
-0.04141434654593468,
-0.037940509617328644,
-0.012789154425263405,
0.0033113041426986456,
0.030138932168483734,
0.052126962691545486,
-0.04238469526171684,
-0.0027218193281441927,
-0.0039929719641804695,
0.025093136355280876,
-0.0067293462343513966,
-0.0025665638968348503,
0.016486171633005142,
0.024802032858133316,
0.006719642784446478,
0.016922825947403908,
-0.05814310535788536,
0.012187540531158447,
-0.012798857875168324,
0.026393398642539978,
-0.03145860135555267,
-0.025112543255090714,
0.02724730409681797,
-0.0502639003098011,
-0.013934162445366383,
-0.040638070553541183,
-0.029401469975709915,
0.01759236492216587,
-0.06396517902612686,
0.051700010895729065,
-0.03328285366296768,
0.005695928353816271,
0.006899157073348761,
0.043316226452589035,
0.011673256754875183,
0.0007508049020543694,
-0.01318699587136507,
0.019765939563512802,
0.021910402923822403,
0.016127143055200577,
-0.05822073295712471,
-0.0026272106915712357,
0.08376023173332214,
-0.019193435087800026,
-0.01840745471417904,
0.013866238296031952,
0.032467763870954514,
-0.014409631490707397,
-0.007180557120591402,
0.024743812158703804,
-0.08639957010746002,
-0.04129790514707565,
0.026141108945012093,
-0.06004498153924942,
0.01169266365468502,
0.0005236833821982145,
-0.009732565842568874,
0.015020948834717274,
0.012012878432869911,
0.05201052129268646,
-0.01409912109375,
-0.03066292032599449,
0.0882626324892044,
-0.03491303324699402,
0.0034059130121022463,
0.03227369487285614,
-0.009208579547703266,
0.01957187056541443,
-0.09555962681770325,
-0.0006040401058271527,
0.03795991837978363,
-0.04246232286095619,
-0.011518001556396484,
-0.006006439216434956,
-0.013681872747838497,
0.005657114554196596,
0.03518472984433174,
-0.06260669231414795,
0.008699147962033749,
0.001935839420184493,
0.007248481269925833,
-0.027072640135884285,
-0.002219665562734008,
0.029420876875519753,
-0.04017230495810509,
-0.05387358367443085,
-0.06272313743829727,
0.035669904202222824,
-0.03986179456114769,
0.009320168755948544,
0.024219825863838196,
0.06730316579341888,
-0.032467763870954514,
0.06342178583145142,
-0.03308878466486931,
0.029187994077801704,
-0.015777818858623505,
-0.0193875040858984,
0.05880293995141983,
-0.010916387662291527,
-0.031128685921430588,
-0.008485672064125538,
-0.05034152790904045,
0.03681490942835808,
-0.007825836539268494,
-0.050962548702955246,
-0.08973755687475204,
-0.024569150060415268,
-0.0027072641532868147,
0.00032415607711300254,
-0.02148345112800598,
-0.007151446770876646,
-0.005419380031526089,
-0.04964287951588631,
0.016544392332434654,
0.010004262439906597,
-0.037338897585868835,
0.022279134020209312,
0.040327560156583786,
0.010178924538195133,
0.03652380779385567,
-0.10332239419221878,
0.01260478887706995,
-0.09905287623405457,
-0.0011401560623198748,
-0.022259727120399475,
0.019290469586849213,
-0.06536247581243515,
0.0037018682342022657,
-0.041996557265520096,
0.001921284245327115,
-0.0717279464006424,
-0.007704543881118298,
0.030294189229607582,
-0.06551773101091385,
0.007471660617738962,
0.013982679694890976,
-0.007117484696209431,
0.025112543255090714,
-0.05426172539591789,
-0.0023773466236889362,
-0.018378345295786858,
-0.02002793177962303,
-0.04017230495810509,
0.016942232847213745,
0.02542305365204811,
0.04692590981721878,
-0.004228280857205391,
0.04401487484574318,
-0.010567063465714455,
0.004320463631302118,
0.07149506360292435,
0.02674272283911705,
-0.011372449807822704,
0.012362202629446983,
0.009713158942759037,
0.03574753180146217,
-0.029090959578752518,
-0.0033962095621973276,
0.011925546452403069,
-0.03075995482504368,
0.029692573472857475,
0.026859164237976074,
-0.03454430028796196,
-0.07774408906698227,
-0.01395356934517622,
-0.03844509273767471,
-0.04793507233262062,
-0.04141434654593468,
0.025170763954520226,
0.03842568397521973,
0.015583749860525131,
0.07630797475576401,
0.014011790044605732,
0.04999220371246338,
0.03631033003330231,
0.05721157416701317,
0.044558268040418625,
0.04960406571626663,
0.003073569620028138,
0.013837127946317196,
-0.04059925675392151,
-0.009849007241427898,
-0.03017774596810341,
-0.004667362198233604,
-0.006181101314723492,
0.044403012841939926,
-0.02738315239548683,
0.05678462237119675,
0.036116261035203934,
-0.0037746441084891558,
0.01769910380244255,
0.06272313743829727,
0.07797697186470032,
0.07607509195804596,
0.036116261035203934,
-0.009334724396467209,
0.03631033003330231,
-0.005429083481431007,
0.027519000694155693,
-0.013982679694890976,
0.0717279464006424,
0.039822980761528015,
0.010761132463812828,
-0.09392944723367691,
0.004837172571569681,
-0.02179396152496338,
-0.017767027020454407,
-0.01096490491181612,
-0.03698957338929176,
-0.0019892083946615458,
0.016224177554249763,
-0.027014419436454773,
0.022977782413363457,
-0.0329529345035553,
0.005967624951153994,
0.06369347870349884,
-0.049371182918548584,
0.010732022114098072,
-0.023851092904806137,
0.023230072110891342,
-0.08500227332115173,
-0.005414528306573629,
-0.009140655398368835,
-0.004546069074422121,
0.060588378459215164,
-0.02936265617609024,
-0.014623107388615608,
-0.006108325440436602,
-0.0266650952398777,
0.0001476744655519724,
0.03949306532740593,
0.017951393499970436,
0.014642514288425446,
-0.03889144957065582,
-0.04009467735886574,
-0.03075995482504368,
0.0029571279883384705,
-0.0021808515302836895,
0.024161605164408684,
-0.06431450694799423,
-0.03650439903140068,
-0.03037181682884693,
-0.054533421993255615,
-0.025093136355280876,
-0.04467470943927765,
-0.04510166123509407,
0.04436419904232025,
0.024588556960225105,
-0.028450531885027885,
-0.045645054429769516,
0.0126824164763093,
-0.0037819216959178448,
0.03949306532740593,
-0.018184276297688484,
-0.0007884057704359293,
-0.024219825863838196,
-0.0023239776492118835,
0.008262492716312408,
0.047779813408851624,
0.03753296658396721,
-0.054533421993255615,
0.025093136355280876,
0.0266650952398777,
-0.043238598853349686,
0.057754967361688614,
-0.04583912342786789,
0.05530969798564911,
-0.02944028377532959,
-0.02229854092001915,
-0.0057638525031507015,
-0.007039857096970081,
-0.0007271526847034693,
-0.04611082002520561,
0.08081037551164627,
0.04036637395620346,
0.02033844217658043,
-0.011508298106491566,
-0.03074054792523384,
0.003932325169444084,
0.014720141887664795,
-0.026936791837215424,
-0.024510929360985756,
0.004131246358156204,
-0.015069466084241867,
0.0074182916432619095,
0.012585381977260113,
-0.008844699710607529,
-0.052786797285079956,
-0.009611273184418678,
0.027189083397388458,
0.006273284088820219,
0.028955111280083656,
-0.018999366089701653,
0.05476630479097366,
0.03747474402189255,
-0.01559345331043005,
0.02542305365204811,
0.024394487962126732,
0.01944572478532791,
0.026936791837215424,
0.05018627271056175,
-0.01645706035196781,
0.0471976064145565,
-0.022919561713933945,
0.014108824543654919,
0.013196699321269989,
0.04952643811702728,
-0.08445888012647629,
-0.0337098054587841,
0.018844110891222954,
0.027363745495676994,
-0.014040900394320488,
0.06761367619037628,
-0.04300571605563164,
0.04611082002520561,
-0.05523207038640976,
-0.08702059090137482,
0.0023919017985463142,
-0.04618844762444496,
0.018058130517601967,
-0.07545407116413116,
-0.11100753396749496,
0.041375532746315,
0.02711145579814911,
-0.02899392507970333,
-0.015554639510810375,
0.029459690675139427,
0.019795048981904984,
0.03631033003330231,
0.03343810886144638,
-0.003932325169444084,
-0.030488258227705956,
-0.022570237517356873,
-0.019533056765794754,
-0.026393398642539978,
-0.05340781807899475,
0.07382389158010483,
0.07956833392381668,
-0.02936265617609024,
-0.019241953268647194,
-0.07238777726888657,
-0.0027072641532868147,
-0.007636619731783867,
0.027848917990922928,
-0.003156048944219947,
0.05798785015940666,
0.04304452985525131,
0.015409087762236595,
-0.0002260601904708892,
0.040405187755823135,
-0.04758574441075325,
0.006380022037774324,
-0.015690486878156662,
-0.002270608674734831,
-0.0625290647149086,
-0.029964270070195198,
-0.023482361808419228,
-0.01387594174593687,
0.03863916173577309,
-0.015680784359574318,
-0.027053233236074448,
-0.06210211664438248,
0.0014348984695971012,
-0.002653895178809762,
-0.0444418266415596,
0.022395575419068336,
0.05006983131170273,
-0.09835422784090042,
-0.0008078126702457666,
-0.026781536638736725,
0.046460144221782684,
-0.013031740672886372,
0.0358639732003212,
-0.024976694956421852,
-0.0562412291765213,
0.02142523042857647,
0.015651673078536987,
-0.03718364238739014,
0.01223605778068304,
-0.04319978505373001,
-0.042656391859054565,
0.0004205841396469623,
0.01388564519584179,
0.033185817301273346,
0.035883378237485886,
-0.02637399174273014,
-0.024879660457372665,
-0.07421202957630157,
0.03803754597902298,
0.01333254761993885,
-0.03634914383292198,
-0.011585925705730915,
-0.02171633392572403,
-0.002940146951004863,
0.038153987377882004,
-0.004977872595191002,
0.10184746980667114,
0.03584456443786621,
0.047546930611133575,
-0.07456135004758835,
0.0020134670194238424,
0.012032285332679749,
-0.03155563771724701,
-0.013934162445366383,
0.025481274351477623,
0.03578634560108185,
-0.052437473088502884,
-0.014739548787474632,
0.014341707341372967,
-0.0034325974993407726,
0.018320124596357346,
-0.014807472936809063,
-0.045295730233192444,
0.014496962539851665,
0.013429582118988037,
0.026626281440258026,
0.022783713415265083,
-0.006273284088820219,
-0.02449152246117592,
0.055038001388311386,
-0.0148268798366189,
-0.01894114539027214,
0.04172486066818237,
0.00768998870626092,
-0.00990722794085741,
-0.02214328572154045,
-0.022337354719638824,
0.02002793177962303,
-0.0475081168115139,
0.015884555876255035,
-0.014788066036999226,
-0.05166119709610939,
-0.020959464833140373,
0.05542613938450813,
-0.0711069256067276,
0.03303056210279465,
0.024957288056612015,
0.0016483744839206338,
-0.03518472984433174,
0.026800943538546562,
-0.00974712148308754,
0.018853813409805298,
0.009489979594945908,
0.007636619731783867,
0.0442865714430809,
0.019639793783426285,
0.020513104274868965,
-0.0030493109952658415,
-0.030003083869814873,
-0.0034034871496260166,
-0.005016686394810677,
-0.055270884186029434,
0.009955745190382004,
-0.0777052715420723,
0.0471976064145565,
-0.051700010895729065,
-0.006292690988630056,
0.0016714201774448156,
-0.03891085833311081,
0.01318699587136507,
-0.0832168385386467,
0.019135214388370514,
-0.031070465222001076,
0.019833862781524658,
0.01859182119369507,
-0.045722682029008865,
-0.009538496844470501,
-0.038580939173698425,
-0.047896258533000946,
-0.00895628985017538,
-0.001704169437289238,
0.014642514288425446,
-0.049875762313604355,
0.038580939173698425,
0.0036169630475342274,
-0.004364129155874252,
0.03343810886144638,
0.005176793318241835,
-0.05728920176625252,
0.018999366089701653,
-0.008640927262604237,
-0.0015040356665849686,
0.02214328572154045,
0.04968169331550598,
-0.00499242777004838,
0.007787023205310106,
-0.00003919286245945841,
0.02041606977581978,
-0.0000495406893605832,
-0.0537959560751915,
0.019872676581144333,
-0.04005586355924606,
0.016699647530913353,
0.043160971254110336,
-0.017078081145882607,
0.012614492326974869,
-0.013371361419558525,
0.010440918616950512,
0.0006919776787981391,
0.037125419825315475,
-0.004298630636185408,
-0.0253648329526186,
0.0038474202156066895,
-0.031283941119909286,
-0.011139567010104656,
-0.009320168755948544,
-0.017679696902632713,
-0.0620633028447628,
-0.025248391553759575,
-0.016301805153489113,
-0.009320168755948544,
-0.019911490380764008,
-0.060510747134685516,
-0.018533600494265556,
-0.011362746357917786,
0.05371832847595215,
0.0011892797192558646,
0.06353822350502014,
-0.0086215203627944,
0.04129790514707565,
0.025170763954520226,
0.033341072499752045,
0.020222000777721405,
-0.019028475508093834,
0.010285662487149239,
0.06054956093430519,
0.024064570665359497,
-0.012177837081253529,
-0.024646777659654617,
0.0659058690071106,
-0.010013965889811516,
-0.05604716017842293,
-0.007918019779026508,
-0.02134760282933712,
0.011129863560199738,
0.0502639003098011,
0.06155872344970703,
0.04129790514707565,
0.052437473088502884
]
|
42,194 | flask.views | dispatch_request | null | def dispatch_request(self, **kwargs: t.Any) -> ft.ResponseReturnValue:
meth = getattr(self, request.method.lower(), None)
# If the request method is HEAD and we don't have a handler for it
# retry with GET.
if meth is None and request.method == "HEAD":
meth = getattr(self, "get", None)
assert meth is not None, f"Unimplemented method {request.method!r}"
return current_app.ensure_sync(meth)(**kwargs) # type: ignore[no-any-return]
| (self, **kwargs: 't.Any') -> 'ft.ResponseReturnValue' | [
0.01801418699324131,
-0.08540058881044388,
-0.03758210688829422,
0.02995966747403145,
-0.0028675550129264593,
-0.034182172268629074,
-0.018471168354153633,
0.00922644417732954,
0.01614970527589321,
-0.03003278374671936,
0.06657297909259796,
-0.02060069888830185,
0.04928081855177879,
-0.03270155191421509,
0.017593763768672943,
-0.010912703350186348,
0.009761111810803413,
0.025828560814261436,
0.019339431077241898,
-0.08291461318731308,
0.03981217369437218,
0.015811538323760033,
0.0023671609815210104,
0.010839587077498436,
0.012603532522916794,
0.0668288841843605,
0.01613142527639866,
-0.028003789484500885,
0.07655344158411026,
0.026121027767658234,
0.02160605601966381,
0.034364961087703705,
-0.02010715939104557,
0.010592817328870296,
0.02721778117120266,
0.004135677125304937,
-0.01764860190451145,
-0.00948692299425602,
-0.06649985909461975,
-0.04164009913802147,
-0.10733567178249359,
-0.03434668481349945,
0.012758905999362469,
-0.060102127492427826,
0.007992595434188843,
0.021989921107888222,
-0.04302931949496269,
0.08576617389917374,
0.07227610051631927,
0.024366220459342003,
-0.01860826276242733,
0.03739931434392929,
-0.03039836883544922,
-0.05604413524270058,
0.004572093952447176,
0.02173401042819023,
-0.03398109972476959,
0.02072865329682827,
-0.0048759859055280685,
0.03251875936985016,
0.021770570427179337,
0.05651939660310745,
0.04606367275118828,
-0.007311694324016571,
-0.01501639187335968,
-0.019869528710842133,
0.005524898879230022,
0.012822884134948254,
0.0048577068373560905,
0.02460385113954544,
-0.0002844706177711487,
-0.004953672643750906,
-0.018078163266181946,
0.00892940629273653,
0.05213237926363945,
-0.015519071370363235,
0.009052791632711887,
-0.05264419689774513,
0.028826354071497917,
0.024567293003201485,
0.04394328221678734,
-0.023086674511432648,
0.004211078863590956,
-0.06481816619634628,
-0.031056420877575874,
-0.04694107547402382,
-0.002789868274703622,
-0.05169367790222168,
-0.05823764577507973,
-0.0052095819264650345,
-0.054910823702812195,
0.009468643926084042,
-0.029630640521645546,
-0.04288308694958687,
0.0061966609209775925,
0.007051215041428804,
-0.00418137526139617,
-0.01536369789391756,
-0.005392374470829964,
-0.022465180605649948,
-0.018717937171459198,
0.08934890478849411,
0.005045068915933371,
0.007302554789930582,
0.05487426370382309,
0.013937917537987232,
0.04390672221779823,
-0.018306653946638107,
-0.026870476081967354,
-0.0015400255797430873,
0.030873628333210945,
0.00566656282171607,
-0.021203912794589996,
-0.0039803036488592625,
-0.022318946197628975,
0.013563192449510098,
-0.03244564309716225,
-0.001526316162198782,
-0.034310124814510345,
-0.004318469204008579,
-0.07713837176561356,
-0.021935082972049713,
0.03551655635237694,
-0.04606367275118828,
0.04471100866794586,
0.04083581268787384,
-0.041420746594667435,
-0.021057680249214172,
0.029173659160733223,
0.0024539874866604805,
-0.003806650871410966,
0.0034136471804231405,
0.00227462244220078,
0.024457616731524467,
-0.021587777882814407,
0.06964388489723206,
-0.006612513680011034,
0.0015628746477887034,
0.01571100391447544,
0.029923109337687492,
0.011570756323635578,
-0.03047148510813713,
0.02109423838555813,
-0.007243147119879723,
0.028241418302059174,
0.021021120250225067,
0.05648283660411835,
0.00633832486346364,
0.08774033188819885,
0.013453517109155655,
0.08949513733386993,
-0.0224834606051445,
0.02615758590400219,
0.01915663853287697,
-0.018937287852168083,
0.00861865933984518,
-0.024932878091931343,
-0.006630792748183012,
-0.024878039956092834,
-0.012539555318653584,
-0.0006214940221980214,
-0.05980965867638588,
0.01630507782101631,
-0.06525687128305435,
0.023580214008688927,
-0.03579074516892433,
-0.02109423838555813,
0.011113774962723255,
0.015747562050819397,
0.03321336954832077,
-0.027016710489988327,
0.0462099090218544,
-0.018023326992988586,
-0.026066189631819725,
0.04218847677111626,
0.012594393454492092,
0.007243147119879723,
0.006644502282142639,
-0.010291209444403648,
-0.017456669360399246,
0.03070911578834057,
-0.09636812657117844,
-0.041055161505937576,
0.005515759345144033,
0.03228113055229187,
0.05070659890770912,
-0.0000833990125101991,
-0.040982045233249664,
-0.046794842928647995,
0.07845447957515717,
-0.03732619807124138,
-0.024146869778633118,
0.05480114743113518,
-0.010885285213589668,
-0.00986164715141058,
-0.03758210688829422,
-0.0324639230966568,
0.048110947012901306,
0.06445258110761642,
-0.011351405642926693,
0.00652568694204092,
-0.01033690758049488,
0.06416011601686478,
0.05670218914747238,
-0.02953924424946308,
0.04833029955625534,
0.07911252975463867,
0.0045126862823963165,
-0.03445635735988617,
-0.005118186119943857,
-0.07275135815143585,
-0.005908763036131859,
-0.08101357519626617,
-0.027985509485006332,
-0.037362758070230484,
0.032774668186903,
0.037801459431648254,
-0.025024274364113808,
0.002360306214541197,
-0.016560986638069153,
0.025024274364113808,
0.0430658794939518,
-0.02972203679382801,
0.002771589206531644,
0.013453517109155655,
-0.006594234146177769,
0.04500347748398781,
0.004608652088791132,
-0.015519071370363235,
-0.04668516665697098,
-0.02147810161113739,
-0.005099906586110592,
0.02922849729657173,
0.003669556463137269,
-0.033249929547309875,
-0.02396407723426819,
0.00875118374824524,
0.031878985464572906,
-0.017383553087711334,
-0.008349040523171425,
0.047233544290065765,
0.006100695114582777,
0.02846076898276806,
0.04215191677212715,
-0.03977561742067337,
-0.040982045233249664,
-0.00026633418747223914,
0.05648283660411835,
-0.021441543474793434,
-0.03292090445756912,
0.03820360079407692,
-0.01788623258471489,
-0.03372519090771675,
-0.07838135957717896,
-0.011543337255716324,
-0.025444695726037025,
-0.014477154240012169,
0.04365081340074539,
0.029447847977280617,
0.03710684925317764,
-0.01124173030257225,
0.06843745708465576,
0.048659324645996094,
0.003326820908114314,
-0.052534524351358414,
0.009189886040985584,
-0.003543886821717024,
0.01539111603051424,
-0.04006808623671532,
0.03441980108618736,
0.04200568422675133,
-0.03217145428061485,
0.010720771737396717,
0.027254341170191765,
-0.0028492759447544813,
-0.03820360079407692,
-0.004748031497001648,
0.001385794603265822,
-0.05706777423620224,
-0.04153042286634445,
0.03966594114899635,
-0.05417965352535248,
0.02915538102388382,
-0.02122219279408455,
-0.0761878564953804,
0.013215887360274792,
0.04178633168339729,
0.03966594114899635,
0.004021431785076857,
-0.053411927074193954,
0.04975607991218567,
0.02853388711810112,
-0.022063037380576134,
-0.007786954287439585,
0.011004099622368813,
-0.009514342062175274,
-0.10536151379346848,
-0.01879105344414711,
0.0799168199300766,
0.03476710617542267,
-0.04525938630104065,
-0.05845699459314346,
-0.04624646529555321,
-0.03721652552485466,
0.05231517180800438,
-0.04730666056275368,
0.022757647559046745,
0.04474756866693497,
-0.06631706655025482,
0.0065439664758741856,
-0.029265055432915688,
0.03447463735938072,
-0.03473054617643356,
-0.08386513590812683,
-0.04843997582793236,
0.025243625044822693,
-0.005488340277224779,
0.07223954051733017,
0.01954050362110138,
0.02279420755803585,
-0.04171321541070938,
0.08284149318933487,
-0.06273433566093445,
0.05637316405773163,
0.013782544061541557,
-0.007563033606857061,
0.027254341170191765,
0.004526395816355944,
-0.035498276352882385,
0.017410971224308014,
0.024018915370106697,
0.03129405155777931,
-0.012694928795099258,
-0.042225033044815063,
-0.07106966525316238,
-0.029319893568754196,
0.03390798345208168,
-0.012795465067029,
-0.0003778660611715168,
0.01866309903562069,
-0.059151604771614075,
-0.017538925632834435,
0.058091409504413605,
-0.026742521673440933,
0.006502837873995304,
0.009943904355168343,
0.06635362654924393,
0.024640409275889397,
0.0605773851275444,
-0.09022630751132965,
-0.051986146718263626,
-0.09271228313446045,
0.00890198815613985,
-0.007791524287313223,
0.007284275256097317,
-0.02959408238530159,
0.014760483056306839,
-0.02484148181974888,
-0.012630951590836048,
-0.01519918441772461,
0.0374724343419075,
0.012731487862765789,
-0.03816704452037811,
0.025517811998724937,
-0.031988661736249924,
-0.014458875171840191,
-0.004802869167178869,
0.005177593324333429,
-0.02721778117120266,
-0.04950017109513283,
-0.03644879534840584,
-0.02473180554807186,
-0.0070557850413024426,
-0.004201939329504967,
0.022647973150014877,
0.03900788724422455,
-0.0121739711612463,
-0.029703758656978607,
-0.008623229339718819,
0.054106537252664566,
0.043102435767650604,
-0.045734647661447525,
-0.02984999120235443,
-0.06174725666642189,
0.030233856290578842,
-0.008952255360782146,
-0.0013081077486276627,
0.011250869370996952,
0.0058904835022985935,
0.042298153042793274,
0.02204475738108158,
-0.06273433566093445,
-0.04657549411058426,
0.012585253454744816,
-0.023580214008688927,
0.0038317847065627575,
-0.012183110229671001,
0.02173401042819023,
-0.009541761130094528,
-0.00008989671187009662,
0.03403593599796295,
0.019193196669220924,
-0.01476962212473154,
0.05768926814198494,
0.025938235223293304,
0.044418543577194214,
0.046173349022865295,
-0.038057368248701096,
0.030581161379814148,
-0.04189600795507431,
-0.03962938115000725,
0.02416514977812767,
-0.015601327642798424,
0.024128591641783714,
-0.0018919009016826749,
0.006347464397549629,
0.01583895832300186,
0.012100853957235813,
0.01597605273127556,
0.006018438376486301,
0.014276082627475262,
0.05381406843662262,
0.04789159819483757,
0.01408415101468563,
0.016277659684419632,
0.04460133612155914,
0.00750819593667984,
-0.0014166407054290175,
-0.015829818323254585,
0.028570445254445076,
0.026121027767658234,
0.06686544418334961,
-0.06299024820327759,
0.0486958846449852,
0.0072294375859200954,
-0.0015982906334102154,
-0.043797049671411514,
-0.013380400836467743,
0.010154115036129951,
-0.001254412578418851,
-0.04540562257170677,
0.022812485694885254,
-0.06770628690719604,
-0.028259698301553726,
0.03273811191320419,
-0.010071858763694763,
0.027747878804802895,
0.002090687630698085,
-0.02266625128686428,
-0.048915233463048935,
0.017931930720806122,
0.03500473499298096,
-0.01267664972692728,
0.03802080824971199,
-0.07209330797195435,
-0.038240160793066025,
-0.0262307021766901,
-0.018133001402020454,
-0.01941254734992981,
0.00942294578999281,
0.041749775409698486,
0.013791683129966259,
-0.015829818323254585,
-0.03385314345359802,
0.01744753122329712,
0.04112828150391579,
0.0022152147721499205,
0.04522283002734184,
-0.02866184152662754,
-0.04504003748297691,
-0.025005994364619255,
-0.055715110152959824,
-0.059480633586645126,
-0.008353610523045063,
-0.045990556478500366,
0.029191939160227776,
-0.02253829687833786,
0.014806181192398071,
0.032628435641527176,
-0.03875197842717171,
-0.0026047909632325172,
0.028076905757188797,
0.02517050690948963,
-0.011049797758460045,
-0.006850143428891897,
-0.046612050384283066,
0.023306025192141533,
0.014760483056306839,
0.06979012489318848,
-0.0730438232421875,
0.046538934111595154,
0.07202018797397614,
-0.01076646987348795,
0.06299024820327759,
-0.014303501695394516,
0.04394328221678734,
-0.07191051542758942,
-0.023744726553559303,
0.022739369422197342,
0.033048857003450394,
0.02347053773701191,
-0.0592978410422802,
0.051474329084157944,
0.06112576276063919,
0.004423575010150671,
-0.012585253454744816,
-0.004430429544299841,
0.02284904383122921,
0.01182666514068842,
-0.02122219279408455,
-0.004631501156836748,
-0.00860495027154684,
0.004581233486533165,
0.013819102197885513,
0.014998112805187702,
-0.013928777538239956,
-0.03261015564203262,
0.008728334680199623,
0.009331549517810345,
0.03282950818538666,
0.05143776908516884,
0.010483141988515854,
0.03937347233295441,
-0.01182666514068842,
-0.022702811285853386,
0.0013572332682088017,
0.03860574588179588,
0.006548536010086536,
0.026175865903496742,
0.0011732984567061067,
-0.05300978198647499,
-0.003208005800843239,
-0.03566278889775276,
-0.02021683380007744,
0.05045069009065628,
0.061527907848358154,
-0.07750395685434341,
-0.0053786649368703365,
0.011908922344446182,
-0.00224491860717535,
0.006603373680263758,
0.01020895317196846,
-0.043358348309993744,
0.015774980187416077,
-0.05564199388027191,
-0.11844944953918457,
0.009235584177076817,
-0.008577531203627586,
0.009468643926084042,
-0.04957328736782074,
-0.06324615329504013,
-0.006260638125240803,
0.03335960581898689,
-0.017328714951872826,
-0.0505603663623333,
0.03769178315997124,
0.03635739907622337,
0.00682272482663393,
0.02142326347529888,
-0.008892848156392574,
-0.020253393799066544,
-0.010163255035877228,
0.01464166771620512,
0.007352822460234165,
-0.05074315890669823,
0.01302395574748516,
0.09753800183534622,
0.03566278889775276,
-0.016378195956349373,
-0.05377751216292381,
0.02515222877264023,
0.03856918588280678,
-0.012046015821397305,
0.002360306214541197,
0.0843038335442543,
0.03765522688627243,
0.005753389559686184,
-0.004037426318973303,
-0.0020415622275322676,
-0.03542516008019447,
0.01179924700409174,
-0.06591492146253586,
0.014970693737268448,
-0.05458179861307144,
-0.04215191677212715,
-0.04628302529454231,
-0.04346802085638046,
0.023433979600667953,
-0.028826354071497917,
-0.008796881884336472,
-0.051839910447597504,
-0.00881516095250845,
0.007115192245692015,
-0.024951156228780746,
0.0318424291908741,
0.037984251976013184,
-0.07757707685232162,
0.0043253242038190365,
-0.028003789484500885,
0.028296256437897682,
-0.0024928308557718992,
0.024713527411222458,
-0.027875835075974464,
-0.02478664368391037,
0.02403719536960125,
0.04778192192316055,
-0.07063096761703491,
-0.00045269669499248266,
-0.030270414426922798,
-0.06397732347249985,
0.016433032229542732,
0.016094867140054703,
0.04196912422776222,
0.057360243052244186,
-0.06130855530500412,
0.005945321172475815,
-0.0424443855881691,
0.03034353069961071,
0.028314536437392235,
-0.030508045107126236,
-0.015811538323760033,
-0.0486958846449852,
-0.013289004564285278,
0.03416389226913452,
-0.0009602311183698475,
0.07545668631792068,
0.03125749155879021,
0.03856918588280678,
-0.02478664368391037,
0.030361810699105263,
-0.009386387653648853,
-0.0015982906334102154,
0.020582418888807297,
0.037362758070230484,
0.03582730144262314,
-0.02878979593515396,
-0.002233494073152542,
0.023689888417720795,
-0.05227861553430557,
0.028936030343174934,
0.01804160512983799,
0.004320754203945398,
-0.004535535350441933,
0.00791947916150093,
-0.004053420387208462,
0.039117563515901566,
-0.008312482386827469,
-0.008198237046599388,
0.0774308443069458,
-0.012749766930937767,
-0.02696187235414982,
0.02365333028137684,
0.048805560916662216,
-0.006036717444658279,
-0.004099118523299694,
-0.02535329945385456,
-0.004480697680264711,
-0.03282950818538666,
0.0013549483846873045,
-0.023525375872850418,
-0.014367478899657726,
-0.0007254571537487209,
0.06379453092813492,
-0.06284401565790176,
0.013490076176822186,
0.01710936427116394,
-0.04489380121231079,
-0.08591240644454956,
0.009852508082985878,
-0.004434999544173479,
0.002315750578418374,
-0.007768675219267607,
0.02010715939104557,
0.06675577163696289,
-0.00922644417732954,
-0.00922644417732954,
0.031878985464572906,
-0.018005046993494034,
-0.004604082554578781,
-0.01039174571633339,
-0.020399626344442368,
-0.005177593324333429,
-0.06565901637077332,
0.05980965867638588,
-0.020271671935915947,
-0.0340176559984684,
0.0000715817732270807,
-0.028332814574241638,
-0.004227073397487402,
-0.04536906257271767,
0.033999379724264145,
-0.026742521673440933,
0.0034433510154485703,
0.048659324645996094,
-0.034748826175928116,
0.023799564689397812,
-0.04043366760015488,
-0.07940500229597092,
0.0016588406870141625,
0.05264419689774513,
0.06642673909664154,
-0.021368427202105522,
0.027126384899020195,
-0.010611096397042274,
-0.0009493777761235833,
0.03133061155676842,
0.004757171031087637,
0.021807128563523293,
-0.05107218399643898,
-0.0069049810990691185,
-0.008961395360529423,
0.015756700187921524,
0.03434668481349945,
0.05483770743012428,
0.0011732984567061067,
0.01426694355905056,
0.0013686578022316098,
-0.014568550512194633,
-0.015628745779395103,
0.008641508407890797,
-0.07381155341863632,
-0.0032994020730257034,
0.015729282051324844,
-0.003022928489372134,
0.03441980108618736,
-0.0121739711612463,
-0.0015685869148001075,
-0.022647973150014877,
0.009208165109157562,
0.05838387832045555,
0.012758905999362469,
0.007293414790183306,
-0.015555629506707191,
-0.021770570427179337,
0.06770628690719604,
-0.0648912861943245,
-0.018882449716329575,
0.003422786947339773,
0.051839910447597504,
0.023525375872850418,
-0.03838639333844185,
-0.0730438232421875,
-0.007878350093960762,
0.0020107158925384283,
0.05608069524168968,
-0.014669086784124374,
0.02765648439526558,
0.029246777296066284,
0.035809021443128586,
0.022117875516414642,
0.008093131706118584,
-0.027181223034858704,
0.03827672079205513,
-0.01959533989429474,
0.04763568937778473,
0.006799875758588314,
-0.056226927787065506,
0.02659628726541996,
0.10060891509056091,
0.035754185169935226,
-0.044966921210289,
-0.016423894092440605,
-0.03657675161957741,
0.02910054288804531,
-0.0069049810990691185,
0.021715732291340828,
0.044418543577194214,
0.06891271471977234
]
|
42,195 | werkzeug.exceptions | NotAcceptable | *406* `Not Acceptable`
Raise if the server can't return any content conforming to the
`Accept` headers of the client.
| class NotAcceptable(HTTPException):
"""*406* `Not Acceptable`
Raise if the server can't return any content conforming to the
`Accept` headers of the client.
"""
code = 406
description = (
"The resource identified by the request is only capable of"
" generating response entities which have content"
" characteristics not acceptable according to the accept"
" headers sent in the request."
)
| (description: str | None = None, response: 'Response | None' = None) -> 'None' | [
-0.004056599922478199,
-0.05053954944014549,
-0.05649956688284874,
-0.0065801325254142284,
-0.015063679777085781,
-0.019482014700770378,
0.016639811918139458,
0.04092773422598839,
0.04568196460604668,
0.015657959505915642,
0.09914984554052353,
-0.015012003481388092,
0.017931722104549408,
-0.02325439453125,
-0.006063368171453476,
-0.0068686590529978275,
-0.0034063381608575583,
0.028456488624215126,
0.05574164539575577,
-0.06938422471284866,
-0.021239014342427254,
-0.01196309458464384,
-0.00014049530727788806,
0.008065829984843731,
0.006351894699037075,
0.09591145813465118,
-0.03014458529651165,
-0.01201477088034153,
0.03326239809393883,
-0.014236857183277607,
-0.023357747122645378,
-0.04399386793375015,
0.016381429508328438,
0.04327039793133736,
-0.0036754861939698458,
0.04568196460604668,
0.002484775148332119,
0.010180257260799408,
-0.06735161691904068,
0.020360514521598816,
-0.11058756709098816,
0.03374471142888069,
-0.04144449904561043,
-0.03675916790962219,
-0.0043235947377979755,
-0.031023085117340088,
0.0019572449382394552,
0.046818848699331284,
-0.04141004756093025,
-0.009646267630159855,
-0.024580756202340126,
-0.04151340201497078,
0.02284098230302334,
-0.030006781220436096,
-0.013229167088866234,
-0.011032918468117714,
0.03245279937982559,
0.07000434398651123,
-0.044131673872470856,
0.004857584834098816,
-0.052916668355464935,
0.033985868096351624,
0.020429415628314018,
-0.08929687738418579,
-0.014064602553844452,
0.0174407958984375,
-0.0016450331313535571,
-0.019016927108168602,
-0.011627197265625,
0.0404798723757267,
0.023288846015930176,
0.04282253608107567,
-0.0007250849157571793,
0.06697265803813934,
0.037861600518226624,
0.03495049476623535,
-0.05863552540540695,
0.013522000052034855,
-0.0073552788235247135,
0.025114746764302254,
0.0671793594956398,
-0.060495875775814056,
0.02868041954934597,
-0.025700412690639496,
0.046302083879709244,
-0.07024549692869186,
0.008388807997107506,
-0.05115966871380806,
-0.009405110962688923,
-0.00006627771654166281,
-0.035622287541627884,
-0.015037842094898224,
-0.05629286170005798,
-0.036896973848342896,
0.00808736216276884,
0.05570719391107559,
0.029128283262252808,
-0.03395141661167145,
0.058945585042238235,
-0.04364936053752899,
-0.014400498941540718,
0.16123047471046448,
-0.03634575754404068,
-0.013255004771053791,
0.019947102293372154,
-0.003268534317612648,
-0.025442030280828476,
-0.05708523094654083,
-0.03222886845469475,
-0.0048834229819476604,
0.03451985865831375,
0.00021437645773403347,
-0.011179334484040737,
0.0071787177585065365,
0.0044484795071184635,
-0.01437466125935316,
0.018551839515566826,
0.022961560636758804,
0.01738050766289234,
0.0073552788235247135,
0.03913628309965134,
-0.017862820997834206,
-0.0028378975111991167,
-0.008673028089106083,
0.01980930007994175,
0.04926486685872078,
-0.016476169228553772,
-0.021118436008691788,
0.034158121794462204,
0.04781792685389519,
0.0011681027244776487,
0.04299479350447655,
-0.0040824380703270435,
0.012634887360036373,
-0.018655192106962204,
0.04371826350688934,
-0.06866075098514557,
-0.0009920798474922776,
0.06948757916688919,
-0.0018409729236736894,
-0.013608126901090145,
-0.04761122167110443,
0.027664117515087128,
0.03737928718328476,
-0.041203342378139496,
0.014658881351351738,
-0.0025084600783884525,
-0.045509710907936096,
-0.04743896424770355,
0.02049831859767437,
0.023237168788909912,
0.07861708104610443,
0.03109198622405529,
-0.028043078258633614,
-0.014727783389389515,
-0.006291605532169342,
0.016975708305835724,
-0.039653047919273376,
-0.012255927547812462,
-0.037000324577093124,
0.0019249471370130777,
-0.04692219942808151,
0.08027072250843048,
0.009861585684120655,
0.00019836213323287666,
-0.0022328526247292757,
-0.019430339336395264,
-0.04850694537162781,
0.019688721746206284,
0.0073509723879396915,
-0.038964029401540756,
0.023977864533662796,
-0.030540771782398224,
-0.03481268882751465,
0.06521565467119217,
0.05622395873069763,
0.04892035573720932,
0.007518921047449112,
-0.016071369871497154,
-0.010137193836271763,
0.08743652701377869,
-0.03985975682735443,
-0.021824680268764496,
0.025442030280828476,
-0.02023993618786335,
0.015365125611424446,
0.011799451895058155,
-0.035191651433706284,
-0.013461710885167122,
0.025700412690639496,
0.04468289017677307,
-0.02366780675947666,
0.005624118261039257,
-0.011799451895058155,
-0.024701334536075592,
-0.02452908083796501,
0.011549682356417179,
-0.006834208033978939,
0.047680120915174484,
0.049988336861133575,
-0.028387587517499924,
-0.018155653029680252,
-0.004780069924890995,
0.010249159298837185,
0.006291605532169342,
0.016131659969687462,
-0.07744574546813965,
-0.09825412184000015,
-0.0594278983771801,
-0.026475558057427406,
-0.053364530205726624,
-0.00136188929900527,
-0.014107665978372097,
0.05157307907938957,
0.024063991382718086,
-0.009594591334462166,
-0.0017440796364098787,
-0.028043078258633614,
0.014271307736635208,
-0.04985053092241287,
0.012695176526904106,
0.02290988527238369,
-0.0021757930517196655,
0.014055989682674408,
0.057050783187150955,
-0.024925265461206436,
-0.01679483987390995,
-0.025993244722485542,
-0.05901448428630829,
0.013573676347732544,
-0.06290744245052338,
0.009620429016649723,
-0.0071830241940915585,
0.0015998162562027574,
-0.0054174126125872135,
0.03624240309000015,
0.06917751580476761,
-0.019309761002659798,
-0.004887729417532682,
-0.0039726258255541325,
-0.014090440236032009,
-0.013504774309694767,
-0.011179334484040737,
0.025183647871017456,
-0.04192681238055229,
-0.04519965127110481,
-0.035691190510988235,
0.04178901016712189,
-0.04227132350206375,
-0.008617045357823372,
-0.06228732690215111,
-0.013418647460639477,
-0.030868055298924446,
-0.03126424178481102,
0.06376871466636658,
-0.01683790422976017,
-0.12140516191720963,
-0.005150417797267437,
-0.003632422536611557,
-0.00544755719602108,
0.006885884795337915,
0.027922499924898148,
-0.011454942636191845,
0.044820692390203476,
-0.014968940056860447,
-0.007221781648695469,
-0.023202717304229736,
0.05295111611485481,
-0.008750542998313904,
0.03886067867279053,
0.06573241949081421,
0.006476779468357563,
-0.0071830241940915585,
-0.024666883051395416,
-0.009095052257180214,
-0.0051202732138335705,
-0.0071787177585065365,
0.03512274846434593,
-0.08295790106058121,
0.021394042298197746,
-0.05022949352860451,
-0.009396498091518879,
0.02204861119389534,
0.012867432087659836,
-0.021411268040537834,
0.048196885734796524,
-0.014564141631126404,
0.0577053502202034,
-0.00788065604865551,
-0.02092895470559597,
0.02402954176068306,
0.021083984524011612,
-0.008802219294011593,
-0.029679497703909874,
0.010834825225174427,
0.03386528789997101,
-0.01464165560901165,
0.0028034464921802282,
0.03193603456020355,
-0.037241481244564056,
0.007032301276922226,
0.024942491203546524,
0.05450141057372093,
-0.039928656071424484,
-0.03066135011613369,
-0.03782714903354645,
0.03209106624126434,
0.00006573941936949268,
-0.04282253608107567,
0.0037680731620639563,
-0.007854817435145378,
-0.0041534933261573315,
-0.0012951405951753259,
-0.03247002512216568,
0.04199571534991264,
0.048196885734796524,
0.025941569358110428,
0.03979085385799408,
-0.023461099714040756,
0.008449097163975239,
-0.03383083641529083,
0.05160753056406975,
-0.026768391951918602,
-0.009112277999520302,
0.0015018463600426912,
0.0020745934452861547,
0.039756402373313904,
0.028267009183764458,
-0.02161797508597374,
0.03858507052063942,
-0.02006768062710762,
-0.014788072556257248,
-0.02911105751991272,
0.0009360970580019057,
-0.02601047046482563,
-0.07427626103162766,
0.04960937425494194,
-0.04213351756334305,
0.0067610000260174274,
0.004377424251288176,
0.03526055067777634,
-0.012161186896264553,
0.058359917253255844,
0.04003201052546501,
0.02161797508597374,
-0.027267931029200554,
-0.0008074442739598453,
0.01490003801882267,
-0.033021241426467896,
0.006476779468357563,
-0.06786838173866272,
0.02420179545879364,
0.01007690466940403,
0.018103977665305138,
0.012893269769847393,
-0.0030553690157830715,
-0.001694556325674057,
-0.008457709103822708,
-0.04251248016953468,
0.015055066905915737,
0.03868842124938965,
-0.00835435651242733,
-0.006842820905148983,
0.003699171356856823,
-0.024856364354491234,
0.015175645239651203,
0.04451063275337219,
-0.021497396752238274,
-0.00872039794921875,
-0.010464477352797985,
0.007996927946805954,
0.005572441965341568,
-0.06504340469837189,
0.011549682356417179,
0.030213488265872,
-0.016476169228553772,
-0.04933376610279083,
0.023409424349665642,
-0.056120604276657104,
0.057843152433633804,
-0.019688721746206284,
0.014891425147652626,
-0.02144571952521801,
-0.05677517503499985,
0.008836669847369194,
-0.0587044283747673,
0.02900770492851734,
-0.01201477088034153,
-0.04685330018401146,
0.004792989231646061,
-0.008220858871936798,
-0.06959092617034912,
0.020136583596467972,
0.029593370854854584,
-0.055155977606773376,
-0.04985053092241287,
-0.005985853262245655,
-0.028869900852441788,
0.040342070162296295,
0.008431871421635151,
0.05443250760436058,
0.06859184801578522,
-0.0432014986872673,
0.030730251222848892,
-0.018930800259113312,
0.009362046606838703,
0.031470946967601776,
0.00405875314027071,
-0.008423258550465107,
0.0027173191774636507,
0.02874932251870632,
-0.03047187067568302,
0.017277153208851814,
0.009939100593328476,
0.021239014342427254,
0.09219075739383698,
-0.00718733062967658,
-0.05501817539334297,
-0.04013536125421524,
-0.02463243342936039,
0.03365858271718025,
0.02273762971162796,
0.08020182698965073,
0.06252848356962204,
-0.011687486432492733,
0.0020907423458993435,
-0.021325141191482544,
-0.0055336845107376575,
0.0016827138606458902,
-0.025252550840377808,
0.054225802421569824,
-0.04313259571790695,
-0.05229654908180237,
-0.03565673902630806,
0.03360690549015999,
-0.038895126432180405,
-0.056534018367528915,
-0.0006508000660687685,
-0.010516153648495674,
0.014633042737841606,
0.013961249962449074,
-0.018293457105755806,
0.02738850936293602,
0.039928656071424484,
0.08006402105093002,
-0.0810975506901741,
0.01128268800675869,
0.018930800259113312,
0.04196126386523247,
-0.03365858271718025,
0.02006768062710762,
-0.0621495246887207,
0.001403876463882625,
-0.013728705234825611,
0.016596747562289238,
0.021170111373066902,
0.018827447667717934,
0.009654880501329899,
-0.05426025390625,
0.0015696716727688909,
0.07262261211872101,
0.056637369096279144,
-0.012884656898677349,
-0.051883138716220856,
-0.024511855095624924,
0.021497396752238274,
-0.00008256117871496826,
-0.03830946236848831,
0.018224555999040604,
0.04106554016470909,
-0.007639499381184578,
0.006649034097790718,
0.022858208045363426,
-0.05536268651485443,
-0.011954481713473797,
0.02351277694106102,
0.01619194820523262,
0.020463867112994194,
0.005649956408888102,
-0.008190714754164219,
0.07372504472732544,
-0.02487359009683132,
0.0024740092922002077,
-0.010946790687739849,
0.017793918028473854,
-0.046302083879709244,
-0.033469103276729584,
0.024253472685813904,
-0.00887112133204937,
-0.04513075202703476,
0.0653190091252327,
-0.02678561769425869,
-0.031746555119752884,
-0.05629286170005798,
0.06724826246500015,
-0.0009549374226480722,
-0.03837836533784866,
0.012066447176039219,
0.00605044886469841,
-0.029042154550552368,
0.0215318463742733,
-0.09763401001691818,
0.010886501520872116,
0.02015380933880806,
0.02325439453125,
-0.06897081434726715,
0.06173611059784889,
0.0062097846530377865,
0.06666259467601776,
0.014633042737841606,
-0.05022949352860451,
0.042409125715494156,
0.028525391593575478,
0.020877279341220856,
0.00013982242671772838,
0.033538006246089935,
-0.046474337577819824,
0.027577988803386688,
0.0447862409055233,
0.009077826514840126,
0.048369139432907104,
0.008767767809331417,
0.05997911095619202,
-0.006403571460396051,
0.019413113594055176,
0.04692219942808151,
-0.013573676347732544,
-0.06297634541988373,
0.013099975883960724,
0.021170111373066902,
0.011515231803059578,
0.04761122167110443,
0.061115995049476624,
0.034330375492572784,
-0.03644911199808121,
0.0068169827573001385,
0.001364042516797781,
0.019860975444316864,
-0.020980631932616234,
0.01142049115151167,
0.024322373792529106,
0.037069227546453476,
-0.02075670100748539,
-0.019843749701976776,
-0.05184868723154068,
-0.04840359091758728,
-0.02084282785654068,
-0.03551893308758736,
0.008896959014236927,
-0.05281331390142441,
-0.050505101680755615,
-0.0050470647402107716,
-0.0008596589905209839,
0.003449401818215847,
0.014228244312107563,
0.041134439408779144,
0.012936333194375038,
0.003249155590310693,
0.019705945625901222,
-0.022599825635552406,
0.026406656950712204,
-0.04960937425494194,
0.04609537869691849,
0.012221476063132286,
-0.016725938767194748,
0.04030761867761612,
-0.021928032860159874,
-0.0020121510606259108,
-0.03589789569377899,
-0.03737928718328476,
0.0031824070028960705,
0.014968940056860447,
0.03219441697001457,
0.006007385440170765,
-0.003884345293045044,
0.01756998710334301,
0.003750847652554512,
0.01055060513317585,
0.042684733867645264,
-0.031023085117340088,
0.017104899510741234,
-0.03744818642735481,
-0.02427069842815399,
-0.07903049141168594,
0.0014124891022220254,
-0.05208984389901161,
-0.026475558057427406,
0.0035893588792532682,
0.015528768301010132,
-0.01210089772939682,
-0.013961249962449074,
-0.02566596120595932,
0.05649956688284874,
-0.11141438782215118,
0.039308540523052216,
0.05811876058578491,
-0.011403266340494156,
-0.050091687589883804,
-0.05622395873069763,
0.0061968653462827206,
0.04840359091758728,
0.020687798038125038,
-0.005098741501569748,
0.022100288420915604,
0.06573241949081421,
0.03228054568171501,
-0.015701021999120712,
0.008078749291598797,
-0.005520765669643879,
-0.0723470076918602,
0.0061451890505850315,
-0.028456488624215126,
-0.04719780758023262,
-0.06959092617034912,
-0.040514323860406876,
0.02196248434484005,
0.006351894699037075,
0.020360514521598816,
-0.02103230729699135,
0.00308982003480196,
0.0069935438223183155,
-0.05625841021537781,
-0.01283298060297966,
0.015261773020029068,
-0.04754231870174408,
0.04568196460604668,
-0.006834208033978939,
0.055431585758924484,
-0.08419813215732574,
-0.053709037601947784,
0.03538113087415695,
0.04754231870174408,
0.0064595541916787624,
0.04468289017677307,
-0.011205173097550869,
0.024563530460000038,
0.021118436008691788,
0.0034666273277252913,
0.026079373434185982,
0.005693020299077034,
0.07958170771598816,
0.013117200694978237,
-0.05277886241674423,
-0.0067480807192623615,
-0.048265788704156876,
0.0071184285916388035,
0.01688096858561039,
-0.012729628011584282,
0.05884223058819771,
-0.03505384549498558,
0.014357435517013073,
0.009878811426460743,
-0.00424177385866642,
-0.06090928986668587,
-0.042167969048023224,
0.024098442867398262,
0.028818223625421524,
-0.004538913257420063,
0.0076050483621656895,
0.009611816145479679,
0.03495049476623535,
0.0064595541916787624,
0.07179579138755798,
-0.048265788704156876,
0.031195340678095818,
0.0008596589905209839,
-0.012850206345319748,
-0.10734917968511581,
0.04271918535232544,
0.01020609587430954,
0.02230699360370636,
0.002087512519210577,
-0.0010706711327657104,
0.013289456255733967,
-0.06724826246500015,
0.05281331390142441,
-0.037172582000494,
-0.018482936546206474,
0.02427069842815399,
0.035088296979665756,
0.032676730304956436,
0.014538303017616272,
-0.014357435517013073,
0.0068686590529978275,
-0.010662570595741272,
-0.00015624046500306576,
-0.042856987565755844,
0.012591823935508728,
0.032004937529563904,
-0.018293457105755806,
-0.0014749314868822694,
-0.05749864503741264,
-0.028542615473270416,
0.04575086757540703,
-0.014762233942747116,
0.015141194686293602,
-0.024649659171700478,
0.005632731132209301,
0.035794541239738464,
0.06335530430078506,
0.01309136301279068,
0.0011594899697229266,
-0.008922797627747059,
0.02273762971162796,
-0.01836235821247101,
-0.037517089396715164,
-0.025700412690639496,
0.006963399238884449,
0.009034763090312481,
-0.022772081196308136,
-0.0018409729236736894,
0.053364530205726624,
0.02687174454331398,
0.006860046647489071,
-0.007338053546845913,
0.04781792685389519,
0.06655924767255783,
0.010731472633779049,
0.05656846985220909,
-0.0006825595628470182,
-0.04409722238779068,
-0.04161675274372101,
0.031488172709941864,
0.05694742873311043,
-0.09914984554052353,
-0.04971272870898247,
-0.008815137669444084,
-0.0361735038459301,
0.011635810136795044,
0.0071098157204687595,
0.09839192777872086,
0.050780706107616425,
-0.02334052138030529,
-0.021066758781671524,
0.0057748411782085896,
-0.004310675896704197,
-0.02893880195915699,
0.041203342378139496,
0.024597981944680214,
0.03720702975988388,
-0.006369120441377163,
0.016527846455574036,
-0.012419569306075573,
-0.043098144233226776,
-0.00808736216276884,
-0.0062097846530377865,
0.03538113087415695,
0.054914820939302444,
-0.021566297858953476,
0.10721137374639511,
0.01076592318713665,
-0.06404432654380798,
-0.0046982490457594395,
0.06183946505188942,
0.028473714366555214,
-0.007867736741900444,
-0.023736707866191864,
0.021480171009898186,
0.017216864973306656,
-0.0060762870125472546,
0.012402343563735485,
-0.0016622585244476795,
0.0035247632768005133,
-0.04289143905043602,
-0.07544758915901184,
-0.0016418033046647906,
0.022031385451555252,
-0.010240546427667141
]
|
42,204 | werkzeug.exceptions | NotFound | *404* `Not Found`
Raise if a resource does not exist and never existed.
| class NotFound(HTTPException):
"""*404* `Not Found`
Raise if a resource does not exist and never existed.
"""
code = 404
description = (
"The requested URL was not found on the server. If you entered"
" the URL manually please check your spelling and try again."
)
| (description: str | None = None, response: 'Response | None' = None) -> 'None' | [
-0.004124992061406374,
-0.025365356355905533,
-0.029111294075846672,
-0.013842135667800903,
-0.007652417756617069,
-0.032250747084617615,
-0.01501943077892065,
0.027095623314380646,
0.03399885445833206,
-0.012691597454249859,
0.03895776346325874,
0.003844046499580145,
0.07160094380378723,
-0.05194368213415146,
-0.0018294897163286805,
0.00918646901845932,
0.045807477086782455,
0.05030260607600212,
-0.013440784998238087,
-0.08590686321258545,
-0.02370643988251686,
0.03508695960044861,
0.021565904840826988,
0.01061349269002676,
-0.010997005738317966,
0.04042046144604683,
0.00261100847274065,
-0.03671019896864891,
0.041062623262405396,
-0.056331783533096313,
-0.012397273443639278,
-0.04355991631746292,
-0.011050519533455372,
0.03678154945373535,
-0.01600942760705948,
0.0343734472990036,
-0.017124291509389877,
0.026952920481562614,
-0.09432630240917206,
-0.011380518786609173,
-0.07655984908342361,
0.02177995815873146,
-0.07820092886686325,
-0.04898260906338692,
0.05601070076227188,
-0.016803210601210594,
-0.015278078615665436,
0.0027403326239436865,
-0.07306364178657532,
-0.02029941976070404,
-0.0581512376666069,
0.021012932062149048,
0.03453398868441582,
-0.03788749501109123,
0.015501051209867,
0.04730585590004921,
0.028790215030312538,
0.1028170958161354,
-0.03581830859184265,
0.0303421039134264,
-0.025204816833138466,
0.017989424988627434,
-0.019835637882351875,
0.006024717818945646,
-0.047769635915756226,
0.023385360836982727,
0.03159074857831001,
-0.016330508515238762,
-0.006113906856626272,
0.023206982761621475,
0.08376632630825043,
0.0324469655752182,
-0.04131235182285309,
0.03931451961398125,
0.08012741059064865,
0.01063133031129837,
-0.02356373891234398,
-0.010265655815601349,
0.04027776047587395,
0.0202280692756176,
0.033731285482645035,
-0.05040963366627693,
-0.017204560339450836,
-0.024830222129821777,
0.011425113305449486,
-0.030841561034321785,
0.023991845548152924,
-0.07235012948513031,
0.01837293803691864,
0.037066955119371414,
-0.07620309293270111,
-0.025169139727950096,
-0.03977829962968826,
-0.05793718621134758,
0.03489074483513832,
-0.00165334134362638,
0.04331018775701523,
-0.030663182958960533,
0.025401031598448753,
-0.037066955119371414,
0.06703446805477142,
0.027220487594604492,
-0.005431611090898514,
0.025365356355905533,
0.0034493852872401476,
-0.03237561136484146,
-0.008642415516078472,
-0.02845129556953907,
0.01800726167857647,
-0.00045402784598991275,
0.024205898866057396,
0.011166464537382126,
-0.018087532371282578,
-0.007697012275457382,
-0.014635917730629444,
0.004588774871081114,
0.04074154421687126,
0.01042619626969099,
0.00356087158434093,
-0.03799452260136604,
0.01726699434220791,
0.013654838316142559,
-0.08654902130365372,
-0.03952857106924057,
0.060363125056028366,
0.017427533864974976,
-0.04459450766444206,
-0.022208064794540405,
0.009043766185641289,
0.006096069235354662,
0.0014727336820214987,
0.005324584431946278,
-0.04420207813382149,
0.00794674176722765,
-0.04156208038330078,
0.03649614378809929,
-0.008504172787070274,
0.031465884298086166,
-0.0054583679884672165,
0.017427533864974976,
-0.05212206020951271,
0.01618780568242073,
-0.029717780649662018,
0.032357774674892426,
0.0031439128797501326,
0.017623750492930412,
-0.022154550999403,
-0.05804421007633209,
0.02700643427670002,
0.022422118112444878,
0.053656112402677536,
-0.01028349343687296,
0.027202649042010307,
0.004727018065750599,
-0.023813467472791672,
-0.008513091132044792,
0.029735617339611053,
-0.06382366269826889,
-0.00044733865070156753,
-0.006305663380771875,
0.046806395053863525,
-0.05411989614367485,
0.06906797736883163,
-0.03205453231930733,
-0.02989615872502327,
0.037923168390989304,
-0.01183538231998682,
0.0060737719759345055,
-0.015536726452410221,
0.01752564124763012,
-0.05711664631962776,
0.007683633826673031,
-0.07677390426397324,
-0.019621582701802254,
0.057295024394989014,
-0.0013222271809354424,
0.041918836534023285,
-0.0047582341358065605,
-0.015563483349978924,
-0.03207236900925636,
0.0465923435986042,
-0.03870803117752075,
-0.0529782772064209,
0.035693444311618805,
0.0007670255145058036,
0.03963559865951538,
-0.03753073886036873,
0.0300388615578413,
0.0018595909932628274,
0.04641396552324295,
0.00406701909378171,
-0.0324469655752182,
-0.003001210279762745,
0.038137223571538925,
0.024616168811917305,
-0.005525259766727686,
0.03205453231930733,
-0.022689685225486755,
0.10410141944885254,
0.029682105407118797,
-0.002582021988928318,
0.10695546865463257,
0.004829585086554289,
0.004107153974473476,
0.007598903961479664,
0.046628016978502274,
0.023135630413889885,
-0.022493470460176468,
-0.05690259113907814,
0.014484296552836895,
-0.03663884848356247,
0.015848888084292412,
-0.022172389551997185,
0.04809071868658066,
0.011995922774076462,
0.04152640700340271,
-0.04941071569919586,
-0.025240492075681686,
0.005690259393304586,
0.007228769827634096,
0.008423903025686741,
-0.02827291749417782,
0.028290756046772003,
-0.02029941976070404,
0.021012932062149048,
0.014493214897811413,
0.053656112402677536,
-0.021137796342372894,
-0.04067019000649452,
-0.03027075156569481,
-0.031091291457414627,
0.03671019896864891,
0.016062941402196884,
0.00406701909378171,
0.07274255901575089,
0.014100783504545689,
-0.004011276178061962,
0.020174555480480194,
-0.0033200611360371113,
-0.012218895368278027,
-0.003964451607316732,
-0.029610753059387207,
-0.0475555844604969,
0.07713066041469574,
0.03159074857831001,
-0.018979422748088837,
-0.034730203449726105,
0.05697394534945488,
-0.03681722655892372,
-0.049731794744729996,
-0.031983181834220886,
-0.0005078199319541454,
-0.02377779223024845,
-0.0626106858253479,
0.061326365917921066,
-0.07210040092468262,
-0.07527553290128708,
-0.03956424817442894,
0.024848060682415962,
0.029646428301930428,
-0.051622603088617325,
-0.014841052703559399,
0.007523093372583389,
0.06385933607816696,
-0.028950754553079605,
-0.03827992454171181,
-0.022029686719179153,
0.058222588151693344,
-0.003166210139170289,
0.054440975189208984,
0.13471108675003052,
0.02615021914243698,
0.01353889238089323,
0.011050519533455372,
0.014225647784769535,
-0.04541504755616188,
0.01892590895295143,
0.04145505651831627,
-0.008392686024308205,
0.008852009661495686,
-0.0010451837442815304,
0.0010111804585903883,
0.00638147396966815,
-0.02029941976070404,
0.0017280371394008398,
0.025365356355905533,
-0.01626807637512684,
0.041883163154125214,
-0.0542982742190361,
-0.025954004377126694,
0.04534369707107544,
0.018801044672727585,
-0.03763776645064354,
0.0036255335435271263,
-0.00933809019625187,
0.0437026172876358,
-0.030573993921279907,
0.043773967772722244,
0.030502643436193466,
-0.01885455846786499,
-0.011612409725785255,
0.007790660485625267,
0.04630693793296814,
-0.026096705347299576,
-0.020442122593522072,
-0.025347517803311348,
0.03351723402738571,
0.01937185414135456,
-0.007839714176952839,
-0.009257819503545761,
-0.005226476117968559,
0.010756195522844791,
-0.009293495677411556,
0.056617189198732376,
0.014475377276539803,
0.10417277365922928,
0.010640249587595463,
-0.007866471074521542,
-0.012914569117128849,
0.035764794796705246,
-0.020138880237936974,
0.041883163154125214,
0.0016722941072657704,
-0.04834044724702835,
-0.022101039066910744,
-0.039956677705049515,
0.011594572104513645,
0.0012430718634277582,
-0.0074829584918916225,
0.015545645728707314,
0.058400966227054596,
-0.03460533916950226,
0.021030770614743233,
-0.058222588151693344,
-0.049624767154455185,
-0.045843154191970825,
0.0202280692756176,
-0.03581830859184265,
0.019318340346217155,
-0.012700515799224377,
0.008771739900112152,
-0.035176146775484085,
-0.0011243390617892146,
0.04309613257646561,
-0.012192138470709324,
-0.029218321666121483,
0.0017525642178952694,
-0.02515130303800106,
-0.012941326014697552,
-0.03185831755399704,
-0.022511307150125504,
0.04348856583237648,
-0.031073452904820442,
0.016357265412807465,
0.020905904471874237,
0.007523093372583389,
0.011621329002082348,
-0.0658571720123291,
-0.021726444363594055,
-0.0242594126611948,
-0.03137669712305069,
-0.01429699920117855,
-0.0571879968047142,
-0.0340166911482811,
-0.043131809681653976,
-0.025365356355905533,
0.05890042707324028,
-0.015117538161575794,
-0.032696694135665894,
-0.01656240038573742,
-0.01369051355868578,
-0.03735236078500748,
-0.02545454539358616,
-0.016428615897893906,
0.00781741738319397,
-0.03942154347896576,
0.009141874499619007,
-0.016508886590600014,
-0.05012422800064087,
0.012754029594361782,
0.008392686024308205,
0.005065936129540205,
-0.07613174617290497,
-0.01278078556060791,
0.03588965907692909,
-0.050445307046175,
0.0300388615578413,
0.04223991930484772,
-0.025401031598448753,
0.06767662614583969,
0.008062686771154404,
-0.05761610344052315,
0.035657767206430435,
-0.0015652672154828906,
-0.03262534365057945,
-0.05715231969952583,
-0.01470726914703846,
-0.0009102853946387768,
-0.01981779932975769,
0.0048608011566102505,
0.04373829439282417,
0.049553416669368744,
-0.03646047040820122,
0.058258265256881714,
0.04056316614151001,
0.024544816464185715,
0.039064787328243256,
-0.015884563326835632,
-0.0187832061201334,
-0.02136968821287155,
-0.04163343086838722,
-0.03219723328948021,
-0.045807477086782455,
-0.05319232866168022,
0.03735236078500748,
0.02738102711737156,
0.03189399093389511,
0.0052309357561171055,
-0.03082372434437275,
-0.010952411219477654,
0.019015097990632057,
-0.06004204601049423,
0.11808625608682632,
0.024776708334684372,
-0.010898897424340248,
0.00006985311483731493,
-0.010417276993393898,
0.00018743629334494472,
0.028950754553079605,
0.011674841865897179,
-0.01978212408721447,
-0.03501560911536217,
-0.048804230988025665,
-0.058258265256881714,
-0.0019721921999007463,
-0.053442057222127914,
-0.06100528687238693,
-0.026132382452487946,
-0.013280244544148445,
0.015875644981861115,
0.04049181193113327,
-0.022154550999403,
0.038993436843156815,
0.056403134018182755,
0.051515575498342514,
-0.033321015536785126,
0.009115117602050304,
0.017980504781007767,
0.04259667545557022,
-0.04616423323750496,
-0.011719436384737492,
-0.019425367936491966,
0.016687264665961266,
0.011273491196334362,
-0.004405937623232603,
-0.03924316540360451,
-0.09347008913755417,
0.013146460987627506,
-0.008312416262924671,
0.00848187506198883,
-0.011050519533455372,
0.09168630838394165,
-0.025062114000320435,
-0.07848633080720901,
-0.028986429795622826,
-0.028362106531858444,
0.03760208934545517,
-0.029111294075846672,
0.04266802594065666,
-0.0006304548587650061,
-0.02689940668642521,
0.0026935082860291004,
-0.008901063352823257,
-0.03646047040820122,
0.004776071757078171,
0.0022876982111483812,
-0.008972414769232273,
-0.017329426482319832,
0.03970694914460182,
0.006831878796219826,
0.04812639206647873,
-0.03412371873855591,
0.01889023371040821,
-0.004767152946442366,
-0.0010529878782108426,
-0.06211123242974281,
-0.014386188238859177,
0.02670319192111492,
0.033731285482645035,
-0.02745237946510315,
0.059257183223962784,
-0.007126202341169119,
-0.010506466031074524,
-0.0242594126611948,
0.018426449969410896,
0.018569152802228928,
-0.058365292847156525,
0.03396317735314369,
-0.05986366793513298,
-0.03221507370471954,
0.008490794338285923,
-0.08191119134426117,
0.04427342861890793,
-0.006720392499119043,
0.038208574056625366,
-0.06664203107357025,
0.024348601698875427,
0.03134102001786232,
0.07527553290128708,
-0.008379308506846428,
-0.004169586580246687,
0.05244314298033714,
0.054476652294397354,
0.012174300849437714,
0.02752372995018959,
0.024544816464185715,
-0.05026692897081375,
0.00785309262573719,
0.07363445311784744,
0.05422692000865936,
0.06050582975149155,
-0.000737481692340225,
0.06906797736883163,
-0.019585907459259033,
-0.01224565226584673,
-0.0266675166785717,
-0.006448365747928619,
-0.027987513691186905,
-0.014011594466865063,
0.06642797589302063,
0.013824297115206718,
0.02597184106707573,
0.03770911693572998,
-0.01692807488143444,
0.015679428353905678,
0.049874499440193176,
-0.05504745990037918,
-0.004111613612622023,
0.020245905965566635,
0.04452315717935562,
0.03444479778409004,
0.0549047589302063,
0.006484041456133127,
-0.005177422426640987,
-0.010916735976934433,
-0.0616474486887455,
-0.060327451676130295,
0.006787284277379513,
0.025418870151042938,
0.003427088027819991,
0.031840477138757706,
0.0021829011384397745,
0.023724278435111046,
-0.07470472157001495,
0.012878893874585629,
0.07363445311784744,
-0.0010078358463943005,
0.03931451961398125,
0.035764794796705246,
0.0437026172876358,
0.004205262288451195,
-0.007893227972090244,
0.02945021353662014,
-0.03319615125656128,
-0.013298082165420055,
0.020905904471874237,
0.01915780082345009,
-0.0651436597108841,
-0.0038507357239723206,
-0.03931451961398125,
-0.01567051000893116,
0.03731668367981911,
0.03838695213198662,
0.014439702033996582,
0.023617250844836235,
0.037245333194732666,
0.011318085715174675,
-0.036299929022789,
0.0303421039134264,
-0.005543097387999296,
-0.0029655348043888807,
-0.027987513691186905,
-0.004958909470587969,
-0.03649614378809929,
-0.014983754605054855,
-0.02111995965242386,
-0.006671338342130184,
-0.010809708386659622,
0.003997897729277611,
-0.007906606420874596,
-0.01740969531238079,
-0.03644263371825218,
0.019139962270855904,
-0.05715231969952583,
0.044772885739803314,
0.05315665528178215,
-0.02449130453169346,
-0.03831560164690018,
0.0019677325617522,
0.031109128147363663,
-0.011425113305449486,
0.050623685121536255,
-0.015920238569378853,
-0.017365101724863052,
0.05508313700556755,
0.038886409252882004,
0.0010663662105798721,
-0.02852264791727066,
-0.04648531600832939,
-0.06507230550050735,
0.03877938538789749,
-0.035729121416807175,
-0.023474549874663353,
-0.01183538231998682,
-0.03041345439851284,
-0.002869656542316079,
0.004963368643075228,
-0.0027314135804772377,
-0.05215773731470108,
-0.022796712815761566,
0.011808625422418118,
-0.0485188253223896,
-0.014216729439795017,
0.0266675166785717,
-0.049731794744729996,
0.04127667844295502,
0.0475555844604969,
0.004390329122543335,
-0.08191119134426117,
-0.005257692653685808,
-0.017329426482319832,
0.07342039793729782,
-0.04809071868658066,
-0.05508313700556755,
-0.026506975293159485,
0.019532393664121628,
0.059292856603860855,
-0.0157418604940176,
0.038208574056625366,
0.07713066041469574,
0.00613174494355917,
0.02648913860321045,
-0.0735630989074707,
0.03007453680038452,
-0.028023188933730125,
0.04127667844295502,
-0.006880932487547398,
-0.06578581780195236,
0.08776199072599411,
-0.048732876777648926,
0.0002434581401757896,
0.013788621872663498,
-0.00937376543879509,
-0.005052557680755854,
-0.01730266958475113,
0.013761864975094795,
-0.040170732885599136,
-0.0427393764257431,
0.007799579296261072,
0.00010061635839520022,
0.024544816464185715,
-0.05593935027718544,
0.04159775748848915,
-0.03735236078500748,
0.008058227598667145,
0.01915780082345009,
0.0369599275290966,
-0.123294897377491,
0.01978212408721447,
-0.02122698538005352,
-0.013699432834982872,
0.02352806180715561,
0.03496209532022476,
0.0040625594556331635,
-0.01981779932975769,
0.03367777168750763,
-0.0334102064371109,
0.004312288947403431,
-0.005525259766727686,
0.026614002883434296,
0.014225647784769535,
-0.0063547175377607346,
-0.05040963366627693,
0.004109384026378393,
-0.01840861327946186,
0.09190036356449127,
-0.029664266854524612,
-0.017543479800224304,
0.003235331503674388,
-0.016062941402196884,
-0.019246989861130714,
-0.03030642680823803,
-0.04648531600832939,
0.07720201462507248,
-0.025775626301765442,
-0.018025100231170654,
0.0031862775795161724,
-0.03942154347896576,
0.02611454389989376,
0.06382366269826889,
0.024063196033239365,
-0.002831751247867942,
0.02952156402170658,
-0.001961043570190668,
0.0060737719759345055,
-0.02081671543419361,
0.005311205983161926,
-0.02641778625547886,
-0.022101039066910744,
-0.014858890324831009,
-0.01822131685912609,
0.00760336359962821,
0.034801553934812546,
-0.03644263371825218,
-0.004892017692327499,
-0.012923488393425941,
0.028790215030312538,
0.017329426482319832,
-0.015599158592522144,
0.010212142020463943,
0.020174555480480194,
-0.026881569996476173,
0.008941198699176311,
0.006671338342130184,
-0.016660507768392563,
-0.027844810858368874,
-0.04844747483730316,
-0.08505064249038696,
0.005663502495735884,
0.04837612062692642,
0.052692871540784836,
0.03831560164690018,
-0.04830477014183998,
-0.0030881697311997414,
0.03678154945373535,
-0.04113397374749184,
0.010506466031074524,
0.035283174365758896,
0.03831560164690018,
0.04127667844295502,
0.012807542458176613,
0.018604828044772148,
-0.020727528259158134,
-0.06639230251312256,
0.02741670422255993,
0.004196343012154102,
0.0054583679884672165,
0.030288590118288994,
-0.005511881317943335,
0.05183665454387665,
0.017400776967406273,
-0.04059883952140808,
0.01607186160981655,
0.058436643332242966,
-0.016428615897893906,
-0.0423826202750206,
0.03959992155432701,
0.04420207813382149,
0.007781741674989462,
0.020977256819605827,
-0.01833726093173027,
0.03408804163336754,
-0.006769446190446615,
-0.002914251061156392,
-0.01978212408721447,
0.03405236452817917,
0.010140791535377502,
0.017106452956795692
]
|
42,214 | flask_restful | Resource |
Represents an abstract RESTful resource. Concrete resources should
extend from this class and expose methods for each supported HTTP
method. If a resource is invoked with an unsupported HTTP method,
the API will return a response with status 405 Method Not Allowed.
Otherwise the appropriate method is called and passed all arguments
from the url rule used when adding the resource to an Api instance. See
:meth:`~flask_restful.Api.add_resource` for details.
| class Resource(MethodView):
"""
Represents an abstract RESTful resource. Concrete resources should
extend from this class and expose methods for each supported HTTP
method. If a resource is invoked with an unsupported HTTP method,
the API will return a response with status 405 Method Not Allowed.
Otherwise the appropriate method is called and passed all arguments
from the url rule used when adding the resource to an Api instance. See
:meth:`~flask_restful.Api.add_resource` for details.
"""
representations = None
method_decorators = []
def dispatch_request(self, *args, **kwargs):
# Taken from flask
#noinspection PyUnresolvedReferences
meth = getattr(self, request.method.lower(), None)
if meth is None and request.method == 'HEAD':
meth = getattr(self, 'get', None)
assert meth is not None, 'Unimplemented method %r' % request.method
if isinstance(self.method_decorators, Mapping):
decorators = self.method_decorators.get(request.method.lower(), [])
else:
decorators = self.method_decorators
for decorator in decorators:
meth = decorator(meth)
resp = meth(*args, **kwargs)
if isinstance(resp, ResponseBase): # There may be a better way to test
return resp
representations = self.representations or OrderedDict()
#noinspection PyUnresolvedReferences
mediatype = request.accept_mimetypes.best_match(representations, default=None)
if mediatype in representations:
data, code, headers = unpack(resp)
resp = representations[mediatype](data, code, headers)
resp.headers['Content-Type'] = mediatype
return resp
return resp
| () | [
0.015790142118930817,
-0.08213131874799728,
-0.020758673548698425,
-0.0047850338742136955,
0.03756510466337204,
-0.018650811165571213,
0.023374680429697037,
0.021153897047042847,
0.0023548766039311886,
0.014604469761252403,
0.06741393357515335,
0.009386571124196053,
0.05510552600026131,
-0.009621823206543922,
0.017164016142487526,
0.03993644937872887,
0.033706966787576675,
0.017380448058247566,
0.02371344342827797,
-0.08785266429185867,
0.039146002382040024,
0.0071704937145113945,
-0.009033693000674248,
-0.011047453619539738,
-0.00884078536182642,
0.06545662879943848,
0.0008004463161341846,
-0.03622887283563614,
0.06425213813781738,
-0.014660930261015892,
-0.020758673548698425,
-0.0029830005951225758,
0.06221955642104149,
0.04723868519067764,
0.025595461949706078,
0.021756142377853394,
0.005311999469995499,
0.02636709064245224,
-0.08190547674894333,
0.014886772260069847,
-0.06880662590265274,
0.010953351855278015,
-0.006944651249796152,
-0.07313527166843414,
0.07072628289461136,
0.025614282116293907,
-0.020457549020648003,
0.07964705675840378,
0.000502557959407568,
-0.002888899529352784,
0.012016693130135536,
-0.034121010452508926,
-0.017803901806473732,
0.003326469101011753,
-0.021812602877616882,
0.023807544261217117,
-0.002003174275159836,
0.08905715495347977,
-0.006982291582971811,
-0.00714226346462965,
0.0034934983123093843,
0.03451623395085335,
0.01737103797495365,
-0.04475441947579384,
-0.01405868399888277,
0.013512898236513138,
-0.05555720999836922,
-0.002820676425471902,
0.01567722111940384,
0.028776075690984726,
0.01750277914106846,
0.01430334709584713,
0.004516846500337124,
0.039258923381567,
0.052094295620918274,
-0.006968176458030939,
0.009927651844918728,
-0.05856844037771225,
0.05510552600026131,
-0.022113727405667305,
0.05582069233059883,
-0.045394305139780045,
-0.0046838754788041115,
-0.06229483708739281,
0.004025168716907501,
-0.07008639723062515,
-0.02727046050131321,
-0.06402629613876343,
-0.02996174804866314,
0.019328339025378227,
-0.07689930498600006,
0.00858671311289072,
-0.04968531057238579,
-0.025200238451361656,
-0.00627182936295867,
-0.008826670236885548,
-0.009339520707726479,
-0.015338457189500332,
0.03389516845345497,
-0.039146002382040024,
-0.012458967976272106,
0.08122795075178146,
-0.010586358606815338,
0.02766568399965763,
0.035513702780008316,
0.01634533703327179,
0.009993522427976131,
0.02595304697751999,
-0.05265890061855316,
0.016891123726963997,
0.008384396322071552,
0.011103914119303226,
-0.02499321661889553,
-0.005947181023657322,
-0.010962762869894505,
-0.02275361306965351,
0.0041663204319775105,
-0.019130725413560867,
0.001066281576640904,
-0.03587128967046738,
-0.009019577875733376,
-0.03122270107269287,
0.003940477967262268,
-0.04185611009597778,
-0.0062106638215482235,
0.02728928066790104,
-0.021153897047042847,
-0.010181724093854427,
-0.019093085080385208,
0.00648355670273304,
-0.08047514408826828,
0.05416451394557953,
-0.04516846314072609,
0.09282118827104568,
0.01593129336833954,
0.002966532949358225,
-0.06556954979896545,
-0.003027698490768671,
-0.012684809975326061,
0.050249915570020676,
0.0064600310288369656,
0.02544490061700344,
0.016674691811203957,
0.03880723938345909,
-0.018123846501111984,
-0.03129798173904419,
0.04592126980423927,
-0.029660623520612717,
0.01923423632979393,
0.026160068809986115,
0.015074974857270718,
0.016448847949504852,
0.049835871905088425,
-0.0367746576666832,
0.05853080004453659,
0.017164016142487526,
0.002865374321117997,
-0.026536472141742706,
0.02994292788207531,
-0.07565717399120331,
-0.018246177583932877,
-0.010360516607761383,
-0.018001515418291092,
-0.06722573190927505,
0.021229177713394165,
0.0030700438655912876,
-0.010671049356460571,
-0.02369462326169014,
-0.0005913657369092107,
0.03585246577858925,
-0.05047575756907463,
-0.03472325578331947,
0.0281550083309412,
-0.01206374354660511,
0.03088393621146679,
0.0320696085691452,
0.013155315071344376,
0.009490082040429115,
-0.000567252398468554,
0.022603051736950874,
0.08785266429185867,
-0.09244478493928909,
-0.04215723276138306,
0.008469087071716785,
-0.0011250947136431932,
0.05822967737913132,
0.000474621745524928,
-0.023864004760980606,
-0.03500555828213692,
0.033706966787576675,
-0.005340229719877243,
0.0016420618630945683,
0.013230595737695694,
-0.03743336349725723,
-0.06835494190454483,
-0.04637295380234718,
-0.026705853641033173,
-0.020909234881401062,
0.06440269947052002,
-0.03649235516786575,
-0.051680248230695724,
0.038204990327358246,
0.026178888976573944,
0.03090275637805462,
-0.003197080222889781,
0.0334058441221714,
0.02775978483259678,
-0.013926942832767963,
-0.06651056557893753,
-0.0276468638330698,
-0.034591514617204666,
0.024861475452780724,
-0.039070721715688705,
-0.010586358606815338,
0.006963471416383982,
-0.028700795024633408,
0.03489263728260994,
-0.012214304879307747,
0.014783261343836784,
-0.0491207018494606,
0.027872705832123756,
0.09282118827104568,
-0.045319024473428726,
0.02408984676003456,
-0.014124554581940174,
0.010576948523521423,
0.044415656477212906,
0.0059895263984799385,
-0.025595461949706078,
-0.007179903797805309,
-0.06289708614349365,
-0.04012465104460716,
0.011517957784235477,
0.040049370378255844,
-0.05235777795314789,
0.028851356357336044,
0.05356226861476898,
0.034629154950380325,
-0.0015950113302096725,
-0.010416977107524872,
0.03651117533445358,
0.030244050547480583,
0.006667053326964378,
-0.03159910440444946,
-0.057062823325395584,
-0.03844965249300003,
-0.0312415212392807,
0.04328644275665283,
-0.014642110094428062,
-0.06526842713356018,
0.014021043665707111,
-0.03254011273384094,
-0.012600119225680828,
-0.07098976522684097,
-0.00041669083293527365,
-0.04772800952196121,
-0.08717513084411621,
0.002230192767456174,
0.006939946208149195,
-0.0027548058424144983,
0.004020463675260544,
0.02459799312055111,
0.045319024473428726,
0.05487968400120735,
-0.010699279606342316,
-0.01697581447660923,
-0.0094806719571352,
0.010181724093854427,
-0.024372149258852005,
-0.010915711522102356,
0.10614588856697083,
-0.005834260024130344,
-0.018951933830976486,
-0.01138621661812067,
0.04230779409408569,
-0.0035170235205441713,
-0.021285638213157654,
-0.007081097457557917,
-0.028700795024633408,
-0.007015226874500513,
-0.014915002509951591,
-0.058831922709941864,
0.046636439859867096,
0.0201376061886549,
0.05224485695362091,
-0.011875541880726814,
-0.0038228516932576895,
0.0589824840426445,
-0.03180612623691559,
-0.019817663356661797,
0.09236950427293777,
0.023506421595811844,
-0.013023573905229568,
0.011160374619066715,
-0.004792091436684132,
0.02772214449942112,
-0.08348637819290161,
-0.015545479021966457,
0.04569542780518532,
-0.05085216090083122,
-0.026705853641033173,
0.0007957412744872272,
0.05894484370946884,
-0.020758673548698425,
-0.03438449278473854,
-0.061880793422460556,
0.03334938362240791,
-0.0020878652576357126,
-0.026649393141269684,
0.012317816726863384,
0.04791621118783951,
0.03922128304839134,
-0.04057633504271507,
-0.04464149847626686,
-0.026705853641033173,
0.056159455329179764,
-0.01833086833357811,
0.04949710890650749,
0.008741979487240314,
0.04723868519067764,
-0.025783663615584373,
0.06907010823488235,
-0.013324696570634842,
-0.016891123726963997,
0.02540726028382778,
-0.029284220188856125,
0.0394471250474453,
-0.013597588986158371,
-0.031090958043932915,
0.022189008072018623,
0.009786500595510006,
0.0012633054284378886,
-0.04735160619020462,
-0.014143374748528004,
-0.05322350561618805,
-0.0187072716653347,
0.008473792113363743,
-0.036849938333034515,
-0.02544490061700344,
0.007513962220400572,
0.009824140928685665,
-0.02329939976334572,
0.017342807725071907,
-0.018989574164152145,
-0.06669876724481583,
0.0162888765335083,
0.05962236970663071,
0.002325470093637705,
0.0061871386133134365,
-0.05258361995220184,
-0.0028794894460588694,
-0.06944651156663895,
0.016665281727910042,
-0.009085448458790779,
-0.014425678178668022,
-0.06993583589792252,
-0.03747100383043289,
-0.05416451394557953,
-0.006309469696134329,
-0.0187072716653347,
0.02094687521457672,
0.05664877966046333,
-0.04520610347390175,
-0.007998581975698471,
0.011254475452005863,
-0.0094806719571352,
0.022979455068707466,
-0.03978588804602623,
-0.010783970355987549,
-0.0254825409501791,
-0.020721033215522766,
-0.021643221378326416,
-0.004460385534912348,
-0.008967822417616844,
0.05487968400120735,
-0.026611752808094025,
0.011565008200705051,
-0.00783861055970192,
-0.03127916157245636,
0.03743336349725723,
0.012298996560275555,
0.030582813546061516,
0.010576948523521423,
-0.019243646413087845,
0.0024160423781722784,
-0.06278416514396667,
0.009207779541611671,
-0.0068787806667387486,
-0.0491207018494606,
0.031486183404922485,
-0.0036934628151357174,
-0.057928554713726044,
-0.029735904186964035,
0.03895780071616173,
-0.03605949133634567,
-0.05725102871656418,
-0.020457549020648003,
0.023092376068234444,
0.03453505411744118,
0.03796032816171646,
0.06109034642577171,
0.030018208548426628,
0.005787209141999483,
0.04234543442726135,
0.032408371567726135,
0.04961002990603447,
0.07302235066890717,
0.009871191345155239,
0.0074857319705188274,
0.020457549020648003,
0.027364561334252357,
-0.026498831808567047,
0.02232074923813343,
-0.017418088391423225,
0.038694318383932114,
0.0006557661108672619,
0.04422745481133461,
0.030112309381365776,
0.0007486907998099923,
0.007071687374264002,
0.056159455329179764,
0.05137912556529045,
0.07716279476881027,
0.022490130737423897,
-0.012863601557910442,
0.002451330190524459,
-0.0014738563913851976,
0.02279125340282917,
-0.012873011641204357,
0.022904174402356148,
0.045808348804712296,
0.02644237130880356,
-0.05047575756907463,
-0.036831118166446686,
0.004865020047873259,
-0.044490937143564224,
-0.018556710332632065,
-0.037339262664318085,
-0.009508902207016945,
0.005269654095172882,
0.009918241761624813,
0.0014032806502655149,
-0.003947535529732704,
0.00351937604136765,
0.0009268944850191474,
-0.04083981737494469,
-0.004043988883495331,
0.031448543071746826,
0.04437801614403725,
-0.06989819556474686,
0.010125263594090939,
-0.004846199881285429,
0.00307239661924541,
0.029735904186964035,
-0.03698167949914932,
-0.032446011900901794,
0.06809145957231522,
-0.019290698692202568,
-0.023788724094629288,
0.01589365303516388,
0.033763427287340164,
0.005208488553762436,
-0.01625123620033264,
-0.06391337513923645,
-0.03517493978142738,
0.015573709271848202,
0.034629154950380325,
0.006977586541324854,
-0.02277243323624134,
-0.022471310570836067,
0.03212606906890869,
-0.004526256583631039,
-0.018048565834760666,
-0.04814205318689346,
-0.021229177713394165,
0.06775269657373428,
0.049760591238737106,
0.023431140929460526,
-0.02367580309510231,
-0.0024772079195827246,
0.03654881566762924,
-0.0015409033512696624,
-0.018537890166044235,
-0.03748982399702072,
-0.006827025208622217,
-0.014689160510897636,
0.0005443152622319758,
0.05243305861949921,
0.01691935397684574,
-0.021756142377853394,
0.05081452056765556,
0.06033753976225853,
-0.05694990232586861,
0.04949710890650749,
-0.03301061689853668,
0.05627237632870674,
-0.02508731745183468,
-0.034610334783792496,
0.006549427285790443,
-0.009334815666079521,
0.016674691811203957,
-0.09252006560564041,
0.025256698951125145,
0.024710914120078087,
0.003587599378079176,
-0.012609529308974743,
-0.013334106653928757,
0.005763683933764696,
0.02185024321079254,
-0.016589999198913574,
-0.040501054376363754,
-0.008233834058046341,
0.022490130737423897,
0.030526353046298027,
-0.018434379249811172,
-0.008422036655247211,
-0.055256087332963943,
0.03892016038298607,
0.033763427287340164,
-0.00880314502865076,
0.000016587133359280415,
0.0008245597127825022,
0.05085216090083122,
0.013456437736749649,
-0.025256698951125145,
0.029773544520139694,
-0.006323584821075201,
-0.004281593952327967,
0.03250247240066528,
0.044942621141672134,
-0.003719340544193983,
0.04471677914261818,
0.0010456970194354653,
-0.015404327772557735,
-0.011226245202124119,
0.07287178933620453,
-0.06963471323251724,
-0.01713578589260578,
0.03131680190563202,
0.0029147774912416935,
0.014388037845492363,
0.05356226861476898,
-0.026498831808567047,
0.027477482333779335,
-0.040425773710012436,
-0.09485377371311188,
-0.001779684447683394,
-0.07189314067363739,
0.07599593698978424,
-0.07343639433383942,
-0.06417685747146606,
0.0320696085691452,
-0.00648355670273304,
-0.009250124916434288,
-0.03986116871237755,
0.03796032816171646,
0.053863391280174255,
-0.005716633517295122,
0.015122025273740292,
0.007669228594750166,
-0.02770332433283329,
0.026498831808567047,
0.031203879043459892,
-0.00442039268091321,
-0.05582069233059883,
0.09026164561510086,
0.07430212199687958,
-0.000333176227286458,
-0.003302943892776966,
-0.06500494480133057,
0.006544722244143486,
-0.005528431851416826,
0.019817663356661797,
0.0004019875486847013,
0.047163404524326324,
0.0766734629869461,
0.04140442609786987,
-0.018208537250757217,
0.052922382950782776,
-0.0276468638330698,
0.023958105593919754,
-0.03165556490421295,
-0.004281593952327967,
-0.11036161333322525,
-0.047991491854190826,
-0.017295757308602333,
-0.0066811684519052505,
0.04776564985513687,
-0.024353329092264175,
-0.031109778210520744,
-0.05950944870710373,
-0.026912875473499298,
0.01834968850016594,
-0.055180806666612625,
0.007669228594750166,
0.044001612812280655,
-0.0694841518998146,
0.002940655220299959,
-0.03833673149347305,
0.03269067406654358,
0.0068552554585039616,
-0.007208134047687054,
-0.045845989137887955,
-0.05047575756907463,
0.016712332144379616,
0.00880314502865076,
-0.028888996690511703,
-0.014623289927840233,
-0.057062823325395584,
-0.018010925501585007,
-0.005646057892590761,
-0.008426741696894169,
0.006412980612367392,
0.0049826460890471935,
0.015404327772557735,
-0.03694403916597366,
-0.08815378695726395,
0.05145440623164177,
0.029378321021795273,
-0.05416451394557953,
0.00033435248769819736,
0.0009810025803744793,
0.0027477482799440622,
0.01228017546236515,
-0.03086511604487896,
0.07117796689271927,
0.015743091702461243,
0.039484765380620956,
-0.06711281090974808,
-0.021379739046096802,
0.040425773710012436,
-0.03348112478852272,
-0.014933822676539421,
0.06474146246910095,
-0.013654050417244434,
-0.03540078178048134,
0.011724980548024178,
0.010040572844445705,
0.015498428605496883,
0.028851356357336044,
0.02233956940472126,
-0.06180551275610924,
-0.005641352850943804,
-0.007085802499204874,
-0.008083272725343704,
0.0668116882443428,
-0.017963875085115433,
-0.05954708904027939,
0.05405159294605255,
-0.03585246577858925,
-0.0167029220610857,
0.07904481142759323,
-0.0276468638330698,
-0.03186258673667908,
0.015959523618221283,
0.00014071035548113286,
0.002356052864342928,
-0.043173521757125854,
-0.0030324035324156284,
0.03799796849489212,
-0.008511432446539402,
-0.006897600833326578,
0.05574541166424751,
-0.06173023208975792,
0.0437757670879364,
0.004126327112317085,
-0.013578768819570541,
-0.0563100166618824,
0.031448543071746826,
0.017220476642251015,
0.027195177972316742,
0.024315688759088516,
0.013955173082649708,
0.02905837818980217,
-0.015724271535873413,
0.04915834590792656,
-0.011122734285891056,
-0.02139855921268463,
0.01648648828268051,
0.010595768690109253,
-0.024390969425439835,
0.012628349475562572,
-0.049346547573804855,
0.0740009993314743,
-0.04407689347863197,
-0.01523494627326727,
0.01276009064167738,
-0.020796313881874084,
0.00783861055970192,
-0.05228249728679657,
0.030037028715014458,
-0.06496730446815491,
0.01625123620033264,
0.024729734286665916,
-0.05950944870710373,
0.0061871386133134365,
-0.049421828240156174,
-0.07648526132106781,
0.008210308849811554,
0.027477482333779335,
0.014237475581467152,
-0.027138717472553253,
0.03438449278473854,
0.002743043238297105,
-0.02679995447397232,
0.014726800844073296,
-0.007391630671918392,
-0.05043811723589897,
0.037715665996074677,
-0.025651922449469566,
0.015357277356088161,
0.07381279766559601,
0.06029989942908287,
-0.012233125045895576,
0.015300816856324673,
0.03530668094754219,
0.05194373428821564,
-0.0196294616907835,
0.017380448058247566,
-0.006662348285317421,
-0.019798843190073967,
-0.0026536472141742706,
0.044415656477212906,
0.00044727366184815764,
0.0018149723764508963,
-0.016213595867156982,
0.012035513296723366,
0.024899115785956383,
0.020363448187708855,
-0.030526353046298027,
0.024710914120078087,
0.045319024473428726,
-0.035890109837055206,
-0.02721399813890457,
0.006116562522947788,
-0.04637295380234718,
0.009428916499018669,
-0.02721399813890457,
0.0076880487613379955,
0.015780732035636902,
-0.04215723276138306,
-0.00714226346462965,
-0.045808348804712296,
0.02730810083448887,
0.04385105147957802,
0.018359098583459854,
0.05638529732823372,
0.02418394759297371,
0.03978588804602623,
0.05694990232586861,
0.03139208257198334,
-0.027195177972316742,
-0.0285690538585186,
0.032446011900901794,
0.03434685245156288,
-0.010953351855278015,
-0.005241423845291138,
0.01386107224971056,
0.059772931039333344,
-0.017164016142487526,
-0.06526842713356018,
-0.003851081943139434,
-0.04784093052148819,
0.003359404392540455,
0.0009168962715193629,
0.09274590760469437,
-0.005843670107424259,
0.023337040096521378
]
|
42,215 | flask_restful | dispatch_request | null | def dispatch_request(self, *args, **kwargs):
# Taken from flask
#noinspection PyUnresolvedReferences
meth = getattr(self, request.method.lower(), None)
if meth is None and request.method == 'HEAD':
meth = getattr(self, 'get', None)
assert meth is not None, 'Unimplemented method %r' % request.method
if isinstance(self.method_decorators, Mapping):
decorators = self.method_decorators.get(request.method.lower(), [])
else:
decorators = self.method_decorators
for decorator in decorators:
meth = decorator(meth)
resp = meth(*args, **kwargs)
if isinstance(resp, ResponseBase): # There may be a better way to test
return resp
representations = self.representations or OrderedDict()
#noinspection PyUnresolvedReferences
mediatype = request.accept_mimetypes.best_match(representations, default=None)
if mediatype in representations:
data, code, headers = unpack(resp)
resp = representations[mediatype](data, code, headers)
resp.headers['Content-Type'] = mediatype
return resp
return resp
| (self, *args, **kwargs) | [
0.02586362697184086,
-0.07992459088563919,
-0.0589791014790535,
0.02185196802020073,
-0.005149581469595432,
-0.0006213972810655832,
-0.012854666449129581,
0.03473556414246559,
-0.00876103900372982,
0.0356806181371212,
0.08686784654855728,
0.0035945812705904245,
0.046905551105737686,
-0.013896155171096325,
0.017927100881934166,
-0.007869022898375988,
-0.0011397305643185973,
0.022314852103590965,
0.02815875969827175,
-0.09751416742801666,
0.03255615383386612,
-0.005631751846522093,
-0.015564464963972569,
-0.009932712651789188,
0.007353100925683975,
0.06491944193840027,
-0.013973302207887173,
-0.046288371086120605,
0.038457922637462616,
0.01946040242910385,
0.04987572133541107,
-0.00263024028390646,
0.025188589468598366,
0.027695875614881516,
0.03174610808491707,
0.03049246408045292,
-0.02202554978430271,
-0.0265386663377285,
-0.0647265762090683,
0.003905581310391426,
-0.10384024679660797,
-0.02798517793416977,
0.03230542689561844,
-0.04250815510749817,
0.004489007871598005,
0.03612421825528145,
-0.03163038566708565,
0.09720557928085327,
0.04844849556684494,
0.023549208417534828,
-0.03444626182317734,
0.013346480205655098,
-0.019055379554629326,
-0.06248930096626282,
-0.030029581859707832,
0.018631068989634514,
-0.011022418737411499,
0.048101332038640976,
-0.001686391420662403,
0.03234399855136871,
0.04123522341251373,
0.04524688422679901,
0.07869023084640503,
-0.02542003057897091,
-0.0319196879863739,
-0.003117232583463192,
0.01420474424958229,
0.00792206171900034,
-0.017435286194086075,
0.03649066761136055,
0.006205535028129816,
-0.001317530986852944,
0.01113813929259777,
0.0058246199041605,
0.05288446322083473,
-0.01017379853874445,
-0.0016068333061411977,
-0.04771559685468674,
0.04169810935854912,
0.0018684108508750796,
0.06943255662918091,
-0.02028973586857319,
-0.022237705066800117,
-0.05658753588795662,
0.0028255193028599024,
-0.06962542235851288,
-0.050222884863615036,
-0.03209327161312103,
-0.0464426651597023,
0.0015248643467202783,
-0.06264359503984451,
-0.010250945575535297,
-0.014185457490384579,
-0.018052464351058006,
-0.041350945830345154,
0.02065618522465229,
0.005612465087324381,
-0.011369581334292889,
0.04219956696033478,
0.0036886045709252357,
-0.03299975022673607,
0.10692613571882248,
-0.008963550440967083,
0.004971178248524666,
0.0322861410677433,
0.008683891035616398,
0.02773444913327694,
-0.00009078367293113843,
-0.051495812833309174,
0.022758450359106064,
0.019576122984290123,
-0.01145637221634388,
-0.008312620222568512,
-0.0024120581801980734,
-0.015458387322723866,
-0.025150015950202942,
-0.03695354983210564,
-0.015255875885486603,
-0.037474293261766434,
-0.008409054018557072,
-0.05759044736623764,
-0.023992806673049927,
0.0665009617805481,
-0.024089239537715912,
-0.0018647945253178477,
0.021080495789647102,
-0.03791788965463638,
-0.02327919378876686,
0.02584434114396572,
0.0034065349027514458,
-0.028448062017560005,
0.01976899243891239,
-0.014513333328068256,
0.08679069578647614,
0.012092837132513523,
0.058747656643390656,
-0.061062075197696686,
-0.019518263638019562,
0.0195375494658947,
0.03535274416208267,
0.014320464804768562,
-0.02559361234307289,
0.05207441747188568,
-0.009971287101507187,
-0.033443350344896317,
-0.0021528913639485836,
0.07001116126775742,
-0.03413767367601395,
0.05195869877934456,
0.0172134879976511,
0.03367479145526886,
-0.007517038844525814,
0.07116837054491043,
-0.0022782557643949986,
0.01820676028728485,
-0.011466015130281448,
-0.014638697728514671,
-0.0004011056153103709,
-0.01565125584602356,
0.023587781935930252,
-0.018621426075696945,
-0.027155844494700432,
0.0032088449224829674,
-0.06584520637989044,
0.04756130278110504,
-0.027136558666825294,
-0.002866503782570362,
0.015419813804328442,
0.025902200490236282,
0.009585550054907799,
-0.0378214567899704,
0.0189107283949852,
0.010733116418123245,
-0.03205469623208046,
0.015063007362186909,
0.013192186132073402,
-0.0030497286934405565,
0.021311936900019646,
-0.021543379873037338,
-0.007131302263587713,
0.07660725712776184,
-0.1027601882815361,
-0.036587100476026535,
0.032884031534194946,
-0.0020118565298616886,
0.05496744066476822,
0.0030786588322371244,
-0.036895688623189926,
-0.05438883602619171,
0.05708899348974228,
-0.006490015424787998,
-0.027136558666825294,
0.02221841923892498,
-0.02667367458343506,
-0.040965210646390915,
-0.0455554723739624,
-0.02260415442287922,
0.024127813056111336,
0.04200669750571251,
-0.026191502809524536,
-0.005029038526117802,
-0.00012453561066649854,
0.04258530214428902,
0.05890195444226265,
-0.011408154852688313,
0.033462636172771454,
0.04474542662501335,
-0.010569178499281406,
-0.054311688989400864,
-0.03880508616566658,
-0.06943255662918091,
-0.004660178441554308,
-0.06090778112411499,
-0.030068155378103256,
-0.024301394820213318,
0.028505921363830566,
0.02040545642375946,
-0.028718076646327972,
-0.0030304419342428446,
-0.05890195444226265,
0.04451398551464081,
0.08401339501142502,
-0.08416768908500671,
0.027618728578090668,
0.02015472762286663,
-0.009156418964266777,
0.030222449451684952,
0.02893023192882538,
-0.006215178407728672,
-0.014841209165751934,
-0.047484155744314194,
-0.035834915935993195,
-0.002342143328860402,
0.03976942598819733,
-0.05138009414076805,
0.022449860349297523,
0.04108092933893204,
0.07147695869207382,
-0.028505921363830566,
-0.0043756975792348385,
0.06800533086061478,
0.004214170388877392,
0.009474650956690311,
-0.015072651207447052,
-0.04744558036327362,
-0.05269159749150276,
-0.038091473281383514,
0.06653953343629837,
-0.02079119347035885,
-0.024069953709840775,
0.010713829658925533,
-0.006644309964030981,
-0.02015472762286663,
-0.08393624424934387,
0.0026398836635053158,
-0.017869239673018456,
-0.05516031011939049,
0.0008920155232772231,
0.0539645254611969,
0.0012180833145976067,
0.011871038936078548,
0.06927826255559921,
0.07761017233133316,
0.00604159664362669,
-0.04169810935854912,
0.026152929291129112,
0.0027869457844644785,
0.014908713288605213,
-0.014725488610565662,
-0.004894030746072531,
0.040270883589982986,
-0.021061209961771965,
0.010993488132953644,
0.011282790452241898,
0.022044837474822998,
-0.03004886768758297,
0.006933612283319235,
-0.017232775688171387,
-0.03375193849205971,
0.012073550373315811,
0.03334691375494003,
-0.05917196720838547,
0.020309023559093475,
-0.00577640300616622,
0.006538232322782278,
0.002962938044220209,
0.03072390705347061,
0.05832334980368614,
0.013693643733859062,
-0.05782189220190048,
0.050222884863615036,
0.03976942598819733,
-0.011446728371083736,
-0.0067069921642541885,
-0.010540247894823551,
-0.015226945281028748,
-0.08077321201562881,
-0.03315404802560806,
0.07953885197639465,
0.004421503748744726,
-0.02873736433684826,
-0.014600124210119247,
0.023240620270371437,
-0.050300031900405884,
0.020251162350177765,
-0.036644961684942245,
0.03726213797926903,
0.011311721056699753,
-0.05003001540899277,
-0.0033679611515253782,
0.03263330087065697,
0.07309705018997192,
-0.038149334490299225,
-0.058554790914058685,
-0.029373828321695328,
0.029836712405085564,
-0.012411070056259632,
0.05832334980368614,
0.004689108580350876,
0.034658417105674744,
0.006166961044073105,
0.07907596975564957,
-0.07502573728561401,
0.05778331682085991,
0.040348030626773834,
-0.018119968473911285,
0.03660638630390167,
0.019614698365330696,
-0.005236371885985136,
0.014522976242005825,
0.00985556561499834,
0.020559752359986305,
-0.03319261968135834,
-0.016856681555509567,
-0.02999100834131241,
-0.02628793753683567,
0.0010692131472751498,
-0.007632759399712086,
-0.008630852214992046,
0.02435925602912903,
-0.05685754865407944,
-0.009571084752678871,
0.03704998269677162,
-0.0013657480012625456,
-0.032517582178115845,
0.01821640320122242,
0.07525717467069626,
0.015448744408786297,
0.02985600009560585,
-0.0439353808760643,
-0.055738914757966995,
-0.0962798148393631,
0.03645209223031998,
-0.004469721112400293,
-0.021331224590539932,
-0.051418665796518326,
-0.006957720965147018,
-0.043086759746074677,
-0.0513029471039772,
0.015554822050035,
0.046404093503952026,
0.044668279588222504,
-0.02729085274040699,
0.0005008546286262572,
-0.02385779842734337,
-0.009903782978653908,
-0.002625418594107032,
-0.003780216909945011,
-0.02302846498787403,
-0.02090691402554512,
-0.0012693139724433422,
0.006750387605279684,
-0.04019373655319214,
0.006080170627683401,
0.02291274443268776,
0.031128929927945137,
-0.03024173527956009,
-0.015188371762633324,
-0.02196769043803215,
0.029701706022024155,
0.014542263001203537,
0.006586449686437845,
-0.016914542764425278,
-0.03899795189499855,
0.03685711696743965,
-0.03510201349854469,
0.020579038187861443,
0.016258791089057922,
-0.010713829658925533,
0.025323595851659775,
0.010906697250902653,
-0.08486201614141464,
-0.0009962848853319883,
-0.0013802131870761514,
-0.045362602919340134,
-0.03211255744099617,
-0.021697673946619034,
0.04057947173714638,
-0.004479364491999149,
-0.003652441781014204,
0.040463753044605255,
0.017560651525855064,
-0.027155844494700432,
0.048602789640426636,
0.010733116418123245,
0.03919082134962082,
0.04794703796505928,
-0.006649131886661053,
0.019498975947499275,
0.000910699600353837,
0.006398403085768223,
-0.015198015607893467,
0.011668527498841286,
0.007685798220336437,
0.01342362817376852,
0.01727134920656681,
0.011533519253134727,
-0.007661690004169941,
-0.002466302365064621,
-0.004423914477229118,
0.018930016085505486,
0.06985686719417572,
0.06499658524990082,
0.007218093145638704,
0.009580728597939014,
0.02578647993505001,
-0.011562449857592583,
-0.0054051317274570465,
-0.010492030531167984,
0.007348279003053904,
0.018930016085505486,
0.053617365658283234,
-0.08895082026720047,
0.013761146925389767,
0.04632694646716118,
-0.02054046466946602,
-0.05269159749150276,
-0.010038790293037891,
-0.0022662014234811068,
-0.014609767124056816,
-0.04632694646716118,
0.014146883971989155,
-0.02642294578254223,
-0.015419813804328442,
0.019981147721409798,
-0.012980030849575996,
-0.0028857907745987177,
-0.0015284805558621883,
-0.02009686827659607,
-0.0656137689948082,
0.033019039779901505,
0.004664999898523092,
0.00832226313650608,
0.02378065139055252,
-0.03699212521314621,
-0.05103293061256409,
0.0398080013692379,
-0.018235689029097557,
-0.015034077689051628,
0.0021649457048624754,
0.030955348163843155,
-0.022874170914292336,
-0.015747690573334694,
-0.041466664522886276,
-0.004795186221599579,
0.05797618627548218,
0.012266418896615505,
0.019315751269459724,
-0.02842877432703972,
-0.043086759746074677,
0.024455688893795013,
-0.027117270976305008,
-0.058747656643390656,
-0.014609767124056816,
-0.039962295442819595,
0.042045269161462784,
-0.008399411104619503,
0.01984613947570324,
-0.01483156532049179,
-0.032768309116363525,
0.041968122124671936,
0.016943473368883133,
0.004011658951640129,
-0.01549696084111929,
-0.005766759626567364,
-0.03762858733534813,
0.025265736505389214,
0.03209327161312103,
0.059364836663007736,
-0.04952855780720711,
0.05751330032944679,
0.07568148523569107,
-0.03444626182317734,
0.03938369080424309,
0.005887302104383707,
0.05134151875972748,
-0.0415823869407177,
-0.0496828518807888,
-0.0025072868447750807,
-0.0072711315006017685,
0.03010672889649868,
-0.10391739755868912,
0.040849488228559494,
0.038342200219631195,
-0.02673153392970562,
-0.0067262789234519005,
0.003512612311169505,
0.025130728259682655,
-0.008519953116774559,
-0.019633984193205833,
-0.03429196774959564,
-0.01154316309839487,
-0.009667519479990005,
0.02923882193863392,
-0.013221115805208683,
-0.004296139348298311,
-0.04975999891757965,
0.03512130305171013,
-0.03805289790034294,
-0.0022348605562001467,
0.04370393604040146,
0.012864310294389725,
0.03417624905705452,
0.003271527122706175,
-0.01947004720568657,
0.04586406052112579,
0.03047317825257778,
0.02090691402554512,
0.02867950312793255,
-0.014185457490384579,
-0.034272681921720505,
0.010077363811433315,
-0.04443683847784996,
-0.0014525387668982148,
0.019122883677482605,
0.06734958291053772,
-0.0546974241733551,
0.0026808681432157755,
0.024860713630914688,
0.00913713127374649,
0.033694077283144,
0.01276787556707859,
-0.050222884863615036,
0.009677162393927574,
-0.054311688989400864,
-0.1093948483467102,
0.029682418331503868,
-0.06935541331768036,
0.048795659095048904,
-0.056047502905130386,
-0.08887367695569992,
-0.017792092636227608,
-0.012449643574655056,
-0.005699255969375372,
-0.05404167249798775,
0.056934695690870285,
0.042160991579294205,
-0.009894139133393764,
0.015458387322723866,
-0.008119751699268818,
-0.015439100563526154,
0.009002123959362507,
0.026210790500044823,
0.03456198424100876,
-0.08702214062213898,
0.029778853058815002,
0.08856508135795593,
0.04671268165111542,
-0.02954741008579731,
-0.06048347055912018,
0.030897488817572594,
0.0286023560911417,
-0.001687596901319921,
-0.011099565774202347,
0.0704740434885025,
0.06927826255559921,
0.03149538114666939,
-0.00813903845846653,
0.02792731672525406,
-0.0369342640042305,
0.01984613947570324,
-0.05836192145943642,
-0.009079270996153355,
-0.09735987335443497,
-0.05165010690689087,
-0.050492897629737854,
-0.04671268165111542,
0.01017379853874445,
-0.024397829547524452,
-0.012873953208327293,
-0.041775256395339966,
-0.024860713630914688,
0.017290635034441948,
-0.0026712247636169195,
-0.002449426334351301,
0.03041531704366207,
-0.07660725712776184,
0.015660898759961128,
-0.06164067983627319,
-0.002167356666177511,
0.02966313064098358,
0.013780433684587479,
-0.03475485369563103,
-0.029142387211322784,
0.013163255527615547,
0.0163262952119112,
-0.035333458334207535,
0.02271987497806549,
-0.01614307053387165,
-0.06445655971765518,
-0.021234789863228798,
0.03209327161312103,
0.010897054336965084,
0.034658417105674744,
-0.004833759739995003,
-0.016046635806560516,
-0.045478325337171555,
0.04601835459470749,
0.03298046439886093,
-0.022874170914292336,
0.012970387935638428,
-0.03163038566708565,
-0.02817804552614689,
0.03585420176386833,
0.007656868081539869,
0.04613407701253891,
0.005805333144962788,
0.02698226273059845,
0.005197798367589712,
0.0045324028469622135,
0.03060818649828434,
0.007001116406172514,
-0.0031871472019702196,
0.016798822209239006,
0.018187472596764565,
-0.006629845127463341,
0.001935914740897715,
0.016615597531199455,
-0.045786913484334946,
0.021620526909828186,
0.0369342640042305,
-0.008814077824354172,
0.021138356998562813,
-0.0010264205047860742,
-0.005906589329242706,
0.031071068719029427,
-0.02804303914308548,
-0.005723364185541868,
0.07946170121431351,
-0.008871938101947308,
0.015159442089498043,
0.045362602919340134,
0.014089022763073444,
-0.024937860667705536,
-0.00286409305408597,
0.015130511485040188,
0.0014404845423996449,
-0.032710447907447815,
0.008568170480430126,
0.014744775369763374,
0.015795907005667686,
0.010916341096162796,
0.08972229063510895,
-0.05404167249798775,
0.031572528183460236,
-0.01239178329706192,
-0.04632694646716118,
-0.06360793858766556,
0.03091677464544773,
-0.01292217057198286,
0.011658883653581142,
0.00705897668376565,
0.003141341032460332,
0.055623192340135574,
-0.034889861941337585,
0.009619302116334438,
0.02428210899233818,
-0.03355906903743744,
0.013346480205655098,
0.019633984193205833,
-0.03942226245999336,
0.009595193900167942,
-0.052614450454711914,
0.04030945524573326,
-0.022295566275715828,
-0.05832334980368614,
0.01480263564735651,
-0.029759565368294716,
-0.004009248223155737,
-0.06642381101846695,
0.057127565145492554,
-0.060444898903369904,
0.024648558348417282,
0.00131512014195323,
-0.03325048089027405,
0.032768309116363525,
-0.043086759746074677,
-0.093193918466568,
0.011572092771530151,
0.06584520637989044,
0.03710784390568733,
-0.013606852851808071,
0.025323595851659775,
0.013683999888598919,
-0.029393116012215614,
0.0031775038223713636,
-0.014580837450921535,
0.01753172092139721,
-0.011658883653581142,
-0.031514666974544525,
-0.005057969130575657,
0.03487057238817215,
0.059866294264793396,
0.04848707094788551,
0.02848663553595543,
0.04420539364218712,
0.03454269841313362,
0.021639814600348473,
0.037088558077812195,
-0.00957590714097023,
-0.04513116180896759,
0.003249829402193427,
0.040656618773937225,
0.02109978348016739,
-0.014339751563966274,
-0.029817426577210426,
0.00492778280749917,
0.0016442015767097473,
0.030396031215786934,
-0.01884322427213192,
0.03355906903743744,
0.019749704748392105,
-0.035275597125291824,
-0.04262387380003929,
-0.010646325536072254,
-0.09913426637649536,
-0.0008980426355265081,
-0.022989891469478607,
0.05319305509328842,
0.005896945483982563,
-0.05932626128196716,
-0.0406951941549778,
-0.019257891923189163,
0.036394231021404266,
0.02366493083536625,
-0.00449382932856679,
0.04061804711818695,
0.016036992892622948,
0.06129352003335953,
0.05917196720838547,
0.024262821301817894,
-0.049297116696834564,
0.007165054325014353,
0.003543953411281109,
0.04351107031106949,
0.004787953570485115,
-0.028756650164723396,
0.005091720726341009,
0.09026232361793518,
0.007179519161581993,
-0.03649066761136055,
-0.02916167490184307,
-0.03554561361670494,
-0.014426542446017265,
-0.029894573614001274,
0.04061804711818695,
0.042045269161462784,
0.04281674325466156
]
|
42,216 | werkzeug.wrappers.response | Response | Represents an outgoing WSGI HTTP response with body, status, and
headers. Has properties and methods for using the functionality
defined by various HTTP specs.
The response body is flexible to support different use cases. The
simple form is passing bytes, or a string which will be encoded as
UTF-8. Passing an iterable of bytes or strings makes this a
streaming response. A generator is particularly useful for building
a CSV file in memory or using SSE (Server Sent Events). A file-like
object is also iterable, although the
:func:`~werkzeug.utils.send_file` helper should be used in that
case.
The response object is itself a WSGI application callable. When
called (:meth:`__call__`) with ``environ`` and ``start_response``,
it will pass its status and headers to ``start_response`` then
return its body as an iterable.
.. code-block:: python
from werkzeug.wrappers.response import Response
def index():
return Response("Hello, World!")
def application(environ, start_response):
path = environ.get("PATH_INFO") or "/"
if path == "/":
response = index()
else:
response = Response("Not Found", status=404)
return response(environ, start_response)
:param response: The data for the body of the response. A string or
bytes, or tuple or list of strings or bytes, for a fixed-length
response, or any other iterable of strings or bytes for a
streaming response. Defaults to an empty body.
:param status: The status code for the response. Either an int, in
which case the default status message is added, or a string in
the form ``{code} {message}``, like ``404 Not Found``. Defaults
to 200.
:param headers: A :class:`~werkzeug.datastructures.Headers` object,
or a list of ``(key, value)`` tuples that will be converted to a
``Headers`` object.
:param mimetype: The mime type (content type without charset or
other parameters) of the response. If the value starts with
``text/`` (or matches some other special cases), the charset
will be added to create the ``content_type``.
:param content_type: The full content type of the response.
Overrides building the value from ``mimetype``.
:param direct_passthrough: Pass the response body directly through
as the WSGI iterable. This can be used when the body is a binary
file or other iterator of bytes, to skip some unnecessary
checks. Use :func:`~werkzeug.utils.send_file` instead of setting
this manually.
.. versionchanged:: 2.1
Old ``BaseResponse`` and mixin classes were removed.
.. versionchanged:: 2.0
Combine ``BaseResponse`` and mixins into a single ``Response``
class.
.. versionchanged:: 0.5
The ``direct_passthrough`` parameter was added.
| class Response(_SansIOResponse):
"""Represents an outgoing WSGI HTTP response with body, status, and
headers. Has properties and methods for using the functionality
defined by various HTTP specs.
The response body is flexible to support different use cases. The
simple form is passing bytes, or a string which will be encoded as
UTF-8. Passing an iterable of bytes or strings makes this a
streaming response. A generator is particularly useful for building
a CSV file in memory or using SSE (Server Sent Events). A file-like
object is also iterable, although the
:func:`~werkzeug.utils.send_file` helper should be used in that
case.
The response object is itself a WSGI application callable. When
called (:meth:`__call__`) with ``environ`` and ``start_response``,
it will pass its status and headers to ``start_response`` then
return its body as an iterable.
.. code-block:: python
from werkzeug.wrappers.response import Response
def index():
return Response("Hello, World!")
def application(environ, start_response):
path = environ.get("PATH_INFO") or "/"
if path == "/":
response = index()
else:
response = Response("Not Found", status=404)
return response(environ, start_response)
:param response: The data for the body of the response. A string or
bytes, or tuple or list of strings or bytes, for a fixed-length
response, or any other iterable of strings or bytes for a
streaming response. Defaults to an empty body.
:param status: The status code for the response. Either an int, in
which case the default status message is added, or a string in
the form ``{code} {message}``, like ``404 Not Found``. Defaults
to 200.
:param headers: A :class:`~werkzeug.datastructures.Headers` object,
or a list of ``(key, value)`` tuples that will be converted to a
``Headers`` object.
:param mimetype: The mime type (content type without charset or
other parameters) of the response. If the value starts with
``text/`` (or matches some other special cases), the charset
will be added to create the ``content_type``.
:param content_type: The full content type of the response.
Overrides building the value from ``mimetype``.
:param direct_passthrough: Pass the response body directly through
as the WSGI iterable. This can be used when the body is a binary
file or other iterator of bytes, to skip some unnecessary
checks. Use :func:`~werkzeug.utils.send_file` instead of setting
this manually.
.. versionchanged:: 2.1
Old ``BaseResponse`` and mixin classes were removed.
.. versionchanged:: 2.0
Combine ``BaseResponse`` and mixins into a single ``Response``
class.
.. versionchanged:: 0.5
The ``direct_passthrough`` parameter was added.
"""
#: if set to `False` accessing properties on the response object will
#: not try to consume the response iterator and convert it into a list.
#:
#: .. versionadded:: 0.6.2
#:
#: That attribute was previously called `implicit_seqence_conversion`.
#: (Notice the typo). If you did use this feature, you have to adapt
#: your code to the name change.
implicit_sequence_conversion = True
#: If a redirect ``Location`` header is a relative URL, make it an
#: absolute URL, including scheme and domain.
#:
#: .. versionchanged:: 2.1
#: This is disabled by default, so responses will send relative
#: redirects.
#:
#: .. versionadded:: 0.8
autocorrect_location_header = False
#: Should this response object automatically set the content-length
#: header if possible? This is true by default.
#:
#: .. versionadded:: 0.8
automatically_set_content_length = True
#: The response body to send as the WSGI iterable. A list of strings
#: or bytes represents a fixed-length response, any other iterable
#: is a streaming response. Strings are encoded to bytes as UTF-8.
#:
#: Do not set to a plain string or bytes, that will cause sending
#: the response to be very inefficient as it will iterate one byte
#: at a time.
response: t.Iterable[str] | t.Iterable[bytes]
def __init__(
self,
response: t.Iterable[bytes] | bytes | t.Iterable[str] | str | None = None,
status: int | str | HTTPStatus | None = None,
headers: t.Mapping[str, str | t.Iterable[str]]
| t.Iterable[tuple[str, str]]
| None = None,
mimetype: str | None = None,
content_type: str | None = None,
direct_passthrough: bool = False,
) -> None:
super().__init__(
status=status,
headers=headers,
mimetype=mimetype,
content_type=content_type,
)
#: Pass the response body directly through as the WSGI iterable.
#: This can be used when the body is a binary file or other
#: iterator of bytes, to skip some unnecessary checks. Use
#: :func:`~werkzeug.utils.send_file` instead of setting this
#: manually.
self.direct_passthrough = direct_passthrough
self._on_close: list[t.Callable[[], t.Any]] = []
# we set the response after the headers so that if a class changes
# the charset attribute, the data is set in the correct charset.
if response is None:
self.response = []
elif isinstance(response, (str, bytes, bytearray)):
self.set_data(response)
else:
self.response = response
def call_on_close(self, func: t.Callable[[], t.Any]) -> t.Callable[[], t.Any]:
"""Adds a function to the internal list of functions that should
be called as part of closing down the response. Since 0.7 this
function also returns the function that was passed so that this
can be used as a decorator.
.. versionadded:: 0.6
"""
self._on_close.append(func)
return func
def __repr__(self) -> str:
if self.is_sequence:
body_info = f"{sum(map(len, self.iter_encoded()))} bytes"
else:
body_info = "streamed" if self.is_streamed else "likely-streamed"
return f"<{type(self).__name__} {body_info} [{self.status}]>"
@classmethod
def force_type(
cls, response: Response, environ: WSGIEnvironment | None = None
) -> Response:
"""Enforce that the WSGI response is a response object of the current
type. Werkzeug will use the :class:`Response` internally in many
situations like the exceptions. If you call :meth:`get_response` on an
exception you will get back a regular :class:`Response` object, even
if you are using a custom subclass.
This method can enforce a given response type, and it will also
convert arbitrary WSGI callables into response objects if an environ
is provided::
# convert a Werkzeug response object into an instance of the
# MyResponseClass subclass.
response = MyResponseClass.force_type(response)
# convert any WSGI application into a response object
response = MyResponseClass.force_type(response, environ)
This is especially useful if you want to post-process responses in
the main dispatcher and use functionality provided by your subclass.
Keep in mind that this will modify response objects in place if
possible!
:param response: a response object or wsgi application.
:param environ: a WSGI environment object.
:return: a response object.
"""
if not isinstance(response, Response):
if environ is None:
raise TypeError(
"cannot convert WSGI application into response"
" objects without an environ"
)
from ..test import run_wsgi_app
response = Res | (response: Union[Iterable[str], Iterable[bytes]] = None, status: 'int | str | HTTPStatus | None' = None, headers: werkzeug.datastructures.headers.Headers = None, mimetype: 'str | None' = None, content_type: 'str | None' = None, direct_passthrough: 'bool' = False) -> 'None' | [
0.01382844615727663,
-0.040847714990377426,
-0.06567515432834625,
-0.0438365712761879,
0.03196084499359131,
0.02893213741481304,
-0.03959239274263382,
0.0715731680393219,
0.020294340327382088,
-0.006445968523621559,
0.07735162228345871,
0.022675463929772377,
0.04889770224690437,
0.027437709271907806,
0.01096910610795021,
0.013230673968791962,
0.020802445709705353,
0.0007054948364384472,
0.02231680043041706,
-0.05061131343245506,
0.020483635365962982,
0.04015031456947327,
0.01350963395088911,
0.004189381375908852,
-0.03421245142817497,
-0.02460825815796852,
-0.021200960502028465,
-0.0211013313382864,
0.03247891366481781,
-0.010062485933303833,
0.0007577998330816627,
-0.07496053725481033,
0.030307011678814888,
-0.011258028447628021,
0.05830264091491699,
0.024887217208743095,
-0.04582914337515831,
-0.0059079742059111595,
0.0014383875532075763,
0.02307397685945034,
-0.0022067727986723185,
0.001754708238877356,
-0.023412713780999184,
-0.024568405002355576,
0.014197071082890034,
0.045988548547029495,
-0.039054401218891144,
0.05790412798523903,
-0.026919640600681305,
0.036643389612436295,
0.00847341027110815,
-0.010819663293659687,
0.018451211974024773,
-0.024249594658613205,
0.03273794800043106,
0.05957788601517677,
-0.004408564418554306,
0.062128376215696335,
-0.034033119678497314,
-0.04030971974134445,
-0.019746383652091026,
0.05316180735826492,
0.019547125324606895,
-0.05894026160240173,
0.018580729141831398,
0.024329297244548798,
0.000022766686015529558,
-0.00526038883253932,
-0.008627834729850292,
-0.01915857382118702,
-0.014575660228729248,
0.005589162930846214,
-0.03813781589269638,
0.034351930022239685,
0.027497485280036926,
0.0007384967757388949,
-0.016916930675506592,
0.0009545662323944271,
0.026680530980229378,
-0.019527200609445572,
0.04455389827489853,
0.014127331785857677,
0.0060026212595403194,
-0.02472781203687191,
0.05778457224369049,
-0.044593747705221176,
-0.0029216078110039234,
-0.02046370878815651,
-0.0539189837872982,
0.08065929263830185,
-0.05467616021633148,
0.017285557463765144,
0.014944286085665226,
0.011825911700725555,
-0.013300414197146893,
-0.03313646465539932,
-0.016239456832408905,
-0.028693029657006264,
0.03775922954082489,
-0.0074073844589293,
-0.01674756221473217,
0.07603652775287628,
-0.03148262947797775,
0.0320405475795269,
0.00419436302036047,
0.007018832955509424,
-0.0032130214385688305,
-0.047702159732580185,
0.030625823885202408,
-0.00812471006065607,
-0.015512168407440186,
-0.015482280403375626,
0.012134759686887264,
-0.041724447160959244,
-0.04634721204638481,
0.020563337951898575,
-0.027039194479584694,
-0.012114834040403366,
0.002577889245003462,
-0.017434999346733093,
0.01662800833582878,
-0.010470963083207607,
0.008523223921656609,
0.005008826497942209,
0.01875009760260582,
0.04212296009063721,
-0.000510907790157944,
-0.03024723380804062,
0.027856148779392242,
0.0397518016397953,
0.012363906018435955,
0.048140525817871094,
-0.02211754396557808,
0.036384355276823044,
0.017106225714087486,
0.03883521631360054,
-0.10759885609149933,
0.035686954855918884,
-0.05778457224369049,
0.039193879812955856,
0.022775091230869293,
0.020423857495188713,
-0.002496941015124321,
0.033913567662239075,
-0.021081406623125076,
-0.023631896823644638,
0.014077517203986645,
-0.010381297208368778,
-0.019985491409897804,
0.028513697907328606,
-0.0470246858894825,
-0.033275943249464035,
0.04327865317463875,
0.05595140531659126,
-0.03453126177191734,
0.016916930675506592,
-0.012104871682822704,
0.003920384217053652,
0.016000349074602127,
-0.04682542756199837,
-0.020214637741446495,
-0.06412094831466675,
0.004490757826715708,
-0.030207382515072823,
0.0018705264665186405,
-0.02319353073835373,
0.004408564418554306,
0.004219269845634699,
0.05001354217529297,
0.02403041161596775,
-0.003509416477754712,
-0.004662617109715939,
-0.01564168557524681,
-0.03763967379927635,
-0.004007559269666672,
0.08982512354850769,
0.04913681000471115,
0.0033973343670368195,
-0.04626750946044922,
-0.009678916074335575,
0.056349921971559525,
-0.08077884465456009,
-0.061570458114147186,
0.013708891347050667,
-0.004724884871393442,
0.052285075187683105,
-0.014117368496954441,
0.02104155533015728,
0.03477037325501442,
0.043119244277477264,
-0.020423857495188713,
-0.014067554846405983,
0.050053395330905914,
-0.008328949101269245,
-0.005185666959732771,
0.005788419861346483,
-0.025524839758872986,
-0.04658631980419159,
0.08014122396707535,
-0.05364002287387848,
-0.07966300845146179,
0.022994274273514748,
0.0285934004932642,
-0.020214637741446495,
-0.04479300603270531,
0.05878085643053055,
-0.0030984485056251287,
-0.02632186934351921,
-0.056987542659044266,
-0.01099899411201477,
-0.019258202984929085,
0.0031059207394719124,
-0.019606903195381165,
-0.0384964793920517,
0.01105877198278904,
-0.0026650642976164818,
0.0033475200179964304,
-0.05949818342924118,
0.018261916935443878,
-0.03636442869901657,
0.04666602239012718,
0.01538265123963356,
-0.0528828464448452,
0.011905614286661148,
-0.019278129562735558,
-0.0011220667511224747,
-0.004254139959812164,
0.01944749802350998,
0.01143736019730568,
0.025564691051840782,
-0.027955777943134308,
0.034730520099401474,
0.060374915599823,
-0.018650468438863754,
0.012881974689662457,
-0.02275516651570797,
0.03698212653398514,
0.04050897806882858,
-0.032897353172302246,
0.020902074873447418,
0.006650207098573446,
0.005604107398539782,
0.00016983557725325227,
0.0014769935514777899,
-0.045032113790512085,
0.008827091194689274,
-0.01509372889995575,
0.07041747123003006,
-0.012672754004597664,
-0.003345029428601265,
0.00286681205034256,
-0.0453907772898674,
-0.007576752919703722,
-0.07161302119493484,
0.042043257504701614,
0.020075157284736633,
-0.03538806736469269,
-0.045350927859544754,
-0.023054052144289017,
0.013987851329147816,
0.0341925248503685,
0.04387642443180084,
-0.024309372529387474,
0.025664320215582848,
-0.024369148537516594,
0.014525845646858215,
-0.008179505355656147,
-0.013300414197146893,
-0.05148804560303688,
0.05093012750148773,
0.10241816937923431,
0.02458833158016205,
-0.019118722528219223,
-0.012702642939984798,
-0.043956127017736435,
0.045350927859544754,
0.06328406929969788,
-0.04937592148780823,
-0.03058597259223461,
0.0320405475795269,
0.005076075904071331,
-0.057306353002786636,
0.03516888618469238,
-0.026162462309002876,
0.06906252354383469,
-0.013649114407598972,
-0.00973869301378727,
0.1036137118935585,
0.020802445709705353,
-0.042242515832185745,
0.03831714764237404,
0.020423857495188713,
0.017275594174861908,
-0.01616971753537655,
-0.021499846130609512,
0.01964675448834896,
-0.1015414372086525,
-0.04212296009063721,
0.04602840170264244,
-0.08177512884140015,
-0.0016625517746433616,
-0.0037634694017469883,
0.09460729360580444,
0.02365182340145111,
-0.022615686058998108,
-0.012792308814823627,
0.03981157764792442,
0.005539348814636469,
-0.02072274312376976,
0.0036688221152871847,
0.030287085101008415,
0.030366789549589157,
-0.04100712016224861,
-0.040329646319150925,
-0.016149790957570076,
0.02974909171462059,
0.04798112064599991,
0.04044920206069946,
-0.015661612153053284,
0.048020970076322556,
-0.03088485822081566,
-0.015801090747117996,
0.04570958763360977,
0.007820842787623405,
0.06954074651002884,
0.04423508793115616,
0.05579200014472008,
0.009046274237334728,
0.04124622792005539,
0.03373423591256142,
0.007168275769799948,
-0.01490443479269743,
-0.07878627628087997,
-0.038556259125471115,
0.030047977343201637,
-0.01616971753537655,
-0.008194450289011002,
-0.030845005065202713,
0.021001702174544334,
-0.0763951912522316,
-0.04295983910560608,
-0.015233208425343037,
-0.015292986296117306,
0.008682630024850368,
-0.04291998967528343,
-0.0023686692584306,
-0.015492242760956287,
0.011935503222048283,
0.036145247519016266,
-0.034710593521595,
-0.006620318628847599,
-0.014077517203986645,
0.035746730864048004,
0.04582914337515831,
-0.009031330235302448,
-0.06826549768447876,
-0.030466416850686073,
-0.010107318870723248,
-0.030207382515072823,
0.035945989191532135,
-0.024508628994226456,
0.04048905149102211,
-0.04463360086083412,
0.015920646488666534,
-0.020483635365962982,
-0.0253654345870018,
0.010067467577755451,
-0.008358837105333805,
-0.027796370908617973,
0.036324579268693924,
-0.002389840316027403,
-0.020702816545963287,
-0.04841948673129082,
-0.034730520099401474,
0.02005523070693016,
-0.0061719901859760284,
-0.015621759928762913,
0.0032429101411253214,
-0.05746576189994812,
0.02923102304339409,
0.012692679651081562,
-0.0028169979341328144,
-0.02011500857770443,
-0.011845837347209454,
0.019258202984929085,
-0.022157395258545876,
0.048658594489097595,
-0.01252331119030714,
-0.040847714990377426,
0.03807803988456726,
0.026481274515390396,
-0.04742319881916046,
-0.01195542886853218,
0.026341794058680534,
-0.04100712016224861,
-0.05312195420265198,
-0.02923102304339409,
0.06021551042795181,
0.02542521245777607,
-0.023791303858160973,
0.0630449578166008,
0.03178151324391365,
-0.008309022523462772,
0.043119244277477264,
0.0003869947395287454,
-0.000372361799236387,
0.07340633124113083,
-0.0035816470626741648,
0.0009614157024770975,
0.046745724976062775,
0.031940918415784836,
-0.021440068259835243,
-0.038177669048309326,
-0.05595140531659126,
-0.011776097118854523,
0.07288826256990433,
-0.010650294832885265,
0.03688249737024307,
0.042043257504701614,
-0.018501026555895805,
0.03451133891940117,
0.01115840021520853,
0.06914222985506058,
0.037540044635534286,
-0.0036887479946017265,
-0.005743587389588356,
-0.020702816545963287,
-0.01590071991086006,
-0.03630465269088745,
0.002362442435696721,
0.047064539045095444,
-0.06499768048524857,
-0.09883154183626175,
-0.06256674230098724,
0.05423779413104057,
-0.016090014949440956,
-0.05264373868703842,
-0.010690146125853062,
-0.010680182836949825,
0.04347790777683258,
0.005917937029153109,
0.039373211562633514,
0.03128337115049362,
0.03514895960688591,
0.06432020664215088,
0.020065193995833397,
-0.06527663767337799,
-0.0036738035269081593,
0.018162289634346962,
-0.05116923525929451,
0.017305482178926468,
-0.03642420470714569,
0.018640505149960518,
0.0052753328345716,
-0.04455389827489853,
-0.04009053856134415,
0.02426951937377453,
-0.0264414232224226,
-0.053241509944200516,
0.0016887042438611388,
0.013111120089888573,
-0.018122436478734016,
0.03192099556326866,
-0.04602840170264244,
-0.052085816860198975,
0.027477560564875603,
-0.005673847161233425,
0.00651570875197649,
-0.010351408272981644,
0.0001527897547930479,
-0.005952807143330574,
0.013629188761115074,
0.007083591539412737,
-0.012184574268758297,
0.015651648864150047,
0.03598583862185478,
-0.013738780282437801,
-0.0352286621928215,
-0.03961231932044029,
-0.018232028931379318,
-0.01519335713237524,
0.024946995079517365,
0.027856148779392242,
-0.01889953948557377,
-0.03508918359875679,
-0.06742861866950989,
0.09277412295341492,
-0.012005242519080639,
-0.004092243500053883,
0.002127069979906082,
0.04515166953206062,
0.05244448035955429,
-0.040070611983537674,
-0.02765689231455326,
-0.04622765630483627,
0.03496962785720825,
-0.016677822917699814,
-0.05682813748717308,
-0.009803451597690582,
-0.06806623935699463,
0.006306488532572985,
-0.07336647808551788,
0.02771666832268238,
0.01124806609004736,
0.042362067848443985,
-0.02211754396557808,
-0.02980886958539486,
-0.019786234945058823,
-0.02783622220158577,
-0.03287743031978607,
-0.04782171547412872,
0.023173606023192406,
-0.012035131454467773,
-0.02124081179499626,
-0.010829625651240349,
0.036005765199661255,
-0.023532269522547722,
0.019178500398993492,
0.025465063750743866,
-0.020194711163640022,
0.016916930675506592,
0.020214637741446495,
0.009848284535109997,
0.011258028447628021,
-0.008064933121204376,
-0.02925094962120056,
0.0352286621928215,
-0.018530914559960365,
0.03736071288585663,
0.01831173151731491,
-0.012433646246790886,
0.006351321469992399,
0.000974491995293647,
-0.025983132421970367,
0.05280314385890961,
0.03154240548610687,
-0.04953532665967941,
-0.024329297244548798,
0.02815503440797329,
0.011706356890499592,
0.005848197266459465,
0.0753590539097786,
-0.008338911458849907,
-0.04829993098974228,
-0.04933606833219528,
-0.058183085173368454,
0.002919117221608758,
-0.019716493785381317,
0.030147606506943703,
-0.03437185660004616,
-0.0801810771226883,
-0.06479842215776443,
0.045032113790512085,
0.03216010332107544,
-0.06153060495853424,
-0.011407471261918545,
0.026481274515390396,
0.012393794022500515,
0.0035716842394322157,
0.010480925440788269,
-0.01287201140075922,
0.048459336161613464,
-0.052285075187683105,
-0.0550348237156868,
0.028374217450618744,
0.08623848855495453,
0.06679099798202515,
0.01891946606338024,
-0.027118897065520287,
-0.0518467091023922,
0.018441248685121536,
0.05981699377298355,
-0.04419523477554321,
-0.003305177902802825,
0.056867990642786026,
0.054755862802267075,
0.06790683418512344,
0.012692679651081562,
0.06077342852950096,
-0.0020685382187366486,
0.03506925702095032,
0.0016862135380506516,
-0.05264373868703842,
-0.06746847182512283,
-0.01347974594682455,
-0.027098972350358963,
0.009888135828077793,
0.05264373868703842,
-0.005011317320168018,
-0.011746209114789963,
-0.04678557813167572,
-0.011686431244015694,
0.008617871440947056,
-0.06567515432834625,
0.050372205674648285,
0.029948348179459572,
-0.03265824541449547,
-0.012184574268758297,
-0.022615686058998108,
0.01062040589749813,
0.04216281324625015,
0.06300511211156845,
-0.03160218149423599,
-0.01976630836725235,
0.047064539045095444,
-0.03688249737024307,
0.003865588689222932,
0.04028979316353798,
-0.02426951937377453,
0.02389093115925789,
-0.043438058346509933,
-0.017106225714087486,
0.008254227228462696,
-0.03309661149978638,
-0.04794126749038696,
-0.04367716610431671,
-0.06818579137325287,
0.06093283370137215,
-0.0010006445227190852,
-0.02594328112900257,
0.03921380639076233,
-0.05383928120136261,
-0.02122088521718979,
0.04371701925992966,
-0.03564710170030594,
0.019457459449768066,
0.034232378005981445,
0.0363445021212101,
-0.01579112932085991,
-0.035507623106241226,
0.024169892072677612,
0.03361468017101288,
0.031183743849396706,
-0.04415538161993027,
0.05200611427426338,
0.037400566041469574,
-0.02458833158016205,
-6.664606644335436e-7,
0.04610810428857803,
0.0438365712761879,
0.06280585378408432,
-0.06555560231208801,
-0.0041719465516507626,
-0.011527026072144508,
-0.055712297558784485,
-0.00379833928309381,
0.06878356635570526,
-0.015462354756891727,
0.03096456080675125,
-0.0630449578166008,
0.001079101930372417,
0.07567786425352097,
-0.03102433681488037,
-0.022257022559642792,
-0.052085816860198975,
0.05053161084651947,
0.0009757373481988907,
-0.01332033984363079,
-0.010670220479369164,
0.032319508492946625,
0.02664067968726158,
-0.036962199956178665,
0.07531920075416565,
-0.05611081048846245,
0.05252418294548988,
0.008737425319850445,
0.02022460103034973,
-0.009036311879754066,
0.052085816860198975,
-0.01585090532898903,
0.024448851123452187,
0.021260736510157585,
-0.006640244275331497,
-0.03114389255642891,
-0.033335719257593155,
0.009863228537142277,
-0.03730093687772751,
-0.0039926148019731045,
0.0280354805290699,
0.02211754396557808,
-0.04411553218960762,
0.0496947318315506,
-0.06184941902756691,
0.01834161952137947,
0.010371333919465542,
-0.05041205883026123,
0.02371159940958023,
-0.029888572171330452,
-0.009673934429883957,
-0.08926720172166824,
0.039951056241989136,
-0.009494602680206299,
0.021579548716545105,
-0.010391260497272015,
-0.05750561133027077,
-0.003063578624278307,
-0.010839588940143585,
-0.09875184297561646,
-0.011527026072144508,
0.03915403038263321,
0.04011046141386032,
-0.04877815023064613,
0.024747736752033234,
0.02397063374519348,
0.0047373385168612,
-0.002610268536955118,
-0.030546119436621666,
-0.025405285879969597,
0.010301594622433186,
0.024229668080806732,
-0.008049988187849522,
0.05894026160240173,
0.07065658271312714,
-0.02789600007236004,
-0.034232378005981445,
0.0029440242797136307,
0.026839938014745712,
0.0459088459610939,
0.020035305991768837,
0.015143542550504208,
-0.03688249737024307,
0.004418527241796255,
0.04212296009063721,
0.039134103804826736,
-0.006695040035992861,
-0.05256403610110283,
-0.0013898186152800918,
0.011915577575564384,
0.007751103024929762,
0.015661612153053284,
0.007910508662462234,
-0.012931788340210915,
-0.06886327266693115,
-0.008035044185817242,
-0.0048444392159581184,
-0.06316451728343964,
-0.001968909753486514,
-0.00786567572504282,
-0.023293159902095795,
-0.02974909171462059,
0.00777102867141366,
-0.05531378462910652,
-0.024687960743904114,
-0.05746576189994812,
-0.008269171230494976,
-0.018710246309638023,
0.03965217247605324,
0.0052404627203941345,
-0.0066551887430250645,
0.03682272136211395,
0.04120637848973274,
-0.02885243482887745,
-0.07057688385248184,
0.05383928120136261,
0.02124081179499626,
0.028334366157650948,
-0.020423857495188713,
0.02626209147274494,
-0.01242368295788765,
0.0063662659376859665,
-0.0221773199737072,
0.04945562407374382,
0.02701926790177822,
0.012473497539758682,
0.05627021938562393,
0.05638977140188217,
-0.012343980371952057,
0.028194885700941086
]
|
42,245 | flask_restful | _get_propagate_exceptions_bool | Handle Flask's propagate_exceptions.
If propagate_exceptions is set to True then the exceptions are re-raised rather than being handled
by the app’s error handlers.
The default value for Flask's app.config['PROPAGATE_EXCEPTIONS'] is None. In this case return a sensible
value: self.testing or self.debug.
| def _get_propagate_exceptions_bool(app):
"""Handle Flask's propagate_exceptions.
If propagate_exceptions is set to True then the exceptions are re-raised rather than being handled
by the app’s error handlers.
The default value for Flask's app.config['PROPAGATE_EXCEPTIONS'] is None. In this case return a sensible
value: self.testing or self.debug.
"""
propagate_exceptions = app.config.get(_PROPAGATE_EXCEPTIONS, False)
if propagate_exceptions is None:
return app.testing or app.debug
return propagate_exceptions
| (app) | [
0.06415823101997375,
-0.01782567985355854,
-0.0029924213886260986,
0.061634551733732224,
0.038814838975667953,
-0.029733162373304367,
-0.0034322873689234257,
-0.0013195979408919811,
0.040201082825660706,
0.014537792652845383,
-0.0011079957475885749,
-0.04670576751232147,
0.03223906457424164,
-0.034478381276130676,
0.017070353031158447,
0.010112473741173744,
-0.028737910091876984,
0.0028457995504140854,
0.12810318171977997,
-0.02943103201687336,
0.0057493592612445354,
-0.016226166859269142,
-0.009490441530942917,
-0.024205956608057022,
-0.017052581533789635,
0.002170449821278453,
-0.01724807731807232,
0.034869372844696045,
0.05502323433756828,
0.0308705922216177,
-0.016075100749731064,
-0.07592353224754333,
0.054632242769002914,
-0.001130211167037487,
0.021504558622837067,
0.0024592506233602762,
-0.03831721097230911,
-0.0013740257127210498,
-0.019869500771164894,
-0.030515145510435104,
-0.040201082825660706,
0.008153070695698261,
0.03394521027803421,
0.008650696836411953,
-0.014866581186652184,
0.0037299746181815863,
-0.05018915235996246,
0.061883363872766495,
-0.009055018424987793,
0.03821057826280594,
0.029128901660442352,
-0.008877295069396496,
0.03554472327232361,
0.050686776638031006,
0.01261837687343359,
0.020935842767357826,
0.015533044934272766,
-0.05651611089706421,
-0.03170589357614517,
-0.07876710593700409,
-0.025059031322598457,
0.01629725657403469,
0.0436844676733017,
-0.03346535935997963,
0.04315129667520523,
0.0509711354970932,
-0.05530758947134018,
-0.0021982190664857626,
0.0026280879974365234,
-0.021557874977588654,
-0.045532792806625366,
-0.04215604439377785,
-0.0602838508784771,
-0.029075585305690765,
-0.02033158205449581,
-0.028009243309497833,
0.018101150169968605,
-0.014137914404273033,
-0.003814393188804388,
-0.05090004578232765,
-0.03312768414616585,
0.03981009125709534,
-0.008979486301541328,
0.02065148390829563,
0.02813364937901497,
0.0017128114122897387,
-0.030017519369721413,
0.060923658311367035,
0.058684341609478,
-0.015577475540339947,
0.024205956608057022,
0.019318558275699615,
0.011107726022601128,
-0.03952573239803314,
0.02305075339972973,
0.060674846172332764,
0.002712506800889969,
0.015595247969031334,
0.02217990718781948,
-0.045035164803266525,
-0.00042153822141699493,
0.04826973378658295,
0.04012999311089516,
-0.020455988124012947,
0.0018294425681233406,
-0.042120497673749924,
-0.023352883756160736,
-0.005296163726598024,
0.07428847253322601,
-0.043577831238508224,
-0.024419225752353668,
-0.0627719834446907,
0.023370657116174698,
0.0057493592612445354,
-0.007015639916062355,
-0.02265976183116436,
0.036166757345199585,
0.02331733889877796,
0.014982101507484913,
0.003630005056038499,
0.022144362330436707,
0.028204739093780518,
0.020260492339730263,
-0.022606445476412773,
0.0749993696808815,
0.018429938703775406,
-0.018501028418540955,
0.029555438086390495,
0.02210881933569908,
-0.024739127606153488,
0.02088252641260624,
0.01919415034353733,
0.00028602394741028547,
-0.038814838975667953,
-0.017727931961417198,
0.018909793347120285,
-0.026356413960456848,
0.07571025937795639,
0.016412775963544846,
-0.0016761559527367353,
-0.037286415696144104,
0.00992586463689804,
-0.013933531939983368,
0.024827990680933,
0.018589891493320465,
0.040592074394226074,
-0.05061568692326546,
0.06330515444278717,
0.012778328731656075,
0.05594739690423012,
0.08289029449224472,
0.009277173317968845,
-0.049655981361866,
0.0007980901282280684,
-0.056658290326595306,
0.03520704805850983,
-0.04080534353852272,
0.04386219009757042,
0.024774672463536263,
-0.019371874630451202,
-0.02498794160783291,
-0.013951304368674755,
0.0351715050637722,
-0.011676441878080368,
0.00992586463689804,
-0.03039073944091797,
-0.007819839753210545,
0.02241094782948494,
0.06387387216091156,
0.02347728982567787,
-0.054561153054237366,
0.01701703667640686,
0.00737997330725193,
-0.027529388666152954,
0.01499098725616932,
0.07876710593700409,
0.015515272505581379,
0.017159216105937958,
-0.05136212706565857,
0.026356413960456848,
0.014688856899738312,
-0.017132557928562164,
-0.024312591180205345,
-0.0014751061098650098,
0.03913474082946777,
0.030817275866866112,
-0.023601697757840157,
0.008801762014627457,
0.008050880394876003,
0.0662553682923317,
-0.006664635613560677,
0.02459695003926754,
0.05658720061182976,
0.009041689336299896,
0.002337065525352955,
0.037535227835178375,
-0.01990504562854767,
0.002337065525352955,
0.028240283951163292,
-0.0031945821829140186,
-0.00891283992677927,
-0.020420443266630173,
-0.019727321341633797,
0.0056604971177875996,
-0.040201082825660706,
-0.019976135343313217,
-0.0479142889380455,
-0.04762993007898331,
-0.025023486465215683,
0.018429938703775406,
-0.02797369845211506,
-0.04549724608659744,
0.005669383332133293,
0.009819230064749718,
0.056338388472795486,
0.06920557469129562,
0.058826517313718796,
-0.002098249504342675,
-0.06127910315990448,
0.07393302768468857,
0.0009647060069255531,
-0.04400436952710152,
0.04329347237944603,
0.013658060692250729,
0.025378933176398277,
0.038103945553302765,
-0.025290071964263916,
-0.012964937835931778,
0.018963109701871872,
0.003096834057942033,
0.0043253484182059765,
0.045674972236156464,
-0.03959682211279869,
-0.002445921301841736,
0.13691827654838562,
-0.02170005440711975,
0.03294995799660683,
0.03424734249711037,
0.05502323433756828,
0.01165866944938898,
0.0557696707546711,
0.011765304021537304,
-0.026836266741156578,
-0.014528905972838402,
0.026640770956873894,
-0.05434788390994072,
0.013044914230704308,
-0.012120750732719898,
-0.0179145410656929,
0.026018738746643066,
0.04055653139948845,
-0.0006231434526853263,
0.010778937488794327,
-0.011436515487730503,
-0.030532918870449066,
0.013222637586295605,
-0.011320994235575199,
0.043897733092308044,
-0.0031545942183583975,
0.0034367304760962725,
0.0358290821313858,
0.044786352664232254,
0.020509306341409683,
0.027085080742836,
-0.0716581642627716,
-0.008601822890341282,
0.013995734974741936,
-0.07265341281890869,
0.04798537865281105,
0.03142153471708298,
-0.016306141391396523,
0.0035300354938954115,
-0.014662198722362518,
-0.005198415834456682,
0.017603524029254913,
-0.02072257362306118,
0.006198111455887556,
0.03127935901284218,
-0.04443090409040451,
0.03460278734564781,
-0.009579302743077278,
0.008526290766894817,
0.012040775269269943,
0.035917945206165314,
-0.052606191486120224,
-0.03312768414616585,
-0.06671744585037231,
0.031741440296173096,
0.05239292234182358,
-0.01116992998868227,
0.04524843394756317,
0.010112473741173744,
0.05960850417613983,
-0.03063955157995224,
-0.017274735495448112,
-0.00455861072987318,
0.0448574423789978,
-0.06433594971895218,
-0.017639068886637688,
-0.03248787671327591,
0.07919364422559738,
0.03387412056326866,
-0.004074314143508673,
0.03588239848613739,
0.03643334284424782,
0.03195470571517944,
0.011836392804980278,
-0.030995000153779984,
0.024899078533053398,
0.002712506800889969,
-0.054170161485672,
-0.0027369437739253044,
-0.010663417167961597,
-0.00667352182790637,
0.030852820724248886,
-0.06120801344513893,
0.017532436177134514,
-0.006326960865408182,
-0.025787698104977608,
0.007295554503798485,
-0.0011785298120230436,
0.08495189249515533,
-0.026320869103074074,
0.0033078808337450027,
0.00246813683770597,
0.015186483040452003,
0.045106254518032074,
-0.03474496677517891,
-0.010387945920228958,
-0.00023978804529178888,
-0.011845279484987259,
-0.034318432211875916,
0.015497500076889992,
0.01189859677106142,
0.031190495938062668,
-0.029946429654955864,
0.010983319953083992,
-0.04421763867139816,
0.0020382676739245653,
-0.04784319922327995,
-0.027209486812353134,
0.021095793694257736,
0.026143144816160202,
-0.01104552298784256,
-0.012023002840578556,
0.02306852675974369,
-0.04663467779755592,
0.04460863023996353,
0.0016939282650128007,
-0.0071489326655864716,
0.003190139075741172,
-0.016750451177358627,
-0.06383832544088364,
0.04137405753135681,
-0.051397670060396194,
-0.004107637330889702,
-0.03746413812041283,
0.03135044500231743,
0.07492827624082565,
0.06120801344513893,
-0.011534263379871845,
-0.025609973818063736,
-0.018980883061885834,
0.050757866352796555,
0.0008308579563163221,
0.006566887721419334,
0.02049153298139572,
-0.025912104174494743,
-0.04005890339612961,
-0.00018563788034953177,
-0.014644426293671131,
-0.020136086270213127,
0.041338514536619186,
-0.06621982157230377,
0.011587579734623432,
0.02992865815758705,
-0.010494579561054707,
-0.022446492686867714,
0.032132431864738464,
0.10926448553800583,
0.0015606355154886842,
0.02001168020069599,
-0.001505096908658743,
0.0017894547199830413,
0.06401605159044266,
-0.08033107966184616,
0.025912104174494743,
-0.011978572234511375,
0.01935410313308239,
-0.029715389013290405,
-0.01273389719426632,
-0.029626527801156044,
-0.060852568596601486,
0.05875542759895325,
-0.028346918523311615,
-0.07990454137325287,
-0.040698710829019547,
0.04467971995472908,
0.009570416994392872,
-0.0067890421487390995,
-0.031883616000413895,
0.008135299198329449,
0.033340949565172195,
-0.056018486618995667,
-0.005069566424936056,
0.03332317993044853,
-0.03781958669424057,
0.03259451314806938,
0.024739127606153488,
-0.014297865331172943,
-0.008472973480820656,
-0.0031123848166316748,
-0.04741666093468666,
-0.02500571310520172,
-0.02184223383665085,
0.01644832082092762,
-0.023992689326405525,
0.06103029102087021,
0.039632368832826614,
0.02475690096616745,
0.016910402104258537,
-0.011507604271173477,
0.018909793347120285,
-0.034140706062316895,
-0.023726103827357292,
-0.0012784992577508092,
-0.03353644907474518,
0.0322568379342556,
-0.048838451504707336,
0.02790260873734951,
-0.016501639038324356,
0.010254653170704842,
0.025787698104977608,
-0.016590500250458717,
0.01487546693533659,
-0.04041435196995735,
-0.027191713452339172,
-0.014911011792719364,
-0.05008251592516899,
0.019496280699968338,
-0.005549420136958361,
-0.022446492686867714,
-0.03303882107138634,
-0.006171452812850475,
0.018749842420220375,
-0.037926219403743744,
0.0039032550994306803,
-0.001248508458957076,
0.029644299298524857,
-0.020704802125692368,
-0.017603524029254913,
-0.05239292234182358,
-0.026267550885677338,
-0.0022770839277654886,
-0.039063651114702225,
0.05143321678042412,
-0.013293727301061153,
-0.008846193552017212,
-0.026107599958777428,
0.07698987424373627,
-0.03501155227422714,
-0.05875542759895325,
-0.028258055448532104,
-0.05345926433801651,
0.01919415034353733,
-0.02281971275806427,
0.040272172540426254,
-0.023032981902360916,
-0.05235737934708595,
0.0018161132466048002,
0.042440399527549744,
-0.05409907177090645,
0.037926219403743744,
-0.028169194236397743,
-0.03735750541090965,
0.013533653691411018,
-0.0011496497318148613,
0.03668215498328209,
0.04322238638997078,
0.0058782086707651615,
-0.05168202891945839,
-0.032363470643758774,
-0.01181862037628889,
0.006211440544575453,
-0.04219158738851547,
-0.06458476185798645,
-0.01003249827772379,
-0.02710285224020481,
0.028240283951163292,
-0.025450022891163826,
0.03984563425183296,
-0.059395235031843185,
0.02006499655544758,
0.04514180123806,
0.029466576874256134,
-0.004305354785174131,
0.01330261304974556,
-0.013977962546050549,
0.0630563423037529,
0.03764186426997185,
0.004396438132971525,
0.004443090409040451,
-0.0047940947115421295,
0.04652804508805275,
0.019620688632130623,
-0.08040216565132141,
-0.04094752296805382,
0.01644832082092762,
-0.010068043135106564,
-0.008410770446062088,
-0.0009908091742545366,
0.05345926433801651,
0.0017694608541205525,
0.007157818879932165,
-0.001478438382036984,
-0.05726255103945732,
0.03588239848613739,
-0.06988092511892319,
0.04919390007853508,
0.0010319077409803867,
0.04496407508850098,
-0.03927692025899887,
-0.02740498259663582,
0.013160434551537037,
-0.002457028953358531,
-0.017354711890220642,
0.08232158422470093,
0.059466324746608734,
-0.026711860671639442,
0.03598903492093086,
-0.010094701312482357,
0.03476274013519287,
0.025983193889260292,
0.01806560531258583,
-0.015257572755217552,
-0.0024125981144607067,
-0.006980095058679581,
-0.009712595492601395,
-0.07233351469039917,
0.011472059413790703,
0.018358850851655006,
0.005065123084932566,
-0.011934141628444195,
-0.005816005636006594,
0.02822251059114933,
-0.07123162597417831,
-0.027795974165201187,
0.0037855131085962057,
0.01024576649069786,
-0.060106128454208374,
0.0045763831585645676,
0.05740473046898842,
0.02603651024401188,
-0.026871811598539352,
0.06764160841703415,
-0.04336456209421158,
0.07169371098279953,
0.08879072219133377,
-0.03595348820090294,
-0.017354711890220642,
-0.046812400221824646,
-0.07265341281890869,
-0.034069620072841644,
-0.05964404717087746,
-0.02767156809568405,
-0.033109910786151886,
-0.010467921383678913,
0.050046972930431366,
-0.02145124040544033,
-0.016403891146183014,
0.015675222501158714,
-0.07055627554655075,
-0.009419351816177368,
-0.014466702938079834,
0.02033158205449581,
0.059715136885643005,
-0.021646736189723015,
0.03781958669424057,
0.0018183348001912236,
-0.02772488445043564,
0.007708762306720018,
-0.060994748026132584,
-0.056160666048526764,
0.008277477696537971,
-0.0015139831230044365,
-0.041658416390419006,
0.06558001786470413,
0.0464569553732872,
-0.011800848878920078,
-0.045532792806625366,
-0.05353035405278206,
-0.004625257104635239,
0.03396298363804817,
-0.024046005681157112,
0.029093356803059578,
0.03177698329091072,
-0.018767613917589188,
0.03120826743543148,
0.03014192543923855,
0.034798286855220795,
0.018803158774971962,
-0.009988067671656609,
0.05278391391038895,
-0.11281895637512207,
-0.006726839113980532,
-0.04450199380517006,
-0.004798537585884333,
0.008139741607010365,
-0.01919415034353733,
-0.006864574737846851,
-0.008646254427731037,
0.0124139953404665,
0.004172062035650015,
-0.049229443073272705,
-0.0019849506206810474,
-0.01471551600843668,
-0.05090004578232765,
0.05072232335805893,
0.02710285224020481,
-0.037855129688978195,
0.04283139109611511,
-0.02216213569045067,
-0.03232792764902115,
-0.045923784375190735,
-0.006997867487370968,
-0.021948866546154022,
0.018927564844489098,
-0.058826517313718796,
-0.06959657371044159,
-0.03767740726470947,
0.04105415567755699,
0.01992281712591648,
0.03483382984995842,
-0.08943052589893341,
-0.022766396403312683,
0.02047376148402691,
0.031012771651148796,
-0.003456724341958761,
0.006100363098084927,
-0.010716734454035759,
0.032043568789958954,
-0.00834412407130003,
-0.05989285930991173,
-0.016092874109745026,
0.04784319922327995,
0.01007692888379097,
0.0353136844933033,
-0.017274735495448112,
0.06948993355035782,
-0.027920380234718323,
-0.032772235572338104,
0.043506741523742676,
-0.03682433441281319,
-0.025272298604249954,
-0.046172596514225006,
0.016723792999982834,
-0.01347145065665245,
0.026622997596859932,
-0.05232183262705803,
0.012236271053552628,
-0.024223729968070984,
0.027636023238301277,
-0.041409604251384735,
-0.000999139971099794,
0.05573412775993347,
0.02998197451233864,
0.008073095232248306,
-0.012680580839514732,
0.10279534012079239,
-0.015230914577841759,
-0.00001621033879928291,
-0.0060159447602927685,
-0.00653134286403656,
0.045603882521390915,
0.07741641253232956,
-0.0010863356292247772,
-0.027191713452339172,
0.040840886533260345,
-0.04066316410899162,
-0.08409881591796875,
-0.008868408389389515,
0.08424099534749985,
-0.02546779438853264,
0.050118062645196915,
0.018518801778554916,
-0.0388859286904335,
0.013995734974741936,
0.013951304368674755,
0.06589991599321365,
0.05267728120088577,
-0.06405159085988998,
-0.026143144816160202,
0.03501155227422714,
0.0779140368103981,
0.002461472060531378,
-0.052712827920913696,
-0.030675096437335014,
-0.013969076797366142,
-0.033749714493751526,
0.011783076450228691,
0.009023916907608509,
0.021646736189723015,
-0.003929913509637117,
0.01597735285758972,
0.03179475665092468,
-0.01990504562854767,
0.009828115813434124,
-0.017550207674503326,
-0.06604209542274475,
-0.04137405753135681,
-0.04812755808234215,
0.010921116918325424,
0.0647980347275734,
-0.03186584636569023,
-0.01653718389570713,
-0.036095667630434036,
-0.018643207848072052,
-0.04539061337709427,
-0.04126742482185364,
-0.01869652420282364,
-0.07578135281801224,
0.023726103827357292,
-0.04055653139948845,
-0.026551909744739532,
-0.03200802579522133,
-0.00987254735082388,
-0.041338514536619186,
-0.05210856720805168,
0.004105415660887957,
0.01257394626736641,
0.022641988471150398,
-0.04699012637138367,
0.0076332297176122665,
0.06952548027038574,
0.018030062317848206,
0.020704802125692368,
-0.022766396403312683,
0.026996217668056488,
-0.026889583095908165,
-0.018341077491641045,
0.06664635986089706,
-0.03047960065305233,
-0.041480693966150284,
-0.03561581298708916,
-0.027049535885453224,
0.028560185804963112,
0.01108995359390974,
-0.006962323095649481,
-0.06177673116326332,
-0.007566583342850208,
0.037784043699502945,
0.034869372844696045,
0.02678295038640499,
-0.059715136885643005,
0.02354837954044342,
0.04396882280707359,
-0.008895067498087883,
-0.04073425382375717,
0.018429938703775406,
-0.0076332297176122665,
-0.0029546550940722227,
0.04574606195092201,
-0.03717978298664093,
0.052535101771354675,
0.03442506492137909,
0.03892147168517113,
-0.05171757563948631,
0.05200193077325821
]
|
42,246 | flask_restful | _handle_flask_propagate_exceptions_config | null | def _handle_flask_propagate_exceptions_config(app, e):
propagate_exceptions = _get_propagate_exceptions_bool(app)
if not isinstance(e, HTTPException) and propagate_exceptions:
exc_type, exc_value, tb = sys.exc_info()
if exc_value is e:
raise
else:
raise e
| (app, e) | [
-0.010094013065099716,
-0.037745118141174316,
0.0017287421505898237,
0.0400252602994442,
-0.026642581447958946,
-0.022485706955194473,
-0.005617041606456041,
-0.012909110635519028,
0.022362930700182915,
-0.00915564689785242,
-0.0005947004538029432,
-0.04658505320549011,
0.03488617017865181,
-0.018802400678396225,
0.008625075221061707,
0.04497141391038895,
0.0010847117519006133,
0.017618481069803238,
0.11211282014846802,
-0.03988494351506233,
-0.0032908585853874683,
-0.043217457830905914,
-0.020451119169592857,
0.009927387349307537,
-0.021643808111548424,
-0.02334514446556568,
0.0015500580193474889,
0.029080579057335854,
0.03558775410056114,
-0.0364471897482872,
0.013733469881117344,
-0.05995019152760506,
0.06023082509636879,
0.008151507005095482,
0.019854774698615074,
-0.03520188108086586,
-0.03528958186507225,
0.020556356757879257,
-0.0438138023018837,
-0.0078489501029253,
-0.05317992344498634,
-0.005621426738798618,
-0.023538079112768173,
-0.020556356757879257,
0.02439751848578453,
0.02860701084136963,
-0.06128319725394249,
0.06538745015859604,
-0.03904304653406143,
0.025116639211773872,
-0.05574069917201996,
0.01273371558636427,
0.04104255512356758,
0.020047709345817566,
0.04914582893252373,
0.027291543781757355,
0.0182235948741436,
-0.03269372507929802,
-0.0030562670435756445,
-0.06117796152830124,
-0.01601361110806465,
0.0419195331633091,
0.003065036842599511,
-0.012882801704108715,
0.049812331795692444,
-0.004507665056735277,
-0.03886764869093895,
0.009865998290479183,
-0.04868979752063751,
-0.03760480135679245,
-0.0010457958560436964,
-0.037745118141174316,
-0.04805837571620941,
0.017416775226593018,
-0.016636265441775322,
-0.02578314207494259,
0.02997509576380253,
-0.007331532891839743,
0.018925176933407784,
-0.042480796575546265,
0.010883292183279991,
0.02850177325308323,
-0.005161013454198837,
0.013522995635867119,
0.05444277077913284,
-0.00714736757799983,
-0.040376052260398865,
0.038692254573106766,
0.019924931228160858,
0.03935875743627548,
0.00018073961837217212,
-0.010541271418333054,
-0.013216053135693073,
-0.020240643993020058,
0.01824113540351391,
0.07703371345996857,
0.037990670651197433,
-0.00796734169125557,
0.003832392394542694,
-0.054723404347896576,
0.032518330961465836,
0.007568316999822855,
0.013444066978991032,
-0.023082051426172256,
0.0069018141366541386,
-0.08285684883594513,
0.021240398287773132,
-0.03527203947305679,
0.021433332934975624,
-0.011523486115038395,
-0.01371593028306961,
-0.033886417746543884,
0.03036096692085266,
-0.01803066022694111,
-0.0052794055081903934,
0.0211702398955822,
0.042691271752119064,
0.02597607858479023,
0.04135826602578163,
0.0033040132839232683,
0.048549480736255646,
-0.03069421835243702,
0.019240889698266983,
-0.025274496525526047,
0.0737362802028656,
0.041112713515758514,
-0.04953169822692871,
-0.020152946934103966,
0.0224330872297287,
-0.04605886712670326,
-0.045287124812603,
0.0187497828155756,
-0.03841162100434303,
-0.02913319692015648,
-0.009243343956768513,
0.018591925501823425,
-0.05521451309323311,
0.0320272222161293,
-0.005055776331573725,
-0.019731996580958366,
-0.014522749930620193,
0.0444452278316021,
-0.0011022512335330248,
0.0010320930741727352,
0.012391693890094757,
-0.00597221776843071,
-0.027414321899414062,
0.02576560340821743,
0.0031308101024478674,
-0.0003913512628059834,
0.03865717351436615,
0.05142596736550331,
-0.0379205122590065,
0.0026835515163838863,
-0.05689831078052521,
0.04753218963742256,
-0.021713966503739357,
0.006621181033551693,
-0.001870154868811369,
0.02408180572092533,
-0.011041148565709591,
-0.022959275171160698,
0.06187954172492027,
-0.03837653994560242,
-0.0436033271253109,
-0.02850177325308323,
-0.0036613817792385817,
0.012321535497903824,
0.024748308584094048,
-0.00295760715380311,
-0.04956677556037903,
-0.008971481584012508,
0.00984845869243145,
-0.04441014677286148,
0.027379242703318596,
0.0358157679438591,
0.027045991271734238,
-0.037464484572410583,
0.0006599256885237992,
0.005200477316975594,
0.0417090579867363,
-0.03337777033448219,
0.0067044938914477825,
-0.016934437677264214,
0.05121549591422081,
0.05402182415127754,
-0.03904304653406143,
0.0037074231076985598,
-0.025940999388694763,
0.05584593489766121,
0.029045499861240387,
-0.018293753266334534,
0.00020732299890369177,
0.0362367145717144,
0.02222261391580105,
0.035570211708545685,
-0.02913319692015648,
0.017250150442123413,
0.0362367145717144,
-0.008208510465919971,
0.0001373018167214468,
0.016636265441775322,
0.014917389489710331,
0.013268671929836273,
-0.012900341302156448,
-0.00022116280160844326,
0.00023034366313368082,
-0.03302697837352753,
-0.026993371546268463,
0.0010266120079904795,
-0.058582108467817307,
-0.00995369628071785,
0.004483547993004322,
-0.031237943097949028,
0.04532220587134361,
0.03735924884676933,
0.018627004697918892,
-0.023748554289340973,
-0.012610938400030136,
0.031080087646842003,
0.0032097382936626673,
0.012961729429662228,
0.028308838605880737,
-0.0045471289195120335,
0.0756305530667305,
-0.001586233265697956,
-0.019311048090457916,
-0.026326868683099747,
0.04283158853650093,
0.06061669439077377,
-0.010436033830046654,
0.019731996580958366,
-0.015329569578170776,
-0.004928614478558302,
0.181148499250412,
-0.019328586757183075,
0.06072193384170532,
-0.02053881622850895,
0.011523486115038395,
0.020065248012542725,
0.05216262862086296,
0.022257693111896515,
-0.06570316851139069,
-0.019030414521694183,
0.01518048346042633,
-0.0337110199034214,
0.012663557194173336,
0.028414076194167137,
-0.037464484572410583,
-0.013558074831962585,
0.039534151554107666,
0.05153120681643486,
-0.01654856838285923,
-0.009427509270608425,
-0.03186936676502228,
-0.04118287190794945,
-0.027922967448830605,
0.018872559070587158,
0.007296454161405563,
-0.007774407044053078,
0.06209001690149307,
0.03500894829630852,
0.02387133240699768,
0.02587084099650383,
-0.08355843275785446,
0.008563687093555927,
0.008918862789869308,
-0.03239555284380913,
0.05040867626667023,
0.03841162100434303,
0.04805837571620941,
0.06608903408050537,
0.04753218963742256,
0.024888625368475914,
0.03351808711886406,
0.0069500477984547615,
0.03551759570837021,
0.041217949241399765,
-0.03381625935435295,
0.056722912937402725,
0.016592416912317276,
-0.009997544810175896,
0.032518330961465836,
0.07577086985111237,
-0.058090999722480774,
0.016373172402381897,
-0.05924861133098602,
0.04139334335923195,
0.026467185467481613,
0.01927596889436245,
0.055565305054187775,
0.0002839215158019215,
0.04567299410700798,
0.0029334903229027987,
-0.04455046355724335,
-0.02166134864091873,
0.03206230327486992,
-0.04974217340350151,
0.015618971548974514,
-0.03583330661058426,
0.04662013053894043,
0.030343426391482353,
-0.0007772214594297111,
-0.004452853929251432,
0.03637703135609627,
-0.04160381853580475,
0.08145368099212646,
-0.012830182909965515,
0.018977796658873558,
-0.00395516911521554,
-0.0013034080620855093,
-0.012698636390268803,
-0.05844179168343544,
-0.01768863946199417,
0.027519557625055313,
-0.009918617084622383,
0.007708633318543434,
0.0052750203758478165,
-0.018679624423384666,
-0.010769285261631012,
-0.01769740879535675,
0.0798400416970253,
-0.024906165897846222,
-0.030308347195386887,
0.027203846722841263,
-0.014794613234698772,
0.08033115416765213,
-0.0018263059901073575,
-0.035991162061691284,
0.03069421835243702,
-0.000695004768203944,
-0.0042358022183179855,
-0.018100818619132042,
0.022748799994587898,
0.02388887107372284,
-0.0431823804974556,
-0.02073175087571144,
-0.043533168733119965,
-0.01918826997280121,
-0.06619427353143692,
-0.03781527653336525,
0.028150983154773712,
0.04984740912914276,
0.026642581447958946,
-0.03362332284450531,
0.018276214599609375,
-0.0035824535880237818,
-0.008392675779759884,
-0.039218440651893616,
0.023485461249947548,
-0.0007454309961758554,
-0.0006034702528268099,
-0.047707583755254745,
0.03351808711886406,
-0.00795857235789299,
-0.014180728234350681,
-0.04753218963742256,
-0.042901746928691864,
0.010216789320111275,
0.015417266637086868,
0.02334514446556568,
-0.009813379496335983,
-0.03143087774515152,
0.004779528360813856,
-0.01917073130607605,
0.029150737449526787,
-0.0044988952577114105,
-0.017258919775485992,
-0.02997509576380253,
0.001974295824766159,
0.006160767748951912,
-0.019205810502171516,
0.022678641602396965,
-0.045743152499198914,
0.024748308584094048,
0.04135826602578163,
-0.026046235114336014,
-0.02408180572092533,
-0.0018537115538492799,
0.10039640218019485,
0.0393938347697258,
0.01749570481479168,
-0.000052995485020801425,
-0.03332515060901642,
0.055460065603256226,
-0.10088750720024109,
0.05219770967960358,
-0.03844669833779335,
0.03414950892329216,
0.0034574843011796474,
-0.0008819106151349843,
-0.012900341302156448,
0.0057354336604475975,
0.07198232412338257,
-0.005450415890663862,
-0.0680534616112709,
-0.043743643909692764,
0.02032834105193615,
0.023011893033981323,
0.023625778034329414,
-0.0425509549677372,
0.02692321315407753,
-0.007809485774487257,
-0.00885747466236353,
0.035044025629758835,
0.03662258759140968,
-0.0225383248180151,
0.04942645877599716,
0.02616901323199272,
0.03558775410056114,
-0.02934367209672928,
0.02094222605228424,
-0.007695478852838278,
-0.0184340700507164,
0.011769039556384087,
-0.023099591955542564,
-0.0013395833084359765,
0.024958783760666847,
-0.007366612087935209,
-0.011979514732956886,
0.026204092428088188,
0.020275723189115524,
0.04942645877599716,
-0.06054653599858284,
-0.01737292669713497,
-0.021608728915452957,
-0.027922967448830605,
0.0370786152780056,
-0.036938298493623734,
0.03227277845144272,
-0.015171713195741177,
0.027203846722841263,
0.011856737546622753,
-0.055039115250110626,
0.026256710290908813,
-0.0450766496360302,
-0.04746203124523163,
-0.0090591786429286,
0.005717894062399864,
-0.016197776421904564,
-0.0014700337778776884,
-0.02566036581993103,
-0.0408671572804451,
0.012225068174302578,
0.05707370489835739,
-0.013917635194957256,
0.018083279952406883,
0.022503245621919632,
0.024906165897846222,
-0.01750447414815426,
-0.023625778034329414,
-0.08285684883594513,
0.005678430199623108,
-0.03627179563045502,
-0.023818712681531906,
0.023520540446043015,
-0.04497141391038895,
-0.020819449797272682,
0.02713368833065033,
0.05465324595570564,
-0.027835270389914513,
-0.06829901784658432,
0.033886417746543884,
-0.08159399777650833,
0.03364086151123047,
-0.012935420498251915,
0.06647490710020065,
-0.006178307346999645,
-0.021538570523262024,
-0.020556356757879257,
0.01210229191929102,
-0.046865686774253845,
0.0442347526550293,
0.011532256379723549,
-0.03830638527870178,
-0.008199741132557392,
0.057564813643693924,
0.006897429004311562,
0.08082225918769836,
-0.0039047428872436285,
0.02609885483980179,
-0.020696671679615974,
-0.017565861344337463,
-0.011707651428878307,
-0.0353948175907135,
-0.05507419630885124,
0.0198021549731493,
-0.052969448268413544,
0.037745118141174316,
0.01831129379570484,
0.015452345833182335,
-0.044690780341625214,
0.017539553344249725,
0.05089978128671646,
0.05423229932785034,
-0.007235065568238497,
-0.00869961827993393,
0.010699126869440079,
0.06100256368517876,
0.004130564630031586,
-0.00021047463815193623,
-0.019854774698615074,
-0.014321045018732548,
0.017837725579738617,
0.013294980861246586,
-0.015005087479948997,
-0.0720524862408638,
0.012689866125583649,
0.008712773211300373,
-0.020240643993020058,
-0.00392447505146265,
0.02010032720863819,
0.02890518307685852,
0.05689831078052521,
-0.014838461764156818,
-0.05247834324836731,
0.02041603997349739,
-0.04430491104722023,
0.04679552838206291,
0.04553268104791641,
0.059844955801963806,
-0.030957311391830444,
0.02785281091928482,
0.043533168733119965,
-0.01199705433100462,
-0.015987303107976913,
0.10074719041585922,
0.02734416350722313,
-0.03132564201951027,
0.054197218269109726,
-0.03946399316191673,
0.04455046355724335,
0.049917567521333694,
-0.013672081753611565,
-0.02753709815442562,
0.012146140448749065,
-0.0406566821038723,
-0.0064370157197117805,
-0.06191462278366089,
0.006261620204895735,
0.0185393076390028,
0.008318132720887661,
-0.004709369968622923,
0.007638475392013788,
-0.061107803136110306,
-0.07633213698863983,
-0.03439506143331528,
0.01189181674271822,
-0.029904937371611595,
-0.04409443587064743,
-0.005384642630815506,
0.05195215716958046,
0.0728943794965744,
0.002196829067543149,
0.022257693111896515,
-0.09962466359138489,
0.059844955801963806,
0.07661277055740356,
-0.03078191541135311,
0.00018704288231674582,
-0.004191953223198652,
-0.0429719053208828,
-0.006401936989277601,
-0.024906165897846222,
-0.03823622688651085,
0.0044988952577114105,
-0.018732242286205292,
0.04914582893252373,
-0.052969448268413544,
-0.008997790515422821,
-0.013549304567277431,
-0.04013049602508545,
-0.010909602046012878,
-0.0429719053208828,
0.006340548396110535,
0.04405935853719711,
-0.00526186591014266,
0.014759534038603306,
-0.012768794782459736,
-0.03925351798534393,
-0.007050900254398584,
-0.08117304742336273,
-0.05738941580057144,
-0.004422159865498543,
-0.014154419302940369,
-0.0185393076390028,
0.07745466381311417,
0.03553513437509537,
-0.07240327447652817,
0.015417266637086868,
-0.06703617423772812,
-0.037780195474624634,
0.06051145866513252,
-0.04609394446015358,
0.017451854422688484,
0.06293191760778427,
-0.04609394446015358,
-0.006621181033551693,
0.023204827681183815,
0.056933388113975525,
-0.0410776324570179,
-0.022906655445694923,
0.031045008450746536,
-0.0760515034198761,
-0.018363911658525467,
-0.03383379802107811,
0.024555373936891556,
-0.023310065269470215,
-0.03499140962958336,
-0.03499140962958336,
0.002832637866958976,
0.040376052260398865,
0.03290420025587082,
0.017741257324814796,
-0.07233311980962753,
-0.018170977011322975,
-0.044480305165052414,
0.07464833557605743,
0.022608483210206032,
-0.049707092344760895,
0.02616901323199272,
-0.04370856657624245,
-0.0716315358877182,
0.005393412429839373,
-0.042480796575546265,
0.02504648081958294,
0.00229110405780375,
-0.033272530883550644,
-0.09751991182565689,
0.004932999145239592,
0.011567335575819016,
0.0017846495611593127,
0.003740309737622738,
-0.045708075165748596,
-0.02734416350722313,
0.05917845293879509,
0.041217949241399765,
-0.0016476217424497008,
-0.00801996048539877,
0.008568071760237217,
0.06517697870731354,
-0.025379732251167297,
-0.049812331795692444,
0.014636756852269173,
0.06100256368517876,
0.04034097120165825,
0.019731996580958366,
-0.04693584516644478,
0.04286666586995125,
-0.02032834105193615,
-0.001142263412475586,
-0.010804364457726479,
-0.047076158225536346,
-0.01667134463787079,
-0.05156628414988518,
0.007103519048541784,
-0.024748308584094048,
-0.0105851199477911,
-0.0210650023072958,
0.031237943097949028,
-0.021521031856536865,
0.011234083212912083,
0.0017342233331874013,
-0.026730278506875038,
0.026309330016374588,
-0.0012814835645258427,
0.02229277230799198,
-0.031132705509662628,
0.0926789939403534,
0.016206547617912292,
0.023853791877627373,
-0.059844955801963806,
-0.010839443653821945,
0.04595362767577171,
0.06640474498271942,
-0.03025572933256626,
-0.020556356757879257,
-0.0006632143631577492,
-0.015154173597693443,
-0.04640965536236763,
-0.022503245621919632,
0.046865686774253845,
-0.054512929171323776,
0.047391872853040695,
-0.014592908322811127,
-0.04619918391108513,
0.003034342546015978,
0.05307468771934509,
0.05542498826980591,
0.03383379802107811,
-0.04630441963672638,
-0.01534710917621851,
-0.046444736421108246,
0.05486372113227844,
-0.04497141391038895,
-0.025853300467133522,
-0.025905920192599297,
-0.07577086985111237,
-0.0016004842473194003,
0.0678429901599884,
0.005441646091639996,
0.010944681242108345,
-0.021029923111200333,
0.0000834499005577527,
0.04034097120165825,
-0.06833409518003464,
0.010593890212476254,
-0.011760270223021507,
-0.0722629576921463,
0.004485740792006254,
-0.04683060571551323,
0.019837234169244766,
0.0636335015296936,
-0.032834041863679886,
-0.020977305248379707,
0.027414321899414062,
-0.006814116146415472,
-0.04763742536306381,
-0.04276143014431,
-0.00730522396042943,
-0.0872066542506218,
0.03395657613873482,
-0.035991162061691284,
-0.029045499861240387,
-0.006279159802943468,
-0.05181184038519859,
-0.041744135320186615,
-0.04609394446015358,
0.003538604825735092,
0.020784370601177216,
0.03999017924070358,
-0.049812331795692444,
-0.008800470270216465,
0.04335777461528778,
0.042586036026477814,
0.003494755830615759,
-0.02441505715250969,
0.0636335015296936,
-0.058932896703481674,
-0.015303259715437889,
0.04984740912914276,
-0.007822640240192413,
-0.05879257991909981,
-0.014522749930620193,
0.017030905932188034,
-0.008129582740366459,
-0.0010551137384027243,
0.025853300467133522,
-0.02986985817551613,
0.06159890815615654,
0.017030905932188034,
0.031588733196258545,
0.0396043099462986,
0.005748588591814041,
0.02180166356265545,
-0.027730032801628113,
-0.0026682044845074415,
-0.020398499444127083,
0.021977059543132782,
-0.017995581030845642,
0.03171151131391525,
0.032220158725976944,
-0.02053881622850895,
0.03714877367019653,
0.027905428782105446,
0.02869470790028572,
-0.0014864770928397775,
0.028028205037117004
]
|
42,247 | flask_restful | abort | Raise a HTTPException for the given http_status_code. Attach any keyword
arguments to the exception for later processing.
| def abort(http_status_code, **kwargs):
"""Raise a HTTPException for the given http_status_code. Attach any keyword
arguments to the exception for later processing.
"""
# noinspection PyUnresolvedReferences
try:
original_flask_abort(http_status_code)
except HTTPException as e:
if len(kwargs):
e.data = kwargs
raise
| (http_status_code, **kwargs) | [
-0.004952520597726107,
-0.01709018275141716,
-0.03403861075639725,
0.011083369143307209,
-0.040187180042266846,
-0.059749189764261246,
-0.03563334047794342,
0.04490048810839653,
0.03643070533871651,
-0.02537391521036625,
0.008722282946109772,
-0.051031336188316345,
0.02358427457511425,
-0.02969740331172943,
0.004334562923759222,
0.024594269692897797,
0.019384820014238358,
0.05716218426823616,
0.04234892129898071,
-0.11864785850048065,
0.014166511595249176,
0.04015174135565758,
-0.0494011715054512,
0.0442625992000103,
0.005200589541345835,
0.04008086398243904,
-0.02542707324028015,
0.006799748633056879,
0.01640799269080162,
-0.06758108735084534,
0.042951375246047974,
0.008336890488862991,
-0.0013078994816169143,
0.022060422226786613,
0.0019092453876510262,
-0.014901859685778618,
-0.04472329840064049,
-0.01670035906136036,
-0.026454787701368332,
0.002256985055282712,
-0.07761015743017197,
-0.030264418572187424,
-0.04865696281194687,
-0.019048156216740608,
0.05882779136300087,
-0.007450929842889309,
-0.05251975357532501,
-0.05687867850065231,
-0.02131621539592743,
0.04723942652344704,
-0.0565597340464592,
-0.0005274235154502094,
0.05439798906445503,
-0.03503088653087616,
-0.009014650247991085,
0.09384095668792725,
-0.006870625540614128,
0.016673780977725983,
-0.0077034286223351955,
-0.03235528618097305,
-0.030051788315176964,
0.06563197076320648,
-0.05255518853664398,
-0.02071376144886017,
0.026649698615074158,
-0.026596540585160255,
-0.026472507044672966,
0.008771011605858803,
-0.04341207444667816,
-0.020111309364438057,
-0.013936161994934082,
0.027588816359639168,
-0.020784638822078705,
-0.004908222239464521,
0.06031620502471924,
0.011951610445976257,
-0.06435618549585342,
-0.02473602257668972,
0.009453200735151768,
-0.003519478952512145,
0.06669512391090393,
-0.0337551049888134,
0.00576760433614254,
0.02721671387553215,
0.04805450886487961,
-0.052023615688085556,
-0.016904130578041077,
-0.010542932897806168,
-0.00044104232802055776,
0.012359152548015118,
-0.010569511912763119,
-0.01640799269080162,
-0.04741661995649338,
-0.013253972865641117,
0.035527024418115616,
0.0085229417309165,
0.04093138501048088,
-0.008850747719407082,
-0.005714446771889925,
-0.06612811237573624,
0.04047068580985069,
-0.00912539567798376,
0.02521444298326969,
-0.05181098356842995,
0.0027575527783483267,
-0.019597452133893967,
0.029413895681500435,
-0.09291955828666687,
0.005758744664490223,
-0.014512036927044392,
-0.003016696311533451,
-0.026295313611626625,
-0.006928212940692902,
-0.014512036927044392,
-0.014795544557273388,
0.022024983540177345,
0.028776004910469055,
0.01147319097071886,
-0.009045658633112907,
-0.013723531737923622,
0.03412720561027527,
-0.041888222098350525,
0.0006257097702473402,
-0.0026778161991387606,
0.05553201958537102,
0.03866332769393921,
-0.014193090610206127,
-0.028474777936935425,
-0.0033666507806628942,
-0.025657422840595245,
-0.01253634411841631,
0.007898340001702309,
-0.07023896276950836,
-0.002323431894183159,
0.03919490426778793,
0.04263243079185486,
0.016842113807797432,
0.05042888596653938,
0.01085301861166954,
-0.05177554488182068,
0.013617216609418392,
0.007663560099899769,
0.013307129964232445,
0.03370194509625435,
0.02388550154864788,
0.03627123311161995,
0.014636071398854256,
-0.05531938746571541,
-0.005554973613470793,
0.005922647658735514,
0.03336527943611145,
0.014928438700735569,
0.005989094730466604,
0.001150641473941505,
-0.02337164431810379,
0.0007458681939169765,
-0.04968467727303505,
-0.06435618549585342,
0.006883915048092604,
0.02328304760158062,
0.026330752298235893,
0.019845521077513695,
0.05418535694479942,
-0.029803719371557236,
0.01568150520324707,
-0.014822122640907764,
0.012412309646606445,
0.0225211214274168,
-0.023318486288189888,
-0.0013078994816169143,
-0.006232733838260174,
-0.020696042105555534,
0.02969740331172943,
-0.016089046373963356,
-0.018729209899902344,
0.03678508847951889,
-0.0034508169628679752,
0.01640799269080162,
-0.04089594632387161,
0.016505448147654533,
0.05553201958537102,
-0.03084915317595005,
-0.06375373154878616,
0.02225533314049244,
0.03643070533871651,
0.02007587067782879,
-0.028935477137565613,
0.03037073463201523,
0.06272602081298828,
0.018179913982748985,
0.039407532662153244,
-0.058296214789152145,
0.028333023190498352,
0.03097318671643734,
0.00779645424336195,
0.012926166877150536,
-0.009134255349636078,
-0.0666242465376854,
0.09497498720884323,
0.03891139477491379,
0.007907199673354626,
0.04263243079185486,
0.0334184393286705,
-0.009656972251832485,
0.0010315905092284083,
0.03435755521059036,
-0.010153110139071941,
-0.033595629036426544,
0.016310537233948708,
-0.024718305096030235,
-0.054787810891866684,
-0.014024758711457253,
-0.015149928629398346,
0.0246474277228117,
0.035013169050216675,
-0.014405721798539162,
-0.013165376149117947,
-0.045183997601270676,
0.08753292262554169,
0.0005886101862415671,
0.009293727576732635,
-0.008549520745873451,
-0.009151974692940712,
-0.05301589146256447,
0.07959470897912979,
0.023655151948332787,
0.007411061320453882,
0.0261535607278347,
0.006653564982116222,
0.040825068950653076,
-0.01645229011774063,
0.015158788301050663,
0.0013909583212807775,
-0.03674964979290962,
0.015070191584527493,
0.003590355860069394,
-0.014777825213968754,
-0.06361197680234909,
-0.036643337458372116,
-0.0006805285811424255,
0.05822533741593361,
0.008908335119485855,
0.02452339231967926,
0.055992718786001205,
-0.0020266352221369743,
-0.011269420385360718,
-0.02836846187710762,
0.09929847717285156,
-0.024682866409420967,
-0.04511312022805214,
-0.04677872732281685,
-0.0013189740711823106,
-0.02866968885064125,
-0.009577235206961632,
0.045396625995635986,
0.04422716051340103,
0.04181734472513199,
-0.03997454792261124,
-0.006595977582037449,
0.03597000613808632,
0.03827350214123726,
0.0002868297742679715,
0.009958198294043541,
0.012802132405340672,
-0.004965810105204582,
-0.02982143871486187,
0.03685596585273743,
0.04486504942178726,
0.04536119103431702,
0.024487953633069992,
0.048550646752119064,
0.028829162940382957,
0.025515668094158173,
0.0005368368001654744,
0.004425373859703541,
0.03579281270503998,
0.005891638807952404,
-0.0005404360708780587,
-0.01789640635251999,
-0.0016257379902526736,
0.040612440556287766,
-0.01424624864012003,
0.021245338022708893,
-0.001953543396666646,
-0.055992718786001205,
0.029555650427937508,
0.02849249728024006,
0.02927214279770851,
0.01995183527469635,
0.024027254432439804,
0.06669512391090393,
0.0066801439970731735,
0.05131484568119049,
0.0008848533034324646,
-0.014884140342473984,
-0.01781667023897171,
0.01053407322615385,
0.004646863788366318,
0.0006749913445673883,
0.03384369984269142,
0.06570284813642502,
0.0243107620626688,
0.05822533741593361,
-0.03097318671643734,
-0.03682052716612816,
-0.07867331057786942,
0.0755547285079956,
0.016071327030658722,
-0.0413566455245018,
-0.04628258943557739,
-0.009160834364593029,
-0.00610869936645031,
-0.08200452476739883,
-0.005789753515273333,
-0.023105856031179428,
0.015017034485936165,
0.04047068580985069,
-0.033950015902519226,
-0.024682866409420967,
0.019119031727313995,
-0.012093364261090755,
-0.06028076633810997,
0.030104946345090866,
0.008934914134442806,
0.015265103429555893,
-0.03517264127731323,
0.060776904225349426,
-0.00272875907830894,
0.03357791155576706,
0.004212743137031794,
0.014937297441065311,
0.02076691947877407,
0.016726939007639885,
-0.05989094451069832,
-0.004372216295450926,
-0.06704951077699661,
0.052094489336013794,
-0.004527259152382612,
-0.03203634172677994,
-0.0337551049888134,
-0.07881506532430649,
-0.0329754576086998,
0.05170466750860214,
0.03457018733024597,
-0.04263243079185486,
-0.022202175110578537,
0.0008782085496932268,
-0.015495453029870987,
0.031026344746351242,
-0.0049790991470217705,
-0.024044973775744438,
0.036288950592279434,
-0.006888344883918762,
0.04468785971403122,
-0.0006428752676583827,
-0.012704676948487759,
-0.006808608304709196,
-0.07077053934335709,
0.003324567573145032,
0.016558606177568436,
0.02204270288348198,
0.025515668094158173,
-0.051633790135383606,
0.012802132405340672,
-0.023017259314656258,
-0.026685137301683426,
-0.02413357049226761,
-0.06474600732326508,
-0.06736845523118973,
0.05234256014227867,
0.016177643090486526,
-0.03643070533871651,
-0.034587908536195755,
0.03635982796549797,
0.041675593703985214,
0.00018494430696591735,
-0.025179004296660423,
-0.041214894503355026,
-0.013909582979977131,
0.07838980853557587,
-0.004181734751909971,
-0.07236526906490326,
0.002260307315737009,
-0.04631802812218666,
-0.010516353882849216,
-0.016044748947024345,
0.05418535694479942,
-0.05457518249750137,
-0.020837796851992607,
0.022273052483797073,
-0.011109947226941586,
-0.052094489336013794,
0.04486504942178726,
0.028226708993315697,
0.0004889395786449313,
-0.03524351865053177,
-0.06063515320420265,
-0.03682052716612816,
0.03439299389719963,
0.01577010005712509,
0.011393454857170582,
0.054787810891866684,
-0.10128302872180939,
0.01012653112411499,
0.07232983410358429,
0.03713947534561157,
-0.021900949999690056,
-0.01998727396130562,
0.02358427457511425,
-0.025692861527204514,
-0.02276919037103653,
0.009107676334679127,
0.00415515573695302,
0.02276919037103653,
0.03281598538160324,
0.03703315928578377,
-0.04199453815817833,
-0.02324760891497135,
0.013200814835727215,
-0.008119829930365086,
0.04401452839374542,
0.006941502448171377,
0.08469784259796143,
-0.06559653580188751,
-0.012359152548015118,
0.006569398567080498,
-0.01961516961455345,
-0.012633799575269222,
0.008766581304371357,
0.004341207444667816,
-0.022503402084112167,
0.0032581205014139414,
0.013794408179819584,
-0.008500793017446995,
0.0077034286223351955,
0.0522008053958416,
-0.05446886643767357,
0.0055948421359062195,
0.04305769130587578,
0.0018228641711175442,
0.05921761319041252,
-0.03193002566695213,
-0.01973920501768589,
0.0024474665988236666,
-0.0044453078880906105,
-0.011863013729453087,
0.00893048383295536,
-0.021688317880034447,
0.02930758148431778,
-0.0019147825660184026,
0.01825079135596752,
-0.014131073839962482,
0.030920028686523438,
-0.03692684322595596,
0.050003621727228165,
-0.001841690856963396,
-0.0763343796133995,
-0.02418672852218151,
-0.006746591068804264,
-0.0047576092183589935,
0.04550294205546379,
0.0228577870875597,
-0.012314854189753532,
-0.06949476152658463,
0.04387277364730835,
0.03643070533871651,
0.03469422087073326,
-0.005909358151257038,
0.02383234351873398,
-0.0006866195471957326,
-0.0011794351739808917,
0.027677413076162338,
0.017444565892219543,
0.028173550963401794,
0.018534298986196518,
0.06194637343287468,
0.02533847652375698,
0.0019491135608404875,
0.05865060165524483,
-0.013714672066271305,
0.09256517887115479,
-0.008536231704056263,
0.05999726057052612,
-0.016151063144207,
-0.013998179696500301,
-0.024275323376059532,
0.01576124131679535,
0.023991815745830536,
0.04599907994270325,
-0.0008538446272723377,
0.056417979300022125,
0.0007652485510334373,
0.01819763332605362,
0.014166511595249176,
0.06485232710838318,
-0.035739656537771225,
-0.0769013911485672,
-0.02349567785859108,
0.004245966672897339,
-0.017125621438026428,
0.011623804457485676,
-0.05212992802262306,
0.006875055376440287,
-0.03182370960712433,
0.05032256990671158,
-0.015132209286093712,
0.027447063475847244,
0.06439162790775299,
-0.01789640635251999,
-0.010773282498121262,
-0.038521572947502136,
-0.002868297742679715,
0.048338018357753754,
0.01982780173420906,
-0.007264878135174513,
0.004095353651791811,
-0.05096046254038811,
0.004467457067221403,
0.056205347180366516,
0.09866058826446533,
0.022662876173853874,
0.024062693119049072,
0.027872323989868164,
0.016629483550786972,
-0.008283732458949089,
-0.05567377060651779,
0.0652775838971138,
-0.00950635876506567,
0.015460014343261719,
0.1183643564581871,
-0.030813714489340782,
-0.00035798351746052504,
0.06506495922803879,
0.002775271888822317,
0.05305133014917374,
-0.023442521691322327,
-0.09894409030675888,
-0.02755337953567505,
0.039407532662153244,
-0.031026344746351242,
-0.014937297441065311,
0.03187686577439308,
-0.020536569878458977,
-0.00683518685400486,
-0.0623716339468956,
-0.05156291276216507,
-0.025303037837147713,
-0.0003624133241828531,
-0.024151289835572243,
0.031983181834220886,
-0.019384820014238358,
-0.032869141548871994,
0.05014537647366524,
-0.010782142169773579,
-0.09121851623058319,
0.024470236152410507,
0.024169009178876877,
0.03357791155576706,
0.040435247123241425,
-0.014104494825005531,
0.016975007951259613,
0.023601993918418884,
0.044758737087249756,
-0.06031620502471924,
-0.06386005133390427,
0.03363106772303581,
0.005342343356460333,
0.004948090761899948,
-0.01772807352244854,
-0.07442069798707962,
-0.038131751120090485,
-0.03566877916455269,
0.008412197232246399,
-0.003581496188417077,
-0.009541797451674938,
0.0565597340464592,
-0.005368921905755997,
-0.03742298111319542,
-0.0034375276882201433,
0.006347908638417721,
-0.006959221325814724,
-0.053512029349803925,
-0.0798073410987854,
-0.05177554488182068,
-0.03830894082784653,
0.005311334505677223,
0.0334184393286705,
-0.01266923826187849,
-0.015876416116952896,
-0.012509765103459358,
-0.06584460288286209,
-0.01657632552087307,
0.053086765110492706,
-0.07782278954982758,
0.0384506955742836,
0.04366014525294304,
-0.015956152230501175,
-0.016815533861517906,
-0.06712038815021515,
0.05340571328997612,
0.03802543506026268,
0.024328481405973434,
0.009754427708685398,
0.029467053711414337,
0.0019402540056034923,
0.034251242876052856,
-0.022149018943309784,
-0.032798267900943756,
-0.07661788165569305,
-0.04798363149166107,
-0.02225533314049244,
-0.004753179382532835,
-0.007052247412502766,
0.02921898476779461,
-0.07101861387491226,
-0.003822920611128211,
-0.03384369984269142,
0.010153110139071941,
0.004567127674818039,
-0.022591998800635338,
-0.04617627337574959,
-0.08037436008453369,
-0.04075419530272484,
0.03584597259759903,
0.010091092437505722,
0.04029349237680435,
0.04954292252659798,
0.02016446553170681,
-0.12233345955610275,
-0.011402314528822899,
-0.03464106470346451,
0.05546114221215248,
0.0077477265149354935,
-0.017710354179143906,
-0.019172189757227898,
0.017869828268885612,
0.019703766331076622,
0.0037321096751838923,
-0.027925482019782066,
0.018853243440389633,
0.01841026358306408,
-0.026756014674901962,
-0.040222618728876114,
0.032319847494363785,
0.032532479614019394,
0.006981370504945517,
-0.013998179696500301,
-0.02700408361852169,
0.017568601295351982,
-0.04266786947846413,
0.006409925874322653,
-0.0058872089721262455,
-0.05315764248371124,
-0.014751246199011803,
-0.11304859071969986,
0.0558864027261734,
-0.03024669922888279,
0.00881973933428526,
0.009081097319722176,
0.004970239475369453,
0.0005144109600223601,
-0.00047952623572200537,
0.010764422826468945,
-0.03841525688767433,
0.020323939621448517,
-0.013820987194776535,
0.019296225160360336,
-0.06878598779439926,
0.06956563889980316,
-0.028421619907021523,
0.008921624161303043,
-0.012243976816534996,
0.022999539971351624,
0.03972648084163666,
0.0031828139908611774,
0.03247931972146034,
-0.019721485674381256,
-0.03506632521748543,
-0.00437886081635952,
0.012412309646606445,
-0.0261004026979208,
0.04387277364730835,
-0.02521444298326969,
0.008868467062711716,
0.03212493658065796,
0.016983866691589355,
-0.040825068950653076,
0.042526114732027054,
-0.011349156498908997,
0.00009794018842512742,
-0.0210149884223938,
0.0013632720801979303,
-0.055992718786001205,
0.03605860099196434,
-0.07080598175525665,
-0.012119942344725132,
-0.014042477123439312,
-0.09731392562389374,
0.019331663846969604,
0.0869659036397934,
0.010888457298278809,
-0.0463889054954052,
-0.003884937847033143,
-0.003822920611128211,
0.006020103115588427,
-0.04925941675901413,
0.033471595495939255,
0.0004950305446982384,
-0.007411061320453882,
-0.0009418869740329683,
0.012793272733688354,
0.011623804457485676,
0.02815583162009716,
0.04869240149855614,
0.02346023917198181,
0.034587908536195755,
-0.024895496666431427,
-0.04277418553829193,
0.010888457298278809,
0.004416514188051224,
-0.029165826737880707,
0.03320580720901489,
0.030494768172502518,
-0.022414807230234146,
-0.0048196264542639256,
-0.07860243320465088,
-0.0007674634689465165,
0.003116366919130087,
0.0056037018075585365,
0.01507905125617981,
0.03908858820796013,
-0.04259699210524559,
-0.06293865293264389,
-0.0009036799310706556,
0.015460014343261719,
-0.003448602044954896,
-0.04047068580985069,
0.0463889054954052,
0.0037276798393577337,
0.04429803788661957,
-0.048089947551488876,
0.0010670289630070329,
-0.025621984153985977,
-0.029980910941958427,
0.05127940699458122,
-0.0032071778550744057,
0.02230849117040634,
0.006409925874322653,
0.020660603418946266,
-0.01315651647746563,
0.018392544239759445,
-0.012243976816534996,
-0.009143115021288395,
0.024115851148962975,
0.06240707263350487,
-0.010596089996397495,
0.007854041643440723,
0.02927214279770851,
0.02909494936466217,
-0.005045546218752861,
0.008447635918855667,
0.016558606177568436,
-0.07442069798707962,
0.011960470117628574,
0.022113580256700516,
0.0463889054954052,
0.022379368543624878,
0.04383733496069908
]
|
42,248 | flask_restful.utils | http_status_message | Maps an HTTP status code to the textual status | def http_status_message(code):
"""Maps an HTTP status code to the textual status"""
return HTTP_STATUS_CODES.get(code, '')
| (code) | [
0.022001221776008606,
-0.011763659305870533,
-0.02890499122440815,
-0.02449021115899086,
0.019185209646821022,
-0.03786172345280647,
-0.024944407865405083,
0.02191038243472576,
0.07208988070487976,
-0.0816098153591156,
0.008775053545832634,
-0.02906850166618824,
0.009665276855230331,
-0.05726494640111923,
0.0697644054889679,
0.006694838870316744,
0.042912375181913376,
-0.021183669567108154,
0.03775271400809288,
-0.07223522663116455,
0.007212621625512838,
0.020511461421847343,
0.02825094945728779,
-0.000835151644423604,
-0.023036787286400795,
0.04538319632411003,
0.019130706787109375,
-0.08269988745450974,
0.03480952978134155,
-0.056865256279706955,
-0.02652500756084919,
-0.04894408956170082,
0.006958272308111191,
0.000864674337208271,
-0.05166925862431526,
0.0731072798371315,
-0.02280060574412346,
-0.03508204594254494,
-0.0664215236902237,
-0.058900050818920135,
-0.04167696461081505,
0.00693556247279048,
-0.09330988675355911,
-0.01769544929265976,
0.03708050772547722,
-0.0066312518902122974,
-0.030703604221343994,
-0.017749954015016556,
0.010264813899993896,
-0.016042178496718407,
-0.06562214344739914,
0.009946877136826515,
-0.007198995910584927,
-0.006399611942470074,
-0.03591776639223099,
0.0373530238866806,
0.005636563990265131,
-0.01052824780344963,
-0.02803293615579605,
0.0009600553894415498,
-0.0407685711979866,
0.033592287451028824,
-0.08284522593021393,
-0.027942096814513206,
0.014270816929638386,
-0.011899917386472225,
0.0458918958902359,
-0.01769544929265976,
0.011727322824299335,
-0.006322398781776428,
0.04807203263044357,
0.013144413009285927,
-0.03858843445777893,
-0.01715041510760784,
0.09432728588581085,
-0.012199686840176582,
-0.03757103905081749,
0.007012775633484125,
0.017986135557293892,
0.025471273809671402,
0.08226385712623596,
-0.03437350317835808,
0.0458555594086647,
-0.04229466989636421,
0.01889452524483204,
-0.06591282784938812,
-0.010183059610426426,
-0.038661107420921326,
-0.04407511278986931,
-0.016242025420069695,
0.024562882259488106,
-0.03775271400809288,
-0.021201837807893753,
-0.013753034174442291,
0.005650189705193043,
-0.011909001506865025,
0.011999840848147869,
0.005568434484302998,
0.035954102873802185,
-0.02294594794511795,
0.03079444356262684,
0.06024446710944176,
-0.010946107096970081,
-0.0356815829873085,
0.012826476246118546,
0.0015113349072635174,
-0.006108927074819803,
-0.02992238849401474,
0.025434937328100204,
-0.009124783799052238,
0.03451884537935257,
-0.061806898564100266,
-0.006753884255886078,
-0.027342557907104492,
0.06202491372823715,
0.020693138241767883,
0.02906850166618824,
-0.021728703752160072,
-0.013535020872950554,
0.026997370645403862,
0.0008504807483404875,
-0.02536226622760296,
-0.03335610404610634,
-0.07463337481021881,
0.0068038459867239,
0.045673880726099014,
0.0036585433408617973,
-0.04229466989636421,
0.06594916433095932,
-0.058900050818920135,
0.00814826413989067,
-0.001846304046921432,
0.013317006640136242,
0.017395680770277977,
0.0001236972602782771,
-0.005432175938040018,
-0.05174193158745766,
0.07717686891555786,
0.06376902014017105,
0.052686657756567,
0.009029403328895569,
0.0034269036259502172,
-0.02854163385927677,
0.00023447834246326238,
0.0442204549908638,
-0.021129166707396507,
0.04912576451897621,
0.0008425323176197708,
0.029013996943831444,
-0.01989375427365303,
0.060280803591012955,
-0.02519875578582287,
0.015542563982307911,
-0.0015964965568855405,
-0.01771361753344536,
-0.0027206300292164087,
0.012962734326720238,
-0.09163844585418701,
-0.021855879575014114,
0.016923317685723305,
0.04443847015500069,
-0.07267124950885773,
0.05628388375043869,
-0.07092714309692383,
0.04218566045165062,
0.002861430635675788,
0.02076580934226513,
-0.000893061573151499,
0.011336714960634708,
-0.04745432734489441,
-0.03753470256924629,
-0.01376211829483509,
-0.00859791785478592,
-0.004387526772916317,
0.08313591033220291,
0.016460038721561432,
0.008193683810532093,
0.0696190595626831,
-0.04829004779458046,
-0.010001380927860737,
-0.0006131636910140514,
0.04389343783259392,
-0.07441536337137222,
0.04349374398589134,
-0.02192855067551136,
0.04200398176908493,
0.019439559429883957,
0.018249567598104477,
0.021292677149176598,
0.02191038243472576,
0.03524555638432503,
-0.03669898211956024,
-0.016432786360383034,
0.03642646595835686,
0.002021169289946556,
-0.006626709830015898,
0.030885282903909683,
-0.06783861666917801,
0.10522796958684921,
0.003068089485168457,
-0.02058413252234459,
0.06169789284467697,
-0.004262622911483049,
0.09272851794958115,
-0.01171823963522911,
0.023836171254515648,
0.0012490371009334922,
0.035790592432022095,
-0.025943636894226074,
0.011373050510883331,
-0.07674083858728409,
-0.018104225397109985,
-0.02770591527223587,
0.03811607137322426,
0.014134558849036694,
-0.010546415112912655,
-0.014870354905724525,
0.010855268687009811,
0.012181518599390984,
-0.0067947618663311005,
-0.018294988200068474,
-0.013117160648107529,
0.03797072917222977,
-0.06089850887656212,
0.05079720541834831,
0.0356634184718132,
-0.005759196821600199,
0.01598767563700676,
-0.013144413009285927,
0.04204031825065613,
0.004868973977863789,
0.039024461060762405,
0.01521554309874773,
0.005759196821600199,
-0.030049562454223633,
-0.05370405688881874,
-0.027778586372733116,
-0.015197375789284706,
-0.038334086537361145,
0.01155472919344902,
-0.004553308244794607,
-0.036335624754428864,
-0.002927288878709078,
0.12303242832422256,
0.012117931619286537,
-0.07125416398048401,
-0.019257882609963417,
0.0458555594086647,
-0.019566735252738,
0.011264043860137463,
-0.06082583963871002,
-0.026270657777786255,
-0.01419814582914114,
-0.040187202394008636,
0.024090519174933434,
0.001881504082120955,
-0.054358094930648804,
-0.03662630915641785,
-0.025889134034514427,
0.037007834762334824,
0.007648649159818888,
-0.04113192856311798,
-0.01818598061800003,
-0.011173204518854618,
-0.0011854497715830803,
-0.05392206832766533,
-0.019148875027894974,
0.08756885677576065,
0.018086057156324387,
0.041204601526260376,
0.1326977014541626,
-0.03043108619749546,
-0.006558580324053764,
-0.026961034163832664,
0.014388907700777054,
-0.02294594794511795,
0.009556269273161888,
-0.005532098934054375,
0.03310175612568855,
-0.023890674114227295,
-0.03455518186092377,
-0.006776594091206789,
-0.02174687199294567,
-0.029359186068177223,
0.014107306487858295,
0.04371175915002823,
0.048871416598558426,
0.004006002563983202,
0.00045504694571718574,
-0.0020836209878325462,
0.02925017848610878,
-0.012018008157610893,
-0.021201837807893753,
-0.008325399830937386,
0.0560658723115921,
-0.008784137666225433,
0.02943185716867447,
0.015842333436012268,
0.015360886231064796,
-0.005700151436030865,
-0.007703152485191822,
0.03967850282788277,
0.05929974094033241,
-0.05508480966091156,
-0.0390607975423336,
-0.0025889133103191853,
-0.006090759299695492,
-0.019657572731375694,
-0.024526547640562057,
-0.025907300412654877,
-0.024617386981844902,
0.021001990884542465,
-0.012172434478998184,
0.01290823146700859,
0.03517288714647293,
0.052286963909864426,
0.026597678661346436,
0.01818598061800003,
0.011536560952663422,
0.02532593160867691,
0.0195303987711668,
-0.053122684359550476,
0.03658997640013695,
0.024581050500273705,
-0.004271707031875849,
-0.06776594370603561,
0.019839251413941383,
-0.0021335824858397245,
0.06776594370603561,
-0.017132246866822243,
0.018458498641848564,
-0.03822507709264755,
0.02772408351302147,
-0.08967632800340652,
0.017650030553340912,
-0.07557810097932816,
0.05770097300410271,
-0.018622009083628654,
-0.05072453245520592,
-0.013044489547610283,
-0.07190820574760437,
-0.016696220263838768,
0.04280336573719978,
0.07899364829063416,
0.018930861726403236,
-0.01920337788760662,
-0.04625525325536728,
0.020693138241767883,
0.00011000043014064431,
-0.05384939908981323,
-0.0323568731546402,
0.044256791472435,
-0.025798294693231583,
0.032738398760557175,
-0.0006404154119081795,
0.021983053535223007,
0.009910541586577892,
-0.06355100870132446,
0.042440012097358704,
0.09301920235157013,
0.0022187442518770695,
0.0038969959132373333,
-0.009206539019942284,
0.007966586388647556,
-0.028341788798570633,
0.026579510420560837,
-0.02292777970433235,
0.03553624078631401,
0.05555717274546623,
0.019839251413941383,
0.010282982140779495,
0.010155807249248028,
-0.04134994372725487,
0.006108927074819803,
-0.028432628139853477,
0.014643257483839989,
-0.026107147336006165,
-0.003188451286405325,
-0.05490313097834587,
-0.005155116785317659,
0.01387112494558096,
-0.0390607975423336,
-0.06885600835084915,
0.00859791785478592,
0.020693138241767883,
0.02111099846661091,
0.04552853852510452,
-0.05831867828965187,
-0.06053515151143074,
0.01453425083309412,
-0.0510152205824852,
-0.031212301924824715,
0.01903986744582653,
0.026743020862340927,
-0.0017759037436917424,
-0.007271667011082172,
-0.04861706867814064,
0.007430635392665863,
0.04898042231798172,
-0.028850486502051353,
0.04505617544054985,
0.05250497907400131,
-0.041931312531232834,
0.017550107091665268,
0.01649637334048748,
0.04491083323955536,
-0.03059459663927555,
0.026979202404618263,
-0.035263724625110626,
-0.004521514289081097,
-0.027633244171738625,
-0.00951085053384304,
-0.00590453902259469,
-0.03430083021521568,
-0.009856038726866245,
0.051596589386463165,
-0.00875234417617321,
0.010410157032310963,
0.013189831748604774,
-0.024799063801765442,
-0.018104225397109985,
-0.040368881076574326,
0.08720549941062927,
-0.022473584860563278,
-0.004203577525913715,
-0.007571435999125242,
0.021728703752160072,
-0.018231401219964027,
0.027469733729958534,
0.027088209986686707,
0.0020529627799987793,
-0.05359504744410515,
-0.04356641694903374,
-0.05639289319515228,
0.004614624660462141,
0.001129243173636496,
-0.039860181510448456,
0.025725623592734337,
0.0075578102841973305,
-0.031884510070085526,
0.04374809190630913,
0.03010406531393528,
0.011000610888004303,
0.01685973070561886,
0.03600860387086868,
-0.00031225927523337305,
-0.05334069952368736,
-0.038007065653800964,
0.02888682298362255,
-0.02754240483045578,
-0.014479747042059898,
-0.01634194701910019,
-0.013625859282910824,
0.0007017317693680525,
0.08248186856508255,
0.006058965809643269,
-0.0715085119009018,
0.02752423658967018,
-0.04436580091714859,
-0.025035245344042778,
-0.005114239174872637,
0.04472915455698967,
-0.023872505873441696,
0.028341788798570633,
0.023527318611741066,
-0.019693909212946892,
0.022891445085406303,
0.013961964286863804,
0.0036267496179789305,
0.008629711344838142,
-0.042767032980918884,
-0.008479827083647251,
0.019966427236795425,
0.01905803568661213,
-0.0027229010593146086,
0.03855209797620773,
-0.021310845389962196,
0.0061543467454612255,
-0.020874816924333572,
0.030576428398489952,
0.05250497907400131,
0.02532593160867691,
0.038515765219926834,
-0.025398602709174156,
0.002414048183709383,
-0.021020159125328064,
0.04211299121379852,
0.021165501326322556,
0.026270657777786255,
-0.04167696461081505,
0.03691699728369713,
0.025489442050457,
0.03847942873835564,
-0.04694562777876854,
0.006658503320068121,
0.005572976544499397,
-0.059445083141326904,
-0.03880644962191582,
-0.0459282323718071,
-0.0029341017361730337,
0.028087439015507698,
-0.07299827039241791,
-0.018767351284623146,
-0.013952880166471004,
0.05915439873933792,
-0.03301091492176056,
0.06544046103954315,
-0.0026979201938956976,
0.0493074432015419,
0.00018054264364764094,
0.0221283957362175,
0.054467104375362396,
-0.011318547651171684,
-0.04818103834986687,
-0.023945176973938942,
0.02378166653215885,
-0.009074822999536991,
0.006958272308111191,
0.01171823963522911,
0.024199526757001877,
-0.014107306487858295,
-0.010146723128855228,
0.014407075941562653,
0.03704417124390602,
-0.011445722542703152,
-0.001974614104256034,
-0.019821083173155785,
-0.0066312518902122974,
-0.02072947472333908,
0.0867694765329361,
-0.014861270785331726,
0.0014159539714455605,
0.03201168775558472,
0.02786942571401596,
0.005804616026580334,
-0.004112738650292158,
-0.04730898514389992,
-0.04029620811343193,
-0.03368312492966652,
0.01596950739622116,
0.010064968839287758,
-0.01199075672775507,
-0.0027501527220010757,
0.009320087730884552,
-0.03175733610987663,
0.019276048988103867,
-0.030213072896003723,
0.015088368207216263,
-0.02719721570611,
-0.04025987535715103,
0.0050234002992510796,
-0.010355653241276741,
-0.02143801935017109,
-0.03927881270647049,
-0.019257882609963417,
0.08277255296707153,
-0.0004121822421438992,
0.0041672419756650925,
0.04269436001777649,
0.01046465989202261,
-0.006267895456403494,
-0.014770432375371456,
-0.01597859151661396,
-0.01240861602127552,
-0.07216255366802216,
0.04694562777876854,
-0.04229466989636421,
-0.023400142788887024,
-0.00531862722709775,
-0.06449573487043381,
0.014897606335580349,
-0.01771361753344536,
0.020129937678575516,
-0.03655363991856575,
-0.0030022310093045235,
0.022400913760066032,
0.026761189103126526,
-0.004262622911483049,
0.05166925862431526,
0.09439995884895325,
-0.017650030553340912,
-0.02839629165828228,
0.04745432734489441,
0.016587212681770325,
-0.047381654381752014,
-0.03351961448788643,
-0.042912375181913376,
-0.033937472850084305,
0.031884510070085526,
-0.012190602719783783,
-0.05334069952368736,
-0.03829775005578995,
0.0697644054889679,
-0.032247867435216904,
0.03946049138903618,
0.008388987742364407,
0.02449021115899086,
0.007725862320512533,
-0.05882737785577774,
0.03310175612568855,
0.05512114614248276,
0.03993285447359085,
-0.012635714374482632,
0.03862477093935013,
0.05682891979813576,
0.007135408464819193,
0.025235092267394066,
-0.024544715881347656,
-0.033592287451028824,
0.02089298516511917,
0.003760737366974354,
-0.044256791472435,
-0.04625525325536728,
-0.046691279858350754,
0.034428004175424576,
-0.0034814071841537952,
0.04850805923342705,
-0.026070810854434967,
-0.024254029616713524,
-0.03012223355472088,
0.05323169380426407,
-0.05657456815242767,
-0.014570586383342743,
0.0073443385772407055,
0.028941325843334198,
0.044947169721126556,
0.031521156430244446,
-0.03175733610987663,
-0.056538235396146774,
-0.04113192856311798,
-0.021183669567108154,
0.06020813062787056,
0.004432946443557739,
-0.05868203565478325,
-0.020129937678575516,
0.025743791833519936,
0.025035245344042778,
0.01566065475344658,
0.035972271114587784,
0.024036016315221786,
0.003722130786627531,
-0.03608127683401108,
-0.08400796353816986,
-0.037171345204114914,
-0.0034110068809241056,
0.06576748192310333,
-0.04269436001777649,
-0.006958272308111191,
0.03212069347500801,
-0.039024461060762405,
-0.02105649560689926,
-0.040913913398981094,
0.008625169284641743,
0.08386262506246567,
-0.03384663537144661,
0.05250497907400131,
-0.01566065475344658,
0.019603069871664047,
0.004267164971679449,
-0.029286514967679977,
-0.03262939304113388,
-0.04999782145023346,
0.056356556713581085,
-0.03786172345280647,
-0.009747032076120377,
-0.013689447194337845,
0.034428004175424576,
-0.05988110974431038,
0.09163844585418701,
-0.07608680427074432,
0.04527419060468674,
0.01698690466582775,
0.04850805923342705,
-0.02650683932006359,
-0.015097452327609062,
0.07775823771953583,
0.03097612038254738,
0.013407845981419086,
0.021365348249673843,
0.0033837552182376385,
0.018503917381167412,
0.02414502389729023,
-0.02601630799472332,
0.023163961246609688,
0.045819222927093506,
0.05217795819044113,
0.007721320725977421,
-0.009043028578162193,
-0.00783032737672329,
0.006049881689250469,
-0.02910483628511429,
-0.045128848403692245,
-0.02314579300582409,
0.02603447623550892,
-0.05508480966091156,
0.06860166043043137,
-0.02567111887037754,
-0.03818874433636665,
-0.015288214199244976,
0.016024010255932808,
-0.010246646590530872,
-0.057373952120542526,
0.015515312552452087,
-0.04305771738290787,
-0.007762197870761156,
-0.06384169310331345,
0.03695333003997803,
-0.019966427236795425,
-0.007553268224000931,
-0.00859337579458952,
-0.02786942571401596,
-0.007471513003110886,
0.012308693490922451,
0.01495211012661457,
0.01037382148206234,
-0.022746101021766663,
-0.023000450804829597,
0.040877580642700195,
-0.0025457649026066065,
0.025598447769880295,
-0.012472203932702541,
-0.0024617386516183615,
0.0510152205824852,
0.03304725140333176,
-0.022746101021766663,
-0.018767351284623146,
0.014734095893800259,
-0.071363165974617,
-0.01647820696234703,
0.026415999978780746,
0.003370129270479083,
0.008230019360780716,
-0.05137857422232628,
-0.01580599695444107,
0.00783032737672329,
0.03793439269065857,
0.031848177313804626,
0.037825386971235275,
0.009710695594549179,
0.0713268369436264,
0.04062322899699211,
0.035263724625110626,
0.008388987742364407,
-0.017940714955329895,
-0.01923971436917782,
-0.04629158601164818,
0.03284740447998047,
-0.014125474728643894,
0.01097335945814848,
0.018067890778183937,
0.023054955527186394,
-0.044947169721126556,
-0.0019484979566186666,
-0.016387367621064186,
-0.013698531314730644,
-0.01630561240017414,
-0.04520151764154434,
0.03617211431264877,
0.015042949467897415,
0.06776594370603561,
0.021801374852657318,
0.04912576451897621,
-0.028105607256293297,
0.009501766413450241,
-0.02396334521472454,
0.05711960420012474,
-0.04287603870034218,
0.007703152485191822
]
|
42,249 | flask_restful | marshal | Takes raw data (in the form of a dict, list, object) and a dict of
fields to output and filters the data based on those fields.
:param data: the actual object(s) from which the fields are taken from
:param fields: a dict of whose keys will make up the final serialized
response output
:param envelope: optional key that will be used to envelop the serialized
response
>>> from flask_restful import fields, marshal
>>> data = { 'a': 100, 'b': 'foo' }
>>> mfields = { 'a': fields.Raw }
>>> marshal(data, mfields)
OrderedDict([('a', 100)])
>>> marshal(data, mfields, envelope='data')
OrderedDict([('data', OrderedDict([('a', 100)]))])
| def marshal(data, fields, envelope=None):
"""Takes raw data (in the form of a dict, list, object) and a dict of
fields to output and filters the data based on those fields.
:param data: the actual object(s) from which the fields are taken from
:param fields: a dict of whose keys will make up the final serialized
response output
:param envelope: optional key that will be used to envelop the serialized
response
>>> from flask_restful import fields, marshal
>>> data = { 'a': 100, 'b': 'foo' }
>>> mfields = { 'a': fields.Raw }
>>> marshal(data, mfields)
OrderedDict([('a', 100)])
>>> marshal(data, mfields, envelope='data')
OrderedDict([('data', OrderedDict([('a', 100)]))])
"""
def make(cls):
if isinstance(cls, type):
return cls()
return cls
if isinstance(data, (list, tuple)):
return (OrderedDict([(envelope, [marshal(d, fields) for d in data])])
if envelope else [marshal(d, fields) for d in data])
items = ((k, marshal(data, v) if isinstance(v, dict)
else make(v).output(k, data))
for k, v in fields.items())
return OrderedDict([(envelope, OrderedDict(items))]) if envelope else OrderedDict(items)
| (data, fields, envelope=None) | [
-0.02825949527323246,
0.009511871263384819,
-0.014681988395750523,
-0.06421227753162384,
0.011930305510759354,
-0.007579029072076082,
0.007493336219340563,
-0.03938048332929611,
0.008383587002754211,
-0.021975375711917877,
0.0039442372508347034,
-0.008569253608584404,
-0.001719801570288837,
-0.004465533420443535,
-0.0035157743841409683,
-0.0018388190073892474,
-0.05758538469672203,
0.006674496456980705,
0.03979942202568054,
-0.017595535144209862,
0.0920909121632576,
0.01859528012573719,
0.001847150269895792,
0.06756380200386047,
0.011359021998941898,
0.04627396911382675,
-0.008178876712918282,
-0.003651454346254468,
-0.01711946539580822,
0.026774156838655472,
0.0485210195183754,
-0.03778088837862015,
0.0805128961801529,
-0.023879652842879295,
0.04695951193571091,
-0.014929544180631638,
-0.026488514617085457,
-0.005470040254294872,
-0.06954425573348999,
0.013253779150545597,
-0.005669989623129368,
-0.05095849558711052,
-0.05777581408619881,
-0.03204900771379471,
0.047645051032304764,
0.027402568608522415,
-0.017995432019233704,
0.04642631113529205,
0.007617114577442408,
0.03547671064734459,
0.036733534187078476,
-0.05103466659784317,
0.018642887473106384,
-0.03071601316332817,
0.013587027788162231,
0.0115113640204072,
-0.007769456598907709,
0.03572426736354828,
0.026602772995829582,
-0.03907579556107521,
-0.0022422880865633488,
0.05739495903253555,
0.010759173892438412,
-0.055414509028196335,
-0.041741788387298584,
0.02892599254846573,
-0.009940334595739841,
-0.026850327849388123,
-0.03172527998685837,
0.009031041525304317,
-0.07921799272298813,
0.04318903759121895,
-0.018642887473106384,
0.039608996361494064,
0.049930185079574585,
0.0630316212773323,
0.021918246522545815,
0.00851688627153635,
0.050501469522714615,
-0.05465279519557953,
0.03130634129047394,
-0.05636664852499962,
-0.08523551374673843,
0.026088617742061615,
0.016586266458034515,
0.05027295649051666,
-0.018366767093539238,
0.010492575354874134,
0.012787231244146824,
-0.028849821537733078,
-0.05053955316543579,
-0.0023434527684003115,
0.015662692487239838,
0.06059414520859718,
-0.01543417852371931,
-0.020870894193649292,
-0.03079218603670597,
0.03212517872452736,
-0.006641171872615814,
0.04098007455468178,
0.003130157943814993,
-0.004122763406485319,
-0.087139792740345,
0.021975375711917877,
0.00438460148870945,
-0.06672592461109161,
-0.009726103395223618,
0.022832300513982773,
0.012777709402143955,
0.011006730608642101,
-0.02424146607518196,
-0.07746605575084686,
-0.028164280578494072,
0.000696251867339015,
0.018547672778367996,
0.01372032705694437,
0.03368669003248215,
0.022318145260214806,
-0.007579029072076082,
-0.0678304061293602,
0.012958616018295288,
-0.05031104013323784,
0.016186367720365524,
-0.038142699748277664,
0.013044308871030807,
0.020585251972079277,
0.04025644809007645,
0.01343468576669693,
0.007402882911264896,
0.0370001345872879,
-0.007593310903757811,
0.005865178070962429,
-0.04071347787976265,
-0.010187890380620956,
0.047645051032304764,
-0.008131269365549088,
-0.003601467004045844,
0.025612547993659973,
-0.0006510252715088427,
-0.019042786210775375,
0.004686905536800623,
-0.02049003727734089,
0.01940459944307804,
0.04063730686903,
-0.028964078053832054,
-0.018300117924809456,
0.07959884405136108,
0.041817959398031235,
0.011263808235526085,
0.03602895140647888,
-0.004277485888451338,
0.010959123261272907,
0.05510982125997543,
-0.0069506168365478516,
0.004436969291418791,
-0.020052053034305573,
-0.03620033711194992,
-0.10930559039115906,
0.0008521646959707141,
-0.044103093445301056,
-0.022394316270947456,
0.02212771773338318,
-0.03987559303641319,
-0.05004444345831871,
0.04025644809007645,
0.010435447096824646,
-0.003253936069086194,
-0.07388600707054138,
0.04478863254189491,
-0.013663198798894882,
-0.0006647122791036963,
-0.023784440010786057,
-0.007917038165032864,
-0.004120382945984602,
-0.0015472263330593705,
0.010168847627937794,
0.007988449186086655,
-0.029363976791501045,
-0.06863020360469818,
0.047073766589164734,
-0.00851688627153635,
-0.02433668076992035,
0.02818332426249981,
0.00538434786722064,
0.01869049482047558,
-0.04379840940237045,
0.010987687855958939,
-0.002408912405371666,
0.025345947593450546,
0.00962612871080637,
-0.006565000396221876,
-0.017566969618201256,
-0.010340232402086258,
-0.020623337477445602,
-0.0627269372344017,
0.0014972391072660685,
-0.03808557242155075,
0.01744319126009941,
0.023613054305315018,
0.050996582955121994,
-0.06158437207341194,
0.004025168716907501,
0.018576238304376602,
-0.007145805284380913,
-0.031115911900997162,
0.01637679524719715,
0.011635142378509045,
-0.044864803552627563,
-0.02818332426249981,
-0.07133428007364273,
0.0860733911395073,
-0.044674377888441086,
0.013558464124798775,
-0.03972325101494789,
0.006612607277929783,
0.08599722385406494,
0.09041514992713928,
-0.04638822749257088,
-0.037400033324956894,
-0.05358640104532242,
-0.006793513894081116,
0.05560493469238281,
-0.08028438687324524,
-0.02121366374194622,
-0.019556941464543343,
-0.017833570018410683,
-0.034277014434337616,
-0.013053829781711102,
0.01540561392903328,
-0.04833059012889862,
-0.036981090903282166,
0.0006278168293647468,
-0.053624484688043594,
0.008707313798367977,
0.04105624556541443,
0.008093183860182762,
0.013920276425778866,
-0.057014100253582,
0.029059290885925293,
0.0035538598895072937,
0.0701536238193512,
-0.007769456598907709,
-0.010882952250540257,
-0.06173671409487724,
-0.008407389745116234,
-0.03488638252019882,
0.01412974763661623,
-0.027059799060225487,
0.024127209559082985,
0.011235243640840054,
-0.028449922800064087,
-0.015776949003338814,
-0.01743367128074169,
0.010854387655854225,
0.006760188844054937,
0.02875460684299469,
-0.008916785009205341,
0.016738608479499817,
-0.010092676617205143,
-0.023136984556913376,
0.007888474501669407,
-0.01565317064523697,
-0.02915450558066368,
0.0340675450861454,
0.0407896488904953,
-0.034372229129076004,
0.010730610229074955,
-0.033629558980464935,
-0.0063031623139977455,
0.015024757944047451,
0.04425543546676636,
0.01060683187097311,
0.035838522017002106,
0.005374826490879059,
0.004713089670985937,
0.02448902279138565,
0.07815159112215042,
-0.0630316212773323,
0.03479117155075073,
0.02384156733751297,
0.02161356247961521,
-0.031020699068903923,
-0.019690241664648056,
-0.07137235999107361,
0.050920408219099045,
-0.06177479773759842,
-0.013415643014013767,
0.06988702714443207,
-0.01212073303759098,
-0.049930185079574585,
0.08942492306232452,
0.045093316584825516,
-0.03170624002814293,
-0.04208455607295036,
-0.010340232402086258,
-0.009297640062868595,
-0.04151327535510063,
-0.052558090537786484,
0.0437222383916378,
-0.08279803395271301,
0.017719311639666557,
0.006807796191424131,
0.1294909417629242,
0.0021232706494629383,
0.027383526787161827,
-0.020090138539671898,
-0.013663198798894882,
-0.011816048994660378,
-0.049930185079574585,
-0.03164910897612572,
-0.02614574506878853,
0.07038214057683945,
-0.0020518600940704346,
-0.03679066151380539,
-0.023898696526885033,
-0.023479755967855453,
0.04585503041744232,
0.06135585531592369,
0.007255301345139742,
0.049206558614969254,
0.016909994184970856,
0.004251302219927311,
0.01473911665380001,
-0.022718043997883797,
0.026012444868683815,
-0.024431895464658737,
0.044026922434568405,
0.02269900031387806,
0.037552375346422195,
-0.037895143032073975,
-0.042236898094415665,
-0.029630575329065323,
0.017090899869799614,
0.039951764047145844,
-0.051225095987319946,
0.0004864836810156703,
0.00579852843657136,
-0.06904914230108261,
-0.03618129342794418,
0.012777709402143955,
-0.013929798267781734,
-0.0012270695297047496,
0.012968136928975582,
-0.04177987203001976,
-0.028392793610692024,
0.016081633046269417,
0.062460336834192276,
0.008731117472052574,
-0.006988702341914177,
0.028983119875192642,
-0.0013341852463781834,
-0.027669169008731842,
0.06645932048559189,
0.029192591086030006,
-0.007093437947332859,
-0.09003429114818573,
-0.02237527444958687,
-0.029440147802233696,
0.021689733490347862,
0.03164910897612572,
0.06946808099746704,
0.02932589128613472,
-0.0069506168365478516,
-0.017157550901174545,
0.022870386019349098,
-0.017919261008501053,
-0.006717342883348465,
0.0010348564246669412,
-0.009207187220454216,
0.026564687490463257,
-0.01606258936226368,
-0.023651139810681343,
-0.031096870079636574,
0.00227323267608881,
0.03488638252019882,
0.05385299772024155,
0.0042965286411345005,
0.020947065204381943,
-0.0625745952129364,
0.01942364126443863,
-0.04433160647749901,
-0.016938557848334312,
-0.0072172158397734165,
-0.06463121622800827,
0.03694300353527069,
-0.020947065204381943,
0.026393301784992218,
0.03745716065168381,
-0.03753333166241646,
-0.020318653434515,
-0.039190053939819336,
-0.010587789118289948,
-0.017814526334404945,
-0.029040249064564705,
-0.036981090903282166,
-0.038390256464481354,
0.01885235868394375,
-0.02342262677848339,
-0.017081379890441895,
-0.031001655384898186,
0.03922813758254051,
-0.033134449273347855,
-0.046807169914245605,
-0.027973853051662445,
0.020604293793439865,
-0.003173004137352109,
0.02597435936331749,
-0.07906565070152283,
0.02909737639129162,
0.02883077785372734,
0.06584995239973068,
0.015348485670983791,
0.027650125324726105,
-0.0653548389673233,
0.05682367458939552,
0.004989210050553083,
0.003425321076065302,
0.06836359947919846,
-0.02408912405371666,
0.004984449129551649,
0.02071855217218399,
0.02654564380645752,
0.01940459944307804,
0.06036563217639923,
-0.006555479019880295,
-0.032715506851673126,
-0.02513647824525833,
-0.03873302787542343,
0.012015998363494873,
0.07651391625404358,
0.02637425810098648,
-0.04406500607728958,
-0.008478800766170025,
-0.05217723548412323,
0.049282729625701904,
0.029687702655792236,
0.02957344613969326,
-0.04406500607728958,
0.008654946461319923,
0.031344424933195114,
0.029211634770035744,
-0.01228259690105915,
0.0025779171846807003,
-0.06463121622800827,
0.015367528423666954,
0.022489530965685844,
-0.02245144546031952,
0.0021768284495919943,
0.05998477712273598,
0.025993403047323227,
0.09216708689928055,
0.006655453704297543,
0.05450045317411423,
-0.0026969346217811108,
-0.017557449638843536,
-0.05461471155285835,
0.03498159721493721,
0.0035800437908619642,
-0.04646439850330353,
-0.007726610638201237,
0.0435698963701725,
-0.05507173761725426,
0.057014100253582,
0.0018411993514746428,
0.01598641835153103,
0.07415261119604111,
-0.08843469619750977,
0.007888474501669407,
-0.031173041090369225,
-0.02942110411822796,
0.051072753965854645,
0.035933736711740494,
-0.004146566614508629,
0.05785198509693146,
0.03562905266880989,
0.027078842744231224,
0.023327412083745003,
0.00025678006932139397,
-0.04874953255057335,
-0.10016505420207977,
0.014215439558029175,
0.0007908706902526319,
0.04482671990990639,
-0.031401555985212326,
-0.040104106068611145,
-0.04299861192703247,
0.03393424302339554,
0.013215693645179272,
-0.01348229218274355,
0.004465533420443535,
0.06276502460241318,
0.004922560416162014,
-0.01704329438507557,
-0.0004977903445251286,
0.03810461610555649,
-0.00024844883591867983,
0.0039442372508347034,
0.0022934656590223312,
-0.026088617742061615,
-0.04890187457203865,
0.014815287664532661,
-0.028849821537733078,
0.03709534555673599,
-0.02858322113752365,
-0.06253650784492493,
-0.011692270636558533,
0.04376032203435898,
0.012606324627995491,
-0.0005903263809159398,
0.01638631708920002,
-0.05396725609898567,
-0.019442684948444366,
0.019975882023572922,
0.018242988735437393,
-0.0353814959526062,
0.01351085677742958,
-0.0012972898548468947,
0.022718043997883797,
-0.03418179973959923,
-0.05400533974170685,
0.002756443340331316,
0.024927007034420967,
0.009021519683301449,
0.011244765482842922,
-0.01710994355380535,
0.037228647619485855,
0.006936335004866123,
-0.017233721911907196,
-0.016652915626764297,
0.008226483128964901,
-0.01311095803976059,
-0.00679827481508255,
-0.03096356987953186,
-0.01253015361726284,
-0.012111212126910686,
0.04277009889483452,
-0.053700655698776245,
0.0069220527075231075,
0.03692396357655525,
0.02056620828807354,
0.05865178257226944,
0.06482164561748505,
-0.0022184846457093954,
-0.035686179995536804,
0.03277263417840004,
0.00487495306879282,
0.009892727248370647,
-0.017890697345137596,
0.012434938922524452,
-0.02753586880862713,
-0.07320047169923782,
-0.055833447724580765,
0.025269776582717896,
0.09391902387142181,
-0.006936335004866123,
-0.008040816523134708,
0.03237273544073105,
-0.011711313389241695,
0.018242988735437393,
0.0013103816891089082,
-0.01597689837217331,
0.047302279621362686,
-0.06725911796092987,
-0.02433668076992035,
-0.018547672778367996,
0.02024248242378235,
0.07937033474445343,
0.034943513572216034,
-0.022756129503250122,
0.006412658374756575,
0.00012898512068204582,
0.0489780455827713,
0.007717089261859655,
-0.010873430408537388,
0.04143710434436798,
0.02825949527323246,
0.01478672306984663,
-0.021575476974248886,
0.005565254017710686,
-0.09955568611621857,
0.02342262677848339,
-0.06878254562616348,
-0.02825949527323246,
-0.10961027443408966,
0.029954303056001663,
-0.0517582930624485,
-0.01457725279033184,
0.022718043997883797,
0.04368415102362633,
-0.009564239531755447,
-0.0032206112518906593,
-0.020375780761241913,
-0.016909994184970856,
0.03397233039140701,
0.03799035772681236,
0.005884220823645592,
-0.026926498860120773,
0.018814273178577423,
-0.035838522017002106,
-0.02637425810098648,
-0.019366513937711716,
0.05290085822343826,
-0.029840046539902687,
-0.014301132410764694,
0.011739877983927727,
-0.027650125324726105,
-0.04299861192703247,
0.03825695812702179,
0.05842326954007149,
0.021670689806342125,
-0.0029920977540314198,
0.0028611787129193544,
0.031249212101101875,
0.0010759173892438412,
0.03875206783413887,
-0.0020982769783586264,
-0.0540815107524395,
-0.05023486912250519,
0.04520757496356964,
-0.01167322788387537,
0.04848293215036392,
-0.010435447096824646,
-0.016253018751740456,
0.023289326578378677,
-0.029592489823698997,
-0.006312683690339327,
-0.011320936493575573,
0.0006903010071255267,
0.003008760279044509,
-0.07426686584949493,
0.017090899869799614,
-0.031915709376335144,
0.04376032203435898,
-0.009854641743004322,
-0.02188016101717949,
0.030163772404193878,
-0.02285134419798851,
0.005436715204268694,
-0.0010175989009439945,
-0.027650125324726105,
0.01543417852371931,
-0.010311668738722801,
0.00041626341408118606,
-0.021118449047207832,
-0.026850327849388123,
-0.0037752322386950254,
0.023079857230186462,
-0.05316745862364769,
0.016814779490232468,
-0.03385807201266289,
-0.03578139469027519,
0.03675257787108421,
-0.01751936413347721,
0.016100674867630005,
-0.010045069269835949,
0.029287805780768394,
0.02022343873977661,
-0.011854134500026703,
0.034029457718133926,
0.025003178045153618,
-0.04025644809007645,
0.004122763406485319,
0.041970301419496536,
-0.03446744382381439,
0.0006914911791682243,
0.02614574506878853,
0.005869938991963863,
-0.05617621913552284,
0.018871400505304337,
0.01802399754524231,
-0.03423893079161644,
0.048711445182561874,
0.04318903759121895,
0.03503872826695442,
-0.016157804057002068,
0.025783931836485863,
-0.010045069269835949,
0.008578775450587273,
-0.001125904731452465,
0.011035294272005558,
-0.02401295304298401,
-0.02235623076558113,
-0.02646947279572487,
0.028945034369826317,
-0.009521393105387688,
-0.025041263550519943,
0.014843851327896118,
-0.03197283670306206,
-0.008873938582837582,
-0.019147520884871483,
0.08317889273166656,
-0.07457154989242554,
-0.009173862636089325,
-0.05720452964305878,
-0.023784440010786057,
-0.020604293793439865,
0.017338456586003304,
0.005779485683888197,
0.06383141875267029,
0.024869877845048904,
0.062384165823459625,
0.002880221465602517,
0.05530025064945221,
0.005217723548412323,
-0.023156028240919113,
-0.03063984215259552,
-0.003108734730631113,
-0.012711059302091599,
0.05210106447339058,
0.022737085819244385,
-0.015100928954780102,
0.09879397600889206,
0.05431002750992775,
-0.05945157632231712,
0.021404091268777847,
-0.0025231691543012857,
-0.006284119561314583,
0.09818460792303085,
0.014643902890384197,
-0.003180145286023617,
0.0218611191958189,
0.06375525146722794,
0.010511618107557297,
-0.05168212205171585,
0.011806527152657509,
-0.03907579556107521,
0.017719311639666557,
-0.001086628995835781,
-0.008731117472052574,
-0.004691666457802057,
0.019556941464543343,
-0.008064620196819305,
-0.02106132172048092,
-0.02473657950758934,
0.03393424302339554,
-0.03204900771379471,
-0.05960392206907272,
-0.011025773361325264,
-0.0015995940193533897,
0.020299609750509262,
0.018242988735437393,
0.06824934482574463,
0.05373874306678772,
0.03351530432701111,
-0.0189285296946764,
-0.05480513721704483,
0.11227626353502274,
-0.00561286136507988,
-0.01891900785267353,
0.020299609750509262,
0.02300368621945381,
0.029916217550635338,
-0.07320047169923782,
-0.05461471155285835,
0.005827092565596104,
0.03439127281308174,
-0.0256506334990263,
0.03473404049873352,
-0.007283865474164486,
-0.0101593267172575,
-0.028621306642889977,
0.016652915626764297,
-0.024108167737722397,
0.007350515574216843,
0.018147775903344154,
0.0675257220864296,
0.06470738351345062,
0.01490098051726818
]
|
42,250 | flask_restful | marshal_with | A decorator that apply marshalling to the return values of your methods.
>>> from flask_restful import fields, marshal_with
>>> mfields = { 'a': fields.Raw }
>>> @marshal_with(mfields)
... def get():
... return { 'a': 100, 'b': 'foo' }
...
...
>>> get()
OrderedDict([('a', 100)])
>>> @marshal_with(mfields, envelope='data')
... def get():
... return { 'a': 100, 'b': 'foo' }
...
...
>>> get()
OrderedDict([('data', OrderedDict([('a', 100)]))])
see :meth:`flask_restful.marshal`
| class marshal_with(object):
"""A decorator that apply marshalling to the return values of your methods.
>>> from flask_restful import fields, marshal_with
>>> mfields = { 'a': fields.Raw }
>>> @marshal_with(mfields)
... def get():
... return { 'a': 100, 'b': 'foo' }
...
...
>>> get()
OrderedDict([('a', 100)])
>>> @marshal_with(mfields, envelope='data')
... def get():
... return { 'a': 100, 'b': 'foo' }
...
...
>>> get()
OrderedDict([('data', OrderedDict([('a', 100)]))])
see :meth:`flask_restful.marshal`
"""
def __init__(self, fields, envelope=None):
"""
:param fields: a dict of whose keys will make up the final
serialized response output
:param envelope: optional key that will be used to envelop the serialized
response
"""
self.fields = fields
self.envelope = envelope
def __call__(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
resp = f(*args, **kwargs)
if isinstance(resp, tuple):
data, code, headers = unpack(resp)
return marshal(data, self.fields, self.envelope), code, headers
else:
return marshal(resp, self.fields, self.envelope)
return wrapper
| (fields, envelope=None) | [
0.0022239733953028917,
-0.032374002039432526,
0.013357754796743393,
-0.004406203981488943,
0.028255362063646317,
0.004287932068109512,
-0.009675095789134502,
-0.01011107861995697,
0.023802777752280235,
-0.007518375292420387,
0.016465287655591965,
-0.012235332280397415,
0.01866375282406807,
-0.016094239428639412,
0.005435863975435495,
0.026993796229362488,
-0.011085080914199352,
0.010611994192004204,
0.02858930639922619,
-0.017559882253408432,
0.08845802396535873,
0.006247533485293388,
-0.0034809010103344917,
0.045342158526182175,
-0.0013937518233433366,
0.06140856817364693,
0.002724889200180769,
-0.026604196056723595,
0.050944991409778595,
-0.004508242476731539,
0.09469164162874222,
-0.049535006284713745,
0.08103704452514648,
0.005468330811709166,
0.04293033853173256,
-0.02901601232588291,
-0.049868952482938766,
0.02272673510015011,
-0.07717814296483994,
-0.016669364646077156,
-0.010899556800723076,
-0.03560212627053261,
-0.03426635265350342,
-0.03738316148519516,
0.07465501129627228,
0.02460053190588951,
-0.010593441314995289,
0.059516217559576035,
0.025620916858315468,
0.032336898148059845,
0.04786529019474983,
-0.021131226792931557,
0.02432224527001381,
-0.029925081878900528,
0.0009009527275338769,
0.013469069264829159,
0.012977429665625095,
0.06801323592662811,
0.010027592070400715,
-0.03252242133021355,
-0.012773352675139904,
0.04563899710774422,
0.01567680947482586,
-0.021223988384008408,
-0.03131651505827904,
0.013023811392486095,
-0.058551494032144547,
-0.011975598521530628,
0.0019236558582633734,
0.018385466188192368,
-0.022652525454759598,
0.0037591876462101936,
-0.014433796517550945,
0.03437766805291176,
0.03589896485209465,
0.031205199658870697,
0.0027480798307806253,
-0.045045316219329834,
0.07814286649227142,
-0.043969277292490005,
0.002775908447802067,
-0.03289347141981125,
-0.06771639734506607,
0.0260290689766407,
-0.011919940821826458,
0.005709512624889612,
-0.028255362063646317,
-0.018255598843097687,
0.023320414125919342,
0.027698788791894913,
-0.06356064975261688,
0.04174298420548439,
-0.020852940157055855,
0.016604430973529816,
-0.048087917268276215,
-0.048087917268276215,
-0.0047308714129030704,
0.019572820514440536,
0.024043958634138107,
0.017921654507517815,
-0.0430416539311409,
0.027068005874753,
-0.04601004347205162,
0.03406227380037308,
0.01886782795190811,
-0.04864449054002762,
0.0018320531817153096,
-0.0345817431807518,
0.01012035459280014,
0.025750782340765,
0.011289157904684544,
-0.056881774216890335,
-0.04189140349626541,
0.017828892916440964,
0.006150132976472378,
0.014628596603870392,
0.009461742825806141,
-0.012244608253240585,
-0.022633973509073257,
-0.04463716596364975,
0.036826588213443756,
-0.04934948310256004,
0.031001122668385506,
-0.07305949926376343,
0.010296602733433247,
0.0518726147711277,
0.019201772287487984,
0.01603858172893524,
0.046715036034584045,
0.027865760028362274,
-0.01085317600518465,
0.042447976768016815,
-0.02595485933125019,
0.010166735388338566,
0.048273440450429916,
-0.012226056307554245,
-0.015287208370864391,
0.03024047240614891,
-0.014795568771660328,
0.048347651958465576,
0.0035945347044616938,
0.08274386823177338,
0.027791550382971764,
0.006062008906155825,
-0.05120472609996796,
-0.009331876412034035,
0.06341223418712616,
0.022262925282120705,
0.028477990999817848,
0.021298198029398918,
0.028236810117959976,
-0.009206647053360939,
0.049646321684122086,
-0.004767976235598326,
0.008404253982007504,
0.02140951342880726,
-0.02165069431066513,
-0.049831848591566086,
0.040926676243543625,
-0.07068478316068649,
-0.010927385650575161,
0.009944106452167034,
-0.016335420310497284,
-0.08489595353603363,
0.057957813143730164,
0.03187308833003044,
0.014572939835488796,
-0.06819876283407211,
0.03196584805846214,
-0.0005339623312465847,
-0.014665701426565647,
-0.005477607250213623,
0.03641843423247337,
0.01891420967876911,
0.004870014730840921,
0.05027710646390915,
-0.0003658308705780655,
-0.029182983562350273,
-0.05328259989619255,
0.05176129937171936,
0.029758108779788017,
-0.03686369210481644,
0.004902481567114592,
0.005009158048778772,
0.03773565590381622,
0.00038351365947164595,
-0.013283545151352882,
-0.02571367844939232,
0.012578552588820457,
0.026492880657315254,
0.04333849251270294,
0.033802539110183716,
0.020389128476381302,
-0.004723914433270693,
-0.09432059526443481,
-0.015194445848464966,
-0.04838475584983826,
-0.006409867201000452,
0.032169926911592484,
0.012161122635006905,
-0.0492381677031517,
0.00867790263146162,
0.002715612994506955,
0.02300502173602581,
0.007657518610358238,
0.019442955031991005,
0.011159291490912437,
-0.045379262417554855,
-0.05869991332292557,
-0.0578836053609848,
0.03473016247153282,
-0.028459439054131508,
-0.010741861537098885,
-0.027754446491599083,
0.003116809530183673,
0.026103278622031212,
0.0691634863615036,
-0.015185169875621796,
0.0013207016745582223,
-0.06155698746442795,
0.01743929088115692,
0.03836644068360329,
-0.0432271808385849,
-0.029980739578604698,
-0.016808507964015007,
-0.012606381438672543,
-0.00467753317207098,
-0.042522188276052475,
-0.009526676498353481,
-0.0053199115209281445,
-0.059775952249765396,
0.011855007149279118,
-0.031056780368089676,
0.014118405058979988,
-0.020945701748132706,
0.003984136041253805,
0.021947532892227173,
-0.025324076414108276,
0.033969514071941376,
-0.019368745386600494,
0.07717814296483994,
0.03415503725409508,
-0.00606664689257741,
-0.02163214236497879,
-0.00781521387398243,
-0.015398522838950157,
-0.00032640693825669587,
0.03755013272166252,
0.023394623771309853,
0.015036750584840775,
-0.046789247542619705,
-0.002947518602013588,
0.01576029509305954,
0.022095952183008194,
-0.00042235784349031746,
-0.0019306130707263947,
-0.0575125552713871,
0.0011780797503888607,
-0.010361536405980587,
-0.008886617608368397,
0.0375872366130352,
-0.02573223039507866,
0.016697194427251816,
0.02753181755542755,
0.02873772569000721,
-0.026196042075753212,
-0.0023167356848716736,
-0.02285660244524479,
0.005440502427518368,
0.019814003258943558,
0.001545649953186512,
0.003033323446288705,
0.0019143796525895596,
-0.024173825979232788,
0.01713317632675171,
0.014730635099112988,
0.03727184608578682,
-0.051278937608003616,
0.02458197996020317,
-0.005454416386783123,
-0.001231417991220951,
-0.04485979303717613,
0.01985110715031624,
-0.04582452028989792,
0.0405927337706089,
-0.03345004469156265,
-0.025249866768717766,
0.04723450541496277,
0.013098021037876606,
-0.06882954388856888,
0.0952853187918663,
0.0185153316706419,
0.004621875938028097,
-0.033617015928030014,
0.025231314823031425,
-0.013274269178509712,
-0.06638062000274658,
-0.05446995794773102,
0.020908595994114876,
-0.0642656460404396,
0.00753228971734643,
0.009150989353656769,
0.07651025056838989,
0.02858930639922619,
0.04575030878186226,
-0.0312979631125927,
0.032429661601781845,
-0.0034693058114498854,
-0.059553325176239014,
0.004399246536195278,
-0.01580667681992054,
0.10211261361837387,
-0.06534168124198914,
-0.06474800407886505,
-0.012578552588820457,
-0.004199807997792959,
0.01708679459989071,
0.04434032365679741,
0.014572939835488796,
0.04979474097490311,
0.016901269555091858,
-0.026492880657315254,
0.0005217873258516192,
0.002065118169412017,
0.0321328230202198,
-0.007504460867494345,
0.05172419548034668,
0.014498730190098286,
0.023988300934433937,
0.0020743943750858307,
-0.04281902685761452,
-0.02586209774017334,
-0.02139095962047577,
0.01736508123576641,
-0.07279976457357407,
-0.002901137340813875,
0.013942156918346882,
-0.06341223418712616,
-0.05031421035528183,
-0.0060341800563037395,
-0.009823516011238098,
-0.031149541959166527,
-0.01580667681992054,
-0.022671079263091087,
-0.07079610228538513,
-0.00609911372885108,
0.05031421035528183,
0.03571344166994095,
0.016502393409609795,
0.011168567463755608,
-0.016446735709905624,
-0.04044431447982788,
0.05150156468153,
0.059738848358392715,
0.0005041045369580388,
-0.049720533192157745,
-0.039405375719070435,
-0.055249158293008804,
0.02419237792491913,
0.008914446458220482,
0.03426635265350342,
0.020481890067458153,
-0.015444904565811157,
-0.007676071021705866,
0.02879338338971138,
0.0172908715903759,
-0.02888614498078823,
-0.026919586583971977,
0.00005812130621052347,
0.024841712787747383,
-0.0007096307235769928,
-0.0065397340804338455,
-0.026214594021439552,
0.02422948367893696,
0.053839173167943954,
0.02458197996020317,
-0.029832318425178528,
0.00613158056512475,
-0.06771639734506607,
0.0016778360586613417,
-0.012708419933915138,
-0.029980739578604698,
0.012606381438672543,
-0.021094121038913727,
0.06901506334543228,
-0.01726304367184639,
0.05780939385294914,
-0.012810458429157734,
-0.0522436648607254,
-0.00463579036295414,
-0.05461837723851204,
-0.04742002859711647,
-0.03192874416708946,
0.024136720225214958,
-0.0432271808385849,
-0.0513160414993763,
-0.03170611709356308,
-0.005069453734904528,
0.046640828251838684,
-0.025620916858315468,
0.07702971994876862,
-0.0492381677031517,
0.002606617519631982,
-0.005867208354175091,
0.010203840211033821,
0.015268656425178051,
0.01746712066233158,
-0.049052644520998,
0.02304212749004364,
0.038180917501449585,
0.025416839867830276,
-0.012717695906758308,
0.02435935102403164,
-0.07628761976957321,
0.06912638247013092,
-0.012309541925787926,
0.03508266061544418,
0.06207645684480667,
-0.00928085669875145,
-0.004220679402351379,
0.03858907148241997,
0.016474563628435135,
0.04207692667841911,
0.06218776851892471,
-0.013348478823900223,
-0.009517400525510311,
-0.02031491883099079,
-0.01994387060403824,
-0.01153033971786499,
0.0669000893831253,
0.03426635265350342,
-0.032392553985118866,
-0.023264756426215172,
-0.06793902814388275,
0.026381565257906914,
0.0048143574967980385,
0.010602718219161034,
-0.056696247309446335,
-0.003158552572131157,
0.01711462438106537,
0.017745405435562134,
0.03356136009097099,
-0.012717695906758308,
-0.03456319123506546,
0.021335303783416748,
-0.025324076414108276,
-0.0545070618391037,
0.0260290689766407,
0.08578646928071976,
-0.026214594021439552,
0.07702971994876862,
-0.021298198029398918,
0.05272602662444115,
0.01079751830548048,
-0.008353235200047493,
-0.036474090069532394,
0.04181719198822975,
-0.06574983894824982,
-0.03278215602040291,
0.03914564102888107,
0.056659143418073654,
-0.049720533192157745,
-0.0011827178532257676,
0.0019758346024900675,
-0.02317199483513832,
0.03283781558275223,
-0.06077778339385986,
0.019647032022476196,
-0.06697429716587067,
-0.020481890067458153,
0.04901554062962532,
-0.014572939835488796,
-0.010955214500427246,
0.017624815925955772,
0.05439574643969536,
0.033950962126255035,
0.05012868717312813,
0.012791905552148819,
-0.07265134155750275,
-0.08022073656320572,
-0.004925671964883804,
0.0014296971494331956,
0.014220443554222584,
-0.025175657123327255,
-0.010157459415495396,
-0.0003278563672211021,
0.023413175716996193,
0.019702687859535217,
0.013487622141838074,
0.04011036828160286,
0.021131226792931557,
0.05602836236357689,
0.005667769815772772,
0.01153961569070816,
0.016214830800890923,
0.017958760261535645,
-0.012689867056906223,
-0.027791550382971764,
-0.016391078010201454,
-0.04155746102333069,
0.008821683935821056,
-0.09506268799304962,
0.012810458429157734,
0.012569276615977287,
-0.046677932143211365,
-0.033617015928030014,
-0.022151609882712364,
-0.008900531567633152,
-0.004577814135700464,
-0.0075415656901896,
-0.061297252774238586,
-0.0034739437978714705,
0.02319054678082466,
0.03840354457497597,
-0.061074625700712204,
0.004206764977425337,
-0.014146233908832073,
0.0160664115101099,
-0.0003293057670816779,
-0.04723450541496277,
0.006980354432016611,
0.02025926113128662,
0.05443285033106804,
0.01720738597214222,
-0.049720533192157745,
0.03782841935753822,
0.04779107868671417,
-0.028218258172273636,
-0.01500892173498869,
0.022374238818883896,
-0.0033463959116488695,
0.007625051774084568,
-0.00783840473741293,
-0.01018528826534748,
0.009243751876056194,
0.06508195400238037,
-0.0984763354063034,
-0.0016036262968555093,
0.06515616178512573,
-0.022170161828398705,
0.05298576131463051,
0.07695551216602325,
-0.02471184730529785,
0.006915421225130558,
-0.008886617608368397,
-0.01373807992786169,
0.011827179230749607,
-0.03178032487630844,
0.007124135736376047,
-0.06474800407886505,
-0.08237282186746597,
-0.022095952183008194,
0.017977312207221985,
0.02745760791003704,
-0.046418197453022,
-0.011289157904684544,
0.03627001494169235,
-0.029331402853131294,
0.007523013278841972,
-0.009508124552667141,
-0.016808507964015007,
0.06404301524162292,
-0.04497110843658447,
-0.02595485933125019,
-0.05446995794773102,
0.05339391529560089,
0.0917232483625412,
0.03007350116968155,
-0.08660277724266052,
-0.03267084062099457,
-0.020389128476381302,
0.014934712089598179,
0.009656543843448162,
-0.02560236304998398,
0.04144614562392235,
0.06300407648086548,
0.03165045753121376,
-0.022040296345949173,
0.013394859619438648,
-0.0571415089070797,
0.02035202458500862,
-0.061260148882865906,
-0.048125021159648895,
-0.10916253924369812,
-0.01379373762756586,
-0.012031255289912224,
-0.0432271808385849,
0.04838475584983826,
0.005616750568151474,
-0.0010743021266534925,
-0.032262690365314484,
-0.03578765317797661,
-0.010417193174362183,
-0.018404018133878708,
0.049868952482938766,
0.01848750375211239,
-0.06192803755402565,
0.009192733094096184,
-0.0217063520103693,
-0.012059084139764309,
0.008200176991522312,
0.04612135887145996,
-0.044080592691898346,
-0.015584046952426434,
-0.0011189439101144671,
-0.021223988384008408,
-0.036566853523254395,
0.012365199625492096,
0.020797282457351685,
-0.0037986114621162415,
-0.03294912725687027,
-0.02742050215601921,
0.010380088351666927,
-0.02005518414080143,
0.03192874416708946,
-0.007801299914717674,
-0.07550842314958572,
-0.02747615985572338,
0.019572820514440536,
-0.04467426985502243,
0.02582499198615551,
-0.015222274698317051,
-0.03313465416431427,
0.008436720818281174,
0.00029394018929451704,
-0.007147326599806547,
-0.00010638663661666214,
0.011298434808850288,
-0.0076111373491585255,
-0.051241833716630936,
-0.008422806859016418,
0.016622984781861305,
0.07250292599201202,
-0.012532171793282032,
0.031093884259462357,
-0.010927385650575161,
0.01285683922469616,
0.009447828866541386,
0.010769689455628395,
-0.01721666194498539,
-0.007458079606294632,
-0.03753158077597618,
-0.025324076414108276,
0.007286469917744398,
-0.021817665547132492,
0.02450777031481266,
0.016845613718032837,
-0.07116714864969254,
0.04207692667841911,
-0.04601004347205162,
-0.030648626387119293,
0.06712272018194199,
-0.033950962126255035,
-0.010955214500427246,
-0.006382038351148367,
0.02139095962047577,
0.02567657269537449,
-0.02003663219511509,
0.04460005834698677,
0.02714221552014351,
-0.04474847763776779,
-0.007309660315513611,
0.014916159212589264,
-0.05313418060541153,
-0.02313488908112049,
0.039739321917295456,
-0.0346745066344738,
-0.0345817431807518,
0.07435817271471024,
-0.012569276615977287,
0.006386676337569952,
0.052354976534843445,
0.016929099336266518,
0.02742050215601921,
-0.042522188276052475,
0.023617252707481384,
-0.010611994192004204,
-0.0006626698886975646,
0.022763840854167938,
0.026363013312220573,
-0.039516691118478775,
0.011140738613903522,
-0.03293057531118393,
0.06170540675520897,
-0.05736413598060608,
-0.024934476241469383,
0.04456295445561409,
-0.002123094629496336,
-0.013506174087524414,
-0.04723450541496277,
0.08393123000860214,
-0.09951527416706085,
0.01988821290433407,
-0.008455273695290089,
-0.07057347148656845,
0.005032348446547985,
-0.02157648466527462,
-0.04137193411588669,
0.04493400454521179,
0.036715272814035416,
0.007792023476213217,
-0.016882717609405518,
0.030964018777012825,
-0.009118522517383099,
-0.0030634712893515825,
-0.014452348463237286,
0.03888591006398201,
-0.040852468460798264,
-0.0025161742232739925,
0.04508242383599281,
0.02437790296971798,
0.103374183177948,
0.07435817271471024,
-0.07970127463340759,
0.023505937308073044,
0.01580667681992054,
0.01999952830374241,
0.02758747525513172,
0.026177488267421722,
0.01863592304289341,
-0.0003359730471856892,
0.03773565590381622,
0.01153961569070816,
-0.06018410623073578,
-0.022374238818883896,
-0.03988774120807648,
0.018329808488488197,
0.0432271808385849,
-0.010955214500427246,
-0.03152059018611908,
0.056918878108263016,
0.009016484953463078,
-0.0432271808385849,
0.03007350116968155,
0.0242480356246233,
-0.03773565590381622,
-0.02755036950111389,
0.025027237832546234,
0.0074719940312206745,
0.01011107861995697,
0.0020465657580643892,
0.06619509309530258,
0.027977075427770615,
0.07673288136720657,
0.010454297997057438,
-0.007843042723834515,
0.08957117050886154,
0.012773352675139904,
0.0013160635717213154,
0.04137193411588669,
0.011177843436598778,
0.03024047240614891,
-0.04185429960489273,
-0.025138553231954575,
0.04144614562392235,
0.0002740832860581577,
-0.010166735388338566,
0.03341294080018997,
0.004777252674102783,
-0.015342866070568562,
-0.0725400298833847,
-0.0018216174794360995,
-0.04920106381177902,
0.013098021037876606,
0.00041713996324688196,
0.06719692796468735,
0.023654358461499214,
0.054098907858133316
]
|
42,251 | flask_restful | __call__ | null | def __call__(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
resp = f(*args, **kwargs)
if isinstance(resp, tuple):
data, code, headers = unpack(resp)
return marshal(data, self.fields, self.envelope), code, headers
else:
return marshal(resp, self.fields, self.envelope)
return wrapper
| (self, f) | [
0.03667232766747475,
-0.07224413752555847,
-0.024229297414422035,
0.031205205246806145,
-0.02501031570136547,
-0.01732439175248146,
-0.037062838673591614,
0.014679581858217716,
-0.008688821457326412,
0.00017542389105074108,
0.03713383898139,
0.018815426155924797,
0.0006473349640145898,
-0.05112115666270256,
-0.006434520706534386,
0.027442120015621185,
-0.009576341137290001,
0.0034324838779866695,
0.019330186769366264,
0.013632308691740036,
0.04622204601764679,
0.004974550101906061,
-0.014644080772995949,
0.04963012412190437,
0.035802558064460754,
0.04327547922730446,
0.013028794899582863,
-0.011626512743532658,
0.07646872848272324,
0.010659116320312023,
0.020590465515851974,
-0.05417422577738762,
0.034986041486263275,
0.015478350222110748,
0.01103187445551157,
0.027335617691278458,
-0.10408835113048553,
0.006572086364030838,
-0.09500014781951904,
-0.006123888306319714,
-0.01807878352701664,
-0.05321570485830307,
-0.011085125617682934,
0.0016474591102451086,
0.025897836312651634,
0.02304002083837986,
0.00035667212796397507,
0.06841004639863968,
0.012798039242625237,
0.022720513865351677,
0.027317868545651436,
-0.010233106091618538,
0.017093636095523834,
-0.047677576541900635,
0.003982746507972479,
0.04892010614275932,
0.028560396283864975,
0.06102588027715683,
0.017537396401166916,
-0.01025973167270422,
-0.04576053470373154,
0.05211517959833145,
0.020430712029337883,
0.014360074885189533,
-0.017768152058124542,
0.009602967649698257,
-0.01752852089703083,
-0.007322040386497974,
-0.017617274075746536,
0.04245895892381668,
0.027459871023893356,
0.023537032306194305,
-0.035980064421892166,
0.01298441831022501,
0.048245590180158615,
0.018043283373117447,
-0.007734737358987331,
-0.010082228109240532,
0.05534575134515762,
-0.020998725667595863,
0.0029754110146313906,
-0.01789240539073944,
-0.03670782968401909,
0.016294868662953377,
-0.006585399154573679,
0.029802924022078514,
0.03138270974159241,
-0.015158843249082565,
-0.03180871903896332,
0.0823618620634079,
-0.05207967758178711,
0.021193979308009148,
-0.021193979308009148,
-0.0027801566757261753,
-0.04732257127761841,
-0.024513304233551025,
0.008076433092355728,
-0.009824846871197224,
0.0017772589344531298,
0.045725032687187195,
-0.023554783314466476,
0.07291864603757858,
-0.04817458987236023,
0.021815244108438492,
0.06627999991178513,
-0.05073064565658569,
0.0006157170282676816,
-0.04902660846710205,
0.022596260532736778,
0.03649482503533363,
0.0007077972404658794,
-0.03976089879870415,
-0.01688063144683838,
0.03519904613494873,
-0.004947924520820379,
0.00978934671729803,
-0.005391684360802174,
0.004615104291588068,
-0.03211047500371933,
-0.005773318000137806,
0.0687650516629219,
-0.0280811358243227,
0.03592681139707565,
-0.05587826296687126,
-0.00213781394995749,
0.09585216641426086,
0.01608186401426792,
-0.0007688142359256744,
0.07831477373838425,
-0.006683025974780321,
-0.0031107577960938215,
0.03656582534313202,
0.02934141457080841,
0.009736095555126667,
0.014697332866489887,
0.018211912363767624,
-0.004104780498892069,
-0.0007477356703020632,
-0.0438079908490181,
0.01424469705671072,
-0.017200138419866562,
0.051724668592214584,
0.05846982076764107,
0.0010056712199002504,
-0.023909790441393852,
0.03660132735967636,
0.004262315109372139,
0.030938949435949326,
0.002094547264277935,
-0.010508237406611443,
0.037914857268333435,
-0.021815244108438492,
0.027317868545651436,
0.0007604937418363988,
-0.054529234766960144,
0.038482870906591415,
0.006935969460755587,
-0.024264799430966377,
0.049914129078388214,
-0.012132399715483189,
-0.002926597371697426,
-0.008884076029062271,
0.014635206200182438,
-0.03922838717699051,
0.05623327195644379,
0.0016208335291594267,
-0.008600069209933281,
-0.013073170557618141,
0.009602967649698257,
0.011617638170719147,
-0.020767970010638237,
0.016907257959246635,
-0.012150149792432785,
0.028187638148665428,
-0.00042628697701729834,
0.06485996395349503,
0.02861364744603634,
-0.01353468094021082,
-0.03292699530720711,
0.03617531806230545,
-0.01984494924545288,
-0.03802135959267616,
0.00896839052438736,
0.014271322637796402,
0.03166671469807625,
0.04668355733156204,
0.040293410420417786,
-0.00983372237533331,
0.04256546124815941,
0.019081681966781616,
0.02527657151222229,
0.010588114149868488,
0.026607852429151535,
0.019330186769366264,
-0.06336893141269684,
-0.009549715556204319,
-0.02373228594660759,
0.006958157289773226,
0.02248975820839405,
-0.047677576541900635,
-0.005715629085898399,
-0.015433973632752895,
0.017351018264889717,
0.03780835494399071,
-0.043914493173360825,
0.0368853360414505,
0.034134022891521454,
0.005746692419052124,
-0.058718327432870865,
-0.0535707101225853,
0.03968989849090576,
-0.05502624437212944,
-0.044198498129844666,
-0.020004702731966972,
0.020732469856739044,
-0.0036477074027061462,
0.06770002841949463,
-0.035252299159765244,
0.009496464394032955,
-0.029944926500320435,
0.025525078177452087,
0.0025693706702440977,
-0.009709469974040985,
-0.05431623011827469,
0.015203218907117844,
0.0006828357581980526,
0.00030841323314234614,
-0.06826804578304291,
-0.023980792611837387,
-0.022117000073194504,
-0.06741602718830109,
0.003951683174818754,
0.021051976829767227,
0.002589339856058359,
-0.05097915232181549,
-0.056765783578157425,
0.039015382528305054,
-0.05058864504098892,
-0.0143955759704113,
-0.018957428634166718,
0.083781898021698,
-0.0215312372893095,
0.045050520449876785,
0.01872667297720909,
0.009860347956418991,
-0.008569005876779556,
0.008919577114284039,
0.041429437696933746,
0.005551437847316265,
0.024051794782280922,
-0.0756877139210701,
0.0025316509418189526,
-0.009256834164261818,
-0.020501714199781418,
0.004222376737743616,
-0.04746457189321518,
-0.03489729017019272,
-0.038766875863075256,
0.052718691527843475,
0.017004884779453278,
0.014617455191910267,
-0.012567284516990185,
0.031205205246806145,
0.008644445799291134,
-0.005884258076548576,
-0.035110294818878174,
-0.033850014209747314,
-0.01899292878806591,
0.017741525545716286,
0.044056497514247894,
-0.028986405581235886,
0.013144172728061676,
0.014741708524525166,
-0.017413143068552017,
-0.030654942616820335,
-0.0015764575218781829,
0.031879719346761703,
-0.04242346063256264,
0.028294140473008156,
-0.027832629159092903,
0.0609193779528141,
-0.017564022913575172,
0.018114285543560982,
-0.015327471308410168,
0.011289255693554878,
-0.009265709668397903,
0.01488371193408966,
0.0673450231552124,
0.02541857399046421,
-0.0975562036037445,
0.021761992946267128,
0.023253025487065315,
0.04906211048364639,
-0.05058864504098892,
0.00941658765077591,
-0.011963770724833012,
-0.0449795164167881,
-0.013969565741717815,
0.0388023778796196,
-0.07497769594192505,
0.009807096794247627,
-0.022986769676208496,
0.0633334293961525,
0.0012791382614523172,
0.052718691527843475,
0.0020601560827344656,
0.05477773770689964,
0.021690990775823593,
-0.0756877139210701,
0.014830460771918297,
-0.027743877843022346,
0.08072882890701294,
-0.0535707101225853,
-0.05694328621029854,
0.016791880130767822,
0.013508055359125137,
0.008413690142333508,
0.05797281116247177,
-0.006288079544901848,
0.04792608320713043,
-0.011014124378561974,
-0.03837636858224869,
0.015176593326032162,
0.0421394519507885,
0.06280092149972916,
-0.017315516248345375,
0.02248975820839405,
-0.017901279032230377,
0.002240988193079829,
0.012176775373518467,
-0.031116453930735588,
-0.023803288117051125,
0.009585216641426086,
-0.008653320372104645,
-0.02193949557840824,
0.011413508094847202,
0.0335482582449913,
-0.06322693079710007,
0.01842491701245308,
-0.006758465431630611,
-0.015939859673380852,
-0.03826986625790596,
0.0038673686794936657,
0.04064841940999031,
-0.04199745133519173,
0.023128774017095566,
0.0020146705210208893,
0.01730664074420929,
0.05417422577738762,
0.009247959591448307,
-0.01929468661546707,
-0.047251567244529724,
0.07100160419940948,
0.0771077424287796,
0.03390326723456383,
-0.00389177561737597,
-0.04171344265341759,
-0.03180871903896332,
0.00813412107527256,
0.023821039125323296,
0.014581955038011074,
-0.011191627942025661,
0.009061579592525959,
0.04025791212916374,
-0.004557415377348661,
-0.008293875493109226,
-0.029234910383820534,
-0.005498186685144901,
0.008151872083544731,
0.0161262396723032,
0.0024007419124245644,
-0.00844031572341919,
-0.06187789887189865,
-0.0076326727867126465,
0.046825557947158813,
0.022951269522309303,
-0.01565585471689701,
0.021761992946267128,
-0.07788876444101334,
-0.03255423530936241,
0.004779295530170202,
-0.012922292575240135,
0.012380905449390411,
-0.012203400954604149,
0.06610249727964401,
-0.016019737347960472,
0.02863139845430851,
-0.014954713173210621,
-0.05232818424701691,
0.02106972597539425,
-0.020998725667595863,
-0.030637193471193314,
-0.03866037353873253,
-0.009159207344055176,
-0.07156962156295776,
-0.02385653927922249,
-0.04206845164299011,
-0.0046106670051813126,
0.02442455291748047,
-0.03308674693107605,
0.05193767324090004,
-0.046861059963703156,
0.0003968878882005811,
0.011369132436811924,
0.011599887162446976,
0.004413193557411432,
-0.004663918167352676,
-0.015114466659724712,
0.006696338765323162,
0.04093242436647415,
-0.00035278924042358994,
-0.03897988051176071,
0.0016740846913307905,
-0.05197317525744438,
-0.006066199857741594,
0.038766875863075256,
-0.034027520567178726,
0.08932001888751984,
-0.020288709551095963,
-0.01606411300599575,
0.02706936188042164,
0.025596078485250473,
0.03844736889004707,
0.08101283013820648,
-0.03235898166894913,
-0.034560032188892365,
-0.018620170652866364,
-0.03908638283610344,
0.010712367482483387,
0.01110287569463253,
0.01067686639726162,
-0.040719419717788696,
-0.047251567244529724,
-0.048103589564561844,
0.029980428516864777,
0.005049989093095064,
-0.049381617456674576,
-0.022951269522309303,
0.0007094613392837346,
0.04590253904461861,
0.02541857399046421,
0.03731134533882141,
-0.021673239767551422,
-0.043346479535102844,
0.030477439984679222,
-0.03235898166894913,
-0.0756877139210701,
0.005697879008948803,
0.06130988523364067,
-0.04409199580550194,
0.10160329937934875,
0.018114285543560982,
0.04732257127761841,
0.013454804196953773,
0.0017417581984773278,
-0.04135843366384506,
0.050624143332242966,
-0.08939102292060852,
-0.021566737443208694,
0.022241253405809402,
0.012860165908932686,
-0.04590253904461861,
-0.009354461915791035,
-0.03044193796813488,
-0.032181479036808014,
0.003942808136343956,
-0.040861424058675766,
0.016862882301211357,
-0.06020935997366905,
-0.03773735463619232,
0.04760657623410225,
-0.04221045598387718,
-0.011058500036597252,
0.044056497514247894,
0.05491974204778671,
0.010153229348361492,
0.04068392142653465,
0.011901644058525562,
-0.03605106472969055,
-0.042529962956905365,
-0.01746639423072338,
0.05477773770689964,
0.013366051949560642,
-0.015753481537103653,
0.0009696157067082822,
-0.01381868775933981,
0.07866977900266647,
-0.03858937323093414,
0.010233106091618538,
0.03313999995589256,
-0.00036332852323539555,
0.07895378768444061,
0.041429437696933746,
-0.05626877397298813,
0.012167899869382381,
-0.0027269055135548115,
0.007335353642702103,
-0.024051794782280922,
-0.0366368293762207,
-0.06837454438209534,
-0.011679763905704021,
-0.057191792875528336,
-0.011795141734182835,
-0.03056619130074978,
0.004144718870520592,
-0.04025791212916374,
-0.037488847970962524,
-0.008094183169305325,
-0.03979640081524849,
-0.0019469971302896738,
-0.09443213790655136,
0.011564387008547783,
0.00270693632774055,
0.038198862224817276,
-0.0564107745885849,
-0.017004884779453278,
-0.021460235118865967,
-0.019170433282852173,
-0.047961585223674774,
-0.010268607176840305,
0.07448068261146545,
0.022170251235365868,
0.0549907423555851,
0.021992746740579605,
-0.026572350412607193,
-0.011768516153097153,
0.05051764100790024,
-0.019472191110253334,
0.0007616031798534095,
-0.04075492173433304,
-0.0633334293961525,
-0.02596883662045002,
-0.016028612852096558,
-0.028382891789078712,
0.028311889618635178,
0.018495919182896614,
-0.12077373266220093,
0.026288345456123352,
-0.01375656109303236,
-0.027566373348236084,
0.03477303683757782,
0.02958991937339306,
-0.0847049131989479,
-0.04260096326470375,
-0.042778465896844864,
-0.029962677508592606,
-0.004022684879601002,
-0.02861364744603634,
0.023217525333166122,
-0.025897836312651634,
-0.06340443342924118,
-0.048103589564561844,
0.06841004639863968,
0.04466000944375992,
-0.03937039151787758,
0.032589737325906754,
0.010951997712254524,
-0.018247412517666817,
0.00618157722055912,
-0.03132946044206619,
-0.012771413661539555,
0.07611372321844101,
-0.05587826296687126,
-0.004659480415284634,
-0.03823436424136162,
0.034986041486263275,
0.1319209784269333,
0.051192156970500946,
-0.07810176908969879,
-0.028542645275592804,
-0.0242825485765934,
0.04441150277853012,
-0.030140182003378868,
0.0028910967521369457,
0.031506963074207306,
0.02218800224363804,
0.013729935511946678,
-0.034400276839733124,
0.019507691264152527,
-0.04590253904461861,
-0.014928087592124939,
-0.06496647000312805,
-0.017413143068552017,
-0.07753375172615051,
-0.017075886949896812,
0.010872120968997478,
-0.04874260351061821,
0.004209063947200775,
0.0043200040236115456,
0.02572033181786537,
-0.042103953659534454,
-0.041961949318647385,
-0.01870892383158207,
-0.029660921543836594,
0.05211517959833145,
0.02850714512169361,
-0.03759535029530525,
-0.0054449355229735374,
-0.015132217667996883,
-0.03074369579553604,
-0.008271686732769012,
0.06560548394918442,
-0.03028218448162079,
-0.012948918156325817,
0.033583760261535645,
-0.0038207739125937223,
-0.06770002841949463,
-0.0030419749673455954,
-0.023270776495337486,
0.0035589553881436586,
-0.03560730442404747,
0.004004934336990118,
0.03716934099793434,
-0.032074976712465286,
0.023785537108778954,
0.023767787963151932,
-0.07405467331409454,
0.03566055744886398,
-0.011599887162446976,
-0.052434686571359634,
0.026856357231736183,
-0.02611084096133709,
-0.08406589925289154,
0.023714536800980568,
-0.025347573682665825,
0.007947742007672787,
0.03979640081524849,
0.002764625009149313,
0.015433973632752895,
-0.025507327169179916,
0.004246783442795277,
0.03132946044206619,
0.08861000090837479,
-0.04011590778827667,
0.04750007390975952,
-0.01507896650582552,
0.010756743140518665,
0.05002063140273094,
-0.019046179950237274,
-0.03186197206377983,
0.01929468661546707,
0.009194708429276943,
-0.00744185596704483,
-0.021389232948422432,
-0.026732103899121284,
0.0042379084043204784,
-0.0034635469783097506,
-0.047997087240219116,
0.07249263674020767,
-0.058327820152044296,
-0.05122765898704529,
0.06390144675970078,
-0.053073700517416,
0.00983372237533331,
-0.0016419121529906988,
0.03283824399113655,
0.024264799430966377,
0.013073170557618141,
0.021016474813222885,
0.004557415377348661,
-0.0325009860098362,
0.00309078861027956,
0.035944562405347824,
-0.03100995160639286,
-0.0032749490346759558,
0.0018881990108639002,
-0.0273711197078228,
-0.051050156354904175,
0.05903783440589905,
-0.05179567262530327,
0.025667080655694008,
0.05552325397729874,
-0.010375109501183033,
0.04746457189321518,
-0.03702733665704727,
-0.016516748815774918,
0.007801301311701536,
-0.0006556554581038654,
0.011626512743532658,
0.03993840515613556,
-0.01746639423072338,
0.017173513770103455,
-0.01284241583198309,
0.04075492173433304,
-0.04654155299067497,
-0.06446945667266846,
0.05318020284175873,
0.009398837573826313,
-0.04231695830821991,
-0.050624143332242966,
0.04171344265341759,
-0.08839699625968933,
-0.010889871045947075,
0.015229844488203526,
-0.030761444941163063,
0.021282730624079704,
-0.0266611035913229,
-0.05197317525744438,
0.01795453019440174,
0.04732257127761841,
0.013383802957832813,
-0.03844736889004707,
0.004297815728932619,
0.02401629276573658,
0.030228933319449425,
-0.03677883371710777,
0.03587356209754944,
-0.046151045709848404,
-0.03168446570634842,
0.001676303567364812,
-0.0020346397068351507,
0.08143883943557739,
0.04774858057498932,
0.008932889439165592,
0.0000879892977536656,
0.02804563380777836,
-0.012611660175025463,
0.060422368347644806,
0.06585399061441422,
-0.010738993063569069,
-0.022809265181422234,
0.03060169145464897,
0.005515937227755785,
-0.012043647468090057,
-0.0004947924171574414,
-0.03505704179406166,
0.05882482975721359,
0.03321100026369095,
0.0009074892732314765,
0.007397479843348265,
0.059712350368499756,
-0.036228571087121964,
-0.05935734137892723,
-0.007677048444747925,
0.020892223343253136,
-0.019880449399352074,
-0.013366051949560642,
0.05712079256772995,
-0.019631944596767426,
-0.012398655526340008,
0.03755984827876091,
0.025933336466550827,
0.0143955759704113,
0.028418391942977905,
-0.004428725223988295,
0.014546453952789307,
0.036228571087121964,
0.029110658913850784,
-0.021318232640624046,
0.01005560252815485,
0.03140046074986458,
0.04959462210536003,
-0.004253440070897341,
0.008258374407887459,
0.04955912008881569,
-0.02414054609835148,
-0.003476860001683235,
0.022170251235365868,
-0.004098123870790005,
0.011484509333968163,
-0.04302697256207466,
0.0528251938521862,
-0.006580961402505636,
0.013658934272825718,
0.005138741340488195,
0.05069514736533165,
0.01858467049896717,
0.07916679233312607
]
|
42,252 | flask_restful | __init__ |
:param fields: a dict of whose keys will make up the final
serialized response output
:param envelope: optional key that will be used to envelop the serialized
response
| def __init__(self, fields, envelope=None):
"""
:param fields: a dict of whose keys will make up the final
serialized response output
:param envelope: optional key that will be used to envelop the serialized
response
"""
self.fields = fields
self.envelope = envelope
| (self, fields, envelope=None) | [
-0.033155351877212524,
-0.006103474646806717,
-0.0051936679519712925,
-0.03183864802122116,
-0.035989925265312195,
-0.003479209030047059,
-0.04970559850335121,
0.011795478872954845,
0.00861344300210476,
0.004020978230983019,
0.01357851643115282,
0.020902685821056366,
-0.009363233111798763,
0.021359873935580254,
0.0008166540064848959,
0.01640394516289234,
-0.005833732895553112,
-0.0268644317984581,
0.0250539630651474,
-0.01769321784377098,
0.025145400315523148,
-0.013194477185606956,
-0.013953411020338535,
0.10255666077136993,
0.019165366888046265,
0.05043710023164749,
-0.004439305979758501,
-0.04571890830993652,
0.04860834404826164,
0.02893092669546604,
-0.020536934956908226,
-0.0609341636300087,
0.0143008753657341,
0.0501079261302948,
0.017354898154735565,
-0.017455479130148888,
-0.02936982735991478,
-0.0004260430869180709,
-0.1292565017938614,
0.0751984640955925,
0.002040206454694271,
0.003241470782086253,
-0.05559419468045235,
-0.04195167124271393,
0.031070571392774582,
0.0430489256978035,
0.016339939087629318,
0.05069312825798988,
-0.008526576682925224,
0.004699904005974531,
0.007008709013462067,
0.019201941788196564,
-0.0005580564611591399,
-0.025566013529896736,
-0.018854478374123573,
0.047401364892721176,
0.032021526247262955,
0.07739297300577164,
-0.0464869886636734,
0.010707369074225426,
-0.07033397257328033,
0.05548446998000145,
0.022292541339993477,
0.001444717519916594,
-0.034965820610523224,
0.031290020793676376,
-0.03112543374300003,
0.022274252027273178,
-0.008224831894040108,
-0.009820422157645226,
0.03291761502623558,
0.02254856564104557,
-0.06016608700156212,
0.04019606485962868,
0.04857176914811134,
0.011896060779690742,
-0.07475955784320831,
0.014794639311730862,
-0.009445526637136936,
-0.026004916056990623,
0.004542173817753792,
-0.02763250842690468,
-0.07216272503137589,
0.004208425525575876,
0.02763250842690468,
0.0022207959555089474,
0.006386931519955397,
-0.026334092020988464,
-0.010954250581562519,
0.06945616751909256,
-0.05859335511922836,
0.027120457962155342,
-0.021945076063275337,
0.04970559850335121,
-0.03374055400490761,
-0.03686773031949997,
-0.013843686319887638,
-0.021176999434828758,
0.0011538310209289193,
0.026919294148683548,
-0.03322850540280342,
-0.012179517187178135,
-0.09538793563842773,
0.03355767950415611,
0.0007892226567491889,
-0.04681616276502609,
-0.016870277002453804,
-0.05939800664782524,
0.07834392040967941,
-0.01054278016090393,
0.04257344827055931,
-0.012161229737102985,
-0.05083942785859108,
0.06488427519798279,
-0.0178852379322052,
0.0030448792967945337,
0.01322190836071968,
-0.001889333943836391,
0.00902948435395956,
-0.032698165625333786,
0.06199484318494797,
-0.043926727026700974,
-0.04484110698103905,
0.030284205451607704,
0.03688601776957512,
0.006597238592803478,
0.009248935617506504,
0.0022973751183599234,
0.02547457627952099,
-0.012572700157761574,
0.023005755618214607,
-0.01004901621490717,
0.0032254690304398537,
-0.03536814823746681,
0.010963394306600094,
-0.007753927260637283,
0.0356973260641098,
0.00905691646039486,
-0.05654514953494072,
0.042756322771310806,
0.00006589951954083517,
0.04180537164211273,
0.023920133709907532,
-0.027358194813132286,
-0.029863592237234116,
-0.006012036465108395,
0.01684284582734108,
-0.0215061753988266,
-0.049266695976257324,
-0.02006145752966404,
-0.007749355398118496,
-0.03295418992638588,
0.02792510949075222,
-0.011201133020222187,
-0.0031843220349401236,
-0.04714534059166908,
-0.021286724135279655,
-0.04615781083703041,
0.030265918001532555,
-0.04107386991381645,
-0.0033900572452694178,
-0.02905893884599209,
0.018744753673672676,
-0.06616440415382385,
0.02609635330736637,
0.013231052085757256,
0.003769524162635207,
-0.07212615013122559,
0.0036986598279327154,
0.02428588457405567,
-0.040342364460229874,
-0.0161113440990448,
-0.09399808198213577,
-0.0004237571556586772,
-0.047401364892721176,
0.03469150885939598,
0.05072970315814018,
0.019183654338121414,
-0.06894411891698837,
0.015324978157877922,
0.012975026853382587,
-0.029625853523612022,
-0.008133393712341785,
0.030174480751156807,
0.05069312825798988,
-0.041659072041511536,
0.029570991173386574,
0.03257014974951744,
0.022658292204141617,
0.015215253457427025,
0.044255904853343964,
0.01624849997460842,
-0.014803783036768436,
-0.030540231615304947,
-0.032442137598991394,
-0.007145865820348263,
0.00892433151602745,
-0.05617939680814743,
0.007365316152572632,
0.02399328351020813,
-0.055959947407245636,
0.024779649451375008,
-0.011009113863110542,
-0.0393182635307312,
0.006606382317841053,
0.06974876672029495,
0.025236837565898895,
-0.03472808375954628,
-0.05797157809138298,
-0.035989925265312195,
0.030320780351758003,
-0.038147859275341034,
0.02503567561507225,
-0.01964084431529045,
-0.009006625041365623,
0.024157872423529625,
0.023536095395684242,
-0.028217710554599762,
0.006176624912768602,
-0.01900077983736992,
0.093120276927948,
0.014986658468842506,
-0.02218281477689743,
-0.0607878640294075,
-0.05884937942028046,
0.019604269415140152,
0.011868628673255444,
-0.023810409009456635,
-0.05537474527955055,
-0.08880440890789032,
-0.04473138228058815,
0.047840267419815063,
-0.011795478872954845,
0.000989242922514677,
-0.0011784048983827233,
-0.009610114619135857,
0.0001950197183759883,
-0.023371506482362747,
-0.007136721629649401,
-0.04681616276502609,
0.09633889049291611,
0.008009953424334526,
-0.005605138372629881,
-0.01776636764407158,
-0.022420553490519524,
-0.003070024773478508,
0.009710696525871754,
0.030924269929528236,
-0.0076762051321566105,
-0.003908966667950153,
-0.01234410610049963,
-0.06828576326370239,
-0.020646659657359123,
0.019421393051743507,
0.07296738028526306,
-0.01562672294676304,
-0.00010208175081061199,
0.019183654338121414,
0.03759923204779625,
-0.023170342668890953,
0.0069629899226129055,
-0.02428588457405567,
-0.042134545743465424,
0.029772154986858368,
0.030558519065380096,
0.018205270171165466,
0.004411874804645777,
-0.026260942220687866,
0.0005749152624048293,
0.017528630793094635,
0.15961386263370514,
0.012938451953232288,
0.004439305979758501,
-0.008352844975888729,
-0.048535194247961044,
-0.02291431836783886,
0.023481231182813644,
-0.04915697127580643,
-0.028382299467921257,
0.04626753553748131,
0.051388055086135864,
-0.04443877935409546,
0.04827916994690895,
0.01234410610049963,
0.05647199600934982,
-0.044219329953193665,
-0.029205240309238434,
0.10299555957317352,
-0.015818743035197258,
-0.0609341636300087,
0.03683115541934967,
0.037818681448698044,
0.012764719314873219,
-0.016934284940361977,
-0.019512830302119255,
-0.03257014974951744,
-0.04374385252594948,
0.004782197996973991,
0.024212734773755074,
-0.042866051197052,
0.018360713496804237,
-0.0012344105634838343,
0.07819762080907822,
0.004279289860278368,
-0.005353684537112713,
-0.0030471652280539274,
0.009171213023364544,
0.04337810352444649,
0.013468790799379349,
-0.016723977401852608,
0.011155414395034313,
0.10058160126209259,
-0.029973316937685013,
-0.028162848204374313,
-0.03748950734734535,
0.05186353251338005,
0.04864491894841194,
0.0025808324571698904,
0.0027317048516124487,
0.06766398996114731,
-0.01751948706805706,
-0.03209467604756355,
0.034910958260297775,
-0.024194447323679924,
0.045974936336278915,
-0.023152055218815804,
0.009066060185432434,
0.011548596434295177,
0.011091407388448715,
-0.01967741921544075,
-0.03460007160902023,
-0.034563496708869934,
-0.02399328351020813,
-0.015663297846913338,
-0.03727005422115326,
-0.025529438629746437,
-0.018836190924048424,
-0.06250689178705215,
-0.030156193301081657,
-0.029955029487609863,
-0.004699904005974531,
-0.06389674544334412,
-0.020189469680190086,
-0.000034378477721475065,
-0.036300815641880035,
-0.025950053706765175,
0.009728983975946903,
-0.03189351037144661,
0.013551085256040096,
-0.01182291004806757,
-0.04571890830993652,
-0.01326762791723013,
0.1072382777929306,
0.10094735026359558,
0.04370727762579918,
-0.05950773134827614,
-0.04721849039196968,
-0.01126513909548521,
-0.004368441645056009,
0.029845304787158966,
0.031710635870695114,
0.0006086329813115299,
-0.03306391462683678,
0.009911859408020973,
0.003840388497337699,
-0.017044009640812874,
0.00932665728032589,
-0.019933445379137993,
0.016394801437854767,
0.006080614868551493,
-0.019823718816041946,
-0.06656673550605774,
-0.06601810455322266,
0.01832413859665394,
0.018168695271015167,
0.006853264756500721,
-0.04985189810395241,
0.038147859275341034,
-0.07223587483167648,
-0.041000720113515854,
-0.017300035804510117,
-0.020555222406983376,
-0.012792151421308517,
-0.006350356619805098,
-0.002381955273449421,
-0.011749760247766972,
0.03118029609322548,
0.03156433627009392,
0.036264240741729736,
0.05219270661473274,
-0.0030471652280539274,
-0.019933445379137993,
-0.045243434607982635,
-0.019512830302119255,
-0.030339067801833153,
-0.023152055218815804,
-0.021615900099277496,
-0.005682860501110554,
-0.0019487685058265924,
-0.04586521163582802,
0.037782106548547745,
-0.03353939205408096,
-0.02368239499628544,
0.029461264610290527,
0.016065625473856926,
0.003682658076286316,
0.044146180152893066,
-0.03231412544846535,
0.06298237293958664,
-0.01359680388122797,
0.06060498580336571,
-0.047035615891218185,
-0.01591932401061058,
-0.08324499428272247,
0.012792151421308517,
0.01682455837726593,
0.008169969543814659,
0.042061395943164825,
0.02145131304860115,
-0.017629211768507957,
0.02077467180788517,
0.06309209764003754,
0.02503567561507225,
0.03284446522593498,
0.006921843159943819,
-0.017007434740662575,
-0.0608610138297081,
-0.036264240741729736,
0.06005635857582092,
0.00006604239752050489,
0.006258918903768063,
0.023792121559381485,
-0.04912039637565613,
-0.05628912150859833,
0.05307051166892052,
0.0395011380314827,
-0.016486238688230515,
-0.039940040558576584,
-0.022127952426671982,
0.048791222274303436,
0.004647327121347189,
-0.02110384963452816,
0.012261811643838882,
-0.04941299930214882,
0.04981532320380211,
0.0003934683627448976,
-0.0538020133972168,
0.011868628673255444,
0.043451253324747086,
-0.03785525634884834,
0.0966314896941185,
-0.004965073429048061,
0.03800155967473984,
-0.018241845071315765,
-0.029516128823161125,
-0.07966063171625137,
0.0286383256316185,
-0.023700682446360588,
-0.005125090014189482,
-0.030503656715154648,
-0.01612963154911995,
-0.033082202076911926,
0.019165366888046265,
0.008288837969303131,
-0.01666911505162716,
0.06389674544334412,
-0.035989925265312195,
0.03291761502623558,
-0.046340685337781906,
-0.014940939843654633,
0.00509765837341547,
0.0393182635307312,
-0.0499982014298439,
0.02404814586043358,
0.027833672240376472,
0.007091003004461527,
0.020244333893060684,
-0.03725176677107811,
-0.07373546063899994,
-0.05650857090950012,
-0.012719000689685345,
0.0027111314702779055,
0.017656642943620682,
-0.00842142291367054,
0.00984785333275795,
-0.04791341722011566,
0.013258484192192554,
-0.028455449268221855,
-0.021945076063275337,
0.020226046442985535,
0.02046378329396248,
0.04860834404826164,
-0.015434703789651394,
-0.01892762817442417,
0.05219270661473274,
0.03979374095797539,
0.024871086701750755,
0.047840267419815063,
-0.022438840940594673,
-0.02145131304860115,
-0.009020340628921986,
-0.04370727762579918,
-0.007557335775345564,
-0.051022302359342575,
-0.014383168891072273,
-0.03514869883656502,
-0.018763041123747826,
0.016522813588380814,
0.008645446039736271,
0.025181975215673447,
-0.02108556032180786,
-0.0014115712838247418,
-0.03745293244719505,
0.0071687251329422,
-0.027065593749284744,
0.05190010741353035,
-0.06945616751909256,
0.0074613261967897415,
-0.016934284940361977,
0.0037672382313758135,
0.03906223550438881,
0.0859515517950058,
0.029644140973687172,
-0.007758499123156071,
-0.009463814087212086,
0.04195167124271393,
-0.013285915367305279,
-0.010506205260753632,
0.0267912819981575,
0.031344883143901825,
-0.011374864727258682,
-0.071321502327919,
-0.04191509634256363,
0.014456319622695446,
-0.00388839328661561,
0.0787828266620636,
-0.07282108068466187,
0.006290921941399574,
0.020975835621356964,
-0.013935123570263386,
0.011009113863110542,
0.05610624700784683,
-0.022402266040444374,
-0.03730662912130356,
-0.005431406665593386,
-0.0074613261967897415,
0.021012410521507263,
0.04257344827055931,
0.01644052006304264,
-0.010835381224751472,
-0.004928498528897762,
-0.04403645545244217,
0.04685273766517639,
0.0037260912358760834,
-0.023060617968440056,
0.017025722190737724,
0.0014904364943504333,
-0.041000720113515854,
0.038842786103487015,
-0.00483248895034194,
0.009564395993947983,
0.03247871249914169,
-0.04004976525902748,
0.004363869782537222,
-0.012993314303457737,
0.04963244870305061,
0.08053842931985855,
0.01826927624642849,
-0.04794999212026596,
0.015270115807652473,
-0.011063976213335991,
0.03902566060423851,
-0.02574888989329338,
0.061336491256952286,
0.02829086221754551,
0.03112543374300003,
0.03368569165468216,
0.019147079437971115,
0.03289932757616043,
-0.03150947391986847,
0.0429026260972023,
-0.008060243912041187,
-0.023846983909606934,
-0.078709676861763,
-0.016330795362591743,
-0.015324978157877922,
0.0019464825745671988,
-0.015946755185723305,
0.06656673550605774,
0.02401157096028328,
-0.02541971392929554,
-0.04250029847025871,
-0.030704820528626442,
0.0160381942987442,
0.018497871235013008,
0.03008304350078106,
-0.00435015419498086,
-0.041732221841812134,
-0.0047044758684933186,
-0.018744753673672676,
0.0012801294215023518,
0.06689590960741043,
-0.040598392486572266,
0.0077127800323069096,
0.02573060244321823,
-0.011557740159332752,
-0.04732821509242058,
0.07007794827222824,
0.019896870478987694,
0.04045209288597107,
-0.011146270669996738,
-0.04041551798582077,
-0.004619895946234465,
-0.03300905227661133,
0.0024962525349110365,
-0.0321861132979393,
-0.030887695029377937,
0.0232434943318367,
0.004014120437204838,
-0.012682425789535046,
0.04250029847025871,
-0.004251858685165644,
-0.023152055218815804,
0.0751984640955925,
-0.05976375937461853,
-0.01267328206449747,
0.043524403125047684,
-0.06184853985905647,
-0.010844525881111622,
-0.03116200864315033,
0.02329835668206215,
0.013331633992493153,
0.02399328351020813,
-0.06762741506099701,
0.017254317179322243,
0.04220769926905632,
0.014246012084186077,
0.002187649952247739,
0.03648369014263153,
0.00419242400676012,
0.014959227293729782,
0.021195286884903908,
-0.0055091287940740585,
-0.006597238592803478,
-0.05500899255275726,
0.011274282820522785,
-0.00697213364765048,
-0.07907542586326599,
0.03118029609322548,
-0.03509383648633957,
-0.01931166835129261,
0.0608244389295578,
-0.012636706233024597,
-0.00914378184825182,
-0.0358070507645607,
-0.007703636307269335,
-0.012353249825537205,
0.06045868620276451,
0.0338868573307991,
0.009619258344173431,
-0.02938811480998993,
-0.01593761146068573,
0.0681760385632515,
-0.05526501685380936,
0.01464833877980709,
0.014172862283885479,
0.00348606682382524,
-0.0536557137966156,
0.007859081029891968,
0.03368569165468216,
-0.017720649018883705,
0.04985189810395241,
0.02829086221754551,
0.0340331569314003,
-0.012124654836952686,
0.004295291379094124,
-0.013295059092342854,
-0.024944236502051353,
0.04334152489900589,
0.025218550115823746,
0.01759263686835766,
0.02752278372645378,
-0.010634218342602253,
-0.015306690707802773,
-0.015617579221725464,
-0.007497901096940041,
0.0250539630651474,
0.03470979630947113,
-0.022073090076446533,
-0.053911738097667694,
0.012252667918801308,
-0.07973378151655197,
-0.04330494999885559,
-0.009674121625721455,
0.005289677996188402,
-0.021652474999427795,
0.004823344759643078,
-0.052119556814432144,
0.031363170593976974,
0.019439680501818657,
0.043195225298404694,
-0.0035683608148247004,
0.0098661407828331,
0.025163687765598297,
-0.026187792420387268,
0.014236868359148502,
0.02152446284890175,
-0.025492863729596138,
0.03322850540280342,
0.009354089386761189,
0.03150947391986847,
0.09794819355010986,
0.05248530954122543,
-0.06279949098825455,
0.01178633514791727,
0.057496100664138794,
-0.000006652458523603855,
0.0858784019947052,
-0.019073929637670517,
0.007845364511013031,
0.009939290583133698,
0.04271974787116051,
-0.012490406632423401,
-0.00807395949959755,
0.023097192868590355,
-0.033813707530498505,
-0.006743539124727249,
0.03571561351418495,
0.00743389455601573,
-0.019604269415140152,
0.00690812710672617,
0.00024402467533946037,
-0.0572400763630867,
-0.024541910737752914,
-0.0269010066986084,
-0.06740795820951462,
-0.011237707920372486,
0.007081859279423952,
0.06111703813076019,
0.048132866621017456,
0.025584302842617035,
0.005061083473265171,
0.05786185339093208,
0.033466242253780365,
-0.03556931018829346,
0.003152318764477968,
0.071687251329422,
-0.005271390080451965,
-0.021048985421657562,
0.000008273158528027125,
-0.003652940969914198,
0.04685273766517639,
-0.023005755618214607,
0.023462943732738495,
-0.02896750159561634,
-0.0340331569314003,
0.010158741846680641,
0.03611793741583824,
0.0018653315491974354,
-0.008453426882624626,
-0.060348961502313614,
-0.009171213023364544,
0.010222747921943665,
0.002743134507909417,
0.03368569165468216,
0.08163568377494812,
0.07260163128376007,
0.01054278016090393
]
|
42,253 | flask_restful | marshal_with_field |
A decorator that formats the return values of your methods with a single field.
>>> from flask_restful import marshal_with_field, fields
>>> @marshal_with_field(fields.List(fields.Integer))
... def get():
... return ['1', 2, 3.0]
...
>>> get()
[1, 2, 3]
see :meth:`flask_restful.marshal_with`
| class marshal_with_field(object):
"""
A decorator that formats the return values of your methods with a single field.
>>> from flask_restful import marshal_with_field, fields
>>> @marshal_with_field(fields.List(fields.Integer))
... def get():
... return ['1', 2, 3.0]
...
>>> get()
[1, 2, 3]
see :meth:`flask_restful.marshal_with`
"""
def __init__(self, field):
"""
:param field: a single field with which to marshal the output.
"""
if isinstance(field, type):
self.field = field()
else:
self.field = field
def __call__(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
resp = f(*args, **kwargs)
if isinstance(resp, tuple):
data, code, headers = unpack(resp)
return self.field.format(data), code, headers
return self.field.format(resp)
return wrapper
| (field) | [
0.014579057693481445,
-0.035679616034030914,
0.01512700691819191,
0.007325459737330675,
0.04714164510369301,
-0.00015846191672608256,
0.016770856454968452,
-0.047860268503427505,
0.010608667507767677,
-0.03549996018409729,
0.030307911336421967,
-0.01674390770494938,
0.039955418556928635,
-0.05411228537559509,
0.05202827975153923,
0.04627930000424385,
-0.008991765789687634,
0.01873808540403843,
0.050806622952222824,
0.004282542038708925,
0.06679597496986389,
0.006970639806240797,
0.03357764333486557,
0.028726940974593163,
0.007294020149856806,
0.04250653088092804,
0.03801513835787773,
-0.04002728313207626,
0.040781836956739426,
0.00152595026884228,
0.08307278156280518,
-0.05113000422716141,
0.02975097857415676,
0.014848540537059307,
0.02096581645309925,
-0.006260999944061041,
-0.06905964016914368,
0.03611078858375549,
-0.09514564275741577,
-0.010941030457615852,
-0.009378025308251381,
-0.0392727293074131,
-0.0512377955019474,
-0.042183149605989456,
0.0306312907487154,
0.0071547869592905045,
-0.0015596357407048345,
0.029427597299218178,
-0.01512700691819191,
0.0005232471157796681,
0.03761989623308182,
-0.003999584354460239,
0.013887383043766022,
-0.0419316329061985,
0.013043001294136047,
-0.00005923022763454355,
0.038769692182540894,
0.07311985641717911,
0.016770856454968452,
-0.004765366669744253,
-0.006561923306435347,
0.029697081074118614,
-0.009863096289336681,
-0.02804424986243248,
0.0029620728455483913,
0.03142177686095238,
-0.038625966757535934,
0.0030698662158101797,
0.0023332780692726374,
0.015800716355443,
-0.012045912444591522,
0.0001407770614605397,
-0.012953173369169235,
0.04480612277984619,
0.05274690315127373,
0.028062215074896812,
0.02066040225327015,
-0.0439797081053257,
0.0819229856133461,
-0.05637594684958458,
0.01629476808011532,
-0.009539715945720673,
-0.0506269671022892,
0.003750312142074108,
-0.012899276800453663,
-0.03718872368335724,
-0.042614322155714035,
-0.017004407942295074,
0.0153156453743577,
0.0525672473013401,
-0.07297613471746445,
-0.01043799426406622,
-0.04433901980519295,
0.030002497136592865,
-0.08371953666210175,
-0.05432787165045738,
0.005551360081881285,
-0.01036613155156374,
0.01947467401623726,
0.04998020455241203,
0.017444565892219543,
0.034062713384628296,
-0.05163303762674332,
0.03449388965964317,
0.02937370166182518,
-0.06022058054804802,
0.008618980646133423,
-0.017004407942295074,
0.02605007216334343,
0.020175332203507423,
0.01059070136398077,
-0.04257839173078537,
-0.028152042999863625,
-0.017687100917100906,
0.005816352088004351,
0.03314647078514099,
-0.005138152278959751,
-0.01800149865448475,
0.001789819565601647,
-0.03744024038314819,
0.06323879212141037,
-0.050447311252355576,
0.00029306329088285565,
-0.05964568257331848,
-0.0036537470296025276,
0.053681112825870514,
-0.01306096650660038,
0.016851700842380524,
0.045345090329647064,
0.019654329866170883,
-0.03018215112388134,
0.029032355174422264,
-0.041213009506464005,
0.016564251855015755,
0.04566847160458565,
-0.01037511508911848,
-0.013492140918970108,
0.03492506220936775,
-0.00020702507754322141,
0.05263911187648773,
-0.009440905414521694,
0.05986126884818077,
0.04405156895518303,
-0.005933128297328949,
-0.016698993742465973,
0.0019099642522633076,
0.07531165331602097,
0.05713050067424774,
0.011417117901146412,
0.024702653288841248,
0.004828245844691992,
0.01956450194120407,
0.06147816777229309,
-0.026319555938243866,
0.02258271723985672,
0.028223905712366104,
-0.026607004925608635,
-0.07523979246616364,
0.05015986040234566,
-0.06313100457191467,
0.005946602672338486,
-0.021864093840122223,
0.0004985444829799235,
-0.045416951179504395,
0.07739566266536713,
0.06302320957183838,
0.012854362837970257,
-0.04178790748119354,
0.027110040187835693,
0.011354237794876099,
-0.021486816927790642,
-0.034655578434467316,
0.012279464863240719,
0.02847542241215706,
0.02222340553998947,
0.07459302991628647,
-0.0045946938917040825,
-0.015818681567907333,
-0.0263375211507082,
0.05055510625243187,
0.023067787289619446,
-0.022025784477591515,
0.01942077837884426,
0.009360060095787048,
0.0445905365049839,
0.014857523143291473,
-0.015189887024462223,
-0.03440406173467636,
-0.004385843873023987,
0.047572821378707886,
0.05580104887485504,
0.024253515526652336,
0.011488979682326317,
-0.02628362365067005,
-0.09866689145565033,
-0.015432422049343586,
-0.03639823943376541,
-0.029697081074118614,
0.06237644702196121,
-0.0021783248521387577,
-0.02781069651246071,
0.03460168093442917,
-0.011336272582411766,
0.0445905365049839,
-0.013438243418931961,
0.03417050838470459,
0.044303085654973984,
-0.009342094883322716,
-0.1031942144036293,
-0.07031723111867905,
0.047860268503427505,
-0.0006293562473729253,
-0.017219996079802513,
-0.023265408352017403,
0.0029598271939903498,
-0.009755302220582962,
0.04782433807849884,
-0.015360559336841106,
0.007181735243648291,
-0.04584812745451927,
0.025924311950802803,
0.0004948952118866146,
-0.03542809560894966,
-0.035230476409196854,
0.012171671725809574,
-0.007837478071451187,
-0.007334442343562841,
-0.05475904792547226,
-0.03055942803621292,
-0.02021126262843609,
-0.07294020056724548,
0.01814522221684456,
-0.029355736449360847,
0.03823072463274002,
-0.04257839173078537,
0.007042502053081989,
0.05342959612607956,
-0.033326126635074615,
0.008493221364915371,
-0.021271230652928352,
0.03902120888233185,
0.05245945602655411,
-0.0062071033753454685,
-0.02781069651246071,
-0.002533144783228636,
-0.023804375901818275,
-0.014129918068647385,
0.043800052255392075,
-0.012450138106942177,
0.0030069868080317974,
-0.05917857587337494,
0.01777692884206772,
0.029553357511758804,
0.0007354653789661825,
0.0002130603970726952,
-0.028511354699730873,
-0.07114364206790924,
-0.006979622412472963,
0.01571987010538578,
-0.006997588090598583,
0.010572736151516438,
-0.06837694346904755,
0.017211012542247772,
-0.001643849303945899,
0.005659153684973717,
-0.053034354001283646,
-0.005376196000725031,
-0.004671047441661358,
0.034637611359357834,
0.03393695503473282,
0.01763320341706276,
-0.0033910006750375032,
0.011848291382193565,
-0.05105813965201378,
0.022331198677420616,
-0.018181152641773224,
0.01154287625104189,
-0.01668102853000164,
0.039739832282066345,
-0.019510604441165924,
0.0008449430461041629,
-0.040781836956739426,
-0.010806288570165634,
-0.02987673692405224,
0.0540044941008091,
0.005196540150791407,
0.008268652483820915,
0.0998166874051094,
-0.03099060244858265,
-0.034206438809633255,
0.07290426641702652,
0.028942527249455452,
0.007837478071451187,
-0.014363470487296581,
0.009117525070905685,
0.03289495408535004,
-0.026103967800736427,
-0.019438743591308594,
0.01829792931675911,
-0.0804857388138771,
-0.023301340639591217,
0.04081776738166809,
0.022924063727259636,
-0.004430757835507393,
0.01125542726367712,
-0.050878483802080154,
-0.0008123804582282901,
-0.014929385855793953,
-0.0664725974202156,
-0.0008696457371115685,
-0.027505282312631607,
0.09413956850767136,
-0.07753938436508179,
-0.04969275742769241,
0.010303252376616001,
0.021882060915231705,
-0.03440406173467636,
0.08213856816291809,
-0.016052233055233955,
0.04200349375605583,
0.02576262317597866,
-0.037979207932949066,
0.002371454844251275,
0.038410380482673645,
0.03108043037354946,
0.005551360081881285,
0.0373324491083622,
0.04839923605322838,
0.008268652483820915,
0.04042252525687218,
-0.007738668005913496,
-0.02227730304002762,
-0.023013891652226448,
-0.004228645469993353,
-0.026535142213106155,
-0.0126567417755723,
0.02944556437432766,
-0.07495234161615372,
-0.05526208132505417,
0.01453414373099804,
-0.02206171490252018,
-0.05069882795214653,
-0.026984281837940216,
-0.007994676940143108,
-0.06101106479763985,
0.0067820013500750065,
0.05253131687641144,
0.053609251976013184,
0.04760875180363655,
0.02702021226286888,
0.025780588388442993,
-0.08062946051359177,
0.03670365363359451,
0.04006321355700493,
0.0038985279388725758,
-0.028978459537029266,
-0.042255014181137085,
-0.04980055242776871,
0.02768493816256523,
0.027559179812669754,
0.015441404655575752,
-0.021001746878027916,
0.004260085057467222,
-0.007644348777830601,
0.023067787289619446,
0.002326540881767869,
-0.04329701513051987,
-0.01639357954263687,
0.035086750984191895,
0.033020712435245514,
-0.008883972652256489,
0.012665724381804466,
-0.013043001294136047,
-0.047860268503427505,
0.04067404195666313,
0.021828163415193558,
0.004832737613469362,
0.014444315806031227,
-0.07955152541399002,
-0.018989603966474533,
-0.04038659483194351,
-0.02863711304962635,
-0.002071654424071312,
-0.005263911094516516,
0.04706978425383568,
0.008699825964868069,
0.04462646692991257,
-0.014111952856183052,
-0.07107178121805191,
-0.006274474319070578,
-0.061370376497507095,
-0.027936456725001335,
-0.039308659732341766,
-0.002741994569078088,
-0.047716543078422546,
-0.08249787986278534,
-0.024738585576415062,
-0.017085254192352295,
0.06230458617210388,
-0.015180903486907482,
0.07674890011548996,
-0.03594909980893135,
-0.019438743591308594,
0.021001746878027916,
-0.0076892622746527195,
0.021756300702691078,
0.01816318742930889,
-0.024972137063741684,
-0.004120851866900921,
0.042758047580718994,
0.04699792340397835,
-0.0266429353505373,
0.03431423380970955,
-0.08098877221345901,
0.06690376996994019,
0.004922565072774887,
0.0008977169054560363,
0.07955152541399002,
-0.009063628502190113,
0.00967445783317089,
0.025493139401078224,
0.0006922357133589685,
0.03440406173467636,
0.09392397850751877,
-0.04839923605322838,
-0.011776428669691086,
0.008753722533583641,
0.012773517519235611,
0.017983531579375267,
0.0753835141658783,
0.02443317137658596,
-0.006238542962819338,
-0.028906596824526787,
-0.07638958841562271,
0.034278299659490585,
-0.031008567661046982,
0.015037178993225098,
-0.03515861555933952,
-0.009979872032999992,
0.0035437080077826977,
0.050591036677360535,
0.04627930000424385,
0.01288131158798933,
-0.03400881588459015,
0.0003059760492760688,
-0.034727439284324646,
-0.051704902201890945,
0.0330386757850647,
0.061442237347364426,
-0.04423122480511665,
0.057022709399461746,
0.0014215254923328757,
0.063202865421772,
0.02576262317597866,
0.015082092955708504,
-0.04196756333112717,
0.019582467153668404,
-0.08012642711400986,
0.018414705991744995,
0.03541013225913048,
0.04002728313207626,
-0.009198370389640331,
-0.002726274775341153,
-0.01354603748768568,
-0.032948847860097885,
-0.02058853954076767,
-0.04516543447971344,
0.018845878541469574,
-0.05777726322412491,
-0.019833985716104507,
0.016133079305291176,
-0.008892955258488655,
-0.019025534391403198,
0.005699575878679752,
0.057382021099328995,
0.04160825163125992,
0.02887066639959812,
0.009270232170820236,
-0.0664725974202156,
-0.05669932812452316,
0.00009095067798625678,
-0.006247525569051504,
0.0026207270566374063,
-0.03736837953329086,
0.0026207270566374063,
0.011471014469861984,
0.0216844379901886,
0.03492506220936775,
-0.011075771413743496,
0.02243899181485176,
0.009683440439403057,
0.034727439284324646,
0.007801547180861235,
-0.04096149280667305,
-0.020911918953061104,
0.009836147539317608,
-0.007716211024671793,
-0.03312850371003151,
-0.03275122866034508,
0.007159278262406588,
-0.004585710819810629,
-0.08630657941102982,
0.014085004106163979,
0.014444315806031227,
-0.0010588455479592085,
-0.048686686903238297,
0.01246810331940651,
0.0029980039689689875,
-0.011147634126245975,
-0.019456708803772926,
-0.057525742799043655,
0.005686101969331503,
0.02840356156229973,
0.03172719106078148,
-0.06460417807102203,
-0.0010386343346908689,
-0.0015865841414779425,
0.004868668504059315,
-0.005210014525800943,
-0.01017749309539795,
-0.023193545639514923,
0.016636114567518234,
0.026211760938167572,
0.035769443958997726,
-0.02369658276438713,
0.04423122480511665,
0.01288131158798933,
-0.02714597061276436,
-0.02141495607793331,
0.02818797342479229,
0.008502203971147537,
0.017552359029650688,
-0.0009965274948626757,
-0.00814738404005766,
0.007662313990294933,
0.07559910416603088,
-0.10420028865337372,
0.017291856929659843,
0.03018215112388134,
-0.02975097857415676,
0.048974134027957916,
0.08451002836227417,
-0.044770192354917526,
-0.0013530317228287458,
-0.008744739927351475,
-0.04922565072774887,
-0.00039103179005905986,
-0.013366381637752056,
0.04886634275317192,
-0.06424486637115479,
-0.0865221694111824,
-0.0013126091798767447,
0.019582467153668404,
0.0062071033753454685,
-0.022528819739818573,
0.03239191696047783,
0.003355069551616907,
0.0031215171329677105,
0.02944556437432766,
-0.011533893644809723,
-0.028313733637332916,
0.024109790101647377,
-0.024990102276206017,
0.005978042259812355,
-0.04329701513051987,
0.051920488476753235,
0.07373068481683731,
0.009656491689383984,
-0.053034354001283646,
-0.06676004827022552,
-0.0040781837888062,
-0.008897447027266026,
0.016842719167470932,
-0.002795891370624304,
0.04473426192998886,
0.045129504054784775,
0.011965067125856876,
-0.023570822551846504,
0.007518589496612549,
-0.026966314762830734,
-0.014138900674879551,
-0.04969275742769241,
-0.03447592258453369,
-0.11835715174674988,
-0.04311735928058624,
-0.004107377491891384,
-0.027613075450062752,
0.017543375492095947,
-0.02170240506529808,
0.02605007216334343,
-0.02773883566260338,
-0.036200616508722305,
-0.007756633218377829,
0.006647259462624788,
0.027846628800034523,
0.013977210968732834,
-0.07825800776481628,
0.03506878763437271,
-0.021289195865392685,
-0.0026836064644157887,
-0.016061216592788696,
0.029032355174422264,
-0.043584465980529785,
-0.022834235802292824,
0.019528571516275406,
-0.037979207932949066,
-0.022241370752453804,
-0.01763320341706276,
0.015971388667821884,
-0.0126567417755723,
-0.020390918478369713,
0.0036133246030658484,
0.0067415786907076836,
0.008964817970991135,
0.024738585576415062,
0.023157615214586258,
-0.04304549843072891,
-0.017471512779593468,
0.012719620950520039,
-0.0526750423014164,
0.004385843873023987,
0.01472278218716383,
-0.02118140272796154,
0.0027509774081408978,
0.0034493887796998024,
-0.006458621006458998,
-0.0021334111224859953,
-0.015737837180495262,
-0.01113865152001381,
-0.033164434134960175,
-0.015692923218011856,
0.01055477000772953,
0.04038659483194351,
-0.004010812845081091,
-0.011111702769994736,
-0.026732763275504112,
-0.004909091163426638,
-0.0037233636248856783,
-0.0019515096209943295,
-0.008641437627375126,
-0.00017797139298636466,
-0.023337271064519882,
-0.05350145697593689,
0.009728354401886463,
-0.013788572512567043,
0.026678865775465965,
-0.026624970138072968,
-0.09974482655525208,
0.047357235103845596,
-0.05551360175013542,
-0.07603027671575546,
0.0778268352150917,
-0.05138152092695236,
0.0028385594487190247,
0.004931548144668341,
-0.008102470077574253,
0.013411295600235462,
-0.02242102660238743,
0.010689511895179749,
0.02597820945084095,
-0.013878400437533855,
-0.017812859266996384,
0.06029244139790535,
-0.08098877221345901,
-0.0432610847055912,
0.009530733339488506,
0.002375946147367358,
-0.024666722863912582,
0.06377775967121124,
-0.015468352474272251,
0.015324627980589867,
0.03415254130959511,
0.016591200605034828,
0.02574465610086918,
-0.02421758323907852,
0.01354603748768568,
0.015621060505509377,
0.02922997623682022,
0.0042443652637302876,
0.0399913527071476,
0.006238542962819338,
-0.03542809560894966,
-0.0399913527071476,
0.07373068481683731,
-0.033613573759794235,
-0.025870416313409805,
0.03011029027402401,
0.0005552482907660306,
-0.0017056060023605824,
-0.029427597299218178,
0.04257839173078537,
-0.07646144926548004,
0.004985444713383913,
-0.042255014181137085,
-0.06093920022249222,
-0.002977792639285326,
-0.012495051138103008,
-0.007792564574629068,
0.03542809560894966,
0.06155003234744072,
-0.019097397103905678,
-0.014390419237315655,
0.04042252525687218,
0.04304549843072891,
-0.0071772439405322075,
-0.020768195390701294,
0.04293770343065262,
-0.04538102075457573,
-0.024630792438983917,
-0.0004539112560451031,
0.014893454499542713,
0.10075090080499649,
0.02139698900282383,
-0.06636480242013931,
0.010491890832781792,
0.024289445951581,
0.01675289124250412,
0.049117859452962875,
0.02901438996195793,
0.03675755113363266,
0.03830258920788765,
0.018504533916711807,
0.012566913850605488,
-0.050519172102212906,
-0.0320146381855011,
-0.03483523428440094,
0.0028565251268446445,
0.03515861555933952,
-0.013366381637752056,
-0.03196074441075325,
0.05810064077377319,
0.018261998891830444,
-0.004430757835507393,
0.018414705991744995,
0.03912900388240814,
-0.04362039640545845,
-0.02146885171532631,
0.0432610847055912,
-0.004855194594711065,
-0.01324960496276617,
0.01335739903151989,
0.07240123301744461,
0.04160825163125992,
0.04987241327762604,
0.04035066440701485,
0.023858271539211273,
0.06715528666973114,
0.00970140565186739,
-0.025511104613542557,
0.032140400260686874,
0.018288947641849518,
0.011318307369947433,
-0.030595360323786736,
-0.02597820945084095,
0.045416951179504395,
-0.04433901980519295,
-0.008479746989905834,
0.05572918802499771,
-0.004239873494952917,
0.01250403467565775,
-0.046890128403902054,
0.02058853954076767,
-0.04548881575465202,
0.012477085925638676,
0.020175332203507423,
0.07947966456413269,
-0.012962155975401402,
0.05127372592687607
]
|
42,254 | flask_restful | __call__ | null | def __call__(self, f):
@wraps(f)
def wrapper(*args, **kwargs):
resp = f(*args, **kwargs)
if isinstance(resp, tuple):
data, code, headers = unpack(resp)
return self.field.format(data), code, headers
return self.field.format(resp)
return wrapper
| (self, f) | [
0.04052930697798729,
-0.061475858092308044,
-0.01510669570416212,
0.053712695837020874,
-0.017676930874586105,
-0.015526325441896915,
-0.012291674502193928,
-0.014293661341071129,
0.0038509834557771683,
-0.03874587640166283,
0.04427101090550423,
0.03762686252593994,
0.010787999257445335,
-0.06920405477285385,
0.043012119829654694,
0.045110270380973816,
-0.019757598638534546,
0.024565864354372025,
0.014800715260207653,
0.0003275630879215896,
0.03161215782165527,
0.0005830021691508591,
0.011277567595243454,
0.039934828877449036,
0.05238386616110802,
0.03584343194961548,
0.04329187050461769,
-0.04049433767795563,
0.06329425424337387,
0.013594277203083038,
0.03825630620121956,
-0.03815139830112457,
-0.008694217540323734,
0.047348298132419586,
-0.023674149066209793,
-0.00038083645631559193,
-0.1075652688741684,
0.01447724923491478,
-0.11504867672920227,
0.007623285986483097,
-0.02551003359258175,
-0.0658470094203949,
-0.021348698064684868,
-0.005708722397685051,
-0.008169679902493954,
0.009835087694227695,
0.018498707562685013,
0.025929663330316544,
-0.024793164804577827,
-0.034077487885951996,
0.01779058203101158,
-0.0005677031585946679,
-0.010464534163475037,
-0.044725608080625534,
0.01113769132643938,
0.025072917342185974,
0.03220663592219353,
0.06591694802045822,
0.030440689995884895,
-0.005809258669614792,
-0.051649510860443115,
0.03552870824933052,
-0.02584224008023739,
0.03843115270137787,
-0.01982753723859787,
-0.005560103338211775,
-0.0038684681057929993,
0.002489370061084628,
-0.017650704830884933,
0.02360421232879162,
0.02722352370619774,
0.02998609095811844,
-0.021471090614795685,
-0.0021965031046420336,
0.04413113370537758,
0.009607788175344467,
-0.009030796587467194,
-0.023744087666273117,
0.054237231612205505,
-0.023324457928538322,
0.003711106488481164,
0.007649512961506844,
-0.015919730067253113,
0.0046028210781514645,
-0.04108881205320358,
-0.05762924626469612,
0.008051658980548382,
-0.01336697768419981,
-0.009100735187530518,
0.08777269721031189,
-0.05255871266126633,
-0.03418239578604698,
-0.025457579642534256,
-0.0008764156373217702,
-0.07553347945213318,
-0.02330697327852249,
-0.0022970393765717745,
-0.010866679251194,
-0.0006698787910863757,
0.0510200671851635,
0.019198091700673103,
0.05713967606425285,
-0.016313131898641586,
0.00173425383400172,
0.06091634929180145,
-0.0673157125711441,
-0.011356248520314693,
-0.04101887345314026,
0.01070057600736618,
0.011749652214348316,
-0.017362209036946297,
-0.03524895757436752,
-0.0287796538323164,
0.029933637008070946,
0.02105145901441574,
0.02239777334034443,
-0.010027418844401836,
-0.029548976570367813,
-0.022974764928221703,
-0.014354857616126537,
0.05311821773648262,
-0.019932445138692856,
0.008104112930595875,
-0.050810251384973526,
-0.007378501817584038,
0.07784144580364227,
-0.012991058640182018,
-0.033185772597789764,
0.08350645750761032,
-0.027136100456118584,
-0.020911583676934242,
0.04399125650525093,
0.012379097752273083,
0.004659646190702915,
0.020456982776522636,
0.024618318304419518,
0.009424200281500816,
0.025772301480174065,
-0.0331508032977581,
0.055426184087991714,
-0.01223047822713852,
0.04378144070506096,
0.04059924557805061,
-0.014433538541197777,
0.012501489371061325,
0.01491436455398798,
0.03175203502178192,
0.06210530176758766,
0.027485793456435204,
0.0035537451039999723,
0.028902046382427216,
-0.004253129009157419,
0.05514643341302872,
0.02860480733215809,
-0.030405720695853233,
0.05259367823600769,
-0.0030947744380682707,
-0.03759189322590828,
0.04598449915647507,
0.012615139596164227,
0.03538883104920387,
-0.05773415416479111,
0.031437311321496964,
-0.00513173034414649,
0.06714086979627609,
0.03811642900109291,
0.00625511584803462,
-0.019914960488677025,
0.02087661437690258,
0.00439956272020936,
-0.010516987182199955,
0.00439956272020936,
-0.01619948260486126,
0.03206675872206688,
-0.016155771911144257,
0.08294694870710373,
0.011373733170330524,
-0.023324457928538322,
-0.020089806988835335,
0.018533676862716675,
-0.023691633716225624,
-0.02554500289261341,
-0.004987482447177172,
0.02912934496998787,
0.020124776288866997,
0.023149611428380013,
0.018149016425013542,
-0.025999601930379868,
0.010718060657382011,
0.04140353575348854,
0.027643153443932533,
-0.005297834053635597,
-0.009188157506287098,
-0.016627855598926544,
-0.0603218749165535,
-0.030580567196011543,
-0.01018477976322174,
-0.013428173959255219,
0.10141068696975708,
-0.04944645240902901,
-0.015412676148116589,
0.01104152575135231,
-0.01372541207820177,
0.06193045526742935,
-0.04140353575348854,
0.05035565048456192,
0.06161573529243469,
0.033378101885318756,
-0.10392846912145615,
-0.031839460134506226,
0.026803893968462944,
-0.025440094992518425,
-0.06609179079532623,
0.003149413736537099,
0.011653486639261246,
-0.018253924325108528,
0.06703595817089081,
-0.015832306817173958,
-0.00025981024373322725,
-0.005140472669154406,
0.030388236045837402,
-0.043047089129686356,
0.006862706039100885,
-0.04944645240902901,
0.04469063878059387,
-0.005695608910173178,
0.011539836414158344,
-0.041998010128736496,
-0.035773493349552155,
-0.02486310340464115,
-0.06595191359519958,
0.019792567938566208,
0.02640174701809883,
0.0427323654294014,
-0.04598449915647507,
-0.027171069756150246,
0.045424994081258774,
-0.049936018884181976,
-0.038920722901821136,
-0.009030796587467194,
0.033045895397663116,
-0.006097754463553429,
0.03309835121035576,
0.031437311321496964,
0.0006857241969555616,
-0.0497262068092823,
-0.010009934194386005,
0.06444823741912842,
-0.0160683486610651,
-0.0035275183618068695,
-0.06399364024400711,
0.04413113370537758,
0.0048563480377197266,
-0.006617921404540539,
0.0006425590836443007,
-0.03086032159626484,
-0.03292350471019745,
-0.04874706640839577,
0.06553228199481964,
-0.014258692041039467,
0.003315517446026206,
-0.039934828877449036,
0.012842439115047455,
-0.03138485923409462,
-0.016295649111270905,
-0.04643910005688667,
-0.026087025180459023,
-0.00663540605455637,
0.029094375669956207,
0.04003973677754402,
-0.01793920062482357,
0.011775879189372063,
0.012046890333294868,
-0.03295847401022911,
-0.033745281398296356,
-0.01543016079813242,
0.055635999888181686,
-0.02416371926665306,
0.021296244114637375,
-0.04157838225364685,
0.059377703815698624,
-0.01215179730206728,
-0.016505463048815727,
-0.011749652214348316,
0.043886348605155945,
0.0194778461009264,
0.026524139568209648,
0.09546592086553574,
0.003300218377262354,
-0.05315318703651428,
0.00931929238140583,
-0.01776435412466526,
0.04367653280496597,
-0.016085833311080933,
0.005324061028659344,
0.010516987182199955,
-0.022555135190486908,
-0.012361613102257252,
0.021628452464938164,
-0.07161692529916763,
-0.053048279136419296,
-0.02657659351825714,
0.03815139830112457,
0.007072520907968283,
0.03804649040102959,
-0.02895449846982956,
0.023744087666273117,
-0.0012687264243140817,
-0.06423842161893845,
-0.00001960187728400342,
-0.007317305542528629,
0.08378621190786362,
-0.04983111470937729,
-0.04343174770474434,
0.014634611085057259,
0.02895449846982956,
-0.0409839041531086,
0.08728312700986862,
-0.01965269073843956,
0.02932167612016201,
0.0038160141557455063,
-0.05413232371211052,
0.016689050942659378,
0.07126723229885101,
0.07067275792360306,
-0.03759189322590828,
-0.004698986653238535,
-0.0036826941650360823,
0.006644148379564285,
0.05192926526069641,
-0.01842876896262169,
-0.030912775546312332,
0.016645340248942375,
-0.017720643430948257,
-0.008694217540323734,
0.00043329026084393263,
0.022695012390613556,
-0.07847089320421219,
0.019617723301053047,
-0.006950128823518753,
-0.03850109130144119,
-0.04657897725701332,
-0.006132723763585091,
0.033378101885318756,
-0.03703238442540169,
0.01561374869197607,
0.0033548579085618258,
0.0489918515086174,
0.08007947355508804,
0.01077925693243742,
0.00889529101550579,
-0.09483647346496582,
0.049411483108997345,
0.044760577380657196,
0.03507411107420921,
0.0028019072487950325,
-0.0500059574842453,
-0.032836079597473145,
-0.008069143630564213,
0.03626306354999542,
0.012868666090071201,
-0.04832743853330612,
0.036787599325180054,
0.0262443870306015,
0.010787999257445335,
-0.016689050942659378,
-0.045110270380973816,
0.004143850412219763,
0.04161335155367851,
0.010176037438213825,
-0.02655910886824131,
-0.0029090004973113537,
0.003835684387013316,
-0.05623047798871994,
0.02019471488893032,
0.02210053615272045,
0.014075104147195816,
0.027520762756466866,
-0.0831567645072937,
-0.035441286861896515,
0.01741466298699379,
-0.01501053012907505,
0.0011813034070655704,
0.0009982615010812879,
0.0497262068092823,
0.0067403134889900684,
-0.005166699644178152,
0.0025308961048722267,
-0.050285711884498596,
0.02052692137658596,
-0.02982872910797596,
-0.024356048554182053,
-0.009205642156302929,
-0.01779058203101158,
-0.06025193631649017,
-0.029426584020256996,
-0.04294218122959137,
-0.02295728214085102,
0.009275580756366253,
-0.03031829744577408,
0.042662426829338074,
-0.04951639100909233,
-0.009546591900289059,
0.025107886642217636,
0.007020067423582077,
0.012396582402288914,
0.01828889362514019,
0.0469636395573616,
-0.024198688566684723,
0.024425987154245377,
0.004174448549747467,
-0.03843115270137787,
0.011225113645195961,
-0.047523144632577896,
0.008742300793528557,
0.05885316804051399,
-0.04276733472943306,
0.09036041796207428,
-0.025597456842660904,
0.019879991188645363,
0.02171587385237217,
-0.024968009442090988,
0.024041326716542244,
0.07357519865036011,
-0.03899066150188446,
-0.03727716952562332,
-0.015570037066936493,
-0.015779852867126465,
0.03587840124964714,
0.013839061371982098,
-0.010324656963348389,
-0.028849592432379723,
-0.04276733472943306,
-0.013393204659223557,
0.04885197430849075,
-0.019093183800578117,
-0.04059924557805061,
0.02346433512866497,
0.010315914638340473,
0.020124776288866997,
0.05532127618789673,
0.03783667832612991,
0.019914960488677025,
-0.04035446047782898,
0.0066397772170603275,
-0.029898667708039284,
-0.05640532448887825,
-0.002810649573802948,
0.023569243028759956,
-0.05605563148856163,
0.08819232881069183,
0.05808384343981743,
0.010551956482231617,
0.02846493013203144,
0.024198688566684723,
-0.0331508032977581,
0.031804490834474564,
-0.07917027175426483,
0.016435524448752403,
0.02795787714421749,
0.007531492039561272,
0.015194118022918701,
-0.014853168278932571,
-0.01811404712498188,
-0.028342537581920624,
-0.048572223633527756,
-0.014337372966110706,
-0.0041722627356648445,
-0.06791018694639206,
-0.03864096850156784,
-0.006207033526152372,
-0.03255632892251015,
-0.027800515294075012,
0.05685992166399956,
0.03640294075012207,
0.026331808418035507,
0.04710351675748825,
0.0019320484716445208,
-0.03710232302546501,
-0.020247168838977814,
-0.00146761373616755,
0.03465447947382927,
0.0025134114548563957,
-0.028919531032443047,
0.018306376412510872,
-0.016505463048815727,
0.06119610369205475,
0.0018304191762581468,
0.002157162642106414,
0.021138882264494896,
-0.0089783426374197,
0.048187561333179474,
0.04357162490487099,
-0.06937889754772186,
-0.032871048897504807,
-0.008558711968362331,
0.008834094740450382,
-0.03072044439613819,
-0.03496920317411423,
-0.03601827844977379,
-0.007881184108555317,
-0.06304947286844254,
0.003807271830737591,
-0.018726008012890816,
0.03021339140832424,
-0.0479777455329895,
0.010455791838467121,
0.01587601751089096,
-0.018708523362874985,
-0.022904828190803528,
-0.07700218260288239,
0.01096284482628107,
0.014451023191213608,
0.021418636664748192,
-0.04357162490487099,
-0.02912934496998787,
-0.027310946956276894,
-0.015998410061001778,
-0.03605324774980545,
0.019547784700989723,
0.045424994081258774,
0.023901449516415596,
0.029199283570051193,
0.005367772653698921,
-0.019005760550498962,
0.004629048053175211,
0.04259248822927475,
-0.01585853286087513,
-0.01026346068829298,
-0.04570474848151207,
-0.05773415416479111,
-0.02344685047864914,
0.002244585659354925,
-0.028727199882268906,
0.02745082415640354,
0.04402622580528259,
-0.1253296136856079,
0.029548976570367813,
-0.06563719362020493,
-0.007597059011459351,
0.0359133705496788,
0.03808145970106125,
-0.06815497577190399,
-0.05053049698472023,
-0.021680904552340508,
-0.051124975085258484,
-0.002766938181594014,
0.00043984700459986925,
0.04916669800877571,
-0.028150208294391632,
-0.07343532145023346,
-0.051299817860126495,
0.06399364024400711,
0.006434333045035601,
-0.04385137930512428,
0.06287462264299393,
-0.00931929238140583,
0.019932445138692856,
0.021173851564526558,
-0.0404243990778923,
-0.0016446452355012298,
0.04161335155367851,
-0.02157599851489067,
0.015316510573029518,
-0.03881581500172615,
0.006858334876596928,
0.1142793521285057,
0.05790899693965912,
-0.07777150720357895,
-0.05367772653698921,
-0.024373533204197884,
0.03913053870201111,
-0.021855751052498817,
0.03657778725028038,
0.03297595679759979,
0.003278362797573209,
0.0015845419839024544,
-0.038186367601156235,
0.03399006277322769,
-0.008855950087308884,
-0.03325571119785309,
-0.039060600101947784,
0.015080468729138374,
-0.06371388584375381,
-0.04668388515710831,
0.024793164804577827,
-0.022834889590740204,
-0.002718855394050479,
-0.009039538912475109,
0.04608940705657005,
-0.031157558783888817,
-0.043466717004776,
-0.014704549685120583,
-0.009459169581532478,
0.045424994081258774,
0.03535386174917221,
-0.07455433905124664,
-0.0007791575626470149,
-0.024618318304419518,
-0.0031909397803246975,
-0.03601827844977379,
0.04755811393260956,
-0.054586924612522125,
-0.013506853953003883,
0.0344446636736393,
-0.016295649111270905,
-0.018708523362874985,
-0.009616530500352383,
-0.04692867025732994,
-0.01510669570416212,
-0.012658851221203804,
0.025772301480174065,
0.03211921080946922,
0.0019090998684987426,
0.052523743361234665,
0.024356048554182053,
-0.049236636608839035,
0.017318496480584145,
-0.011749652214348316,
-0.08042916655540466,
0.011592290364205837,
0.018218955025076866,
-0.07546354085206985,
0.04675382375717163,
-0.010237233713269234,
0.008090998977422714,
0.030947744846343994,
-0.01898827590048313,
-0.007824358530342579,
-0.03086032159626484,
-0.02414623461663723,
0.044410888105630875,
0.053397972136735916,
-0.006757798139005899,
-0.007181799970567226,
-0.011670971289277077,
0.019390422850847244,
0.041998010128736496,
-0.01898827590048313,
-0.02138366736471653,
0.01725730113685131,
0.0015626861713826656,
-0.019442876800894737,
-0.003614941379055381,
-0.019914960488677025,
0.005643154960125685,
-0.04413113370537758,
-0.07004331052303314,
0.05713967606425285,
-0.050600435584783554,
-0.06119610369205475,
0.07476415485143661,
-0.048886943608522415,
0.017851777374744415,
0.0042422013357281685,
-0.0031953109428286552,
0.037137292325496674,
-0.000823961803689599,
0.009179415181279182,
-0.005673753097653389,
-0.02757321670651436,
-0.014774488285183907,
0.06070653349161148,
-0.03547625616192818,
-0.02000238373875618,
-0.024093780666589737,
-0.011347506195306778,
-0.02517782524228096,
0.05430717021226883,
-0.0575593076646328,
0.02842996083199978,
0.02654162421822548,
-0.0016402741894125938,
0.04762805253267288,
-0.013253327459096909,
-0.02446095645427704,
0.03839618340134621,
0.012396582402288914,
0.0143898269161582,
0.034602027386426926,
0.036962445825338364,
-0.0025396381970494986,
-0.027328431606292725,
0.04255751892924309,
-0.017344724386930466,
-0.025142855942249298,
0.009948737919330597,
0.015736140310764313,
-0.029548976570367813,
-0.0507403127849102,
0.016479237005114555,
-0.0814082995057106,
-0.030458174645900726,
-0.01965269073843956,
-0.03881581500172615,
0.012291674502193928,
-0.016155771911144257,
-0.03465447947382927,
0.03930538147687912,
0.06944883614778519,
-0.025212794542312622,
-0.03189191222190857,
0.025789786130189896,
0.017021259292960167,
0.026471685618162155,
-0.049411483108997345,
0.03253884240984917,
-0.0547967404127121,
-0.05392250791192055,
-0.05126484856009483,
-0.004738327115774155,
0.08455552905797958,
0.022135505452752113,
0.03332564979791641,
0.018411284312605858,
0.014896879903972149,
-0.008042916655540466,
0.0386759378015995,
0.07067275792360306,
-0.0021473276428878307,
0.02535267174243927,
0.024408502504229546,
0.012186766602098942,
0.021138882264494896,
-0.00521041126921773,
-0.014092588797211647,
0.015080468729138374,
0.020946552976965904,
0.01249274704605341,
0.004445459693670273,
0.05462189391255379,
-0.00211017276160419,
-0.03178700432181358,
-0.04469063878059387,
0.029548976570367813,
-0.022660043090581894,
-0.0006917345453985035,
0.06798012554645538,
-0.005866083782166243,
0.0021036160178482533,
0.03881581500172615,
0.03016093745827675,
0.017834292724728584,
0.015456387773156166,
0.006591694429516792,
0.036647722125053406,
0.03348300978541374,
0.02778303064405918,
-0.04052930697798729,
0.01912815310060978,
0.03556367754936218,
0.01146115642040968,
-0.0007933637825772166,
0.024041326716542244,
0.068329818546772,
-0.039759982377290726,
0.007474666927009821,
0.03505662456154823,
-0.005411483813077211,
0.04776792973279953,
-0.01930299960076809,
0.06595191359519958,
0.019705144688487053,
0.03031829744577408,
-0.009275580756366253,
0.030737929046154022,
-0.01327081210911274,
0.07123226672410965
]
|
42,255 | flask_restful | __init__ |
:param field: a single field with which to marshal the output.
| def __init__(self, field):
"""
:param field: a single field with which to marshal the output.
"""
if isinstance(field, type):
self.field = field()
else:
self.field = field
| (self, field) | [
0.030518870800733566,
0.025013776496052742,
0.05432840809226036,
-0.0007042650831863284,
-0.01269612554460764,
-0.006679228972643614,
0.016627108678221703,
-0.009057601913809776,
0.0005265860236249864,
-0.050612468272447586,
0.03473370894789696,
0.038432445377111435,
0.004229891579598188,
-0.0003655727196019143,
0.0036062675062566996,
0.06165706738829613,
-0.07658963650465012,
0.04483211785554886,
0.03256607800722122,
0.02128063328564167,
0.010743536986410618,
0.03547345846891403,
0.04108177125453949,
0.05866366997361183,
0.034802522510290146,
0.05931739881634712,
0.006881368812173605,
-0.001894526882097125,
0.010124213993549347,
-0.0009596283780410886,
0.0031396246049553156,
-0.04049685597419739,
0.021005379036068916,
0.010855359956622124,
0.06389351189136505,
-0.01825283095240593,
-0.05057806149125099,
0.09262322634458542,
-0.13625110685825348,
0.007113615050911903,
0.026785729452967644,
-0.010777943767607212,
-0.0867740660905838,
-0.01370252575725317,
-0.010769342072308064,
-0.00569003215059638,
0.009943578392267227,
-0.01138006430119276,
-0.0582507885992527,
-0.017925966531038284,
0.020695718005299568,
0.006980288773775101,
0.0225880928337574,
0.009066203609108925,
-0.020248427987098694,
0.0433870330452919,
0.033856336027383804,
0.07001792639493942,
-0.00868342723697424,
0.04349025338888168,
-0.0909028872847557,
0.05439722165465355,
-0.006459885276854038,
-0.043593473732471466,
-0.009221034124493599,
-0.0016891610575839877,
-0.0648224949836731,
-0.001266601961106062,
0.00266653043217957,
0.06107214838266373,
0.023809537291526794,
0.010081205517053604,
-0.03282412886619568,
0.08725576102733612,
0.07672726362943649,
-0.003855717135593295,
-0.021917160600423813,
0.004950284957885742,
0.03857007250189781,
-0.04376550763845444,
0.01711740531027317,
0.008842559531331062,
-0.1135425865650177,
0.017788339406251907,
-0.0013225130969658494,
-0.0021912858355790377,
-0.017788339406251907,
-0.0024493371602147818,
-0.008240438997745514,
0.030243616551160812,
-0.05202315002679825,
0.0008574830717407167,
-0.022261228412389755,
0.07603912800550461,
-0.07411234080791473,
-0.03432082757353783,
0.014003586024045944,
-0.0445912703871727,
-0.03084573708474636,
0.08120015263557434,
0.0228805523365736,
-0.006111515685915947,
-0.05807875469326973,
0.008851161226630211,
0.02900497056543827,
-0.02745666168630123,
0.015052994713187218,
-0.01742706634104252,
0.02984793856739998,
0.01943986676633358,
0.03172311186790466,
-0.0398431271314621,
-0.06530418992042542,
0.02394716441631317,
-0.017513083294034004,
0.011414471082389355,
-0.010347859002649784,
-0.014949774369597435,
0.03537023812532425,
0.00004653660289477557,
0.05701214075088501,
-0.025116996839642525,
-0.06781589239835739,
0.005006195977330208,
0.047515854239463806,
0.03722820430994034,
0.020248427987098694,
-0.024807335808873177,
0.020317241549491882,
0.02134944684803486,
0.019422663375735283,
0.018803341314196587,
-0.04682771489024162,
-0.007397471461445093,
0.0025697611272335052,
0.007397471461445093,
-0.011724132113158703,
-0.0021590294782072306,
-0.05126619711518288,
0.041391436010599136,
-0.00543628167361021,
0.040806517004966736,
0.06330859661102295,
-0.043249402195215225,
0.011861760169267654,
0.051094163209199905,
0.02532343752682209,
0.04768788814544678,
-0.056083157658576965,
0.013453076593577862,
-0.023327840492129326,
-0.02009359747171402,
0.01206820085644722,
0.031224211677908897,
-0.02663089707493782,
0.02050647884607315,
-0.028093189001083374,
-0.030828533694148064,
0.024944962933659554,
-0.055842310190200806,
-0.012644515372812748,
-0.027852341532707214,
-0.006580309011042118,
-0.04961467161774635,
0.04097855091094971,
0.05873248353600502,
0.008687728084623814,
-0.050199586898088455,
0.028506070375442505,
0.011405869387090206,
-0.028213612735271454,
-0.05797553434967995,
-0.03578311949968338,
0.052883319556713104,
0.025959964841604233,
0.09165983647108078,
0.01072633359581232,
0.015723928809165955,
-0.03654006868600845,
0.051679082214832306,
0.013994984328746796,
0.0038084075786173344,
0.008588808588683605,
0.03592074662446976,
0.04417838901281357,
-0.012352057732641697,
0.014003586024045944,
-0.016024988144636154,
0.047825515270233154,
0.01729804091155529,
0.05023399367928505,
0.029641496017575264,
-0.039430245757102966,
-0.0885632187128067,
-0.0034062776248902082,
-0.016300242394208908,
-0.008008193224668503,
-0.02948666550219059,
-0.052573658525943756,
0.08821915090084076,
-0.03760668262839317,
0.025357844308018684,
-0.021487073972821236,
0.004294404294341803,
-0.011345657519996166,
0.03512938693165779,
0.05862926319241524,
0.0016977627528831363,
-0.035507865250110626,
-0.046518053859472275,
0.03870769962668419,
-0.060315199196338654,
0.017108803614974022,
0.004283652175217867,
0.01711740531027317,
-0.08966423571109772,
0.0023568689357489347,
-0.024342842400074005,
-0.014072399586439133,
0.03246285766363144,
0.07714014500379562,
0.040634483098983765,
-0.05357145890593529,
-0.06692131608724594,
0.01156069990247488,
-0.0178227461874485,
-0.05119738355278969,
-0.07975506782531738,
-0.031241415068507195,
-0.059592656791210175,
-0.04197635129094124,
0.0321015864610672,
-0.05611756443977356,
0.03767549619078636,
0.016377657651901245,
-0.03168870508670807,
0.03829481825232506,
-0.055911123752593994,
-0.06805673986673355,
-0.06110655516386032,
0.031361840665340424,
0.034510064870119095,
-0.021985974162817,
-0.03442404791712761,
-0.006730839144438505,
-0.008476986549794674,
-0.023517077788710594,
0.06447842717170715,
-0.04018719494342804,
0.023637501522898674,
-0.022244025021791458,
-0.032841332256793976,
-0.019697919487953186,
-0.006047002971172333,
0.02265690639615059,
-0.044075168669223785,
-0.028024375438690186,
-0.01890656165778637,
0.019285036250948906,
0.007397471461445093,
-0.005978189408779144,
-0.05260806530714035,
0.004447084851562977,
0.034441251307725906,
0.0288329366594553,
-0.057287395000457764,
-0.033030569553375244,
-0.024600893259048462,
0.008029697462916374,
0.04720618948340416,
0.0624140165746212,
0.014407866634428501,
0.025013776496052742,
0.018648510798811913,
-0.06399673223495483,
-0.048410430550575256,
-0.013831551186740398,
-0.0010633865604177117,
0.03781312331557274,
0.022502075880765915,
0.04483211785554886,
-0.01990436017513275,
0.022450465708971024,
-0.012481083162128925,
-0.03788193687796593,
-0.009900569915771484,
0.02234724536538124,
0.08106252551078796,
-0.04648364707827568,
-0.04531381279230118,
0.03750346228480339,
0.08250761032104492,
0.03602396696805954,
0.005268548149615526,
-0.012610108591616154,
0.005702934693545103,
-0.033323030918836594,
0.04355906695127487,
0.00209559197537601,
-0.09737136960029602,
0.006584609858691692,
0.004546004347503185,
0.011242436245083809,
0.04720618948340416,
-0.001316061825491488,
0.009969383478164673,
-0.03994634747505188,
-0.01340146642178297,
-0.03014039620757103,
0.04201075807213783,
-0.006502893753349781,
0.0992981567978859,
-0.04180431738495827,
0.03901736065745354,
0.040221601724624634,
0.046277206391096115,
0.04049685597419739,
0.02234724536538124,
-0.007397471461445093,
0.08133777976036072,
-0.006739440839737654,
-0.05298653990030289,
0.03733142837882042,
0.004079361446201801,
-0.021383853629231453,
0.013874560594558716,
-0.013814347796142101,
0.04173550382256508,
0.004533101804554462,
0.0034105784725397825,
-0.03430362418293953,
0.024996573105454445,
0.018562491983175278,
-0.007866265252232552,
-0.0404280424118042,
-0.04417838901281357,
0.014313247054815292,
-0.07858523726463318,
-0.04531381279230118,
-0.02823081612586975,
0.023620298132300377,
-0.00796518474817276,
-0.047515854239463806,
-0.02212360128760338,
0.0008203882025554776,
0.005049204453825951,
0.011913370341062546,
-0.01542286854237318,
0.05966147035360336,
0.02645886316895485,
-0.005401874426752329,
-0.044488050043582916,
0.02164190448820591,
0.044797711074352264,
0.021194616332650185,
-0.030759720131754875,
-0.016016386449337006,
0.006085710600018501,
-0.030742516741156578,
0.03636803478002548,
0.030948957428336143,
-0.004920179024338722,
-0.0031697305385023355,
-0.01269612554460764,
0.04266448691487312,
0.006021197885274887,
-0.01652388647198677,
0.0002427295403322205,
0.017108803614974022,
0.029331834986805916,
0.002311709802597761,
-0.023912757635116577,
-0.07466285675764084,
-0.05505095049738884,
-0.018029186874628067,
0.027628695592284203,
-0.00865332130342722,
0.045795511454343796,
-0.08780626952648163,
-0.03877651318907738,
-0.02159029431641102,
-0.019697919487953186,
0.004838462453335524,
0.024101994931697845,
-0.014321848750114441,
-0.004606216214597225,
0.03612718731164932,
0.02895336039364338,
0.004971789196133614,
0.036471255123615265,
-0.04060007631778717,
0.006545902229845524,
-0.027129797264933586,
-0.036884136497974396,
0.04428160935640335,
-0.029624292626976967,
-0.02539225108921528,
-0.017805542796850204,
0.013754135929048061,
0.0042320420034229755,
0.039430245757102966,
-0.07865405082702637,
-0.019113002344965935,
0.06929538398981094,
-0.020351648330688477,
0.015414266847074032,
0.0297275148332119,
-0.026493269950151443,
0.027508271858096123,
0.0034793922677636147,
0.049786705523729324,
0.01358210202306509,
-0.04066888988018036,
-0.0992981567978859,
0.030897347256541252,
-0.03413159027695656,
0.033907946199178696,
0.010648918338119984,
-0.0009972609113901854,
-0.009238237515091896,
-0.008214633911848068,
0.06272368133068085,
0.00440192548558116,
0.032548874616622925,
0.020644105970859528,
-0.008102811872959137,
0.009797348640859127,
0.016618505120277405,
0.03440684452652931,
0.0582507885992527,
0.02014520764350891,
0.056805700063705444,
-0.0261492021381855,
-0.048720091581344604,
0.048066362738609314,
-0.004825559910386801,
-0.012317650020122528,
-0.04906415939331055,
-0.011904768645763397,
0.049201786518096924,
0.021297836676239967,
0.008894169703125954,
0.02282894216477871,
-0.049201786518096924,
0.013607907108962536,
0.011079004034399986,
-0.0368497297167778,
0.06998351961374283,
0.004963187500834465,
-0.0017719524912536144,
0.07001792639493942,
0.008197430521249771,
0.08532897382974625,
-0.02128063328564167,
-0.014450875110924244,
-0.08526016026735306,
-0.0045503051951527596,
-0.06313656270503998,
0.027129797264933586,
-0.01280794758349657,
-0.03304777294397354,
-0.0059093753807246685,
0.004963187500834465,
-0.02169351652264595,
-0.032961755990982056,
0.03144785761833191,
-0.02360309474170208,
0.014003586024045944,
-0.0169453714042902,
-0.00823613815009594,
0.016670117154717445,
0.036643289029598236,
-0.012412269599735737,
-0.017667915672063828,
0.06272368133068085,
0.0005134146194905043,
-0.012868160381913185,
-0.03401116654276848,
-0.059420619159936905,
-0.09496289491653442,
-0.027060983702540398,
0.012524091638624668,
0.03939583897590637,
0.009341458790004253,
-0.012678922154009342,
0.0080253966152668,
0.021607497707009315,
-0.005083611235022545,
0.010829553939402103,
0.05546383559703827,
-0.04404076188802719,
0.10184425860643387,
-0.000566100119613111,
-0.04803195595741272,
0.0017913063056766987,
0.011990785598754883,
-0.017255032435059547,
0.04149465635418892,
-0.03469930216670036,
0.0059351809322834015,
0.003961088135838509,
-0.005264247301965952,
-0.04810076951980591,
-0.044384829699993134,
0.01718621887266636,
-0.05797553434967995,
0.006137320771813393,
0.025048183277249336,
-0.006825457792729139,
0.010717731900513172,
0.005948083475232124,
0.013814347796142101,
-0.03667769581079483,
0.013814347796142101,
-0.03960227966308594,
-0.0020525832660496235,
-0.026648100465536118,
-0.019697919487953186,
-0.0410129576921463,
-0.006356664467602968,
0.002825662028044462,
0.05057806149125099,
0.0004588475276250392,
-0.012446676380932331,
0.01289396546781063,
0.005939481779932976,
-0.011311249807476997,
0.004238493274897337,
0.02539225108921528,
0.00006824247975600883,
0.03172311186790466,
-0.07658963650465012,
-0.02026563137769699,
-0.006653423421084881,
0.011758538894355297,
0.04727500304579735,
-0.05006195977330208,
0.04531381279230118,
-0.005221238825470209,
-0.03956787288188934,
0.011397267691791058,
0.018459271639585495,
-0.020128004252910614,
-0.026820136234164238,
0.0321187898516655,
-0.016455072909593582,
-0.012145616114139557,
0.007332958746701479,
-0.0007757668499834836,
-0.025529878214001656,
-0.06788470596075058,
-0.050612468272447586,
0.0021912858355790377,
0.06110655516386032,
-0.013324050232768059,
0.03280692547559738,
-0.01760770194232464,
-0.010279044508934021,
0.06465046107769012,
0.015844352543354034,
0.005763146560639143,
0.0428021140396595,
-0.028437256813049316,
0.019663512706756592,
-0.003939583897590637,
0.008575906045734882,
0.05081890895962715,
0.014261636883020401,
-0.014012187719345093,
-0.012369261123239994,
0.03289294242858887,
0.0019310842035338283,
0.00312887248583138,
0.022158008068799973,
0.025409454479813576,
0.03285853564739227,
-0.028127595782279968,
0.03715939074754715,
-0.01162091176956892,
-0.08223235607147217,
-0.010442477650940418,
0.0026084689889103174,
-0.03588633984327316,
-0.05653044581413269,
-0.04417838901281357,
-0.06306774914264679,
-0.019130205735564232,
-0.020730124786496162,
-0.0089199747890234,
-0.011741335503757,
-0.004773949738591909,
-0.015663716942071915,
-0.04761907458305359,
0.030002769082784653,
0.0026278228033334017,
-0.013220829889178276,
0.0002897701342590153,
-0.026527676731348038,
0.014743332751095295,
-0.04510737210512161,
-0.03062209114432335,
0.036471255123615265,
-0.043421439826488495,
0.010029595345258713,
0.04624279960989952,
-0.03521540388464928,
-0.0175474900752306,
0.05302094668149948,
0.02057529240846634,
0.017581896856427193,
0.029039377346634865,
0.0021762328688055277,
0.04121939837932587,
-0.0000985836741165258,
-0.010072603821754456,
-0.03394235298037529,
-0.05511976405978203,
-0.02355148456990719,
0.01861410215497017,
-0.0045503051951527596,
-0.0068125552497804165,
0.050922129303216934,
0.003518099896609783,
0.0202140212059021,
-0.025959964841604233,
-0.005999693647027016,
0.015517487190663815,
-0.0636182576417923,
0.04810076951980591,
-0.04176991060376167,
0.011414471082389355,
-0.009169423952698708,
0.03346065804362297,
-0.05770028010010719,
-0.02229563519358635,
-0.016670117154717445,
-0.014554095454514027,
-0.00292028090916574,
0.008253341540694237,
0.011345657519996166,
-0.009401670657098293,
-0.021022582426667213,
-0.002563309855759144,
-0.02675132267177105,
-0.02408479154109955,
-0.057803500443696976,
0.017857152968645096,
-0.08608592301607132,
-0.015199223533272743,
-0.030398447066545486,
-0.036884136497974396,
0.050027552992105484,
-0.036471255123615265,
0.010064002126455307,
0.04404076188802719,
-0.00037632486782968044,
-0.004971789196133614,
0.022433262318372726,
0.043318215757608414,
0.009195229038596153,
-0.04001516103744507,
0.006855563726276159,
0.030467260628938675,
-0.04249245300889015,
0.012446676380932331,
-0.007539399899542332,
0.005135221406817436,
-0.045038558542728424,
-0.027250220999121666,
0.01111341081559658,
-0.01072633359581232,
0.03733142837882042,
0.018407661467790604,
-0.04727500304579735,
-0.05078450217843056,
-0.013917569071054459,
0.0228805523365736,
0.023396654054522514,
0.03715939074754715,
0.01907859556376934,
0.006808254402130842,
-0.03643684834241867,
-0.036712102591991425,
-0.012782142497599125,
-0.026837339624762535,
-0.008408172987401485,
0.013358457945287228,
0.02776632457971573,
0.02508259005844593,
-0.07920455932617188,
0.018596898764371872,
-0.05842282250523567,
-0.02009359747171402,
-0.027250220999121666,
-0.011870361864566803,
-0.04768788814544678,
0.004795453976839781,
-0.03440684452652931,
0.03416599705815315,
0.043834321200847626,
0.05498213693499565,
-0.02152148075401783,
0.011577903293073177,
0.035112183541059494,
-0.017633508890867233,
-0.0012773540802299976,
0.009762941859662533,
-0.005427679978311062,
0.05990231782197952,
0.013160618022084236,
0.03767549619078636,
0.08849440515041351,
-0.0028600690420717,
-0.05628959834575653,
-0.006666325964033604,
0.016549691557884216,
-0.03199836611747742,
0.121249720454216,
-0.02919420786201954,
-0.00048384626279585063,
0.04500415176153183,
-0.019302239641547203,
0.040875330567359924,
-0.005345963407307863,
0.044075168669223785,
-0.014244433492422104,
-0.04232041910290718,
0.003578311763703823,
0.01509600318968296,
-0.0017741029150784016,
0.05549824237823486,
0.02503097988665104,
-0.03822600468993187,
0.0036363734398037195,
0.02050647884607315,
-0.015052994713187218,
-0.027198610827326775,
0.024411655962467194,
0.011853158473968506,
0.02811039239168167,
-0.03850125893950462,
0.042113978415727615,
0.052401624619960785,
0.046277206391096115,
-0.007999591529369354,
0.026888949796557426,
0.07975506782531738,
0.02563309855759144,
-0.01854528859257698,
0.01212841272354126,
0.005922278389334679,
0.01464871410280466,
-0.019955970346927643,
0.007363064680248499,
0.042767707258462906,
-0.05030280724167824,
-0.007560904137790203,
0.025891151279211044,
-0.03554227203130722,
-0.015904564410448074,
-0.07363064587116241,
-0.03829481825232506,
-0.012979982420802116,
-0.0036320725921541452,
0.05126619711518288,
0.0558767169713974,
0.016033589839935303,
-0.0018085098126903176
]
|
42,258 | flask.helpers | make_response | Sometimes it is necessary to set additional headers in a view. Because
views do not have to return response objects but can return a value that
is converted into a response object by Flask itself, it becomes tricky to
add headers to it. This function can be called instead of using a return
and you will get a response object which you can use to attach headers.
If view looked like this and you want to add a new header::
def index():
return render_template('index.html', foo=42)
You can now do something like this::
def index():
response = make_response(render_template('index.html', foo=42))
response.headers['X-Parachutes'] = 'parachutes are cool'
return response
This function accepts the very same arguments you can return from a
view function. This for example creates a response with a 404 error
code::
response = make_response(render_template('not_found.html'), 404)
The other use case of this function is to force the return value of a
view function into a response which is helpful with view
decorators::
response = make_response(view_function())
response.headers['X-Parachutes'] = 'parachutes are cool'
Internally this function does the following things:
- if no arguments are passed, it creates a new response argument
- if one argument is passed, :meth:`flask.Flask.make_response`
is invoked with it.
- if more than one argument is passed, the arguments are passed
to the :meth:`flask.Flask.make_response` function as tuple.
.. versionadded:: 0.6
| def make_response(*args: t.Any) -> Response:
"""Sometimes it is necessary to set additional headers in a view. Because
views do not have to return response objects but can return a value that
is converted into a response object by Flask itself, it becomes tricky to
add headers to it. This function can be called instead of using a return
and you will get a response object which you can use to attach headers.
If view looked like this and you want to add a new header::
def index():
return render_template('index.html', foo=42)
You can now do something like this::
def index():
response = make_response(render_template('index.html', foo=42))
response.headers['X-Parachutes'] = 'parachutes are cool'
return response
This function accepts the very same arguments you can return from a
view function. This for example creates a response with a 404 error
code::
response = make_response(render_template('not_found.html'), 404)
The other use case of this function is to force the return value of a
view function into a response which is helpful with view
decorators::
response = make_response(view_function())
response.headers['X-Parachutes'] = 'parachutes are cool'
Internally this function does the following things:
- if no arguments are passed, it creates a new response argument
- if one argument is passed, :meth:`flask.Flask.make_response`
is invoked with it.
- if more than one argument is passed, the arguments are passed
to the :meth:`flask.Flask.make_response` function as tuple.
.. versionadded:: 0.6
"""
if not args:
return current_app.response_class()
if len(args) == 1:
args = args[0]
return current_app.make_response(args)
| (*args: 't.Any') -> 'Response' | [
-0.02179202251136303,
-0.04629412665963173,
-0.04963532090187073,
-0.04391816258430481,
0.043175674974918365,
0.01692872680723667,
-0.05746857076883316,
0.09095478057861328,
-0.00029438489582389593,
-0.05175141245126724,
0.07417455315589905,
0.0037217210046947002,
0.058693673461675644,
0.008399395272135735,
0.014896165579557419,
0.00398391205817461,
0.05323638767004013,
0.030961748212575912,
0.04703661426901817,
-0.05732007324695587,
0.0888015627861023,
0.0034896936267614365,
0.00011188075586687773,
-0.0005293127032928169,
-0.02569008432328701,
-0.03716152533888817,
-0.015285971574485302,
-0.012835760600864887,
0.05876792222261429,
-0.006241539493203163,
0.0035152165219187737,
-0.07350631058216095,
0.0014014460612088442,
0.02225607819855213,
0.022701570764183998,
0.04109670966863632,
-0.040465593338012695,
-0.0044270846992731094,
0.00042867078445851803,
0.008107041008770466,
-0.021773459389805794,
-0.038089632987976074,
0.02017711102962494,
-0.03374607861042023,
-0.018051739782094955,
0.002547662006691098,
-0.02849297598004341,
0.05423874780535698,
-0.013671060092747211,
0.01669669896364212,
0.06455933302640915,
-0.016492513939738274,
0.027639115229249,
-0.0331149622797966,
-0.011397190392017365,
0.02426079474389553,
0.016019178554415703,
0.06816039979457855,
-0.017903242260217667,
-0.007475926075130701,
0.023666804656386375,
0.04815034568309784,
0.003060442628338933,
-0.01755984127521515,
0.034711312502622604,
0.05494410917162895,
-0.018710697069764137,
-0.002754166256636381,
0.012882166542112827,
-0.014246487990021706,
0.0038794996216893196,
0.007717234548181295,
0.024669162929058075,
0.012316019274294376,
0.044883400201797485,
0.0036822762340307236,
-0.08093118667602539,
-0.04948682337999344,
0.049264077097177505,
-0.010580454021692276,
0.0016763986786827445,
-0.005123167298734188,
-0.03233535215258598,
-0.0027124013286083937,
0.02507753111422062,
-0.004222900606691837,
-0.03743995726108551,
-0.042655933648347855,
-0.0015151395928114653,
0.050749052315950394,
-0.058396678417921066,
-0.0184601079672575,
0.005123167298734188,
-0.003976951353251934,
-0.01380099542438984,
-0.034080199897289276,
0.0436582937836647,
0.026339761912822723,
0.01742062345147133,
-0.0069840275682508945,
-0.000444042612798512,
0.04480915144085884,
-0.01954599656164646,
0.04235893860459328,
0.011517845094203949,
-0.010914573445916176,
-0.005457286722958088,
-0.01993580162525177,
0.025634396821260452,
0.004167214035987854,
-0.04904133081436157,
-0.05015506222844124,
-0.030553380027413368,
-0.021773459389805794,
-0.013411189429461956,
-0.02045554481446743,
0.0002871340257115662,
-0.0162233617156744,
-0.049598198384046555,
-0.025300277397036552,
0.013903087936341763,
-0.03597354143857956,
0.03064619190990925,
-0.03305927664041519,
-0.0003918364236596972,
0.03636334836483002,
-0.007480566389858723,
-0.03755132853984833,
0.011025946587324142,
0.022701570764183998,
-0.02097528614103794,
0.03500830754637718,
-0.04480915144085884,
-0.01044123712927103,
0.01058973465114832,
0.029421085491776466,
-0.039463236927986145,
-0.0020488027948886156,
0.02507753111422062,
0.04885571077466011,
-0.026339761912822723,
0.015759307891130447,
0.008311225101351738,
0.022720132023096085,
-0.00029728523804806173,
-0.04157932847738266,
0.02854866348206997,
-0.01203758642077446,
0.004575582221150398,
0.05152866616845131,
0.014729104936122894,
-0.02721218392252922,
0.03207547962665558,
0.024966157972812653,
-0.06266598403453827,
0.013708184473216534,
0.01187052670866251,
-0.007689391262829304,
0.0420619435608387,
-0.029569583013653755,
0.010849605314433575,
-0.023666804656386375,
0.014135114848613739,
-0.00015212302969302982,
0.039277613162994385,
-0.011740591377019882,
0.016566762700676918,
0.06923700124025345,
0.030126450583338737,
-0.006752000190317631,
-0.027713363990187645,
-0.014181520789861679,
0.008125603199005127,
-0.0248362235724926,
-0.03333771228790283,
0.029179777950048447,
0.03524961695075035,
-0.018766384571790695,
-0.034080199897289276,
0.006626705173403025,
0.09644918888807297,
-0.08323290199041367,
-0.058879297226667404,
0.037699826061725616,
-0.002022119704633951,
0.024279357865452766,
-0.0034270461183041334,
0.04896708205342293,
0.004301789682358503,
0.05757994204759598,
0.011582812294363976,
-0.006956184282898903,
0.051120296120643616,
-0.002005877671763301,
-0.03515680506825447,
-0.011174444109201431,
-0.0447349026799202,
-0.0380525104701519,
0.05379325523972511,
-0.049598198384046555,
-0.03452569246292114,
0.01536950096487999,
0.0013550405856221914,
0.008311225101351738,
0.054312996566295624,
0.03964885696768761,
0.024966157972812653,
-0.042173318564891815,
-0.09889940172433853,
-0.02611701563000679,
-0.02435360662639141,
-0.02478053607046604,
-0.023425495252013206,
-0.0032994309440255165,
-0.03207547962665558,
-0.021810583770275116,
0.016000615432858467,
-0.006705594714730978,
0.021198032423853874,
-0.0675664097070694,
0.03524961695075035,
0.0066127837635576725,
-0.023425495252013206,
0.036233413964509964,
0.051937036216259,
-0.017717620357871056,
-0.02255307324230671,
-0.001798213110305369,
-0.019972926005721092,
-0.004826171789318323,
-0.04659112170338631,
0.016863757744431496,
0.028938468545675278,
-0.04113383591175079,
0.003417765023186803,
-0.04956107214093208,
0.03253953531384468,
0.025857143104076385,
-0.04848446696996689,
0.006803045980632305,
0.045700136572122574,
0.09704317897558212,
0.061069637537002563,
0.04347267001867294,
-0.004204338416457176,
-0.015620090998709202,
-0.06834601610898972,
0.05509260669350624,
-0.04324992373585701,
0.008710311725735664,
-0.06444795429706573,
-0.004471169784665108,
0.03016357496380806,
-0.034284383058547974,
0.007503769360482693,
0.039314739406108856,
-0.008529330603778362,
-0.03615916520357132,
-0.01170346699655056,
0.0163254551589489,
0.07428592443466187,
0.026246950030326843,
0.02240457572042942,
-0.035416677594184875,
-0.017309250310063362,
-0.019323250278830528,
-0.036994464695453644,
0.01027417741715908,
-0.0263026375323534,
0.03898061811923981,
0.05646621063351631,
0.03756989166140556,
0.0038261334411799908,
-0.03476699814200401,
0.015044663101434708,
-0.00760122062638402,
0.03257666155695915,
-0.02340693399310112,
-0.07781273871660233,
0.05732007324695587,
-0.01520244125276804,
-0.0673065334558487,
-0.010534048080444336,
0.03396882489323616,
-0.001958312001079321,
0.011740591377019882,
-0.010376269929111004,
0.10246334224939346,
0.012009742669761181,
-0.014970414340496063,
0.02635832317173481,
0.016566762700676918,
-0.006408599205315113,
-0.014710542745888233,
-0.02541165053844452,
0.005619706120342016,
-0.06912562996149063,
-0.02160640060901642,
0.051268793642520905,
-0.01118372566998005,
0.03725433349609375,
0.018998410552740097,
0.040131475776433945,
-0.025281716138124466,
0.024669162929058075,
-0.015777869150042534,
0.02973664365708828,
-0.0081116808578372,
-0.013968055136501789,
0.0025337401311844587,
0.015341658145189285,
0.06340847164392471,
-0.019323250278830528,
-0.05164003744721413,
-0.00868246890604496,
0.030534818768501282,
0.0002294171863468364,
-0.006937622092664242,
0.00566147081553936,
0.023332685232162476,
-0.03762557730078697,
-0.03905486688017845,
-0.014088709838688374,
0.014803353697061539,
0.08204492181539536,
-0.014831197448074818,
0.008580376394093037,
-0.008051354438066483,
0.03857225179672241,
0.05004369094967842,
-0.0433984212577343,
-0.01255732774734497,
-0.03168567642569542,
-0.017439186573028564,
-0.013188443146646023,
0.008710311725735664,
0.009949338622391224,
0.020659727975726128,
-0.01543446909636259,
-0.004092964809387922,
-0.015527280047535896,
-0.06671254336833954,
-0.03953748568892479,
0.02602420374751091,
-0.02812173217535019,
-0.02307281456887722,
-0.002279670210555196,
0.031240181997418404,
0.05086042732000351,
-0.03740283101797104,
-0.025188904255628586,
-0.011072351597249508,
0.04506902024149895,
0.03229822590947151,
0.035657986998558044,
-0.022942878305912018,
-0.04235893860459328,
0.0016323134768754244,
-0.018163112923502922,
0.010645421221852303,
-0.011341503821313381,
0.01239026803523302,
-0.02145790308713913,
-0.001280791824683547,
-0.04324992373585701,
-0.01543446909636259,
-0.02036273293197155,
-0.005248461849987507,
-0.027564866468310356,
0.007234617136418819,
0.0008405196131207049,
-0.020771101117134094,
0.003805250860750675,
0.024130860343575478,
0.0543501190841198,
-0.007044354919344187,
-0.037514206022024155,
0.004000153858214617,
-0.11085345596075058,
-0.0016787189524620771,
-0.003747244132682681,
-0.016873039305210114,
0.008167367428541183,
-0.00516029167920351,
0.009466721676290035,
-0.054498616605997086,
0.07758999615907669,
-0.031240181997418404,
-0.05631771311163902,
0.0030047560576349497,
0.005076761357486248,
-0.07469429075717926,
0.024242233484983444,
0.027063686400651932,
-0.012111835181713104,
-0.05980740860104561,
-0.05628059059381485,
0.051268793642520905,
0.019156189635396004,
-0.025096094235777855,
0.11434315145015717,
-0.004123128484934568,
0.014376423321664333,
-0.0012831120984628797,
-0.03528674319386482,
0.007986386306583881,
0.027045125141739845,
-0.01637185923755169,
0.004598784726113081,
-0.012111835181713104,
-0.005707876291126013,
-0.04462352767586708,
-0.04677674174308777,
-0.040317095816135406,
0.031128808856010437,
0.0939989760518074,
0.03192698210477829,
0.0741003006696701,
0.010766075924038887,
-0.009531689807772636,
0.047927599400281906,
-0.006120885256677866,
0.06318572908639908,
0.07101897895336151,
0.0293097123503685,
0.011963337659835815,
-0.0007285663159564137,
0.018237361684441566,
-0.022905753925442696,
0.0067427190952003,
0.009387832134962082,
-0.09206850826740265,
-0.06738078594207764,
-0.02721218392252922,
0.04209906980395317,
-0.023147063329815865,
-0.020399857312440872,
-0.0251703429967165,
-0.01988011598587036,
0.04662824422121048,
0.043509796261787415,
0.032094042748212814,
0.0076337046921253204,
-0.01574074476957321,
0.010849605314433575,
-0.012668700888752937,
-0.0675664097070694,
-0.06344559788703918,
0.03240960091352463,
-0.05472136288881302,
0.061440881341695786,
0.0307761263102293,
0.033523332327604294,
0.014719824306666851,
0.021810583770275116,
-0.05557522550225258,
-0.054832737892866135,
-0.05108317360281944,
-0.0377926379442215,
0.03170423582196236,
0.05141729116439819,
-0.011768434196710587,
0.03305927664041519,
-0.019972926005721092,
-0.014515640214085579,
-0.00566147081553936,
-0.0079956678673625,
-0.023369809612631798,
-0.06678679585456848,
-0.03983448073267937,
-0.005740360356867313,
-0.06686104089021683,
-0.03287365660071373,
-0.007605861406773329,
0.028418727219104767,
0.023054251447319984,
-0.014896165579557419,
-0.008933058939874172,
-0.039463236927986145,
0.015091068111360073,
-0.011072351597249508,
0.07617926597595215,
0.02045554481446743,
0.02593139372766018,
0.008571095764636993,
0.006557097192853689,
0.052976518869400024,
-0.007392395753413439,
0.001660156762227416,
-0.004396921023726463,
-0.010793918743729591,
0.009030509740114212,
-0.03148148953914642,
-0.02155071310698986,
-0.039129115641117096,
0.04076259210705757,
0.020418420433998108,
-0.027898985892534256,
-0.04829884320497513,
-0.04651687294244766,
0.03086893819272518,
-0.10513629764318466,
0.0447349026799202,
0.012158241122961044,
0.009346067905426025,
-0.06856876611709595,
-0.02769480086863041,
-0.03348620980978012,
-0.05227115377783775,
-0.02474341168999672,
-0.058619424700737,
0.04989519342780113,
-0.006278663873672485,
0.02188483253121376,
0.012195365503430367,
0.04495764896273613,
-0.06103251129388809,
-0.004932904615998268,
0.008728873915970325,
-0.001991956029087305,
-0.004218259826302528,
0.04243318736553192,
0.08508912473917007,
0.035323865711688995,
-0.0017274447018280625,
0.02815885655581951,
0.07053636014461517,
0.011638498865067959,
0.07190996408462524,
0.04154220223426819,
-0.05609496682882309,
0.006868013646453619,
-0.03563942387700081,
0.03443288058042526,
0.02626551315188408,
0.015629371628165245,
-0.10996247082948685,
-0.004965388216078281,
0.005457286722958088,
-0.010515485890209675,
0.02849297598004341,
0.049264077097177505,
-0.052976518869400024,
-0.027156498283147812,
-0.04306430369615555,
-0.07365480810403824,
-0.01617695763707161,
-0.04221044108271599,
0.02626551315188408,
-0.04659112170338631,
-0.11233843117952347,
-0.026803815737366676,
0.06942262500524521,
0.022534510120749474,
-0.06611855328083038,
0.05067480355501175,
0.02739780582487583,
0.03040488250553608,
0.010580454021692276,
-0.009791560471057892,
0.024335043504834175,
0.011749872006475925,
-0.010199928656220436,
-0.02520746737718582,
-0.050340685993433,
0.08323290199041367,
0.06600718200206757,
0.020232796669006348,
-0.029272587969899178,
-0.07539965212345123,
0.019137628376483917,
0.028233105316758156,
0.002094048075377941,
0.008088478818535805,
-0.02825166843831539,
0.04829884320497513,
0.08256466686725616,
0.01793108507990837,
0.0456630103290081,
0.018200237303972244,
-0.0010162803810089827,
-0.041653577238321304,
-0.03591785579919815,
-0.07146447151899338,
-0.04751922935247421,
-0.0010058392072096467,
-0.0035082558169960976,
0.03138867765665054,
0.014571326784789562,
-0.0006044316105544567,
-0.06485632807016373,
0.0010197608498856425,
0.00935070775449276,
-0.022423136979341507,
0.025337401777505875,
0.05732007324695587,
-0.0393889881670475,
0.015490155667066574,
-0.018849913030862808,
0.009615219198167324,
0.0307761263102293,
0.04087396338582039,
-0.014859041199088097,
-0.002900343621149659,
0.04024284705519676,
-0.02669244259595871,
-0.00868246890604496,
-0.01798677071928978,
-0.05490698665380478,
-0.03363470733165741,
-0.030794689431786537,
-0.024613477289676666,
0.025374526157975197,
-0.007132525090128183,
-0.00310916849412024,
-0.03235391527414322,
-0.033040713518857956,
0.011981899850070477,
-0.025430213660001755,
-0.04376966506242752,
0.016446107998490334,
-0.026729566976428032,
-0.015044663101434708,
0.048929959535598755,
0.02036273293197155,
0.019861552864313126,
0.06563593447208405,
0.02078966423869133,
-0.015230285003781319,
-0.033411961048841476,
0.020307045429944992,
0.002633512020111084,
0.017773305997252464,
-0.048261720687150955,
0.05706020072102547,
0.02659963257610798,
-0.004677674267441034,
0.02569008432328701,
0.026042766869068146,
-0.006269382778555155,
0.03406163677573204,
-0.01617695763707161,
-0.008784560486674309,
0.007726515643298626,
0.015638653188943863,
-0.00008548762707505375,
-0.009513127617537975,
-0.019564557820558548,
0.06162650138139725,
-0.07502841204404831,
0.006287944968789816,
0.059399038553237915,
-0.04094821214675903,
-0.022200390696525574,
-0.03905486688017845,
0.047370731830596924,
-0.0014107271563261747,
-0.02736068144440651,
0.008264819160103798,
0.039277613162994385,
0.04677674174308777,
-0.028938468545675278,
0.06400246173143387,
-0.0893213078379631,
0.02225607819855213,
-0.024910472333431244,
-0.008487565442919731,
-0.023518307134509087,
0.014218645170331001,
-0.022107578814029694,
0.025560148060321808,
-0.021235156804323196,
0.004942185711115599,
-0.004366757348179817,
0.023054251447319984,
-0.02093816176056862,
-0.03482268750667572,
-0.01006071176379919,
0.012483078986406326,
0.00939247291535139,
-0.01082176249474287,
0.05442436784505844,
-0.03756989166140556,
-0.0049839504063129425,
-0.019861552864313126,
-0.05732007324695587,
0.012195365503430367,
0.01538806315511465,
-0.008139524608850479,
-0.04599713161587715,
0.04395528882741928,
-0.07487991452217102,
0.001835337490774691,
0.035565175116062164,
-0.06054989621043205,
0.04777910187840462,
-0.04918982833623886,
-0.05342201143503189,
-0.016715260222554207,
0.07320931553840637,
0.01524884719401598,
-0.009448159486055374,
0.020585479214787483,
0.03487837314605713,
-0.06637842208147049,
-0.016622450202703476,
0.011100195348262787,
-0.028511539101600647,
0.01988011598587036,
-0.04068833962082863,
-0.021235156804323196,
0.02635832317173481,
0.11248692870140076,
0.012130397371947765,
0.010023587383329868,
-0.017002975568175316,
0.0030998873990029097,
0.039129115641117096,
0.0615522526204586,
0.01798677071928978,
-0.021105220541357994,
0.013049226254224777,
0.051974158734083176,
-0.023295560851693153,
-0.020195672288537025,
-0.03762557730078697,
0.02155071310698986,
-0.011694185435771942,
-0.016139833256602287,
-0.02359255589544773,
0.013002821244299412,
-0.013012101873755455,
-0.05305076763033867,
0.0037077993620187044,
-0.001546463230624795,
-0.026952313259243965,
-0.04343554750084877,
0.01651107706129551,
0.001357360859401524,
0.004482771269977093,
-0.014859041199088097,
0.010682545602321625,
-0.002860899083316326,
-0.05089754983782768,
0.0342472568154335,
-0.009327505715191364,
0.045403141528367996,
-0.01612127013504505,
0.0259685181081295,
0.06459645181894302,
0.037662703543901443,
0.005874936003237963,
-0.01807958260178566,
0.04009434953331947,
0.07035073637962341,
0.02207045443356037,
-0.01841370202600956,
0.02273869514465332,
0.024947596713900566,
0.006928340997546911,
-0.021198032423853874,
0.0351196825504303,
-0.044178035110235214,
0.013262691907584667,
0.034711312502622604,
0.04729648306965828,
0.046368375420570374,
0.0664898008108139
]
|
42,259 | flask_restful.representations.json | output_json | Makes a Flask response with a JSON encoded body | def output_json(data, code, headers=None):
"""Makes a Flask response with a JSON encoded body"""
settings = current_app.config.get('RESTFUL_JSON', {})
# If we're in debug mode, and the indent is not set, we set it to a
# reasonable value here. Note that this won't override any existing value
# that was set. We also set the "sort_keys" value.
if current_app.debug:
settings.setdefault('indent', 4)
settings.setdefault('sort_keys', not PY3)
# always end the json dumps with a new line
# see https://github.com/mitsuhiko/flask/pull/1262
dumped = dumps(data, **settings) + "\n"
resp = make_response(dumped, code)
resp.headers.extend(headers or {})
return resp
| (data, code, headers=None) | [
-0.004508481360971928,
-0.04852895066142082,
0.012416656129062176,
-0.08120155334472656,
0.05638601630926132,
0.01712734065949917,
-0.0689004436135292,
-0.0068838223814964294,
-0.02255796268582344,
-0.0216513779014349,
0.05322185903787613,
-0.0451514758169651,
0.02280682884156704,
-0.032868143171072006,
0.055390551686286926,
-0.025704344734549522,
0.025473253801465034,
-0.03011283464729786,
0.06075895577669144,
-0.033152561634778976,
0.03599674627184868,
-0.006977147422730923,
0.0020787010435014963,
0.04106295853853226,
-0.04077853634953499,
0.026539824903011322,
-0.032263752073049545,
0.00022761832224205136,
0.008234811946749687,
0.012478872202336788,
-0.02534882165491581,
-0.045258134603500366,
0.0680471882224083,
0.0143809225410223,
0.044653743505477905,
0.06498968601226807,
-0.003430801210924983,
-0.018122807145118713,
-0.016682937741279602,
0.009936880320310593,
-0.005070652812719345,
-0.014140944927930832,
-0.03425468131899834,
-0.032512616366147995,
0.024584446102380753,
0.05019990727305412,
-0.010719032026827335,
0.02252241037786007,
0.036441151052713394,
0.013732092455029488,
0.04138292744755745,
-0.08354800939559937,
-0.0024086711928248405,
0.024975521489977837,
0.014843103475868702,
-0.030806105583906174,
0.02840632200241089,
-0.05371959134936333,
-0.011341197416186333,
-0.07913951575756073,
-0.03580120950937271,
0.0015087525825947523,
0.03686777874827385,
-0.06424308568239212,
0.011430078186094761,
0.03800545632839203,
-0.039569757878780365,
0.013189919292926788,
0.02479775995016098,
0.0036996656563133,
-0.0613633431494236,
-0.00591057725250721,
0.03183712437748909,
0.047497931867837906,
0.0799216702580452,
-0.0012010026257485151,
-0.016505176201462746,
-0.05019990727305412,
0.011323421262204647,
-0.034201353788375854,
0.03658336028456688,
-0.07622422277927399,
-0.004408490378409624,
0.06491857767105103,
0.002873073797672987,
-0.022060228511691093,
-0.03343698009848595,
0.011198988184332848,
-0.008768096566200256,
-0.03924978896975517,
0.016958467662334442,
0.0018598319729790092,
-0.01097678579390049,
0.06090116500854492,
-0.0037996566388756037,
0.015136410482227802,
-0.0044484869576990604,
0.02113586850464344,
0.07071360945701599,
0.04191621392965317,
0.042911678552627563,
0.09243609011173248,
0.006137223448604345,
0.03331254422664642,
0.03475241735577583,
-0.01110121887177229,
-0.0188960712403059,
0.025455478578805923,
-0.07153131812810898,
-0.00556838558986783,
-0.05371959134936333,
-0.03992528095841408,
0.007159353233873844,
-0.04934665188193321,
0.036761123687028885,
0.020655911415815353,
0.043551620095968246,
0.008359245024621487,
0.055106133222579956,
-0.046609122306108475,
-0.024602221325039864,
-0.05492836982011795,
0.040423013269901276,
-0.05411066859960556,
0.032245974987745285,
0.010247962549328804,
0.0007427106611430645,
-0.002568656811490655,
0.022380201146006584,
0.0001430426345905289,
0.014851991087198257,
0.0372944101691246,
-0.0034996839240193367,
-0.0022664619609713554,
0.027197543531656265,
0.02053147926926613,
-0.04234284162521362,
0.016674049198627472,
0.04454708471894264,
0.04401380196213722,
0.01827390491962433,
-0.028530756011605263,
-0.03992528095841408,
0.05439508706331253,
0.004568476229906082,
0.010487941093742847,
0.06079450622200966,
0.014949760399758816,
0.00501288054510951,
0.01742064766585827,
0.04529368504881859,
0.00767041789367795,
0.07871288806200027,
-0.020495925098657608,
0.015438605099916458,
0.013021045364439487,
-0.00801260955631733,
-0.07999277114868164,
-0.03434356302022934,
0.018718309700489044,
0.0433027558028698,
-0.010799024254083633,
0.008941414766013622,
-0.018202800303697586,
0.04817342385649681,
-0.0029886187985539436,
-0.006350537296384573,
0.01367876399308443,
0.022682394832372665,
-0.010265739634633064,
-0.049986593425273895,
-0.027748603373765945,
0.005657266825437546,
0.0021786920260638,
0.0032352632842957973,
0.0072393459267914295,
0.026628704741597176,
0.005550609435886145,
-0.053115200251340866,
-0.013980959542095661,
0.008461457677185535,
-0.02113586850464344,
-0.01223889458924532,
0.05546165630221367,
-0.006075006909668446,
-0.02142028696835041,
0.016807369887828827,
-0.008808093145489693,
0.036174509674310684,
0.04959551990032196,
-0.05827029049396515,
0.03261927515268326,
-0.031997110694646835,
-0.021331405267119408,
-0.006746056955307722,
-0.035587895661592484,
-0.005932797212153673,
-0.019020503386855125,
0.03596119582653046,
-0.040458567440509796,
-0.0832635909318924,
0.013145479373633862,
-0.018122807145118713,
-0.009421370923519135,
0.034521326422691345,
0.03804100677371025,
-0.03370362147688866,
-0.0348590724170208,
0.0053061870858073235,
-0.01774950698018074,
-0.047497931867837906,
0.006035010330379009,
-0.014203161001205444,
0.0020442598033696413,
0.027197543531656265,
0.034183576703071594,
0.046004731208086014,
-0.022753499448299408,
-0.042662810534238815,
-0.06690950691699982,
-0.04106295853853226,
-0.007012699730694294,
-0.022024676203727722,
0.031054971739649773,
-0.04159624129533768,
0.01827390491962433,
-0.010070201009511948,
-0.008328136056661606,
-0.003990750759840012,
0.0186472050845623,
-0.07849957793951035,
0.0054084002040326595,
0.024175593629479408,
-0.022771276533603668,
0.003168602706864476,
-0.0032263752073049545,
-0.006354981567710638,
-0.042413946241140366,
-0.058199185878038406,
0.025402149185538292,
0.03014838695526123,
-0.019642669707536697,
-0.0058172522112727165,
-0.020175954326987267,
-0.0423072874546051,
-0.01040794886648655,
0.041845109313726425,
0.023304561153054237,
0.0439782477915287,
0.01368765253573656,
-0.044369325041770935,
-0.045471448451280594,
0.008425905369222164,
0.026824243366718292,
0.005799476057291031,
0.009625797159969807,
0.020424820482730865,
-0.016131876036524773,
-0.014443139545619488,
0.018176136538386345,
0.0338636077940464,
0.03409469872713089,
-0.013412121683359146,
0.028904056176543236,
0.00005961267015663907,
-0.04131182283163071,
-0.05272412672638893,
0.0002752529107965529,
-0.02961510233581066,
0.02225576713681221,
0.08681882172822952,
0.024051159620285034,
0.007092692423611879,
-0.0770774781703949,
0.01918048970401287,
0.014363146387040615,
0.031659360975027084,
-0.0506620891392231,
-0.0010943455854430795,
-0.018718309700489044,
-0.03811211138963699,
-0.050590984523296356,
-0.014949760399758816,
-0.05012880265712738,
0.01281662005931139,
-0.005999458022415638,
0.0080481618642807,
0.09926214069128036,
0.02700200490653515,
-0.0059727937914431095,
0.06104337424039841,
-0.007612645626068115,
-0.007679305970668793,
-0.0035774544812738895,
0.027233095839619637,
-0.010932345874607563,
-0.002853075508028269,
-0.026824243366718292,
0.07771742343902588,
0.0021531388629227877,
-0.008474789559841156,
0.01182115450501442,
0.14803995192050934,
-0.01944713108241558,
-0.02621985413134098,
0.0007721524452790618,
-0.026290958747267723,
-0.02252241037786007,
-0.03635227307677269,
-0.01265663467347622,
0.014114280231297016,
0.021811362355947495,
0.012745515443384647,
0.0304328054189682,
-0.02954399771988392,
0.011181212030351162,
0.029632877558469772,
0.033063679933547974,
0.05681264400482178,
0.026628704741597176,
-0.025508806109428406,
-0.05247525870800018,
0.0642075315117836,
-0.04650246351957321,
0.09492475539445877,
-0.07160241901874542,
0.011625615879893303,
0.05606604740023613,
0.06978925317525864,
0.016780706122517586,
-0.01630963757634163,
-0.0642075315117836,
-0.022700171917676926,
0.024886639788746834,
0.02001596987247467,
-0.04934665188193321,
0.04255615547299385,
-0.05179976299405098,
-0.05471505597233772,
-0.0012665522517636418,
-0.056492675095796585,
-0.006190551910549402,
0.025988763198256493,
0.03153492882847786,
-0.046644676476716995,
0.0171362292021513,
0.04934665188193321,
0.04760458692908287,
-0.0023620089050382376,
-0.08034829795360565,
-0.0027797487564384937,
0.05738148093223572,
0.06498968601226807,
0.035339027643203735,
-0.014905319549143314,
-0.07210015505552292,
-0.023197904229164124,
-0.06897154450416565,
0.011039002798497677,
0.041525136679410934,
0.013874301686882973,
0.035659000277519226,
-0.029099592939019203,
0.06267878413200378,
-0.027961919084191322,
0.004915111698210239,
-0.0085903350263834,
-0.0010565712582319975,
0.10089755058288574,
0.02115364372730255,
0.0024886641185730696,
-0.008332580327987671,
0.008270364254713058,
0.015171962790191174,
0.029099592939019203,
0.04845784604549408,
-0.009199168533086777,
-0.004519591573625803,
-0.04365827888250351,
0.019340474158525467,
-0.06424308568239212,
-0.003908535931259394,
-0.025828776881098747,
-0.026397615671157837,
0.025295492261648178,
-0.013269912451505661,
0.06882933527231216,
-0.019020503386855125,
-0.06356759369373322,
-0.04511592537164688,
-0.04739127308130264,
-0.052795231342315674,
0.040707431733608246,
0.019073832780122757,
-0.06623401492834091,
-0.006106114946305752,
-0.050342120230197906,
0.03212154284119606,
-0.007514876779168844,
0.0171806700527668,
0.01773173175752163,
0.030201716348528862,
-0.02819300815463066,
-0.020780345425009727,
0.016949579119682312,
0.005261746700853109,
0.046324703842401505,
-0.03999638557434082,
0.010656815022230148,
0.07032253593206406,
0.004910667426884174,
-0.0023775629233568907,
-0.011883370578289032,
-0.0017331767594441772,
0.05176421254873276,
0.05432398244738579,
-0.008865865878760815,
0.05151534453034401,
0.023820070549845695,
-0.000017099149772548117,
0.024068936705589294,
-0.022433528676629066,
0.07249122858047485,
0.05627936124801636,
-0.031161628663539886,
-0.04134737700223923,
-0.0022953480947762728,
0.016122987493872643,
-0.036761123687028885,
0.002515328349545598,
0.013429897837340832,
-0.09435591846704483,
-0.027215318754315376,
-0.06534520536661148,
0.055603865534067154,
0.005541721358895302,
0.019784878939390182,
-0.04412045702338219,
0.0171362292021513,
-0.014425363391637802,
0.05272412672638893,
0.02931290678679943,
-0.030859434977173805,
-0.00008443681872449815,
0.002382006961852312,
0.010390172712504864,
-0.009954656474292278,
0.003370806574821472,
0.060367878526449203,
0.009874663315713406,
0.06954038143157959,
-0.00022609069128520787,
-0.03811211138963699,
-0.05322185903787613,
0.03414802625775337,
-0.06964704394340515,
0.010052424855530262,
-0.014825327321887016,
-0.01717178151011467,
0.003141938243061304,
0.0165940560400486,
-0.012496648356318474,
0.044369325041770935,
0.0058128079399466515,
0.02929513156414032,
-0.00501288054510951,
-0.029686206951737404,
0.001032128930091858,
-0.029152922332286835,
-0.030272820964455605,
0.027819707989692688,
0.04138292744755745,
-0.02678869105875492,
-0.021580273285508156,
0.02422892302274704,
0.06051008775830269,
0.024051159620285034,
0.01111010741442442,
-0.057025957852602005,
-0.03416580334305763,
0.0008188149076886475,
0.020727016031742096,
-0.0005993903032504022,
-0.017296215519309044,
-0.00957246869802475,
-0.03382805362343788,
0.04980883374810219,
0.0016087435651570559,
-0.012781067751348019,
-0.03425468131899834,
0.018771637231111526,
-0.03011283464729786,
-0.0321926474571228,
-0.04415601119399071,
-0.014558685012161732,
0.0021786920260638,
0.01339434552937746,
-0.05261746793985367,
-0.015900785103440285,
-0.052581917494535446,
0.020673688501119614,
-0.024335579946637154,
0.020780345425009727,
0.00013630713510792702,
-0.023855622857809067,
-0.02815745584666729,
0.05827029049396515,
-0.0015454159583896399,
-0.041240718215703964,
0.041240718215703964,
-0.018176136538386345,
0.04870671033859253,
0.018202800303697586,
-0.07000256329774857,
-0.028619635850191116,
0.0642075315117836,
0.034183576703071594,
0.028850726783275604,
-0.01198113989084959,
-0.0012532201362773776,
-0.057879216969013214,
-0.04255615547299385,
-0.015705248340964317,
0.03651225566864014,
-0.01210557296872139,
0.0489911288022995,
0.02398005500435829,
0.01607854664325714,
-0.00556838558986783,
0.06466971337795258,
-0.05741703510284424,
0.019091608002781868,
0.002666425658389926,
0.051657553762197495,
-0.037614379078149796,
-0.003410802921280265,
-0.048351187258958817,
0.011838930658996105,
0.013598771765828133,
-0.04223618283867836,
0.024957744404673576,
0.05432398244738579,
0.042093973606824875,
-0.028370769694447517,
-0.045791417360305786,
0.01339434552937746,
0.027553066611289978,
-0.044973716139793396,
0.021206973120570183,
-0.03747216984629631,
-0.011705609038472176,
0.004052967298775911,
0.12137570232152939,
0.011474519036710262,
-0.037045542150735855,
0.05574607476592064,
0.032850366085767746,
0.0023508986923843622,
0.033330321311950684,
-0.02870851755142212,
-0.021864691749215126,
0.05094650760293007,
-0.044084906578063965,
-0.0444759801030159,
-0.019091608002781868,
0.026557600125670433,
0.010790136642754078,
0.03475241735577583,
-0.046644676476716995,
-0.02168693020939827,
0.029703982174396515,
0.019873760640621185,
0.06175442039966583,
-0.018984951078891754,
-0.017589522525668144,
0.03807656094431877,
0.038183216005563736,
0.03548124060034752,
0.02533104456961155,
-0.03629894182085991,
-0.02787303738296032,
-0.052581917494535446,
-0.07092692703008652,
-0.06349648535251617,
-0.04490261152386665,
-0.04700019955635071,
-0.04980883374810219,
-0.002977508818730712,
-0.026397615671157837,
-0.031214958056807518,
0.003095275955274701,
0.009296937845647335,
0.026148749515414238,
-0.05265302211046219,
0.05670598894357681,
0.08674772083759308,
-0.02533104456961155,
0.02086922526359558,
0.024655550718307495,
0.023304561153054237,
0.004577364306896925,
0.03549901396036148,
-0.030610566958785057,
-0.06129223853349686,
0.058732472360134125,
-0.00010158804070670158,
-0.021455839276313782,
-0.019091608002781868,
-0.05130203068256378,
0.012629969976842403,
-0.06918486207723618,
0.0017220666632056236,
-0.00682160584256053,
-0.026130972430109978,
-0.012727739289402962,
-0.032281529158353806,
0.00556838558986783,
-0.023304561153054237,
0.00873698852956295,
-0.06790497899055481,
0.08802760392427444,
-0.02703755721449852,
0.028815174475312233,
0.017793947830796242,
0.01777617260813713,
-0.017856163904070854,
0.01716289296746254,
-0.00930582545697689,
-0.06374534964561462,
-0.024655550718307495,
-0.010630150325596333,
0.0197315514087677,
0.01774950698018074,
-0.025259939953684807,
0.012043355964124203,
0.040671881288290024,
-0.03935644403100014,
0.011012338101863861,
0.044369325041770935,
-0.048315633088350296,
0.03293924778699875,
-0.05795032158493996,
-0.06221660226583481,
-0.000874365447089076,
-0.02897516079246998,
-0.006399421952664852,
0.00914584007114172,
0.01367876399308443,
-0.0010243519209325314,
-0.0908006876707077,
-0.042662810534238815,
0.013989847153425217,
-0.0399608351290226,
0.04344496503472328,
-0.04109850898385048,
0.026077643036842346,
0.037614379078149796,
0.009714677929878235,
0.03679667413234711,
-0.013607659377157688,
-0.029437340795993805,
0.019642669707536697,
-0.01111010741442442,
-0.06317651271820068,
-0.018931623548269272,
-0.03800545632839203,
0.03267260268330574,
-0.01227444689720869,
0.06001235544681549,
-0.018433889374136925,
0.006003901828080416,
0.009421370923519135,
0.03747216984629631,
-0.004175178240984678,
-0.003155270591378212,
0.0041707344353199005,
-0.022646842524409294,
0.02764194644987583,
0.009016962721943855,
-0.009172504767775536,
-0.026255406439304352,
0.007572649046778679,
-0.043551620095968246,
0.037009987980127335,
0.031943779438734055,
0.015589702874422073,
0.026948675513267517,
-0.006937150843441486,
-0.012301110662519932,
0.009750230237841606,
0.010843465104699135,
-0.08262364566326141,
-0.0078037395142018795,
0.010745695792138577,
-0.03180157020688057,
0.026646481826901436,
-0.04372938349843025,
-0.003468575421720743,
0.012078908272087574,
0.02703755721449852,
0.04532923921942711,
0.0027797487564384937,
0.03174824267625809,
0.0044196005910634995,
-0.018220575526356697,
-0.005417288281023502,
0.033934712409973145,
-0.044938161969184875,
0.026308733969926834,
-0.058128081262111664,
-0.05514168366789818,
0.07309561967849731,
0.06456305831670761,
0.004088519606739283,
-0.024424459785223007,
-0.034521326422691345,
-0.0337747260928154,
0.038289874792099,
0.05275967717170715,
0.0004277391417417675,
-0.03571232780814171,
-0.002397561213001609,
0.022113557904958725,
-0.03605007752776146,
-0.00819481536746025,
-0.05382624641060829,
-0.011634504422545433,
-0.009510251693427563,
0.0005688375094905496,
-0.014780886471271515,
-0.016211869195103645,
-0.019802656024694443,
-0.011705609038472176,
-0.03443244472146034,
-0.00004371133036329411,
-0.03094831481575966,
-0.007097136694937944,
-0.039854176342487335,
-0.04867115989327431,
0.032850366085767746,
-0.002335344674065709,
0.03215709328651428,
0.027250871062278748,
-0.05727482587099075,
0.02902848832309246,
0.009830223396420479,
0.046324703842401505,
-0.034183576703071594,
-0.03679667413234711,
0.030806105583906174,
0.003737440099939704,
-0.011198988184332848,
-0.025757672265172005,
0.01773173175752163,
0.017580633983016014,
0.04760458692908287,
-0.05190642178058624,
0.07210015505552292,
0.015136410482227802,
-0.001726510701701045,
-0.023322338238358498,
0.050022147595882416,
-0.0006443862221203744,
0.01635407842695713,
0.011225652880966663,
0.07394887506961823,
0.04543589428067207,
0.01210557296872139
]
|
42,263 | flask_restful.utils | unpack | Return a three tuple of data, code, and headers | def unpack(value):
"""Return a three tuple of data, code, and headers"""
if not isinstance(value, tuple):
return value, 200, {}
try:
data, code, headers = value
return data, code, headers
except ValueError:
pass
try:
data, code = value
return data, code, {}
except ValueError:
pass
return value, 200, {}
| (value) | [
-0.011298744939267635,
0.02216152474284172,
-0.08421379327774048,
-0.05718399956822395,
-0.027792731299996376,
-0.007157082669436932,
-0.003971363417804241,
0.02277914062142372,
0.017166098579764366,
-0.06575796753168106,
0.05235205963253975,
0.06692054122686386,
-0.04286983609199524,
-0.028319522738456726,
0.03255201131105423,
0.01128057949244976,
0.02268831618130207,
0.09082592278718948,
-0.004107602406293154,
0.027738235890865326,
-0.0012988107046112418,
0.008097130805253983,
-0.011416818015277386,
0.07084421813488007,
-0.013741961680352688,
-0.000677220756188035,
0.04159827157855034,
-0.05514949932694435,
0.07861892133951187,
0.04108964651823044,
0.0031698246020823717,
-0.02176189050078392,
-0.016957199200987816,
-0.0028837230056524277,
-0.037347618490457535,
0.03157109022140503,
-0.03131677955389023,
0.0012443151790648699,
-0.07520386576652527,
0.029082460328936577,
-0.049881596118211746,
-0.11945424973964691,
0.002804250456392765,
-0.015794627368450165,
-0.02092629298567772,
-0.028755486011505127,
-0.05478619784116745,
-0.07222477346658707,
-0.05362362414598465,
-0.004668452311307192,
0.02190721221268177,
0.002681635320186615,
0.019018948078155518,
-0.010508558712899685,
0.026139700785279274,
0.014904533512890339,
0.03237035870552063,
0.06550365686416626,
-0.025558413937687874,
0.06256089359521866,
-0.010853697545826435,
0.04167093336582184,
-0.014068935066461563,
0.00536327064037323,
-0.04653920233249664,
-0.008978142403066158,
0.007474973332136869,
-0.048319391906261444,
-0.09177051484584808,
0.03342393785715103,
-0.0005460908287204802,
0.03237035870552063,
-0.08915472775697708,
-0.014786460436880589,
0.07513120025396347,
-0.008510388433933258,
0.002368286019191146,
0.023887217044830322,
0.06546732783317566,
-0.009672960266470909,
0.0063668969087302685,
-0.017711054533720016,
0.013242419809103012,
0.036639176309108734,
0.016212427988648415,
-0.00584010686725378,
0.02094445750117302,
0.008678416721522808,
-0.004048565402626991,
0.12134343385696411,
-0.05071719363331795,
-0.05166178569197655,
-0.02281547151505947,
0.04101698473095894,
-0.025667404755949974,
-0.018274175003170967,
0.0014134783996269107,
-0.01021791622042656,
-0.028283191844820976,
-0.013078932650387287,
0.008814656175673008,
0.02194354310631752,
-0.049954257905483246,
-0.04083533585071564,
0.02050849236547947,
-0.036330368369817734,
0.016493987292051315,
-0.008287865668535233,
0.018746471032500267,
-0.06495869904756546,
0.008919105865061283,
-0.09046261757612228,
-0.05602142959833145,
0.04457736387848854,
0.0005537542747333646,
-0.010454063303768635,
0.02125326544046402,
-0.025449423119425774,
-0.06568530946969986,
0.002611245261505246,
-0.014232422225177288,
0.026339517906308174,
0.004936388693749905,
0.027738235890865326,
0.04512231796979904,
0.06532200425863266,
0.03382357209920883,
-0.049736276268959045,
0.03055384010076523,
-0.006566714029759169,
0.0015406346647068858,
0.04377809539437294,
-0.03562192618846893,
-0.008723829872906208,
-0.06623025983572006,
0.011344158090651035,
-0.024359513074159622,
0.009296033531427383,
0.025740066543221474,
-0.038364868611097336,
-0.03204338625073433,
-0.0009843258885666728,
0.037856243550777435,
0.02323327027261257,
-0.0025908094830811024,
-0.007406854070723057,
0.05336931347846985,
0.02110794372856617,
0.012243334203958511,
0.04119863733649254,
-0.01076287217438221,
0.013869117945432663,
0.0038237713743001223,
0.024196024984121323,
0.008869151584804058,
-0.04406873881816864,
0.005544922314584255,
-0.03207971528172493,
-0.008837361820042133,
-0.04468635469675064,
0.012979024089872837,
-0.024486668407917023,
0.05725666135549545,
-0.004343749489635229,
0.03373274579644203,
0.014922698959708214,
0.06975430995225906,
0.0002659496385604143,
0.011834617704153061,
-0.04170726239681244,
-0.01983638107776642,
0.06252456456422806,
-0.029845397919416428,
0.017747385427355766,
0.0006976565928198397,
0.0027452134527266026,
0.0033514765091240406,
-0.028773652389645576,
-0.0034786327742040157,
-0.028083374723792076,
-0.02316061034798622,
-0.023941712453961372,
-0.04047203063964844,
0.04210689663887024,
0.035549264401197433,
0.02350574918091297,
0.04072634503245354,
0.011970856226980686,
0.047556452453136444,
0.02341492287814617,
-0.00577198714017868,
-0.006925476714968681,
-0.013887283392250538,
0.007788322865962982,
0.005549463909119368,
0.003814688650891185,
0.027919888496398926,
0.02197987399995327,
0.04039936885237694,
-0.027483923360705376,
-0.049227651208639145,
-0.058964189141988754,
0.008242452517151833,
0.039345789700746536,
0.004037212114781141,
0.015785545110702515,
0.03516779839992523,
0.0008906616712920368,
-0.05347830429673195,
0.015994444489479065,
0.006448640488088131,
0.038510192185640335,
0.027284106239676476,
0.03298797458410263,
0.011689295992255211,
-0.07240642607212067,
0.03355109691619873,
-0.047156818211078644,
0.049772605299949646,
-0.048355720937252045,
0.024341346696019173,
-0.05020856857299805,
0.06514035165309906,
0.014968112111091614,
0.060708045959472656,
-0.007879149168729782,
-0.05678436532616615,
-0.039709094911813736,
-0.013251502066850662,
0.04356011375784874,
0.02054482325911522,
0.0042915246449410915,
0.017829127609729767,
0.016394078731536865,
0.012624802999198437,
-0.009736538864672184,
0.025540249422192574,
-0.1110982671380043,
-0.008692041039466858,
-0.015812793746590614,
-0.002770190592855215,
-0.025612909346818924,
0.012061682529747486,
0.06176162511110306,
-0.0018971264362335205,
-0.02319694124162197,
0.024795476347208023,
0.03647569194436073,
-0.05594876781105995,
-0.011008101515471935,
-0.038582850247621536,
0.04653920233249664,
0.028809983283281326,
0.0033287699334323406,
-0.0038010647986084223,
-0.029373103752732277,
0.01021791622042656,
-0.06593962013721466,
0.029427599161863327,
-0.02308794856071472,
0.03407788649201393,
-0.05602142959833145,
0.02305161952972412,
0.026067038998007774,
-0.01132599264383316,
-0.060235749930143356,
0.026611994951963425,
0.01000901684165001,
-0.008801031857728958,
0.05235205963253975,
0.06350548565387726,
0.0007362576434388757,
-0.012370490469038486,
-0.037965234369039536,
-0.027047960087656975,
0.02009069360792637,
0.061579976230859756,
-0.0004950012662447989,
0.04265185445547104,
-0.016711968928575516,
0.028228696435689926,
-0.017783716320991516,
-0.03249751403927803,
-0.04337846115231514,
0.0025703737046569586,
0.04152560979127884,
0.024032538756728172,
-0.008442269638180733,
0.03505880758166313,
0.02326960116624832,
0.02023601531982422,
-0.03137127310037613,
-0.01138957031071186,
-0.009682043455541134,
0.03507697209715843,
0.05583977699279785,
-0.027701906859874725,
0.019236929714679718,
0.04228854924440384,
-0.007829194888472557,
-0.017783716320991516,
-0.018147019669413567,
0.049045998603105545,
-0.010890028439462185,
0.03978175297379494,
-0.02267014980316162,
0.036057889461517334,
0.023669235408306122,
-0.07912754267454147,
-0.018819130957126617,
0.027302272617816925,
0.018183348700404167,
-0.016366831958293915,
-0.025503918528556824,
0.01066296361386776,
-0.03938211873173714,
0.009059885516762733,
0.047084156423807144,
-0.03315146267414093,
0.007683873176574707,
-0.01102626696228981,
-0.08530370891094208,
0.03400522470474243,
0.01118975318968296,
0.04573993384838104,
-0.0074795144610106945,
-0.03493164852261543,
-0.02205253392457962,
0.05351463332772255,
0.06281520426273346,
-0.1004171371459961,
0.01148039661347866,
-0.030390353873372078,
0.027066124603152275,
0.05380527675151825,
-0.005227031651884317,
-0.007170706521719694,
-0.016766464337706566,
0.029064295813441277,
-0.017474906519055367,
0.00513166468590498,
-0.09097124636173248,
0.005204325541853905,
0.026539335027337074,
0.06183428689837456,
-0.024795476347208023,
-0.006634833756834269,
0.029245946556329727,
0.05347830429673195,
0.0007021978963166475,
-0.03198888897895813,
-0.026230527088046074,
-0.017129769548773766,
0.05642106384038925,
0.05533115193247795,
0.026757316663861275,
-0.038328539580106735,
-0.08951802551746368,
0.05580344796180725,
0.03580357879400253,
0.05224306881427765,
0.012306912802159786,
0.005454096477478743,
0.04163460433483124,
0.03207971528172493,
-0.08232461661100388,
-0.06437741219997406,
0.03471366688609123,
0.007147999946027994,
-0.005649372469633818,
-0.03587624058127403,
0.03524045646190643,
-0.01031782478094101,
-0.027393098920583725,
0.012751959264278412,
-0.017429495230317116,
0.003156200749799609,
0.03106246516108513,
-0.06448640674352646,
-0.02143491804599762,
0.01062663272023201,
-0.03518596291542053,
-0.026975298300385475,
-0.016711968928575516,
0.047883424907922745,
-0.0004229081969242543,
0.0013317350530996919,
0.02132592722773552,
-0.07665707916021347,
0.06463172286748886,
-0.013378658331930637,
-0.00488643441349268,
0.009309656918048859,
-0.047265809029340744,
0.02203436940908432,
0.025431258603930473,
-0.009118922986090183,
-0.03257017582654953,
-0.027247777208685875,
-0.024159695953130722,
0.005190701223909855,
0.019200600683689117,
-0.026321351528167725,
0.04613956809043884,
0.0015667472034692764,
-0.02143491804599762,
0.026430344209074974,
0.014586643315851688,
0.02143491804599762,
-0.05384160578250885,
0.026303187012672424,
-0.04519497975707054,
0.015685636550188065,
-0.08784683048725128,
0.04374176263809204,
0.051044169813394547,
-0.028210531920194626,
0.09402299672365189,
0.014050770550966263,
-0.028192365542054176,
0.03498614579439163,
-0.05642106384038925,
-0.015840040519833565,
-0.0010178179945796728,
-0.03487715497612953,
-0.016702886670827866,
-0.036457523703575134,
-0.005853730719536543,
0.013405906036496162,
-0.016176097095012665,
0.018410414457321167,
-0.05540381371974945,
-0.025903552770614624,
-0.04236121103167534,
0.015113433822989464,
0.01147131435573101,
-0.04653920233249664,
0.04152560979127884,
0.09649346023797989,
0.016739217564463615,
-0.02317877486348152,
0.09431363642215729,
-0.016239674761891365,
-0.004613956902176142,
0.05736565217375755,
-0.030354022979736328,
-0.03967276215553284,
0.0006017217529006302,
0.023632904514670372,
-0.03102613426744938,
-0.001079693203791976,
-0.013496732339262962,
0.028156036511063576,
-0.004357373807579279,
0.04552195221185684,
-0.026321351528167725,
-0.04239754006266594,
0.019454913213849068,
0.0032424854580312967,
-0.012824620120227337,
0.049045998603105545,
-0.027211446315050125,
-0.009600300341844559,
-0.027102455496788025,
-0.009682043455541134,
-0.005731115583330393,
0.023996207863092422,
-0.02158023975789547,
-0.017783716320991516,
-0.01534958090633154,
-0.05409592017531395,
-0.02138042263686657,
0.025195110589265823,
0.03257017582654953,
0.05333298072218895,
0.0008038094383664429,
0.05049921199679375,
-0.02199803851544857,
0.0021877693943679333,
-0.05493151769042015,
0.02181638590991497,
0.014132513664662838,
0.014404991641640663,
-0.01112617552280426,
-0.012779206968843937,
0.01525875460356474,
0.0015122515615075827,
0.0013090285938233137,
0.016493987292051315,
0.015122516080737114,
-0.02067198045551777,
-0.015849122777581215,
0.006666622590273619,
-0.08130736649036407,
0.0026884472463279963,
-0.008015387691557407,
-0.03262466937303543,
0.0008083506836555898,
-0.000002439172703816439,
-0.03529495373368263,
0.013305997475981712,
-0.05333298072218895,
0.03162558749318123,
-0.1025969609618187,
-0.008823738433420658,
-0.029373103752732277,
0.05496784672141075,
0.0010501747019588947,
-0.007556716911494732,
-0.00019101826183032244,
-0.07306037098169327,
0.06463172286748886,
0.003496797988191247,
0.029118791222572327,
-0.013033519499003887,
0.03427770361304283,
-0.006593961734324694,
0.03084448352456093,
-0.02212519384920597,
0.02297895774245262,
0.03956377133727074,
0.026067038998007774,
0.06459539383649826,
0.037710923701524734,
-0.04090799391269684,
-0.009055344387888908,
-0.025467587634921074,
-0.04406873881816864,
-0.0026180571876466274,
-0.02076280489563942,
-0.03556743264198303,
-0.004489071201533079,
-0.007892772555351257,
0.004841021727770567,
0.019146105274558067,
-0.08050809800624847,
-0.017783716320991516,
0.02319694124162197,
-0.04297882691025734,
0.00576290488243103,
0.048174068331718445,
0.012161591090261936,
-0.050535544753074646,
-0.03611238673329353,
-0.05529482290148735,
-0.007538551464676857,
-0.04254286363720894,
0.06841008365154266,
-0.013923614285886288,
-0.018455827608704567,
-0.06350548565387726,
-0.03146209940314293,
0.039127808064222336,
0.013424071483314037,
-0.06623025983572006,
0.009464060887694359,
-0.039018817245960236,
0.007207036949694157,
-0.0025022542104125023,
-0.025067955255508423,
0.008505847305059433,
-0.005104416981339455,
-0.09613015502691269,
0.001569017767906189,
-0.018147019669413567,
0.01983638107776642,
-0.0031948017422109842,
0.00772928586229682,
-0.049082327634096146,
-0.02159840427339077,
-0.038001567125320435,
0.01143498346209526,
0.007279697805643082,
0.017311420291662216,
0.047047827392816544,
-0.02027234621345997,
-0.013860035687685013,
-0.05471353605389595,
0.04232487827539444,
0.004277900792658329,
0.04007239639759064,
0.011952691711485386,
0.02139858715236187,
-0.047629114240407944,
0.005435931496322155,
-0.0019391333917155862,
-0.010790119878947735,
-0.04138028994202614,
0.03967276215553284,
0.0004481691576074809,
0.002633951837196946,
0.01545857172459364,
0.02292446233332157,
-0.008010846562683582,
0.05620308220386505,
0.024414008483290672,
-0.03456834703683853,
0.038364868611097336,
-0.05591243878006935,
0.006902770139276981,
-0.03518596291542053,
0.029373103752732277,
0.01168021373450756,
0.027047960087656975,
0.030354022979736328,
-0.037347618490457535,
0.026067038998007774,
-0.006198869086802006,
0.01969105936586857,
-0.03253384679555893,
0.059618134051561356,
-0.061071351170539856,
-0.002175280824303627,
0.000352518109139055,
0.017865458503365517,
0.023996207863092422,
-0.013169758953154087,
-0.01158938743174076,
-0.06666622310876846,
-0.02143491804599762,
0.001212526112794876,
-0.011044432409107685,
-0.05594876781105995,
0.03304247185587883,
0.02058115415275097,
0.008492223918437958,
0.027229610830545425,
-0.014722881838679314,
-0.026739152148365974,
-0.03629403933882713,
0.027829062193632126,
0.007938185706734657,
0.08704756200313568,
-0.04468635469675064,
-0.03534944728016853,
0.04490433633327484,
0.030045215040445328,
0.0012761042453348637,
0.0038101475220173597,
-0.009491308592259884,
0.037202298641204834,
0.013959944248199463,
-0.024395842105150223,
-0.0014906805008649826,
-0.029681911692023277,
0.02070830948650837,
0.029264112934470177,
-0.023959878832101822,
0.048065077513456345,
-0.01143498346209526,
0.028737321496009827,
0.07062623649835587,
0.02009069360792637,
0.025267772376537323,
-0.05776528641581535,
0.03267916664481163,
0.07146183401346207,
0.012079847976565361,
-0.008737453259527683,
-0.026194196194410324,
-0.00518616009503603,
-0.017674723640084267,
0.08108938485383987,
0.01102626696228981,
0.02143491804599762,
0.025449423119425774,
-0.03249751403927803,
0.03189806267619133,
0.07382331043481827,
-0.07643909752368927,
0.02212519384920597,
0.02179822139441967,
0.02070830948650837,
0.007402312476187944,
-0.006421392783522606,
-0.05217041075229645,
0.0018596607260406017,
-0.029245946556329727,
0.016403160989284515,
0.016793712973594666,
0.009999933652579784,
0.007860983721911907,
-0.011952691711485386,
-0.023887217044830322,
-0.018437661230564117,
-0.03187989816069603,
-0.010944523848593235,
0.03108062967658043,
-0.017929036170244217,
-0.058491893112659454,
0.04643021151423454,
-0.05645739287137985,
-0.028937138617038727,
-0.014386826194822788,
-0.1036142110824585,
0.027538418769836426,
0.015213342383503914,
-0.008019928820431232,
0.04632122069597244,
0.02092629298567772,
-0.035858072340488434,
-0.07999946922063828,
0.01117158867418766,
-0.010199750773608685,
-0.002583997556939721,
-0.014840955846011639,
0.0019845464266836643,
-0.04279717430472374,
-0.04257919266819954,
-0.019563904032111168,
-0.05663904547691345,
0.05602142959833145,
-0.05111682787537575,
-0.00021471815125551075,
-0.0012624802766367793,
0.008982683531939983,
-0.07120752334594727,
0.025812726467847824,
-0.010190668515861034,
0.06866439431905746,
-0.018519405275583267,
0.001030306564643979,
0.037093307822942734,
0.05645739287137985,
-0.009400483220815659,
-0.03231586143374443,
0.05191609635949135,
-0.004845562856644392,
0.019164269790053368,
0.06092602759599686,
0.036166880279779434,
0.019854547455906868,
-0.028682826086878777,
0.02308794856071472,
0.017157016322016716,
-0.0054495553486049175,
0.014468569308519363,
0.07651175558567047,
0.058746207505464554,
0.04134396091103554,
0.059254832565784454,
0.02241583727300167,
0.008501306176185608,
0.013151593506336212,
-0.07716570049524307,
-0.01992720738053322,
0.04010872542858124,
0.02279730699956417,
-0.028283191844820976,
0.009582134895026684,
-0.004791067447513342,
-0.0004223405267111957,
-0.017829127609729767,
-0.013115263544023037,
0.03253384679555893,
-0.07240642607212067,
0.029681911692023277,
-0.008433186449110508,
-0.026266856119036674,
0.002402345649898052,
-0.01978188566863537,
0.06245190277695656,
0.04439571127295494,
0.012107095681130886,
-0.04646654054522514,
0.001927780220285058,
-0.00013744516763836145,
0.027538418769836426
]
|
42,267 | pydle.client | AlreadyInChannel | null | class AlreadyInChannel(Error):
def __init__(self, channel):
super().__init__('Already in channel: {}'.format(channel))
self.channel = channel
| (channel) | [
-0.06465665251016617,
-0.0381074957549572,
-0.026636719703674316,
0.05649576708674431,
-0.006260767579078674,
-0.01232889574021101,
0.0349552221596241,
0.05183740332722664,
0.07229216396808624,
-0.05961301550269127,
0.05933281406760216,
0.00128717883490026,
-0.000279928557574749,
0.003009984502568841,
-0.06413127481937408,
0.023309318348765373,
0.038843028247356415,
0.01498206052929163,
0.011356945149600506,
-0.017565174028277397,
-0.02803773060441017,
0.0555851086974144,
0.015279775485396385,
0.0024101766757667065,
0.005498968064785004,
0.1212574914097786,
0.009789563715457916,
0.04027906432747841,
0.009106570854783058,
-0.04294098541140556,
-0.03406207635998726,
-0.02087506279349327,
-0.016137894243001938,
0.05838713049888611,
-0.014666832983493805,
0.007845660671591759,
-0.06287036836147308,
-0.0021901740692555904,
-0.13813968002796173,
0.007963871583342552,
-0.011882323771715164,
-0.010262404568493366,
0.005577774718403816,
-0.009561899118125439,
0.011610877700150013,
-0.01840578019618988,
-0.024430127814412117,
0.07677540183067322,
-0.04773944616317749,
-0.00490791629999876,
-0.03126005455851555,
0.009920908138155937,
0.005402648355811834,
0.0011459831148386002,
-0.03985876217484474,
0.03926333039999008,
0.009089058265089989,
0.04332626238465309,
-0.03497273474931717,
0.06535715609788895,
-0.042870935052633286,
0.043816614896059036,
0.04080444201827049,
0.01588396169245243,
0.012985619716346264,
-0.02402733638882637,
-0.011961130425333977,
0.009141596034169197,
-0.011654659174382687,
0.042905960232019424,
0.05859728157520294,
0.01935146376490593,
-0.016488147899508476,
0.0024802270345389843,
0.02406236156821251,
-0.023029116913676262,
-0.03838770091533661,
0.07824645936489105,
0.02933366596698761,
0.045743007212877274,
0.0349552221596241,
0.005118067841976881,
-0.007779988925904036,
0.01375617552548647,
0.06542720645666122,
-0.011330675333738327,
0.016750836744904518,
-0.04269580915570259,
-0.06836933642625809,
-0.0050523956306278706,
-0.04118972271680832,
-0.024097388610243797,
0.008029543794691563,
-0.004916672594845295,
0.005450807977467775,
-0.0020960436668246984,
0.030069196596741676,
-0.02022709511220455,
0.023344343528151512,
-0.043501388281583786,
-0.03255598992109299,
0.005656581372022629,
-0.024727841839194298,
-0.04248565435409546,
-0.008909554220736027,
-0.04731914401054382,
0.017486367374658585,
-0.05744144693017006,
0.006028725299984217,
-0.018353242427110672,
-0.045672956854104996,
0.02966640703380108,
0.00014885740529280156,
0.03400953859090805,
-0.0039863139390945435,
-0.022065922617912292,
-0.0518023781478405,
-0.022941553965210915,
-0.011085499078035355,
-0.02119028940796852,
0.0218032319098711,
0.05782672390341759,
-0.03241588920354843,
0.01265287958085537,
0.06770385056734085,
0.03055955097079277,
-0.033501673489809036,
-0.026128852739930153,
0.08111853152513504,
-0.016794618219137192,
-0.000637022138107568,
0.011278137564659119,
0.010857834480702877,
-0.07971752434968948,
-0.0023051006719470024,
0.04672371223568916,
-0.022083435207605362,
-0.02094511315226555,
-0.02311667986214161,
0.011111767962574959,
0.008095216006040573,
0.044131845235824585,
0.006654801778495312,
-0.013616074807941914,
0.052923187613487244,
0.05639068782329559,
-0.04090951755642891,
-0.0072983913123607635,
-0.01015732903033495,
-0.021120239049196243,
0.0054289172403514385,
-0.03560319170355797,
-0.008782587014138699,
0.042905960232019424,
-0.031645335257053375,
0.014868228696286678,
-0.05271303653717041,
0.03465750813484192,
-0.00920289009809494,
0.010875347070395947,
-0.0027998327277600765,
-0.048474978655576706,
-0.006208229809999466,
0.05299323797225952,
-0.02434256486594677,
-0.018826084211468697,
0.021347904577851295,
-0.04497244954109192,
-0.01866847090423107,
0.0454978309571743,
-0.0037674058694392443,
-0.0003480636514723301,
0.00027513992972671986,
-0.00834039319306612,
-0.09169616550207138,
0.021785719320178032,
-0.004588310606777668,
0.003574766917154193,
-0.005490211304277182,
-0.06381604820489883,
-0.001769870868884027,
-0.027582403272390366,
-0.006681070663034916,
-0.012285114265978336,
0.03367679938673973,
0.012197551317512989,
0.03159279748797417,
0.04052424058318138,
0.02901843935251236,
0.0014415088808164,
0.0025305759627372026,
0.0068036592565476894,
0.0349552221596241,
0.03115498088300228,
0.02774001657962799,
-0.02651413157582283,
-0.021628106012940407,
-0.019561614841222763,
-0.033501673489809036,
0.07754595577716827,
0.0037323806900531054,
0.055094752460718155,
0.006834306288510561,
-0.03751206770539284,
0.022994091734290123,
0.0127929812297225,
0.030051684007048607,
-0.0016253915382549167,
-0.014614295214414597,
0.015279775485396385,
-0.058772407472133636,
0.009089058265089989,
0.04269580915570259,
0.017862889915704727,
-0.0038856163155287504,
0.013151990249752998,
0.05110187456011772,
0.01232889574021101,
0.023344343528151512,
0.036951661109924316,
0.06353584676980972,
-0.0299991462379694,
0.015603759326040745,
0.0041329823434352875,
-0.020980138331651688,
-0.006737987045198679,
0.028633160516619682,
-0.008826368488371372,
0.004036662634462118,
0.001670267665758729,
-0.00006734840280842036,
0.035428062081336975,
-0.008957713842391968,
0.020209582522511482,
-0.04437702149152756,
0.03341411054134369,
-0.028930874541401863,
-0.009430554695427418,
-0.02996412105858326,
0.01387876458466053,
-0.029193565249443054,
-0.007880686782300472,
0.019228875637054443,
0.09702000766992569,
0.09057535231113434,
-0.0480196475982666,
0.015087136067450047,
0.04588310793042183,
-0.0697353184223175,
0.02246871218085289,
-0.022030897438526154,
-0.0013397167203947902,
-0.0642363503575325,
-0.02809026837348938,
-0.024219976738095284,
-0.09702000766992569,
-0.07992767542600632,
-0.05502470210194588,
0.010096034966409206,
-0.0065803732722997665,
-0.051942478865385056,
0.06276528537273407,
0.007495408412069082,
0.018283192068338394,
-0.05015619099140167,
-0.019404001533985138,
-0.03336157277226448,
0.05061151832342148,
0.0302268099039793,
0.03800242021679878,
0.10626667737960815,
0.05187242850661278,
0.044166870415210724,
0.037932369858026505,
-0.0033558588474988937,
-0.034184668213129044,
-0.02057734876871109,
0.04777447134256363,
-0.026584181934595108,
0.032293301075696945,
0.020962625741958618,
0.007889443077147007,
-0.006168826017528772,
0.00748227396979928,
0.002701324177905917,
0.009745782241225243,
0.050716593861579895,
-0.027319712564349174,
-0.021715668961405754,
0.02471032924950123,
-0.0406293161213398,
-0.004117658827453852,
0.0033689935225993395,
0.06742364913225174,
-0.030682139098644257,
0.026636719703674316,
-0.04017398878931999,
0.05302826315164566,
0.05838713049888611,
-0.003568199696019292,
-0.012915569357573986,
0.041014593094587326,
-0.1054961234331131,
0.0018421104177832603,
-0.032591015100479126,
-0.057301346212625504,
-0.02900092676281929,
0.024097388610243797,
0.004435074981302023,
-0.03280116990208626,
0.033589236438274384,
0.06724852323532104,
0.00639649061486125,
0.019806791096925735,
0.04700391739606857,
0.0680190771818161,
0.01543738879263401,
-0.03224076330661774,
-0.016637004911899567,
0.07740585505962372,
-0.02584865130484104,
-0.00570036331191659,
-0.045112550258636475,
0.0381074957549572,
0.003145707305520773,
0.027617428451776505,
0.028808286413550377,
0.06602264195680618,
-0.014780664816498756,
0.015017085708677769,
-0.05772164836525917,
-0.0010885198134928942,
-0.021610593423247337,
-0.09078551083803177,
-0.0663028433918953,
-0.015927743166685104,
-0.00022574882314074785,
-0.020769987255334854,
0.07145155966281891,
-0.002701324177905917,
-0.008068947121500969,
-0.04367651417851448,
-0.06766882538795471,
0.03649633377790451,
0.016470635309815407,
-0.03989378735423088,
0.02210094779729843,
-0.033186446875333786,
-0.014158966951072216,
-0.008125863038003445,
-0.011803517118096352,
0.07229216396808624,
-0.019806791096925735,
-0.016601979732513428,
0.05271303653717041,
0.017967965453863144,
-0.05397394672036171,
-0.03055955097079277,
-0.005547127686440945,
-0.022311098873615265,
0.04942065849900246,
-0.009500605054199696,
0.00646216282621026,
-0.0018530559027567506,
-0.09561899304389954,
0.025691037997603416,
-0.013222040608525276,
0.01185605488717556,
0.017136115580797195,
-0.02022709511220455,
-0.009658219292759895,
-0.010358724743127823,
-0.011199330911040306,
0.022048410028219223,
-0.0003860988945234567,
0.060103368014097214,
-0.027302199974656105,
0.018545882776379585,
-0.042870935052633286,
-0.00725460983812809,
0.022853991016745567,
-0.00825720839202404,
-0.03709176555275917,
0.01612038165330887,
-0.028808286413550377,
0.025218196213245392,
0.016855912283062935,
0.015805155038833618,
0.09169616550207138,
0.03716181591153145,
-0.03593593090772629,
-0.021925820037722588,
0.03691663593053818,
-0.006755499634891748,
-0.035130348056554794,
-0.029263615608215332,
-0.008935823105275631,
-0.013493486680090427,
0.011593365110456944,
-0.01231138315051794,
0.027932655066251755,
0.021715668961405754,
0.011330675333738327,
0.01545490138232708,
0.015244750306010246,
0.04420189559459686,
0.02523570880293846,
0.04248565435409546,
0.014912010170519352,
-0.04332626238465309,
-0.013309603556990623,
-0.05313333868980408,
-0.019456539303064346,
-0.0406293161213398,
-0.05498967692255974,
-0.04269580915570259,
-0.005564640276134014,
-0.07600484043359756,
-0.017118602991104126,
0.026636719703674316,
-0.0536937415599823,
-0.039123229682445526,
0.02152303047478199,
0.022258561104536057,
-0.018335729837417603,
0.02061237394809723,
-0.008944579400122166,
0.014973304234445095,
0.059788141399621964,
0.001944997231476009,
-0.033834412693977356,
0.007902577519416809,
0.01994689367711544,
-0.012223820202052593,
-0.0057222540490329266,
-0.032591015100479126,
-0.046688687056303024,
-0.006203851662576199,
-0.04182017594575882,
0.0812586322426796,
0.01870349608361721,
-0.008909554220736027,
0.010384993627667427,
0.026426568627357483,
0.017390048131346703,
0.001856339513324201,
-0.01636555790901184,
0.007832526229321957,
0.01908877305686474,
0.022994091734290123,
-0.016164163127541542,
-0.005875489674508572,
-0.015927743166685104,
0.00038883526576682925,
0.019561614841222763,
-0.0642363503575325,
-0.09659970551729202,
0.027267174795269966,
0.0362161323428154,
-0.011864811182022095,
-0.0368465855717659,
0.07761600613594055,
-0.05393892154097557,
0.03800242021679878,
-0.014123941771686077,
0.03421969339251518,
0.060979001224040985,
-0.02309916727244854,
-0.00922040268778801,
-0.006991920061409473,
0.008804477751255035,
0.0215755682438612,
0.006974407471716404,
-0.010209866799414158,
-0.027915142476558685,
-0.05089171975851059,
0.0024167438969016075,
0.014010109007358551,
-0.023484446108341217,
-0.010096034966409206,
-0.022836478427052498,
0.027915142476558685,
0.0299991462379694,
-0.019141310825943947,
0.009570655412971973,
-0.014859472401440144,
-0.022994091734290123,
0.011251868680119514,
0.03954353183507919,
0.02059486135840416,
-0.04858005419373512,
-0.01511340495198965,
-0.08413070440292358,
-0.003933776170015335,
0.0012521535390987992,
-0.019439026713371277,
-0.0865824744105339,
0.05281811207532883,
-0.008414821699261665,
-0.04311611130833626,
0.015384851023554802,
-0.03246842697262764,
-0.03866790235042572,
-0.036356233060359955,
0.03768719360232353,
-0.06584751605987549,
-0.023221755400300026,
0.024517690762877464,
0.05418409779667854,
-0.01844080537557602,
0.03786231949925423,
0.056635867804288864,
-0.008213426917791367,
-0.030051684007048607,
0.05033131688833237,
-0.007810635957866907,
-0.07320281863212585,
-0.011768491938710213,
0.0038527799770236015,
0.02562098763883114,
0.021628106012940407,
-0.00046818939154036343,
0.0678439512848854,
0.004623336251825094,
0.014018865302205086,
-0.04591813310980797,
0.07103125005960464,
-0.06294041872024536,
-0.02936869114637375,
0.019859328866004944,
-0.012416459619998932,
-0.004921050742268562,
-0.03492019698023796,
0.04048921540379524,
0.022276073694229126,
0.011558339931070805,
-0.025025557726621628,
0.054114047437906265,
-0.04269580915570259,
-0.02367708459496498,
-0.02555093728005886,
0.016461879014968872,
0.001589271705597639,
-0.05961301550269127,
-0.03280116990208626,
-0.06570741534233093,
-0.00433218851685524,
0.03029686026275158,
-0.010201110504567623,
-0.02026212029159069,
-0.0013714582892134786,
-0.007385954260826111,
-0.018493345007300377,
-0.024867944419384003,
-0.0017633035313338041,
0.037582118064165115,
-0.03173289820551872,
0.009001495316624641,
0.07453378289937973,
0.008397309109568596,
-0.019474051892757416,
0.017521392554044724,
0.03061208873987198,
-0.04080444201827049,
0.015778886154294014,
-0.05012116581201553,
-0.010358724743127823,
-0.007793123368173838,
0.017074819654226303,
0.02471032924950123,
-0.010525094345211983,
-0.01513091754168272,
-0.04206535220146179,
0.018300704658031464,
-0.009281697683036327,
-0.032643552869558334,
0.027302199974656105,
0.041049618273973465,
0.012118744663894176,
0.0012652879813686013,
-0.026689257472753525,
-0.03159279748797417,
-0.019456539303064346,
-0.03975368291139603,
-0.03029686026275158,
0.004916672594845295,
-0.013563537038862705,
-0.02150551788508892,
-0.010306186974048615,
0.050751619040966034,
-0.0014579269336536527,
0.013773688115179539,
-0.0011755357263609767,
-0.025831138715147972,
0.06679319590330124,
0.03560319170355797,
0.07215206325054169,
-0.0771256536245346,
0.00023163198784459382,
0.017206165939569473,
-0.04829985275864601,
0.05460439994931221,
-0.016925962641835213,
0.01626923866569996,
0.03863287717103958,
-0.02586616389453411,
0.003627304919064045,
-0.053518615663051605,
-0.01873852126300335,
-0.02835295908153057,
0.012250089086592197,
0.03087477758526802,
-0.05201252922415733,
0.04329123720526695,
-0.03052452579140663,
-0.04024403914809227,
0.0018092743121087551,
-0.004487613216042519,
0.021137751638889313,
0.06924496591091156,
0.011724710464477539,
0.003955666907131672,
-0.058176979422569275,
0.0085811922326684,
-0.06059372052550316,
0.03456994518637657,
0.019193850457668304,
-0.0067686340771615505,
-0.07425358146429062,
-0.037301916629076004,
0.0052756816148757935,
0.027057023718953133,
-0.003340535331517458,
-0.04808969795703888,
-0.009772051125764847,
0.007412223611027002,
-0.000193596730241552,
0.003520039841532707,
-0.008436712436378002,
0.04889528080821037,
-0.01868598349392414,
-0.013616074807941914,
-0.03765216842293739,
0.00786755234003067,
-0.05015619099140167,
-0.005875489674508572,
-0.0007721977890469134,
-0.07208201289176941,
-0.03215320035815239,
-0.05085669457912445,
0.03367679938673973,
0.04966583847999573,
0.017433829605579376,
-0.007311525754630566,
0.012197551317512989,
-0.00607250677421689,
0.004894781857728958,
0.06283534318208694,
0.052572935819625854,
-0.03413212671875954,
0.06259015947580338,
0.008103972300887108,
0.062239911407232285,
-0.0022361448500305414,
-0.003815565723925829,
0.03206563740968704,
0.08048807829618454,
-0.038247596472501755,
-0.03737196698784828,
0.03276614099740982,
0.005967430770397186,
-0.053518615663051605,
-0.039438456296920776,
-0.023501958698034286,
0.017915427684783936,
0.0009008062188513577,
-0.0005987132317386568,
0.010498825460672379,
0.03737196698784828,
0.002057734876871109,
-0.03968363255262375,
0.0031500854529440403,
-0.05204755440354347,
0.007184559013694525,
0.03087477758526802,
0.05642571300268173,
0.02313419245183468,
-0.02374713495373726,
-0.0028873959090560675,
-0.07446373254060745,
-0.022048410028219223,
0.03521791100502014,
-0.0681942030787468,
0.013633587397634983,
-0.03751206770539284,
-0.00918537750840187,
-0.05796682834625244,
-0.043886665254831314,
-0.07880686223506927,
-0.016637004911899567,
0.07173176109790802,
0.009903395548462868,
0.00031358565320260823,
-0.007228340487927198,
-0.029543817043304443,
-0.024412615224719048,
0.006856197025626898,
0.0054770768620073795,
0.05222268030047417,
-0.0007486651884391904,
-0.006357086822390556,
0.0030953586101531982,
0.014474194496870041,
-0.003419342217966914,
-0.01838826760649681,
0.013659856282174587,
0.018318217247724533,
0.0026794334407895803,
-0.04490239918231964,
0.00749978655949235,
0.009737025946378708,
0.007631131447851658,
0.0023642058949917555,
0.05365871638059616,
0.044096820056438446,
-0.040419165045022964,
0.008213426917791367,
-0.003870292566716671,
0.011654659174382687,
-0.0016976312035694718,
0.015411119908094406,
0.04273083433508873,
-0.08455100655555725,
0.12293870747089386,
0.04500747472047806,
-0.024412615224719048,
-0.020489783957600594,
0.05264298617839813,
0.05281811207532883,
0.06087392568588257,
0.0057660355232656,
-0.058527231216430664,
0.028773261234164238,
-0.045672956854104996,
0.029561329632997513,
-0.014325336553156376,
0.0032157578971236944,
0.0404541902244091,
-0.011024205014109612,
0.00903652049601078,
-0.0012598152970895171,
-0.015043354593217373,
-0.034447357058525085,
0.054779525846242905,
-0.030471988022327423,
-0.061294227838516235,
-0.036671459674835205,
0.04591813310980797,
0.00995593424886465,
0.03492019698023796,
-0.0038593471981585026,
-0.026619207113981247,
0.10290425270795822,
0.02404484897851944,
-0.015621271915733814,
0.026023777201771736,
0.01966669037938118,
0.0038111875765025616
]
|
42,268 | pydle.client | __init__ | null | def __init__(self, channel):
super().__init__('Already in channel: {}'.format(channel))
self.channel = channel
| (self, channel) | [
-0.053557589650154114,
-0.01930239237844944,
-0.002406248589977622,
0.0351460762321949,
0.006100778933614492,
-0.0027599800378084183,
0.036298979073762894,
0.09041555225849152,
0.05736566334962845,
-0.021782880648970604,
0.01185219269245863,
0.037312135100364685,
-0.03661340847611427,
0.021433517336845398,
-0.06442282348871231,
0.013791166245937347,
0.03532075881958008,
-0.008961201645433903,
0.016533678397536278,
-0.016804436221718788,
-0.035198479890823364,
0.018656067550182343,
0.027267904952168465,
0.03608936071395874,
-0.0016955099999904633,
0.10606708377599716,
-0.029521306976675987,
0.016236718744039536,
-0.020577574148774147,
-0.03547797352075577,
-0.022306928411126137,
-0.0478629469871521,
-0.01851632259786129,
0.04898091405630112,
-0.00827120617032051,
-0.013048767112195492,
-0.08538470417261124,
-0.0047426242381334305,
-0.13275854289531708,
0.010664353147149086,
0.0831487700343132,
0.010760428383946419,
0.01239370834082365,
-0.011118527501821518,
-0.012288899160921574,
0.014769387431442738,
0.023599576205015182,
0.07280758023262024,
-0.018324172124266624,
-0.03567012399435043,
-0.030656741932034492,
0.03640379011631012,
-0.009808409959077835,
0.0024259001947939396,
-0.08636292070150375,
0.032927609980106354,
0.028036506846547127,
0.03905896097421646,
-0.033870894461870193,
0.0834282636642456,
-0.07706982642412186,
0.03469190374016762,
0.032752927392721176,
0.023966409265995026,
0.007528806570917368,
-0.009118415415287018,
0.0012424277374520898,
0.02001859061419964,
0.02062997780740261,
0.04160932078957558,
0.07196909934282303,
0.010847769677639008,
-0.019966185092926025,
-0.005030849948525429,
0.00021603285858873278,
-0.0190753061324358,
-0.05593326687812805,
0.07720956951379776,
0.010611948557198048,
0.048212312161922455,
0.041469573974609375,
0.03490152209997177,
-0.005227367393672466,
0.01570393703877926,
0.05471049249172211,
-0.016734562814235687,
0.01121460273861885,
-0.03125065937638283,
-0.06861520558595657,
0.007934942841529846,
-0.03484911471605301,
0.009092212654650211,
0.02784435637295246,
0.005423884838819504,
0.0026398859918117523,
-0.02094440534710884,
0.012778009288012981,
-0.00945031177252531,
0.032525841146707535,
-0.0040067750960588455,
-0.04639561474323273,
0.0045111700892448425,
-0.030621804296970367,
-0.054011762142181396,
-0.028892450034618378,
-0.06554079055786133,
-0.01717126928269863,
-0.05726085230708122,
-0.010079167783260345,
-0.010725492611527443,
-0.01891809143126011,
0.02863042615354061,
0.0038975984789431095,
0.04003718122839928,
-0.010533342137932777,
-0.016961650922894478,
-0.050168752670288086,
-0.03289267420768738,
0.035739995539188385,
-0.023180339485406876,
0.015110017731785774,
0.05093735456466675,
-0.018795814365148544,
0.010655619204044342,
0.03469190374016762,
0.026010192930698395,
-0.04894597828388214,
-0.021398579701781273,
0.09104441106319427,
-0.013895975425839424,
0.021241366863250732,
0.000345270469551906,
0.013223448768258095,
-0.05474542826414108,
0.013249651528894901,
0.013957114890217781,
-0.005292873363941908,
-0.02283097431063652,
0.00606147525832057,
0.03140787407755852,
-0.00041323277400806546,
0.008969935588538647,
0.008987403474748135,
-0.02824612520635128,
0.038639720529317856,
0.03720732778310776,
-0.037312135100364685,
0.000477373949252069,
-0.01883075013756752,
-0.03304988890886307,
0.01573014073073864,
-0.022411737591028214,
-0.005166228394955397,
0.03222888335585594,
-0.001614719396457076,
0.0350063294172287,
-0.04967964068055153,
0.04269235208630562,
0.0037971562705934048,
0.01993124932050705,
0.013005096465349197,
-0.03208913654088974,
-0.004843066446483135,
0.06945367902517319,
-0.02801903896033764,
-0.0011081408010795712,
0.024071218445897102,
-0.04817737638950348,
-0.004546106327325106,
0.04842193052172661,
-0.005821287166327238,
-0.02800157107412815,
-0.03226381912827492,
-0.013895975425839424,
-0.045068029314279556,
0.057086169719696045,
-0.00038375513395294547,
0.020595042034983635,
0.010384862311184406,
-0.03355646878480911,
-0.021328706294298172,
-0.022097310051321983,
-0.014306479133665562,
-0.0005464280257001519,
0.0635843500494957,
-0.009520184248685837,
0.05422138050198555,
0.04132982715964317,
0.02094440534710884,
0.0017435476183891296,
0.003762219799682498,
0.012419910170137882,
0.025049440562725067,
0.02337248995900154,
0.02424590103328228,
0.0028364036697894335,
-0.011004984378814697,
-0.04768826439976692,
-0.05956665799021721,
0.04926040396094322,
0.04363563656806946,
0.03074408322572708,
-0.010402330197393894,
-0.04297184199094772,
0.02761727012693882,
0.007030962035059929,
0.03867466002702713,
0.0207173191010952,
0.023599576205015182,
-0.02001859061419964,
-0.05310341343283653,
-0.01015777513384819,
0.05069280043244362,
-0.011144730262458324,
-0.010891440324485302,
-0.040456417948007584,
0.016236718744039536,
0.00724058086052537,
0.0017719333991408348,
0.024542860686779022,
0.06927899271249771,
-0.0015775994397699833,
-0.03325950726866722,
-0.006554952822625637,
-0.04803762957453728,
0.0163589958101511,
0.046954598277807236,
-0.024769948795437813,
-0.01734595187008381,
0.009843346662819386,
-0.011039920151233673,
0.023599576205015182,
-0.005043950863182545,
0.04042148217558861,
-0.04793281853199005,
0.03161749243736267,
-0.04517284035682678,
0.03020256757736206,
-0.07811792194843292,
-0.011983204632997513,
0.013433068059384823,
0.009782208129763603,
0.04150450974702835,
0.06197727471590042,
0.05240468680858612,
-0.04063110053539276,
-0.002524159150198102,
0.043670572340488434,
-0.04653536155819893,
0.01479558926075697,
-0.02651677094399929,
-0.04422955587506294,
-0.06204714626073837,
-0.018498854711651802,
-0.03947819769382477,
-0.10376127809286118,
-0.05090241879224777,
-0.038569848984479904,
-0.00790874008089304,
-0.02024567686021328,
-0.05118190869688988,
0.060999054461717606,
-0.007729690987616777,
0.04433436319231987,
0.0012173171853646636,
-0.013188512995839119,
-0.030779018998146057,
0.013843570835888386,
0.005314708687365055,
0.011791054159402847,
0.11312425136566162,
0.01103118620812893,
0.034552156925201416,
0.03418532386422157,
-0.03678809106349945,
-0.06655395030975342,
-0.01930239237844944,
0.011817256920039654,
-0.056457314640283585,
0.036927834153175354,
0.03177470713853836,
0.016437603160738945,
0.022534014657139778,
0.024228433147072792,
0.011004984378814697,
-0.026394493877887726,
0.059741340577602386,
-0.0035176645033061504,
-0.031355470418930054,
-0.015948493033647537,
-0.030464591458439827,
0.02111908793449402,
0.029084600508213043,
0.07011746615171432,
0.020734786987304688,
0.011642574332654476,
-0.028053974732756615,
0.08377762138843536,
0.03650859743356705,
-0.012376239523291588,
0.0022206485737115145,
0.00861620344221592,
-0.10397090017795563,
0.02111908793449402,
-0.042098432779312134,
-0.02118896134197712,
-0.04974951595067978,
0.05453580990433693,
0.023791726678609848,
-0.035198479890823364,
0.06634433567523956,
0.07238833606243134,
0.006218689493834972,
0.02974839322268963,
0.012524720281362534,
0.058099329471588135,
0.03207166865468025,
-0.027669673785567284,
0.000984225538559258,
0.07511338591575623,
-0.009249427355825901,
-0.02056010439991951,
-0.04251766949892044,
0.05869324877858162,
0.003323330543935299,
0.03561771661043167,
0.029695989564061165,
0.04936521500349045,
-0.023564640432596207,
0.008148929104208946,
-0.02910206839442253,
0.01676076464354992,
-0.006690331734716892,
-0.10089648514986038,
-0.054186444729566574,
-0.014140531420707703,
-0.02721549943089485,
-0.019354797899723053,
0.03752175346016884,
-0.023355022072792053,
0.00004257880573277362,
-0.028997259214520454,
-0.0670081228017807,
0.04325133562088013,
0.02040289156138897,
-0.02887498214840889,
-0.0035766197834163904,
-0.04534752294421196,
-0.016891777515411377,
-0.023756790906190872,
0.015791278332471848,
0.02368691749870777,
-0.009092212654650211,
0.0021911708172410727,
0.0412948913872242,
0.005947931669652462,
-0.04831711947917938,
-0.019721630960702896,
-0.014638375490903854,
-0.010166509076952934,
0.04426449164748192,
0.01631532609462738,
-0.0021562345791608095,
-0.010018029250204563,
-0.08196093142032623,
0.030115226283669472,
0.009965624660253525,
0.024525392800569534,
0.04604624956846237,
-0.018708473071455956,
-0.0008362914668396115,
-0.004921673331409693,
-0.013136107474565506,
0.036823026835918427,
-0.011764852330088615,
0.010446000844240189,
-0.05837881937623024,
0.012489783577620983,
-0.016367729753255844,
-0.02354717254638672,
0.01326711941510439,
0.011275741271674633,
-0.015669001266360283,
0.031652431935071945,
-0.03811567649245262,
0.0310759786516428,
0.0028189353179186583,
0.021835286170244217,
0.09020593017339706,
0.026796262711286545,
-0.02031555026769638,
0.008996137417852879,
0.01717126928269863,
-0.03577493131160736,
-0.03374861925840378,
-0.04842193052172661,
0.02062997780740261,
-0.0027796318754553795,
0.014568503014743328,
-0.02604512870311737,
0.028682831674814224,
-0.005572365131229162,
-0.001732629956677556,
-0.012769275344908237,
0.014018253423273563,
0.04926040396094322,
0.03240356594324112,
0.050168752670288086,
0.01876087673008442,
-0.04541739448904991,
0.002945580054074526,
-0.039897434413433075,
-0.029643584042787552,
-0.0461510606110096,
-0.022237055003643036,
-0.07245821505784988,
0.013747495599091053,
-0.07483389228582382,
0.00022967990662436932,
0.02080466039478779,
-0.0732966884970665,
0.008563798852264881,
0.015896087512373924,
0.005301607307046652,
-0.006410839967429638,
0.056142885237932205,
-0.0034565257374197245,
0.0011256090365350246,
0.08580394089221954,
-0.011022452265024185,
-0.06113880127668381,
0.038325294852256775,
-0.0002895904763136059,
0.02237679995596409,
0.014026987366378307,
-0.0019313310040161014,
-0.007131404243409634,
-0.024997035041451454,
-0.056212760508060455,
0.06875494867563248,
-0.005921729374676943,
-0.030237503349781036,
0.026149937883019447,
0.014350149780511856,
0.006458877585828304,
0.03278786689043045,
-0.04174906760454178,
0.015599127858877182,
0.026796262711286545,
-0.007699121721088886,
-0.029049664735794067,
0.012079279869794846,
-0.010699289850890636,
-0.018062148243188858,
-0.01248104963451624,
-0.05306847766041756,
-0.05736566334962845,
0.03355646878480911,
0.03491898998618126,
-0.038954149931669235,
-0.05184570327401161,
0.049155596643686295,
-0.06826584041118622,
0.024595266208052635,
0.0018559993477538228,
0.049539897590875626,
0.06250131875276566,
-0.03390583023428917,
-0.04230805113911629,
0.009790942072868347,
0.024839820340275764,
0.03696277365088463,
0.0025656460784375668,
-0.015834949910640717,
-0.030499527230858803,
-0.05404669791460037,
-0.02628968469798565,
-0.008175130933523178,
-0.053313035517930984,
-0.002949947025626898,
-0.07706982642412186,
0.027914229780435562,
0.021555794402956963,
0.0030154529958963394,
-0.007397794630378485,
-0.01566026732325554,
-0.014585970900952816,
-0.01738962158560753,
0.06410840153694153,
0.007690387777984142,
-0.0558633953332901,
0.00877341814339161,
-0.06522636860609055,
-0.002228291006758809,
0.015826215967535973,
-0.0037949727848172188,
-0.068580262362957,
0.053313035517930984,
0.0041312361136078835,
-0.017992274835705757,
-0.030080290511250496,
-0.002594031859189272,
-0.04070097208023071,
-0.032036732882261276,
0.015529255382716656,
-0.065156489610672,
-0.040910590440034866,
0.011013718321919441,
0.028193721547722816,
0.0021365827415138483,
0.07965512573719025,
0.027949165552854538,
-0.034394942224025726,
-0.0477232001721859,
0.043426018208265305,
-0.011188399977982044,
-0.06812608987092972,
0.011467891745269299,
-0.0015208276454359293,
0.0026966577861458063,
0.05453580990433693,
-0.000019805285774054937,
0.034010641276836395,
-0.015625329688191414,
0.02737271413207054,
-0.03250837326049805,
0.06239651143550873,
-0.03484911471605301,
-0.01891809143126011,
0.03399317339062691,
0.0001273952511837706,
-0.026464367285370827,
-0.06082437187433243,
0.039268579334020615,
0.02496209926903248,
0.0555839017033577,
-0.023197807371616364,
0.05146140232682228,
-0.07039695978164673,
-0.012917755171656609,
-0.01770404912531376,
-0.020664913579821587,
0.019005432724952698,
-0.09237199276685715,
-0.030115226283669472,
-0.04737383499741554,
-0.01533710490912199,
0.029538774862885475,
-0.005712110549211502,
-0.010489671491086483,
0.0002667999069672078,
-0.0397227518260479,
-0.06634433567523956,
-0.03137293830513954,
0.012725604698061943,
0.02980079874396324,
-0.031110914424061775,
0.005174962803721428,
0.0637241005897522,
0.02559095434844494,
-0.009624994359910488,
0.03654353320598602,
-0.0075986795127391815,
-0.018656067550182343,
0.023005656898021698,
-0.039198704063892365,
0.010638151317834854,
-0.009502716362476349,
0.002447735518217087,
0.032036732882261276,
-0.00724058086052537,
-0.033696211874485016,
-0.03242103382945061,
0.043984998017549515,
-0.025905383750796318,
-0.01647253893315792,
0.04831711947917938,
0.04866648465394974,
0.024210965260863304,
0.0014214770635589957,
-0.032368626445531845,
-0.019739098846912384,
-0.015939759090542793,
-0.031128384172916412,
-0.0528588593006134,
-0.016262920573353767,
0.0048605347983539104,
-0.011004984378814697,
-0.014070658013224602,
0.013965848833322525,
0.012437378987669945,
0.008454622700810432,
-0.012524720281362534,
-0.015459381975233555,
0.030621804296970367,
-0.015406977385282516,
0.08699177950620651,
-0.06019551679491997,
0.017180003225803375,
0.02581804245710373,
-0.03584480658173561,
0.04831711947917938,
-0.034010641276836395,
0.022341864183545113,
0.024665139615535736,
-0.03427266329526901,
0.0005917362286709249,
-0.03525088354945183,
-0.016376463696360588,
-0.0036071892827749252,
-0.008424052968621254,
0.022167181596159935,
-0.031215725466609,
0.048142436891794205,
-0.012874084524810314,
-0.02730284072458744,
0.008712278679013252,
-0.001326493569649756,
0.04412474483251572,
0.05855350196361542,
0.013240917585790157,
0.03352152928709984,
-0.0448584109544754,
0.017564304172992706,
-0.06882482022047043,
0.0036988973151892424,
0.009441577829420567,
-0.035984549671411514,
-0.045627012848854065,
-0.005843122489750385,
0.03201926127076149,
-0.009563854895532131,
-0.0032578245736658573,
-0.028455743566155434,
0.014000785537064075,
-0.027949165552854538,
-0.033538997173309326,
-0.010821567848324776,
0.015712670981884003,
0.02408868819475174,
-0.006271094083786011,
-0.031827110797166824,
0.006175018846988678,
-0.03332937881350517,
-0.04489334672689438,
-0.013930912129580975,
0.0007134679472073913,
-0.050972290337085724,
-0.06239651143550873,
-0.053313035517930984,
0.018970496952533722,
0.0206474456936121,
0.015782544389367104,
0.024979567155241966,
-0.005375847220420837,
0.004559207707643509,
0.005227367393672466,
0.08699177950620651,
0.05160114914178848,
-0.012079279869794846,
0.03436000645160675,
0.013109905645251274,
0.05380214378237724,
0.013642686419188976,
0.008293041959404945,
0.02401881478726864,
0.06606484204530716,
-0.02831599861383438,
-0.06861520558595657,
0.021922627463936806,
0.014813058078289032,
-0.023180339485406876,
-0.04167919233441353,
-0.018394045531749725,
0.020210741087794304,
-0.020105931907892227,
-0.015494318678975105,
0.018254298716783524,
0.05893780291080475,
-0.00030869635520502925,
-0.045068029314279556,
-0.004921673331409693,
-0.01867353729903698,
-0.00906601082533598,
0.040910590440034866,
0.07151492685079575,
-0.012079279869794846,
-0.0223593320697546,
-0.007026595063507557,
-0.08978669345378876,
-0.03626404330134392,
0.017407089471817017,
-0.06351447850465775,
-0.007445832248777151,
-0.010253850370645523,
-0.016795702278614044,
-0.04898091405630112,
-0.0828692764043808,
-0.0494350865483284,
-0.0348665826022625,
0.08251991122961044,
0.008397851139307022,
0.007681653369218111,
0.009983092546463013,
-0.03076155111193657,
-0.028141316026449203,
0.0018996698781847954,
0.0034325069282203913,
0.05397682636976242,
-0.0008324702503159642,
0.005720844957977533,
0.0295038390904665,
0.014926601201295853,
-0.00788690522313118,
-0.007834500633180141,
0.01368635706603527,
-0.013284588232636452,
-0.0008117267279885709,
-0.037067580968141556,
0.00645014364272356,
0.008498293347656727,
-0.005087621510028839,
-0.004537372384220362,
0.06561066955327988,
0.0891578420996666,
-0.02440311573445797,
-0.012096748687326908,
0.04290197044610977,
0.03210660442709923,
-0.031268130987882614,
0.0007811573450453579,
0.010847769677639008,
-0.07525312900543213,
0.09852080792188644,
0.04346095398068428,
-0.024141091853380203,
0.009939421899616718,
0.030656741932034492,
0.06152310222387314,
0.043111588805913925,
-0.023023124784231186,
-0.0667286366224289,
0.027722079306840897,
-0.005432619247585535,
0.05184570327401161,
-0.0015120935859158635,
0.006423940882086754,
0.024595266208052635,
0.014970271848142147,
-0.00008488467574352399,
-0.016035834327340126,
-0.016926713287830353,
-0.0510072261095047,
0.04926040396094322,
-0.03930351510643959,
-0.036578468978405,
-0.02644689753651619,
0.05146140232682228,
0.0015819664113223553,
0.016219250857830048,
-0.009074744768440723,
-0.04684979096055031,
0.09803169965744019,
0.020367953926324844,
0.006467611528933048,
0.05628263205289841,
0.03849997743964195,
0.008528863079845905
]
|
42,269 | pydle.client | BasicClient |
Base IRC client class.
This class on its own is not complete: in order to be able to run properly, _has_message, _parse_message and _create_message have to be overloaded.
| class BasicClient:
"""
Base IRC client class.
This class on its own is not complete: in order to be able to run properly, _has_message, _parse_message and _create_message have to be overloaded.
"""
READ_TIMEOUT = 300
RECONNECT_ON_ERROR = True
RECONNECT_MAX_ATTEMPTS = 3
RECONNECT_DELAYED = True
RECONNECT_DELAYS = [5, 5, 10, 30, 120, 600]
@property
def PING_TIMEOUT(self):
warnings.warn(
"PING_TIMEOUT has been moved to READ_TIMEOUT and may be removed in a future version. "
"Please migrate to READ_TIMEOUT.",
DeprecationWarning
)
return self.READ_TIMEOUT
@PING_TIMEOUT.setter
def PING_TIMEOUT(self, value):
warnings.warn(
"PING_TIMEOUT has been moved to READ_TIMEOUT and may be removed in a future version",
DeprecationWarning
)
self.READ_TIMEOUT = value
def __init__(self, nickname, fallback_nicknames=None, username=None, realname=None,
eventloop=None, **kwargs):
""" Create a client. """
self._nicknames = [nickname] + (fallback_nicknames or [])
self.username = username or nickname.lower()
self.realname = realname or nickname
if eventloop:
self.eventloop = eventloop
else:
self.eventloop = get_event_loop()
self.own_eventloop = not eventloop
self._reset_connection_attributes()
self._reset_attributes()
if kwargs:
self.logger.warning('Unused arguments: %s', ', '.join(kwargs.keys()))
def _reset_attributes(self):
""" Reset attributes. """
# Record-keeping.
self.channels = {}
self.users = {}
# Low-level data stuff.
self._receive_buffer = b''
self._pending = {}
self._handler_top_level = False
# Misc.
self.logger = logging.getLogger(__name__)
# Public connection attributes.
self.nickname = DEFAULT_NICKNAME
self.network = None
def _reset_connection_attributes(self):
""" Reset connection attributes. """
self.connection = None
self.encoding = None
self._autojoin_channels = []
self._reconnect_attempts = 0
## Connection.
def run(self, *args, **kwargs):
""" Connect and run bot in event loop. """
self.eventloop.run_until_complete(self.connect(*args, **kwargs))
try:
self.eventloop.run_forever()
finally:
self.eventloop.stop()
async def connect(self, hostname=None, port=None, reconnect=False, **kwargs):
""" Connect to IRC server. """
if (not hostname or not port) and not reconnect:
raise ValueError('Have to specify hostname and port if not reconnecting.')
# Disconnect from current connection.
if self.connected:
await self.disconnect(expected=True)
# Reset attributes and connect.
if not reconnect:
self._reset_connection_attributes()
await self._connect(hostname=hostname, port=port, reconnect=reconnect, **kwargs)
# Set logger name.
if self.server_tag:
self.logger = logging.getLogger(self.__class__.__name__ + ':' + self.server_tag)
self.eventloop.create_task(self.handle_forever())
async def disconnect(self, expected=True):
""" Disconnect from server. """
if self.connected:
# Schedule disconnect.
await self._disconnect(expected)
async def _disconnect(self, expected):
# Shutdown connection.
await self.connection.disconnect()
# Reset any attributes.
self._reset_attributes()
# Callback.
await self.on_disconnect(expected)
# Shut down event loop.
if expected and self.own_eventloop:
self.connection.stop()
async def _connect(self, hostname, port, reconnect=False, channels=None,
encoding=protocol.DEFAULT_ENCODING, source_address=None):
""" Connect to IRC host. """
# Create connection if we can't reuse it.
if not reconnect or not self.connection:
self._autojoin_channels = channels or []
self.connection = connection.Connection(hostname, port, source_address=source_address,
eventloop=self.eventloop)
self.encoding = encoding
# Connect.
await self.connection.connect()
def _reconnect_delay(self):
""" Calculate reconnection delay. """
if self.RECONNECT_ON_ERROR and self.RECONNECT_DELAYED:
if self._reconnect_attempts >= len(self.RECONNECT_DELAYS):
return self.RECONNECT_DELAYS[-1]
return self.RECONNECT_DELAYS[self._reconnect_attempts]
return 0
## Internal database management.
def _create_channel(self, channel):
self.channels[channel] = {
'users': set(),
}
def _destroy_channel(self, channel):
# Copy set to prevent a runtime error when destroying the user.
for user in set(self.channels[channel]['users']):
self._destroy_user(user, channel)
del self.channels[channel]
def _create_user(self, nickname):
# Servers are NOT users.
if not nickname or '.' in nickname:
return
self.users[nickname] = {
'nickname': nickname,
'username': None,
'realname': None,
'hostname': None
}
async def _sync_user(self, nick, metadata):
# Create user in database.
if nick not in self.users:
await self._create_user(nick)
if nick not in self.users:
return
self.users[nick].update(metadata)
async def _rename_user(self, user, new):
if user in self.users:
self.users[new] = self.users[user]
self.users[new]['nickname'] = new
del self.users[user]
else:
await self._create_user(new)
if new not in self.users:
return
for ch in self.channels.values():
# Rename user in channel list.
if user in ch['users']:
ch['users'].discard(user)
ch['users'].add(new)
def _destroy_user(self, nickname, channel=None):
if channel:
channels = [self.channels[channel]]
else:
channels = self.channels.values()
for ch in channels:
# Remove from nicklist.
ch['users'].discard(nickname)
# If we're not in any common channels with the user anymore, we have no reliable way to keep their info up-to-date.
# Remove the user.
if not channel or not any(nickname in ch['users'] for ch in self.channels.values()):
del self.users[nickname]
def _parse_user(self, data):
""" Parse user and return nickname, metadata tuple. """
raise NotImplementedError()
def _format_user_mask(self, nickname):
user = self.users.get(nickname, {"nickname": nickname, "username": "*", "hostname": "*"})
return self._format_host_mask(user['nickname'], user['username'] or '*',
user['hostname'] or '*')
def _format_host_mask(self, nick, user, host):
return '{n}!{u}@{h}'.format(n=nick, u=user, h=host)
## IRC helpers.
def is_channel(self, chan):
""" Check if given argument is a channel name or not. """
return True
def in_channel(self, channel):
""" Check if we are currently in the given channel. """
return channel in self.channels.keys()
def is_same_nick(self, left, right):
""" Check if given nicknames are equal. """
return left == right
def is_same_channel(self, left, right):
""" Check if given channel names are equal. """
return left == right
## IRC attributes.
@property
def connected(self):
""" Whether or not we are connected. """
return self.connection and self.connection.connected
| (nickname, fallback_nicknames=None, username=None, realname=None, eventloop=None, **kwargs) | [
-0.030364014208316803,
-0.05163145810365677,
-0.05091552436351776,
0.022067606449127197,
0.01942496746778488,
-0.030616696923971176,
-0.032511815428733826,
0.03628099709749222,
0.031753767281770706,
-0.08700700849294662,
-0.004529860336333513,
0.017161354422569275,
0.006211778149008751,
0.06733988970518112,
-0.013150018639862537,
0.013697497546672821,
0.028826862573623657,
0.0011074601206928492,
-0.0047878073528409,
-0.052136823534965515,
-0.05260007455945015,
0.007080374285578728,
0.07799466699361801,
0.03779709339141846,
0.0031743240542709827,
0.030785152688622475,
-0.0008916271035559475,
0.02031988464295864,
0.06060168892145157,
-0.01935126818716526,
-0.028174100443720818,
0.008196389302611351,
0.03253287449479103,
0.03383839875459671,
-0.001256174291484058,
-0.043208710849285126,
-0.01397123746573925,
0.03922896087169647,
-0.08123742789030075,
-0.012928921729326248,
-0.01731928065419197,
-0.022172890603542328,
0.016097981482744217,
-0.023373132571578026,
-0.007943706586956978,
-0.0008672800613567233,
0.009596670977771282,
0.09391366690397263,
-0.004943101666867733,
-0.020404113456606865,
-0.02935328520834446,
0.0072014513425529,
-0.04362984746694565,
0.05226316675543785,
-0.023541586473584175,
0.011760265566408634,
-0.025162966921925545,
0.02476288564503193,
-0.011739208362996578,
-0.0413978174328804,
-0.06392867863178253,
0.0037218027282506227,
-0.014824040234088898,
0.03284872695803642,
0.0033480431884527206,
-0.0365547351539135,
-0.022951994091272354,
-0.014013350941240788,
0.02577361650764942,
-0.016055867075920105,
0.02232028916478157,
0.0393342450261116,
0.03983961045742035,
-0.04784122109413147,
0.003411213867366314,
-0.010928518138825893,
-0.04817813262343407,
0.032406531274318695,
-0.034785959869623184,
0.0503680482506752,
0.03480701521039009,
0.05361080542206764,
0.017203466966748238,
-0.011118030175566673,
0.08090052008628845,
-0.010617929510772228,
0.006717143580317497,
0.01756143383681774,
-0.08111108839511871,
-0.04135570302605629,
-0.011297013610601425,
-0.04150310158729553,
0.024741828441619873,
0.03876570984721184,
-0.01838265173137188,
-0.04232431948184967,
-0.027774019166827202,
-0.02973230928182602,
-0.003834983566775918,
-0.029963934794068336,
-0.06102282553911209,
0.022067606449127197,
-0.0634654238820076,
-0.012444613501429558,
-0.013918595388531685,
-0.07011939585208893,
-0.028237270191311836,
-0.002154381712898612,
-0.024404918774962425,
-0.03169059753417969,
-0.09408212453126907,
-0.035059697926044464,
0.048978291451931,
0.012339329347014427,
0.0289742611348629,
-0.014213391579687595,
-0.05108398199081421,
-0.007080374285578728,
0.02691068686544895,
-0.04455634951591492,
-0.04114513471722603,
0.033333033323287964,
-0.029163772240281105,
0.02183598093688488,
0.032511815428733826,
0.019982974976301193,
-0.031480029225349426,
0.007875271141529083,
0.06645549833774567,
-0.07205662876367569,
-0.013950180262327194,
0.010970632545650005,
0.03866042569279671,
0.012076118029654026,
0.03508075699210167,
0.025752559304237366,
-0.0465778112411499,
0.00034381929435767233,
0.003450695425271988,
0.025015568360686302,
0.010686364956200123,
0.018824847415089607,
0.0163822490721941,
-0.017150824889540672,
0.03447010740637779,
-0.015424161218106747,
-0.004392990842461586,
-0.03998700901865959,
-0.025499876588582993,
-0.08928115665912628,
0.04973633959889412,
-0.03569140285253525,
-0.04712528735399246,
0.03720749914646149,
-0.03135368973016739,
0.0300060473382473,
-0.04670415073633194,
-0.03739701211452484,
-0.004711476154625416,
0.006617123261094093,
-0.03265921398997307,
-0.047546423971652985,
0.021583298221230507,
0.02476288564503193,
-0.02680540271103382,
0.020088259130716324,
0.04270334541797638,
-0.10814811289310455,
0.008175332099199295,
0.07563629746437073,
-0.008501713164150715,
0.04788333550095558,
-0.038828879594802856,
0.01526623498648405,
-0.04763065278530121,
0.047377970069646835,
-0.003598093753680587,
-0.041924238204956055,
-0.04497748613357544,
-0.030237672850489616,
-0.022404516115784645,
-0.07344638556241989,
0.0010350770317018032,
-0.05108398199081421,
0.04255594685673714,
0.04438789561390877,
0.047925449907779694,
0.056348200887441635,
0.0582854337990284,
0.0016595449997112155,
-0.04535651206970215,
-0.020372526720166206,
0.04695683345198631,
0.0465778112411499,
0.060896486043930054,
0.021751752123236656,
0.03383839875459671,
0.04687260463833809,
0.010896933265030384,
-0.017340337857604027,
-0.022151833400130272,
0.021793866530060768,
0.04333505034446716,
-0.05870657041668892,
-0.020119844004511833,
-0.04619878530502319,
-0.01797204278409481,
-0.0021820187103003263,
0.027373937889933586,
-0.021446427330374718,
-0.05685356631875038,
-0.006727671716362238,
-0.014666114002466202,
0.054242510348558426,
0.03091149404644966,
-0.04249277710914612,
0.06434981524944305,
0.03181694075465202,
0.04150310158729553,
0.04944154620170593,
0.05095763877034187,
0.0098282964900136,
-0.04923097416758537,
-0.02324679121375084,
-0.033543601632118225,
0.0022043916396796703,
-0.020372526720166206,
0.03293295204639435,
0.11227526515722275,
0.02010931633412838,
0.0334593765437603,
0.026573777198791504,
-0.02094106376171112,
0.053484465926885605,
-0.02691068686544895,
0.015992697328329086,
-0.019340740516781807,
0.044514235109090805,
-0.00703826081007719,
0.012697296217083931,
-0.021983377635478973,
-0.020741023123264313,
0.02286776714026928,
-0.03979749605059624,
-0.005922246258705854,
-0.024025894701480865,
0.06536054611206055,
-0.0025162966921925545,
-0.024089066311717033,
0.024889227002859116,
-0.04628301411867142,
-0.025878900662064552,
0.030364014208316803,
0.02183598093688488,
-0.07298313081264496,
-0.03666001930832863,
-0.041482046246528625,
0.033480431884527206,
-0.005548486951738596,
-0.011191729456186295,
0.002483395393937826,
0.004319291561841965,
-0.08216392993927002,
0.07066687196493149,
0.030448243021965027,
-0.006585537921637297,
0.011191729456186295,
0.024468090385198593,
-0.019414439797401428,
-0.017635133117437363,
0.06847696006298065,
0.06460249423980713,
-0.006538160145282745,
0.013318474404513836,
-0.06573956459760666,
-0.024510202929377556,
0.0011706306831911206,
-0.035333435982465744,
-0.05803275108337402,
-0.026173695921897888,
-0.024952398613095284,
0.016129566356539726,
0.02094106376171112,
-0.011865549720823765,
0.052726417779922485,
-0.03318563476204872,
0.011707622557878494,
0.021172689273953438,
-0.0010120461229234934,
0.018845904618501663,
-0.006217042449861765,
-0.07938442379236221,
0.003087464487180114,
-0.00044285241165198386,
-0.0009278185898438096,
0.007954235188663006,
-0.08490132540464401,
0.03684953227639198,
-0.015718957409262657,
-0.08287986367940903,
-0.02524719387292862,
0.01300262100994587,
-0.02194126509130001,
-0.017961515113711357,
0.06578168272972107,
-0.04843081533908844,
-0.02697385847568512,
-0.0013239510590210557,
0.016498062759637833,
0.010049394331872463,
0.0046930513344705105,
-0.057274702936410904,
0.03891310840845108,
0.02718442678451538,
0.05820120498538017,
0.006043323315680027,
0.04194529727101326,
-0.018087856471538544,
0.05516901612281799,
0.05049438774585724,
-0.021772809326648712,
0.005774848163127899,
0.01683497242629528,
0.05895925313234329,
0.022551914677023888,
0.011454940773546696,
0.02670011855661869,
0.0638023316860199,
-0.014729284681379795,
0.0018780101090669632,
-0.02848995290696621,
-0.011181200854480267,
-0.06009632349014282,
-0.016392778605222702,
-0.03253287449479103,
-0.010617929510772228,
0.031101005151867867,
0.024931341409683228,
0.05398983135819435,
-0.04053448513150215,
-0.008343786932528019,
0.026679061353206635,
-0.005606393329799175,
0.022236060351133347,
0.07748930156230927,
-0.05247373506426811,
0.01565578766167164,
0.012739409692585468,
-0.00728567922487855,
0.04611455649137497,
0.0486413836479187,
-0.03684953227639198,
-0.011591809801757336,
0.010896933265030384,
0.02728971093893051,
-0.06165453419089317,
-0.03632311150431633,
-0.027605563402175903,
0.01900383085012436,
-0.05820120498538017,
-0.012086646631360054,
-0.021341143175959587,
0.04108196496963501,
0.006127550732344389,
-0.08422750234603882,
0.017087655141949654,
0.0005346472607925534,
0.010549494996666908,
0.0814058855175972,
-0.011518111452460289,
-0.006522367242723703,
-0.014181805774569511,
0.008433278650045395,
-0.024573374539613724,
-0.0011350972345098853,
0.01686655730009079,
-0.015118836425244808,
0.008670168928802013,
-0.0610649399459362,
-0.026826459914445877,
0.0420926958322525,
-0.000009248368769476656,
0.021962322294712067,
0.013097376562654972,
0.016192737966775894,
-0.012876279652118683,
0.044724803417921066,
0.01579265668988228,
0.017666717991232872,
-0.015339934267103672,
-0.038197170943021774,
0.035059697926044464,
0.019646065309643745,
-0.013718554750084877,
-0.05432673916220665,
0.023773211985826492,
0.06333908438682556,
0.006522367242723703,
0.01776147447526455,
-0.07281467318534851,
-0.0003862620797008276,
-0.019056472927331924,
0.05222105234861374,
0.06443403661251068,
0.031332630664110184,
0.08843887597322464,
0.08376425504684448,
0.04800967872142792,
-0.0153504628688097,
0.031206289306282997,
-0.05163145810365677,
0.0038402476347982883,
-0.04367196187376976,
0.02227817475795746,
-0.0019069632980972528,
-0.03221701830625534,
-0.008238502778112888,
-0.010070450603961945,
0.048304472118616104,
0.07803678512573242,
-0.04367196187376976,
-0.018772205337882042,
-0.008259559981524944,
0.045651305466890335,
-0.012697296217083931,
0.05453730747103691,
0.01291839312762022,
-0.010344190523028374,
-0.014666114002466202,
0.027879303321242332,
0.006701350677758455,
-0.010886404663324356,
0.0028689992614090443,
-0.030679868534207344,
0.011686566285789013,
-0.03773391991853714,
-0.009154477156698704,
-0.012160345911979675,
-0.005595864728093147,
0.013286888599395752,
-0.012486726976931095,
0.0279424749314785,
0.006611858960241079,
-0.029332228004932404,
0.08149010688066483,
-0.011549696326255798,
-0.014360789209604263,
0.04560919478535652,
0.011549696326255798,
0.02373109944164753,
-0.10663201659917831,
0.03870253637433052,
-0.01679285801947117,
-0.00008291145059047267,
-0.03543872386217117,
0.012339329347014427,
-0.02832149714231491,
0.05752738565206528,
0.02514190971851349,
-0.03994489461183548,
-0.009717748500406742,
0.024152236059308052,
-0.009107098914682865,
0.056685108691453934,
0.0009896731935441494,
0.04649358242750168,
0.10065186768770218,
-0.04080822691321373,
-0.0327644981443882,
0.0030190295074135065,
-0.009522971697151661,
-0.036681078374385834,
0.02194126509130001,
0.008680697530508041,
0.009701955132186413,
-0.0486413836479187,
0.011307542212307453,
0.005869604181498289,
-0.04196635261178017,
-0.07332003861665726,
-0.035649292171001434,
0.0019109115237370133,
0.0486413836479187,
-0.02132008597254753,
-0.0057327342219650745,
-0.0469147190451622,
0.05171568691730499,
-0.04464057832956314,
0.03625994175672531,
-0.05390560254454613,
-0.05601128935813904,
0.020225130021572113,
0.007090902887284756,
0.013708026148378849,
-0.011128558777272701,
-0.022846709936857224,
-0.080016128718853,
0.007275150623172522,
0.02891109138727188,
-0.0683085024356842,
0.014634529128670692,
0.03594408556818962,
-0.03884993493556976,
0.012381442822515965,
0.07955287396907806,
-0.00025728868786245584,
-0.057106249034404755,
0.03150108456611633,
-0.013476400636136532,
-0.04287179931998253,
-0.0028900562319904566,
-0.017877288162708282,
-0.0037191708106547594,
-0.08182702213525772,
-0.018603749573230743,
-0.004935205448418856,
-0.007822629064321518,
0.021772809326648712,
-0.02366792783141136,
-0.0676346868276596,
0.02632109448313713,
0.022572970017790794,
0.016340136528015137,
0.044893261045217514,
-0.029795479029417038,
0.05188414081931114,
0.04396675527095795,
0.01400282233953476,
0.01717188209295273,
-0.007717344909906387,
0.018677448853850365,
0.02469971589744091,
0.0018714298494160175,
-0.026742232963442802,
0.026363208889961243,
-0.0420926958322525,
0.01300262100994587,
-0.0034796488471329212,
-0.0334593765437603,
0.000039995724364416674,
-0.00036553421523422003,
0.048936180770397186,
-0.03491229936480522,
-0.08363790810108185,
-0.03124840371310711,
-0.04628301411867142,
0.049104634672403336,
0.04695683345198631,
-0.019098585471510887,
-0.05146300420165062,
-0.0007922649383544922,
0.01724558137357235,
0.02800564467906952,
-0.027542393654584885,
-0.030364014208316803,
-0.0451880544424057,
-0.018687976524233818,
-0.03693376109004021,
0.009154477156698704,
0.01083376258611679,
-0.026510607451200485,
-0.026931744068861008,
-0.05950673297047615,
-0.013097376562654972,
0.0033348826691508293,
0.010375775396823883,
0.012707824818789959,
0.019140699878335,
0.019856633618474007,
0.04118724912405014,
-0.05230528116226196,
0.045272283256053925,
0.038681481033563614,
0.006617123261094093,
-0.03487018495798111,
-0.00934925302863121,
-0.01400282233953476,
-0.004900987725704908,
0.04843081533908844,
-0.029374342411756516,
0.02783719077706337,
0.015518917702138424,
0.016192737966775894,
-0.020056674256920815,
-0.00392447505146265,
0.038723595440387726,
0.015550502575933933,
0.07744719088077545,
0.010733742266893387,
0.013118433766067028,
0.011791850440204144,
0.001967501826584339,
-0.012644654139876366,
-0.04325082153081894,
0.047756996005773544,
0.01407652162015438,
0.01724558137357235,
0.016740215942263603,
0.05268430337309837,
0.0021951792296022177,
-0.051378775388002396,
0.017782531678676605,
-0.02400483936071396,
-0.06190721318125725,
-0.022994108498096466,
-0.005169462878257036,
-0.028300441801548004,
0.003411213867366314,
0.000473121675895527,
-0.03004816174507141,
-0.015129365026950836,
0.036681078374385834,
-0.018677448853850365,
0.02253085747361183,
-0.017256109043955803,
-0.0064223469235002995,
-0.022951994091272354,
0.04120830446481705,
0.030090276151895523,
-0.009022871032357216,
0.021920207887887955,
-0.01397123746573925,
-0.03032190166413784,
-0.009444008581340313,
-0.07504670321941376,
-0.013939651660621166,
0.01281310897320509,
-0.0016055867308750749,
-0.06119127944111824,
0.00636444054543972,
0.0011785270180553198,
-0.02552093379199505,
-0.04367196187376976,
0.031543198972940445,
0.011760265566408634,
-0.03548083454370499,
0.03131157532334328,
-0.018340539187192917,
-0.02318361960351467,
0.01153916772454977,
0.03644945099949837,
-0.06460249423980713,
0.004464057739824057,
-0.023120449855923653,
-0.03729172796010971,
0.035923030227422714,
0.01886695995926857,
-0.04291391372680664,
0.027163369581103325,
-0.013876480981707573,
-0.006817163433879614,
0.05420039966702461,
0.037102214992046356,
0.021509598940610886,
-0.02210971899330616,
0.020741023123264313,
-0.03129051625728607,
0.024404918774962425,
0.014160748571157455,
-0.006517102941870689,
0.012560426257550716,
0.012855222448706627,
0.05356869101524353,
0.019235456362366676,
0.01676127314567566,
0.06300216913223267,
0.019751349464058876,
0.026994915679097176,
0.03994489461183548,
0.014939852990210056,
0.04982056841254234,
-0.0033375148195773363,
-0.0004119251389056444,
0.01288680825382471,
0.005727470386773348,
0.01538204774260521,
-0.012455142103135586,
0.0014976703096181154,
-0.015108308754861355,
0.005532694049179554,
0.0410398505628109,
0.04019757732748985,
-0.0507049560546875,
-0.03714432939887047,
0.026131583377718925,
-0.022994108498096466,
0.05222105234861374,
-0.01445554569363594,
0.02642637863755226,
-0.07167760282754898,
-0.028131986036896706,
0.042682286351919174,
-0.005006272345781326,
0.02438386157155037,
-0.026257924735546112,
-0.06102282553911209,
-0.0410398505628109,
-0.04325082153081894,
-0.050031136721372604,
-0.026615891605615616,
0.05163145810365677,
-0.03548083454370499,
-0.009686162695288658,
-0.010960103943943977,
0.041861068457365036,
0.015413633547723293,
-0.03131157532334328,
-0.002945330459624529,
0.04295602813363075,
0.028890034183859825,
0.021509598940610886,
0.022551914677023888,
0.04855715483427048,
0.0074488697573542595,
-0.00394816417247057,
0.011781321838498116,
0.02983759343624115,
-0.010317869484424591,
-0.03447010740637779,
0.037586525082588196,
-0.007122488226741552,
-0.0006517760921269655,
0.047209516167640686,
0.027121255174279213,
0.025605160742998123,
-0.02907954528927803,
-0.03291189670562744,
-0.03617571294307709,
-0.0033822606783360243,
0.03979749605059624,
-0.013739611953496933,
0.019982974976301193,
-0.03994489461183548,
0.09290293604135513,
0.0023373132571578026,
-0.0720987394452095,
0.09669317305088043,
-0.048936180770397186,
-0.036996930837631226,
0.028447838500142097,
-0.06628704816102982,
-0.08355368673801422,
-0.03514392673969269,
0.01942496746778488,
-0.03607042878866196,
-0.03807083144783974,
0.028721578419208527,
0.048136018216609955,
0.04855715483427048,
0.03444904834032059,
0.0305324699729681,
-0.01526623498648405,
-0.06350753456354141,
0.017814116552472115,
-0.01076006330549717,
-0.012086646631360054,
-0.028616294264793396,
0.04977845400571823,
-0.0064276112243533134,
0.016824442893266678,
0.0486413836479187,
0.015950582921504974,
0.03617571294307709,
0.030658811330795288,
-0.013360587880015373,
-0.02394166775047779,
-0.03293295204639435,
0.04409309849143028
]
|
42,270 | pydle.client | __getattr__ | Return on_unknown or _ignored for unknown handlers, depending on the invocation type. | def __getattr__(self, attr):
""" Return on_unknown or _ignored for unknown handlers, depending on the invocation type. """
# Is this a raw handler?
if attr.startswith('on_raw_'):
# Are we in on_raw() trying to find any message handler?
if self._handler_top_level:
# In that case, return the method that logs and possibly acts on unknown messages.
return self.on_unknown
# Are we in an existing handler calling super()?
# Just ignore it, then.
return self._ignored
# This isn't a handler, just raise an error.
raise AttributeError(attr)
| (self, attr) | [
-0.015321926213800907,
-0.02361316606402397,
0.02419905550777912,
0.04459869861602783,
0.006258376408368349,
-0.03305843099951744,
0.06480304896831512,
0.014736035838723183,
0.05028006434440613,
0.01568588800728321,
-0.008646324276924133,
0.047758959233760834,
0.02711075358092785,
-0.031016690656542778,
-0.061713807284832,
0.041687000542879105,
-0.017798645421862602,
0.047758959233760834,
0.02313379943370819,
-0.06309863924980164,
-0.014425335451960564,
0.02592121809720993,
-0.004334258381277323,
0.02648935467004776,
0.007745295763015747,
0.08380010724067688,
-0.019156845286488533,
0.026862194761633873,
0.09729333966970444,
-0.0375325046479702,
-0.05748829245567322,
-0.02979164756834507,
0.022210579365491867,
0.008038241416215897,
0.011566899716854095,
-0.006986300926655531,
-0.024074776098132133,
0.02148265391588211,
-0.07989417016506195,
-0.0028717515524476767,
-0.007696471642702818,
-0.008770604617893696,
-0.005162050947546959,
-0.03254355862736702,
0.016245147213339806,
-0.016156375408172607,
-0.021322865039110184,
0.06380880624055862,
-0.013830568641424179,
-0.000697409501299262,
-0.018908286467194557,
0.06924161314964294,
0.009525160305202007,
0.027252787724137306,
-0.009152321144938469,
0.05113226920366287,
0.009050234220921993,
0.00004771457315655425,
-0.02599223516881466,
0.030697114765644073,
-0.03588135913014412,
0.07712450623512268,
0.021731214597821236,
-0.026365075260400772,
0.021358374506235123,
-0.05194896459579468,
0.053795404732227325,
0.02093227207660675,
-0.0363607220351696,
0.003537536133080721,
-0.01869523525238037,
-0.022228332236409187,
0.004103453364223242,
0.036538265645504,
0.005570399109274149,
-0.03204643726348877,
-0.00352865899913013,
0.02485596388578415,
0.050457604229450226,
0.04523785412311554,
0.008579745888710022,
-0.040018100291490555,
0.009125689044594765,
0.015446205623447895,
-0.05258811637759209,
-0.04459869861602783,
0.01603209599852562,
-0.024447616189718246,
-0.06256601214408875,
0.024057021364569664,
-0.07357364892959595,
-0.007470104843378067,
-0.00618292111903429,
0.03037753887474537,
-0.061465244740247726,
0.011993002146482468,
0.018499938771128654,
-0.00938312616199255,
0.058553546667099,
-0.01715061441063881,
0.006515813060104847,
0.03098118305206299,
0.033342499285936356,
-0.038278184831142426,
0.024021513760089874,
-0.014247793704271317,
0.033875126391649246,
-0.027412576600909233,
0.014594001695513725,
0.038881827145814896,
0.07336059957742691,
-0.04577048122882843,
-0.027217280119657516,
0.01376842800527811,
-0.0002862874243874103,
-0.027714399620890617,
-0.007874013856053352,
-0.009320986457169056,
-0.03959199786186218,
0.011282832361757755,
-0.019139092415571213,
-0.02979164756834507,
-0.029045969247817993,
-0.0495343841612339,
0.02430558204650879,
0.0020883448887616396,
-0.02972063049674034,
-0.059902872890233994,
0.07126560062170029,
0.0021538136061280966,
-0.02915249392390251,
-0.007332509383559227,
-0.005721310153603554,
0.008917076513171196,
-0.036112163215875626,
0.07208229601383209,
0.019085828214883804,
0.01814485341310501,
0.019742736592888832,
-0.008486536331474781,
0.00842883437871933,
-0.03410593420267105,
0.03707089275121689,
-0.034922629594802856,
0.008868252858519554,
0.05560633912682533,
0.05581939220428467,
0.04804302752017975,
0.06917059421539307,
-0.032348260283470154,
0.013448851183056831,
0.002585464157164097,
-0.006804320029914379,
0.07080398499965668,
-0.012339210137724876,
0.041083358228206635,
-0.03785208240151405,
0.038846321403980255,
-0.04090581461787224,
-0.05148735269904137,
0.02473168447613716,
-0.05464760959148407,
-0.006795442663133144,
-0.11923760920763016,
-0.006222867872565985,
-0.00004858147804043256,
0.023950496688485146,
-0.01992027834057808,
0.013013872317969799,
0.047616925090551376,
-0.1067386120557785,
0.04893073812127113,
-0.025743676349520683,
0.03710640221834183,
0.059228211641311646,
0.06533567607402802,
-0.045379888266325,
0.018535446375608444,
-0.010279715992510319,
-0.006480304524302483,
0.027998467907309532,
-0.026311812922358513,
-0.038952846080064774,
-0.008877130225300789,
0.010661432519555092,
0.04232615604996681,
0.03598788380622864,
-0.06217541545629501,
-0.06466101109981537,
0.0727214440703392,
0.009276600554585457,
-0.008988093584775925,
0.04786548390984535,
-0.023932741954922676,
0.06618788093328476,
0.059334736317396164,
-0.02819376438856125,
0.044385649263858795,
-0.0010297470726072788,
0.01929887942969799,
0.028389060869812965,
0.013413342647254467,
-0.045592937618494034,
0.04893073812127113,
-0.03098118305206299,
0.04190005362033844,
0.06814084947109222,
0.023861724883317947,
-0.06863796710968018,
-0.0326145738363266,
-0.008047117851674557,
-0.004143400117754936,
0.01747906766831875,
0.054399050772190094,
0.012836329638957977,
0.08493638038635254,
-0.01132721733301878,
0.015428451821208,
-0.024021513760089874,
0.03037753887474537,
0.01579241454601288,
0.0650516077876091,
-0.018517693504691124,
0.011522514745593071,
-0.003220178885385394,
0.020044559612870216,
0.06430593132972717,
0.002445649355649948,
0.01828688755631447,
-0.00744347320869565,
0.007856260053813457,
0.03305843099951744,
-0.01623626984655857,
0.06451898068189621,
-0.0077497344464063644,
0.009320986457169056,
0.030732622370123863,
-0.02540634572505951,
0.008029364049434662,
0.017195001244544983,
0.009285477921366692,
-0.000154240129631944,
-0.02874414622783661,
0.013351202942430973,
0.015259786508977413,
-0.030448555946350098,
0.0035885795950889587,
0.05727524310350418,
-0.009516282938420773,
0.004944561515003443,
0.052055489271879196,
0.022867485880851746,
-0.020683713257312775,
-0.0193521436303854,
-0.01814485341310501,
-0.06693355739116669,
-0.02645384706556797,
0.029454316943883896,
0.01299611758440733,
-0.022849731147289276,
-0.057701341807842255,
0.05006701126694679,
-0.016715634614229202,
0.027465838938951492,
0.012436858378350735,
-0.004081260412931442,
0.05368888005614281,
0.010830098763108253,
-0.004489608574658632,
0.052623625844717026,
0.023311343044042587,
-0.04687124490737915,
-0.01992027834057808,
0.04076378047466278,
-0.018517693504691124,
0.003087021876126528,
-0.003308950224891305,
0.02537083625793457,
-0.05354684591293335,
0.012010756880044937,
0.041651491075754166,
0.05443456023931503,
0.032827626913785934,
0.011478128843009472,
-0.02434108965098858,
0.014016987755894661,
0.020293118432164192,
0.003437668550759554,
-0.002339123748242855,
-0.03802962228655815,
0.07627230137586594,
0.02031087316572666,
-0.03249029442667961,
0.026134269312024117,
-0.0021216340828686953,
-0.030075715854763985,
-0.05674261227250099,
0.004873544443398714,
0.024926980957388878,
-0.04090581461787224,
-0.024625157937407494,
-0.02870863676071167,
-0.004669370129704475,
-0.02762562781572342,
0.00440305657684803,
-0.001572361565195024,
0.030750377103686333,
0.02917024865746498,
-0.0269332118332386,
-0.035597290843725204,
0.010217576287686825,
0.056991174817085266,
-0.008366694673895836,
-0.05063514783978462,
0.018641972914338112,
0.06533567607402802,
0.009312109090387821,
0.04687124490737915,
0.022175069898366928,
0.09970792382955551,
-0.05024455487728119,
0.07321856915950775,
-0.04534437879920006,
0.01543732825666666,
-0.018997058272361755,
0.009249969385564327,
0.0057656955905258656,
-0.006191798020154238,
-0.08422620594501495,
-0.0351889431476593,
0.014505229890346527,
-0.03249029442667961,
-0.024145793169736862,
-0.061536263674497604,
-0.027146263048052788,
-0.007261492311954498,
-0.015677010640501976,
-0.008464342914521694,
0.009028040803968906,
-0.010350733064115047,
-0.013413342647254467,
0.009471897035837173,
0.027714399620890617,
0.02703973650932312,
0.03742597997188568,
0.00509103387594223,
0.02705749124288559,
0.06565525382757187,
0.03458529710769653,
-0.03643174096941948,
0.022441383451223373,
-0.1308133900165558,
-0.059299226850271225,
0.001655584666877985,
0.03966301679611206,
-0.05173591151833534,
-0.017035212367773056,
0.02031087316572666,
-0.006910845637321472,
0.03362656757235527,
0.05961880460381508,
-0.026862194761633873,
-0.022192824631929398,
-0.017274893820285797,
-0.002751910127699375,
0.01652921549975872,
0.03371533751487732,
0.008286800235509872,
-0.005494943354278803,
-0.03247253969311714,
-0.01647595316171646,
-0.05777236074209213,
-0.017674366012215614,
0.01731928065419197,
0.015091120265424252,
0.044456664472818375,
0.03980505093932152,
-0.013803936541080475,
-0.0010280825663357973,
0.04623209312558174,
0.024465369060635567,
-0.003395502222701907,
-0.027803169563412666,
-0.01757671684026718,
0.04811404272913933,
-0.028903935104608536,
-0.021411636844277382,
0.06444796174764633,
-0.05631650984287262,
-0.00003138204192509875,
0.004147838801145554,
-0.04598353058099747,
-0.0927482545375824,
-0.01814485341310501,
-0.0069152843207120895,
-0.021127568557858467,
-0.017860785126686096,
-0.017381420359015465,
-0.032348260283470154,
-0.012259316630661488,
-0.010146559216082096,
-0.014096882194280624,
-0.025672659277915955,
-0.004294311627745628,
0.009995647706091404,
0.04850463569164276,
0.014354318380355835,
0.06025795638561249,
0.011220691725611687,
-0.07733755558729172,
-0.004891298711299896,
0.036112163215875626,
-0.035561781376600266,
-0.07005830854177475,
0.042255137115716934,
0.004212197847664356,
0.06700457632541656,
0.014318810775876045,
-0.0418645441532135,
-0.013475483283400536,
-0.00798941683024168,
0.01403474248945713,
0.013280185870826244,
-0.033271484076976776,
0.027288297191262245,
0.006910845637321472,
-0.06107465177774429,
-0.0408703051507473,
0.026187533512711525,
0.04797200858592987,
-0.0012239342322573066,
0.014736035838723183,
-0.02700422890484333,
-0.007736418396234512,
0.007816312834620476,
-0.046054549515247345,
-0.04012462496757507,
-0.032223980873823166,
-0.053830914199352264,
0.01773650571703911,
-0.10744877904653549,
0.036041148006916046,
-0.04371098801493645,
0.017860785126686096,
0.0628855898976326,
-0.06533567607402802,
0.05564184859395027,
0.053227271884679794,
0.033981651067733765,
-0.061003636568784714,
-0.04804302752017975,
-0.021145323291420937,
0.03632521629333496,
0.0034998084884136915,
-0.010048910975456238,
-0.027945203706622124,
-0.030608342960476875,
0.0074479118920862675,
0.048788703978061676,
0.020097821950912476,
-0.05251710116863251,
0.014780420809984207,
-0.07183373719453812,
-0.05695566534996033,
-0.0012217150069773197,
0.09118587523698807,
-0.009498529136180878,
-0.019653964787721634,
-0.052872184664011,
0.0258502010256052,
0.04648065194487572,
-0.039449963718652725,
0.02860211208462715,
-0.028247026726603508,
-0.03842021897435188,
-0.030643852427601814,
0.00993350800126791,
-0.009711580350995064,
0.001968503464013338,
-0.005943238269537687,
0.010217576287686825,
-0.017017457634210587,
-0.011691180057823658,
-0.04680022969841957,
-0.019085828214883804,
-0.02263668179512024,
-0.004931245464831591,
0.0004912936710752547,
0.05028006434440613,
-0.05965431034564972,
0.03128300607204437,
0.04250369593501091,
0.04076378047466278,
-0.026595881208777428,
0.05226853862404823,
-0.020825745537877083,
-0.022849731147289276,
0.015730274841189384,
0.012232684530317783,
-0.004027997609227896,
-0.014709403738379478,
-0.06558423489332199,
0.0006796552333980799,
-0.014531861059367657,
0.01383944507688284,
-0.04623209312558174,
0.03795860707759857,
0.043817512691020966,
0.04367547854781151,
-0.0005781230865977705,
0.024926980957388878,
0.032774362713098526,
-0.04569946229457855,
-0.01072357315570116,
-0.015570485964417458,
-0.029418807476758957,
0.014842561446130276,
-0.02537083625793457,
0.015392943285405636,
0.036538265645504,
0.105744369328022,
-0.04690675437450409,
-0.022388121113181114,
-0.007802997250109911,
-0.016715634614229202,
-0.0035508519504219294,
-0.01237471867352724,
0.0428587831556797,
-0.011673425324261189,
-0.03266783803701401,
0.03353779762983322,
0.02645384706556797,
-0.02476719208061695,
0.004072383511811495,
-0.00288728647865355,
0.07655636966228485,
-0.051061250269412994,
-0.03083914890885353,
-0.04406607151031494,
0.02709300071001053,
0.009303231723606586,
-0.003328923601657152,
-0.06725313514471054,
-0.001802057377062738,
0.0047137560322880745,
-0.06771474331617355,
-0.09871368110179901,
-0.006693355739116669,
0.03147830069065094,
-0.06682703644037247,
-0.02038189023733139,
0.011176306754350662,
0.015188769437372684,
-0.0074789817444980145,
0.05908617749810219,
-0.03923691436648369,
0.020239856094121933,
0.010341856628656387,
-0.027945203706622124,
0.041154373437166214,
-0.031726863235235214,
-0.029507579281926155,
-0.004365328699350357,
-0.011930862441658974,
-0.019955787807703018,
0.027394821867346764,
0.008388888090848923,
0.04623209312558174,
-0.016733389347791672,
-0.055961426347494125,
-0.06458999961614609,
0.024003759026527405,
-0.03572157025337219,
-0.03241927921772003,
0.02474943734705448,
0.043924037367105484,
0.02638282999396324,
-0.021819984540343285,
0.002791857346892357,
-0.05695566534996033,
0.025672659277915955,
-0.03369758278131485,
-0.05074167251586914,
-0.009738211520016193,
-0.03682233393192291,
-0.07449687272310257,
-0.003670693142339587,
0.04030216857790947,
-0.0004058512859046459,
0.03817165642976761,
-0.04701327905058861,
-0.05951227620244026,
-0.016023218631744385,
-0.04832709580659866,
0.042184121906757355,
0.058731090277433395,
0.0020561651326715946,
0.004116768948733807,
-0.027732152491807938,
0.004611669108271599,
-0.034993644803762436,
0.03355555236339569,
0.004917929880321026,
-0.013857199810445309,
0.03627195209264755,
-0.012072896584868431,
0.0019507493125274777,
0.02428782731294632,
-0.035064663738012314,
0.013626393862068653,
-0.026862194761633873,
0.04417259618639946,
0.022370366379618645,
0.050954725593328476,
0.020293118432164192,
-0.006737741641700268,
-0.002069480950012803,
0.025069015100598335,
0.05684914067387581,
0.016111990436911583,
-0.028974952176213264,
-0.027288297191262245,
-0.020097821950912476,
-0.015268662944436073,
-0.031140971928834915,
-0.00020625456818379462,
0.008087065070867538,
-0.0030892412178218365,
-0.03236601501703262,
0.020151084288954735,
-0.040018100291490555,
-0.002163800410926342,
0.0036396232899278402,
-0.03842021897435188,
-0.01665349490940571,
0.00620955228805542,
0.02093227207660675,
-0.009178952313959599,
-0.018553201109170914,
-0.0038460164796561003,
0.04129640758037567,
-0.07712450623512268,
-0.054967187345027924,
-0.030643852427601814,
-0.00041195430094376206,
0.023630918934941292,
-0.008988093584775925,
-0.009569546207785606,
0.011309463530778885,
0.008455466479063034,
0.016706759110093117,
-0.009267723187804222,
-0.04733285680413246,
0.044385649263858795,
0.010785712860524654,
-0.011637916788458824,
-0.01356425415724516,
0.04197106882929802,
0.016706759110093117,
-0.01816260814666748,
-0.06263703107833862,
-0.007829628884792328,
0.013360080309212208,
0.031709108501672745,
0.05077718198299408,
0.03474508598446846,
-0.03813615068793297,
-0.03254355862736702,
0.057097699493169785,
-0.0442081056535244,
0.05077718198299408,
0.060506515204906464,
0.04413709044456482,
-0.02764338254928589,
-0.032774362713098526,
0.001698860665783286,
0.03298741579055786,
-0.03094567358493805,
0.05194896459579468,
-0.020825745537877083,
-0.029472071677446365,
0.016609109938144684,
-0.05514473095536232,
-0.0020561651326715946,
0.03028876706957817,
0.028424570336937904,
0.05336930602788925,
-0.012383596040308475,
0.044385649263858795,
-0.09558892995119095,
-0.030022453516721725,
-0.05478964373469353,
0.006134096533060074,
0.08209569752216339,
-0.017914047464728355,
-0.04999599605798721,
-0.017798645421862602,
-0.0625305026769638,
0.023914987221360207,
0.010324101895093918,
0.07151415944099426,
-0.0055215745232999325,
0.0003808843612205237,
-0.0840841755270958,
0.015091120265424252,
-0.017257140949368477,
-0.010386241599917412,
0.003928130026906729,
0.016733389347791672,
0.043249376118183136,
-0.041118863970041275,
0.0071416511200368404,
-0.011247323825955391,
-0.037141911685466766,
0.03190440312027931,
-0.013866076245903969,
-0.02096777968108654,
0.018961548805236816,
-0.027980713173747063,
0.03913038969039917,
-0.05226853862404823,
-0.021074306219816208,
-0.009418634697794914,
0.0009032479720190167,
0.0035308783408254385,
0.01186872273683548,
-0.02920575626194477,
-0.02050616964697838,
0.014727158471941948,
0.06572626531124115,
0.00224924273788929,
-0.013892708346247673,
-0.04690675437450409,
0.03849123418331146,
0.04378200322389603,
-0.038349200040102005,
-0.007021809462457895,
0.005952115636318922,
0.020168839022517204,
0.033271484076976776,
-0.03913038969039917,
-0.035561781376600266,
0.03353779762983322,
0.05109675973653793,
0.05514473095536232,
-0.022299349308013916,
-0.006746618542820215,
0.08351603895425797,
0.006267253775149584,
0.06682703644037247,
0.022476892918348312,
0.012783067300915718,
-0.027146263048052788,
-0.001225043903104961,
0.006884214002639055,
-0.026134269312024117,
0.004369766917079687,
-0.030075715854763985,
0.02918800339102745,
0.008877130225300789,
-0.05201997980475426,
0.006830951198935509,
-0.023009520024061203,
0.032348260283470154,
0.01291622407734394,
-0.0032579065300524235,
0.013368957675993443,
0.01938765123486519
]
|
42,271 | pydle.client | __init__ | Create a client. | def __init__(self, nickname, fallback_nicknames=None, username=None, realname=None,
eventloop=None, **kwargs):
""" Create a client. """
self._nicknames = [nickname] + (fallback_nicknames or [])
self.username = username or nickname.lower()
self.realname = realname or nickname
if eventloop:
self.eventloop = eventloop
else:
self.eventloop = get_event_loop()
self.own_eventloop = not eventloop
self._reset_connection_attributes()
self._reset_attributes()
if kwargs:
self.logger.warning('Unused arguments: %s', ', '.join(kwargs.keys()))
| (self, nickname, fallback_nicknames=None, username=None, realname=None, eventloop=None, **kwargs) | [
-0.05071984976530075,
-0.0504983626306057,
0.011664826422929764,
-0.01811555027961731,
-0.020358076319098473,
-0.009542271494865417,
-0.016039136797189713,
0.07626434415578842,
0.08519753068685532,
-0.026541171595454216,
-0.020948700606822968,
0.08172761648893356,
-0.024067934602499008,
-0.0010503189405426383,
0.008785533718764782,
0.00888243317604065,
0.007479701191186905,
0.008997789584100246,
-0.04322630539536476,
-0.09139908850193024,
-0.023698793724179268,
0.02561832219362259,
0.041122205555438995,
0.05311926081776619,
0.0464378222823143,
0.061203427612781525,
-0.039904043078422546,
0.04064232483506203,
0.05348839983344078,
-0.016998901963233948,
0.0020360383205115795,
0.00130352599080652,
-0.0010076371254399419,
0.05511261522769928,
0.03503139317035675,
-0.04138060286641121,
-0.027039511129260063,
0.04440755397081375,
-0.11465491354465485,
-0.014036552049219608,
0.035548191517591476,
-0.024104848504066467,
0.007152089383453131,
-0.003144612070173025,
-0.006552236620336771,
0.03582504391670227,
0.09221119433641434,
0.04215579852461815,
-0.03964564576745033,
-0.0011939374962821603,
-0.0645626038312912,
0.041934315115213394,
-0.011258772574365139,
0.025765977799892426,
-0.06873388588428497,
0.018364720046520233,
0.03700629249215126,
0.05791807919740677,
-0.0985604077577591,
0.015411598607897758,
-0.11354748904705048,
0.005495572928339243,
0.036803267896175385,
0.006612221710383892,
-0.023089712485671043,
-0.043927669525146484,
-0.026651915162801743,
-0.005975455045700073,
0.04750832915306091,
-0.005264860577881336,
0.07046884298324585,
0.05470656231045723,
0.019822822883725166,
-0.04758215695619583,
0.03569584712386131,
0.012679962441325188,
-0.05385753884911537,
0.04791438207030296,
-0.02473238669335842,
0.0216869805008173,
-0.017155785113573074,
-0.008504064753651619,
-0.05083059147000313,
0.014885574579238892,
0.04370618611574173,
-0.039904043078422546,
-0.05267629027366638,
-0.0026878013741225004,
0.02356959506869316,
0.005601700861006975,
-0.05935772508382797,
-0.014479519799351692,
0.0014604105381295085,
0.02833150140941143,
-0.048135869204998016,
-0.017774095758795738,
-0.0010687758913263679,
-0.012015510350465775,
0.0504983626306057,
0.028829840943217278,
-0.028977496549487114,
0.01734958402812481,
-0.01160022709518671,
-0.02559986524283886,
0.007521229330450296,
-0.04285716265439987,
-0.0061415680684149265,
-0.02720562554895878,
-0.01419343613088131,
0.000032966661819955334,
-0.007502772379666567,
-0.010252865962684155,
0.046696219593286514,
0.04654856398701668,
-0.02600592002272606,
-0.0042520323768258095,
-0.004789592698216438,
0.0009193895384669304,
0.047397587448358536,
-0.041565172374248505,
-0.06685127317905426,
0.016712818294763565,
-0.020191963762044907,
0.05876710265874863,
0.021963834762573242,
-0.037596918642520905,
0.0040536196902394295,
0.01419343613088131,
0.04130677506327629,
-0.03647104278206825,
0.08733854442834854,
-0.005638614762574434,
0.003045405726879835,
0.003068476915359497,
0.025802891701459885,
0.05304542928934097,
0.010511264204978943,
0.023145083338022232,
-0.0018433933146297932,
0.026116661727428436,
0.00550941564142704,
0.01321521494537592,
0.004388152621686459,
0.03979330137372017,
0.0027754721231758595,
-0.006298452615737915,
-0.03578813001513481,
-0.06792178004980087,
0.009754526428878307,
-0.02039499022066593,
0.05396828055381775,
0.0013958109775558114,
0.0007365498458966613,
0.0059431553818285465,
-0.06249541789293289,
-0.019047629088163376,
-0.02395719103515148,
-0.08364714682102203,
0.02284977212548256,
0.04341087490320206,
-0.010741977021098137,
-0.011129573918879032,
0.054521992802619934,
-0.003991327248513699,
-0.05633077770471573,
0.007152089383453131,
-0.011950910091400146,
-0.09841274470090866,
0.04492434859275818,
0.06327061355113983,
-0.014045780524611473,
-0.02441861666738987,
-0.028257673606276512,
0.014461062848567963,
-0.021447040140628815,
-0.004577337298542261,
0.019564425572752953,
-0.059579212218523026,
-0.053709883242845535,
-0.005071062128990889,
0.03652641177177429,
-0.05422667786478996,
-0.019915107637643814,
-0.04241419583559036,
0.03375786170363426,
0.02236988954246044,
0.04440755397081375,
0.059246983379125595,
0.0519380122423172,
0.00660760747268796,
-0.011923224665224552,
0.02879292704164982,
-0.006436880212277174,
0.04473977908492088,
0.05751202628016472,
-0.009126989170908928,
0.051310472190380096,
-0.0013358256546780467,
-0.026984140276908875,
-0.00766888540238142,
-0.031653761863708496,
0.09198971092700958,
-0.010474350303411484,
-0.033277980983257294,
0.037984516471624374,
0.02441861666738987,
0.007133632432669401,
-0.007041347213089466,
-0.003617572830989957,
-0.06341826915740967,
-0.002230990445241332,
-0.007618128787726164,
-0.04200814291834831,
0.0503137931227684,
0.00009127565863309428,
0.015577712096273899,
0.0266888290643692,
0.016002222895622253,
0.04171283170580864,
0.03298266604542732,
0.04064232483506203,
0.01315984409302473,
0.00473422184586525,
-0.04064232483506203,
-0.02203766256570816,
0.005398673936724663,
0.016851244494318962,
0.010612777434289455,
0.04241419583559036,
-0.006713735405355692,
-0.025304554030299187,
0.021539324894547462,
-0.004238189663738012,
0.030454058200120926,
-0.02329273894429207,
-0.007539686281234026,
-0.0014834817266091704,
-0.011757112108170986,
-0.061646394431591034,
0.004646550863981247,
0.011867853812873363,
-0.008024183101952076,
0.03198598697781563,
-0.04178665950894356,
0.012679962441325188,
-0.006667593028396368,
-0.008439465425908566,
0.03331489488482475,
-0.01813400723040104,
0.02517535351216793,
-0.05171652510762215,
0.00885013397783041,
0.01142488606274128,
0.0015100137097761035,
-0.04126986116170883,
0.0011131881037726998,
-0.019158370792865753,
-0.0005150657962076366,
-0.02552603743970394,
0.034403856843709946,
-0.04053158313035965,
0.023403482511639595,
-0.07707644999027252,
0.07966043055057526,
0.01732189953327179,
0.0020741058979183435,
0.00640919478610158,
0.015042458660900593,
-0.009016246534883976,
-0.005823184736073017,
0.1140642911195755,
0.06371358036994934,
0.05042453482747078,
-0.008148767054080963,
-0.043484702706336975,
-0.09545962512493134,
-0.025470666587352753,
-0.03636029735207558,
-0.050166137516498566,
-0.0022367581259459257,
0.008993175812065601,
0.013565897941589355,
0.04060541093349457,
0.015974536538124084,
0.01120340172201395,
-0.06910302489995956,
0.021908463910222054,
0.04289408028125763,
-0.019453682005405426,
-0.04259876534342766,
0.011886310763657093,
-0.021797722205519676,
0.023366568610072136,
0.007092103827744722,
-0.059542298316955566,
-0.004429681226611137,
-0.05791807919740677,
0.0543743334710598,
0.005191032309085131,
-0.03986712917685509,
-0.008144153282046318,
-0.05219640955328941,
-0.03215210139751434,
-0.01619602181017399,
0.030214115977287292,
-0.049390945583581924,
-0.01769103854894638,
0.03691400960087776,
-0.012144709005951881,
0.004072076641023159,
-0.009311558678746223,
-0.03864896669983864,
0.027722420170903206,
0.007327430881559849,
0.01355666946619749,
0.028995953500270844,
0.06135108321905136,
-0.05341457203030586,
0.05858253315091133,
0.016703588888049126,
0.003871356602758169,
0.0004712303925771266,
-0.017008129507303238,
0.0251568965613842,
-0.03628646954894066,
0.050978247076272964,
-0.0224068034440279,
0.04798821359872818,
-0.012716876342892647,
0.0527501180768013,
-0.07109638303518295,
-0.021816179156303406,
-0.043964583426713943,
-0.035252880305051804,
-0.0368770956993103,
-0.04492434859275818,
0.0353451631963253,
0.03968255966901779,
0.02595054917037487,
-0.05618312209844589,
-0.030823197215795517,
-0.010917318053543568,
-0.0596899539232254,
0.050572194159030914,
0.038796622306108475,
-0.013270585797727108,
-0.002202151343226433,
-0.041860487312078476,
0.042746420949697495,
-0.023440396413207054,
-0.0046650078147649765,
-0.027057968080043793,
0.004455059301108122,
0.016002222895622253,
0.07224071770906448,
-0.014784060418605804,
-0.024104848504066467,
-0.046954620629549026,
-0.0011212630197405815,
-0.0448136068880558,
-0.058434877544641495,
-0.040679238736629486,
0.0486895777285099,
0.014894803054630756,
-0.056884486228227615,
0.0025885947979986668,
0.06105577200651169,
-0.017820237204432487,
0.042340368032455444,
-0.01733112707734108,
-0.027722420170903206,
-0.058471791446208954,
-0.02041344717144966,
0.019472138956189156,
-0.003306110855191946,
-0.025765977799892426,
0.008010339923202991,
-0.025433752685785294,
-0.030952395871281624,
-0.03774457424879074,
-0.04300482198596001,
0.008393323048949242,
0.041085291653871536,
0.0157807394862175,
-0.036415670067071915,
0.02753785066306591,
-0.0025239954702556133,
0.05710597336292267,
0.03174604848027229,
-0.011268001049757004,
-0.017792552709579468,
-0.03661869838833809,
0.02794390544295311,
-0.028165388852357864,
-0.027740877121686935,
-0.011037289164960384,
0.05304542928934097,
-0.011517170816659927,
-0.013298272155225277,
-0.0036244941875338554,
-0.01375969685614109,
-0.016020679846405983,
0.019379854202270508,
0.025507580488920212,
0.02829458750784397,
0.06998895853757858,
0.05286085978150368,
0.03292729705572128,
0.05585089698433876,
0.028589900583028793,
-0.025507580488920212,
-0.03266889974474907,
-0.09752681106328964,
-0.005980069283396006,
-0.001828397042118013,
0.03065708465874195,
-0.05474347621202469,
0.0192506555467844,
0.051421213895082474,
-0.005283317528665066,
-0.03337026387453079,
-0.009634556248784065,
0.01238465029746294,
0.030232572928071022,
0.06408271938562393,
0.05585089698433876,
0.014387235045433044,
-0.017838694155216217,
0.05393136665225029,
-0.028534529730677605,
-0.03975638747215271,
0.03071245551109314,
-0.02323736809194088,
-0.009117760695517063,
0.0647471696138382,
-0.010732748545706272,
-0.009985239244997501,
-0.00706903263926506,
-0.015669995918869972,
-0.0007019429467618465,
-0.04920637235045433,
-0.030454058200120926,
0.019010715186595917,
0.0060585117898881435,
0.0005865866551175714,
0.011148030869662762,
-0.026984140276908875,
0.01619602181017399,
0.04736067354679108,
0.004418145399540663,
-0.0044665951281785965,
0.021963834762573242,
-0.020782586187124252,
-0.03110005334019661,
-0.009653013199567795,
-0.05012922361493111,
-0.06928759813308716,
0.037172406911849976,
0.02679957076907158,
-0.04677005112171173,
-0.03135845065116882,
-0.006506094243377447,
0.028017733246088028,
-0.011950910091400146,
-0.02161315269768238,
0.07135477662086487,
0.07257293909788132,
-0.0251568965613842,
-0.018604660406708717,
-0.03026948682963848,
0.02238834649324417,
0.005846256390213966,
0.019988935440778732,
0.006316909566521645,
0.006626064423471689,
-0.0011835554614663124,
-0.0035645090974867344,
-0.010908089578151703,
-0.010575863532721996,
-0.014608719386160374,
-0.03148765116930008,
0.07021044194698334,
0.027057968080043793,
-0.012107795104384422,
-0.015891481190919876,
-0.03975638747215271,
-0.01928756944835186,
-0.04990774020552635,
0.05655226111412048,
-0.010705062188208103,
-0.03159839287400246,
0.06829091906547546,
-0.009754526428878307,
-0.037984516471624374,
0.010668148286640644,
0.012975274585187435,
-0.013095244765281677,
0.016417505219578743,
-0.006852163001894951,
0.0068475487641990185,
-0.02080104500055313,
0.005527873057872057,
-0.008970104157924652,
-0.022111492231488228,
0.031247708946466446,
-0.07478778064250946,
-0.07046884298324585,
0.024547815322875977,
-0.0032345899380743504,
-0.0021871549542993307,
0.026578087359666824,
0.016214478760957718,
-0.0007555836346000433,
-0.03355483338236809,
0.021428581327199936,
-0.01419343613088131,
-0.0761905163526535,
0.03986712917685509,
-0.0496862567961216,
-0.015024001710116863,
0.05083059147000313,
0.055297184735536575,
-0.00035356698208488524,
0.04016244038939476,
-0.001390043180435896,
-0.017100414261221886,
0.07264676690101624,
0.016223706305027008,
0.060022179037332535,
0.038316741585731506,
-0.013925810344517231,
-0.016362134367227554,
-0.040347013622522354,
0.013104473240673542,
-0.01567922532558441,
-0.023864906281232834,
-0.03901810571551323,
0.019527511671185493,
0.04916945844888687,
-0.006547622382640839,
0.04894797503948212,
0.0643780305981636,
-0.007595057133585215,
-0.052528634667396545,
-0.039497990161180496,
-0.0598745234310627,
0.010142124257981777,
0.044702865183353424,
-0.03971947357058525,
-0.03584350273013115,
0.04957551509141922,
-0.058840930461883545,
0.0010116745252162218,
-0.01934294030070305,
-0.043484702706336975,
-0.004718071781098843,
-0.00964378472417593,
-0.03313032165169716,
-0.015005544759333134,
0.044222984462976456,
-0.013787382282316685,
-0.002055648947134614,
-0.027057968080043793,
0.022129949182271957,
0.019509052857756615,
-0.024916956201195717,
0.045478060841560364,
-0.007295131217688322,
0.013676640577614307,
0.016666674986481667,
-0.0188446007668972,
0.013482841663062572,
0.054485078901052475,
0.0993725135922432,
-0.0896272137761116,
0.042746420949697495,
0.03224438801407814,
-0.012569219805300236,
0.03709857910871506,
-0.02641197293996811,
-0.017404954880475998,
0.0025378381833434105,
-0.047434501349925995,
-0.053709883242845535,
-0.03392397612333298,
0.049317117780447006,
0.006579922046512365,
0.018623117357492447,
-0.01379661075770855,
-0.0590624138712883,
0.021742351353168488,
-0.0008103778818622231,
-0.016343677416443825,
-0.004282025154680014,
-0.012347736395895481,
-0.030232572928071022,
0.04245110973715782,
-0.013464384712278843,
0.0651901364326477,
-0.014820974320173264,
-0.06821709126234055,
0.05732745677232742,
-0.007595057133585215,
-0.01002215314656496,
0.018207835033535957,
-0.029032867401838303,
-0.10439281910657883,
-0.012901445850729942,
-0.04289408028125763,
-0.0094684436917305,
-0.018309349194169044,
0.05267629027366638,
-0.037873774766922,
0.03333334997296333,
0.034809909760951996,
0.02157623879611492,
0.003144612070173025,
0.02713179588317871,
0.03549281880259514,
0.0023763393983244896,
0.023514224216341972,
-0.03905502334237099,
0.009856040589511395,
0.014322635717689991,
-0.08217058330774307,
-0.05522335693240166,
0.03647104278206825,
-0.05939463898539543,
-0.031192338094115257,
0.029420465230941772,
0.012015510350465775,
-0.01575305312871933,
-0.04566263034939766,
-0.02482467144727707,
0.00804725382477045,
0.010132895782589912,
0.03857513889670372,
-0.01495940238237381,
-0.0022829007357358932,
-0.01810632087290287,
-0.0049141775816679,
-0.021133270114660263,
0.04053158313035965,
-0.0028216145001351833,
-0.0369693785905838,
0.001916067791171372,
0.003732929239049554,
-0.02358805201947689,
0.03750463202595711,
-0.013289043679833412,
0.019176827743649483,
0.05574015527963638,
0.02513843961060047,
0.05747511237859726,
-0.007765784859657288,
0.020210420712828636,
-0.03971947357058525,
0.005749356932938099,
0.06094503030180931,
-0.016980445012450218,
-0.012919902801513672,
0.009763755835592747,
0.06282764673233032,
0.038021430373191833,
0.01960133947432041,
0.0084302369505167,
-0.01455334760248661,
-0.05227023735642433,
-0.0035022166557610035,
0.02794390544295311,
0.029641948640346527,
0.0376892015337944,
0.008748619817197323,
0.025304554030299187,
0.007862684316933155,
0.0008092242642305791,
-0.012689190916717052,
0.022148406133055687,
0.02401256375014782,
-0.007350502070039511,
-0.010391293093562126,
0.00021470687352120876,
-0.01651901938021183,
-0.06290147453546524,
0.018770772963762283,
-0.02838687226176262,
0.0038505925331264734,
0.023458853363990784,
0.008296423591673374,
-0.03528979420661926,
-0.004637322388589382,
0.029678862541913986,
-0.017220385372638702,
0.06485791504383087,
-0.013307500630617142,
-0.07604286074638367,
-0.0009672623709775507,
-0.06319678574800491,
-0.04027318209409714,
0.03938724845647812,
0.043927669525146484,
0.023126626387238503,
-0.03436694294214249,
0.018558518961071968,
-0.011471028439700603,
0.02716870978474617,
-0.018355490639805794,
-0.02986343391239643,
0.06179405003786087,
-0.020653387531638145,
0.024252504110336304,
0.025046154856681824,
0.08726471662521362,
0.028165388852357864,
0.00373523635789752,
0.024215590208768845,
0.037873774766922,
-0.01002215314656496,
-0.061240341514348984,
0.004508123267441988,
-0.003206904511898756,
-0.01259690523147583,
0.017201928421854973,
-0.0259690061211586,
0.06998895853757858,
-0.05588781088590622,
-0.05481730401515961,
-0.05201184004545212,
-0.001353129162453115,
0.030970852822065353,
-0.0026139733381569386,
-0.01453489065170288,
-0.06710966676473618,
0.04326321929693222,
0.009966782294213772,
-0.060428231954574585,
0.08409011363983154,
-0.021797722205519676,
-0.0014984779991209507,
0.03578813001513481,
-0.07692879438400269,
-0.05441125109791756,
0.016666674986481667,
0.028110018000006676,
-0.012929131276905537,
-0.004844963550567627,
0.012338507920503616,
-0.005527873057872057,
0.05001848191022873,
0.041565172374248505,
0.0019968170672655106,
0.005975455045700073,
-0.02091178670525551,
0.017792552709579468,
0.003068476915359497,
-0.07301591336727142,
-0.017912521958351135,
0.03656332567334175,
0.019896650686860085,
-0.019084542989730835,
-0.014968630857765675,
0.01572536863386631,
0.03935033455491066,
-0.03466225415468216,
0.0012585369404405355,
-0.011738655157387257,
0.022185320034623146,
-0.002054495271295309
]
|
42,272 | pydle.client | _connect | Connect to IRC host. | def run(self, *args, **kwargs):
""" Connect and run bot in event loop. """
self.eventloop.run_until_complete(self.connect(*args, **kwargs))
try:
self.eventloop.run_forever()
finally:
self.eventloop.stop()
| (self, hostname, port, reconnect=False, channels=None, encoding='utf-8', source_address=None) | [
-0.010714460164308548,
-0.06419886648654938,
-0.08297333866357803,
-0.011575835756957531,
-0.008912602439522743,
-0.004465090576559305,
-0.013377693481743336,
0.02596432715654373,
-0.006108736153692007,
0.0052034128457307816,
-0.01120667438954115,
0.01161099411547184,
0.009413606487214565,
0.01961827278137207,
0.008701653219759464,
-0.05512804910540581,
-0.0020996034145355225,
0.0054407306015491486,
-0.06061272695660591,
-0.03007783554494381,
-0.05182318016886711,
0.05389751121401787,
0.05224507674574852,
-0.022905563935637474,
-0.0063372645527124405,
0.028741823509335518,
-0.018879950046539307,
0.030657945200800896,
-0.00994098000228405,
0.040326450020074844,
-0.004632092081010342,
-0.011707678437232971,
0.005080359056591988,
0.031097423285245895,
-0.003737755585461855,
-0.02700149267911911,
-0.03211700916290283,
0.006420765537768602,
-0.07200398296117783,
0.008688468486070633,
-0.011241832748055458,
-0.026720227673649788,
0.06303863972425461,
0.08353587239980698,
-0.022395769134163857,
-0.03965844213962555,
0.019671009853482246,
-0.018598685041069984,
-0.03958812728524208,
-0.0059241559356451035,
-0.029251618310809135,
0.07488695532083511,
0.00569562753662467,
0.03362881392240524,
-0.009650924243032932,
0.09752883017063141,
-0.03702157735824585,
0.04264688864350319,
-0.00004023965084343217,
-0.02928677573800087,
-0.07439474016427994,
-0.0031005132477730513,
0.00701845483854413,
0.08170764148235321,
0.012613002210855484,
-0.05797586217522621,
-0.009044446051120758,
0.0591009259223938,
0.0582219697535038,
-0.002970867557451129,
0.015381710603833199,
0.06469108164310455,
0.04268204793334007,
-0.051049698144197464,
0.015425657853484154,
-0.00017043483967427164,
-0.05983924865722656,
0.03677547350525856,
-0.03572072461247444,
0.10603711754083633,
-0.04254141449928284,
0.049291789531707764,
0.00020724107162095606,
0.004460696130990982,
0.05744849145412445,
0.01231415756046772,
-0.023591147735714912,
-0.00042272236896678805,
-0.03459566459059715,
-0.038814645260572433,
0.02823203057050705,
-0.029146144166588783,
-0.02990204468369484,
0.015715712681412697,
-0.017016565427184105,
0.010187086649239063,
-0.01645403541624546,
0.018229523673653603,
-0.041556987911462784,
0.02693117782473564,
-0.05003011226654053,
0.006346054375171661,
-0.005708811804652214,
-0.02656201645731926,
0.048166725784540176,
-0.07014060020446777,
-0.014933443628251553,
-0.011118778958916664,
-0.01534655224531889,
0.011022093705832958,
-0.01828226074576378,
-0.021675027906894684,
0.07045701891183853,
0.032327961176633835,
-0.07713708281517029,
-0.013615011237561703,
-0.013483167625963688,
0.01045956276357174,
0.014441228471696377,
-0.011417623609304428,
-0.058538395911455154,
0.055901531130075455,
0.014318174682557583,
-0.013122796081006527,
0.02761676162481308,
0.043947745114564896,
0.008960944600403309,
-0.0050539905205369,
0.011654941365122795,
-0.04538922756910324,
0.06732794642448425,
-0.0067108203656971455,
0.008495098911225796,
0.0034147396218031645,
0.024575578048825264,
0.06511297821998596,
0.05526868253946304,
-0.07137113809585571,
0.029796570539474487,
0.03289049118757248,
0.034613244235515594,
0.025841273367404938,
0.03617778420448303,
-0.007431563455611467,
-0.004526617471128702,
0.057026591151952744,
-0.10118528455495834,
-0.001464558532461524,
0.06507781893014908,
-0.034964825958013535,
0.06486687064170837,
-0.014406070113182068,
0.012850319966673851,
0.03459566459059715,
-0.07573074847459793,
-0.023942731320858,
-0.014177542179822922,
0.01821194402873516,
0.033206913620233536,
0.050276219844818115,
-0.005256149917840958,
-0.004574960097670555,
0.018756896257400513,
0.04197888448834419,
-0.019635852426290512,
0.009237815625965595,
-0.03793569281697273,
0.024663474410772324,
0.014493965543806553,
0.05903060734272003,
-0.008833496831357479,
0.02023354172706604,
-0.050698116421699524,
-0.014300595968961716,
0.008640126325190067,
0.00787104107439518,
-0.004851830657571554,
-0.022729773074388504,
-0.03740831837058067,
0.0031049081590026617,
-0.04721745476126671,
-0.04795577749609947,
-0.0032125799916684628,
-0.07699644565582275,
0.04099445417523384,
0.04967853054404259,
0.016779247671365738,
0.04760419577360153,
0.010521089658141136,
-0.01662103645503521,
-0.04022097587585449,
0.002228150609880686,
0.02401304617524147,
0.02578853629529476,
0.05249118432402611,
0.013553484342992306,
0.023098934441804886,
0.017904311418533325,
0.006820689886808395,
0.025366637855768204,
0.03684578835964203,
-0.004794698674231768,
0.048764415085315704,
-0.03413860872387886,
0.045775968581438065,
-0.0194424819201231,
-0.0007015158771537244,
-0.018405314534902573,
0.03920138627290726,
-0.051330965012311935,
-0.013667748309671879,
-0.01995227485895157,
-0.0224133487790823,
0.017570307478308678,
0.04785030335187912,
0.010055243968963623,
-0.015276235528290272,
-0.025102950632572174,
0.020251119509339333,
0.03790053352713585,
0.04025613144040108,
0.0056780483573675156,
-0.048061251640319824,
-0.027388233691453934,
-0.015276235528290272,
0.0050408062525093555,
0.00587141839787364,
-0.01420391071587801,
0.011373676359653473,
0.011883470229804516,
0.0009058728464879096,
0.04338521137833595,
0.011909838765859604,
0.0344901904463768,
-0.0202159620821476,
0.03807632625102997,
-0.023362619802355766,
0.013966592960059643,
-0.10280255973339081,
-0.00345429265871644,
-0.009220236912369728,
-0.010951777920126915,
-0.014581860974431038,
-0.05428425222635269,
-0.026720227673649788,
0.007101955357939005,
0.037689585238695145,
-0.018159206956624985,
0.01346558891236782,
0.012903057038784027,
-0.04704166576266289,
-0.01134730689227581,
0.04598691686987877,
0.007695249747484922,
-0.06497234106063843,
-0.02155197411775589,
0.05699143186211586,
0.038216955959796906,
0.03343544155359268,
0.04081866517663002,
0.007075586821883917,
0.016831986606121063,
-0.0668005719780922,
0.09527871012687683,
0.01740330643951893,
0.021481657400727272,
-0.002636864548549056,
-0.0026830097194761038,
0.004218983463943005,
-0.03758411109447479,
0.0694374367594719,
0.029954781755805016,
0.05386235564947128,
-0.0009976137662306428,
-0.05917124077677727,
-0.020954284816980362,
0.010433194227516651,
-0.00972124096006155,
-0.06992965191602707,
-0.02076091431081295,
0.023538410663604736,
0.030130572617053986,
0.0023951521143317223,
-0.005572573747485876,
0.00459693418815732,
-0.05354592949151993,
0.045354072004556656,
0.05192865431308746,
-0.013448009267449379,
-0.026403803378343582,
0.021710185334086418,
-0.025735799223184586,
0.02840782143175602,
-0.0033400284592062235,
-0.013975382782518864,
0.013483167625963688,
-0.047639355063438416,
0.08002004772424698,
0.006943743675947189,
-0.006455923430621624,
-0.006416370626538992,
-0.03387492150068283,
-0.05523352324962616,
0.009650924243032932,
0.01722751557826996,
0.02162228897213936,
0.02603464387357235,
0.01821194402873516,
-0.0369161032140255,
-0.029357092455029488,
-0.02805623970925808,
-0.045354072004556656,
0.01777246780693531,
0.02074333466589451,
-0.012085629627108574,
0.05692111700773239,
0.015030127950012684,
-0.011637362651526928,
0.04117024689912796,
-0.00919386837631464,
-0.029444988816976547,
0.03308385983109474,
0.032767437398433685,
0.05706175044178963,
-0.0052034128457307816,
0.020883968099951744,
0.013078848831355572,
0.05456551909446716,
-0.008024858310818672,
-0.0406428724527359,
0.04335005581378937,
-0.012621792033314705,
0.010661722160875797,
-0.04398290067911148,
-0.026017064228653908,
-0.03304870426654816,
0.017394516617059708,
0.02251882292330265,
0.03507030010223389,
-0.04742840304970741,
0.0063021061941981316,
0.01742088608443737,
0.03192364051938057,
0.04567049443721771,
0.09049719572067261,
0.03348818048834801,
-0.033101439476013184,
-0.0467955581843853,
0.04654945060610771,
-0.03025362640619278,
0.049748845398426056,
0.013940224424004555,
0.000026900825105258264,
-0.004570565186440945,
0.010881461203098297,
-0.020690597593784332,
0.0242767333984375,
-0.004935331642627716,
-0.04029129073023796,
-0.08332492411136627,
-0.07130081951618195,
-0.019688589498400688,
0.0066756620071828365,
0.006688846740871668,
-0.05456551909446716,
0.01734177954494953,
-0.015197129920125008,
0.024223996326327324,
0.04078350588679314,
0.07474632561206818,
0.0016831986140459776,
0.02937467209994793,
0.018247103318572044,
0.04443995654582977,
-0.026104958727955818,
-0.012375684455037117,
-0.008776363916695118,
-0.005506652407348156,
0.027511287480592728,
0.0287769827991724,
-0.026280751451849937,
0.0074974847957491875,
0.024118522182106972,
-0.0520692877471447,
0.020690597593784332,
-0.01873931847512722,
0.007093166001141071,
0.014362122863531113,
-0.028091397136449814,
-0.02745855040848255,
0.01134730689227581,
0.007216219324618578,
-0.01478402130305767,
-0.03519335389137268,
-0.03884980455040932,
-0.02146407775580883,
0.035914096981287,
0.01865142211318016,
0.00914113037288189,
-0.05224507674574852,
-0.0033400284592062235,
0.01837015710771084,
0.017631834372878075,
0.054389726370573044,
0.05632342770695686,
0.04117024689912796,
0.005269334651529789,
0.0011118779657408595,
0.0808638483285904,
0.021323444321751595,
-0.04623302444815636,
-0.016585879027843475,
-0.06620287895202637,
0.03510545566678047,
-0.03484177216887474,
-0.03167753294110298,
0.024505261331796646,
-0.00655260868370533,
0.010732038877904415,
0.04124056175351143,
-0.01174283679574728,
-0.030816158279776573,
0.06922648847103119,
0.011259411461651325,
0.012085629627108574,
-0.012955795042216778,
0.05955798178911209,
-0.006469107698649168,
0.017016565427184105,
-0.015583870001137257,
-0.06230032071471214,
0.01749999076128006,
-0.046936191618442535,
0.009237815625965595,
0.04264688864350319,
0.015706922858953476,
-0.013518325984477997,
0.0020732348784804344,
0.05284276604652405,
-0.022237557917833328,
-0.07945752143859863,
-0.017746098339557648,
-0.015610238537192345,
-0.06237063556909561,
0.022729773074388504,
-0.028038660064339638,
0.030464576557278633,
-0.05562026426196098,
0.012340526096522808,
0.017209935933351517,
-0.08536409586668015,
0.055549949407577515,
0.018932687118649483,
-0.024417366832494736,
0.005594547837972641,
-0.043420370668172836,
-0.017710940912365913,
0.06567550450563431,
0.017965838313102722,
-0.06208937242627144,
-0.018176786601543427,
-0.016937460750341415,
-0.025876430794596672,
-0.024399787187576294,
0.018932687118649483,
0.002854405902326107,
0.054741308093070984,
-0.019407322630286217,
0.0020677412394434214,
-0.03129079192876816,
0.03666999563574791,
-0.025841273367404938,
0.0678904727101326,
0.008112753741443157,
0.05523352324962616,
-0.04162730276584625,
-0.022624298930168152,
-0.05495226010680199,
-0.028091397136449814,
-0.030288783833384514,
-0.03990454971790314,
0.023204408586025238,
0.04380711168050766,
0.019319428130984306,
-0.07045701891183853,
-0.00035377932363189757,
0.045424386858940125,
-0.07488695532083511,
0.05857355147600174,
-0.04391258582472801,
-0.03332996740937233,
0.03842790797352791,
0.05530384182929993,
-0.03378702327609062,
-0.0024083363823592663,
-0.04001002386212349,
-0.07840277254581451,
-0.011294569820165634,
-0.03157205879688263,
-0.023468095809221268,
-0.002105096820741892,
0.06462076306343079,
0.008253386244177818,
0.035140614956617355,
0.0045793550089001656,
-0.010855092667043209,
-0.04229530692100525,
0.042260151356458664,
-0.0024347049184143543,
0.024522840976715088,
-0.008600573055446148,
-0.008543441072106361,
-0.0287769827991724,
-0.07242587953805923,
0.073832206428051,
-0.029181301593780518,
0.017482412979006767,
0.03141384571790695,
-0.029163721948862076,
-0.02111249603331089,
0.037338003516197205,
0.006135105155408382,
0.04373679310083389,
0.05456551909446716,
-0.0021292681340128183,
0.00040294587961398065,
0.03422650322318077,
0.024944739416241646,
-0.0020215963013470173,
0.009404816664755344,
0.07840277254581451,
0.014107225462794304,
-0.03375186771154404,
-0.05277245119214058,
-0.007734803017228842,
-0.047287773340940475,
-0.01926669105887413,
-0.01706930436193943,
-0.029234038665890694,
0.03835758939385414,
-0.025753377005457878,
0.007154692430049181,
-0.017904311418533325,
-0.05551479011774063,
-0.04180309176445007,
-0.029163721948862076,
0.01583876647055149,
0.04725261405110359,
0.015495974570512772,
-0.013483167625963688,
0.054143618792295456,
0.020796071738004684,
0.04753388091921806,
0.07784024626016617,
-0.058081336319446564,
-0.01829984039068222,
-0.024768948554992676,
-0.03264438360929489,
0.0030082231387495995,
0.01732419990003109,
-0.014581860974431038,
-0.018000995740294456,
-0.0795278400182724,
0.014414859935641289,
0.05305371433496475,
0.012024102732539177,
0.006293316837400198,
0.01593545265495777,
0.0005493467906489968,
0.02410094253718853,
-0.04588144272565842,
0.0022523219231516123,
0.0036212941631674767,
-0.02410094253718853,
-0.009519081562757492,
0.0309743694961071,
-0.03670515492558479,
-0.062054213136434555,
0.01509165484458208,
-0.025753377005457878,
-0.026333488523960114,
-0.0220793467015028,
0.005893392488360405,
0.01776367798447609,
-0.03993970900774002,
0.016427665948867798,
0.03420892357826233,
-0.010055243968963623,
0.00523417629301548,
-0.03923654556274414,
0.04345552995800972,
-0.029251618310809135,
-0.0273530762642622,
-0.027581604197621346,
0.027845289558172226,
-0.027247600257396698,
0.015794819220900536,
0.032486170530319214,
0.08740327507257462,
-0.02091912552714348,
-0.035931676626205444,
0.03614262491464615,
0.03148416429758072,
-0.017482412979006767,
-0.012982163578271866,
0.040150657296180725,
-0.06121041625738144,
-0.029392249882221222,
0.017130831256508827,
0.0022852825932204723,
-0.028038660064339638,
0.024223996326327324,
-0.012032892554998398,
0.03000751882791519,
-0.025226004421710968,
0.011241832748055458,
-0.04556502029299736,
0.0791059359908104,
0.009554238989949226,
0.055549949407577515,
0.05347561463713646,
-0.053792037069797516,
-0.03621293976902962,
0.013149164617061615,
-0.06462076306343079,
0.004526617471128702,
-0.005322071723639965,
-0.05832744389772415,
-0.04229530692100525,
0.0740431547164917,
0.01996985450387001,
0.0034213317558169365,
-0.03129079192876816,
-0.02656201645731926,
0.04792061820626259,
-0.06803110986948013,
0.01191862765699625,
-0.019547956064343452,
-0.034261662513017654,
-0.05699143186211586,
0.01924911141395569,
0.009624555706977844,
0.0007580985547974706,
-0.02445252425968647,
0.005682443268597126,
0.02965593710541725,
-0.05635858699679375,
-0.023380199447274208,
0.014537913724780083,
-0.05980408936738968,
0.029321935027837753,
0.019213953986763954,
0.033558495342731476,
0.12642887234687805,
-0.02040933258831501,
0.020725755020976067,
-0.010626564733684063,
-0.02111249603331089,
0.0057615493424236774,
-0.01863384246826172,
0.008982919156551361,
0.0016831986140459776,
-0.029761411249637604,
-0.017130831256508827,
-0.0029664726462215185,
0.03410344943404198,
0.018018575385212898,
-0.007506274618208408,
-0.014124805107712746,
0.006069183349609375,
0.01679682731628418,
0.03969360142946243,
0.015021339058876038,
0.0380060076713562,
-0.03208185359835625,
0.020778493955731392,
-0.02216724120080471,
-0.05896029248833656,
-0.01996985450387001,
-0.02445252425968647,
-0.03899043798446655,
-0.008741206489503384,
-0.024698631837964058,
-0.06697636097669601,
0.012235051952302456,
-0.029497725889086723,
0.007493090350180864,
-0.023995468392968178,
0.03192364051938057,
-0.043947745114564896,
-0.05143643915653229,
0.004355221521109343,
-0.017262673005461693,
-0.0175790973007679,
-0.005959313828498125,
-0.030236046761274338,
-0.02410094253718853,
-0.06841784715652466,
-0.05164738744497299,
-0.012208683416247368,
0.07105471193790436,
-0.023907572031021118,
-0.0018172392155975103,
0.01819436624646187,
0.04264688864350319,
-0.002447889419272542,
-0.0002980206336360425,
0.03167753294110298,
0.020989442244172096,
0.011716468259692192,
-0.013087637722492218,
-0.04433448240160942,
-0.006077972706407309,
0.03899043798446655,
-0.017649414017796516,
-0.01346558891236782,
-0.02919888123869896,
0.023889992386102676,
-0.025489691644906998,
0.013957803137600422,
-0.08388745039701462,
-0.03034152276813984,
0.006943743675947189,
-0.04222499206662178,
0.0902862474322319,
-0.03343544155359268,
-0.044545434415340424,
0.015724502503871918,
0.021833239123225212,
0.00017139619740191847,
-0.03870917111635208,
-0.07537917047739029,
0.009202657267451286,
0.09640377014875412,
-0.08065290004014969,
-0.021516814827919006,
0.03884980455040932,
-0.003366397228091955,
-0.01786036230623722,
-0.028970353305339813,
-0.033910077065229416,
-0.09323953092098236,
0.030851315706968307,
-0.018879950046539307,
0.04233046621084213,
-0.04134603589773178,
-0.027476130053400993,
0.012463579885661602,
0.047885462641716,
0.013333745300769806,
0.002390757203102112,
0.02596432715654373,
0.015214708633720875,
0.051506754010915756,
-0.020514806732535362,
0.0031642375979572535,
-0.009703661315143108,
0.011874680407345295,
-0.03828727453947067,
-0.022132083773612976,
0.06845300644636154,
-0.017904311418533325,
0.03069310449063778,
-0.0064119757153093815,
0.01845805160701275,
0.014792810194194317,
0.05446004495024681,
0.015610238537192345
]
|
42,273 | pydle.client | _create_channel | null | def _create_channel(self, channel):
self.channels[channel] = {
'users': set(),
}
| (self, channel) | [
-0.06114240363240242,
0.03805837035179138,
-0.01928156241774559,
0.029393445700407028,
-0.002450154861435294,
0.029898198321461678,
-0.012450572103261948,
0.08015476167201996,
0.03566920757293701,
0.028013788163661957,
0.039135176688432693,
0.04643727093935013,
-0.031244205310940742,
0.03366702049970627,
-0.04744677618145943,
-0.010128708556294441,
0.021687550470232964,
0.0014785054372623563,
0.026230327785015106,
0.013031038455665112,
-0.012871199287474155,
-0.03154705837368965,
0.06555058062076569,
0.045192211866378784,
0.017085885629057884,
0.0437452532351017,
-0.012888024561107159,
0.042399246245622635,
0.013661978766322136,
-0.027845537289977074,
-0.03526540473103523,
-0.04350970312952995,
0.035938408225774765,
0.02039201743900776,
0.014772435650229454,
0.0056237890385091305,
-0.05673423036932945,
0.046975672245025635,
-0.0971817597746849,
-0.0020337337628006935,
0.036846961826086044,
0.043105900287628174,
-0.015142587944865227,
0.00357953947968781,
-0.004614282865077257,
0.013712454587221146,
0.02675190567970276,
0.06777149438858032,
0.0037835438270121813,
-0.02079582028090954,
-0.05000419169664383,
0.010423148050904274,
-0.0006093839765526354,
0.008513499051332474,
-0.053537461906671524,
-0.03449144959449768,
-0.002246150514110923,
0.032842591404914856,
-0.03708251565694809,
0.0635988712310791,
-0.07066541165113449,
0.009270628914237022,
0.010381084866821766,
-0.0012114070123061538,
-0.004942372441291809,
0.004151592962443829,
0.009884744882583618,
0.01253469754010439,
0.035231754183769226,
0.04320685192942619,
0.02375703677535057,
0.006313617806881666,
0.04589886590838432,
-0.04303859919309616,
0.00045532919466495514,
0.022713880985975266,
-0.04734582453966141,
0.052729856222867966,
0.0033502974547445774,
0.020627569407224655,
0.029023293405771255,
0.038630422204732895,
0.004563807509839535,
0.04980228841304779,
0.07584753632545471,
0.08028936386108398,
0.022545630112290382,
-0.02624715305864811,
-0.03439049795269966,
0.012400097213685513,
0.017632702365517616,
0.009236978366971016,
0.04879278317093849,
-0.007461930625140667,
0.020526619628071785,
-0.007373598869889975,
0.00033886797609739006,
0.035332705825567245,
0.00336291640996933,
0.009623955935239792,
-0.044754758477211,
-0.0488264337182045,
-0.032825764268636703,
-0.005434506572782993,
-0.041692592203617096,
-0.07584753632545471,
0.015277188271284103,
-0.07201141864061356,
-0.04058213531970978,
0.011020438745617867,
-0.052326053380966187,
0.008740638382732868,
0.06386806815862656,
0.030302001163363457,
-0.002818203764036298,
-0.00905190221965313,
-0.031765785068273544,
-0.025304947048425674,
0.03290989249944687,
-0.028518540784716606,
-0.021031372249126434,
0.0284848902374506,
0.024547817185521126,
0.05010513961315155,
-0.0004768863436765969,
0.006641707383096218,
-0.01340118981897831,
0.02284848317503929,
0.07894335687160492,
0.026785554364323616,
-0.022831657901406288,
-0.012871199287474155,
0.03213593736290932,
-0.05141749978065491,
-0.02247833088040352,
-0.03795741870999336,
-0.06629088521003723,
-0.020930420607328415,
0.05168670043349266,
0.05858498811721802,
-0.04724487289786339,
0.04175989329814911,
-0.0007439847686327994,
0.0034954140428453684,
0.04048118367791176,
-0.0070917787961661816,
-0.01155042927712202,
0.029107417911291122,
-0.06521407514810562,
-0.043105900287628174,
-0.01722048781812191,
-0.02079582028090954,
-0.021502474322915077,
0.028922341763973236,
-0.02476654388010502,
0.0595271959900856,
-0.0437452532351017,
0.028148388490080833,
0.013333889655768871,
0.03465970233082771,
0.006700594909489155,
0.0028308227192610502,
-0.04879278317093849,
0.0757802426815033,
-0.026533178985118866,
-0.031866732984781265,
0.05198955163359642,
-0.05182129889726639,
-0.019247911870479584,
0.04236559569835663,
0.007937239482998848,
-0.00031520769698545337,
-0.027492210268974304,
0.006275761406868696,
-0.042601145803928375,
0.03566920757293701,
0.031059129163622856,
-0.04327414929866791,
0.044485557824373245,
-0.022293254733085632,
-0.03190038353204727,
-0.03849582374095917,
0.028972817584872246,
0.020358368754386902,
0.05548917129635811,
-0.05633042752742767,
0.04795152693986893,
0.04818708077073097,
-0.0004374525451567024,
-0.004845628049224615,
-0.010280134156346321,
0.009581892751157284,
0.009110790677368641,
0.012997387908399105,
0.02727348357439041,
0.004963403567671776,
-0.01621939428150654,
-0.008315804414451122,
-0.11844868957996368,
0.006948765367269516,
0.014301332645118237,
0.001550012151710689,
0.03496255353093147,
-0.036813315004110336,
0.050845444202423096,
0.015512740239501,
0.02242785505950451,
-0.00652393139898777,
0.025103045627474785,
-0.03519810363650322,
-0.010953138582408428,
-0.02320181019604206,
0.0376545675098896,
0.00006026802657288499,
-0.04307224974036217,
-0.025473197922110558,
0.04391350597143173,
0.0013659875839948654,
0.0073988367803394794,
0.003531167283654213,
-0.029208369553089142,
0.011272815056145191,
-0.0178009532392025,
-0.04660551995038986,
-0.02350466139614582,
-0.03987548127770424,
0.0004966032574884593,
-0.044283658266067505,
-0.033397819846868515,
0.013804992660880089,
0.03795741870999336,
0.03210228681564331,
0.003777234349399805,
0.0038508442230522633,
-0.051955901086330414,
-0.00601497245952487,
0.022831657901406288,
0.05410951375961304,
0.003930763341486454,
0.02486749365925789,
0.044081754982471466,
0.0011030954774469137,
0.05310000851750374,
0.05808023735880852,
0.01820475608110428,
0.037822820246219635,
0.008521911688148975,
-0.012660886161029339,
-0.005884577985852957,
0.012189783155918121,
-0.023689737543463707,
-0.05347016081213951,
-0.05010513961315155,
0.017716826871037483,
-0.03647681325674057,
-0.12060230225324631,
-0.07005970925092697,
-0.01012029591947794,
-0.010625049471855164,
-0.035433653742074966,
-0.04818708077073097,
0.07705894857645035,
-0.014149907045066357,
0.0641036182641983,
0.0038340191822499037,
-0.047985177487134933,
-0.015125762671232224,
0.09132663160562515,
-0.04694202169775963,
0.026415403932332993,
0.0027298720087856054,
0.03910152614116669,
0.06366617232561111,
-0.02086312137544155,
-0.015075287781655788,
-0.05882054194808006,
0.007503993343561888,
0.011096151545643806,
-0.0523933544754982,
0.026819204911589622,
-0.01845713146030903,
0.009800619445741177,
0.049162935465574265,
0.08028936386108398,
-0.0030579615850001574,
0.03112643025815487,
0.04546141251921654,
0.015344489365816116,
0.0024186077062040567,
-0.028047436848282814,
-0.07564564049243927,
0.00890047661960125,
0.0022798008285462856,
0.03620760887861252,
0.013241351582109928,
0.023874813690781593,
-0.051249247044324875,
0.025405896827578545,
0.07288632541894913,
0.018406657502055168,
0.0027845536824315786,
0.0777992531657219,
-0.04902833327651024,
0.018339356407523155,
0.010347435250878334,
-0.011180276982486248,
-0.03906787559390068,
0.004025404807180166,
-0.020509794354438782,
-0.006006559822708368,
-0.016783034428954124,
0.013317064382135868,
-0.0049549913965165615,
0.07685704529285431,
0.05417681485414505,
0.02141834981739521,
0.019904090091586113,
-0.023824337869882584,
0.03886597603559494,
0.04367795214056969,
0.007705894764512777,
-0.054917119443416595,
-0.05172035098075867,
0.013931180350482464,
0.0345924012362957,
0.040514834225177765,
0.033953048288822174,
0.022091353312134743,
-0.0584840402007103,
0.0188272837549448,
-0.03287624195218086,
0.026482703164219856,
-0.010263309814035892,
0.02498527057468891,
-0.07241521775722504,
0.0427357479929924,
-0.023689737543463707,
-0.0213678739964962,
0.014208794571459293,
-0.009623955935239792,
-0.044889360666275024,
0.021182797849178314,
-0.08123157173395157,
0.010221246629953384,
0.06632453203201294,
-0.03259021416306496,
0.001135694095864892,
-0.011491541750729084,
-0.07867415249347687,
-0.035635557025671005,
0.007213760633021593,
0.04990324005484581,
0.029309319332242012,
0.04186084121465683,
0.06645913422107697,
0.016850335523486137,
-0.019904090091586113,
-0.0274753849953413,
-0.040514834225177765,
-0.019870439544320107,
0.013333889655768871,
0.02182215079665184,
0.04822073131799698,
-0.0236560869961977,
-0.06450742483139038,
0.04640362039208412,
0.003388154087588191,
0.0463026687502861,
0.04455285891890526,
-0.05047529190778732,
0.034104473888874054,
0.007297886069864035,
-0.00948935467749834,
0.045495063066482544,
0.003508032765239477,
0.010313784703612328,
-0.050542593002319336,
0.011516779661178589,
-0.0722133219242096,
-0.013788167387247086,
0.008866826072335243,
0.03427272289991379,
0.005556488409638405,
0.04421635717153549,
-0.0021809532772749662,
-0.00676368921995163,
0.031244205310940742,
0.0019853615667670965,
0.06171445921063423,
0.005998147185891867,
-0.04004373028874397,
0.016261456534266472,
-0.0004805668431799859,
-0.0038340191822499037,
0.02604525163769722,
-0.04095228761434555,
0.03218641132116318,
-0.010625049471855164,
0.023117683827877045,
-0.007903589867055416,
0.03836122155189514,
-0.059897348284721375,
0.02971312217414379,
0.0034091854467988014,
-0.016337169334292412,
0.05000419169664383,
0.008160172030329704,
0.040211983025074005,
0.004084292333573103,
-0.026667779311537743,
0.001650962745770812,
-0.011323290877044201,
-0.03159753233194351,
-0.058786891400814056,
-0.013384365476667881,
-0.06124335527420044,
0.016850335523486137,
-0.07039620727300644,
0.027862360700964928,
0.03691426292061806,
-0.008908889256417751,
-0.037620916962623596,
-0.03735171630978584,
0.05198955163359642,
-0.00755446869879961,
0.0559602752327919,
0.04044753313064575,
0.007710101082921028,
0.04532681405544281,
0.013653567060828209,
0.001393328420817852,
-0.018558083102107048,
0.03836122155189514,
-0.0031483962666243315,
-0.0020105992443859577,
-0.03957263007760048,
0.0025637242943048477,
-0.027088407427072525,
-0.07981826364994049,
0.08284678310155869,
-0.00494657875970006,
-0.010784887708723545,
-0.02079582028090954,
-0.02644905261695385,
-0.00011475242354208604,
0.04283669963479042,
-0.056027576327323914,
0.007016065530478954,
0.03640951216220856,
0.014006894081830978,
-0.030991829931735992,
0.006191635970026255,
0.022915782406926155,
0.00028707823366858065,
0.020459318533539772,
0.035029854625463486,
-0.07026160508394241,
-0.006233698688447475,
0.006683770101517439,
-0.015807179734110832,
-0.008496674709022045,
0.012172957882285118,
-0.0625893622636795,
0.06682928651571274,
0.012021532282233238,
0.014864973723888397,
0.03738536685705185,
-0.050542593002319336,
-0.002940185833722353,
0.03317909315228462,
0.020509794354438782,
0.010515686124563217,
0.0345924012362957,
-0.027811886742711067,
-0.023487836122512817,
-0.05707073211669922,
-0.031967684626579285,
0.008950951509177685,
-0.08015476167201996,
-0.035736508667469025,
-0.06016654893755913,
0.04213004559278488,
0.004244131036102772,
0.038832325488328934,
-0.01689239777624607,
-0.014006894081830978,
-0.016454946249723434,
-0.010162359103560448,
0.013342302292585373,
0.00021294264297466725,
-0.04997054114937782,
-0.05804658681154251,
-0.0411878377199173,
0.0010547232814133167,
0.007285267114639282,
-0.0018844109727069736,
-0.021031372249126434,
0.05599392578005791,
-0.007617563009262085,
-0.03607301041483879,
-0.014284507371485233,
0.018171105533838272,
-0.08917301893234253,
-0.021855801343917847,
0.019954565912485123,
-0.013275002129375935,
-0.04670647159218788,
-0.038125671446323395,
-0.013830230571329594,
-0.02096407115459442,
0.07409773021936417,
0.01304786279797554,
-0.041692592203617096,
-0.08809620887041092,
0.044889360666275024,
0.03297718986868858,
-0.007079159840941429,
-0.016909223049879074,
-0.040514834225177765,
-0.022040877491235733,
0.03215276077389717,
0.01246739737689495,
0.04034658521413803,
0.03285941481590271,
0.036342211067676544,
-0.016984935849905014,
0.01998821645975113,
-0.06232016161084175,
0.007621769327670336,
0.035332705825567245,
0.03472699970006943,
-0.005884577985852957,
-0.0371498167514801,
0.05108099430799484,
0.018558083102107048,
-0.0317826084792614,
0.03388574719429016,
0.05091274529695511,
-0.023689737543463707,
-0.015285600908100605,
-0.016278281807899475,
-0.023117683827877045,
0.017935553565621376,
-0.08176997303962708,
-0.02961217239499092,
-0.027593160048127174,
0.023723388090729713,
-0.04421635717153549,
0.040514834225177765,
-0.04465381056070328,
-0.008526118472218513,
0.028367115184664726,
-0.06568518280982971,
-0.026280801743268967,
0.03540000692009926,
-0.020408842712640762,
-0.05693612992763519,
-0.04027928411960602,
0.02064439468085766,
0.0272230077534914,
-0.02543954737484455,
-0.00779422651976347,
-0.02961217239499092,
0.020156467333436012,
0.021586600691080093,
-0.04206274449825287,
-0.03556825593113899,
0.024968445301055908,
0.0180533304810524,
0.020021865144371986,
-0.024530991911888123,
-0.003941278904676437,
-0.003958104178309441,
0.0180533304810524,
-0.03540000692009926,
-0.0544460155069828,
0.020105991512537003,
0.008172791451215744,
0.0287372674793005,
0.0006977157900109887,
-0.0646420270204544,
-0.01877680793404579,
0.01055774837732315,
-0.024631943553686142,
-0.03826026991009712,
-0.02782871201634407,
0.04142339155077934,
0.011659792624413967,
-0.025877000764012337,
0.06134430691599846,
0.017380325123667717,
0.03755361586809158,
-0.010179184377193451,
-0.004446031991392374,
0.01892823539674282,
-0.019803140312433243,
0.036947913467884064,
-0.025506848469376564,
-0.007819464430212975,
0.014890211634337902,
-0.03789012134075165,
0.029393445700407028,
-0.04552871361374855,
0.0021914688404649496,
0.008408342488110065,
-0.04337510094046593,
-0.02335323579609394,
-0.054917119443416595,
-0.00487086595967412,
-0.021502474322915077,
-0.01694287359714508,
0.03620760887861252,
-0.03896692767739296,
0.0605367012321949,
0.029797248542308807,
-0.02044249325990677,
0.019971391186118126,
-0.04912928491830826,
0.023184984922409058,
0.010111883282661438,
-0.04246654734015465,
-0.004769915249198675,
-0.042702097445726395,
-0.00247328937985003,
-0.05013879016041756,
-0.05350381135940552,
0.03556825593113899,
0.03215276077389717,
-0.01714477501809597,
0.004145283252000809,
-0.023084033280611038,
-0.0234037097543478,
-0.04307224974036217,
-0.012988975271582603,
0.0513838492333889,
-0.024749718606472015,
-0.035231754183769226,
-0.03489525243639946,
0.06346426904201508,
0.012501047924160957,
0.002376544987782836,
-0.001180911553092301,
0.0345924012362957,
-0.03984183073043823,
-0.045797914266586304,
0.029393445700407028,
0.04246654734015465,
-0.05310000851750374,
-0.054917119443416595,
-0.04764867573976517,
-0.009472530335187912,
-0.010465210303664207,
0.034104473888874054,
-0.035231754183769226,
0.003770924871787429,
0.04583156481385231,
-0.02742490917444229,
0.05360475927591324,
0.010877425782382488,
-0.041793543845415115,
0.03413812443614006,
0.02451416663825512,
0.09738366305828094,
-0.0027172532863914967,
-0.041524339467287064,
0.04822073131799698,
0.04573061689734459,
-0.0534028597176075,
-0.0767897441983223,
0.07086730748414993,
0.033902570605278015,
-0.023841163143515587,
0.0018654826562851667,
-0.024329090490937233,
0.012164545245468616,
0.022983083501458168,
-0.03317909315228462,
0.0681416466832161,
-0.01897870935499668,
0.010793300345540047,
-0.06144525483250618,
0.014301332645118237,
-0.007415661588311195,
0.0033376787323504686,
0.036544110625982285,
0.030487077310681343,
-0.023538311943411827,
-0.039808180183172226,
0.0019285768503323197,
-0.03107595443725586,
0.00006375134398695081,
0.018137454986572266,
-0.06578613072633743,
-0.009994108229875565,
-0.04058213531970978,
-0.016000667586922646,
-0.031816259026527405,
-0.0040527451783418655,
-0.019365686923265457,
-0.003055858425796032,
0.07194411754608154,
0.02888869307935238,
-0.016421295702457428,
-0.001628879806958139,
-0.016034318134188652,
-0.04058213531970978,
-0.005350381135940552,
0.016084793955087662,
0.028215687721967697,
0.028855042532086372,
-0.019348861649632454,
0.024951620027422905,
0.029746772721409798,
0.016656845808029175,
-0.025119870901107788,
0.025456372648477554,
-0.04879278317093849,
0.05838308855891228,
-0.005741564556956291,
0.0016982832457870245,
0.06134430691599846,
-0.007306298706680536,
-0.02742490917444229,
0.05599392578005791,
0.024396391585469246,
-0.09280724078416824,
0.019012359902262688,
0.009346341714262962,
0.0234037097543478,
-0.025776049122214317,
-0.015016399323940277,
-0.0007008704706095159,
-0.026970630511641502,
0.1251114308834076,
0.05676787719130516,
0.009909982793033123,
0.0340876467525959,
-0.004656345583498478,
0.021738026291131973,
0.00573735823854804,
-0.062387462705373764,
-0.03856312483549118,
0.018473956733942032,
-0.009657605551183224,
0.00926221627742052,
-0.033902570605278015,
0.019819965586066246,
0.005682676564902067,
0.009859506972134113,
0.034928902983665466,
-0.0036152927204966545,
-0.018793633207678795,
-0.05804658681154251,
0.059998296201229095,
-0.06905020028352737,
-0.03963993117213249,
-0.0123327961191535,
0.057407233864068985,
-0.019315211102366447,
0.01118868961930275,
-0.01223184634000063,
-0.04495666176080704,
0.02044249325990677,
-0.021199623122811317,
-0.003402875969186425,
0.011525191366672516,
0.07194411754608154,
0.012324383482336998
]
|
42,274 | pydle.client | _create_message | null | def _create_message(self, command, *params, **kwargs):
raise NotImplementedError()
| (self, command, *params, **kwargs) | [
-0.005276543088257313,
-0.03565867617726326,
0.015216272324323654,
-0.015241479501128197,
-0.012418360449373722,
-0.03404546529054642,
-0.0050118756480515,
0.07938340306282043,
0.046547845005989075,
-0.029155420139431953,
0.04896766319870949,
0.04722001776099205,
-0.014796165749430656,
-0.029088202863931656,
-0.058277230709791183,
0.04977426677942276,
0.03646527975797653,
-0.011141235940158367,
-0.04668227955698967,
-0.03362535685300827,
0.003883888479322195,
0.035961151123046875,
0.013552648946642876,
0.026147454977035522,
0.03696940839290619,
0.05172356590628624,
-0.0374063216149807,
0.023055467754602432,
0.07272890955209732,
-0.0208204984664917,
-0.06956970691680908,
-0.04422885552048683,
0.00551600381731987,
0.0873822420835495,
-0.016527006402611732,
0.06516698747873306,
-0.017762120813131332,
0.02602982521057129,
-0.08422303199768066,
-0.025105590000748634,
-0.010956388898193836,
0.01667824387550354,
0.05269821360707283,
0.008091259747743607,
0.028449641540646553,
-0.0527990385890007,
-0.002013362478464842,
0.06089869886636734,
-0.07898010313510895,
0.045842066407203674,
-0.030062850564718246,
-0.004005719441920519,
0.013586257584393024,
-0.004276688676327467,
-0.11487403512001038,
0.018333466723561287,
0.034818463027477264,
0.04039748013019562,
-0.028483249247074127,
0.030062850564718246,
-0.038280144333839417,
0.0705779641866684,
0.023425161838531494,
0.005301749333739281,
-0.015157457441091537,
-0.023845268413424492,
0.011225257068872452,
-0.026349106803536415,
0.03784323111176491,
0.058478884398937225,
0.07803906500339508,
-0.0075115119107067585,
-0.0067469170317053795,
0.01924089714884758,
0.03626362979412079,
0.017047937959432602,
-0.04251481965184212,
0.00983890425413847,
0.048597969114780426,
0.059184662997722626,
-0.005919306538999081,
-0.03362535685300827,
-0.020047502592206,
0.0429181233048439,
0.0550508126616478,
0.008200487121939659,
-0.025374457240104675,
-0.008662604726850986,
-0.0282311849296093,
-0.03328927233815193,
-0.02110617235302925,
-0.05041282996535301,
-0.03912035748362541,
0.01615731231868267,
-0.012695631012320518,
-0.03733910247683525,
0.005364765413105488,
0.016636233776807785,
0.01826624944806099,
0.039490051567554474,
-0.0282311849296093,
0.03538980707526207,
0.009351580403745174,
-0.06311686336994171,
0.0011416405905038118,
-0.04251481965184212,
-0.01675386354327202,
-0.0013306887121871114,
-0.02197999320924282,
-0.007112410385161638,
-0.00821309071034193,
0.06180613115429878,
-0.03167606145143509,
-0.017543664202094078,
-0.03854900971055031,
0.007902211509644985,
-0.006692303344607353,
-0.00798623263835907,
-0.021593496203422546,
-0.013846724294126034,
-0.019913068041205406,
-0.02639951929450035,
-0.02391248568892479,
-0.07125013321638107,
0.0015270886942744255,
0.022618556395173073,
-0.006167169660329819,
-0.0457412414252758,
0.06698184460401535,
-0.09181857109069824,
-0.05612628534436226,
0.008061851374804974,
0.02860087901353836,
-0.037204667925834656,
-0.011393299326300621,
-0.002627768786624074,
-0.009570036083459854,
-0.02445022203028202,
0.036666933447122574,
0.05236212536692619,
0.06983857601881027,
0.02902098558843136,
0.01658582128584385,
0.0009883015882223845,
-0.028886551037430763,
-0.016098497435450554,
0.05592463165521622,
-0.029357071965932846,
-0.015048230066895485,
0.032785143703222275,
0.018955225124955177,
-0.021559886634349823,
-0.042582038789987564,
-0.0007036791066639125,
0.0564623698592186,
0.01888800784945488,
0.015451532788574696,
-0.0257609561085701,
-0.03512093797326088,
0.016350561752915382,
0.03053337149322033,
-0.025542501360177994,
-0.001628964557312429,
0.02930665947496891,
0.044699374586343765,
0.03144080191850662,
0.038885097950696945,
-0.01693030819296837,
0.006120957899838686,
0.03318844735622406,
-0.024954350665211678,
0.017812533304095268,
-0.017098352313041687,
-0.007129214238375425,
-0.000047097924834815785,
0.03139038756489754,
-0.011334484443068504,
0.0002326342073502019,
-0.01186381932348013,
-0.052026040852069855,
-0.030600588768720627,
0.0034805857576429844,
0.03318844735622406,
0.012241915799677372,
0.022971445694565773,
0.023458771407604218,
0.048060230910778046,
0.014443275518715382,
-0.01535070687532425,
-0.05666401982307434,
-0.04705197364091873,
-0.011662168428301811,
0.03362535685300827,
0.05377368628978729,
-0.00562523165717721,
-0.021139780059456825,
0.01977863349020481,
-0.011132833547890186,
-0.027222927659749985,
0.07232560962438583,
0.023105880245566368,
0.02231607958674431,
0.006360418628901243,
-0.010704324580729008,
0.021845560520887375,
-0.006515858229249716,
-0.004843832924962044,
0.0058814967051148415,
-0.03322205692529678,
-0.08798719197511673,
-0.0031066907104104757,
0.0012340641114860773,
0.04264925420284271,
0.061402827501297,
0.041775431483983994,
-0.017014330253005028,
0.02974357083439827,
0.018400683999061584,
-0.03589393571019173,
-0.0014777261530980468,
0.08361808210611343,
0.028752118349075317,
-0.046110935509204865,
-0.008040846325457096,
0.015182663686573505,
0.0008060801774263382,
0.02488713338971138,
-0.026097042486071587,
-0.0029344467911869287,
0.0021656511817127466,
-0.014174407348036766,
-0.005205124616622925,
-0.014006365090608597,
0.05108500272035599,
-0.06180613115429878,
-0.03478485345840454,
-0.027676643803715706,
-0.0306341964751482,
-0.002688684267923236,
0.029138615354895592,
-0.003974211402237415,
-0.002149897161871195,
0.03254988417029381,
0.1071440726518631,
0.07232560962438583,
-0.035255372524261475,
0.0018925816984847188,
0.0570337139070034,
-0.006986378226429224,
0.03918757289648056,
-0.03680136799812317,
0.0025311443023383617,
-0.05958796665072441,
-0.018047792837023735,
-0.019022440537810326,
-0.004801821894943714,
-0.010687519796192646,
-0.041977085173130035,
0.03238184005022049,
0.019963480532169342,
-0.0570337139070034,
0.03777601569890976,
-0.041103262454271317,
0.042682863771915436,
0.06204139068722725,
-0.051488302648067474,
-0.060428179800510406,
0.028886551037430763,
-0.049471791833639145,
0.058814968913793564,
0.05871414393186569,
0.06183973699808121,
0.010183392092585564,
0.02445022203028202,
-0.031457606703042984,
-0.029323462396860123,
-0.03636445477604866,
-0.026147454977035522,
-0.019963480532169342,
-0.023105880245566368,
-0.0011994052911177278,
-0.011048812419176102,
0.04977426677942276,
0.0393892265856266,
-0.013703887350857258,
0.03407907485961914,
0.06194056570529938,
0.008872658014297485,
-0.009738078340888023,
-0.007780380081385374,
-0.05602546036243439,
0.06388986110687256,
-0.0038649835623800755,
0.05084974318742752,
0.011342886835336685,
-0.011973047628998756,
-0.03565867617726326,
0.06520059704780579,
0.058747753500938416,
-0.05861331894993782,
0.004885843489319086,
0.022887425497174263,
-0.025643326342105865,
-0.0570337139070034,
-0.0732666477560997,
0.0008654202683828771,
-0.0012004554737359285,
0.0031108916737139225,
-0.02135823667049408,
-0.0321129746735096,
-0.00348688755184412,
0.04890044406056404,
0.008637398481369019,
0.06291521340608597,
0.06896474957466125,
0.06288160383701324,
0.052026040852069855,
0.0009079560986720026,
0.054513074457645416,
0.045842066407203674,
0.012334339320659637,
-0.057672277092933655,
0.003312543034553528,
0.005902502220124006,
0.03354133665561676,
0.016291746869683266,
-0.045169897377491,
-0.0022076619789004326,
0.030550174415111542,
0.029777178540825844,
-0.0010255860397592187,
0.06294882297515869,
0.012905684299767017,
-0.0423467792570591,
-0.08523128926753998,
-0.0010418652091175318,
-0.011418506503105164,
0.010569890029728413,
-0.005906703416258097,
0.007125013507902622,
0.005200923886150122,
0.004131751600652933,
-0.03972531110048294,
0.030550174415111542,
0.058814968913793564,
-0.03912035748362541,
0.025878585875034332,
-0.008746625855565071,
0.02399650774896145,
-0.010040555149316788,
-0.02313948981463909,
0.007847596891224384,
0.027911903336644173,
0.014325645752251148,
0.06701545417308807,
-0.03898592293262482,
-0.010343031957745552,
-0.006986378226429224,
0.005952915176749229,
-0.016132105141878128,
-0.0034805857576429844,
0.01614050753414631,
0.053336773067712784,
-0.007666951511055231,
-0.09188578277826309,
0.020181937143206596,
0.01907285489141941,
0.023055467754602432,
0.035625066608190536,
0.007032589986920357,
0.031978540122509,
-0.055722981691360474,
-0.02843283675611019,
0.03643167391419411,
-0.04483380913734436,
0.001746594556607306,
-0.0494045726954937,
-0.0278110783547163,
-0.06261273473501205,
-0.00725944759324193,
-0.010653911158442497,
-0.0556221567094326,
-0.011998253874480724,
-0.010788345709443092,
0.01651020161807537,
0.028920160606503487,
0.04994231089949608,
0.06237747520208359,
0.009595242328941822,
0.004520350601524115,
-0.044531334191560745,
-0.039758920669555664,
0.014039973728358746,
-0.011368093080818653,
-0.026903647929430008,
-0.007692157756537199,
0.02586178295314312,
0.030046047642827034,
-0.03733910247683525,
-0.029793983325362206,
-0.004253582563251257,
-0.046110935509204865,
-0.007666951511055231,
0.010048957541584969,
-0.004986668936908245,
-0.02964274398982525,
-0.021845560520887375,
0.10438816994428635,
0.012107481248676777,
0.004035126883536577,
0.028920160606503487,
-0.021341431885957718,
-0.06963692605495453,
0.002300085499882698,
-0.006977975834161043,
-0.029508309438824654,
-0.022265667095780373,
-0.007297257427126169,
-0.057941146194934845,
-0.009654057212173939,
-0.02408052794635296,
-0.017896555364131927,
0.05128665268421173,
0.04076717421412468,
0.024954350665211678,
0.06671297550201416,
-0.03179369121789932,
0.017762120813131332,
0.06301603466272354,
-0.03821292519569397,
-0.04278368875384331,
0.004165360238403082,
-0.031457606703042984,
0.007809787523001432,
-0.004885843489319086,
-0.008805440738797188,
-0.019022440537810326,
-0.06079787388443947,
-0.017182372510433197,
0.08180321753025055,
-0.011149637401103973,
-0.005839486140757799,
0.02876892127096653,
0.019207287579774857,
-0.0030919869896024466,
-0.0479930154979229,
-0.0008633197285234928,
-0.04624537006020546,
0.026987668126821518,
-0.004911049734801054,
0.07777019590139389,
0.08973483741283417,
0.0486987940967083,
-0.012334339320659637,
0.0002340783248655498,
-0.08576902747154236,
-0.013342595659196377,
-0.012964499182999134,
0.019392134621739388,
-0.06331851333379745,
-0.004186365287750959,
0.05713454261422157,
-0.1113787442445755,
0.02408052794635296,
-0.007028388790786266,
0.0352889820933342,
-0.026013020426034927,
-0.02313948981463909,
-0.03071821853518486,
0.00008408702706219628,
0.02920583263039589,
-0.006104153580963612,
0.0058688935823738575,
-0.020366784185171127,
0.01495580654591322,
0.004948859568685293,
0.03901953250169754,
-0.030751826241612434,
-0.044262465089559555,
-0.01666984334588051,
0.00940199289470911,
-0.026718800887465477,
-0.013435019180178642,
0.014140798710286617,
-0.028382424265146255,
0.026080237701535225,
0.02559291385114193,
-0.028483249247074127,
0.019963480532169342,
-0.041170477867126465,
-0.0344487689435482,
0.037372712045907974,
0.027575818821787834,
0.021845560520887375,
0.03386061638593674,
-0.01001534890383482,
-0.06062982976436615,
-0.008671007119119167,
-0.023979702964425087,
-0.0817360058426857,
0.019173679873347282,
-0.016913505271077156,
-0.025744151324033737,
-0.0306341964751482,
0.008003036491572857,
-0.053269557654857635,
0.03686858341097832,
0.062343865633010864,
0.01350223645567894,
-0.007301458157598972,
-0.00725944759324193,
0.02056843414902687,
-0.029457896947860718,
-0.012115883640944958,
0.005553813651204109,
-0.02982759103178978,
-0.03918757289648056,
-0.024769503623247147,
-0.030314914882183075,
-0.00312349502928555,
0.06644411385059357,
0.043556686490774155,
-0.029407484456896782,
-0.05558854714035988,
0.010317825712263584,
-0.022719381377100945,
-0.06304964423179626,
-0.03389422595500946,
0.05810919031500816,
0.06170530617237091,
0.00962885096669197,
-0.005978121422231197,
0.04352307692170143,
0.042145125567913055,
-0.004295593127608299,
-0.009049102663993835,
-0.00940199289470911,
0.06214221566915512,
-0.04634619504213333,
-0.034717634320259094,
-0.012359545566141605,
-0.01081355195492506,
-0.08395417034626007,
-0.051757171750068665,
-0.047959405928850174,
0.021761538460850716,
0.03080223873257637,
0.006952769588679075,
-0.02401331253349781,
-0.04950540140271187,
-0.02313948981463909,
-0.009141526184976101,
-0.08126547932624817,
0.08785276114940643,
0.02260175161063671,
0.015056632459163666,
-0.01389713678508997,
-0.0464470200240612,
0.027575818821787834,
0.02197999320924282,
-0.030550174415111542,
0.01950976625084877,
-0.03179369121789932,
0.0172916017472744,
-0.018753573298454285,
0.07971949130296707,
0.001976603176444769,
0.039658091962337494,
-0.038616228848695755,
-0.008238296955823898,
-0.018400683999061584,
0.026601171121001244,
0.003327246755361557,
-0.010695922188460827,
0.013880332931876183,
-0.039322007447481155,
0.017694903537631035,
0.005032880697399378,
0.011620157398283482,
-0.012141089886426926,
-0.014334048144519329,
0.00584368733689189,
-0.024937547743320465,
-0.028819335624575615,
-0.025811368599534035,
0.026080237701535225,
-0.02434939704835415,
-0.022467318922281265,
0.025492088869214058,
-0.0048900446854531765,
0.015754008665680885,
0.004054031800478697,
0.0306341964751482,
-0.007070399355143309,
0.00025705291773192585,
0.06207500025629997,
0.07145178318023682,
0.0032810349948704243,
-0.03653249889612198,
-0.024836720898747444,
-0.03318844735622406,
0.056327935308218,
-0.004432127811014652,
0.07387159764766693,
0.052294909954071045,
-0.004114947281777859,
-0.030667806044220924,
0.010284217074513435,
-0.0423467792570591,
0.04201069101691246,
0.004201069008558989,
0.0063142068684101105,
-0.008881060406565666,
-0.0014913795748725533,
-0.0183502696454525,
-0.0010786245111376047,
-0.027911903336644173,
0.04607732594013214,
0.08556737750768661,
0.03009646013379097,
0.023610008880496025,
-0.046480629593133926,
-0.04506906867027283,
0.0011762994108721614,
-0.054513074457645416,
0.03885148838162422,
0.00523033132776618,
-0.02063565142452717,
-0.04688393324613571,
-0.024332592263817787,
-0.0030940875876694918,
0.047522496432065964,
0.020887715741991997,
-0.0003074657579418272,
0.018249444663524628,
-0.0176444910466671,
-0.017014330253005028,
0.00765854911878705,
0.017073145136237144,
0.00512110348790884,
0.003333548316732049,
-0.05804197117686272,
-0.06365460157394409,
-0.09887636452913284,
-0.03589393571019173,
0.030130067840218544,
0.02152627892792225,
-0.058646924793720245,
0.007578728720545769,
-0.012317534536123276,
0.03636445477604866,
0.027206124737858772,
-0.026937255635857582,
0.03335648775100708,
0.06923361867666245,
0.028382424265146255,
-0.07716523855924606,
0.012821663171052933,
0.04174182191491127,
-0.024315789341926575,
0.0028903356287628412,
-0.004587567411363125,
0.03821292519569397,
0.008553377352654934,
-0.06997300684452057,
-0.0038334757555276155,
0.018064597621560097,
-0.05955435708165169,
0.017358817160129547,
-0.0038040680810809135,
0.053874511271715164,
0.0011101325508207083,
0.014174407348036766,
-0.024315789341926575,
0.018064597621560097,
-0.0029617538675665855,
0.02063565142452717,
-0.00997333787381649,
0.03659971430897713,
0.03636445477604866,
0.005331156775355339,
0.0062007782980799675,
-0.013955951668322086,
-0.019476156681776047,
0.05357203632593155,
0.008049248717725277,
0.03760797157883644,
0.023425161838531494,
0.000590250245295465,
-0.0718550905585289,
0.01712355762720108,
-0.00489844661206007,
-0.04147295653820038,
-0.00781398918479681,
-0.019476156681776047,
0.003079383634030819,
-0.06741876155138016,
-0.09040700644254684,
-0.022652165964245796,
0.0045581599697470665,
0.018837593495845795,
-0.012367947958409786,
-0.041708216071128845,
-0.006158767268061638,
-0.002040669322013855,
-0.00900709256529808,
-0.022349687293171883,
-0.031138325110077858,
0.015191066078841686,
-0.02700447291135788,
-0.018383879214525223,
-0.01248557772487402,
0.07931618392467499,
-0.041439346969127655,
-0.005982322618365288,
-0.027038080617785454,
0.006826737429946661,
0.07635863125324249,
-0.019829045981168747,
-0.020534826442599297,
-0.015048230066895485,
-0.0050118756480515,
0.06133561208844185,
-0.030314914882183075,
0.02639951929450035,
-0.048060230910778046,
-0.03646527975797653,
-0.06751958280801773,
0.04244760423898697,
-0.004822827409952879,
0.01367868110537529,
0.012586403638124466,
-0.05589102581143379,
0.026954060420393944,
0.06671297550201416,
-0.0529334731400013,
-0.004348106682300568,
-0.04456494376063347,
0.017014330253005028,
0.06214221566915512,
-0.08059331029653549,
0.00066744489595294,
0.0032285216730087996,
-0.0051379078067839146,
-0.012636816129088402,
0.0061881751753389835,
0.029373876750469208,
0.04500185325741768,
-0.013317389413714409,
-0.008990287780761719,
0.018736768513917923,
-0.019207287579774857,
-0.045942891389131546,
0.018283052369952202,
-0.0020207143388688564,
-0.05192521587014198,
0.023173097521066666,
0.04096882790327072,
-0.0050748917274177074,
-0.030046047642827034,
-0.007570326793938875,
0.014762557111680508,
0.04123769700527191,
-0.00552020501345396,
-0.012762848287820816,
0.04322059825062752,
0.011267267167568207,
0.04217873513698578
]
|
42,275 | pydle.client | _create_user | null | def _create_user(self, nickname):
# Servers are NOT users.
if not nickname or '.' in nickname:
return
self.users[nickname] = {
'nickname': nickname,
'username': None,
'realname': None,
'hostname': None
}
| (self, nickname) | [
-0.03522315248847008,
0.007297886069864035,
0.02326732501387596,
-0.009772276505827904,
-0.0005682596820406616,
-0.015034271404147148,
0.019830919802188873,
0.06403883546590805,
0.04349200055003166,
0.03479360044002533,
0.027491239830851555,
0.058848436921834946,
0.012251141481101513,
-0.014219915494322777,
0.01707463711500168,
-0.013137090019881725,
0.05211880803108215,
0.015768086537718773,
-0.04742954671382904,
-0.009799123741686344,
-0.009655940346419811,
-0.04077151417732239,
0.0805407389998436,
0.02466336451470852,
0.029477911069989204,
0.041702207177877426,
-0.03640441596508026,
0.06013708561658859,
0.05584158003330231,
0.020886899903416634,
-0.02516450732946396,
-0.02727646380662918,
0.0504721999168396,
0.04145163670182228,
0.06840593367815018,
-0.011374142952263355,
-0.03185833618044853,
0.09278293699026108,
-0.092997707426548,
-0.03951865807175636,
0.03973343223333359,
0.013450304046273232,
-0.03375551849603653,
-0.006599866319447756,
-0.008577588945627213,
0.01387985423207283,
0.05695125460624695,
0.048217058181762695,
0.009025037288665771,
-0.01031816378235817,
-0.06640136986970901,
-0.0013210918987169862,
-0.0049935257993638515,
0.02718697488307953,
-0.045174408704042435,
-0.06357349455356598,
0.03278902918100357,
0.028386136516928673,
-0.07273723930120468,
-0.013137090019881725,
-0.07717593014240265,
-0.013289222493767738,
0.03602856025099754,
-0.0206542257219553,
-0.03780045360326767,
0.018121667206287384,
-0.01773686148226261,
-0.026435261592268944,
0.044709060341119766,
0.021978672593832016,
0.06539908051490784,
-0.03336176648736,
0.013101293705403805,
-0.017137279734015465,
0.03465041518211365,
0.04427950829267502,
-0.030533889308571815,
0.004877189174294472,
-0.018542269244790077,
0.013450304046273232,
-0.013029702007770538,
-0.03234158083796501,
-0.07248666882514954,
0.024341201409697533,
-0.004814546555280685,
0.044100530445575714,
0.0010900965426117182,
-0.04606930539011955,
0.0125733045861125,
0.013709823600947857,
-0.016492953523993492,
-0.022336632013320923,
0.023428406566381454,
0.029656890779733658,
-0.026846913620829582,
-0.01872124709188938,
0.023356815800070763,
-0.005749714095145464,
0.0425255112349987,
0.009315879084169865,
0.02274828590452671,
0.01458682306110859,
-0.044601671397686005,
-0.010756663046777248,
0.00046422789455391467,
-0.010407653637230396,
0.012904416769742966,
-0.03218049928545952,
-0.04775170981884003,
0.009459062479436398,
-0.07610204815864563,
0.017173076048493385,
0.005172505509108305,
0.043599389493465424,
-0.007262090221047401,
-0.04123685881495476,
0.03320068493485451,
0.027598626911640167,
0.020904796198010445,
-0.015508566983044147,
-0.0423465333878994,
-0.022927263751626015,
0.014067783020436764,
0.05283472687005997,
-0.020296266302466393,
0.0011779083870351315,
0.0121437544003129,
0.012904416769742966,
0.048753995448350906,
-0.02061842940747738,
0.02276618219912052,
-0.0006862742593511939,
-0.0006795625085942447,
-0.049756281077861786,
-0.02373267151415348,
-0.034041885286569595,
-0.005038270726799965,
0.028887279331684113,
0.03937547281384468,
0.03235948085784912,
-0.008268849924206734,
-0.00009459342254558578,
-0.02421591617166996,
0.016251331195235252,
0.02111957222223282,
-0.013790364377200603,
-0.023374712094664574,
0.018291696906089783,
-0.028081871569156647,
-0.041057880967855453,
0.044637467712163925,
0.031589869409799576,
0.022086061537265778,
-0.014747904613614082,
-0.04889718070626259,
0.038122616708278656,
0.01461367029696703,
-0.06403883546590805,
0.019813021644949913,
0.024072732776403427,
0.0247170589864254,
-0.021030083298683167,
0.00617479020729661,
0.01977722719311714,
-0.07105483114719391,
0.022927263751626015,
0.03833739459514618,
-0.03823000565171242,
0.03311119228601456,
0.04521020129323006,
0.01463156845420599,
-0.019365573301911354,
-0.0237684678286314,
0.03898171707987785,
-0.010049695149064064,
-0.04596191644668579,
0.05104493349790573,
-0.11762528121471405,
-0.01463156845420599,
0.028404034674167633,
0.01413937471807003,
-0.04284767434000969,
0.030641278252005577,
-0.009289031848311424,
0.009727532044053078,
-0.012009519152343273,
0.01959824748337269,
0.0663655698299408,
0.062284838408231735,
0.04596191644668579,
0.020367858931422234,
0.029925359413027763,
-0.041093677282333374,
0.03538423404097557,
0.06106777861714363,
0.013844058848917484,
0.0383731871843338,
0.04120106250047684,
-0.0850510224699974,
-0.03189413249492645,
-0.049720484763383865,
0.08082710951566696,
-0.051223911345005035,
-0.05909900739789009,
0.054767705500125885,
0.01968773640692234,
-0.01391565054655075,
-0.013441354967653751,
0.017173076048493385,
-0.03919649496674538,
0.028583014383912086,
-0.03132139891386032,
-0.04639146849513054,
0.07789184898138046,
-0.033039603382349014,
-0.011508377268910408,
0.03293221443891525,
0.029513707384467125,
0.04635567218065262,
0.020994286984205246,
0.015347485430538654,
0.0033513896632939577,
0.016618238762021065,
-0.04646305739879608,
-0.03787204623222351,
-0.002503474708646536,
-0.03031911514699459,
-0.05605635792016983,
0.0338808037340641,
-0.00029056190396659076,
0.014551027677953243,
0.03624333441257477,
-0.03640441596508026,
0.03984082117676735,
-0.025862526148557663,
-0.005194877739995718,
0.037657272070646286,
-0.025110812857747078,
-0.002722724573686719,
0.014667363837361336,
0.01033606193959713,
-0.016788270324468613,
0.005038270726799965,
-0.03873114660382271,
-0.008255425840616226,
-0.0202246755361557,
0.02580883353948593,
0.015329588204622269,
-0.007946686819195747,
0.004129950422793627,
-0.02666793391108513,
0.011230958625674248,
0.010228673927485943,
0.0383731871843338,
-0.03475780412554741,
-0.04674942418932915,
-0.02063632756471634,
0.007123381365090609,
0.013763518072664738,
-0.0014810546999797225,
-0.027616525068879128,
0.012761233374476433,
-0.04907615855336189,
0.03783624991774559,
0.028081871569156647,
-0.04098628833889961,
-0.04796648770570755,
0.06822695583105087,
0.001161128981038928,
-0.018774941563606262,
0.09228178858757019,
0.08490783721208572,
0.009727532044053078,
-0.07481340318918228,
-0.0211732666939497,
-0.02879779040813446,
-0.000535260362084955,
-0.016752474009990692,
-0.012295886874198914,
0.0004977865028195083,
-0.009772276505827904,
-0.03420296683907509,
0.0492551364004612,
0.0116247134283185,
0.012179549783468246,
0.0018759281374514103,
0.03069497086107731,
0.02630997635424137,
0.006783320102840662,
-0.036100149154663086,
-0.04603350907564163,
0.008076446130871773,
-0.030408604070544243,
-0.004760852549225092,
-0.054696112871170044,
-0.006653560325503349,
-0.06192688271403313,
0.041523225605487823,
0.02315993793308735,
-0.016725627705454826,
-0.029979053884744644,
0.003176884725689888,
-0.048682402819395065,
-0.02779550477862358,
0.05695125460624695,
-0.016752474009990692,
-0.023625284433364868,
0.021441735327243805,
-0.03438194841146469,
0.015454873442649841,
-0.0413084514439106,
-0.03973343223333359,
0.03031911514699459,
0.09084995836019516,
0.08784310519695282,
0.020099390298128128,
0.059206392616033554,
-0.045138612389564514,
0.06704569607973099,
-0.0016387803480029106,
0.04474485665559769,
-0.009280082769691944,
-0.05892002582550049,
-0.036619190126657486,
0.01012128684669733,
0.03926808759570122,
-0.020958490669727325,
0.03584957867860794,
-0.046642038971185684,
0.06002970039844513,
-0.0784645825624466,
-0.008344915695488453,
-0.025092914700508118,
0.0604950450360775,
-0.07048209756612778,
-0.012036366388201714,
0.01364718098193407,
0.04592612013220787,
0.014667363837361336,
-0.019293982535600662,
-0.054230764508247375,
-0.051295503973960876,
-0.09099314361810684,
0.031017133966088295,
0.09536023437976837,
-0.04932672902941704,
-0.03164356201887131,
-0.013137090019881725,
0.0007595439092256129,
-0.043205633759498596,
-0.07731911540031433,
0.022336632013320923,
0.01863175816833973,
-0.0019106053514406085,
0.04449428617954254,
-0.04739375039935112,
-0.04853922128677368,
-0.06335871666669846,
-0.024949731305241585,
-0.05609215050935745,
-0.040664125233888626,
0.011678407900035381,
0.06267859786748886,
-0.02260510064661503,
-0.046677835285663605,
0.013584538362920284,
0.02573724091053009,
0.050185829401016235,
0.05845468118786812,
-0.026900608092546463,
0.006246381904929876,
-0.01764737069606781,
-0.029996952041983604,
0.01820220798254013,
0.0286904014647007,
0.02072581835091114,
0.021441735327243805,
-0.03296801075339317,
-0.12335261702537537,
-0.03672657907009125,
-0.012510661967098713,
0.023356815800070763,
0.03624333441257477,
0.013808262534439564,
0.04091469570994377,
0.0033558642026036978,
0.020403655245900154,
0.023356815800070763,
0.053264278918504715,
-0.01796058565378189,
-0.05741659924387932,
-0.0036422312259674072,
0.03869535028934479,
0.0413084514439106,
0.005333587061613798,
0.046212486922740936,
0.020761612802743912,
-0.037657272070646286,
-0.012412223033607006,
0.03697714954614639,
-0.008237527683377266,
-0.055197253823280334,
0.04141584038734436,
0.02718697488307953,
0.017119381576776505,
0.017101483419537544,
0.022426122799515724,
0.041057880967855453,
0.00398452952504158,
0.040162984281778336,
-0.023947447538375854,
-0.048181261867284775,
-0.03550951927900314,
-0.030050646513700485,
0.022891469299793243,
0.025057120248675346,
-0.02018887922167778,
0.018139565363526344,
0.026846913620829582,
0.018918124958872795,
-0.002693640301004052,
-0.06310814619064331,
-0.029012564569711685,
0.048181261867284775,
-0.022014468908309937,
0.048145465552806854,
0.033558640629053116,
-0.047178976237773895,
0.037549883127212524,
-0.013521895743906498,
-0.0023759519681334496,
0.00031097675673663616,
0.03486519306898117,
0.00039459369145333767,
0.062320634722709656,
-0.0435635931789875,
0.030158033594489098,
-0.02978217601776123,
-0.06876389682292938,
0.03883853554725647,
-0.007405273616313934,
-0.011839489452540874,
0.009405368939042091,
0.01861386001110077,
0.01738785207271576,
0.030068542808294296,
-0.06389565765857697,
0.048682402819395065,
0.0639672502875328,
0.016546647995710373,
-0.007834824733436108,
-0.029925359413027763,
0.01541907712817192,
-0.02528979256749153,
-0.008362813852727413,
0.05405178666114807,
-0.08118506520986557,
-0.019813021644949913,
0.07162756472826004,
0.005083015654236078,
-0.048646606504917145,
0.016340821981430054,
0.005794459022581577,
0.06207006424665451,
0.013065498322248459,
-0.0022059213370084763,
0.03776465728878975,
-0.02171020396053791,
0.03933967649936676,
-0.021280653774738312,
-0.011034081690013409,
0.0011152655351907015,
0.061891086399555206,
-0.003185833804309368,
-0.01437204796820879,
-0.006832539569586515,
0.017674218863248825,
0.02668583206832409,
-0.03373762220144272,
-0.017190974205732346,
-0.029442114755511284,
0.05165346339344978,
0.0028368239291012287,
-0.012859671376645565,
0.012779130600392818,
-0.023428406566381454,
-0.03894592449069023,
-0.037549883127212524,
0.03815841302275658,
0.007745334878563881,
-0.015374332666397095,
-0.017003046348690987,
-0.03133929893374443,
0.0064074634574353695,
-0.018363289535045624,
-0.015132710337638855,
0.025075018405914307,
0.03395239636301994,
-0.017271514981985092,
-0.038051024079322815,
-0.0042597102001309395,
-0.013029702007770538,
-0.007749808952212334,
-0.020815307274460793,
0.0021880234126001596,
-0.007664794102311134,
-0.0625712051987648,
-0.0033245428930968046,
-0.011087775230407715,
0.014031986705958843,
0.021030083298683167,
0.006438784766942263,
-0.049792077392339706,
-0.05602056160569191,
0.01761157624423504,
0.017557881772518158,
-0.022497713565826416,
0.006568545009940863,
-0.05748819187283516,
-0.056736476719379425,
-0.020940592512488365,
-0.009951256215572357,
0.024931833148002625,
0.05007844418287277,
0.03078446164727211,
0.002570592099800706,
0.006022657733410597,
0.019795125350356102,
0.04954150319099426,
0.008850532583892345,
-0.012251141481101513,
-0.006935452576726675,
-0.004244049545377493,
0.020851103588938713,
0.005539413075894117,
-0.052727337926626205,
0.0006392921204678714,
0.031625665724277496,
0.0359569676220417,
-0.008273323997855186,
0.04986366629600525,
-0.009673837572336197,
-0.028636708855628967,
-0.08097029477357864,
-0.043670978397130966,
-0.02024257369339466,
-0.030891848728060722,
0.018524371087551117,
0.011043030768632889,
-0.07624523341655731,
0.019043410196900368,
-0.008859481662511826,
-0.015374332666397095,
-0.02770601585507393,
0.012940212152898312,
0.003087395103648305,
-0.013101293705403805,
-0.02720487304031849,
-0.016824066638946533,
0.07739070057868958,
-0.003700399538502097,
-0.015428026206791401,
0.02119116485118866,
0.03823000565171242,
-0.00785719696432352,
-0.036654986441135406,
-0.08977607637643814,
-0.004550551995635033,
0.006993621122092009,
0.03377341851592064,
-0.005593107081949711,
0.022372428327798843,
0.04553236439824104,
0.042668696492910385,
-0.0648263469338417,
-0.04628407955169678,
0.04370677471160889,
0.03951865807175636,
0.013781416229903698,
-0.02326732501387596,
-0.06718887388706207,
0.01794268749654293,
-0.016054455190896988,
-0.021030083298683167,
-0.027634423226118088,
0.02974637970328331,
-0.01857806369662285,
0.045603957027196884,
-0.018157463520765305,
0.03121401183307171,
-0.0328427255153656,
0.014640516601502895,
-0.0256656501442194,
-0.0035370809491723776,
0.04052094370126724,
-0.0042373379692435265,
0.04384995996952057,
-0.05734500661492348,
0.03722772002220154,
-0.032037317752838135,
-0.06432520598173141,
0.027365954592823982,
-0.05147448182106018,
-0.04037775844335556,
0.005297791212797165,
-0.06539908051490784,
-0.07459862530231476,
-0.004613194614648819,
-0.04091469570994377,
-0.03930388018488884,
0.022372428327798843,
0.052655745297670364,
-0.014917935244739056,
0.07767707109451294,
0.051689259707927704,
0.04592612013220787,
0.03429245948791504,
-0.056306928396224976,
0.0008786771213635802,
-0.02464546635746956,
-0.05061538144946098,
0.01035396009683609,
0.017727911472320557,
0.01013023592531681,
-0.051760848611593246,
-0.07288042455911636,
0.04445848986506462,
0.03243107348680496,
-0.01189318299293518,
-0.02665003575384617,
-0.04778750613331795,
-0.024609671905636787,
-0.06761842966079712,
-0.018157463520765305,
0.011803693138062954,
0.033648133277893066,
0.02475285530090332,
-0.037585679441690445,
0.019992001354694366,
-0.012680692598223686,
-0.026435261592268944,
-0.04116526618599892,
0.025468772277235985,
-0.014210966415703297,
-0.02067212387919426,
0.008479150012135506,
0.015517516061663628,
-0.01714622974395752,
-0.0023759519681334496,
0.007342630997300148,
0.007315784227102995,
-0.03588537499308586,
0.049684688448905945,
0.02985376864671707,
0.017298361286520958,
0.05011424049735069,
-0.04696420207619667,
0.0011236552381888032,
0.012940212152898312,
-0.01410357840359211,
-0.022300835698843002,
-0.038086820393800735,
0.04177379980683327,
0.004930883180350065,
0.0017674218397587538,
0.060351863503456116,
-0.0364760085940361,
-0.029889564961194992,
-0.06192688271403313,
0.040127187967300415,
0.05261995270848274,
0.0015358672244474292,
0.025629853829741478,
0.0011488242307677865,
0.02527189441025257,
-0.01762947253882885,
-0.040592532604932785,
0.0287798922508955,
-0.030659176409244537,
-0.010380806401371956,
-0.014551027677953243,
-0.02829664759337902,
0.06475475430488586,
-0.03631492704153061,
0.0033759993966668844,
0.011830540373921394,
0.06726046651601791,
-0.002226056531071663,
0.006335871759802103,
0.019490858539938927,
-0.0035281318705528975,
0.006881759036332369,
-0.013781416229903698,
0.07198552787303925,
-0.05734500661492348,
-0.026632139459252357,
0.01868545264005661,
0.03332597017288208,
-0.013128140941262245,
0.05211880803108215,
-0.0062553309835493565,
0.05942117050290108,
-0.01873914524912834,
0.007888518273830414,
-0.04334881529211998,
-0.013781416229903698,
-0.02772391214966774,
-0.033021703362464905,
0.059206392616033554,
-0.023840058594942093,
-0.002597438869997859,
0.013996191322803497,
0.06543488055467606,
-0.02582673169672489,
-0.032037317752838135,
0.013817211613059044,
-0.014640516601502895,
0.0030762089882045984,
-0.016654035076498985,
0.011347295716404915,
0.021280653774738312,
-0.05494668334722519,
0.007494763471186161,
-0.014837394468486309,
-0.017826350405812263,
-0.07782025635242462,
-0.024126427248120308,
-0.08898857235908508,
0.04141584038734436,
0.030569685623049736,
0.001777489436790347,
0.017897943034768105,
-0.048753995448350906,
0.11411727964878082,
-0.003955445252358913,
-0.015329588204622269,
0.051760848611593246,
-0.007132329978048801,
0.005512566305696964,
0.044064734131097794,
-0.04946991428732872,
0.006098723970353603,
0.009217440150678158,
0.01857806369662285,
-0.007101008668541908,
0.0237684678286314,
-0.00024218152975663543,
0.015544363297522068,
0.00605397904291749,
0.11311499774456024,
0.025952016934752464,
-0.015114812180399895,
-0.03527684509754181,
0.001020741998218,
0.002174600027501583,
-0.024573875591158867,
0.02665003575384617,
0.020958490669727325,
0.014962679706513882,
-0.0012293648906052113,
0.02024257369339466,
-0.014908986166119576,
-0.026435261592268944,
-0.021924979984760284,
-0.014801598154008389,
-0.030426502227783203,
0.014291507191956043,
0.005105388350784779
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.