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
39,874
fpl.fpl
FPL
The FPL class.
class FPL: """The FPL class.""" def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0) async def get_user(self, user_id=None, return_json=False): """Returns the user with the given ``user_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/entry/91928/ :param user_id: A user's ID. :type user_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`User` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`User` or `dict` """ if user_id: assert int(user_id) > 0, "User ID must be a positive number." else: # If no user ID provided get it from current session try: user = await get_current_user(self.session) user_id = user["player"]["entry"] except TypeError: raise Exception("You must log in before using `get_user` if " "you do not provide a user ID.") url = API_URLS["user"].format(user_id) user = await fetch(self.session, url) if return_json: return user return User(user, session=self.session) async def get_teams(self, team_ids=None, return_json=False): """Returns either a list of *all* teams, or a list of teams with IDs in the optional ``team_ids`` list. Information is taken from: https://fantasy.premierleague.com/api/bootstrap-static/ :param list team_ids: (optional) List containing the IDs of teams. If not set a list of *all* teams will be returned. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Team` objects. Defaults to ``False``. :type return_json: bool :rtype: list """ teams = getattr(self, "teams") if team_ids: team_ids = set(team_ids) teams = [team for team in teams.values() if team["id"] in team_ids] else: teams = [team for team in teams.values()] if return_json: return teams return [Team(team_information, self.session) for team_information in teams] async def get_team(self, team_id, return_json=False): """Returns the team with the given ``team_id``. Information is taken from: https://fantasy.premierleague.com/api/bootstrap-static/ :param team_id: A team's ID. :type team_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Team` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`Team` or ``dict`` For reference here is the mapping from team ID to team name: .. code-block:: none 1 - Arsenal 2 - Aston Villa 3 - Brentford 4 - Brighton 5 - Burnley 6 - Chelsea 7 - Crystal Palace 8 - Everton 9 - Leicester 10 - Leeds 11 - Liverpool 12 - Man City 13 - Man Utd 14 - Newcastle 15 - Norwich 16 - Southampton 17 - Spurs 18 - Watford 19 - West Ham 20 - Wolves """ assert 0 < int( team_id) < 21, "Team ID must be a number between 1 and 20." teams = getattr(self, "teams") team = next(team for team in teams.values() if team["id"] == int(team_id)) if return_json: return team return Team(team, self.session) async def get_player_summary(self, player_id, return_json=False): """Returns a summary of the player with the given ``player_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/element-summary/1/ :param int player_id: A player's ID. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`PlayerSummary` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`PlayerSummary` or ``dict`` """ assert int(player_id) > 0, "Player's ID must be a positive number" url = API_URLS["player"].format(player_id) player_summary = await fetch(self.session, url) if return_json: return player_summary return PlayerSummary(player_summary) async def get_player_summaries(self, player_ids, return_json=False): """Returns a list of summaries of players whose ID are in the ``player_ids`` list. Information is taken from e.g.: https://fantasy.premierleague.com/api/element-summary/1/ :param list player_ids: A list of player IDs. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`PlayerSummary` objects. Defaults to ``False``. :type return_json: bool :rtype: list """ if not player_ids: return [] tasks = [asyncio.ensure_future( fetch(self.session, API_URLS["player"].format(player_id))) for player_id in player_ids] player_summaries = await asyncio.gather(*tasks) if return_json: return player_summaries return [PlayerSummary(player_summary) for player_summary in player_summaries] async def get_player(self, player_id, players=None, include_summary=False, return_json=False): """Returns the player with the given ``player_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/bootstrap-static/ https://fantasy.premierleague.com/api/element-summary/1/ (optional) :param player_id: A player's ID. :type player_id: string or int :param list players: (optional) A list of players. :param bool include_summary: (optional) Includes a player's summary if ``True``. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Player` object. Defaults to ``False``. :rtype: :class:`Player` or ``dict`` :raises ValueError: Player with ``player_id`` not found """ if not players: players = getattr(self, "elements") try: player = next(player for player in players.values() if player["id"] == player_id) except StopIteration: raise ValueError(f"Player with ID {player_id} not found") if include_summary: player_summary = await self.get_player_summary( player["id"], return_json=True) player.update(player_summary) if return_json: return player return Player(player, self.session) async def get_players(self, player_ids=None, include_summary=False, return_json=False): """Returns either a list of *all* players, or a list of players whose IDs are in the given ``player_ids`` list. Information is taken from e.g.: https://fantasy.premierleague.com/
(session)
[ 0.03008962795138359, -0.030068041756749153, -0.1408211886882782, 0.01685796119272709, -0.006459340453147888, -0.01691192388534546, 0.004578738939017057, -0.0030569895170629025, -0.007020553108304739, 0.041443388909101486, 0.009519028477370739, -0.047228194773197174, 0.013134532608091831, 0.04748721793293953, 0.020775657147169113, 0.033413730561733246, 0.030996201559901237, 0.04683966189622879, -0.0014124748995527625, -0.0325934998691082, 0.02577260695397854, 0.028945617377758026, 0.03751490265130997, 0.03196753188967705, 0.009340951219201088, 0.04008352756500244, -0.0028735161758959293, 0.01748392917215824, -0.020538220182061195, 0.003728825831785798, 0.0299817007035017, 0.033197879791259766, 0.00856388732790947, 0.02011731080710888, -0.0745549276471138, 0.007463047746568918, -0.0578048937022686, 0.03827038034796715, -0.12217165529727936, -0.016275163739919662, 0.017041435465216637, 0.029096713289618492, 0.041896674782037735, -0.016847169026732445, -0.018142275512218475, -0.021164188161492348, 0.02281544916331768, 0.027521001175045967, 0.00498345959931612, -0.018120689317584038, 0.03192435950040817, 0.043839335441589355, -0.012087655253708363, 0.030672425404191017, 0.027521001175045967, 0.03794660419225693, -0.07006523013114929, 0.0018171954434365034, 0.009427291341125965, -0.03967341035604477, -0.017116982489824295, -0.027456244453787804, -0.02022523805499077, 0.060913149267435074, 0.003340293886139989, -0.03641406074166298, -0.002938271500170231, -0.007069119717925787, -0.03289569169282913, 0.013447516597807407, 0.0432133674621582, 0.07900145649909973, 0.008045845665037632, -0.02585894800722599, 0.011979729868471622, 0.014699451625347137, -0.0018064029281958938, -0.07045376300811768, 0.008153771050274372, -0.01823940873146057, 0.028859276324510574, 0.02400263026356697, -0.028988787904381752, -0.035054199397563934, 0.0426737405359745, -0.019275492057204247, 0.05098400264978409, -0.07054010033607483, -0.10956595838069916, -0.04778940603137016, -0.026484915986657143, 0.00719863036647439, -0.028103798627853394, 0.003070480190217495, -0.060049742460250854, -0.012605697847902775, -0.015962179750204086, 0.0040876781567931175, -0.06415091454982758, -0.007538595702499151, 0.0005433373735286295, -0.0231392253190279, -0.01742996647953987, 0.05007742717862129, 0.032420817762613297, -0.05853878706693649, -0.0062326970510184765, 0.0047082495875656605, -0.024132139980793, 0.0363708920776844, -0.09721928089857101, -0.009983108378946781, -0.03391018882393837, 0.05426493659615517, 0.03356482833623886, 0.007279574405401945, -0.03568016737699509, 0.04019145295023918, 0.00509678153321147, -0.035054199397563934, 0.01067922729998827, 0.019426587969064713, -0.018714280799031258, -0.02049505151808262, 0.018412088975310326, -0.014677867293357849, -0.03203228488564491, -0.027089297771453857, 0.06462578475475311, -0.012530149891972542, -0.0018468749476596713, 0.028557084500789642, -0.0010003343923017383, 0.004298132844269276, 0.06540285050868988, -0.014084276743233204, -0.007117686327546835, 0.0031055561266839504, -0.0007197281229309738, 0.00758176576346159, -0.013210080564022064, -0.015962179750204086, 0.02685186266899109, -0.03704002872109413, -0.022556427866220474, -0.038961101323366165, -0.021595891565084457, -0.014095068909227848, -0.00763572845607996, -0.04120595380663872, 0.06777720898389816, -0.05517151206731796, -0.006626625079661608, 0.03468725457787514, -0.045371875166893005, -0.026269065216183662, 0.00026930784224532545, -0.026117969304323196, 0.018379710614681244, 0.0031055561266839504, -0.02346300147473812, -0.01845525950193405, -0.010851908475160599, -0.004389869514852762, 0.0026913918554782867, 0.016491014510393143, 0.009832012467086315, -0.0022866714280098677, -0.0029733472038060427, 0.04368823766708374, 0.009497443214058876, 0.04524236544966698, -0.038184039294719696, 0.010274507105350494, 0.008963212370872498, 0.005115668289363384, 0.022664353251457214, -0.07835390418767929, -0.006621228996664286, -0.03824879601597786, -0.03932804986834526, -0.050163768231868744, -0.0005814486066810787, -0.06138801947236061, -0.006518699694424868, 0.046235281974077225, 0.03697527199983597, 0.06967669725418091, -0.010549716651439667, 0.05327202379703522, -0.06151752918958664, -0.015131154097616673, 0.0183689184486866, 0.014591526240110397, -0.02607479877769947, 0.03054291382431984, -0.026161139830946922, 0.05050912871956825, -0.005790202412754297, -0.08815354108810425, -0.011483272537589073, 0.034298721700906754, 0.016285955905914307, -0.05400591716170311, -0.03557224199175835, -0.00879592727869749, -0.011127118021249771, -0.016976680606603622, 0.017116982489824295, -0.03883159160614014, -0.03652198612689972, -0.01482896227389574, -0.010560509748756886, 0.02085120417177677, 0.03934963420033455, -0.08288677781820297, 0.04761672765016556, -0.03779550641775131, 0.04055840149521828, 0.01955609954893589, 0.04273849353194237, -0.08336164802312851, -0.06540285050868988, -0.0038799215108156204, -0.019135190173983574, 0.00902257114648819, -0.03324105218052864, 0.015519686043262482, -0.00554197421297431, -0.02456384152173996, 0.03062925487756729, -0.030175967141985893, 0.0002811121812555939, 0.0008849890436977148, -0.05517151206731796, 0.008952419273555279, 0.014634696766734123, 0.035917602479457855, -0.04545821622014046, -0.02868659608066082, 0.03391018882393837, -0.0340396985411644, 0.024045798927545547, 0.00930857378989458, -0.05055230110883713, 0.029528414830565453, 0.0020182067528367043, -0.022448502480983734, -0.032204966992139816, 0.0007379405433312058, 0.004503190983086824, -0.005212801042944193, 0.04140022024512291, 0.014483600854873657, -0.04234996438026428, -0.13322322070598602, -0.031341563910245895, -0.02128290757536888, 0.029852190986275673, 0.0012060673907399178, -0.009313969872891903, -0.0017578364349901676, -0.08750598877668381, 0.0680793970823288, -0.016760827973484993, -0.018541598692536354, -0.015131154097616673, -0.0024053894449025393, -0.031017785891890526, -0.03326263651251793, 0.11742293834686279, -0.009071137756109238, 0.048955004662275314, -0.02747783064842224, -0.03436347469687462, -0.05823659524321556, -0.03650040179491043, 0.001626976765692234, -0.03932804986834526, -0.04705551266670227, -0.01829337142407894, -0.04120595380663872, -0.013210080564022064, -0.017203323543071747, 0.038097698241472244, -0.038745250552892685, 0.01689033955335617, 0.032010700553655624, -0.01934024877846241, 0.022103140130639076, 0.015659987926483154, -0.05750270187854767, -0.006459340453147888, -0.017440758645534515, 0.005056309513747692, 0.009103515185415745, -0.010614472441375256, 0.025189809501171112, 0.03306837007403374, -0.060351934283971786, 0.03084510564804077, 0.023981044068932533, 0.09963681548833847, -0.002596957143396139, -0.020451880991458893, 0.0009578387252986431, 0.005412463564425707, -0.01939421147108078, 0.020732486620545387, -0.02739148959517479, -0.0023487284779548645, -0.029420489445328712, 0.056337106972932816, 0.01685796119272709, 0.02650650031864643, -0.0047055515460669994, -0.025038713589310646, 0.01829337142407894, 0.05767538398504257, 0.02108864113688469, -0.017354419454932213, 0.005439444910734892, 0.06980621069669724, 0.04770306870341301, 0.07731781899929047, -0.08159167319536209, 0.03520529717206955, 0.006135564297437668, 0.005220895633101463, 0.007463047746568918, -0.05020693689584732, -0.08185069262981415, -0.011526442132890224, 0.03975975140929222, 0.010700812563300133, 0.04347238689661026, -0.022340577095746994, 0.006297452375292778, 0.08798085898160934, -0.004031016957014799, 0.02661442570388317, -0.03716953843832016, 0.011504857800900936, 0.04347238689661026, 0.012486979365348816, -0.03181643411517143, 0.07477077841758728, 0.005628314334899187, 0.0009119703900068998, -0.020462673157453537, 0.03432030603289604, -0.0118394261226058, 0.06583455204963684, 0.019599270075559616, 0.0256646815687418, -0.03129839152097702, -0.009216836653649807, -0.04053681343793869, 0.0007527802954427898, -0.027002958580851555, -0.05694149062037468, -0.021077848970890045, -0.008299469947814941, -0.009060344658792019, -0.04696917533874512, -0.03675942122936249, 0.017041435465216637, -0.05728685110807419, 0.03410445526242256, -0.009972315281629562, -0.050379619002342224, -0.0028465348295867443, 0.0022286614403128624, -0.02661442570388317, 0.02857867069542408, 0.03479517996311188, 0.05236544832587242, 0.06281263381242752, -0.07200788706541061, 0.0031676131766289473, 0.05815025418996811, 0.046796493232250214, 0.013371968641877174, 0.0578048937022686, 0.06790672242641449, -0.02555675618350506, 0.024412745609879494, -0.058409277349710464, 0.00554197421297431, -0.01912439800798893, 0.028341233730316162, 0.015120361000299454, 0.042652152478694916, -0.011645160615444183, -0.028557084500789642, -0.027456244453787804, 0.0202576145529747, -0.008083619177341461, 0.006831683684140444, -0.056034915149211884, 0.043299708515405655, -0.007020553108304739, 0.09298860281705856, 0.025513585656881332, -0.006480925716459751, 0.008898456580936909, 0.048307448625564575, -0.012130824849009514, -0.06954718381166458, 0.0796058401465416, -0.06095631793141365, -0.028082212433218956, -0.06980621069669724, -0.024391161277890205, -0.005671484395861626, -0.0008263045456260443, -0.02303129993379116, 0.0704105943441391, 0.04925719276070595, 0.04409835487604141, -0.015077191404998302, -0.0298953615128994, -0.0017146662576124072, 0.0235925130546093, -0.02803904190659523, -0.024088969454169273, 0.04498334601521492, 0.03324105218052864, -0.012530149891972542, 0.030391817912459373, 0.056552957743406296, -0.026139553636312485, -0.016253579407930374, -0.062208253890275955, 0.05663929879665375, -0.0010677878744900227, -0.007867768406867981, -0.04671015217900276, -0.017872462049126625, 0.0515020452439785, 0.05966121330857277, 0.030823521316051483, 0.02000938542187214, 0.03641406074166298, 0.03606870025396347, -0.012961851432919502, -0.04524236544966698, 0.04424945265054703, 0.07856975495815277, 0.019156774505972862, -0.05055230110883713, 0.04619210958480835, 0.031557414680719376, 0.020840412005782127, -0.01019356306642294, -0.01217399537563324, 0.021973630413413048, 0.027995873242616653, -0.048523299396038055, -0.05409225821495056, 0.0021207358222454786, -0.006178734358400106, 0.0650143176317215, 0.03822720795869827, -0.009583783335983753, 0.021757779642939568, 0.031578999012708664, -0.029722681269049644, -0.05607808381319046, -0.010091033764183521, -0.003305218182504177, -0.02380836382508278, -0.00587114691734314, 0.0006870132056064904, 0.025470415130257607, -0.04740087687969208, -0.008612453937530518, -0.03779550641775131, -0.04636479169130325, -0.04377457872033119, 0.016048520803451538, 0.006847872398793697, 0.07805171608924866, -0.03140631690621376, -0.001695779268629849, -0.05094083026051521, 0.021908875554800034, 0.00526676420122385, -0.016555771231651306, -0.030154382809996605, -0.02782319113612175, -0.017548684030771255, 0.028190137818455696, -0.030780350789427757, -0.07861293107271194, -0.014095068909227848, 0.0372774638235569, 0.04891183227300644, 0.05236544832587242, -0.030888276174664497, 0.04163765534758568, 0.03412603959441185, 0.03557224199175835, -0.02652808651328087, 0.033737510442733765, -0.0011844822438433766, -0.06307166069746017, 0.00989676732569933, -0.01694430224597454, 0.027564169839024544, 0.012163203209638596, -0.019243115559220314, -0.0008721728809177876, -0.07010839879512787, 0.023873118683695793, 0.022988129407167435, 0.006448548287153244, 0.008159167133271694, 0.00254569249227643, -0.04636479169130325, 0.05033645033836365, 0.02346300147473812, 0.06298531591892242, 0.032204966992139816, -0.017278870567679405, 0.04835062101483345, -0.012692037969827652, 0.027110883966088295, -0.011526442132890224, -0.015206702053546906, -0.0010738585842773318, -0.005328821018338203, -0.04891183227300644, -0.0022475484292954206, 0.018919339403510094, 0.00020792520081158727, -0.04817793890833855, -0.0331331267952919, -0.012519356794655323, 0.04541504755616188, 0.054049085825681686, 0.05486932024359703, -0.008396603167057037, -0.05914317071437836, -0.03343531861901283, -0.07766318321228027, -0.030888276174664497, 0.07917413860559464, 0.008223922923207283, -0.007403688505291939, 0.005496105644851923, -0.005720051005482674, 0.03751490265130997, -0.031341563910245895, -0.04006194323301315, -0.02879452146589756, -0.03719112277030945, 0.0020789147820323706, 0.0055311815813183784, 0.01847684383392334, 0.025017129257321358, -0.005552766378968954, -0.1093069389462471, -0.014742622151970863, -0.0062866597436368465, -0.03604711592197418, 0.03019755333662033, 0.0610426589846611, 0.042328376322984695, -0.005242480896413326, -0.013026607222855091, 0.05327202379703522, -0.004773004911839962, -0.04800526052713394, -0.042436301708221436, -0.002563230460509658, -0.014656282030045986, 0.025276150554418564, 0.05551687255501747, -0.030370233580470085, 0.009286988526582718, -0.027305148541927338, 0.07161935418844223, -0.04053681343793869, -0.027952702715992928, -0.01310215424746275, 0.02149875834584236, 0.0012465394102036953, 0.0619492307305336, 0.032874103635549545, -0.02380836382508278, -0.0007298461277969182, -0.009875182062387466, 0.052538130432367325, 0.031341563910245895, 0.06423725187778473, -0.013307212851941586, 0.04239313304424286, -0.012379053980112076, -0.01477499958127737, -0.023419830948114395, 0.06617990881204605, -0.012638075277209282, -0.023657267913222313, 0.08072827011346817, 0.0038826195523142815, -0.05784806236624718, -0.01379287801682949, 0.021639060229063034, 0.02173619344830513, 0.010582094080746174, 0.011418516747653484, 0.03736380487680435, -0.04172399640083313, 0.04696917533874512, -0.011429309844970703, 0.024520670995116234, 0.04908451437950134, -0.001258006552234292, -0.06367603689432144, -0.008196940645575523, 0.040256209671497345, -0.03224813565611839, 0.04202618822455406, -0.0745549276471138, -0.02488761767745018, 0.03632771968841553, -0.017570270225405693, -0.045803580433130264, -0.04912768304347992, 0.01135376188904047, -0.00875275768339634, -0.026441745460033417, -0.021833326667547226, 0.013566234149038792, -0.007705880329012871, 0.03075876459479332, -0.03317629545927048, -0.0030785745475441217, -0.016652902588248253, -0.007646521087735891, 0.030888276174664497, -0.020808035507798195, 0.0432133674621582, -0.007916335016489029, 0.02391628921031952, -0.05171789601445198, -0.011148703284561634, 0.06838159263134003, -0.02555675618350506, -0.05737319216132164, 0.00880672037601471, 0.004076885525137186, 0.006378396414220333, -0.003896110225468874, -0.014030314050614834, -0.023117640987038612, -0.018174652010202408, 0.04183192178606987, 0.03164375573396683, -0.022685937583446503, -0.007457651663571596, 0.01766740344464779, -0.03073718026280403, 0.0038907139096409082, 0.02103467844426632, -0.01656656339764595, -0.03019755333662033, -0.0062596783973276615, 0.009119704365730286, -0.01672845147550106, 0.024520670995116234, 0.06432359665632248, -0.019297078251838684, -0.017818499356508255, 0.050897661596536636, -0.037536486983299255, 0.007052931003272533, -0.03563699871301651, 0.0178292915225029, -0.014095068909227848, 0.03332739323377609, -0.0462784506380558, 0.008353432640433311, -0.08396603167057037, 0.04215569794178009, -0.0023163508158177137, -0.04219886660575867, 0.02542724646627903, -0.014375675469636917, -0.012605697847902775, 0.0002212472609244287, -0.04170240834355354, 0.026808692142367363, -0.03203228488564491, -0.055257853120565414, -0.027628926560282707, 0.006578058935701847, -0.016825584694743156, 0.07515931129455566, 0.0035696355625987053, -0.0408821776509285, 0.051458872854709625, -0.002548390766605735, -0.037773922085762024, 0.03075876459479332, -0.02749941498041153, 0.038961101323366165, 0.020808035507798195, 0.015228287316858768, -0.000021237292457954027, 0.013318005949258804, 0.03347848728299141, -0.021725401282310486, 0.020246822386980057, 0.04878232255578041, 0.03589601814746857, 0.02903195656836033, -0.027305148541927338, 0.07317348569631577, 0.006858665030449629, -0.012033692561089993, 0.052538130432367325, 0.01973957195878029, 0.011159495450556278, 0.015357797034084797, 0.031794849783182144, -0.014364883303642273, 0.020948337391018867, 0.06872694939374924, 0.01040941383689642, 0.0325934998691082, -0.0628558099269867, -0.008866079151630402, 0.023009715601801872, -0.05616442486643791, 0.04424945265054703, 0.0032188778277486563, -0.01635071262717247, -0.009017175063490868, -0.02141241729259491, -0.034946274012327194, -0.004497794900089502, -0.03501103073358536, -0.02881610579788685, 0.007937920279800892, 0.04029937833547592, -0.031104126945137978, 0.011774671263992786, 0.03237764909863472, 0.05789123475551605, -0.014321712777018547, -0.028211724013090134, 0.03408287093043327, -0.00840199925005436, 0.035464316606521606, -0.041249122470617294, 0.0070043643936514854, 0.014753414317965508, -0.007538595702499151, -0.019491344690322876, 0.031989116221666336, 0.0028411385137587786, 0.040364135056734085, 0.016793206334114075, 0.014688659459352493, -0.015627611428499222, 0.04183192178606987 ]
39,875
fpl.fpl
FDR
Creates a new Fixture Difficulty Ranking (FDR) based on the number of points each team gives up to players in the Fantasy Premier League. These numbers are also between 1.0 and 5.0 to give a similar ranking system to the official FDR. An example: .. code-block:: javascript { "Man City": { "all": { "H": 4.4524439427082, "A": 5 }, "goalkeeper": { "H": 3.6208195949129, "A": 5 }, "defender": { "H": 3.747999604078, "A": 5 }, "midfielder": { "H": 4.6103045986504, "A": 5 }, "forward": { "H": 5, "A": 3.9363219561895 } }, ..., "Arsenal": { "all": { "H": 3.4414041151234, "A": 4.2904529162594 }, "goalkeeper": { "H": 4.1106924163919, "A": 4.3867595818815 }, "defender": { "H": 3.6720291204673, "A": 4.3380917450181 }, "midfielder": { "H": 3.3537357534825, "A": 4.0706443384718 }, "forward": { "H": 2.5143403441683, "A": 4.205298013245 } } } :rtype: dict
fixtures = filter(lambda f: not f.finished, fixtures)
(self)
[ 0.06170961633324623, 0.052102744579315186, -0.08663278073072433, -0.027111204341053963, -0.036547135561704636, -0.022119734436273575, -0.02049579843878746, 0.03280353173613548, 0.06557288020849228, 0.02541889250278473, 0.046495888382196426, 0.020547080785036087, 0.010769268497824669, -0.045880500227212906, -0.01912827230989933, 0.011589784175157547, -0.05220530927181244, 0.051726676523685455, 0.03870099037885666, -0.019179554656147957, -0.003585482481867075, 0.06758997589349747, -0.012760727666318417, 0.04311126098036766, 0.013846201822161674, -0.0206325501203537, -0.007884643040597439, -0.03825654461979866, 0.029333434998989105, 0.036683887243270874, -0.031760793179273605, 0.005743609741330147, 0.014435947872698307, 0.001989323180168867, -0.005743609741330147, 0.04485485702753067, 0.003049155930057168, 0.07596607506275177, -0.01813681423664093, 0.022136829793453217, 0.04331639036536217, 0.0061666881665587425, -0.05880362167954445, 0.02899155393242836, 0.0072265206836164, -0.015290651470422745, 0.02148725464940071, 0.042153991758823395, 0.013042780570685863, 0.026136843487620354, 0.042837753891944885, 0.06225662678480148, 0.041401851922273636, 0.05524805560708046, 0.02307700365781784, -0.009820546954870224, -0.05535062029957771, 0.010931662283837795, 0.04888905957341194, 0.025487268343567848, 0.0023055635392665863, 0.035418927669525146, 0.05032496154308319, -0.005111129023134708, 0.036615513265132904, -0.01111969631165266, 0.0024294955655932426, 0.017128264531493187, -0.0423591211438179, 0.08574388921260834, -0.04471810534596443, 0.057025838643312454, 0.01926502399146557, 0.035487301647663116, -0.015401762910187244, -0.0536070242524147, -0.018307756632566452, 0.014017142355442047, 0.010538497939705849, -0.05859849229454994, 0.036854829639196396, 0.02321375533938408, -0.07952164113521576, 0.03709414601325989, -0.00364317512139678, -0.016299201175570488, 0.06577800959348679, -0.04820529744029045, -0.02921377681195736, -0.03907705843448639, -0.03271806240081787, 0.05299163609743118, -0.0073547265492379665, -0.05350445955991745, 0.014435947872698307, 0.04331639036536217, -0.023265037685632706, 0.028410354629158974, -0.09791486710309982, -0.06041046604514122, 0.016495782881975174, 0.026991546154022217, -0.005324804689735174, 0.0383932963013649, 0.06317970901727676, 0.01172653678804636, -0.03535054996609688, -0.08882082253694534, 0.03020523302257061, 0.01479492336511612, -0.044205281883478165, 0.000009515257261227816, -0.04864974319934845, 0.010367557406425476, -0.0002486653975211084, -0.07090622931718826, -0.05504292622208595, -0.0267009474337101, -0.044581349939107895, -0.07835924625396729, 0.07049597054719925, 0.02406845986843109, -0.044512975960969925, 0.004893179517239332, 0.05107710137963295, -0.00032532165641896427, 0.01259833388030529, 0.04851298779249191, 0.0659831315279007, -0.0223932396620512, 0.007448744028806686, -0.011957306414842606, -0.033948834985494614, 0.0030085574835538864, -0.00894874893128872, -0.02010263316333294, 0.025077009573578835, 0.004487195052206516, 0.016965871676802635, -0.014111160300672054, -0.02422230690717697, -0.012076964601874352, 0.004320527892559767, 0.03135053440928459, -0.02876933105289936, -0.012555599212646484, -0.05237625166773796, 0.021812042221426964, -0.05135060474276543, -0.004598306491971016, 0.015957320109009743, -0.04064971208572388, -0.06170961633324623, 0.012290640734136105, -0.016572706401348114, -0.01024789921939373, -0.044068530201911926, 0.014367571100592613, -0.009136783890426159, -0.03675226494669914, -0.006730792578309774, 0.03846167027950287, -0.011547048576176167, 0.03177788853645325, -0.031453099101781845, 0.02526504546403885, -0.02770949713885784, 0.00015037445700727403, -0.037299275398254395, 0.05593181774020195, 0.002653855364769697, 0.03538473695516586, 0.0062265172600746155, 0.03582918271422386, -0.06700877845287323, 0.0904618501663208, 0.02376076579093933, -0.038666799664497375, -0.012623975053429604, -0.011094056069850922, -0.08027378469705582, -0.037675343453884125, 0.0036645426880568266, -0.016059884801506996, 0.04410271719098091, -0.03164113685488701, -0.01452996488660574, 0.014025690034031868, 0.013641073368489742, -0.012042776681482792, -0.020683832466602325, -0.02223939262330532, -0.003803431987762451, 0.002106844913214445, -0.03271806240081787, -0.00017000593652483076, -0.05234206095337868, 0.012803463265299797, 0.00028979801572859287, -0.0904618501663208, -0.0741199180483818, -0.04622238129377365, 0.010888926684856415, -0.053230952471494675, -0.028495825827121735, 0.052718132734298706, -0.03801722452044487, 0.011076961643993855, -0.01615390181541443, 0.014487230218946934, -0.0033611226826906204, 0.011940211988985538, -0.044136904180049896, 0.01647868938744068, 0.03218814730644226, -0.024153929203748703, 0.05381215363740921, -0.0018312028842046857, 0.015068428590893745, 0.05476941913366318, -0.037606969475746155, -0.04393177479505539, 0.02124793641269207, 0.005491471849381924, 0.003713688114657998, 0.046564266085624695, 0.017863309010863304, 0.008021395653486252, -0.018700920045375824, -0.1001712903380394, 0.05699165165424347, -0.011812007054686546, -0.0077265226282179356, -0.06017114967107773, 0.006961562670767307, 0.024102648720145226, -0.0008370755822397768, 0.0049401880241930485, -0.0020812037400901318, -0.005000017583370209, 0.02032485604286194, -0.043213825672864914, 0.034307811409235, -0.0091025959700346, 0.04242749884724617, -0.001434834091924131, 0.007619684562087059, -0.014777828939259052, -0.00017481364193372428, -0.006743613164871931, 0.03531636297702789, 0.029350528493523598, -0.0017040657112374902, -0.03230780363082886, 0.054530102759599686, -0.07145323604345322, 0.029230870306491852, -0.039658255875110626, 0.0394873172044754, -0.023265037685632706, 0.018085533753037453, -0.051111288368701935, 0.009923111647367477, 0.07227375358343124, -0.04017107933759689, -0.00857695285230875, -0.0014294921420514584, -0.028632577508687973, -0.012213717214763165, 0.017863309010863304, 0.00575215695425868, -0.09230801463127136, 0.012606881558895111, -0.038427483290433884, -0.021572723984718323, 0.03181207552552223, -0.00865387637168169, -0.018239378929138184, -0.010598327033221722, 0.000322650681482628, 0.018581261858344078, 0.01005131658166647, 0.0204103272408247, 0.00042120873695239425, 0.013384661637246609, -0.03384627029299736, -0.027948815375566483, 0.04335057735443115, -0.023777861148118973, -0.016025695949792862, 0.01989750564098358, 0.007700881455093622, 0.019521435722708702, -0.09900888800621033, -0.0004409737593960017, -0.026769323274493217, -0.0394873172044754, -0.05107710137963295, 0.028632577508687973, -0.006739339791238308, -0.008337635546922684, -0.03671807795763016, -0.019333399832248688, -0.0015694499015808105, -0.07370965927839279, 0.04735059291124344, -0.006235064473003149, -0.06246175616979599, 0.03218814730644226, -0.03020523302257061, 0.051418982446193695, -0.013683808036148548, 0.0419146753847599, -0.02808556705713272, 0.038666799664497375, 0.0015448771882802248, -0.009888922795653343, 0.004829076584428549, -0.020991526544094086, 0.03223942965269089, -0.01683766581118107, 0.02078639715909958, 0.008269259706139565, 0.05234206095337868, 0.01965818740427494, -0.017504334449768066, -0.03355567157268524, 0.00891456101089716, -0.040786467492580414, 0.010111146606504917, -0.049367692321538925, -0.036000125110149384, 0.028119755908846855, 0.012230811640620232, -0.050119832158088684, 0.057265155017375946, 0.04471810534596443, 0.0026367614045739174, 0.0922396332025528, -0.031538572162389755, 0.008346183225512505, -0.04895743355154991, 0.04885486885905266, 0.05576087906956673, 0.005183778703212738, 0.021538536995649338, 0.014162442646920681, 0.0432480126619339, 0.10974396765232086, 0.018769295886158943, 0.0697096437215805, 0.0067735277116298676, 0.053983092308044434, 0.07890626043081284, 0.056889086961746216, -0.026119748130440712, -0.03013685718178749, 0.039042871445417404, -0.029812069609761238, 0.055453184992074966, 0.0036559957079589367, 0.025982996448874474, -0.02078639715909958, 0.009700888767838478, 0.05234206095337868, -0.036854829639196396, 0.025709491223096848, -0.027230864390730858, -0.07261563837528229, -0.05777797847986221, -0.03005138598382473, 0.04933350533246994, -0.017965873703360558, -0.02958984673023224, 0.061196792870759964, -0.05401728302240372, 0.03013685718178749, 0.04355570673942566, -0.007388914469629526, 0.10311146825551987, -0.060068584978580475, -0.029812069609761238, -0.03945313021540642, 0.038598425686359406, -0.04615400731563568, 0.01950434036552906, -0.048547178506851196, -0.030906090512871742, 0.02861548401415348, 0.020512891933321953, 0.060752347111701965, -0.06495749205350876, -0.05083778500556946, -0.014051331207156181, -0.007598316762596369, -0.014282100833952427, -0.05076940730214119, -0.04088903218507767, -0.007521393708884716, 0.0020470155868679285, 0.030017198994755745, 0.03246165066957474, -0.01851288415491581, 0.0021079133730381727, 0.009034219197928905, -0.015547062270343304, -0.016059884801506996, -0.01570945605635643, -0.008705158717930317, -0.003185908542945981, 0.0315556637942791, -0.038666799664497375, -0.0359659381210804, -0.05234206095337868, -0.032376181334257126, 0.006551304832100868, 0.03013685718178749, -0.009786359034478664, 0.044889044016599655, 0.018256474286317825, 0.022752216085791588, 0.0013226541923359036, 0.02389751933515072, -0.012478675693273544, -0.013487226329743862, -0.004598306491971016, 0.011965853162109852, 0.009333365596830845, 0.005367539823055267, 0.03610268980264664, -0.010401745326817036, -0.04454716295003891, -0.0549403615295887, -0.010632515884935856, 0.037675343453884125, 0.009435930289328098, -0.03558986634016037, -0.03562405705451965, -0.028786424547433853, 0.10222257673740387, -0.010324821807444096, 0.05859849229454994, 0.0197436586022377, -0.02762402780354023, -0.014162442646920681, 0.013982954435050488, -0.022581275552511215, 0.02164110168814659, 0.06454723328351974, 0.02733342908322811, -0.04803435504436493, 0.0005966901080682874, -0.020427420735359192, -0.03311122581362724, 0.06577800959348679, -0.027658214792609215, 0.008487208746373653, 0.022359052672982216, -0.04584631323814392, -0.004713691771030426, 0.06235919147729874, 0.05268394201993942, -0.036376193165779114, -0.015555609948933125, 0.03384627029299736, -0.03849586099386215, -0.009393194690346718, 0.015897491946816444, 0.01844450831413269, 0.04827367141842842, 0.03675226494669914, -0.013376114889979362, -0.03726508840918541, -0.026735136285424232, 0.04095740616321564, 0.0031965922098606825, -0.023931706324219704, 0.00891456101089716, 0.02617103047668934, 0.011675254441797733, 0.015128257684409618, -0.0011153884697705507, -0.027794968336820602, -0.01950434036552906, -0.02102571353316307, -0.0922396332025528, -0.002252144506201148, -0.02444452978670597, 0.030854808166623116, 0.007051306311041117, 0.011512860655784607, -0.07097460329532623, 0.005495745688676834, -0.03822235390543938, 0.0016591937746852636, -0.053983092308044434, 0.059760890901088715, 0.08225669711828232, 0.054461728781461716, -0.038290731608867645, 0.03239327669143677, 0.03136762976646423, -0.0021335543133318424, 0.01662398874759674, -0.02806847356259823, -0.03367533162236214, 0.015948772430419922, -0.04379502311348915, -0.058017294853925705, -0.020444516092538834, 0.06198311969637871, -0.0005379292415454984, -0.023624014109373093, -0.021384689956903458, 0.02702573500573635, -0.020205197855830193, -0.031247971579432487, 0.00696583604440093, 0.06010277196764946, 0.031145406886935234, -0.00421368982642889, 0.03678645193576813, 0.013495773077011108, 0.010743627324700356, -0.0238291434943676, -0.015000051818788052, -0.019521435722708702, 0.00868379045277834, 0.010589780285954475, 0.00213462277315557, 0.02875223569571972, -0.05435916408896446, 0.006910280324518681, -0.019213741645216942, -0.020376138389110565, 0.01452996488660574, -0.006354723125696182, -0.07849600166082382, -0.00584190059453249, 0.02032485604286194, 0.05610276013612747, 0.01965818740427494, 0.031692419201135635, -0.021282125264406204, 0.002020306186750531, 0.021196654066443443, -0.027299240231513977, 0.03217105194926262, 0.059760890901088715, 0.049059998244047165, -0.03733346238732338, -0.0142308184877038, -0.04167535901069641, -0.057948920875787735, 0.056581392884254456, -0.03658132255077362, 0.0028354800306260586, 0.014752187766134739, -0.006833357270807028, 0.0075513082556426525, 0.022290674969553947, -0.013487226329743862, -0.0024957351852208376, 0.029350528493523598, -0.00739746168255806, -0.012538504786789417, 0.07630795985460281, 0.011521407403051853, 0.06851305812597275, 0.009931658394634724, 0.008299173787236214, 0.02808556705713272, -0.0472138375043869, 0.004653862211853266, 0.03370951861143112, 0.0002254281280329451, 0.015982961282134056, -0.024683846160769463, -0.003275652416050434, -0.05829080194234848, -0.0028632578905671835, -0.034957386553287506, 0.04748734459280968, -0.07234213501214981, -0.010931662283837795, -0.01767527498304844, 0.014623982831835747, 0.02126503176987171, 0.060000207275152206, 0.05087197199463844, 0.03323088586330414, 0.04960700869560242, -0.02398298867046833, -0.00011565211025299504, 0.036683887243270874, -0.025333421304821968, 0.04430784657597542, -0.020974431186914444, -0.12239358574151993, 0.037606969475746155, 0.04683776944875717, -0.006209423299878836, 0.02528213895857334, 0.01449577696621418, 0.005260702222585678, -0.05470104515552521, -0.04666682705283165, -0.01888895407319069, -0.012632522732019424, 0.03603431209921837, -0.009307724423706532, 0.009521400555968285, 0.07733359932899475, -0.03135053440928459, 0.06687203049659729, -0.047624096274375916, 0.017658181488513947, -0.004038475453853607, -0.024529999122023582, 0.006252158433198929, -0.044512975960969925, -0.037162523716688156, -0.007564128842204809, 0.0315556637942791, -0.027726592496037483, -0.052718132734298706, 0.0286838598549366, -0.05203436687588692, -0.044581349939107895, -0.006465834565460682, -0.019760752096772194, -0.022564180195331573, -0.01149576622992754, -0.01716245338320732, -0.022495804354548454, -0.015145352110266685, 0.027675310149788857, -0.026461631059646606, 0.002673086244612932, -0.08567550778388977, -0.05258137732744217, 0.0066709634847939014, -0.009683794341981411, -0.018649637699127197, -0.0443420335650444, -0.05586344003677368, -0.022735122591257095, -0.012700898572802544, 0.02223939262330532, -0.07268401235342026, -0.010042769834399223, 0.03647875785827637, -0.010025675408542156, 0.02579496055841446, -0.005735062528401613, 0.034803539514541626, 0.03326507285237312, 0.042153991758823395, 0.04772666096687317, -0.0067350659519433975, 0.027965908870100975, -0.005572668742388487, -0.015085522085428238, 0.029025740921497345, 0.052410438656806946, -0.02398298867046833, -0.01393167208880186, -0.01476073544472456, -0.057948920875787735, -0.0018322713440284133, -0.004331211559474468, 0.04953863471746445, 0.007299170829355717, -0.04820529744029045, -0.025931714102625847, 0.017410317435860634, -0.027265051379799843, 0.054906174540519714, 0.021982982754707336, -0.02170947752892971, 0.03695739433169365, 0.01426500640809536, 0.0025128291454166174, -0.007995754480361938, 0.06160705164074898, 0.09169262647628784, -0.07083785533905029, -0.010709438472986221, 0.060000207275152206, 0.026530006900429726, -0.034188151359558105, -0.021948793902993202, 0.002329068025574088, 0.04492323473095894, 0.027521463111042976, 0.006991477217525244, -0.010649609379470348, 0.013700902462005615, 0.03417105972766876, 0.03528217226266861, 0.06273525953292847, 0.02285478077828884, 0.014435947872698307, -0.03217105194926262, -0.029418906196951866, -0.03743602707982063, -0.022051358595490456, 0.008482935838401318, -0.013341926969587803, -0.016282107681035995, -0.01437611784785986, 0.058701056987047195, -0.04061552509665489, -0.0016709460178390145, 0.0037008675280958414, -0.006824810057878494, -0.007628231775015593, -0.043145447969436646, 0.03572661802172661, 0.019145365804433823, 0.04629075899720192, 0.015803473070263863, -0.0364103838801384, 0.059145502746105194, -0.031008655205368996, 0.01016242802143097, 0.004876085091382265, -0.03150438144803047, -0.010777815245091915, -0.01020516362041235, 0.013290644623339176, 0.020512891933321953, -0.055145490914583206, -0.011059867218136787, 0.025179574266076088, -0.025675302371382713, -0.01437611784785986, 0.006632501725107431, -0.04211980476975441, -0.014256459660828114, -0.016957323998212814, -0.03249583765864372, 0.07220537960529327, -0.006824810057878494, -0.02806847356259823, -0.05958995223045349, 0.043077073991298676, 0.013982954435050488, -0.039726633578538895, -0.04229074344038963, -0.0007959429058246315, 0.023162472993135452, -0.005329078529030085, 0.019230835139751434, 0.038735177367925644, 0.04748734459280968, 0.006876092404127121, -0.02565820887684822, -0.02770949713885784, -0.009136783890426159, -0.025008633732795715, 0.029538564383983612, 0.018923142924904823, 0.037606969475746155, 0.041094161570072174, 0.025863338261842728, 0.029880445450544357, 0.036854829639196396 ]
39,876
fpl.fpl
__init__
null
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, session)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,877
fpl.fpl
get_classic_league
Returns the classic league with the given ``league_id``. Requires the user to have logged in using ``fpl.login()``. Information is taken from e.g.: https://fantasy.premierleague.com/api/leagues-classic/967/standings/ :param string league_id: A classic league's ID. :type league_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`ClassicLeague` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`ClassicLeague` or ``dict``
fixtures = filter(lambda f: not f.finished, fixtures)
(self, league_id, return_json=False)
[ 0.06170961633324623, 0.052102744579315186, -0.08663278073072433, -0.027111204341053963, -0.036547135561704636, -0.022119734436273575, -0.02049579843878746, 0.03280353173613548, 0.06557288020849228, 0.02541889250278473, 0.046495888382196426, 0.020547080785036087, 0.010769268497824669, -0.045880500227212906, -0.01912827230989933, 0.011589784175157547, -0.05220530927181244, 0.051726676523685455, 0.03870099037885666, -0.019179554656147957, -0.003585482481867075, 0.06758997589349747, -0.012760727666318417, 0.04311126098036766, 0.013846201822161674, -0.0206325501203537, -0.007884643040597439, -0.03825654461979866, 0.029333434998989105, 0.036683887243270874, -0.031760793179273605, 0.005743609741330147, 0.014435947872698307, 0.001989323180168867, -0.005743609741330147, 0.04485485702753067, 0.003049155930057168, 0.07596607506275177, -0.01813681423664093, 0.022136829793453217, 0.04331639036536217, 0.0061666881665587425, -0.05880362167954445, 0.02899155393242836, 0.0072265206836164, -0.015290651470422745, 0.02148725464940071, 0.042153991758823395, 0.013042780570685863, 0.026136843487620354, 0.042837753891944885, 0.06225662678480148, 0.041401851922273636, 0.05524805560708046, 0.02307700365781784, -0.009820546954870224, -0.05535062029957771, 0.010931662283837795, 0.04888905957341194, 0.025487268343567848, 0.0023055635392665863, 0.035418927669525146, 0.05032496154308319, -0.005111129023134708, 0.036615513265132904, -0.01111969631165266, 0.0024294955655932426, 0.017128264531493187, -0.0423591211438179, 0.08574388921260834, -0.04471810534596443, 0.057025838643312454, 0.01926502399146557, 0.035487301647663116, -0.015401762910187244, -0.0536070242524147, -0.018307756632566452, 0.014017142355442047, 0.010538497939705849, -0.05859849229454994, 0.036854829639196396, 0.02321375533938408, -0.07952164113521576, 0.03709414601325989, -0.00364317512139678, -0.016299201175570488, 0.06577800959348679, -0.04820529744029045, -0.02921377681195736, -0.03907705843448639, -0.03271806240081787, 0.05299163609743118, -0.0073547265492379665, -0.05350445955991745, 0.014435947872698307, 0.04331639036536217, -0.023265037685632706, 0.028410354629158974, -0.09791486710309982, -0.06041046604514122, 0.016495782881975174, 0.026991546154022217, -0.005324804689735174, 0.0383932963013649, 0.06317970901727676, 0.01172653678804636, -0.03535054996609688, -0.08882082253694534, 0.03020523302257061, 0.01479492336511612, -0.044205281883478165, 0.000009515257261227816, -0.04864974319934845, 0.010367557406425476, -0.0002486653975211084, -0.07090622931718826, -0.05504292622208595, -0.0267009474337101, -0.044581349939107895, -0.07835924625396729, 0.07049597054719925, 0.02406845986843109, -0.044512975960969925, 0.004893179517239332, 0.05107710137963295, -0.00032532165641896427, 0.01259833388030529, 0.04851298779249191, 0.0659831315279007, -0.0223932396620512, 0.007448744028806686, -0.011957306414842606, -0.033948834985494614, 0.0030085574835538864, -0.00894874893128872, -0.02010263316333294, 0.025077009573578835, 0.004487195052206516, 0.016965871676802635, -0.014111160300672054, -0.02422230690717697, -0.012076964601874352, 0.004320527892559767, 0.03135053440928459, -0.02876933105289936, -0.012555599212646484, -0.05237625166773796, 0.021812042221426964, -0.05135060474276543, -0.004598306491971016, 0.015957320109009743, -0.04064971208572388, -0.06170961633324623, 0.012290640734136105, -0.016572706401348114, -0.01024789921939373, -0.044068530201911926, 0.014367571100592613, -0.009136783890426159, -0.03675226494669914, -0.006730792578309774, 0.03846167027950287, -0.011547048576176167, 0.03177788853645325, -0.031453099101781845, 0.02526504546403885, -0.02770949713885784, 0.00015037445700727403, -0.037299275398254395, 0.05593181774020195, 0.002653855364769697, 0.03538473695516586, 0.0062265172600746155, 0.03582918271422386, -0.06700877845287323, 0.0904618501663208, 0.02376076579093933, -0.038666799664497375, -0.012623975053429604, -0.011094056069850922, -0.08027378469705582, -0.037675343453884125, 0.0036645426880568266, -0.016059884801506996, 0.04410271719098091, -0.03164113685488701, -0.01452996488660574, 0.014025690034031868, 0.013641073368489742, -0.012042776681482792, -0.020683832466602325, -0.02223939262330532, -0.003803431987762451, 0.002106844913214445, -0.03271806240081787, -0.00017000593652483076, -0.05234206095337868, 0.012803463265299797, 0.00028979801572859287, -0.0904618501663208, -0.0741199180483818, -0.04622238129377365, 0.010888926684856415, -0.053230952471494675, -0.028495825827121735, 0.052718132734298706, -0.03801722452044487, 0.011076961643993855, -0.01615390181541443, 0.014487230218946934, -0.0033611226826906204, 0.011940211988985538, -0.044136904180049896, 0.01647868938744068, 0.03218814730644226, -0.024153929203748703, 0.05381215363740921, -0.0018312028842046857, 0.015068428590893745, 0.05476941913366318, -0.037606969475746155, -0.04393177479505539, 0.02124793641269207, 0.005491471849381924, 0.003713688114657998, 0.046564266085624695, 0.017863309010863304, 0.008021395653486252, -0.018700920045375824, -0.1001712903380394, 0.05699165165424347, -0.011812007054686546, -0.0077265226282179356, -0.06017114967107773, 0.006961562670767307, 0.024102648720145226, -0.0008370755822397768, 0.0049401880241930485, -0.0020812037400901318, -0.005000017583370209, 0.02032485604286194, -0.043213825672864914, 0.034307811409235, -0.0091025959700346, 0.04242749884724617, -0.001434834091924131, 0.007619684562087059, -0.014777828939259052, -0.00017481364193372428, -0.006743613164871931, 0.03531636297702789, 0.029350528493523598, -0.0017040657112374902, -0.03230780363082886, 0.054530102759599686, -0.07145323604345322, 0.029230870306491852, -0.039658255875110626, 0.0394873172044754, -0.023265037685632706, 0.018085533753037453, -0.051111288368701935, 0.009923111647367477, 0.07227375358343124, -0.04017107933759689, -0.00857695285230875, -0.0014294921420514584, -0.028632577508687973, -0.012213717214763165, 0.017863309010863304, 0.00575215695425868, -0.09230801463127136, 0.012606881558895111, -0.038427483290433884, -0.021572723984718323, 0.03181207552552223, -0.00865387637168169, -0.018239378929138184, -0.010598327033221722, 0.000322650681482628, 0.018581261858344078, 0.01005131658166647, 0.0204103272408247, 0.00042120873695239425, 0.013384661637246609, -0.03384627029299736, -0.027948815375566483, 0.04335057735443115, -0.023777861148118973, -0.016025695949792862, 0.01989750564098358, 0.007700881455093622, 0.019521435722708702, -0.09900888800621033, -0.0004409737593960017, -0.026769323274493217, -0.0394873172044754, -0.05107710137963295, 0.028632577508687973, -0.006739339791238308, -0.008337635546922684, -0.03671807795763016, -0.019333399832248688, -0.0015694499015808105, -0.07370965927839279, 0.04735059291124344, -0.006235064473003149, -0.06246175616979599, 0.03218814730644226, -0.03020523302257061, 0.051418982446193695, -0.013683808036148548, 0.0419146753847599, -0.02808556705713272, 0.038666799664497375, 0.0015448771882802248, -0.009888922795653343, 0.004829076584428549, -0.020991526544094086, 0.03223942965269089, -0.01683766581118107, 0.02078639715909958, 0.008269259706139565, 0.05234206095337868, 0.01965818740427494, -0.017504334449768066, -0.03355567157268524, 0.00891456101089716, -0.040786467492580414, 0.010111146606504917, -0.049367692321538925, -0.036000125110149384, 0.028119755908846855, 0.012230811640620232, -0.050119832158088684, 0.057265155017375946, 0.04471810534596443, 0.0026367614045739174, 0.0922396332025528, -0.031538572162389755, 0.008346183225512505, -0.04895743355154991, 0.04885486885905266, 0.05576087906956673, 0.005183778703212738, 0.021538536995649338, 0.014162442646920681, 0.0432480126619339, 0.10974396765232086, 0.018769295886158943, 0.0697096437215805, 0.0067735277116298676, 0.053983092308044434, 0.07890626043081284, 0.056889086961746216, -0.026119748130440712, -0.03013685718178749, 0.039042871445417404, -0.029812069609761238, 0.055453184992074966, 0.0036559957079589367, 0.025982996448874474, -0.02078639715909958, 0.009700888767838478, 0.05234206095337868, -0.036854829639196396, 0.025709491223096848, -0.027230864390730858, -0.07261563837528229, -0.05777797847986221, -0.03005138598382473, 0.04933350533246994, -0.017965873703360558, -0.02958984673023224, 0.061196792870759964, -0.05401728302240372, 0.03013685718178749, 0.04355570673942566, -0.007388914469629526, 0.10311146825551987, -0.060068584978580475, -0.029812069609761238, -0.03945313021540642, 0.038598425686359406, -0.04615400731563568, 0.01950434036552906, -0.048547178506851196, -0.030906090512871742, 0.02861548401415348, 0.020512891933321953, 0.060752347111701965, -0.06495749205350876, -0.05083778500556946, -0.014051331207156181, -0.007598316762596369, -0.014282100833952427, -0.05076940730214119, -0.04088903218507767, -0.007521393708884716, 0.0020470155868679285, 0.030017198994755745, 0.03246165066957474, -0.01851288415491581, 0.0021079133730381727, 0.009034219197928905, -0.015547062270343304, -0.016059884801506996, -0.01570945605635643, -0.008705158717930317, -0.003185908542945981, 0.0315556637942791, -0.038666799664497375, -0.0359659381210804, -0.05234206095337868, -0.032376181334257126, 0.006551304832100868, 0.03013685718178749, -0.009786359034478664, 0.044889044016599655, 0.018256474286317825, 0.022752216085791588, 0.0013226541923359036, 0.02389751933515072, -0.012478675693273544, -0.013487226329743862, -0.004598306491971016, 0.011965853162109852, 0.009333365596830845, 0.005367539823055267, 0.03610268980264664, -0.010401745326817036, -0.04454716295003891, -0.0549403615295887, -0.010632515884935856, 0.037675343453884125, 0.009435930289328098, -0.03558986634016037, -0.03562405705451965, -0.028786424547433853, 0.10222257673740387, -0.010324821807444096, 0.05859849229454994, 0.0197436586022377, -0.02762402780354023, -0.014162442646920681, 0.013982954435050488, -0.022581275552511215, 0.02164110168814659, 0.06454723328351974, 0.02733342908322811, -0.04803435504436493, 0.0005966901080682874, -0.020427420735359192, -0.03311122581362724, 0.06577800959348679, -0.027658214792609215, 0.008487208746373653, 0.022359052672982216, -0.04584631323814392, -0.004713691771030426, 0.06235919147729874, 0.05268394201993942, -0.036376193165779114, -0.015555609948933125, 0.03384627029299736, -0.03849586099386215, -0.009393194690346718, 0.015897491946816444, 0.01844450831413269, 0.04827367141842842, 0.03675226494669914, -0.013376114889979362, -0.03726508840918541, -0.026735136285424232, 0.04095740616321564, 0.0031965922098606825, -0.023931706324219704, 0.00891456101089716, 0.02617103047668934, 0.011675254441797733, 0.015128257684409618, -0.0011153884697705507, -0.027794968336820602, -0.01950434036552906, -0.02102571353316307, -0.0922396332025528, -0.002252144506201148, -0.02444452978670597, 0.030854808166623116, 0.007051306311041117, 0.011512860655784607, -0.07097460329532623, 0.005495745688676834, -0.03822235390543938, 0.0016591937746852636, -0.053983092308044434, 0.059760890901088715, 0.08225669711828232, 0.054461728781461716, -0.038290731608867645, 0.03239327669143677, 0.03136762976646423, -0.0021335543133318424, 0.01662398874759674, -0.02806847356259823, -0.03367533162236214, 0.015948772430419922, -0.04379502311348915, -0.058017294853925705, -0.020444516092538834, 0.06198311969637871, -0.0005379292415454984, -0.023624014109373093, -0.021384689956903458, 0.02702573500573635, -0.020205197855830193, -0.031247971579432487, 0.00696583604440093, 0.06010277196764946, 0.031145406886935234, -0.00421368982642889, 0.03678645193576813, 0.013495773077011108, 0.010743627324700356, -0.0238291434943676, -0.015000051818788052, -0.019521435722708702, 0.00868379045277834, 0.010589780285954475, 0.00213462277315557, 0.02875223569571972, -0.05435916408896446, 0.006910280324518681, -0.019213741645216942, -0.020376138389110565, 0.01452996488660574, -0.006354723125696182, -0.07849600166082382, -0.00584190059453249, 0.02032485604286194, 0.05610276013612747, 0.01965818740427494, 0.031692419201135635, -0.021282125264406204, 0.002020306186750531, 0.021196654066443443, -0.027299240231513977, 0.03217105194926262, 0.059760890901088715, 0.049059998244047165, -0.03733346238732338, -0.0142308184877038, -0.04167535901069641, -0.057948920875787735, 0.056581392884254456, -0.03658132255077362, 0.0028354800306260586, 0.014752187766134739, -0.006833357270807028, 0.0075513082556426525, 0.022290674969553947, -0.013487226329743862, -0.0024957351852208376, 0.029350528493523598, -0.00739746168255806, -0.012538504786789417, 0.07630795985460281, 0.011521407403051853, 0.06851305812597275, 0.009931658394634724, 0.008299173787236214, 0.02808556705713272, -0.0472138375043869, 0.004653862211853266, 0.03370951861143112, 0.0002254281280329451, 0.015982961282134056, -0.024683846160769463, -0.003275652416050434, -0.05829080194234848, -0.0028632578905671835, -0.034957386553287506, 0.04748734459280968, -0.07234213501214981, -0.010931662283837795, -0.01767527498304844, 0.014623982831835747, 0.02126503176987171, 0.060000207275152206, 0.05087197199463844, 0.03323088586330414, 0.04960700869560242, -0.02398298867046833, -0.00011565211025299504, 0.036683887243270874, -0.025333421304821968, 0.04430784657597542, -0.020974431186914444, -0.12239358574151993, 0.037606969475746155, 0.04683776944875717, -0.006209423299878836, 0.02528213895857334, 0.01449577696621418, 0.005260702222585678, -0.05470104515552521, -0.04666682705283165, -0.01888895407319069, -0.012632522732019424, 0.03603431209921837, -0.009307724423706532, 0.009521400555968285, 0.07733359932899475, -0.03135053440928459, 0.06687203049659729, -0.047624096274375916, 0.017658181488513947, -0.004038475453853607, -0.024529999122023582, 0.006252158433198929, -0.044512975960969925, -0.037162523716688156, -0.007564128842204809, 0.0315556637942791, -0.027726592496037483, -0.052718132734298706, 0.0286838598549366, -0.05203436687588692, -0.044581349939107895, -0.006465834565460682, -0.019760752096772194, -0.022564180195331573, -0.01149576622992754, -0.01716245338320732, -0.022495804354548454, -0.015145352110266685, 0.027675310149788857, -0.026461631059646606, 0.002673086244612932, -0.08567550778388977, -0.05258137732744217, 0.0066709634847939014, -0.009683794341981411, -0.018649637699127197, -0.0443420335650444, -0.05586344003677368, -0.022735122591257095, -0.012700898572802544, 0.02223939262330532, -0.07268401235342026, -0.010042769834399223, 0.03647875785827637, -0.010025675408542156, 0.02579496055841446, -0.005735062528401613, 0.034803539514541626, 0.03326507285237312, 0.042153991758823395, 0.04772666096687317, -0.0067350659519433975, 0.027965908870100975, -0.005572668742388487, -0.015085522085428238, 0.029025740921497345, 0.052410438656806946, -0.02398298867046833, -0.01393167208880186, -0.01476073544472456, -0.057948920875787735, -0.0018322713440284133, -0.004331211559474468, 0.04953863471746445, 0.007299170829355717, -0.04820529744029045, -0.025931714102625847, 0.017410317435860634, -0.027265051379799843, 0.054906174540519714, 0.021982982754707336, -0.02170947752892971, 0.03695739433169365, 0.01426500640809536, 0.0025128291454166174, -0.007995754480361938, 0.06160705164074898, 0.09169262647628784, -0.07083785533905029, -0.010709438472986221, 0.060000207275152206, 0.026530006900429726, -0.034188151359558105, -0.021948793902993202, 0.002329068025574088, 0.04492323473095894, 0.027521463111042976, 0.006991477217525244, -0.010649609379470348, 0.013700902462005615, 0.03417105972766876, 0.03528217226266861, 0.06273525953292847, 0.02285478077828884, 0.014435947872698307, -0.03217105194926262, -0.029418906196951866, -0.03743602707982063, -0.022051358595490456, 0.008482935838401318, -0.013341926969587803, -0.016282107681035995, -0.01437611784785986, 0.058701056987047195, -0.04061552509665489, -0.0016709460178390145, 0.0037008675280958414, -0.006824810057878494, -0.007628231775015593, -0.043145447969436646, 0.03572661802172661, 0.019145365804433823, 0.04629075899720192, 0.015803473070263863, -0.0364103838801384, 0.059145502746105194, -0.031008655205368996, 0.01016242802143097, 0.004876085091382265, -0.03150438144803047, -0.010777815245091915, -0.01020516362041235, 0.013290644623339176, 0.020512891933321953, -0.055145490914583206, -0.011059867218136787, 0.025179574266076088, -0.025675302371382713, -0.01437611784785986, 0.006632501725107431, -0.04211980476975441, -0.014256459660828114, -0.016957323998212814, -0.03249583765864372, 0.07220537960529327, -0.006824810057878494, -0.02806847356259823, -0.05958995223045349, 0.043077073991298676, 0.013982954435050488, -0.039726633578538895, -0.04229074344038963, -0.0007959429058246315, 0.023162472993135452, -0.005329078529030085, 0.019230835139751434, 0.038735177367925644, 0.04748734459280968, 0.006876092404127121, -0.02565820887684822, -0.02770949713885784, -0.009136783890426159, -0.025008633732795715, 0.029538564383983612, 0.018923142924904823, 0.037606969475746155, 0.041094161570072174, 0.025863338261842728, 0.029880445450544357, 0.036854829639196396 ]
39,878
fpl.fpl
get_fixture
Returns the fixture with the given ``fixture_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/fixtures/ https://fantasy.premierleague.com/api/fixtures/?event=1 :param int fixture_id: The fixture's ID. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Fixture` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`Fixture` or ``dict`` :raises ValueError: if fixture with ``fixture_id`` not found
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, fixture_id, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,879
fpl.fpl
get_fixtures
Returns a list of *all* fixtures. Information is taken from e.g.: https://fantasy.premierleague.com/api/fixtures/ :param return_json: (optional) Boolean. If ``True`` returns a list of ``dicts``, if ``False`` returns a list of :class:`Fixture` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,880
fpl.fpl
get_fixtures_by_gameweek
Returns a list of all fixtures of the given ``gameweek``. Information is taken from e.g.: https://fantasy.premierleague.com/api/fixtures/ https://fantasy.premierleague.com/api/fixtures/?event=1 :param gameweek: A gameweek. :type gameweek: string or int :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Player` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, gameweek, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,881
fpl.fpl
get_fixtures_by_id
Returns a list of all fixtures with IDs included in the `fixture_ids` list. Information is taken from e.g.: https://fantasy.premierleague.com/api/fixtures/ https://fantasy.premierleague.com/api/fixtures/?event=1 :param list fixture_ids: A list of fixture IDs. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Fixture` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, fixture_ids, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,882
fpl.fpl
get_gameweek
Returns the gameweek with the ID ``gameweek_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/bootstrap-static/ https://fantasy.premierleague.com/api/event/1/live/ :param int gameweek_id: A gameweek's ID. :param bool include_live: (optional) Includes a gameweek's live data if ``True``. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Gameweek` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`Gameweek` or ``dict``
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, gameweek_id, include_live=False, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,883
fpl.fpl
get_gameweeks
Returns either a list of *all* gamweeks, or a list of gameweeks whose IDs are in the ``gameweek_ids`` list. Information is taken from e.g.: https://fantasy.premierleague.com/api/bootstrap-static/ https://fantasy.premierleague.com/api/event/1/live/ :param list gameweek_ids: (optional) A list of gameweek IDs. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Gameweek` objects. Defaults to ``False``. :type return_json: bool :rtype: list
fixtures = filter(lambda f: not f.finished, fixtures)
(self, gameweek_ids=None, include_live=False, return_json=False)
[ 0.061716314405202866, 0.05207420885562897, -0.08657379448413849, -0.02713124267756939, -0.0365511029958725, -0.022156327962875366, -0.020515117794275284, 0.03280709311366081, 0.06554580479860306, 0.02540455386042595, 0.04643255099654198, 0.020566405728459358, 0.010847368277609348, -0.04588548094034195, -0.01911325193941593, 0.011539753526449203, -0.0522109754383564, 0.05176648125052452, 0.038705188781023026, -0.01919873058795929, -0.003500391962006688, 0.06756312400102615, -0.012779208831489086, 0.04315013065934181, 0.013779320754110813, -0.020617693662643433, -0.007842758670449257, -0.03822650387883186, 0.0293195229023695, 0.03668786957859993, -0.031815528869628906, 0.005816890858113766, 0.014411870390176773, 0.0020461692474782467, -0.005671575199812651, 0.04482553154230118, 0.0030366647988557816, 0.07597432285547256, -0.018138783052563667, 0.022036654874682426, 0.043321091681718826, 0.006222919095307589, -0.05887838825583458, 0.02896050736308098, 0.007295688614249229, -0.015309406444430351, 0.021575065329670906, 0.042261142283678055, 0.013027099892497063, 0.026173871010541916, 0.04291078820824623, 0.06236595660448074, 0.0413721539080143, 0.055254049599170685, 0.023045316338539124, -0.00983016099780798, -0.05539081618189812, 0.01093284785747528, 0.04886017367243767, 0.025455841794610023, 0.002224608091637492, 0.03542276844382286, 0.05026203766465187, -0.005244176834821701, 0.03672206029295921, -0.011009779758751392, 0.0023442795500159264, 0.017113028094172478, -0.04229533299803734, 0.08568480610847473, -0.044791340827941895, 0.05706622079014778, 0.01930130645632744, 0.03552534431219101, -0.015360694378614426, -0.0536128394305706, -0.018343934789299965, 0.014061403460800648, 0.010573833249509335, -0.05867323651909828, 0.03679044544696808, 0.02313079498708248, -0.07946188747882843, 0.037200745195150375, -0.003694858169183135, -0.016249682754278183, 0.06571675837039948, -0.04821052774786949, -0.029234042391180992, -0.03908129781484604, -0.03268742188811302, 0.052963197231292725, -0.0074239084497094154, -0.05351026728749275, 0.014411870390176773, 0.04335528239607811, -0.02323337085545063, 0.028345054015517235, -0.0979938805103302, -0.06041702255606651, 0.01654031313955784, 0.026943188160657883, -0.005291190929710865, 0.03832907974720001, 0.06318656355142593, 0.011727808974683285, -0.03528600186109543, -0.0887620747089386, 0.030208511278033257, 0.014873459935188293, -0.044175885617733, -0.000005008573680242989, -0.048586636781692505, 0.0102917505428195, -0.00016908944235183299, -0.07084553688764572, -0.055014707148075104, -0.026772229000926018, -0.04462037980556488, -0.07836774736642838, 0.07050362229347229, 0.023985592648386955, -0.04451780393719673, 0.004846696741878986, 0.05108264461159706, -0.00039267216925509274, 0.012556961737573147, 0.04851825535297394, 0.06599029898643494, -0.022378575056791306, 0.00738971633836627, -0.011958603747189045, -0.03393542394042015, 0.0030409388709813356, -0.008992459625005722, -0.020070623606443405, 0.025131018832325935, 0.004466312006115913, 0.01701045222580433, -0.014129787683486938, -0.024173647165298462, -0.01207827590405941, 0.004355188459157944, 0.03140522539615631, -0.028686972334980965, -0.01264244131743908, -0.05245031788945198, 0.021814407780766487, -0.05139036849141121, -0.004543243907392025, 0.015933407470583916, -0.04072250798344612, -0.061716314405202866, 0.012249235063791275, -0.01657450571656227, -0.010146435350179672, -0.044107504189014435, 0.014334938488900661, -0.00919761136174202, -0.03682463616132736, -0.0066930572502315044, 0.03850003704428673, -0.01155684981495142, 0.031815528869628906, -0.03142232075333595, 0.025267787277698517, -0.027644122019410133, 0.000042906780436169356, -0.037303321063518524, 0.05600627139210701, 0.00273321196436882, 0.03521762043237686, 0.006287029013037682, 0.03586726263165474, -0.06698185950517654, 0.09047167003154755, 0.02369496040046215, -0.03860261291265488, -0.012659537605941296, -0.011009779758751392, -0.08021411299705505, -0.03771362453699112, 0.0036499814596027136, -0.01609581895172596, 0.044210080057382584, -0.03162747249007225, -0.014505897648632526, 0.014044308103621006, 0.013651100918650627, -0.011984247714281082, -0.02070317231118679, -0.0222930945456028, -0.00379743380472064, 0.002122032456099987, -0.03267032653093338, -0.0002035484358202666, -0.052381932735443115, 0.012839044444262981, 0.0003162747307214886, -0.09033489972352982, -0.07419634610414505, -0.04626158997416496, 0.010881559923291206, -0.05323673039674759, -0.028498917818069458, 0.052723851054906845, -0.038021352142095566, 0.01103542372584343, -0.016044531017541885, 0.014471706002950668, -0.003295240690931678, 0.012018440291285515, -0.044107504189014435, 0.016514670103788376, 0.0322258323431015, -0.024173647165298462, 0.05378380045294762, -0.0018121687462553382, 0.01500167977064848, 0.05477536469697952, -0.037645239382982254, -0.04383396729826927, 0.021301530301570892, 0.005513438023626804, 0.0037183649837970734, 0.046637702733278275, 0.01783105731010437, 0.007923964411020279, -0.018805524334311485, -0.10018216073513031, 0.056997835636138916, -0.01177909690886736, -0.007748730946332216, -0.06010929495096207, 0.006983688101172447, 0.024071071296930313, -0.0009071528911590576, 0.004906532354652882, -0.0020696762949228287, -0.0049791899509727955, 0.020275775343179703, -0.04321851581335068, 0.03436282277107239, -0.009060843847692013, 0.04243210330605507, -0.0013655375223606825, 0.007671799045056105, -0.014634117484092712, -0.00014812021981924772, -0.006765714846551418, 0.03528600186109543, 0.0293195229023695, -0.0017160041024908423, -0.03224292770028114, 0.05453602224588394, -0.07132422924041748, 0.02919985167682171, -0.03966256231069565, 0.03945741057395935, -0.023250466212630272, 0.0181729756295681, -0.05108264461159706, 0.009966928511857986, 0.0722815990447998, -0.040072862058877945, -0.008629171177744865, -0.0014253732515498996, -0.028584398329257965, -0.012257782742381096, 0.017882345244288445, 0.005492067895829678, -0.09231802821159363, 0.012702276930212975, -0.03843165561556816, -0.02150668203830719, 0.03186681494116783, -0.008663362823426723, -0.01829264685511589, -0.010565285570919514, 0.0002788773854263127, 0.018583277240395546, 0.009975476190447807, 0.020412541925907135, 0.0004776175774168223, 0.013317730277776718, -0.033832848072052, -0.028003135696053505, 0.04335528239607811, -0.023831728845834732, -0.015924859791994095, 0.019985143095254898, 0.007680347189307213, 0.019506458193063736, -0.09901963174343109, -0.0004931107978336513, -0.026755133643746376, -0.03945741057395935, -0.05104845017194748, 0.02863568440079689, -0.006671687122434378, -0.008287252858281136, -0.03668786957859993, -0.01930130645632744, -0.0016454834258183837, -0.07364927232265472, 0.04725315421819687, -0.006235741078853607, -0.06246853247284889, 0.03224292770028114, -0.03014012798666954, 0.051458753645420074, -0.013702388852834702, 0.04178245738148689, -0.028003135696053505, 0.03867099806666374, 0.0015311543829739094, -0.009872900322079659, 0.004752669017761946, -0.020976707339286804, 0.03217454254627228, -0.016873683780431747, 0.02070317231118679, 0.008176129311323166, 0.052279356867074966, 0.01954064890742302, -0.017574617639183998, -0.03357641026377678, 0.00886424072086811, -0.04079089313745499, 0.010223367251455784, -0.049407243728637695, -0.03600403293967247, 0.02807151898741722, 0.0121979471296072, -0.05022784695029259, 0.057100411504507065, 0.044791340827941895, 0.0026242255698889494, 0.09231802821159363, -0.03137103468179703, 0.0083342669531703, -0.04889436438679695, 0.04886017367243767, 0.05580111965537071, 0.005201437044888735, 0.021540872752666473, 0.014121239073574543, 0.043321091681718826, 0.10975588113069534, 0.018908100202679634, 0.06978559494018555, 0.0068084546364843845, 0.053988952189683914, 0.07884643971920013, 0.05696364492177963, -0.026139678433537483, -0.03014012798666954, 0.03908129781484604, -0.029832400381565094, 0.05545920133590698, 0.0037375979591161013, 0.02598581649363041, -0.020771557465195656, 0.00983016099780798, 0.05245031788945198, -0.0367562510073185, 0.02566099353134632, -0.027302201837301254, -0.0726919025182724, -0.05781843885779381, -0.030054647475481033, 0.0492020919919014, -0.01795072853565216, -0.029593057930469513, 0.061340201646089554, -0.053988952189683914, 0.030157223343849182, 0.04359462484717369, -0.007334154564887285, 0.10305427759885788, -0.06007510423660278, -0.02990078367292881, -0.0393548347055912, 0.03860261291265488, -0.046193208545446396, 0.019574841484427452, -0.04855244606733322, -0.030892347916960716, 0.028584398329257965, 0.020515117794275284, 0.06069055572152138, -0.064861960709095, -0.05084329843521118, -0.014069952070713043, -0.007684621028602123, -0.014249458909034729, -0.0508091077208519, -0.0409618504345417, -0.00750083988532424, 0.002040826715528965, 0.030071742832660675, 0.032499365508556366, -0.018429413437843323, 0.002076087286695838, 0.009043747559189796, -0.015454721637070179, -0.016035983338952065, -0.015685517340898514, -0.008718924596905708, -0.003177706152200699, 0.03164456784725189, -0.03863680362701416, -0.036038223654031754, -0.052279356867074966, -0.03232840821146965, 0.006547741591930389, 0.03024270199239254, -0.009761776775121689, 0.04492810741066933, 0.018207166343927383, 0.02275468409061432, 0.0012608249671757221, 0.023900112137198448, -0.012454385869204998, -0.013539977371692657, -0.004632997326552868, 0.012018440291285515, 0.009300186298787594, 0.0053595746867358685, 0.036174990236759186, -0.010368682444095612, -0.0445861890912056, -0.054912131279706955, -0.010667861439287663, 0.03771362453699112, 0.009445502422749996, -0.03555953875184059, -0.03562792018055916, -0.02885793149471283, 0.10223367065191269, -0.010351586155593395, 0.05853646993637085, 0.01966032199561596, -0.027627024799585342, -0.014129787683486938, 0.014001567848026752, -0.02263501286506653, 0.021660545840859413, 0.06462261825799942, 0.027302201837301254, -0.04797118529677391, 0.000657124852295965, -0.02037835121154785, -0.03311482071876526, 0.06581933796405792, -0.027678312733769417, 0.0083855539560318, 0.02231018990278244, -0.0457829050719738, -0.0047441208735108376, 0.06236595660448074, 0.05268966034054756, -0.03641433268785477, -0.015565845184028149, 0.033832848072052, -0.03856842219829559, -0.009394214488565922, 0.01596760004758835, 0.01841231808066368, 0.048347294330596924, 0.03679044544696808, -0.013488690368831158, -0.03726913034915924, -0.026738036423921585, 0.04103023558855057, 0.00320762419141829, -0.023968495428562164, 0.008932624012231827, 0.026139678433537483, 0.011659425683319569, 0.01507006399333477, -0.0010017147287726402, -0.027866369113326073, -0.019609034061431885, -0.02102799527347088, -0.0921812653541565, -0.0023079507518559694, -0.024412989616394043, 0.03092654049396515, 0.007034976035356522, 0.011514109559357166, -0.07084553688764572, 0.005504889879375696, -0.03822650387883186, 0.0015974011039361358, -0.05395476147532463, 0.05973318591713905, 0.08219724148511887, 0.054467637091875076, -0.03822650387883186, 0.03241388499736786, 0.03142232075333595, -0.0021359228994697332, 0.016634341329336166, -0.02807151898741722, -0.03376446291804314, 0.015950504690408707, -0.04373139142990112, -0.058023590594530106, -0.02046382986009121, 0.061921462416648865, -0.00044903531670570374, -0.023506905883550644, -0.021335722878575325, 0.027097051963210106, -0.020190294831991196, -0.03130264952778816, 0.006983688101172447, 0.06010929495096207, 0.031097499653697014, -0.004207736346870661, 0.0367562510073185, 0.013420306146144867, 0.010770436376333237, -0.023900112137198448, -0.014933296479284763, -0.01954064890742302, 0.008654815144836903, 0.010616573505103588, 0.0022096491884440184, 0.028704069554805756, -0.054330870509147644, 0.006915304344147444, -0.019147442653775215, -0.02048092521727085, 0.014599925838410854, -0.0063938782550394535, -0.07836774736642838, -0.005859630648046732, 0.02034415863454342, 0.056177232414484024, 0.019643224775791168, 0.03176423907279968, -0.02128443494439125, 0.0019179497612640262, 0.02126733958721161, -0.02735348977148533, 0.032157447189092636, 0.05980156734585762, 0.04909951612353325, -0.03737170621752739, -0.014240911230444908, -0.04164569079875946, -0.05795520916581154, 0.056519150733947754, -0.036653678864240646, 0.0028977603651583195, 0.014728144742548466, -0.006804180797189474, 0.0075393058359622955, 0.022258901968598366, -0.013582717627286911, -0.002438307274132967, 0.029302425682544708, -0.00738971633836627, -0.012505673803389072, 0.07624785602092743, 0.011514109559357166, 0.06858887523412704, 0.009958379901945591, 0.008304349146783352, 0.028088616207242012, -0.04715057834982872, 0.004654367454349995, 0.03369608148932457, 0.000262582820141688, 0.016010340303182602, -0.0246010459959507, -0.003226857166737318, -0.05833131819963455, -0.0029383632354438305, -0.03492698818445206, 0.04742411524057388, -0.07241836935281754, -0.010958491824567318, -0.01769428886473179, 0.014676856808364391, 0.021301530301570892, 0.06000671908259392, 0.0508091077208519, 0.03323449194431305, 0.04957820102572441, -0.02393430471420288, -0.00014932228077668697, 0.0367562510073185, -0.025267787277698517, 0.044346846640110016, -0.02094251662492752, -0.12233848869800568, 0.037645239382982254, 0.046842850744724274, -0.006193001288920641, 0.02528488263487816, 0.014463158324360847, 0.0052057113498449326, -0.05470697954297066, -0.04670608416199684, -0.01885681226849556, -0.012710824608802795, 0.03600403293967247, -0.009402762167155743, 0.009530982002615929, 0.07727360725402832, -0.03130264952778816, 0.06694766879081726, -0.04762926325201988, 0.017574617639183998, -0.003994036931544542, -0.024703621864318848, 0.006158809177577496, -0.0445861890912056, -0.03713236376643181, -0.007560675498098135, 0.031576186418533325, -0.027763793244957924, -0.05279223620891571, 0.028686972334980965, -0.05210839956998825, -0.04465457424521446, -0.006445166189223528, -0.01977999322116375, -0.02263501286506653, -0.011548302136361599, -0.0171215757727623, -0.022515341639518738, -0.015129899606108665, 0.02771250531077385, -0.02646450139582157, 0.00273321196436882, -0.08561642467975616, -0.05258708447217941, 0.006680235266685486, -0.00965065322816372, -0.018651660531759262, -0.04431265592575073, -0.05586950480937958, -0.02275468409061432, -0.012685181573033333, 0.022156327962875366, -0.0726919025182724, -0.010120791383087635, 0.03644852712750435, -0.00994128454476595, 0.02578066475689411, -0.0056459312327206135, 0.03487569838762283, 0.033302873373031616, 0.04209018498659134, 0.047800224274396896, -0.006817002780735493, 0.027968943119049072, -0.005624561570584774, -0.015138447284698486, 0.02897760458290577, 0.052484508603811264, -0.023951400071382523, -0.013975923880934715, -0.014745241031050682, -0.05788682401180267, -0.0018217852339148521, -0.004299626685678959, 0.049612391740083694, 0.007287140935659409, -0.04821052774786949, -0.025900335982441902, 0.01736091822385788, -0.027302201837301254, 0.054912131279706955, 0.022019559517502785, -0.021763119846582413, 0.036995597183704376, 0.014223814941942692, 0.0024981428869068623, -0.007953882217407227, 0.061579544097185135, 0.09163419157266617, -0.07077715545892715, -0.010684956796467304, 0.059972528368234634, 0.026481598615646362, -0.03426024690270424, -0.0219853688031435, 0.002284443937242031, 0.04499649256467819, 0.027507353574037552, 0.0068725645542144775, -0.010710600763559341, 0.013762224465608597, 0.034191861748695374, 0.03532019630074501, 0.06270787864923477, 0.022925643250346184, 0.014420418068766594, -0.03220873326063156, -0.029405001550912857, -0.03740589693188667, -0.022019559517502785, 0.008368458598852158, -0.013317730277776718, -0.01632661372423172, -0.01448025368154049, 0.05877581238746643, -0.040654126554727554, -0.0017053191550076008, 0.0036884471774101257, -0.006885386537760496, -0.007552127819508314, -0.04321851581335068, 0.03566211462020874, 0.019147442653775215, 0.04636416584253311, 0.015813736245036125, -0.03648271784186363, 0.05908353999257088, -0.031029116362333298, 0.010214818641543388, 0.004893710371106863, -0.03154199197888374, -0.01081317663192749, -0.010274655185639858, 0.013343374244868755, 0.020566405728459358, -0.055014707148075104, -0.011009779758751392, 0.025165211409330368, -0.025592610239982605, -0.014360582455992699, 0.00664176931604743, -0.04219275712966919, -0.014163979329168797, -0.017001904547214508, -0.0324309803545475, 0.07221321761608124, -0.006825550459325314, -0.02805442363023758, -0.05966480076313019, 0.04308174550533295, 0.013993020169436932, -0.03969675302505493, -0.04229533299803734, -0.0007874813163653016, 0.023164987564086914, -0.005342478398233652, 0.01921582780778408, 0.03884195536375046, 0.04749249666929245, 0.006769988685846329, -0.02562680095434189, -0.02769540809094906, -0.009231803007423878, -0.025045540183782578, 0.02955886535346508, 0.01885681226849556, 0.03757685795426369, 0.04109862074255943, 0.025917431339621544, 0.0299178808927536, 0.036858826875686646 ]
39,884
fpl.fpl
get_h2h_league
Returns a `H2HLeague` object with the given `league_id`. Requires the user to have logged in using ``fpl.login()``. Information is taken from e.g.: https://fantasy.premierleague.com/api/leagues-h2h-matches/league/946125/ :param league_id: A H2H league's ID. :type league_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`H2HLeague` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`H2HLeague` or ``dict``
fixtures = filter(lambda f: not f.finished, fixtures)
(self, league_id, return_json=False)
[ 0.061716314405202866, 0.05207420885562897, -0.08657379448413849, -0.02713124267756939, -0.0365511029958725, -0.022156327962875366, -0.020515117794275284, 0.03280709311366081, 0.06554580479860306, 0.02540455386042595, 0.04643255099654198, 0.020566405728459358, 0.010847368277609348, -0.04588548094034195, -0.01911325193941593, 0.011539753526449203, -0.0522109754383564, 0.05176648125052452, 0.038705188781023026, -0.01919873058795929, -0.003500391962006688, 0.06756312400102615, -0.012779208831489086, 0.04315013065934181, 0.013779320754110813, -0.020617693662643433, -0.007842758670449257, -0.03822650387883186, 0.0293195229023695, 0.03668786957859993, -0.031815528869628906, 0.005816890858113766, 0.014411870390176773, 0.0020461692474782467, -0.005671575199812651, 0.04482553154230118, 0.0030366647988557816, 0.07597432285547256, -0.018138783052563667, 0.022036654874682426, 0.043321091681718826, 0.006222919095307589, -0.05887838825583458, 0.02896050736308098, 0.007295688614249229, -0.015309406444430351, 0.021575065329670906, 0.042261142283678055, 0.013027099892497063, 0.026173871010541916, 0.04291078820824623, 0.06236595660448074, 0.0413721539080143, 0.055254049599170685, 0.023045316338539124, -0.00983016099780798, -0.05539081618189812, 0.01093284785747528, 0.04886017367243767, 0.025455841794610023, 0.002224608091637492, 0.03542276844382286, 0.05026203766465187, -0.005244176834821701, 0.03672206029295921, -0.011009779758751392, 0.0023442795500159264, 0.017113028094172478, -0.04229533299803734, 0.08568480610847473, -0.044791340827941895, 0.05706622079014778, 0.01930130645632744, 0.03552534431219101, -0.015360694378614426, -0.0536128394305706, -0.018343934789299965, 0.014061403460800648, 0.010573833249509335, -0.05867323651909828, 0.03679044544696808, 0.02313079498708248, -0.07946188747882843, 0.037200745195150375, -0.003694858169183135, -0.016249682754278183, 0.06571675837039948, -0.04821052774786949, -0.029234042391180992, -0.03908129781484604, -0.03268742188811302, 0.052963197231292725, -0.0074239084497094154, -0.05351026728749275, 0.014411870390176773, 0.04335528239607811, -0.02323337085545063, 0.028345054015517235, -0.0979938805103302, -0.06041702255606651, 0.01654031313955784, 0.026943188160657883, -0.005291190929710865, 0.03832907974720001, 0.06318656355142593, 0.011727808974683285, -0.03528600186109543, -0.0887620747089386, 0.030208511278033257, 0.014873459935188293, -0.044175885617733, -0.000005008573680242989, -0.048586636781692505, 0.0102917505428195, -0.00016908944235183299, -0.07084553688764572, -0.055014707148075104, -0.026772229000926018, -0.04462037980556488, -0.07836774736642838, 0.07050362229347229, 0.023985592648386955, -0.04451780393719673, 0.004846696741878986, 0.05108264461159706, -0.00039267216925509274, 0.012556961737573147, 0.04851825535297394, 0.06599029898643494, -0.022378575056791306, 0.00738971633836627, -0.011958603747189045, -0.03393542394042015, 0.0030409388709813356, -0.008992459625005722, -0.020070623606443405, 0.025131018832325935, 0.004466312006115913, 0.01701045222580433, -0.014129787683486938, -0.024173647165298462, -0.01207827590405941, 0.004355188459157944, 0.03140522539615631, -0.028686972334980965, -0.01264244131743908, -0.05245031788945198, 0.021814407780766487, -0.05139036849141121, -0.004543243907392025, 0.015933407470583916, -0.04072250798344612, -0.061716314405202866, 0.012249235063791275, -0.01657450571656227, -0.010146435350179672, -0.044107504189014435, 0.014334938488900661, -0.00919761136174202, -0.03682463616132736, -0.0066930572502315044, 0.03850003704428673, -0.01155684981495142, 0.031815528869628906, -0.03142232075333595, 0.025267787277698517, -0.027644122019410133, 0.000042906780436169356, -0.037303321063518524, 0.05600627139210701, 0.00273321196436882, 0.03521762043237686, 0.006287029013037682, 0.03586726263165474, -0.06698185950517654, 0.09047167003154755, 0.02369496040046215, -0.03860261291265488, -0.012659537605941296, -0.011009779758751392, -0.08021411299705505, -0.03771362453699112, 0.0036499814596027136, -0.01609581895172596, 0.044210080057382584, -0.03162747249007225, -0.014505897648632526, 0.014044308103621006, 0.013651100918650627, -0.011984247714281082, -0.02070317231118679, -0.0222930945456028, -0.00379743380472064, 0.002122032456099987, -0.03267032653093338, -0.0002035484358202666, -0.052381932735443115, 0.012839044444262981, 0.0003162747307214886, -0.09033489972352982, -0.07419634610414505, -0.04626158997416496, 0.010881559923291206, -0.05323673039674759, -0.028498917818069458, 0.052723851054906845, -0.038021352142095566, 0.01103542372584343, -0.016044531017541885, 0.014471706002950668, -0.003295240690931678, 0.012018440291285515, -0.044107504189014435, 0.016514670103788376, 0.0322258323431015, -0.024173647165298462, 0.05378380045294762, -0.0018121687462553382, 0.01500167977064848, 0.05477536469697952, -0.037645239382982254, -0.04383396729826927, 0.021301530301570892, 0.005513438023626804, 0.0037183649837970734, 0.046637702733278275, 0.01783105731010437, 0.007923964411020279, -0.018805524334311485, -0.10018216073513031, 0.056997835636138916, -0.01177909690886736, -0.007748730946332216, -0.06010929495096207, 0.006983688101172447, 0.024071071296930313, -0.0009071528911590576, 0.004906532354652882, -0.0020696762949228287, -0.0049791899509727955, 0.020275775343179703, -0.04321851581335068, 0.03436282277107239, -0.009060843847692013, 0.04243210330605507, -0.0013655375223606825, 0.007671799045056105, -0.014634117484092712, -0.00014812021981924772, -0.006765714846551418, 0.03528600186109543, 0.0293195229023695, -0.0017160041024908423, -0.03224292770028114, 0.05453602224588394, -0.07132422924041748, 0.02919985167682171, -0.03966256231069565, 0.03945741057395935, -0.023250466212630272, 0.0181729756295681, -0.05108264461159706, 0.009966928511857986, 0.0722815990447998, -0.040072862058877945, -0.008629171177744865, -0.0014253732515498996, -0.028584398329257965, -0.012257782742381096, 0.017882345244288445, 0.005492067895829678, -0.09231802821159363, 0.012702276930212975, -0.03843165561556816, -0.02150668203830719, 0.03186681494116783, -0.008663362823426723, -0.01829264685511589, -0.010565285570919514, 0.0002788773854263127, 0.018583277240395546, 0.009975476190447807, 0.020412541925907135, 0.0004776175774168223, 0.013317730277776718, -0.033832848072052, -0.028003135696053505, 0.04335528239607811, -0.023831728845834732, -0.015924859791994095, 0.019985143095254898, 0.007680347189307213, 0.019506458193063736, -0.09901963174343109, -0.0004931107978336513, -0.026755133643746376, -0.03945741057395935, -0.05104845017194748, 0.02863568440079689, -0.006671687122434378, -0.008287252858281136, -0.03668786957859993, -0.01930130645632744, -0.0016454834258183837, -0.07364927232265472, 0.04725315421819687, -0.006235741078853607, -0.06246853247284889, 0.03224292770028114, -0.03014012798666954, 0.051458753645420074, -0.013702388852834702, 0.04178245738148689, -0.028003135696053505, 0.03867099806666374, 0.0015311543829739094, -0.009872900322079659, 0.004752669017761946, -0.020976707339286804, 0.03217454254627228, -0.016873683780431747, 0.02070317231118679, 0.008176129311323166, 0.052279356867074966, 0.01954064890742302, -0.017574617639183998, -0.03357641026377678, 0.00886424072086811, -0.04079089313745499, 0.010223367251455784, -0.049407243728637695, -0.03600403293967247, 0.02807151898741722, 0.0121979471296072, -0.05022784695029259, 0.057100411504507065, 0.044791340827941895, 0.0026242255698889494, 0.09231802821159363, -0.03137103468179703, 0.0083342669531703, -0.04889436438679695, 0.04886017367243767, 0.05580111965537071, 0.005201437044888735, 0.021540872752666473, 0.014121239073574543, 0.043321091681718826, 0.10975588113069534, 0.018908100202679634, 0.06978559494018555, 0.0068084546364843845, 0.053988952189683914, 0.07884643971920013, 0.05696364492177963, -0.026139678433537483, -0.03014012798666954, 0.03908129781484604, -0.029832400381565094, 0.05545920133590698, 0.0037375979591161013, 0.02598581649363041, -0.020771557465195656, 0.00983016099780798, 0.05245031788945198, -0.0367562510073185, 0.02566099353134632, -0.027302201837301254, -0.0726919025182724, -0.05781843885779381, -0.030054647475481033, 0.0492020919919014, -0.01795072853565216, -0.029593057930469513, 0.061340201646089554, -0.053988952189683914, 0.030157223343849182, 0.04359462484717369, -0.007334154564887285, 0.10305427759885788, -0.06007510423660278, -0.02990078367292881, -0.0393548347055912, 0.03860261291265488, -0.046193208545446396, 0.019574841484427452, -0.04855244606733322, -0.030892347916960716, 0.028584398329257965, 0.020515117794275284, 0.06069055572152138, -0.064861960709095, -0.05084329843521118, -0.014069952070713043, -0.007684621028602123, -0.014249458909034729, -0.0508091077208519, -0.0409618504345417, -0.00750083988532424, 0.002040826715528965, 0.030071742832660675, 0.032499365508556366, -0.018429413437843323, 0.002076087286695838, 0.009043747559189796, -0.015454721637070179, -0.016035983338952065, -0.015685517340898514, -0.008718924596905708, -0.003177706152200699, 0.03164456784725189, -0.03863680362701416, -0.036038223654031754, -0.052279356867074966, -0.03232840821146965, 0.006547741591930389, 0.03024270199239254, -0.009761776775121689, 0.04492810741066933, 0.018207166343927383, 0.02275468409061432, 0.0012608249671757221, 0.023900112137198448, -0.012454385869204998, -0.013539977371692657, -0.004632997326552868, 0.012018440291285515, 0.009300186298787594, 0.0053595746867358685, 0.036174990236759186, -0.010368682444095612, -0.0445861890912056, -0.054912131279706955, -0.010667861439287663, 0.03771362453699112, 0.009445502422749996, -0.03555953875184059, -0.03562792018055916, -0.02885793149471283, 0.10223367065191269, -0.010351586155593395, 0.05853646993637085, 0.01966032199561596, -0.027627024799585342, -0.014129787683486938, 0.014001567848026752, -0.02263501286506653, 0.021660545840859413, 0.06462261825799942, 0.027302201837301254, -0.04797118529677391, 0.000657124852295965, -0.02037835121154785, -0.03311482071876526, 0.06581933796405792, -0.027678312733769417, 0.0083855539560318, 0.02231018990278244, -0.0457829050719738, -0.0047441208735108376, 0.06236595660448074, 0.05268966034054756, -0.03641433268785477, -0.015565845184028149, 0.033832848072052, -0.03856842219829559, -0.009394214488565922, 0.01596760004758835, 0.01841231808066368, 0.048347294330596924, 0.03679044544696808, -0.013488690368831158, -0.03726913034915924, -0.026738036423921585, 0.04103023558855057, 0.00320762419141829, -0.023968495428562164, 0.008932624012231827, 0.026139678433537483, 0.011659425683319569, 0.01507006399333477, -0.0010017147287726402, -0.027866369113326073, -0.019609034061431885, -0.02102799527347088, -0.0921812653541565, -0.0023079507518559694, -0.024412989616394043, 0.03092654049396515, 0.007034976035356522, 0.011514109559357166, -0.07084553688764572, 0.005504889879375696, -0.03822650387883186, 0.0015974011039361358, -0.05395476147532463, 0.05973318591713905, 0.08219724148511887, 0.054467637091875076, -0.03822650387883186, 0.03241388499736786, 0.03142232075333595, -0.0021359228994697332, 0.016634341329336166, -0.02807151898741722, -0.03376446291804314, 0.015950504690408707, -0.04373139142990112, -0.058023590594530106, -0.02046382986009121, 0.061921462416648865, -0.00044903531670570374, -0.023506905883550644, -0.021335722878575325, 0.027097051963210106, -0.020190294831991196, -0.03130264952778816, 0.006983688101172447, 0.06010929495096207, 0.031097499653697014, -0.004207736346870661, 0.0367562510073185, 0.013420306146144867, 0.010770436376333237, -0.023900112137198448, -0.014933296479284763, -0.01954064890742302, 0.008654815144836903, 0.010616573505103588, 0.0022096491884440184, 0.028704069554805756, -0.054330870509147644, 0.006915304344147444, -0.019147442653775215, -0.02048092521727085, 0.014599925838410854, -0.0063938782550394535, -0.07836774736642838, -0.005859630648046732, 0.02034415863454342, 0.056177232414484024, 0.019643224775791168, 0.03176423907279968, -0.02128443494439125, 0.0019179497612640262, 0.02126733958721161, -0.02735348977148533, 0.032157447189092636, 0.05980156734585762, 0.04909951612353325, -0.03737170621752739, -0.014240911230444908, -0.04164569079875946, -0.05795520916581154, 0.056519150733947754, -0.036653678864240646, 0.0028977603651583195, 0.014728144742548466, -0.006804180797189474, 0.0075393058359622955, 0.022258901968598366, -0.013582717627286911, -0.002438307274132967, 0.029302425682544708, -0.00738971633836627, -0.012505673803389072, 0.07624785602092743, 0.011514109559357166, 0.06858887523412704, 0.009958379901945591, 0.008304349146783352, 0.028088616207242012, -0.04715057834982872, 0.004654367454349995, 0.03369608148932457, 0.000262582820141688, 0.016010340303182602, -0.0246010459959507, -0.003226857166737318, -0.05833131819963455, -0.0029383632354438305, -0.03492698818445206, 0.04742411524057388, -0.07241836935281754, -0.010958491824567318, -0.01769428886473179, 0.014676856808364391, 0.021301530301570892, 0.06000671908259392, 0.0508091077208519, 0.03323449194431305, 0.04957820102572441, -0.02393430471420288, -0.00014932228077668697, 0.0367562510073185, -0.025267787277698517, 0.044346846640110016, -0.02094251662492752, -0.12233848869800568, 0.037645239382982254, 0.046842850744724274, -0.006193001288920641, 0.02528488263487816, 0.014463158324360847, 0.0052057113498449326, -0.05470697954297066, -0.04670608416199684, -0.01885681226849556, -0.012710824608802795, 0.03600403293967247, -0.009402762167155743, 0.009530982002615929, 0.07727360725402832, -0.03130264952778816, 0.06694766879081726, -0.04762926325201988, 0.017574617639183998, -0.003994036931544542, -0.024703621864318848, 0.006158809177577496, -0.0445861890912056, -0.03713236376643181, -0.007560675498098135, 0.031576186418533325, -0.027763793244957924, -0.05279223620891571, 0.028686972334980965, -0.05210839956998825, -0.04465457424521446, -0.006445166189223528, -0.01977999322116375, -0.02263501286506653, -0.011548302136361599, -0.0171215757727623, -0.022515341639518738, -0.015129899606108665, 0.02771250531077385, -0.02646450139582157, 0.00273321196436882, -0.08561642467975616, -0.05258708447217941, 0.006680235266685486, -0.00965065322816372, -0.018651660531759262, -0.04431265592575073, -0.05586950480937958, -0.02275468409061432, -0.012685181573033333, 0.022156327962875366, -0.0726919025182724, -0.010120791383087635, 0.03644852712750435, -0.00994128454476595, 0.02578066475689411, -0.0056459312327206135, 0.03487569838762283, 0.033302873373031616, 0.04209018498659134, 0.047800224274396896, -0.006817002780735493, 0.027968943119049072, -0.005624561570584774, -0.015138447284698486, 0.02897760458290577, 0.052484508603811264, -0.023951400071382523, -0.013975923880934715, -0.014745241031050682, -0.05788682401180267, -0.0018217852339148521, -0.004299626685678959, 0.049612391740083694, 0.007287140935659409, -0.04821052774786949, -0.025900335982441902, 0.01736091822385788, -0.027302201837301254, 0.054912131279706955, 0.022019559517502785, -0.021763119846582413, 0.036995597183704376, 0.014223814941942692, 0.0024981428869068623, -0.007953882217407227, 0.061579544097185135, 0.09163419157266617, -0.07077715545892715, -0.010684956796467304, 0.059972528368234634, 0.026481598615646362, -0.03426024690270424, -0.0219853688031435, 0.002284443937242031, 0.04499649256467819, 0.027507353574037552, 0.0068725645542144775, -0.010710600763559341, 0.013762224465608597, 0.034191861748695374, 0.03532019630074501, 0.06270787864923477, 0.022925643250346184, 0.014420418068766594, -0.03220873326063156, -0.029405001550912857, -0.03740589693188667, -0.022019559517502785, 0.008368458598852158, -0.013317730277776718, -0.01632661372423172, -0.01448025368154049, 0.05877581238746643, -0.040654126554727554, -0.0017053191550076008, 0.0036884471774101257, -0.006885386537760496, -0.007552127819508314, -0.04321851581335068, 0.03566211462020874, 0.019147442653775215, 0.04636416584253311, 0.015813736245036125, -0.03648271784186363, 0.05908353999257088, -0.031029116362333298, 0.010214818641543388, 0.004893710371106863, -0.03154199197888374, -0.01081317663192749, -0.010274655185639858, 0.013343374244868755, 0.020566405728459358, -0.055014707148075104, -0.011009779758751392, 0.025165211409330368, -0.025592610239982605, -0.014360582455992699, 0.00664176931604743, -0.04219275712966919, -0.014163979329168797, -0.017001904547214508, -0.0324309803545475, 0.07221321761608124, -0.006825550459325314, -0.02805442363023758, -0.05966480076313019, 0.04308174550533295, 0.013993020169436932, -0.03969675302505493, -0.04229533299803734, -0.0007874813163653016, 0.023164987564086914, -0.005342478398233652, 0.01921582780778408, 0.03884195536375046, 0.04749249666929245, 0.006769988685846329, -0.02562680095434189, -0.02769540809094906, -0.009231803007423878, -0.025045540183782578, 0.02955886535346508, 0.01885681226849556, 0.03757685795426369, 0.04109862074255943, 0.025917431339621544, 0.0299178808927536, 0.036858826875686646 ]
39,885
fpl.fpl
get_player
Returns the player with the given ``player_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/bootstrap-static/ https://fantasy.premierleague.com/api/element-summary/1/ (optional) :param player_id: A player's ID. :type player_id: string or int :param list players: (optional) A list of players. :param bool include_summary: (optional) Includes a player's summary if ``True``. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Player` object. Defaults to ``False``. :rtype: :class:`Player` or ``dict`` :raises ValueError: Player with ``player_id`` not found
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, player_id, players=None, include_summary=False, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,886
fpl.fpl
get_player_summaries
Returns a list of summaries of players whose ID are in the ``player_ids`` list. Information is taken from e.g.: https://fantasy.premierleague.com/api/element-summary/1/ :param list player_ids: A list of player IDs. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`PlayerSummary` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, player_ids, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,887
fpl.fpl
get_player_summary
Returns a summary of the player with the given ``player_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/element-summary/1/ :param int player_id: A player's ID. :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`PlayerSummary` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`PlayerSummary` or ``dict``
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, player_id, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,888
fpl.fpl
get_players
Returns either a list of *all* players, or a list of players whose IDs are in the given ``player_ids`` list. Information is taken from e.g.: https://fantasy.premierleague.com/api/bootstrap-static/ https://fantasy.premierleague.com/api/element-summary/1/ (optional) :param list player_ids: (optional) A list of player IDs :param boolean include_summary: (optional) Includes a player's summary if ``True``. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Player` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, player_ids=None, include_summary=False, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,889
fpl.fpl
get_points_against
Returns a dictionary containing the points scored against all teams in the Premier League, split by position and location. An example: .. code-block:: javascript { "Man City": { "all": { "H": [3, ..., 1], "A": [2, ..., 2] }, "goalkeeper": { "H": [3, ..., 3], "A": [2, ..., 3] }, "defender": { "H": [1, ..., 2], "A": [4, ..., 1] }, "midfielder": { "H": [2, ..., 1], "A": [2, ..., 2] }, "forward": { "H": [1, ..., 2], "A": [6, ..., 1] } }, ... } :rtype: dict
fixtures = filter(lambda f: not f.finished, fixtures)
(self)
[ 0.061716314405202866, 0.05207420885562897, -0.08657379448413849, -0.02713124267756939, -0.0365511029958725, -0.022156327962875366, -0.020515117794275284, 0.03280709311366081, 0.06554580479860306, 0.02540455386042595, 0.04643255099654198, 0.020566405728459358, 0.010847368277609348, -0.04588548094034195, -0.01911325193941593, 0.011539753526449203, -0.0522109754383564, 0.05176648125052452, 0.038705188781023026, -0.01919873058795929, -0.003500391962006688, 0.06756312400102615, -0.012779208831489086, 0.04315013065934181, 0.013779320754110813, -0.020617693662643433, -0.007842758670449257, -0.03822650387883186, 0.0293195229023695, 0.03668786957859993, -0.031815528869628906, 0.005816890858113766, 0.014411870390176773, 0.0020461692474782467, -0.005671575199812651, 0.04482553154230118, 0.0030366647988557816, 0.07597432285547256, -0.018138783052563667, 0.022036654874682426, 0.043321091681718826, 0.006222919095307589, -0.05887838825583458, 0.02896050736308098, 0.007295688614249229, -0.015309406444430351, 0.021575065329670906, 0.042261142283678055, 0.013027099892497063, 0.026173871010541916, 0.04291078820824623, 0.06236595660448074, 0.0413721539080143, 0.055254049599170685, 0.023045316338539124, -0.00983016099780798, -0.05539081618189812, 0.01093284785747528, 0.04886017367243767, 0.025455841794610023, 0.002224608091637492, 0.03542276844382286, 0.05026203766465187, -0.005244176834821701, 0.03672206029295921, -0.011009779758751392, 0.0023442795500159264, 0.017113028094172478, -0.04229533299803734, 0.08568480610847473, -0.044791340827941895, 0.05706622079014778, 0.01930130645632744, 0.03552534431219101, -0.015360694378614426, -0.0536128394305706, -0.018343934789299965, 0.014061403460800648, 0.010573833249509335, -0.05867323651909828, 0.03679044544696808, 0.02313079498708248, -0.07946188747882843, 0.037200745195150375, -0.003694858169183135, -0.016249682754278183, 0.06571675837039948, -0.04821052774786949, -0.029234042391180992, -0.03908129781484604, -0.03268742188811302, 0.052963197231292725, -0.0074239084497094154, -0.05351026728749275, 0.014411870390176773, 0.04335528239607811, -0.02323337085545063, 0.028345054015517235, -0.0979938805103302, -0.06041702255606651, 0.01654031313955784, 0.026943188160657883, -0.005291190929710865, 0.03832907974720001, 0.06318656355142593, 0.011727808974683285, -0.03528600186109543, -0.0887620747089386, 0.030208511278033257, 0.014873459935188293, -0.044175885617733, -0.000005008573680242989, -0.048586636781692505, 0.0102917505428195, -0.00016908944235183299, -0.07084553688764572, -0.055014707148075104, -0.026772229000926018, -0.04462037980556488, -0.07836774736642838, 0.07050362229347229, 0.023985592648386955, -0.04451780393719673, 0.004846696741878986, 0.05108264461159706, -0.00039267216925509274, 0.012556961737573147, 0.04851825535297394, 0.06599029898643494, -0.022378575056791306, 0.00738971633836627, -0.011958603747189045, -0.03393542394042015, 0.0030409388709813356, -0.008992459625005722, -0.020070623606443405, 0.025131018832325935, 0.004466312006115913, 0.01701045222580433, -0.014129787683486938, -0.024173647165298462, -0.01207827590405941, 0.004355188459157944, 0.03140522539615631, -0.028686972334980965, -0.01264244131743908, -0.05245031788945198, 0.021814407780766487, -0.05139036849141121, -0.004543243907392025, 0.015933407470583916, -0.04072250798344612, -0.061716314405202866, 0.012249235063791275, -0.01657450571656227, -0.010146435350179672, -0.044107504189014435, 0.014334938488900661, -0.00919761136174202, -0.03682463616132736, -0.0066930572502315044, 0.03850003704428673, -0.01155684981495142, 0.031815528869628906, -0.03142232075333595, 0.025267787277698517, -0.027644122019410133, 0.000042906780436169356, -0.037303321063518524, 0.05600627139210701, 0.00273321196436882, 0.03521762043237686, 0.006287029013037682, 0.03586726263165474, -0.06698185950517654, 0.09047167003154755, 0.02369496040046215, -0.03860261291265488, -0.012659537605941296, -0.011009779758751392, -0.08021411299705505, -0.03771362453699112, 0.0036499814596027136, -0.01609581895172596, 0.044210080057382584, -0.03162747249007225, -0.014505897648632526, 0.014044308103621006, 0.013651100918650627, -0.011984247714281082, -0.02070317231118679, -0.0222930945456028, -0.00379743380472064, 0.002122032456099987, -0.03267032653093338, -0.0002035484358202666, -0.052381932735443115, 0.012839044444262981, 0.0003162747307214886, -0.09033489972352982, -0.07419634610414505, -0.04626158997416496, 0.010881559923291206, -0.05323673039674759, -0.028498917818069458, 0.052723851054906845, -0.038021352142095566, 0.01103542372584343, -0.016044531017541885, 0.014471706002950668, -0.003295240690931678, 0.012018440291285515, -0.044107504189014435, 0.016514670103788376, 0.0322258323431015, -0.024173647165298462, 0.05378380045294762, -0.0018121687462553382, 0.01500167977064848, 0.05477536469697952, -0.037645239382982254, -0.04383396729826927, 0.021301530301570892, 0.005513438023626804, 0.0037183649837970734, 0.046637702733278275, 0.01783105731010437, 0.007923964411020279, -0.018805524334311485, -0.10018216073513031, 0.056997835636138916, -0.01177909690886736, -0.007748730946332216, -0.06010929495096207, 0.006983688101172447, 0.024071071296930313, -0.0009071528911590576, 0.004906532354652882, -0.0020696762949228287, -0.0049791899509727955, 0.020275775343179703, -0.04321851581335068, 0.03436282277107239, -0.009060843847692013, 0.04243210330605507, -0.0013655375223606825, 0.007671799045056105, -0.014634117484092712, -0.00014812021981924772, -0.006765714846551418, 0.03528600186109543, 0.0293195229023695, -0.0017160041024908423, -0.03224292770028114, 0.05453602224588394, -0.07132422924041748, 0.02919985167682171, -0.03966256231069565, 0.03945741057395935, -0.023250466212630272, 0.0181729756295681, -0.05108264461159706, 0.009966928511857986, 0.0722815990447998, -0.040072862058877945, -0.008629171177744865, -0.0014253732515498996, -0.028584398329257965, -0.012257782742381096, 0.017882345244288445, 0.005492067895829678, -0.09231802821159363, 0.012702276930212975, -0.03843165561556816, -0.02150668203830719, 0.03186681494116783, -0.008663362823426723, -0.01829264685511589, -0.010565285570919514, 0.0002788773854263127, 0.018583277240395546, 0.009975476190447807, 0.020412541925907135, 0.0004776175774168223, 0.013317730277776718, -0.033832848072052, -0.028003135696053505, 0.04335528239607811, -0.023831728845834732, -0.015924859791994095, 0.019985143095254898, 0.007680347189307213, 0.019506458193063736, -0.09901963174343109, -0.0004931107978336513, -0.026755133643746376, -0.03945741057395935, -0.05104845017194748, 0.02863568440079689, -0.006671687122434378, -0.008287252858281136, -0.03668786957859993, -0.01930130645632744, -0.0016454834258183837, -0.07364927232265472, 0.04725315421819687, -0.006235741078853607, -0.06246853247284889, 0.03224292770028114, -0.03014012798666954, 0.051458753645420074, -0.013702388852834702, 0.04178245738148689, -0.028003135696053505, 0.03867099806666374, 0.0015311543829739094, -0.009872900322079659, 0.004752669017761946, -0.020976707339286804, 0.03217454254627228, -0.016873683780431747, 0.02070317231118679, 0.008176129311323166, 0.052279356867074966, 0.01954064890742302, -0.017574617639183998, -0.03357641026377678, 0.00886424072086811, -0.04079089313745499, 0.010223367251455784, -0.049407243728637695, -0.03600403293967247, 0.02807151898741722, 0.0121979471296072, -0.05022784695029259, 0.057100411504507065, 0.044791340827941895, 0.0026242255698889494, 0.09231802821159363, -0.03137103468179703, 0.0083342669531703, -0.04889436438679695, 0.04886017367243767, 0.05580111965537071, 0.005201437044888735, 0.021540872752666473, 0.014121239073574543, 0.043321091681718826, 0.10975588113069534, 0.018908100202679634, 0.06978559494018555, 0.0068084546364843845, 0.053988952189683914, 0.07884643971920013, 0.05696364492177963, -0.026139678433537483, -0.03014012798666954, 0.03908129781484604, -0.029832400381565094, 0.05545920133590698, 0.0037375979591161013, 0.02598581649363041, -0.020771557465195656, 0.00983016099780798, 0.05245031788945198, -0.0367562510073185, 0.02566099353134632, -0.027302201837301254, -0.0726919025182724, -0.05781843885779381, -0.030054647475481033, 0.0492020919919014, -0.01795072853565216, -0.029593057930469513, 0.061340201646089554, -0.053988952189683914, 0.030157223343849182, 0.04359462484717369, -0.007334154564887285, 0.10305427759885788, -0.06007510423660278, -0.02990078367292881, -0.0393548347055912, 0.03860261291265488, -0.046193208545446396, 0.019574841484427452, -0.04855244606733322, -0.030892347916960716, 0.028584398329257965, 0.020515117794275284, 0.06069055572152138, -0.064861960709095, -0.05084329843521118, -0.014069952070713043, -0.007684621028602123, -0.014249458909034729, -0.0508091077208519, -0.0409618504345417, -0.00750083988532424, 0.002040826715528965, 0.030071742832660675, 0.032499365508556366, -0.018429413437843323, 0.002076087286695838, 0.009043747559189796, -0.015454721637070179, -0.016035983338952065, -0.015685517340898514, -0.008718924596905708, -0.003177706152200699, 0.03164456784725189, -0.03863680362701416, -0.036038223654031754, -0.052279356867074966, -0.03232840821146965, 0.006547741591930389, 0.03024270199239254, -0.009761776775121689, 0.04492810741066933, 0.018207166343927383, 0.02275468409061432, 0.0012608249671757221, 0.023900112137198448, -0.012454385869204998, -0.013539977371692657, -0.004632997326552868, 0.012018440291285515, 0.009300186298787594, 0.0053595746867358685, 0.036174990236759186, -0.010368682444095612, -0.0445861890912056, -0.054912131279706955, -0.010667861439287663, 0.03771362453699112, 0.009445502422749996, -0.03555953875184059, -0.03562792018055916, -0.02885793149471283, 0.10223367065191269, -0.010351586155593395, 0.05853646993637085, 0.01966032199561596, -0.027627024799585342, -0.014129787683486938, 0.014001567848026752, -0.02263501286506653, 0.021660545840859413, 0.06462261825799942, 0.027302201837301254, -0.04797118529677391, 0.000657124852295965, -0.02037835121154785, -0.03311482071876526, 0.06581933796405792, -0.027678312733769417, 0.0083855539560318, 0.02231018990278244, -0.0457829050719738, -0.0047441208735108376, 0.06236595660448074, 0.05268966034054756, -0.03641433268785477, -0.015565845184028149, 0.033832848072052, -0.03856842219829559, -0.009394214488565922, 0.01596760004758835, 0.01841231808066368, 0.048347294330596924, 0.03679044544696808, -0.013488690368831158, -0.03726913034915924, -0.026738036423921585, 0.04103023558855057, 0.00320762419141829, -0.023968495428562164, 0.008932624012231827, 0.026139678433537483, 0.011659425683319569, 0.01507006399333477, -0.0010017147287726402, -0.027866369113326073, -0.019609034061431885, -0.02102799527347088, -0.0921812653541565, -0.0023079507518559694, -0.024412989616394043, 0.03092654049396515, 0.007034976035356522, 0.011514109559357166, -0.07084553688764572, 0.005504889879375696, -0.03822650387883186, 0.0015974011039361358, -0.05395476147532463, 0.05973318591713905, 0.08219724148511887, 0.054467637091875076, -0.03822650387883186, 0.03241388499736786, 0.03142232075333595, -0.0021359228994697332, 0.016634341329336166, -0.02807151898741722, -0.03376446291804314, 0.015950504690408707, -0.04373139142990112, -0.058023590594530106, -0.02046382986009121, 0.061921462416648865, -0.00044903531670570374, -0.023506905883550644, -0.021335722878575325, 0.027097051963210106, -0.020190294831991196, -0.03130264952778816, 0.006983688101172447, 0.06010929495096207, 0.031097499653697014, -0.004207736346870661, 0.0367562510073185, 0.013420306146144867, 0.010770436376333237, -0.023900112137198448, -0.014933296479284763, -0.01954064890742302, 0.008654815144836903, 0.010616573505103588, 0.0022096491884440184, 0.028704069554805756, -0.054330870509147644, 0.006915304344147444, -0.019147442653775215, -0.02048092521727085, 0.014599925838410854, -0.0063938782550394535, -0.07836774736642838, -0.005859630648046732, 0.02034415863454342, 0.056177232414484024, 0.019643224775791168, 0.03176423907279968, -0.02128443494439125, 0.0019179497612640262, 0.02126733958721161, -0.02735348977148533, 0.032157447189092636, 0.05980156734585762, 0.04909951612353325, -0.03737170621752739, -0.014240911230444908, -0.04164569079875946, -0.05795520916581154, 0.056519150733947754, -0.036653678864240646, 0.0028977603651583195, 0.014728144742548466, -0.006804180797189474, 0.0075393058359622955, 0.022258901968598366, -0.013582717627286911, -0.002438307274132967, 0.029302425682544708, -0.00738971633836627, -0.012505673803389072, 0.07624785602092743, 0.011514109559357166, 0.06858887523412704, 0.009958379901945591, 0.008304349146783352, 0.028088616207242012, -0.04715057834982872, 0.004654367454349995, 0.03369608148932457, 0.000262582820141688, 0.016010340303182602, -0.0246010459959507, -0.003226857166737318, -0.05833131819963455, -0.0029383632354438305, -0.03492698818445206, 0.04742411524057388, -0.07241836935281754, -0.010958491824567318, -0.01769428886473179, 0.014676856808364391, 0.021301530301570892, 0.06000671908259392, 0.0508091077208519, 0.03323449194431305, 0.04957820102572441, -0.02393430471420288, -0.00014932228077668697, 0.0367562510073185, -0.025267787277698517, 0.044346846640110016, -0.02094251662492752, -0.12233848869800568, 0.037645239382982254, 0.046842850744724274, -0.006193001288920641, 0.02528488263487816, 0.014463158324360847, 0.0052057113498449326, -0.05470697954297066, -0.04670608416199684, -0.01885681226849556, -0.012710824608802795, 0.03600403293967247, -0.009402762167155743, 0.009530982002615929, 0.07727360725402832, -0.03130264952778816, 0.06694766879081726, -0.04762926325201988, 0.017574617639183998, -0.003994036931544542, -0.024703621864318848, 0.006158809177577496, -0.0445861890912056, -0.03713236376643181, -0.007560675498098135, 0.031576186418533325, -0.027763793244957924, -0.05279223620891571, 0.028686972334980965, -0.05210839956998825, -0.04465457424521446, -0.006445166189223528, -0.01977999322116375, -0.02263501286506653, -0.011548302136361599, -0.0171215757727623, -0.022515341639518738, -0.015129899606108665, 0.02771250531077385, -0.02646450139582157, 0.00273321196436882, -0.08561642467975616, -0.05258708447217941, 0.006680235266685486, -0.00965065322816372, -0.018651660531759262, -0.04431265592575073, -0.05586950480937958, -0.02275468409061432, -0.012685181573033333, 0.022156327962875366, -0.0726919025182724, -0.010120791383087635, 0.03644852712750435, -0.00994128454476595, 0.02578066475689411, -0.0056459312327206135, 0.03487569838762283, 0.033302873373031616, 0.04209018498659134, 0.047800224274396896, -0.006817002780735493, 0.027968943119049072, -0.005624561570584774, -0.015138447284698486, 0.02897760458290577, 0.052484508603811264, -0.023951400071382523, -0.013975923880934715, -0.014745241031050682, -0.05788682401180267, -0.0018217852339148521, -0.004299626685678959, 0.049612391740083694, 0.007287140935659409, -0.04821052774786949, -0.025900335982441902, 0.01736091822385788, -0.027302201837301254, 0.054912131279706955, 0.022019559517502785, -0.021763119846582413, 0.036995597183704376, 0.014223814941942692, 0.0024981428869068623, -0.007953882217407227, 0.061579544097185135, 0.09163419157266617, -0.07077715545892715, -0.010684956796467304, 0.059972528368234634, 0.026481598615646362, -0.03426024690270424, -0.0219853688031435, 0.002284443937242031, 0.04499649256467819, 0.027507353574037552, 0.0068725645542144775, -0.010710600763559341, 0.013762224465608597, 0.034191861748695374, 0.03532019630074501, 0.06270787864923477, 0.022925643250346184, 0.014420418068766594, -0.03220873326063156, -0.029405001550912857, -0.03740589693188667, -0.022019559517502785, 0.008368458598852158, -0.013317730277776718, -0.01632661372423172, -0.01448025368154049, 0.05877581238746643, -0.040654126554727554, -0.0017053191550076008, 0.0036884471774101257, -0.006885386537760496, -0.007552127819508314, -0.04321851581335068, 0.03566211462020874, 0.019147442653775215, 0.04636416584253311, 0.015813736245036125, -0.03648271784186363, 0.05908353999257088, -0.031029116362333298, 0.010214818641543388, 0.004893710371106863, -0.03154199197888374, -0.01081317663192749, -0.010274655185639858, 0.013343374244868755, 0.020566405728459358, -0.055014707148075104, -0.011009779758751392, 0.025165211409330368, -0.025592610239982605, -0.014360582455992699, 0.00664176931604743, -0.04219275712966919, -0.014163979329168797, -0.017001904547214508, -0.0324309803545475, 0.07221321761608124, -0.006825550459325314, -0.02805442363023758, -0.05966480076313019, 0.04308174550533295, 0.013993020169436932, -0.03969675302505493, -0.04229533299803734, -0.0007874813163653016, 0.023164987564086914, -0.005342478398233652, 0.01921582780778408, 0.03884195536375046, 0.04749249666929245, 0.006769988685846329, -0.02562680095434189, -0.02769540809094906, -0.009231803007423878, -0.025045540183782578, 0.02955886535346508, 0.01885681226849556, 0.03757685795426369, 0.04109862074255943, 0.025917431339621544, 0.0299178808927536, 0.036858826875686646 ]
39,890
fpl.fpl
get_team
Returns the team with the given ``team_id``. Information is taken from: https://fantasy.premierleague.com/api/bootstrap-static/ :param team_id: A team's ID. :type team_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`Team` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`Team` or ``dict`` For reference here is the mapping from team ID to team name: .. code-block:: none 1 - Arsenal 2 - Aston Villa 3 - Brentford 4 - Brighton 5 - Burnley 6 - Chelsea 7 - Crystal Palace 8 - Everton 9 - Leicester 10 - Leeds 11 - Liverpool 12 - Man City 13 - Man Utd 14 - Newcastle 15 - Norwich 16 - Southampton 17 - Spurs 18 - Watford 19 - West Ham 20 - Wolves
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, team_id, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,891
fpl.fpl
get_teams
Returns either a list of *all* teams, or a list of teams with IDs in the optional ``team_ids`` list. Information is taken from: https://fantasy.premierleague.com/api/bootstrap-static/ :param list team_ids: (optional) List containing the IDs of teams. If not set a list of *all* teams will be returned. :param return_json: (optional) Boolean. If ``True`` returns a list of ``dict``s, if ``False`` returns a list of :class:`Team` objects. Defaults to ``False``. :type return_json: bool :rtype: list
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, team_ids=None, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,892
fpl.fpl
get_user
Returns the user with the given ``user_id``. Information is taken from e.g.: https://fantasy.premierleague.com/api/entry/91928/ :param user_id: A user's ID. :type user_id: string or int :param return_json: (optional) Boolean. If ``True`` returns a ``dict``, if ``False`` returns a :class:`User` object. Defaults to ``False``. :type return_json: bool :rtype: :class:`User` or `dict`
def __init__(self, session): self.session = session resp = urlopen(API_URLS["static"], context=ssl_context) static = json.loads(resp.read().decode("utf-8")) for k, v in static.items(): try: v = {w["id"]: w for w in v} except (KeyError, TypeError): pass setattr(self, k, v) try: setattr(self, "current_gameweek", next(event for event in static["events"] if event["is_current"])["id"]) except StopIteration: setattr(self, "current_gameweek", 0)
(self, user_id=None, return_json=False)
[ 0.03481088578701019, -0.0672210231423378, -0.10205096006393433, 0.004227512516081333, -0.04614776372909546, -0.00909331999719143, -0.01807231828570366, 0.0336105115711689, 0.007840546779334545, 0.07484245300292969, -0.0005674393614754081, 0.03711636736989021, 0.04268001392483711, 0.015023745596408844, -0.00963634718209505, 0.045766692608594894, 0.02130189910531044, 0.07148902118206024, -0.029304401949048042, -0.07819588482379913, -0.015195228159427643, 0.00141710985917598, -0.03993630036711693, 0.0894756019115448, 0.017024371773004532, 0.058075305074453354, -0.026198668405413628, 0.04031737148761749, 0.04801501706242561, -0.05605562403798103, 0.025646114721894264, 0.014785576611757278, 0.028618473559617996, -0.00187558657489717, -0.030485723167657852, -0.05647480487823486, -0.0615430548787117, -0.044356729835271835, -0.16447047889232635, 0.03683056682348251, 0.04687179997563362, 0.01775793358683586, -0.045957230031490326, -0.013175548985600471, 0.013604254461824894, 0.03726879879832268, 0.010184137150645256, 0.017738880589604378, 0.02355022169649601, -0.062038447707891464, -0.048967693001031876, 0.05460755154490471, 0.023359686136245728, 0.003170039039105177, -0.029895063489675522, 0.06649698317050934, -0.06379137933254242, 0.03100017085671425, -0.04599533602595329, 0.011784637346863747, -0.04889148101210594, -0.0073308637365698814, 0.019482282921671867, 0.029494937509298325, 0.04149869084358215, -0.03223865479230881, -0.06310544908046722, 0.007888181135058403, 0.022025935351848602, 0.017386389896273613, 0.06527755409479141, 0.07423273473978043, -0.0017827003030106425, 0.009993601590394974, -0.01257536094635725, -0.0043275440111756325, -0.06318166106939316, -0.055064838379621506, -0.0254365261644125, 0.004079847130924463, 0.034467920660972595, 0.015585826709866524, -0.030981117859482765, 0.01705295220017433, 0.04161301255226135, -0.023454954847693443, 0.028923330828547478, -0.04633830115199089, -0.05277841165661812, 0.04283244162797928, -0.022826185449957848, 0.04515697807073593, -0.0453094057738781, -0.010336565785109997, -0.010546155273914337, 0.02318820357322693, 0.004275146406143904, -0.0008240672177635133, -0.01506185345351696, -0.043404050171375275, 0.005573171656578779, -0.055179160088300705, -0.077776700258255, 0.005749417003244162, 0.014366397634148598, -0.05906609073281288, 0.01103202160447836, -0.06417244672775269, -0.012346718460321426, 0.031857579946517944, 0.010812905617058277, -0.002472201595082879, -0.03427738696336746, 0.08055852353572845, 0.01933938078582287, -0.007916761562228203, -0.018843987956643105, 0.0015993096167221665, 0.03235297650098801, -0.014118701219558716, 0.005601751618087292, -0.009059975855052471, -0.014918951317667961, 0.09206688404083252, 0.053883519023656845, -0.017881782725453377, 0.0018815407529473305, -0.02419804409146309, 0.08444545418024063, -0.012041861191391945, 0.0498441606760025, -0.01860581897199154, 0.01778651401400566, -0.019548971205949783, -0.0035701640881597996, -0.055064838379621506, 0.0029985567089170218, 0.01680525578558445, -0.046185873448848724, -0.004499026108533144, -0.00895041786134243, 0.028923330828547478, -0.006230520084500313, -0.007954868488013744, -0.01694815792143345, 0.011251137591898441, -0.061161983758211136, 0.04229894280433655, -0.023150097578763962, -0.05418837442994118, 0.07057444751262665, -0.05011091008782387, 0.013832896947860718, 0.046528834849596024, -0.0394027978181839, -0.06215276941657066, -0.009283855557441711, 0.011632208712399006, 0.0112130306661129, 0.001495705801062286, 0.015833523124456406, -0.02450290136039257, -0.02863752655684948, -0.03627801313996315, -0.05491241067647934, -0.003017610404640436, 0.011232083663344383, -0.07286088168621063, 0.011584575287997723, 0.03254351019859314, 0.022635649889707565, -0.04214651510119438, 0.0015147593803703785, 0.026141507551074028, -0.018729666247963905, 0.010412780568003654, 0.02023489959537983, -0.03599220886826515, 0.05906609073281288, 0.027494313195347786, -0.035363439470529556, -0.015052326023578644, -0.040088728070259094, -0.027951598167419434, -0.004837227053940296, 0.0193012747913599, -0.006016166880726814, 0.057960983365774155, 0.03845011815428734, 0.05415026843547821, 0.0032486349809914827, 0.03164799138903618, -0.01834859512746334, -0.018510550260543823, -0.016252702102065086, 0.03277215361595154, -0.01790083572268486, -0.005373108666390181, -0.054645661264657974, 0.01815805956721306, -0.0554078035056591, 0.013089807704091072, -0.007854836992919445, -0.04454726353287697, -0.03745933249592781, 0.013909111730754375, -0.01437592413276434, 0.015728728845715523, -0.020501649007201195, -0.026293937116861343, -0.05757991224527359, 0.013489932753145695, -0.006482979748398066, 0.011918012984097004, 0.01607169210910797, -0.0562080554664135, 0.003698775777593255, -0.008569346740841866, 0.008550292812287807, -0.01601453125476837, 0.023302525281906128, -0.04477590695023537, -0.05232112482190132, -0.09976453334093094, -0.026293937116861343, -0.018396228551864624, -0.020273005589842796, -0.042108405381441116, -0.08452167361974716, -0.0020149159245193005, 0.02118757739663124, 0.002560324501246214, 0.05045387148857117, -0.0061400155536830425, 0.008288306184113026, 0.008464551530778408, 0.026198668405413628, 0.01133687887340784, -0.03595409914851189, -0.027970651164650917, 0.0443948358297348, -0.05274030193686485, 0.007168908603489399, 0.03433454781770706, -0.022121204063296318, 0.07385166734457016, -0.010022182017564774, 0.04386133700609207, -0.04130815714597702, -0.0391741544008255, 0.021968774497509003, -0.011384512297809124, -0.005959006492048502, -0.005525537300854921, -0.004308490082621574, -0.06516323238611221, -0.009574422612786293, 0.044051870703697205, 0.018710613250732422, -0.010717636905610561, 0.01073669083416462, 0.015233335085213184, -0.03507763519883156, 0.05681777000427246, -0.0392884761095047, 0.010898645967245102, -0.0035487287677824497, 0.05556023120880127, -0.06379137933254242, -0.003212909447029233, 0.010689057409763336, -0.026998918503522873, 0.03898362070322037, -0.024064667522907257, 0.017405442893505096, -0.04130815714597702, -0.029742633923888206, -0.009445810690522194, -0.04900580272078514, -0.06196223571896553, 0.06683994829654694, -0.010660476982593536, 0.03561113774776459, 0.04378512129187584, 0.010841486044228077, -0.058494482189416885, 0.0015647750115022063, 0.08863724023103714, -0.007988212630152702, -0.05674155429005623, 0.008416918106377125, -0.01576683484017849, 0.026713116094470024, 0.019044050946831703, 0.00137543014716357, 0.03909794241189957, -0.043175406754016876, 0.06924070417881012, 0.056665338575839996, 0.0003911937528755516, 0.020615970715880394, -0.0037726082373410463, 0.03391536697745323, 0.023169150575995445, -0.07331816852092743, 0.015947844833135605, 0.01657661236822605, 0.030085599049925804, 0.031095437705516815, -0.02776106260716915, 0.016929103061556816, 0.0067163859494030476, 0.051216017454862595, 0.01896783709526062, -0.042527586221694946, -0.058075305074453354, -0.023874131962656975, -0.02076840028166771, 0.026255829259753227, 0.061504948884248734, 0.009402940981090069, 0.01059378869831562, 0.022407006472349167, 0.013499459251761436, 0.10022182017564774, -0.050034694373607635, 0.07038391381502151, -0.03273404762148857, 0.0015683475648984313, 0.028789956122636795, -0.04690990969538689, -0.024236150085926056, -0.007769096177071333, 0.039669547230005264, 0.009212404489517212, 0.03526817262172699, -0.06581106036901474, -0.012670628726482391, 0.013232709839940071, -0.09252417087554932, -0.021435273811221123, -0.028123080730438232, -0.013632834888994694, 0.05845637619495392, 0.020368274301290512, -0.05327380448579788, 0.01958707720041275, -0.03637327998876572, -0.02490302547812462, -0.06283869594335556, -0.010041235014796257, -0.02189256064593792, 0.07804345339536667, 0.05094926804304123, 0.06783073395490646, -0.04332783445715904, 0.021644864231348038, -0.08398816734552383, 0.01239435188472271, -0.006039984058588743, 0.03603031486272812, 0.05921851843595505, -0.044585373252630234, 0.012213342823088169, 0.004456155467778444, -0.005011091008782387, 0.0026936994399875402, -0.03850727900862694, 0.040622226893901825, -0.03029518760740757, -0.037021100521087646, -0.003096206346526742, -0.015900209546089172, 0.0050539616495370865, 0.057656124234199524, -0.006659225560724735, 0.0334390290081501, 0.04999658837914467, -0.03136218711733818, -0.03683056682348251, 0.003684485564008355, 0.04321351274847984, -0.0016862415941432118, 0.04153680056333542, 0.08429303020238876, -0.023302525281906128, 0.0036963941529393196, -0.030790580436587334, 0.04504265636205673, 0.028313616290688515, -0.008288306184113026, 0.009974547661840916, 0.020692184567451477, 0.027551474049687386, 0.0013266053283587098, -0.03557302802801132, 0.019663292914628983, 0.02200688235461712, 0.0558650903403759, 0.01671951450407505, 0.042870547622442245, -0.02433141879737377, 0.0021816345397382975, 0.018415283411741257, 0.0224260613322258, -0.041689228266477585, 0.04969172924757004, -0.01787225529551506, -0.02627488411962986, 0.009793538600206375, -0.007902471348643303, -0.028542259708046913, -0.06059037521481514, -0.045766692608594894, -0.011975173838436604, -0.012003754265606403, 0.015871630981564522, 0.04321351274847984, 0.024579115211963654, 0.008983762003481388, 0.018558183684945107, 0.022178364917635918, 0.058494482189416885, -0.00011089777399320155, -0.04824365675449371, -0.002905670553445816, 0.051978159695863724, -0.028427937999367714, -0.03679245710372925, 0.023683596402406693, 0.018653452396392822, 0.015757309272885323, -0.022044988349080086, -0.04294676333665848, 0.06440109014511108, 0.002958067925646901, -0.023302525281906128, -0.029132919386029243, -0.0735849142074585, 0.028180241584777832, 0.03555397689342499, -0.020215846598148346, 0.031743261963129044, 0.08200659602880478, -0.010841486044228077, -0.02355022169649601, -0.05921851843595505, 0.026484472677111626, 0.0501871220767498, -0.03989819064736366, -0.04912012442946434, -0.0010890309931710362, 0.010793851688504219, -0.006340078078210354, 0.04931065812706947, -0.034582242369651794, 0.015385763719677925, 0.008702721446752548, 0.026713116094470024, -0.037783242762088776, -0.030981117859482765, -0.011946593411266804, 0.004870570730417967, -0.04649072885513306, -0.017434023320674896, 0.011965646408498287, -0.017710300162434578, 0.010746217332780361, -0.008012029342353344, -0.013299397192895412, 0.021340006962418556, 0.058380160480737686, 0.003574927570298314, -0.017662666738033295, 0.008097770623862743, -0.05685587599873543, -0.03989819064736366, -0.055179160088300705, -0.05658912658691406, -0.035477761179208755, 0.04828176647424698, 0.04527129977941513, 0.044814012944698334, -0.0557507686316967, -0.03094301000237465, -0.05445512384176254, 0.0017231579404324293, -0.046071551740169525, -0.014928477816283703, 0.04100329801440239, -0.021568650379776955, 0.03481088578701019, -0.019148845225572586, 0.0015361947007477283, -0.01975855976343155, 0.016671881079673767, 0.026484472677111626, 0.07038391381502151, 0.06764020025730133, -0.027799170464277267, -0.01654803194105625, 0.015109486877918243, -0.01568109355866909, -0.007135564927011728, -0.006825943943113089, -0.0020018164068460464, -0.06546809524297714, -0.006892631761729717, 0.02661784738302231, 0.02360738255083561, 0.051978159695863724, -0.0022697574459016323, 0.007778623141348362, -0.026960812509059906, 0.029609259217977524, 0.0041774967685341835, -0.03947901353240013, 0.022997668012976646, -0.0031295500230044127, 0.009926914237439632, 0.04386133700609207, 0.01292785257101059, 0.08071095496416092, 0.01308028120547533, -0.03561113774776459, 0.014299710281193256, 0.008821805939078331, -0.020082470029592514, -0.008717011660337448, 0.03970765694975853, -0.04900580272078514, -0.03088584914803505, -0.059675805270671844, 0.0668780580163002, -0.007645247969776392, 0.03176231309771538, 0.007888181135058403, -0.011489307507872581, -0.0009568468667566776, 0.0003194451273884624, 0.02324536442756653, 0.027742009609937668, 0.02846604399383068, -0.043404050171375275, -0.03465845808386803, -0.052283015102148056, -0.044699691236019135, 0.09343874454498291, -0.02810402773320675, -0.002627012087032199, -0.013337504118680954, -0.01994909532368183, -0.010126976296305656, -0.035287223756313324, -0.007783386390656233, -0.017643611878156662, 0.01826285384595394, -0.01142262015491724, 0.01919647864997387, 0.04027926176786423, -0.004987273830920458, -0.01834859512746334, -0.07152713090181351, -0.004699088633060455, -0.03341997414827347, -0.03684961795806885, 0.019663292914628983, 0.017291121184825897, -0.02017773874104023, 0.03580167144536972, 0.022387953475117683, 0.000028803649911424145, 0.005582698155194521, -0.009645873680710793, 0.00536834541708231, -0.0032533984631299973, -0.05083494633436203, 0.04016494005918503, 0.06695427000522614, -0.014099647291004658, 0.0337248332798481, -0.021644864231348038, 0.038735922425985336, -0.04690990969538689, 0.0010282978182658553, -0.016528978943824768, 0.03627801313996315, 0.008574109524488449, 0.0003358192916493863, 0.008059663698077202, -0.024426685646176338, 0.006001877132803202, -0.0387740321457386, 0.05971391126513481, 0.002612721873447299, 0.010241298004984856, 0.04355647787451744, -0.024159936234354973, -0.04797690734267235, -0.017738880589604378, -0.021492434665560722, 0.06375326961278915, -0.018300961703062057, 0.01590973697602749, 0.05060630291700363, 0.00871224794536829, -0.0720987394452095, 0.028485098853707314, -0.031171653419733047, -0.027494313195347786, -0.016767147928476334, 0.007897707633674145, 0.02604624070227146, 0.02858036570250988, 0.051216017454862595, -0.007526163011789322, -0.033629562705755234, 0.038793083280324936, -0.01933938078582287, -0.06409623473882675, -0.034772779792547226, 0.0008669378003105521, -0.04153680056333542, 0.030847741290926933, -0.060857128351926804, 0.005844684783369303, 0.06367705762386322, 0.0025698512326925993, -0.025779491290450096, 0.018701085820794106, 0.04809122905135155, -0.0064972699619829655, 0.014604567550122738, -0.04847230017185211, -0.008616980165243149, 0.06661130487918854, 0.025188829749822617, 0.0035177667159587145, 0.07095552235841751, 0.04165112227201462, 0.022349845618009567, 0.053769197314977646, 0.027951598167419434, 0.03330565243959427, -0.0000644918909529224, 0.03391536697745323, -0.011603628285229206, -0.0005260573816485703, 0.011660789139568806, -0.020139630883932114, -0.03764986991882324, -0.024769650772213936, 0.008083480410277843, 0.03936469182372093, -0.029132919386029243, -0.00903615914285183, 0.006602064706385136, -0.028446990996599197, 0.07038391381502151, -0.017376862466335297, -0.03886929899454117, 0.018396228551864624, -0.03000938519835472, -0.06573484092950821, 0.02959020622074604, 0.01245151273906231, -0.017214907333254814, -0.0387740321457386, 0.006011403631418943, 0.0058875554241240025, -0.0056398590095341206, 0.01612885296344757, 0.02976168878376484, 0.0048110284842550755, -0.017548345029354095, 0.014023433439433575, -0.015747781842947006, 0.009545842185616493, 0.04561426490545273, 0.01657661236822605, -0.026293937116861343, 0.03408684954047203, -0.03490615263581276, 0.004710996989160776, -0.08109202235937119, 0.020730292424559593, -0.01885351538658142, -0.015404817648231983, 0.03301984816789627, -0.008378811180591583, -0.0055112470872700214, 0.0015492939855903387, -0.04744340851902962, 0.028332669287919998, -0.025226935744285583, -0.08817995339632034, 0.005663675721734762, 0.014947531744837761, 0.005015854258090258, 0.028980491682887077, 0.026655955240130424, -0.006878341548144817, 0.006154305767267942, -0.011413092724978924, -0.03107638470828533, -0.027265669777989388, -0.012946905568242073, 0.010203191079199314, 0.03551586717367172, 0.018653452396392822, 0.020673131570219994, 0.0388883501291275, 0.0006781882839277387, -0.00923145841807127, -0.011775110848248005, 0.08604595810174942, 0.021797291934490204, 0.0024460030253976583, -0.05590319633483887, 0.04397565871477127, 0.03751649335026741, -0.029323454946279526, -0.015471505001187325, 0.05780855566263199, 0.0076928818598389626, 0.007816730067133904, 0.08231145143508911, -0.0032962688710540533, 0.035839781165122986, 0.037554603070020676, -0.011870378628373146, -0.012099022045731544, -0.05647480487823486, -0.01922505907714367, 0.012851637788116932, -0.0192726943641901, 0.004570476710796356, 0.008254962041974068, -0.025646114721894264, 0.04923444613814354, -0.027132295072078705, -0.01593831740319729, -0.00887896679341793, -0.007911997847259045, -0.06466784328222275, -0.01500469259917736, 0.015728728845715523, -0.03614463657140732, 0.024998294189572334, 0.07396598905324936, -0.0011021303944289684, 0.037840403616428375, 0.021035149693489075, 0.022883346304297447, 0.0004108427674509585, 0.009579186327755451, -0.05296894535422325, 0.019739506766200066, 0.04946308583021164, 0.020273005589842796, -0.04816744476556778, -0.025245990604162216, 0.01745307631790638, 0.037611763924360275, 0.041384369134902954, 0.0501871220767498, 0.0497298389673233, -0.002285238355398178 ]
39,893
fpl.fpl
login
Returns a requests session with FPL login authentication. :param string email: Email address for the user's Fantasy Premier League account. :param string password: Password for the user's Fantasy Premier League account. :param string cookie: Cookie extracted from the user's browser which increases success chance when trying to log in.
fixtures = filter(lambda f: not f.finished, fixtures)
(self, email=None, password=None, cookie=None)
[ 0.06168024241924286, 0.052106812596321106, -0.08657116442918777, -0.027096226811408997, -0.03654998913407326, -0.02210436575114727, -0.020548684522509575, 0.03284028545022011, 0.06547542661428452, 0.025489257648587227, 0.046465326100587845, 0.0205999705940485, 0.010787203907966614, -0.04584989324212074, -0.019112668931484222, 0.01160778384655714, -0.05214100331068039, 0.051799096167087555, 0.038738202303647995, -0.019317815080285072, -0.0035537085495889187, 0.06759525835514069, -0.012744628824293613, 0.04301205277442932, 0.013864378444850445, -0.020565779879689217, -0.007898080162703991, -0.038225337862968445, 0.029284438118338585, 0.036720942705869675, -0.03184875100851059, 0.005752605851739645, 0.014488360844552517, 0.0020856400951743126, -0.005684223957359791, 0.04478997737169266, 0.0030023816507309675, 0.07597200572490692, -0.018240803852677345, 0.022070175036787987, 0.04342234507203102, 0.006197086535394192, -0.05887659639120102, 0.02902800776064396, 0.007218537386506796, -0.015334583818912506, 0.02150602638721466, 0.0422256663441658, 0.012975417077541351, 0.026104692369699478, 0.042841099202632904, 0.06232986971735954, 0.041439276188611984, 0.055320750921964645, 0.023044614121317863, -0.009770027361810207, -0.05538913235068321, 0.010923967696726322, 0.04892706498503685, 0.025455066934227943, 0.0022181295789778233, 0.03545588254928589, 0.0502605065703392, -0.005226921755820513, 0.03665256127715111, -0.011035087518393993, 0.0022736897226423025, 0.017121054232120514, -0.042259857058525085, 0.08568219840526581, -0.04482416808605194, 0.0570644810795784, 0.01930071972310543, 0.03549007326364517, -0.015291845425963402, -0.05354282632470131, -0.018326280638575554, 0.014060975052416325, 0.010564964264631271, -0.05863725766539574, 0.03675513342022896, 0.023181376978754997, -0.0795278549194336, 0.03716542199254036, -0.003641322487965226, -0.016334665939211845, 0.06574895232915878, -0.04824325069785118, -0.02913057990372181, -0.039148490875959396, -0.032720617949962616, 0.05292739346623421, -0.007372396066784859, -0.053508635610342026, 0.014394336380064487, 0.04331977292895317, -0.023232663050293922, 0.028378382325172424, -0.09792251139879227, -0.06048356369137764, 0.016497071832418442, 0.02702784538269043, -0.005299577489495277, 0.038430482149124146, 0.06321883201599121, 0.011633426882326603, -0.03535331040620804, -0.08882775157690048, 0.030190495774149895, 0.014838816598057747, -0.044242922216653824, 0.000025476168957538903, -0.048585157841444016, 0.010351271368563175, -0.00020835032046306878, -0.07091176509857178, -0.05497884005308151, -0.026685936376452446, -0.04458483308553696, -0.07829698175191879, 0.07050147652626038, 0.024036148563027382, -0.04451645165681839, 0.004829453770071268, 0.05114946886897087, -0.00037075672298669815, 0.012582221999764442, 0.04851677641272545, 0.06588571518659592, -0.022360797971487045, 0.007423682138323784, -0.011983882635831833, -0.03396858274936676, 0.0030707630794495344, -0.008915256708860397, -0.020052917301654816, 0.0251302532851696, 0.004402068443596363, 0.017044125124812126, -0.014120809733867645, -0.0242071021348238, -0.012052264995872974, 0.004320865031331778, 0.03135298192501068, -0.028669003397226334, -0.012548031285405159, -0.05244871973991394, 0.021728267893195152, -0.05142299458384514, -0.004590117838233709, 0.015941470861434937, -0.04072126746177673, -0.061748623847961426, 0.012180480174720287, -0.016556905582547188, -0.010129030793905258, -0.04410615935921669, 0.014428527094423771, -0.009154592640697956, -0.03678932413458824, -0.006761235184967518, 0.03856724873185158, -0.011582140810787678, 0.03183165565133095, -0.03148974850773811, 0.025284113362431526, -0.027677470818161964, 0.00004517595880315639, -0.03719961270689964, 0.056004565209150314, 0.0026369672268629074, 0.03525073826313019, 0.0062740156427025795, 0.03579778969287872, -0.06701400876045227, 0.09046891331672668, 0.023745525628328323, -0.03866982087492943, -0.012676247395575047, -0.010958158411085606, -0.08021166920661926, -0.03774666786193848, 0.0035921731032431126, -0.016120972111821175, 0.04410615935921669, -0.03164360672235489, -0.014479813165962696, 0.014069522731006145, 0.013607947155833244, -0.011992430314421654, -0.020736733451485634, -0.022224033251404762, -0.0037396210245788097, 0.002105940831825137, -0.03265223652124405, -0.00020955233776476234, -0.05234614759683609, 0.01281301025301218, 0.0003461820597294718, -0.09040053188800812, -0.07412569969892502, -0.04622599110007286, 0.010915420018136501, -0.05323510989546776, -0.028463859111070633, 0.052688054740428925, -0.03805438429117203, 0.01100944448262453, -0.016095329076051712, 0.014471265487372875, -0.003307962091639638, 0.011983882635831833, -0.04407196864485741, 0.0164799764752388, 0.03225903958082199, -0.0242071021348238, 0.05378216132521629, -0.0018260035431012511, 0.015009771101176739, 0.05484207719564438, -0.037644095718860626, -0.04383263364434242, 0.021181214600801468, 0.005508996080607176, 0.0037246625870466232, 0.04670466110110283, 0.01779632270336151, 0.008009199984371662, -0.018822047859430313, -0.100110724568367, 0.05699609965085983, -0.011804381385445595, -0.0077014826238155365, -0.06010746583342552, 0.006966379936784506, 0.024070339277386665, -0.0008878929074853659, 0.004936299752444029, -0.0020909823942929506, -0.005004681646823883, 0.020240966230630875, -0.043148815631866455, 0.0343959666788578, -0.009120401926338673, 0.0424308106303215, -0.0014595206594094634, 0.0076416488736867905, -0.014727696776390076, -0.00013469313853420317, -0.006744139827787876, 0.035319119691848755, 0.02931862883269787, -0.0017063356935977936, -0.03222484886646271, 0.05456855148077011, -0.07145881652832031, 0.029216056689620018, -0.039627160876989365, 0.039524588733911514, -0.023249758407473564, 0.018155327066779137, -0.051081087440252304, 0.009906790219247341, 0.07234778255224228, -0.0401742160320282, -0.008624634705483913, -0.0014520414406433702, -0.02861771732568741, -0.012291599996387959, 0.017813418060541153, 0.0055260914377868176, -0.09224683791399002, 0.012642056681215763, -0.03849886357784271, -0.021454740315675735, 0.03186584636569023, -0.008607539348304272, -0.01829208992421627, -0.010564964264631271, 0.0003229430003557354, 0.018616901710629463, 0.009992267936468124, 0.020446110516786575, 0.0004573022306431085, 0.013385706581175327, -0.033831819891929626, -0.0280193779617548, 0.043353963643312454, -0.023865193128585815, -0.015915827825665474, 0.019967440515756607, 0.00763310119509697, 0.01950586400926113, -0.09901662170886993, -0.0005497243255376816, -0.026754317805171013, -0.039524588733911514, -0.05104689672589302, 0.028600621968507767, -0.006727044004946947, -0.008257083594799042, -0.03668675199151039, -0.01930071972310543, -0.0015578193124383688, -0.07371541112661362, 0.04732009768486023, -0.00627828948199749, -0.06246663257479668, 0.03224194422364235, -0.030122114345431328, 0.051388803869485855, -0.013701971620321274, 0.0418153740465641, -0.027985187247395515, 0.038738202303647995, 0.001503327745012939, -0.009855504147708416, 0.004761071875691414, -0.020958973094820976, 0.03215646743774414, -0.01689881458878517, 0.0208051148802042, 0.008261357434093952, 0.05231195688247681, 0.019625531509518623, -0.01746296137571335, -0.03354119509458542, 0.008889613673090935, -0.0407896488904953, 0.010214507579803467, -0.04950831085443497, -0.036002933979034424, 0.02803647331893444, 0.012257409282028675, -0.0502605065703392, 0.05720124393701553, 0.044755786657333374, 0.0026220085565000772, 0.09238360077142715, -0.031387172639369965, 0.008359655737876892, -0.048892874270677567, 0.048824492841959, 0.05569684877991676, 0.0052910298109054565, 0.021557312458753586, 0.014180643483996391, 0.04331977292895317, 0.10961577296257019, 0.01897590607404709, 0.06978346407413483, 0.006769782863557339, 0.05405569076538086, 0.0789124146103859, 0.05689352750778198, -0.02612178772687912, -0.03013920970261097, 0.03908010944724083, -0.029814396053552628, 0.055423323065042496, 0.0036776503548026085, 0.025985024869441986, -0.020753828808665276, 0.009787122718989849, 0.052380338311195374, -0.036823514848947525, 0.02572859264910221, -0.027284275740385056, -0.07262130826711655, -0.05778248980641365, -0.03005373291671276, 0.04920059069991112, -0.01798437163233757, -0.02964344248175621, 0.061338335275650024, -0.05408988147974014, 0.03013920970261097, 0.04359329864382744, -0.007299740333110094, 0.10311951488256454, -0.06000489369034767, -0.02984858676791191, -0.0393536351621151, 0.03860143944621086, -0.046157609671354294, 0.01948876865208149, -0.048482585698366165, -0.030874311923980713, 0.02861771732568741, 0.020463207736611366, 0.060722898691892624, -0.06482579559087753, -0.05077337101101875, -0.014052427373826504, -0.007573266979306936, -0.014325954020023346, -0.050807561725378036, -0.040960606187582016, -0.007470694370567799, 0.0020525178406387568, 0.03003663755953312, 0.032498374581336975, -0.01849723421037197, 0.002134789479896426, 0.009017828851938248, -0.015462798997759819, -0.016095329076051712, -0.015710683539509773, -0.008731480687856674, -0.0031434185802936554, 0.031609416007995605, -0.038635630160570145, -0.036002933979034424, -0.05231195688247681, -0.032293230295181274, 0.006564637646079063, 0.030105018988251686, -0.00979567039757967, 0.04489254951477051, 0.018309185281395912, 0.02280527725815773, 0.001299251220189035, 0.0238993838429451, -0.012488197535276413, -0.013402801938354969, -0.0046114870347082615, 0.011992430314421654, 0.009325546212494373, 0.0052910298109054565, 0.03613969683647156, -0.01039400976151228, -0.04455064237117767, -0.054910458624362946, -0.010607702657580376, 0.03771247714757919, 0.009428119286894798, -0.03559264540672302, -0.03559264540672302, -0.028874149546027184, 0.10223055630922318, -0.01029143761843443, 0.058534685522317886, 0.019728103652596474, -0.027557801455259323, -0.014146452769637108, 0.013975498266518116, -0.02261722832918167, 0.021676981821656227, 0.06465484201908112, 0.02733556181192398, -0.047969721257686615, 0.0006458860007114708, -0.020360633730888367, -0.03313090652227402, 0.06578314304351807, -0.027660375460982323, 0.008500693365931511, 0.022360797971487045, -0.04581570252776146, -0.0047567980363965034, 0.062364060431718826, 0.05265386402606964, -0.03637903556227684, -0.015582467429339886, 0.03384891524910927, -0.038533054292201996, -0.009359737858176231, 0.01597566157579422, 0.01848013885319233, 0.048277441412210464, 0.036720942705869675, -0.013436992652714252, -0.03730218484997749, -0.026788508519530296, 0.040960606187582016, 0.0031690618488937616, -0.02400195598602295, 0.008983638137578964, 0.02620726451277733, 0.011693260632455349, 0.015137986280024052, -0.001102654030546546, -0.027797138318419456, -0.01959134079515934, -0.0210102591663599, -0.09224683791399002, -0.0023335234727710485, -0.0244122464209795, 0.030874311923980713, 0.006974927615374327, 0.01150521170347929, -0.07091176509857178, 0.005483353044837713, -0.03819114714860916, 0.0015588877722620964, -0.05398730933666229, 0.059731364250183105, 0.08226311951875687, 0.05446597933769226, -0.03829371929168701, 0.03237870708107948, 0.03147265315055847, -0.0021422686986625195, 0.016599643975496292, -0.028087759390473366, -0.033712148666381836, 0.015958566218614578, -0.04379844292998314, -0.058021824806928635, -0.020446110516786575, 0.06198795884847641, -0.0005339644849300385, -0.02362585812807083, -0.02130088210105896, 0.027062036097049713, -0.02018968015909195, -0.03135298192501068, 0.006966379936784506, 0.060141656547784805, 0.031130744144320488, -0.004228977486491203, 0.03675513342022896, 0.01341989729553461, 0.010761560872197151, -0.023831002414226532, -0.015001223422586918, -0.01950586400926113, 0.008740028366446495, 0.010633345693349838, 0.0022330880165100098, 0.02875448204576969, -0.05436340719461441, 0.006949284579604864, -0.01907847821712494, -0.020463207736611366, 0.014573837630450726, -0.006427874322980642, -0.07843374460935593, -0.005829534959048033, 0.020343538373708725, 0.05614132806658745, 0.01967681758105755, 0.03167779743671417, -0.0213179774582386, 0.001984136179089546, 0.02121540531516075, -0.02733556181192398, 0.03212227672338486, 0.05976555496454239, 0.04909801855683327, -0.03730218484997749, -0.0142661202698946, -0.041746992617845535, -0.057919252663850784, 0.056517429649829865, -0.036618370562791824, 0.002848522737622261, 0.014736244454979897, -0.006825342774391174, 0.007547623943537474, 0.022258225828409195, -0.013539565727114677, -0.002363440580666065, 0.029284438118338585, -0.007427955977618694, -0.012479649856686592, 0.07624553143978119, 0.011522307060658932, 0.0685867890715599, 0.009915337897837162, 0.008363929577171803, 0.027985187247395515, -0.04714914411306381, 0.004658499266952276, 0.03362667188048363, 0.0003055804700125009, 0.016018399968743324, -0.02460029534995556, -0.003171198768541217, -0.0582953505218029, -0.0029510953463613987, -0.03496011346578598, 0.04742266982793808, -0.07248454540967941, -0.01100944448262453, -0.017710845917463303, 0.014753339812159538, 0.0213179774582386, 0.05997070297598839, 0.050807561725378036, 0.03314800187945366, 0.04961088299751282, -0.023933574557304382, -0.00015025262837298214, 0.03668675199151039, -0.025267018005251884, 0.044345494359731674, -0.020976068452000618, -0.12240314483642578, 0.037541523575782776, 0.046875618398189545, -0.006145799998193979, 0.025301208719611168, 0.014479813165962696, 0.0052141002379357815, -0.054705314338207245, -0.04673885181546211, -0.01889042928814888, -0.012667699716985226, 0.03603712469339371, -0.009368285536766052, 0.009505048394203186, 0.07727126032114029, -0.0313187912106514, 0.06691143661737442, -0.047662004828453064, 0.017522796988487244, -0.00404092762619257, -0.024651583284139633, 0.006201360374689102, -0.04458483308553696, -0.03716542199254036, -0.007551897782832384, 0.03155812993645668, -0.027780042961239815, -0.05272224545478821, 0.028703194111585617, -0.05203843116760254, -0.04468740522861481, -0.006513351574540138, -0.0197793897241354, -0.022668514400720596, -0.01159923616796732, -0.017103958874940872, -0.02249756082892418, -0.015189272351562977, 0.02772875688970089, -0.026446601375937462, 0.002716033486649394, -0.08568219840526581, -0.052585482597351074, 0.006667210254818201, -0.009624715894460678, -0.018633997067809105, -0.04437968507409096, -0.05586780235171318, -0.022753991186618805, -0.012701890431344509, 0.02218984253704548, -0.07268968969583511, -0.010086292400956154, 0.036515798419713974, -0.010026458650827408, 0.025779878720641136, -0.005705593153834343, 0.03485754132270813, 0.033301860094070435, 0.04212309420108795, 0.047764576971530914, -0.006825342774391174, 0.02791680581867695, -0.005513269919902086, -0.015155081637203693, 0.028976721689105034, 0.05255129188299179, -0.02391647920012474, -0.01392421219497919, -0.014744792133569717, -0.05795344337821007, -0.0017554849619045854, -0.004301632754504681, 0.049576692283153534, 0.007248454261571169, -0.0482090599834919, -0.02593373879790306, 0.017403127625584602, -0.02733556181192398, 0.05487626791000366, 0.021967602893710136, -0.02169407717883587, 0.03696027770638466, 0.014223381876945496, 0.0024916562251746655, -0.007975009270012379, 0.061543479561805725, 0.09169978648424149, -0.07077500224113464, -0.010701727122068405, 0.05997070297598839, 0.026497887447476387, -0.034310489892959595, -0.02191631682217121, 0.0023014696780592203, 0.04499512165784836, 0.027591994032263756, 0.006833890452980995, -0.010676084086298943, 0.013684876263141632, 0.0341908223927021, 0.03528492897748947, 0.0626375824213028, 0.022822372615337372, 0.01436014473438263, -0.03212227672338486, -0.029472488909959793, -0.037438951432704926, -0.021984698250889778, 0.008385298773646355, -0.013274586759507656, -0.016300473362207413, -0.014437074773013592, 0.0587056428194046, -0.0405845046043396, -0.0016956510953605175, 0.003733210265636444, -0.00688517652451992, -0.007534802425652742, -0.04318300634622574, 0.035729408264160156, 0.019146859645843506, 0.04639694467186928, 0.015830351039767265, -0.03648160770535469, 0.05901335924863815, -0.03102817013859749, 0.010094840079545975, 0.004803810268640518, -0.03147265315055847, -0.010710274800658226, -0.010240151546895504, 0.013351515866816044, 0.020480303093791008, -0.055013030767440796, -0.01100089680403471, 0.025164443999528885, -0.025591829791665077, -0.014343049377202988, 0.006662936415523291, -0.0422256663441658, -0.014180643483996391, -0.017052672803401947, -0.03244708850979805, 0.07214263081550598, -0.006799699738621712, -0.028053568676114082, -0.05959460139274597, 0.043148815631866455, 0.014043879695236683, -0.039627160876989365, -0.04232823848724365, -0.0007292260997928679, 0.023061709478497505, -0.00532949436455965, 0.019249431788921356, 0.03880658373236656, 0.04752524197101593, 0.006889450363814831, -0.025677306577563286, -0.027660375460982323, -0.009205878712236881, -0.02502768114209175, 0.029523774981498718, 0.018924620002508163, 0.03757571429014206, 0.04109736904501915, 0.025865357369184494, 0.029916968196630478, 0.03689189627766609 ]
39,899
lerc._lerc
convert2ma
null
def convert2ma(npArr, npValidMask, nValuesPerPixel, nBands, npmaNoData): if (npmaNoData is None) and (npValidMask is None): return(np.ma.array(npArr, mask = False)) if not npValidMask is None: if (nValuesPerPixel > 1): # need to blow up mask from 2D to 3D or 3D to 4D npMask3D = npValidMask for k in range(nValuesPerPixel - 1): npMask3D = np.dstack((npMask3D, npValidMask)) if nBands == 1 or npValidMask.ndim == 3: # one mask per band npmaArr = np.ma.array(npArr, mask = (npMask3D == False)) elif nBands > 1: # use same mask for all bands npMask4D = np.stack([npMask3D for _ in range(nBands)]) npmaArr = np.ma.array(npArr, mask = (npMask4D == False)) elif (nValuesPerPixel == 1): if nBands == 1 or npValidMask.ndim == 3: # one mask per band npmaArr = np.ma.array(npArr, mask = (npValidMask == False)) elif nBands > 1: # same mask for all bands npMask3D = np.stack([npValidMask for _ in range(nBands)]) npmaArr = np.ma.array(npArr, mask = (npMask3D == False)) elif npValidMask is None: npmaArr = np.ma.array(npArr, mask = False) if not npmaNoData is None: if nBands == 1: if not npmaNoData.mask[0]: npmaArr = np.ma.masked_equal(npmaArr, npmaNoData[0]) elif nBands > 1: for m in range(nBands): if not npmaNoData.mask[m]: npmaArr[m] = np.ma.masked_equal(npmaArr[m], npmaNoData[m]) return (npmaArr)
(npArr, npValidMask, nValuesPerPixel, nBands, npmaNoData)
[ -0.002459378447383642, 0.0425068698823452, -0.007419430650770664, -0.014380021952092648, -0.008929011411964893, 0.005758432671427727, -0.031201068311929703, -0.014618618413805962, 0.05080268159508705, 0.021473677828907967, 0.011305798776447773, 0.01214088685810566, 0.0028975699096918106, -0.02141861617565155, 0.016343854367733, -0.006965179927647114, -0.034743309020996094, 0.05964910238981247, 0.005841023754328489, 0.04966476187109947, 0.014187309890985489, -0.005262886174023151, 0.015316054224967957, 0.05300511047244072, 0.05028878152370453, 0.05109633877873421, -0.003716598032042384, -0.03806530311703682, -0.013012681156396866, 0.04702184721827507, -0.012728201225399971, -0.0022299587726593018, 0.00796544924378395, 0.05803398787975311, 0.08516056835651398, -0.0033931161742657423, 0.0074515496380627155, 0.0020154514349997044, -0.15372949838638306, -0.03255923464894295, 0.0042213210836052895, -0.08185692131519318, 0.07201940566301346, 0.049517933279275894, 0.024428602308034897, -0.05572143942117691, 0.006221860181540251, 0.016958698630332947, -0.04269040375947952, 0.05161023885011673, 0.016297969967126846, -0.026300664991140366, 0.032192163169384, 0.06559565663337708, -0.08376569300889969, 0.05227096751332283, -0.003482589963823557, 0.0630628690123558, 0.005643722601234913, -0.047866109758615494, -0.04643453285098076, 0.02428177371621132, 0.04026773199439049, -0.07928742468357086, 0.004567744676023722, 0.014205663464963436, -0.043938446789979935, 0.005400537978857756, 0.012361129745841026, 0.07315733283758163, -0.07190928608179092, 0.04070821776986122, 0.03276112303137779, 0.011966527439653873, 0.0408550463616848, 0.039350055158138275, -0.0006991563132032752, 0.00824993010610342, -0.012416190467774868, 0.01903265155851841, 0.00758920144289732, 0.03553251177072525, 0.026227250695228577, 0.049260981380939484, -0.014756270684301853, -0.025823473930358887, -0.0037533051799982786, 0.051573533564805984, 0.0461408756673336, -0.07183587551116943, 0.021198373287916183, -0.023180559277534485, 0.014077188447117805, 0.05454681068658829, -0.043865032494068146, 0.01181052252650261, 0.016545742750167847, 0.015187579207122326, 0.021271787583827972, -0.005262886174023151, -0.01716058887541294, -0.03224722295999527, 0.013967067003250122, -0.023676104843616486, 0.03531226888298988, 0.05021536722779274, 0.021767335012555122, 0.008951953612267971, -0.046654775738716125, 0.055904973298311234, -0.00849311426281929, 0.014728739857673645, -0.07539646327495575, -0.04621428996324539, -0.012948444113135338, 0.011425097472965717, 0.0048774611204862595, -0.015141695737838745, -0.022262880578637123, -0.02141861617565155, -0.02920052967965603, 0.05652899667620659, -0.0023699046578258276, 0.0027943309396505356, 0.005047231912612915, -0.006584343034774065, 0.08648202568292618, -0.016022667288780212, 0.030008086934685707, -0.0033449381589889526, -0.07099160552024841, 0.020464230328798294, -0.05054573342204094, -0.017252355813980103, -0.019895270466804504, -0.014214839786291122, 0.005602427292615175, -0.03544074296951294, -0.028374619781970978, -0.04603075236082077, -0.014985689893364906, 0.02569499798119068, 0.023859640583395958, 0.029824551194906235, -0.008892304264008999, -0.012131709605455399, 0.08420617878437042, 0.04437893256545067, 0.023914702236652374, -0.00025121448561549187, -0.0557948537170887, -0.00910337083041668, -0.013838591985404491, 0.03110930137336254, 0.04236004129052162, -0.0020808361005038023, 0.02813602238893509, -0.09294247627258301, -0.016343854367733, 0.014324961230158806, -0.06416407972574234, 0.02747529372572899, -0.03421105444431305, -0.047131966799497604, -0.018399454653263092, 0.016756810247898102, -0.02714492939412594, -0.02586018107831478, 0.0038863683585077524, 0.014095542021095753, 0.022941961884498596, -0.012379483319818974, -0.05799728259444237, -0.0036730081774294376, -0.027585415169596672, -0.014682856388390064, 0.004648041445761919, -0.049371104687452316, -0.029475834220647812, 0.016857754439115524, 0.003946017473936081, 0.039019688963890076, -0.016343854367733, -0.010846960358321667, -0.017610250040888786, -0.004762751515954733, 0.007685557473450899, -0.03591793775558472, -0.004030902869999409, -0.015205932781100273, 0.029347358271479607, 0.028246143832802773, -0.002837920794263482, 0.009497972205281258, -0.01903265155851841, -0.06992710381746292, -0.002888393122702837, 0.03747798874974251, 0.025713352486491203, -0.01747259870171547, 0.006102561950683594, -0.0300447940826416, 0.027695536613464355, 0.02118002064526081, 0.010204585269093513, -0.06203506514430046, 0.018280155956745148, 0.04335113242268562, 0.0013283396838232875, 0.04735220968723297, 0.036633726209402084, -0.03266935423016548, 0.02149203047156334, -0.0013765176991000772, 0.03470660001039505, -0.007313897833228111, 0.09521832317113876, 0.010801075957715511, -0.010287175886332989, 0.031714968383312225, -0.08494032174348831, -0.029567601159214973, -0.015940075740218163, 0.031623199582099915, -0.023419154807925224, 0.040084198117256165, 0.005808904767036438, 0.05245450139045715, 0.057960573583841324, 0.014820507727563381, -0.012150063179433346, 0.0018525634659454226, -0.10285340994596481, -0.04537002369761467, 0.008887716569006443, -0.0005503203137777746, 0.07649768143892288, -0.03971712663769722, 0.012911736965179443, -0.009644800797104836, 0.017197296023368835, -0.012691494077444077, 0.008974895812571049, 0.03266935423016548, 0.04551685228943825, -0.05685935914516449, 0.018280155956745148, 0.003301348304376006, 0.01206747256219387, -0.0065155173651874065, -0.0212534349411726, 0.02534628100693226, 0.04375490918755531, 0.06790821254253387, -0.0006991563132032752, 0.020225634798407555, -0.002909040777012706, 0.005285828374326229, 0.024263419210910797, -0.04158918932080269, 0.027860719710588455, -0.033770568668842316, 0.024410247802734375, -0.0159308984875679, 0.017757078632712364, -0.032118748873472214, 0.01697705313563347, 0.050178661942481995, 0.04940780997276306, 0.0431675985455513, 0.020299049094319344, -0.0016988522838801146, -0.018500398844480515, -0.045920632779598236, 0.008639942854642868, 0.06210847944021225, 0.08523397892713547, -0.06787150353193283, 0.016463153064250946, 0.021106606349349022, -0.016297969967126846, -0.0027484470047056675, -0.04125882685184479, 0.0034504712093621492, 0.0458105094730854, -0.016435621306300163, 0.061337631195783615, -0.00013987427519168705, 0.00824534147977829, -0.00024533559917472303, 0.03971712663769722, -0.009364909492433071, -0.07524963468313217, -0.02657596953213215, -0.03714762628078461, -0.028209436684846878, -0.03276112303137779, -0.025382988154888153, 0.012709847651422024, -0.04258028417825699, -0.01754601299762726, -0.024355188012123108, 0.040414560586214066, 0.009874220937490463, 0.008993249386548996, -0.01251713465899229, -0.07715840637683868, 0.0318617969751358, 0.01854628324508667, 0.026062069460749626, 0.003333467058837414, -0.04940780997276306, 0.005818081554025412, -0.05439998209476471, 0.04636111855506897, 0.03299972042441368, 0.0564555823802948, 0.059612397104501724, 0.037955183535814285, 0.03615653142333031, 0.02633737213909626, -0.014627795666456223, -0.06298945099115372, -0.008736299350857735, 0.012315245345234871, -0.03949688374996185, -0.020409170538187027, -0.029475834220647812, 0.00858029443770647, 0.06471468508243561, -0.02846638672053814, 0.010167878121137619, -0.04584721848368645, 0.01960161328315735, 0.0288885198533535, -0.03356868028640747, -0.00478110508993268, -0.06629309803247452, 0.0008993249502964318, 0.017252355813980103, -0.09352979063987732, 0.00870418082922697, -0.03246746584773064, -0.0388728603720665, 0.025621583685278893, -0.009094193577766418, -0.035165440291166306, 0.04676489531993866, -0.03960700333118439, 0.025236159563064575, 0.023988116532564163, 0.007580024655908346, -0.004895814694464207, 0.06915625184774399, 0.0010082992957904935, 0.02222617343068123, 0.014398375526070595, 0.0034688247833400965, 0.027713891118764877, -0.023602690547704697, 0.03547745198011398, 0.05498729646205902, 0.061264216899871826, -0.05964910238981247, 0.028356265276670456, -0.028851812705397606, -0.05113304778933525, -0.0041180821135640144, 0.035000257194042206, -0.019326308742165565, 0.020042099058628082, -0.013792707584798336, 0.009254788048565388, -0.0468016043305397, 0.010167878121137619, -0.009929281659424305, -0.017206471413373947, 0.0013076919130980968, -0.014591088518500328, -0.009699861519038677, -0.019307956099510193, -0.016784340143203735, -0.01716058887541294, -0.019803501665592194, 0.05572143942117691, 0.01382941473275423, 0.04129553213715553, 0.04070821776986122, -0.08552763611078262, -0.05785045400261879, 0.012884206138551235, -0.028686629608273506, 0.004239674657583237, -0.06361347436904907, -0.02536463364958763, 0.037624817341566086, -0.04764586687088013, 0.05638216808438301, -0.00664858054369688, -0.025309573858976364, -0.05252791568636894, -0.040084198117256165, -0.015573004260659218, 0.019069358706474304, -0.013618349097669125, -0.012810791842639446, 0.004453035071492195, -0.03116436116397381, -0.0027530353982001543, 0.05366583913564682, 0.025474755093455315, 0.028044255450367928, 0.06526529788970947, -0.03265099972486496, 0.0217489805072546, 0.07921400666236877, -0.03494519740343094, -0.03158649429678917, -0.025144390761852264, -0.00824075285345316, 0.029475834220647812, -0.03342185169458389, -0.023767873644828796, 0.016857754439115524, 0.05072926729917526, -0.06621968001127243, -0.017848847433924675, 0.0192712489515543, -0.07047770917415619, 0.03329337760806084, 0.05924532562494278, -0.04760916158556938, 0.017903907224535942, -0.07022076100111008, -0.01280161552131176, 0.0016208497108891606, -0.04588392376899719, 0.011223208159208298, -0.0070523591712117195, -0.03371550887823105, 0.023437509313225746, 0.020243987441062927, -0.002085424493998289, -0.03547745198011398, -0.029035348445177078, -0.024557076394557953, 0.02914546988904476, 0.013691763393580914, -0.04397515207529068, -0.038432374596595764, -0.022464768961071968, -0.005923614837229252, 0.021235080435872078, -0.02239135466516018, 0.07348769158124924, -0.010268822312355042, -0.015600534155964851, -0.01632549986243248, 0.044415637850761414, 0.026796212419867516, 0.04518648982048035, -0.017298240214586258, -0.08016839623451233, -0.03142131119966507, 0.05557461082935333, 0.07433196157217026, 0.04588392376899719, -0.030173270031809807, 0.005680429749190807, -0.03905639797449112, -0.015123342163860798, -0.05399620160460472, 0.035972997546195984, 0.025382988154888153, 0.041736017912626266, 0.01797732152044773, -0.003266935469582677, 0.02158379927277565, 0.0021175432484596968, 0.03019162267446518, 0.015077457763254642, 0.0428372323513031, -0.0192712489515543, 0.012232654727995396, -0.05491388216614723, 0.010571656748652458, -4.212000987990905e-7, -0.008740887977182865, 0.002677327021956444, -0.02378622628748417, 0.002317138249054551, 0.0017883259570226073, -0.02297866903245449, 0.06130092218518257, -0.011929820291697979, -0.017371654510498047, -0.0016380561282858253, -0.023345740512013435, 0.07268013805150986, 0.018885822966694832, -0.00013478402979671955, -0.036633726209402084, -0.08596812188625336, -0.0005276651354506612, 0.0012136298464611173, 0.00650175241753459, -0.05979593098163605, 0.02430012635886669, -0.00556113151833415, 0.011966527439653873, -0.07745206356048584, 0.03052198700606823, -0.04496624693274498, 0.0019259777618572116, 0.03147637099027634, 0.029916319996118546, -0.009442911483347416, -0.05968581140041351, -0.029806198552250862, -0.016435621306300163, -0.029090408235788345, 0.030558694154024124, -0.044929537922143936, 0.03026503697037697, -0.04191955551505089, 0.023676104843616486, -0.029677722603082657, -0.02075788751244545, -0.0036890676710754633, -0.03938676044344902, -0.005584073718637228, -0.043865032494068146, 0.05201401934027672, 0.024758966639637947, 0.03011820837855339, -0.027383526787161827, 0.07378134876489639, 0.02116166613996029, 0.0687524750828743, 0.03118271566927433, 0.019711734727025032, -0.0018537106225267053, -0.00014137984544504434, -0.017022935673594475, 0.014251546934247017, 0.02617219090461731, -0.011755461804568768, 0.03667043149471283, 0.03799188882112503, -0.008378405123949051, 0.01378353126347065, 0.014490143395960331, 0.042066384106874466, 0.02969607710838318, 0.05054573342204094, 0.03676220029592514, 0.007878270000219345, -0.04390173777937889, -0.027713891118764877, -0.015444529242813587, -0.044525761157274246, -0.0385424979031086, -0.005551954731345177, 0.028704984113574028, -0.12113356590270996, -0.015389468520879745, -0.0034344117157161236, 0.022171111777424812, -0.014912275597453117, 0.017757078632712364, -0.010645071044564247, -0.047976233065128326, -0.04166260361671448, -0.018491221591830254, 0.008460995741188526, 0.07473573833703995, 0.0010341089218854904, -0.14029468595981598, -0.005946556571871042, -0.0043085007928311825, 0.013287984766066074, -0.01599513553082943, 0.012361129745841026, -0.0584377683699131, -0.0032302283216267824, -0.029035348445177078, -0.08376569300889969, 0.005079350434243679, 0.00976409949362278, -0.0106267174705863, 0.057226430624723434, 0.08640860766172409, 0.009135489352047443, -0.006267744116485119, -0.035147085785865784, 0.015233463607728481, -0.011012141592800617, -0.027310112491250038, 0.04371820390224457, 0.02134520187973976, -0.002436436479911208, 0.02995302714407444, -0.04485612362623215, -0.004604451823979616, 0.03894627466797829, -0.024648845195770264, -0.007653438486158848, -0.08251765370368958, 0.0033839393872767687, -0.015563827008008957, -0.011103909462690353, 0.04489283263683319, -0.03338514268398285, -0.027053162455558777, 0.07671792060136795, -0.03608311712741852, -0.07069794833660126, 0.0075111985206604, 0.004414033610373735, 0.05355571582913399, 0.023107144981622696, -0.012535488232970238, 0.00038198367110453546, 0.000958400487434119, 0.01034223660826683, -0.0651184692978859, 0.024428602308034897, -0.008933600038290024, -0.012177594006061554, -0.04191955551505089, 0.034743309020996094, 0.023694459348917007, 0.02510768361389637, -0.058804839849472046, -0.06504505127668381, -0.023988116532564163, 0.012810791842639446, 0.051243167370557785, -0.024557076394557953, 0.041882846504449844, 0.003381645306944847, -0.07187257707118988, 0.049517933279275894, -0.023198911920189857, 0.008809713646769524, -0.025896888226270676, 0.008052628487348557, -0.049371104687452316, -0.021877454593777657, 0.008791360072791576, -0.01747259870171547, -0.01756436564028263, -0.03439459204673767, 0.024263419210910797, 0.026851272210478783, 0.01238865964114666, 0.00943373516201973, 0.04691172391176224, -0.04801293835043907, -0.014224017038941383, -0.03846908360719681, -0.010489065200090408, -0.019968684762716293, -0.06203506514430046, 0.09382344782352448, -0.004315383266657591, 0.03894627466797829, 0.057409968227148056, 0.035642631351947784, 0.027034807950258255, -0.020647766068577766, 0.028741691261529922, -0.024979209527373314, 0.014600264839828014, 0.0903729796409607, 0.01756436564028263, -0.017665311694145203, -0.015435351990163326, -0.015701478347182274, -0.021436970680952072, -0.014517674222588539, 0.0027759773656725883, 0.009387850761413574, 0.06049336865544319, -0.0049646408297121525, -0.03232063725590706, 0.03727610036730766, -0.03101753257215023, -0.013131978921592236, 0.02461213804781437, 0.039423469454050064, 0.005909849423915148, 0.050252076238393784, -0.021969223394989967, -0.03865261748433113, 0.019069358706474304, -0.027713891118764877, 0.034009166061878204, -0.03604641184210777, 0.035899583250284195, 0.0072450716979801655, -0.04503966122865677, -0.056418873369693756, -0.01403130404651165, 0.005198648665100336, 0.026796212419867516, -0.026814565062522888, 0.021400263532996178, -0.011544395238161087, 0.012985151261091232, -0.034743309020996094, 0.07209282368421555, 0.007648850325495005, -0.015306876972317696, -0.055758144706487656, -0.03329337760806084, 0.018849115818738937, 0.006804585922509432, 0.01534358412027359, 0.0015669360291212797, 0.0033908220939338207, 0.06772467494010925, -0.030173270031809807, 0.006111738737672567, -0.048453424125909805, 0.00824993010610342, -0.030320098623633385, -0.04419539496302605, 0.008080159313976765, -0.034431297332048416, 0.012966797687113285, 0.008933600038290024, 0.058878254145383835, 0.0628059133887291, -0.01649068295955658, 0.002468555234372616, 0.0137009397149086, -0.014710386283695698, -0.03879944607615471, 0.0030902824364602566, 0.01649068295955658, -0.03749634325504303, 0.06853222846984863, 0.029604308307170868, -0.0458105094730854, 0.004496624693274498, 0.03857920318841934, -0.015013220719993114, -0.005042643286287785, -0.028356265276670456, 0.005721725523471832, -0.016435621306300163, -0.020721180364489555, 0.04232333227992058, -0.007823209278285503, -0.043681494891643524, 0.035660985857248306, -0.025089330971240997, 0.03279782831668854, -0.01198488101363182, 0.0013604584382846951, 0.05785045400261879, -0.008190280757844448, 0.011425097472965717, -0.038689326494932175, 0.010452358052134514, -0.00664858054369688, -0.03931334614753723 ]
39,901
lerc._lerc
decode
null
def decode(lercBlob, printInfo = False): return _decode_Ext(lercBlob, 0, printInfo)
(lercBlob, printInfo=False)
[ 0.04326336830854416, -0.0018899579299613833, -0.025545824319124222, 0.034378618001937866, -0.024662544950842857, -0.04173927754163742, 0.03010077401995659, 0.022965261712670326, 0.0015403266297653317, -0.012980742380023003, 0.008222291246056557, 0.03281988948583603, -0.052061524242162704, 0.021493131294846535, -0.025667058303952217, -0.006698201410472393, -0.07980688661336899, -0.0099239032715559, 0.02109478786587715, 0.032179079949855804, -0.03127847984433174, 0.020211508497595787, 0.001988461008295417, 0.06245304271578789, -0.047316063195466995, -0.004528971388936043, -0.0016842924524098635, 0.010296265594661236, -0.04502992704510689, 0.029217494651675224, -0.00930041167885065, -0.028992345556616783, -0.03055107407271862, 0.04447571188211441, -0.040630850940942764, 0.021077468991279602, 0.00707489438354969, 0.006364807020872831, -0.028230300173163414, -0.05559464171528816, -0.06380394101142883, 0.009794008918106556, 0.011335417628288269, -0.026931360363960266, 0.014911833219230175, -0.027537532150745392, 0.008170333690941334, -0.10772544145584106, -0.024783778935670853, -0.0015078530414029956, 0.06009763479232788, -0.005109164863824844, -0.00279488624073565, -0.008213631808757782, 0.029373368248343468, -0.04000735655426979, -0.002340257167816162, 0.056529875844717026, 0.0027754022739827633, 0.028507407754659653, -0.011188204400241375, -0.040111273527145386, -0.03359925374388695, 0.01466936431825161, -0.0033296167384833097, 0.03178073838353157, 0.004511652048677206, 0.009014644660055637, -0.059508781880140305, -0.024697182700037956, -0.015474707819521427, -0.01610685884952545, -0.03775586187839508, -0.001972224097698927, -0.01608087867498398, -0.04942900314927101, -0.02878451533615589, -0.046623293310403824, -0.050572071224451065, 0.03160754591226578, 0.033443380147218704, 0.02686208300292492, 0.08915925770998001, 0.028697919100522995, 0.006628924980759621, -0.06657501310110092, 0.1316259354352951, 0.02682744525372982, -0.023709988221526146, 0.08250868320465088, 0.027277743443846703, -0.031711459159851074, -0.032248355448246, 0.011525928974151611, -0.025892207399010658, -0.05995908007025719, 0.02040201984345913, 0.06927680969238281, 0.00034746649907901883, -0.07177077233791351, 0.01593366637825966, 0.00410032132640481, -0.048563044518232346, -0.048355214297771454, -0.03429201990365982, 0.03671671077609062, 0.009837307035923004, 0.03181537613272667, 0.015890369191765785, -0.05268501490354538, -0.010244308039546013, 0.029944900423288345, -0.0186008233577013, -0.021267980337142944, 0.02090427838265896, 0.017007457092404366, 0.01965729519724846, -0.04845912754535675, -0.0335819348692894, 0.013517637737095356, 0.004897004459053278, -0.023450199514627457, -0.018271759152412415, -0.05646060034632683, -0.025441909208893776, 0.027173828333616257, 0.03598930314183235, 0.0010077611077576876, 0.013595573604106903, -0.0012242511147633195, 0.05639132484793663, 0.01748373545706272, -0.05067598819732666, 0.031139926984906197, 0.03261205926537514, -0.042154937982559204, 0.04121970385313034, 0.0018823808059096336, -0.03702845424413681, 0.0076637472957372665, 0.023034539073705673, -0.005399261601269245, 0.07648159563541412, 0.014972450211644173, -0.04506456479430199, -0.0087028993293643, 0.005472868215292692, -0.052061524242162704, -0.028576685115695, 0.0013270839117467403, -0.014738641679286957, -0.017171990126371384, -0.02208198420703411, 0.04326336830854416, 0.04551486298441887, -0.0031824035104364157, 0.008360845036804676, 0.013517637737095356, -0.018704738467931747, 0.032923802733421326, 0.017319202423095703, 0.027780000120401382, -0.03387635946273804, -0.0644620731472969, 0.0105647137388587, -0.05313531309366226, -1.6490452026118874e-7, -0.024281522259116173, -0.07052379101514816, 0.032386910170316696, 0.01703343540430069, -0.00646439241245389, -0.008616303093731403, 0.02308649756014347, 0.07523461431264877, 0.05140339210629463, 0.013474339619278908, 0.06383857876062393, -0.0396609753370285, 0.0006878970889374614, -0.02954655885696411, 0.04319409281015396, 0.03501942753791809, 0.01617613434791565, 0.04700431600213051, -0.0372362844645977, 0.039903443306684494, 0.040353741496801376, 0.05417446419596672, -0.06366539001464844, 0.044822096824645996, 0.029252132400870323, 0.025407269597053528, -0.028940387070178986, 0.017734862864017487, -0.051334116607904434, 0.012253335677087307, 0.0422588549554348, -0.05140339210629463, -0.028992345556616783, 0.00044109844020567834, 0.044579628854990005, 0.00589285884052515, -0.014496172778308392, -0.06602080166339874, 0.033408742398023605, -0.0034963139332830906, 0.057326558977365494, -0.013812064193189144, -0.008373834192752838, 0.026134677231311798, 0.012106122449040413, -0.001954904990270734, -0.011854994110763073, 0.015682537108659744, -0.018306396901607513, -0.12961691617965698, 0.023017220199108124, 0.03529653325676918, 0.0038535224739462137, 0.027710724622011185, 0.016730349510908127, -0.04877087473869324, 0.021562406793236732, -0.02183951437473297, 0.050606708973646164, 0.00980266835540533, -0.006581297144293785, 0.029459964483976364, 0.003987746313214302, -0.05614885315299034, -0.03153826668858528, -0.0819544643163681, -0.011491291224956512, 0.07641232013702393, 0.07849062979221344, 0.01939750649034977, 0.02635982632637024, -0.03520993888378143, -0.04451034963130951, 0.055282894521951675, 0.008876090869307518, 0.008226620964705944, 0.04821665957570076, -0.014998429454863071, -0.019778529182076454, 0.04004199802875519, 0.07107800990343094, -0.07980688661336899, -0.013673510402441025, 0.00015370792243629694, -0.05611421540379524, 0.04818202182650566, 0.04170463979244232, 0.014487513341009617, -0.02038470096886158, 0.009222475811839104, -0.06747561693191528, 0.03782513737678528, 0.005996773950755596, -0.010720586404204369, -0.0868038460612297, 0.03945314511656761, 0.039418503642082214, 0.007984152063727379, -0.0065250094048678875, -0.014019894413650036, -0.03179805725812912, 0.01180303655564785, 0.005680698435753584, 0.06858403980731964, -0.05375880375504494, -0.023502158001065254, -0.007746013347059488, 0.0038426981773227453, 0.0015695526963099837, 0.039141397923231125, -0.02755485102534294, 0.02209930308163166, -0.0061266678385436535, 0.021787557750940323, -0.036924540996551514, -0.006654903758317232, -0.00015627873654011637, 0.01963997632265091, 0.005252048373222351, -0.037374839186668396, -0.03373780846595764, -0.006711191032081842, -0.017336521297693253, -0.013812064193189144, 0.01712869107723236, -0.033928316086530685, 0.03581611067056656, 0.05251182243227959, -0.004619897343218327, 0.020817682147026062, -0.007668077014386654, -0.0038188842590898275, 0.002176807262003422, -0.06771808117628098, -0.02338092401623726, 0.09726464003324509, 0.012322613038122654, -0.038656461983919144, -0.006139657460153103, -0.015301515348255634, -0.033633891493082047, -0.024454714730381966, 0.031694140285253525, 0.06751025468111038, 0.07014276832342148, 0.01989976316690445, -0.00845177099108696, -0.04378294572234154, -0.027000637724995613, 0.025770973414182663, 0.027676085010170937, 0.04305553808808327, 0.006083369720727205, 0.03399759531021118, -0.0472121462225914, -0.015362132340669632, 0.012313952669501305, 0.01143933366984129, -0.08721950650215149, 0.015232238918542862, -0.004286502487957478, 0.07184005528688431, 0.0008112963987514377, -0.01017503160983324, -0.016764987260103226, 0.009646795690059662, -0.03032592311501503, 0.05417446419596672, -0.005481527652591467, -0.07655087858438492, -0.012902805581688881, -0.06432351469993591, -0.04499528929591179, 0.03403223305940628, -0.06591688841581345, 0.02582293190062046, 0.03127847984433174, -0.0024398425593972206, 0.0694500058889389, 0.016375305131077766, 0.011603865772485733, 0.008577334694564342, 0.05188833177089691, -0.011491291224956512, -0.08874359726905823, -0.020246148109436035, 0.04523775726556778, 0.0013108471175655723, -0.011222843080759048, -0.0018195987213402987, 0.03633568808436394, 0.011032331734895706, -0.013041359372437, 0.022774752229452133, -0.02140653505921364, -0.022688155993819237, -0.0546940416097641, -0.01578645221889019, -0.03927995264530182, -0.02383122220635414, 0.012365910224616528, 0.04863232001662254, 0.03550436347723007, -0.024541310966014862, 0.0012220862554386258, -0.019709251821041107, -0.005096175242215395, -0.03174609690904617, -0.03204052522778511, -0.0005590855143964291, -0.012452506460249424, -0.01453947089612484, 0.06165635958313942, 0.016349326819181442, 0.03706309199333191, -0.026671571657061577, -0.020246148109436035, 0.0008145437459461391, 0.017604969441890717, -0.06380394101142883, 0.03931459039449692, -0.03775586187839508, -0.012348591350018978, 0.01504172757267952, 0.015197600238025188, 0.01887793093919754, -0.015180281363427639, -0.05150730907917023, 0.01939750649034977, -0.04125434160232544, 0.03527921438217163, -0.026221273466944695, -0.03785977512598038, -0.03952242061495781, 0.031399715691804886, -0.030377881601452827, -0.013422382064163685, -0.009620817378163338, 0.05857354402542114, 0.016124177724123, 0.029858306050300598, -0.04596516489982605, -0.024160288274288177, 0.0035006438847631216, -0.02712187170982361, -0.008226620964705944, -0.04198174551129341, -0.014816577546298504, 0.05365489050745964, 0.01116222608834505, 0.009854625910520554, -0.02260155975818634, -0.009742051362991333, 0.006741499528288841, 0.05174977704882622, -0.036404963582754135, 0.0035699205473065376, -0.025268716737627983, 0.03588538616895676, 0.021978067234158516, 0.03425738215446472, -0.024939652532339096, -0.006118008401244879, 0.02086963877081871, -0.04052693396806717, 0.021995387971401215, -0.09726464003324509, -0.013812064193189144, 0.03406687080860138, -0.03181537613272667, 0.0035807450767606497, -0.008607643656432629, 0.041912470012903214, 0.011681802570819855, 0.033633891493082047, 0.0016561486991122365, -0.01939750649034977, 0.02261887863278389, 0.023709988221526146, -0.038898929953575134, 0.04101186990737915, -0.0013671345077455044, -0.041115786880254745, 0.005996773950755596, 0.020003678277134895, -0.008988666348159313, -0.018566185608506203, 0.00042783841490745544, 0.001277291215956211, 0.0035915696062147617, 0.035383131355047226, -0.006256561726331711, 0.021042831242084503, -0.04838985204696655, -0.006957989651709795, 0.02459326758980751, -0.08250868320465088, 0.03531385585665703, 0.05136875435709953, 0.010226989164948463, 0.04378294572234154, -0.023935137316584587, -0.025459228083491325, -0.01391597930341959, -0.03702845424413681, 0.06054793298244476, 0.04769708216190338, 0.05192296952009201, 0.016089539974927902, 0.0421895757317543, -0.036370325833559036, -0.019068442285060883, -0.024039052426815033, -0.03806760907173157, -0.07100872695446014, -0.02332896552979946, -0.05251182243227959, 0.009664115495979786, -0.014461534097790718, 0.004323306027799845, 0.025528505444526672, 0.0030070466455072165, 0.014080511406064034, -0.08832793682813644, 0.11846334487199783, -0.05822715908288956, -0.0028490088880062103, 0.043124813586473465, -0.005879869218915701, 0.04194710776209831, -0.011560567654669285, -0.03626640886068344, -0.04939436540007591, -0.008780836127698421, -0.03327018767595291, -0.022463005036115646, -0.08611107617616653, -0.0004984682891517878, -0.025493865832686424, 0.03079354204237461, 0.005633070599287748, -0.026273230090737343, 0.02907894179224968, -0.07731292396783829, 0.010036477819085121, 0.015370792709290981, 0.014175767078995705, -0.07779785990715027, 0.06307653337717056, 0.007373650558292866, 0.013240530155599117, -0.011032331734895706, 0.04080403968691826, 0.03427470102906227, -0.012469826266169548, 0.017726203426718712, -0.05521361902356148, 0.016262730583548546, -0.01441823597997427, -0.006217593792825937, 0.02880183421075344, -0.0017113536596298218, -0.004442375618964434, -0.03058571182191372, -0.010971714742481709, -0.008153014816343784, -0.05573319271206856, -0.024177607148885727, 0.04066548869013786, 0.011577886529266834, 0.04911725968122482, -0.02982366643846035, -0.045826610177755356, 0.009412986226379871, 0.023502158001065254, -0.0016972818411886692, -0.01892988756299019, -0.02658497542142868, 0.013742786832153797, -0.0032300313469022512, 0.06782199442386627, 0.05943950265645981, 0.02687940187752247, -0.004059188067913055, 0.0049229832366108894, 0.0011582216247916222, -0.02956387959420681, -0.021908791735768318, -0.012651677243411541, 0.02661961503326893, -0.01647922210395336, -0.012296633794903755, -0.037132371217012405, 0.03424006327986717, 0.05770758166909218, -0.02885379083454609, 0.016444582492113113, 0.054070550948381424, 0.08049965649843216, 0.028871111571788788, 0.020956235006451607, -0.023450199514627457, -0.03155558556318283, 0.018583504483103752, 0.006351817399263382, 0.05691089853644371, -0.0012740438105538487, 0.04021518677473068, 0.007975492626428604, 0.0004619356186594814, -0.004145784303545952, 0.04741997644305229, -0.029390687122941017, 0.01816784404218197, -0.031226521357893944, -0.05123019963502884, 0.012824869714677334, 0.009196496568620205, -0.03595466539263725, 0.021804876625537872, 0.028247619047760963, 0.028905749320983887, -0.04007663577795029, -0.007936524227261543, -0.028767194598913193, -0.02829957753419876, -0.011621184647083282, 0.042328130453825, -0.0026974657084792852, -0.025996122509241104, 0.06886114925146103, -0.03079354204237461, 0.00040591880679130554, -0.003979086875915527, -0.03772122412919998, -0.03585074841976166, -0.009750710800290108, -0.009464943781495094, -0.015518005937337875, 0.018046608194708824, 0.0036673410795629025, 0.04925581067800522, 0.057742223143577576, -0.004078672267496586, -0.013335785828530788, -0.02611735835671425, -0.01763094775378704, 0.04447571188211441, -0.04031910374760628, 0.007339011877775192, -0.013967936858534813, -0.01106697041541338, 0.008988666348159313, 0.01302404049783945, 0.06636718660593033, -0.019293591380119324, 0.02705259434878826, -0.03328750655055046, 0.0167909674346447, 0.009698753245174885, 0.01575181446969509, 0.06307653337717056, 0.013820723630487919, 0.026411784812808037, 0.051784414798021317, -0.008443111553788185, 0.04153144732117653, 0.027901235967874527, -0.013015381060540676, 0.004892674740403891, 0.031676821410655975, 0.029910262674093246, 0.026515699923038483, 0.020419340580701828, 0.007178809493780136, -0.040353741496801376, -0.019726572558283806, -0.02634250745177269, -0.021042831242084503, 0.04866695776581764, -0.013344445265829563, 0.047108229249715805, 0.002232012338936329, -0.03945314511656761, 0.05486723408102989, 0.06775271892547607, 0.02062717080116272, -0.03281988948583603, 0.0336165726184845, 0.031711459159851074, 0.04551486298441887, 0.00483638746663928, 0.028767194598913193, -0.014799258671700954, -0.09643331915140152, -0.039418503642082214, 0.020020999014377594, 0.03472500294446945, -0.005719666834920645, 0.0029918921645730734, 0.0198824442923069, 0.00521307997405529, -0.06782199442386627, -0.004810408689081669, 0.016583137214183807, -0.007035925984382629, -0.035175301134586334, 0.022514963522553444, -0.03133043646812439, -0.043159451335668564, -0.04180855676531792, 0.11652359366416931, 0.01688622310757637, -0.03560828045010567, 0.05039887875318527, -0.024749141186475754, 0.02630786783993244, 0.013699489645659924, 0.028455449268221855, -0.022774752229452133, 0.0030243657529354095, 0.03706309199333191, -0.06293798238039017, 0.0142883425578475, 0.04665793105959892, 0.03560828045010567, -0.00850805826485157, -0.03500210866332054, 0.05895456671714783, 0.009473604150116444, -0.05871209502220154, 0.014123809523880482, 0.028905749320983887, 0.011075629852712154, -0.039418503642082214, -0.029269453138113022, -0.015968304127454758, 0.02513016201555729, 0.007906216196715832, 0.005754305049777031, -0.03831007704138756, -0.013266509398818016, 0.00521307997405529, -0.02284402772784233, 0.04281307011842728, -0.040353741496801376, -0.06439279764890671, -0.03581611067056656, 0.030481796711683273, -0.06934608519077301, 0.047593168914318085, -0.030377881601452827, -0.003453016048297286, -0.02109478786587715, 0.01934554986655712, 0.04741997644305229, 0.11499950289726257, 0.0446489043533802, 0.055282894521951675, -0.017804140225052834, 0.040111273527145386, -0.03876037523150444, 0.012876827269792557, 0.03205784410238266, -0.03306235745549202, -0.015777792781591415, -0.03081086091697216, -0.08721950650215149, -0.0497407503426075, -0.033426061272621155, 0.0029399346094578505, 0.030152732506394386, -0.03602394089102745, 0.026723530143499374, 0.025528505444526672, -0.051334116607904434, 0.10232184827327728, -0.016453241929411888, 0.008326206356287003, -0.005983784329146147, 0.032906483858823776, 0.05136875435709953, 0.023917818441987038, -0.003498479025438428, 0.007525193504989147, -0.05386272072792053, 0.03876037523150444, -0.015206259675323963, 0.00026533560594543815, -0.028905749320983887, 0.05763830617070198, -0.035365812480449677, -0.03903748095035553, -0.010919757187366486, -0.0044120666570961475, -0.005139473360031843, -0.04603444039821625, -0.09068334102630615, -0.02308649756014347, -0.015950985252857208, -0.006234913133084774 ]
39,902
lerc._lerc
decode_4D
null
def decode_4D(lercBlob, printInfo = False): return _decode_Ext(lercBlob, 1, printInfo)
(lercBlob, printInfo=False)
[ 0.04332546517252922, 0.04534871503710747, -0.03924408182501793, 0.017999950796365738, -0.01704937219619751, -0.026459230110049248, 0.022639473900198936, -0.01274124439805746, -0.027505740523338318, 0.007874978706240654, 0.0014018857618793845, 0.000248818367253989, -0.06694167852401733, 0.043778952211141586, 0.004242721013724804, -0.049464982002973557, -0.05441845580935478, 0.02986038476228714, 0.00034611098817549646, 0.00885608047246933, -0.020511573180556297, 0.03634873777627945, 0.0008192201494239271, 0.06320913136005402, -0.048313822597265244, -0.002843015594407916, 0.003202752908691764, 0.025185978040099144, -0.048941727727651596, 0.04461615905165672, -0.029755733907222748, 0.0004278694686945528, -0.0502324216067791, 0.045523133128881454, -0.02393016777932644, 0.024209236726164818, 0.019360411912202835, -0.010342995636165142, -0.0448952279984951, -0.034569673240184784, -0.05999983847141266, 0.003488362766802311, 0.021034827455878258, -0.022116219624876976, -0.024610398337244987, -0.009296486154198647, 0.021296454593539238, -0.10918574780225754, -0.0028277540113776922, 0.024226678535342216, 0.08518581837415695, -0.04067431017756462, -0.004225279204547405, 0.008498523384332657, 0.026354579254984856, -0.029284805059432983, 0.004861905239522457, 0.06645330786705017, -0.006906958296895027, 0.004085744731128216, -0.00598254194483161, -0.03920919820666313, -0.0231278445571661, 0.03153479844331741, -0.03531967103481293, 0.04402313753962517, 0.017154023051261902, 0.011328457854688168, -0.07339514791965485, -0.00211372971534729, -0.01771216094493866, -0.032180145382881165, -0.03160456568002701, 0.008786313235759735, -0.01638658344745636, -0.02931968867778778, -0.031761541962623596, -0.05131381377577782, -0.00007024417573120445, 0.00805811770260334, 0.018470879644155502, -0.005699112545698881, 0.10583692044019699, 0.018872041255235672, 0.004678766243159771, -0.04932544752955437, 0.10186018794775009, 0.031360380351543427, -0.01902901753783226, 0.022238312289118767, 0.025308070704340935, -0.027662716805934906, -0.03749989718198776, 0.04001152142882347, -0.046046387404203415, -0.056999847292900085, 0.030034802854061127, 0.06722074747085571, 0.0036649610847234726, -0.055953338742256165, 0.001275432645343244, -0.055430084466934204, -0.06502307951450348, -0.052534740418195724, -0.058744028210639954, 0.04594173654913902, 0.006614807527512312, 0.04290686175227165, -0.02867434173822403, -0.07646490633487701, -0.010421483777463436, 0.037604548037052155, -0.01009881030768156, -0.002055953722447157, 0.013395312242209911, -0.013325545005500317, 0.020947618409991264, -0.015008680522441864, -0.024017376825213432, 0.0027819692622870207, 0.027558065950870514, -0.013622055761516094, -0.08162768930196762, -0.00818893127143383, -0.027976669371128082, -0.008502883836627007, 0.02005808614194393, 0.001303775585256517, 0.0028909805696457624, -0.004268883727490902, 0.06418587267398834, 0.057662636041641235, -0.07241840660572052, -0.004292866215109825, 0.024261562153697014, -0.06359285116195679, -0.0011762322392314672, -0.028848759829998016, -0.015784841030836105, -0.01077031996101141, -0.015113331377506256, -0.014851704239845276, 0.09390672296285629, 0.05787193775177002, -0.02815108746290207, 0.03596501797437668, 0.04276732727885246, -0.011781944893300533, -0.03460455685853958, -0.005890972446650267, 0.004388796165585518, 0.028744108974933624, 0.011206365190446377, 0.017895299941301346, 0.031238287687301636, -0.02138366363942623, -0.003137346124276519, -0.01639530435204506, -0.022761566564440727, -0.003647519275546074, 0.031377822160720825, 0.0028866201173514128, -0.05630217492580414, -0.03329642117023468, 0.01943017914891243, -0.05030218884348869, -0.033104561269283295, -0.02433132939040661, -0.03711617738008499, 0.057523101568222046, 0.04018593952059746, 0.015758678317070007, -0.024749932810664177, 0.04848824068903923, 0.05905798077583313, 0.06488354504108429, -0.016709256917238235, 0.028901085257530212, -0.03610455244779587, -0.015287749469280243, 0.02459295652806759, 0.029912710189819336, 0.07632537186145782, 0.04779056832194328, 0.0475812666118145, -0.020127853378653526, 0.05434868857264519, 0.025691790506243706, 0.057418450713157654, -0.056476593017578125, 0.03212781995534897, 0.040220823138952255, 0.0036671413108706474, -0.028081320226192474, 0.04039524123072624, -0.0303836390376091, 0.03938361629843712, 0.00026666896883398294, -0.020633665844798088, -0.053302180022001266, 0.02945922315120697, 0.0030479568522423506, -0.004739812575280666, -0.06624400615692139, -0.06038355827331543, 0.027296436950564384, -0.0036911237984895706, 0.045244064182043076, 0.006161320488899946, 0.025185978040099144, 0.044720809906721115, 0.003606094978749752, 0.010447646491229534, -0.004210017621517181, 0.012898220680654049, -0.05427892133593559, -0.0937671884894371, 0.007190387696027756, 0.035075485706329346, -0.0014149671187624335, 0.02459295652806759, 0.03134293854236603, -0.048558007925748825, 0.02300575189292431, -0.04810452088713646, 0.01492147147655487, -0.006784865166991949, -0.0035603102296590805, 0.013665660284459591, -0.010561018250882626, -0.03247665613889694, -0.030034802854061127, -0.08951138705015182, 0.0025879291351884604, 0.08644162863492966, 0.0700114369392395, 0.010011601261794567, 0.0018074079416692257, -0.0024571155663579702, -0.046185921877622604, 0.048418473452329636, 0.005729635711759329, 0.03252898156642914, 0.035354554653167725, 0.012959267012774944, -0.010656948201358318, 0.012052292935550213, 0.009340090677142143, -0.05616264045238495, -0.01234880369156599, -0.037848733365535736, -0.07883699983358383, 0.03279060870409012, 0.05773240327835083, -0.010918575339019299, 0.007456375285983086, 0.02391272597014904, -0.052395205944776535, 0.024488305673003197, -0.022238312289118767, -0.00041260788566432893, -0.06683702766895294, -0.0034382175654172897, 0.010290670208632946, 0.030488289892673492, 0.0370464101433754, 0.009305207058787346, -0.07095329463481903, 0.03197084367275238, -0.03648827224969864, 0.09083696454763412, -0.03795338422060013, -0.05302311107516289, -0.00383065827190876, -0.019098784774541855, 0.012636593542993069, 0.02986038476228714, -0.024470863863825798, 0.0019066082313656807, 0.007495619356632233, 0.011529038660228252, -0.03423827886581421, -0.017808090895414352, 0.0357208326458931, -0.00623980863019824, 0.04269756004214287, -0.02112203650176525, -0.0303836390376091, 0.025395279750227928, -0.01888948306441307, -0.030749917030334473, 0.013613334856927395, -0.0006306305876933038, 0.04018593952059746, 0.02604062668979168, -0.007569747045636177, 0.03725571185350418, -0.02166273258626461, -0.019744133576750755, 0.023982493206858635, -0.05881379544734955, -0.017624951899051666, 0.11218574643135071, 0.029302246868610382, -0.029790617525577545, -0.023755749687552452, 0.01288949977606535, -0.04663940891623497, -0.018662739545106888, -0.01401449739933014, 0.06551145017147064, 0.08518581837415695, 0.011014505289494991, -0.025744115933775902, -0.007992710918188095, -0.021837150678038597, 0.0033008630853146315, 0.03882547467947006, 0.0383371040225029, 0.00003263526741648093, 0.019709249958395958, 0.00859445333480835, -0.007992710918188095, 0.01927320286631584, 0.017895299941301346, -0.05989518761634827, 0.014781937003135681, -0.02206389419734478, 0.05326729640364647, -0.0003297592920716852, -0.03266851603984833, -0.02192435972392559, -0.012924383394420147, -0.03872082382440567, 0.09006952494382858, -0.02656388096511364, -0.03593013435602188, -0.027017368003726006, -0.0554998517036438, -0.010264507494866848, 0.04412778839468956, -0.07241840660572052, 0.012174385599792004, 0.025866208598017693, 0.006797946523874998, 0.0436045341193676, 0.027924343943595886, 0.00597818149253726, 0.007582828402519226, 0.05759286880493164, -0.008624976500868797, -0.07360444962978363, -0.008677301928400993, 0.06826725602149963, -0.0007728903437964618, -0.019133668392896652, 0.003804495558142662, 0.05469752475619316, 0.007831374183297157, 0.020424364134669304, 0.022395288571715355, -0.040604542940855026, -0.00952322967350483, -0.030069686472415924, 0.01967436634004116, -0.03729059547185898, -0.04862777516245842, -0.013177289627492428, 0.04583708569407463, 0.05504636466503143, -0.04597662016749382, 0.03477897495031357, -0.009165672585368156, -0.002319761086255312, -0.020023202523589134, -0.035215020179748535, 0.0006159140611998737, 0.026720857247710228, -0.013630776666104794, 0.024610398337244987, -0.009906950406730175, 0.031116195023059845, 0.004670045338571072, 0.0032071133609861135, -0.010090089403092861, 0.014502868056297302, -0.00951450876891613, 0.054662641137838364, -0.07172073423862457, -0.006749981548637152, 0.01993599347770214, 0.03802315145730972, 0.008380791172385216, -0.011328457854688168, -0.048034753650426865, 0.03408130258321762, -0.0806509479880333, 0.03209293633699417, -0.034970834851264954, -0.0383719876408577, -0.08023234456777573, 0.0422440730035305, -0.01663948968052864, -0.011188923381268978, -0.005372078623622656, -0.008167129009962082, 0.0541393868625164, 0.020965060219168663, -0.034813858568668365, -0.04370918497443199, 0.0024505748879164457, 0.0054026017896831036, -0.0024353130720555782, -0.01639530435204506, 0.01439821720123291, 0.02851736545562744, 0.03387200087308884, 0.012819732539355755, 0.00218131672590971, 0.020145295187830925, 0.009200556203722954, 0.05138358101248741, -0.049883585423231125, 0.01010753121227026, -0.04583708569407463, 0.01731972023844719, -0.019517388194799423, 0.08734860271215439, -0.0005161686567589641, 0.011511596851050854, 0.000490005942992866, -0.025796441361308098, 0.018575530499219894, -0.095162533223629, -0.01342147495597601, 0.004438941366970539, -0.006893876940011978, 0.03791850060224533, 0.020145295187830925, 0.013726707547903061, -0.00739968940615654, 0.03791850060224533, -0.017607510089874268, -0.07165096700191498, 0.04186035320162773, 0.0053241136483848095, -0.028063878417015076, 0.059127748012542725, -0.03219758719205856, -0.01520054042339325, -0.009854624979197979, 0.0013288481859490275, -0.018662739545106888, -0.023302262648940086, -0.003976733423769474, 0.021069711074233055, 0.06146495044231415, 0.022761566564440727, 0.02194180153310299, -0.016683094203472137, -0.010936017148196697, -0.032040610909461975, 0.02204645238816738, -0.032842934131622314, 0.011904037557542324, 0.08686023205518723, -0.005241265054792166, 0.012436012737452984, -0.032703399658203125, -0.027819693088531494, -0.012566826306283474, -0.007957827299833298, 0.053860317915678024, 0.03788361698389053, 0.04782545194029808, 0.01678774505853653, 0.048941727727651596, -0.013447637669742107, 0.006549400743097067, -0.019081342965364456, -0.024122027680277824, -0.07241840660572052, -0.01170345675200224, -0.061499834060668945, -0.012697639875113964, -0.015488330274820328, -0.03291270136833191, 0.04904637858271599, -0.03934873268008232, 0.013465079478919506, -0.039976637810468674, 0.08113931864500046, -0.06624400615692139, -0.021087152883410454, 0.05759286880493164, 0.009994159452617168, 0.023092960938811302, -0.06306959688663483, -0.029406897723674774, -0.024156911298632622, 0.0026620568241924047, -0.06265099346637726, -0.04133709892630577, -0.09704624861478806, 0.007962187752127647, -0.017738323658704758, 0.01598542183637619, 0.019883668050169945, -0.016883675009012222, 0.025935975834727287, -0.10116251558065414, -0.0012863337760791183, -0.010552297346293926, 0.032965026795864105, -0.03781384974718094, 0.08427884429693222, 0.010151135735213757, 0.017790649086236954, -0.022168545052409172, 0.0317092165350914, 0.0231104027479887, 0.0054549272172153, 0.023197611793875694, -0.01771216094493866, 0.0013135866029188037, 0.009217998012900352, -0.015784841030836105, 0.009357532486319542, 0.030715033411979675, 0.01810460165143013, -0.006985446438193321, 0.02127901278436184, 0.027540624141693115, -0.02640690468251705, -0.02075575850903988, 0.05734868347644806, 0.0014106066664680839, 0.008938929066061974, -0.04873242601752281, -0.050546374171972275, 0.020563898608088493, -0.022901101037859917, -0.004787777550518513, -0.039313849061727524, -0.018697623163461685, 0.019238319247961044, 0.015776120126247406, 0.06673237681388855, 0.08902301639318466, 0.01532263308763504, 0.004713649861514568, 0.0011707816738635302, 0.02323249541223049, -0.07423235476016998, 0.017520301043987274, -0.007504340261220932, 0.04269756004214287, 0.008921487256884575, -0.04562778398394585, -0.04956963285803795, 0.016709256917238235, 0.034273162484169006, -0.010569739155471325, -0.004257982596755028, 0.04482546076178551, 0.02113947831094265, 0.022116219624876976, -0.011476713232696056, -0.006270331796258688, -0.013726707547903061, -0.037744082510471344, 0.005001440178602934, 0.06941841542720795, 0.003538507968187332, 0.008559569716453552, -0.0019000675529241562, -0.03235456347465515, -0.05762775242328644, 0.058604493737220764, -0.07367421686649323, 0.02656388096511364, -0.0017888760194182396, -0.020773200318217278, -0.0007102088420651853, 0.012872057966887951, -0.034813858568668365, 0.039069660007953644, 0.03102898597717285, 0.05706961452960968, -0.04426732286810875, -0.0044999876990914345, -0.05389520153403282, -0.03153479844331741, -0.0185057632625103, 0.03470920771360397, 0.010168577544391155, -0.043011512607336044, 0.07088352739810944, -0.01812204346060753, -0.006584284361451864, -0.0204766895622015, -0.014633681625127792, -0.040744077414274216, 0.014433100819587708, 0.006976725533604622, -0.04203477129340172, 0.051069628447294235, -0.009688926860690117, 0.024401096627116203, -0.0003924407938029617, 0.004949114751070738, 0.011973804794251919, -0.012732523493468761, -0.06251145899295807, 0.01967436634004116, -0.04911614581942558, -0.0006606086972169578, -0.0025726675521582365, -0.040220823138952255, 0.012061013840138912, 0.004388796165585518, 0.06449982523918152, -0.04015105590224266, -0.0045653944835066795, -0.00285827717743814, 0.03444758057594299, 0.012863337062299252, 0.04067431017756462, 0.068720743060112, 0.010090089403092861, 0.04304639622569084, 0.02138366363942623, -0.008276140317320824, 0.020546456798911095, -0.018418554216623306, -0.00885608047246933, 0.006213645916432142, 0.029703408479690552, 0.005358997266739607, 0.01465984433889389, 0.030331313610076904, 0.021244129166007042, -0.02300575189292431, -0.025465046986937523, -0.01102322619408369, -0.010717994533479214, 0.03409874439239502, -0.04084872826933861, 0.02986038476228714, 0.004997079726308584, -0.025813883170485497, 0.024924350902438164, 0.05270915850996971, -0.019482504576444626, -0.0357208326458931, 0.025133652612566948, 0.01386624202132225, 0.03777896612882614, -0.02115692012012005, 0.03052317351102829, -0.016412746161222458, -0.0753486305475235, -0.02590109221637249, -0.017389487475156784, 0.044197555631399155, 0.009584276005625725, 0.014232520014047623, 0.04412778839468956, 0.0005077202804386616, -0.095162533223629, -0.030087128281593323, -0.001969834789633751, 0.021715058013796806, -0.010717994533479214, 0.0017103877617046237, -0.05434868857264519, -0.014084264636039734, -0.033749908208847046, 0.11553457379341125, 0.010656948201358318, 0.0004245991294737905, 0.037081293761730194, 0.009872066788375378, -0.0028408353682607412, 0.004813940264284611, -0.0005815754411742091, -0.05776728689670563, 0.004109727218747139, 0.032965026795864105, -0.01691855862736702, 0.010029043070971966, 0.02138366363942623, 0.042209189385175705, -0.03554641455411911, -0.02523830346763134, 0.02363365702331066, 0.04981381818652153, 0.0008557389373891056, 0.007124980911612511, -0.0024898189585655928, -0.020180178806185722, -0.03770919889211655, -0.005437485408037901, 0.00042568924254737794, 0.025029001757502556, 0.016360420733690262, -0.01729355752468109, -0.015505772083997726, -0.025866208598017693, 0.013473800383508205, 0.007953466847538948, 0.06027890741825104, -0.07318584620952606, -0.03554641455411911, -0.024924350902438164, 0.033645257353782654, -0.07681374251842499, 0.04904637858271599, -0.02009296976029873, -0.004582836292684078, -0.041406866163015366, 0.03076735883951187, 0.029633641242980957, 0.08037187904119492, -0.010805203579366207, 0.07730211317539215, 0.01638658344745636, 0.055430084466934204, -0.046709176152944565, 0.014415659010410309, 0.030488289892673492, -0.011398225091397762, -0.016735419631004333, -0.02379063330590725, -0.08120908588171005, -0.008498523384332657, 0.00402469839900732, -0.0020548636093735695, 0.02112203650176525, -0.036418505012989044, 0.013098801486194134, 0.02072087489068508, -0.02204645238816738, 0.10492994636297226, -0.03291270136833191, 0.032441772520542145, 0.002539964159950614, 0.0515579991042614, 0.010866249911487103, 0.0016318996204063296, 0.017520301043987274, 0.030627824366092682, -0.04967428371310234, -0.02072087489068508, -0.03910454362630844, -0.05099986121058464, -0.002803771523758769, 0.018418554216623306, 0.002631533658131957, -0.049744050949811935, -0.017084255814552307, -0.01196508388966322, 0.004770335741341114, -0.02406970225274563, -0.09327881783246994, 0.017145302146673203, -0.005127893295139074, 0.013770312070846558 ]
39,903
lerc._lerc
decode_ma
null
def decode_ma(lercBlob, printInfo = False): fctErr = 'Error in decode_ma(): ' (result, version, dataType, nValuesPerPixel, nCols, nRows, nBands, nValidPixels, blobSize, nMasks, zMin, zMax, maxZErrUsed, nUsesNoData) = getLercBlobInfo_4D(lercBlob, printInfo) if result > 0: print(fctErr, 'getLercBlobInfo() failed with error code = ', result) return result (result, npArr, npValidMask, npmaNoData) = _decode_Ext(lercBlob, 1, printInfo) if result > 0: print(fctErr, '_decode_Ext() failed with error code = ', result) return result npmaArr = convert2ma(npArr, npValidMask, nValuesPerPixel, nBands, npmaNoData) return (result, npmaArr, nValuesPerPixel, npmaNoData)
(lercBlob, printInfo=False)
[ 0.029787588864564896, 0.09259230643510818, 0.006224541459232569, 0.05719361454248428, 0.015308763831853867, -0.0398731492459774, 0.017239272594451904, -0.017672285437583923, -0.05961126089096069, 0.028073584660887718, -0.028687017038464546, 0.040414415299892426, -0.04914681240916252, 0.016842346638441086, -0.015435058623552322, -0.013441401533782482, -0.07671521604061127, 0.006111777853220701, 0.02655804343521595, 0.04665699601173401, -0.0016384526388719678, -0.01096962671726942, -0.013775181025266647, 0.07462232559919357, -0.015353868715465069, 0.008452747017145157, 0.004449645057320595, 0.019629858434200287, -0.010572699829936028, 0.07058088481426239, -0.013197831809520721, 0.010121645405888557, -0.008786526508629322, 0.0531160868704319, -0.004138418007642031, -0.01482162531465292, 0.024753829464316368, -0.006445557810366154, -0.11994420737028122, -0.0708334743976593, -0.02388780564069748, -0.02679259143769741, 0.06390529125928879, 0.029516955837607384, -0.00962548702955246, -0.06109071522951126, 0.016255976632237434, -0.07335937768220901, -0.016219891607761383, -0.01860145665705204, 0.017158083617687225, -0.049507658928632736, 0.02585439942777157, 0.02946282923221588, 0.008772995322942734, 0.0021898658014833927, -0.0127287358045578, 0.07151907682418823, 0.006774826906621456, -0.007054480258375406, -0.03962055966258049, -0.02145211584866047, -0.006720700766891241, -0.02282331883907318, -0.0030987390782684088, 0.008258793503046036, 0.005868209060281515, 0.03408161923289299, -0.04095567762851715, 0.03603017330169678, -0.033955324441194534, -0.0011806330876424909, 0.004672916606068611, 0.017329484224319458, 0.021127356216311455, -0.02899373322725296, -0.015065194107592106, -0.050590187311172485, -0.03458679839968681, 0.022913528606295586, -0.012449082918465137, 0.05149229243397713, 0.05452337488532066, 0.030653610825538635, -0.00841666292399168, -0.05737403407692909, 0.08566412329673767, 0.04247121885418892, 0.0072033279575407505, 0.019395310431718826, 0.0024582429323345423, -0.01394658163189888, 0.02453732304275036, 0.05380168929696083, -0.07440582662820816, -0.026215242221951485, -0.010329130105674267, 0.055641986429691315, 0.04986850172281265, -0.06653944402933121, -0.012259640730917454, -0.03610233962535858, 0.018655581399798393, -0.03245782479643822, -0.007514555007219315, 0.04983241483569145, 0.01591317541897297, 0.009544297121465206, -0.006468110252171755, -0.02188512682914734, -0.023093950003385544, 0.022877445444464684, -0.07364805042743683, -0.018439076840877533, -0.0050698439590632915, 0.016607798635959625, 0.02901177667081356, -0.049904584884643555, -0.05914216488599777, 0.006423004902899265, 0.005160054657608271, -0.004368455149233341, 0.012566356919705868, -0.050590187311172485, -0.020459797233343124, 0.011086900718510151, 0.04131652042269707, -0.02278723381459713, -0.02078455500304699, 0.033089302480220795, -0.02459144964814186, 0.01362182293087244, -0.024699702858924866, 0.01305349450558424, -0.002555219456553459, -0.047703441232442856, 0.06769414246082306, -0.04709000885486603, -0.03238565847277641, -0.06069378927350044, -0.029336534440517426, 0.03409966081380844, 0.04795603081583977, -0.010220877826213837, -0.0620289072394371, -0.02349087782204151, 0.038862790912389755, -0.03370273485779762, -0.011799565516412258, -0.04268772527575493, -0.04088351130485535, -0.0022000146564096212, -0.020712386816740036, 0.005556982010602951, 0.036878153681755066, -0.004354923963546753, 0.020026786252856255, 0.01082528941333294, -0.0026634722016751766, 0.034640926867723465, -0.05022934451699257, 0.05603891611099243, -0.03897104039788246, -0.03603017330169678, 0.013883433304727077, -0.029336534440517426, 0.018781878054142, -0.005895272362977266, -0.025800272822380066, 0.04247121885418892, 0.019431395456194878, -0.0014704351779073477, -0.04146086052060127, -0.00031150897848419845, 0.02257072925567627, 0.003964762203395367, -0.013721054419875145, 0.010653888806700706, 0.0023048846051096916, -0.011366553604602814, -0.024934250861406326, 0.03381098806858063, 0.013657907024025917, 0.008272325620055199, 0.006220031064003706, -0.058312226086854935, 0.04463627561926842, -0.006558321416378021, 0.010419340804219246, -0.03251195326447487, 0.04759518802165985, 0.02814575284719467, 0.009445064701139927, -0.013423359021544456, 0.0020511667244136333, -0.04957982525229454, 0.04030616208910942, 0.029498914256691933, -0.0018786387518048286, -0.007749103009700775, -0.013306085020303726, -0.0050698439590632915, 0.001796321477741003, 0.008245262317359447, 0.03013038821518421, -0.02190316841006279, 0.020044827833771706, 0.061451561748981476, -0.03698640689253807, 0.022751150652766228, 0.016878429800271988, 0.005344986449927092, 0.02897569164633751, 0.005904293153434992, 0.040378328412771225, -0.037311162799596786, -0.029138071462512016, 0.024862080812454224, 0.05127578601241112, 0.028921565040946007, -0.03249391168355942, -0.0033648607786744833, -0.05160054564476013, 0.0508427768945694, -0.020243290811777115, 0.036824025213718414, 0.011574038304388523, 0.05708536133170128, 0.039945319294929504, 0.0068605272099375725, -0.04622398689389229, -0.047053925693035126, -0.14029575884342194, -0.02480795420706272, 0.035488907247781754, 0.06069378927350044, 0.050085004419088364, 0.06137939170002937, -0.027586445212364197, -0.05629150569438934, 0.060080356895923615, -0.014343508519232273, 0.022083589807152748, 0.037744175642728806, -0.011610123328864574, -0.05376560613512993, 0.012467125430703163, 0.006513216067105532, -0.0597916804254055, -0.02726168744266033, -0.026233285665512085, -0.017789559438824654, 0.0662507712841034, 0.07577702403068542, 0.005448729265481234, -0.030004093423485756, 0.02791120484471321, -0.01813236065208912, 0.04048658162355423, -0.051925305277109146, 0.027748825028538704, -0.07097781449556351, 0.08227220177650452, 0.007397281005978584, 0.010419340804219246, -0.01382028590887785, 0.029480870813131332, 0.009147369302809238, 0.002749172504991293, -0.0055434503592550755, 0.05842047929763794, -0.04182170331478119, -0.03911538049578667, -0.023400668054819107, -0.01649954542517662, 0.05336867645382881, 0.08905604481697083, -0.017879769206047058, -0.039331886917352676, 0.017536969855427742, -0.01337825320661068, -0.0023838188499212265, -0.02789316326379776, 0.01970202662050724, -0.0276946984231472, 0.004510537255555391, -0.007464939262717962, 0.0015640287892892957, 0.0002432871115161106, 0.004875890910625458, 0.0036783432587981224, -0.0053900922648608685, -0.06325577199459076, -0.0006438791751861572, 0.02632349543273449, -0.01583198644220829, 0.03123096004128456, 0.006472621113061905, 0.008772995322942734, -0.026954971253871918, -0.062498003244400024, -0.04622398689389229, 0.1305529922246933, 0.008087392896413803, -0.028867438435554504, 0.006914653815329075, -0.0025958141777664423, -0.025782231241464615, 0.018709708005189896, 0.010365215130150318, 0.0796019583940506, 0.05672451853752136, -0.0022056526504456997, -0.027369940653443336, -0.030148431658744812, 0.027929246425628662, 0.03610233962535858, 0.037491586059331894, 0.02170470543205738, 0.017085915431380272, 0.041929952800273895, -0.008813589811325073, -0.001008668914437294, 0.006540278904139996, 0.04135260730981827, -0.08335472643375397, -0.03280062600970268, -0.04456410929560661, 0.08277738094329834, -0.011330469511449337, -0.039981402456760406, 0.007555149961262941, -0.05885349214076996, -0.02193925343453884, 0.05441512167453766, 0.005656213965266943, -0.10031434893608093, -0.03166397288441658, -0.060765959322452545, -0.007027416955679655, -0.00850687362253666, -0.03222327679395676, 0.025132713839411736, 0.03402749449014664, 0.01903446763753891, 0.06733330339193344, 0.02722560241818428, 0.019864406436681747, -0.04893030971288681, 0.06062162294983864, -0.017906833440065384, -0.007821271196007729, -0.02080259844660759, 0.06989528238773346, 0.011763481423258781, 0.010780184529721737, 0.003238565754145384, 0.010563678108155727, -0.015426037833094597, 0.02830813266336918, 0.0354708656668663, -0.027099307626485825, 0.01405483391135931, -0.051672715693712234, 0.010329130105674267, -0.07357588410377502, -0.053224340081214905, -0.008678273297846317, 0.05582240968942642, -0.029841715469956398, 0.027586445212364197, 0.01973811164498329, 0.018763834610581398, -0.0376359224319458, -0.01824963465332985, 0.005160054657608271, 0.01094256341457367, 0.03940405324101448, -0.04532187804579735, 0.05813180282711983, 0.03680598363280296, 0.022642897441983223, -0.017094936221837997, -0.025132713839411736, 0.025547683238983154, -0.002575516700744629, -0.03256607800722122, 0.005110438913106918, -0.11222216486930847, 0.019160762429237366, 0.017176125198602676, 0.0005438016378320754, -0.004285010509192944, -0.06170415133237839, -0.005178096704185009, 0.02058609202504158, -0.05733795091509819, 0.04939940571784973, -0.049435488879680634, -0.06762197613716125, -0.06321968883275986, -0.018222570419311523, -0.054992470890283585, -0.02035154402256012, -0.05243048444390297, 0.031772226095199585, 0.01991853304207325, 0.013721054419875145, -0.049507658928632736, 0.017979001626372337, 0.0027446618769317865, 0.011574038304388523, 0.037491586059331894, -0.009914160706102848, 0.013396295718848705, 0.0398731492459774, 0.03170005604624748, -0.04452802240848541, -0.03723899647593498, 0.01029304601252079, 0.018258655443787575, 0.03184439241886139, -0.029264366254210472, 0.01783466525375843, -0.0016181552782654762, -0.021109314635396004, -0.04485278204083443, 0.03630080446600914, -0.05629150569438934, -0.03603017330169678, 0.03388315439224243, -0.03785242885351181, 0.03148354962468147, -0.09143761545419693, -0.01901642605662346, 0.04936331883072853, -0.05842047929763794, 0.019611816853284836, -0.0038271909579634666, -0.034640926867723465, 0.04099176451563835, -0.0008953416254371405, -0.024447111412882805, -0.03211502730846405, -0.022877445444464684, 0.02718951925635338, -0.000918458157684654, 0.015841007232666016, -0.034424420446157455, -0.013531612232327461, -0.033323850482702255, 0.03256607800722122, -0.011952923610806465, -0.03734724968671799, 0.07606570422649384, 0.020279375836253166, -0.04182170331478119, -0.003836211981251836, 0.05113144963979721, 0.025547683238983154, 0.012683630920946598, -0.031790267676115036, -0.007510044611990452, -0.06091029569506645, 0.052827414125204086, 0.10089169442653656, 0.04539404809474945, 0.040811341255903244, -0.024176480248570442, -0.028632890433073044, 0.005620129406452179, -0.06902926415205002, 0.05957517772912979, 0.029480870813131332, 0.04817253723740578, -0.025186840444803238, 0.021632537245750427, -0.0019417862640693784, -0.001697089639492333, 0.013134684413671494, 0.021001061424613, -0.02569201961159706, -0.01326097920536995, -0.024645576253533363, 0.006887590512633324, -0.0029025308322161436, -0.027369940653443336, 0.008570021018385887, -0.02076651342213154, -0.021325821056962013, -0.06960660964250565, 0.062317583709955215, -0.013784201815724373, 0.02814575284719467, 0.01073507871478796, 0.001861724304035306, 0.04611573368310928, -0.005651703104376793, -0.01194390282034874, -0.026684338226914406, -0.01844809763133526, -0.04402284324169159, -0.07213251292705536, -0.06127113848924637, 0.00312580238096416, 0.026503916829824448, -0.017004726454615593, -0.03260216489434242, 0.00480823265388608, 0.023075908422470093, -0.1216040849685669, -0.02150624245405197, 0.0019384033512324095, 0.03341405838727951, -0.04456410929560661, 0.07592136412858963, 0.009887097403407097, -0.034857433289289474, -0.02791120484471321, 0.01338727492839098, 0.027081266045570374, -0.03146550804376602, -0.003651279956102371, -0.022480517625808716, -0.02013503760099411, 0.01417210791260004, 0.006729721557348967, 0.024627532809972763, 0.007654381915926933, -0.024483196437358856, -0.011321448720991611, -0.00576446671038866, 0.00504278065636754, -0.01728437840938568, 0.01925097405910492, -0.004754106514155865, 0.05398210883140564, 0.025836357846856117, 0.014090918935835361, -0.004564663860946894, 0.033107344061136246, -0.007117627654224634, -0.04055875167250633, -0.026720423251390457, -0.008118967525660992, -0.02013503760099411, 0.016355209052562714, 0.04474452883005142, 0.07729256898164749, 0.020189164206385612, 0.03900712728500366, 0.03494764119386673, 0.009697655215859413, 0.02349087782204151, 0.008236241526901722, 0.036409057676792145, 0.04138869047164917, -0.048785969614982605, -0.02150624245405197, -0.041063930839300156, 0.014569035731256008, 0.0020906340796500444, 0.009887097403407097, 0.04539404809474945, -0.03954838961362839, 0.011889776214957237, 0.003001762554049492, 0.03074382245540619, -0.01141165941953659, -0.025836357846856117, -0.0027378960512578487, -0.04716217890381813, 0.03409966081380844, -0.01583198644220829, 0.009535275399684906, 0.035308487713336945, -0.037094660103321075, -0.08588062971830368, 0.02060413360595703, -0.0008806824334897101, 0.042362965643405914, 0.009115795604884624, -0.02522292360663414, 0.008583552204072475, 0.01337825320661068, -0.040197908878326416, 0.03568737208843231, 0.01789781264960766, 0.05596674606204033, -0.02563789300620556, -0.013892455026507378, 0.02170470543205738, -0.018763834610581398, -0.04027007520198822, -0.011312427930533886, -0.0018481926526874304, -0.007275496609508991, 0.007419833913445473, -0.02699105441570282, 0.02722560241818428, -0.01646346040070057, -0.034298125654459, -0.059178248047828674, -0.013026432134211063, -0.019557690247893333, -0.021163441240787506, 0.05372951924800873, -0.034207914024591446, 0.05160054564476013, 0.0177173912525177, -0.02410431206226349, -0.0015279444633051753, -0.020261334255337715, -0.03005822002887726, 0.038357608020305634, -0.06841582804918289, -0.01094256341457367, 0.0023747978266328573, 0.012160408310592175, 0.021993380039930344, 0.00564719270914793, 0.02412235364317894, -0.008511384017765522, -0.0035294953268021345, 0.008601594716310501, 0.015083236619830132, 0.016192829236388206, 0.007550639566034079, 0.06368878483772278, 0.04095567762851715, 0.053404759615659714, 0.04055875167250633, 0.004433858208358288, -0.00005278738171909936, -0.00874142162501812, -0.015868069604039192, 0.034009452909231186, 0.02213771641254425, 0.007550639566034079, 0.02991388365626335, 0.029138071462512016, 0.012674610130488873, 0.05571415647864342, -0.026179159060120583, 0.02276919223368168, 0.019810279831290245, 0.04755910485982895, -0.03139333799481392, 0.053476929664611816, -0.00033829029416665435, -0.037563756108284, 0.033973366022109985, 0.023743467405438423, 0.006463599856942892, -0.01646346040070057, -0.0030716757755726576, 0.001702727866359055, 0.061451561748981476, -0.0641217976808548, -0.0011761225759983063, -0.06177631765604019, -0.09100460261106491, -0.03005822002887726, -0.027748825028538704, 0.06682811677455902, -0.030815990641713142, -0.001105081639252603, 0.05250265449285507, 0.01624695584177971, 0.009169922210276127, -0.01306251622736454, 0.035506948828697205, 0.029697377234697342, -0.003863275283947587, 0.05217789486050606, 0.022065548226237297, -0.03271041810512543, -0.05289958044886589, 0.07187992334365845, 0.0075822132639586926, 0.003017549403011799, 0.0840764120221138, -0.021812958642840385, 0.037094660103321075, -0.0016576224006712437, 0.005705829709768295, -0.034406378865242004, 0.0021876106038689613, 0.01583198644220829, -0.009255622513592243, 0.021776873618364334, 0.01428938191384077, 0.057518370449543, 0.0009325536084361374, -0.03204285725951195, 0.06278667598962784, -0.03821327164769173, 0.02569201961159706, 0.01683332584798336, 0.04994066804647446, -0.014632183127105236, -0.008461767807602882, -0.057626623660326004, 0.011546975001692772, -0.0032295447308570147, 0.001909084850922227, -0.02410431206226349, 0.017473820596933365, -0.014550993219017982, -0.014036792330443859, -0.006621468812227249, 0.08299388736486435, -0.030202558264136314, -0.06091029569506645, -0.009932203218340874, -0.0034347742330282927, -0.03428008407354355, 0.04694567248225212, 0.006057651713490486, 0.011285364627838135, -0.04853338003158569, 0.06884884089231491, 0.035561077296733856, 0.048569466918706894, 0.010834310203790665, 0.03828544169664383, -0.03969272971153259, 0.005985483061522245, -0.0320248156785965, -0.027983373031020164, 0.021812958642840385, -0.014163087122142315, 0.04384242370724678, 0.03691423684358597, -0.07888027280569077, -0.009697655215859413, -0.0019632114563137293, 0.007789697963744402, 0.028055541217327118, -0.03296300768852234, 0.05860089883208275, -0.009553317911922932, -0.007952077314257622, 0.08530328422784805, -0.0643383041024208, 0.015777859836816788, -0.048605550080537796, 0.04820862412452698, 0.01593121699988842, 0.006468110252171755, -0.0012573122512549162, -0.05470379441976547, -0.03501981124281883, 0.02718951925635338, -0.02080259844660759, -0.028668975457549095, 0.0110598374158144, -0.004993164911866188, 0.03500176966190338, -0.051023196429014206, -0.017085915431380272, 0.008078372105956078, -0.045899227261543274, -0.006468110252171755, -0.08948905766010284, -0.014776520431041718, -0.012638525106012821, -0.01361280120909214 ]
39,904
lerc._lerc
encode
null
def encode(npArr, nValuesPerPixel, bHasMask, npValidMask, maxZErr, nBytesHint, printInfo = False): return _encode_Ext(npArr, nValuesPerPixel, npValidMask, maxZErr, nBytesHint, None, printInfo)
(npArr, nValuesPerPixel, bHasMask, npValidMask, maxZErr, nBytesHint, printInfo=False)
[ 0.007429025135934353, -0.023614967241883278, -0.005728783085942268, 0.022466519847512245, -0.0007749783108010888, 0.023363744840025902, -0.06424132734537125, -0.05336695536971092, 0.02682703360915184, -0.03495589643716812, 0.07938648760318756, -0.03018265776336193, 0.02713209018111229, -0.026396365836262703, 0.005199420265853405, -0.038975462317466736, 0.023399634286761284, -0.04112880304455757, -0.04285147786140442, 0.05544852092862129, -0.022448575124144554, 0.013467350974678993, 0.03470467031002045, 0.047086380422115326, 0.02415330335497856, 0.006298521067947149, 0.04504070803523064, -0.018446950241923332, -0.04819893836975098, 0.08469805866479874, -0.06725600361824036, -0.04378459230065346, -0.010452673770487309, 0.026468144729733467, 0.039154909551143646, -0.016464082524180412, -0.002709620166569948, 0.027347424998879433, -0.08620540052652359, -0.06582044064998627, -0.038185905665159225, -0.03633762151002884, 0.014517104253172874, -0.012283013202250004, 0.02935720980167389, -0.030595380812883377, 0.05196728557348251, 0.03413044661283493, 0.011008953675627708, 0.02156929485499859, -0.01842900551855564, -0.06869156658649445, -0.0035956301726400852, 0.006006923038512468, -0.031654104590415955, 0.03854479640722275, 0.037073347717523575, 0.015297690406441689, 0.017998337745666504, -0.05107006058096886, -0.025517085567116737, 0.001687904936261475, 0.04378459230065346, -0.03472261503338814, -0.04145180433988571, 0.05031638965010643, -0.04970627650618553, 0.01810600608587265, 0.0009247027337551117, 0.054048847407102585, 0.02442247048020363, -0.0006594605511054397, 0.014167186804115772, 0.02553503029048443, -0.007792401127517223, 0.05932453274726868, -0.036265842616558075, 0.013180239126086235, -0.030415935441851616, 0.02478136122226715, 0.07572580873966217, 0.015369468368589878, 0.08060671389102936, 0.015459191054105759, 0.037862904369831085, -0.016293609514832497, 0.007769970688968897, 0.03319733217358589, 0.06560511142015457, -0.011089703999459743, 0.01875200681388378, -0.024494249373674393, -0.002366431523114443, 0.03858068585395813, -0.003716755425557494, -0.025050528347492218, 0.0479477159678936, 0.02603747695684433, 0.023543190211057663, -0.025140250101685524, -0.009743865579366684, -0.06442077457904816, 0.000667872023768723, -0.04647626727819443, 0.015127217397093773, 0.06233920902013779, 0.024835193529725075, 0.026396365836262703, -0.05709941312670708, 0.06097542867064476, 0.07235224545001984, 0.05950397625565529, -0.011960011906921864, -0.04331803321838379, 0.02490697242319584, 0.04242080822587013, -0.002911495976150036, -0.015818079933524132, 0.041523583233356476, 0.026791146025061607, 0.007725109346210957, 0.022251185029745102, -0.013305850327014923, 0.0027432660572230816, -0.041846584528684616, 0.028172872960567474, 0.0590733103454113, 0.046296823769807816, 0.026073364540934563, -0.06994768232107162, 0.014427381567656994, 0.01907500810921192, -0.027903703972697258, -0.002707377076148987, 0.03619406744837761, -0.01715494692325592, -0.03861657530069351, -0.07159857451915741, -0.019415954127907753, -0.021784627810120583, -0.003422914305701852, 0.0072540659457445145, 0.05290040001273155, 0.0625186562538147, 0.028513817116618156, -0.009438809007406235, 0.1058008000254631, 0.04109291732311249, 0.05099828168749809, -0.014355603605508804, -0.0020692257676273584, -0.012929015792906284, -0.011071759276092052, 0.014014658518135548, 0.033125557005405426, 0.022915132343769073, 0.08390850573778152, -0.051823727786540985, 0.006392729934304953, 0.013987741433084011, -0.01954156532883644, -0.04328214377164841, -0.03145671635866165, -0.024171248078346252, -0.02189229615032673, 0.030882492661476135, -0.02745509147644043, 0.020115789026021957, -0.017854781821370125, 0.035655729472637177, 0.06671766936779022, -0.08735384792089462, -0.05577152222394943, 0.03703745827078819, 0.05386940389871597, 0.02526586316525936, 0.0029720584861934185, 0.0008641400490887463, -0.052003175020217896, 0.05412062630057335, 0.013243044726550579, 0.011771595105528831, 0.028854763135313988, -0.017729170620441437, 0.02587597630918026, -0.04414348304271698, 0.03703745827078819, -0.008371111005544662, 0.04001624509692192, -0.025499140843749046, -0.003321976400911808, 0.08484161645174026, 0.03305377811193466, 0.011726734228432178, -0.01238170824944973, -0.061226651072502136, 0.014669632539153099, 0.04583026468753815, -0.002927197376266122, 0.0009987237863242626, -0.011089703999459743, -0.006042812019586563, 0.025929808616638184, -0.03538656234741211, -0.009223475120961666, -0.01081156451255083, 0.015100300312042236, -0.03113371506333351, 0.04267203062772751, 0.014113352634012699, 0.04256436601281166, -0.03983680158853531, -0.03757579252123833, -0.02431480400264263, 0.027867816388607025, 0.02300485409796238, 0.0333767794072628, 0.02045673504471779, -0.03648117929697037, -0.017648421227931976, -0.036929789930582047, -0.003985923249274492, 0.03168999403715134, -0.01760355941951275, -0.018698174506425858, 0.015333578921854496, 0.02542736381292343, -0.009707977063953876, 0.023758525028824806, -0.009510587900876999, -0.016517916694283485, 0.032623108476400375, -0.11039458960294724, 0.004113777540624142, -0.04098524898290634, 0.04489715024828911, 0.061226651072502136, -0.03161821886897087, 0.020546458661556244, 0.01284826546907425, -0.013323795050382614, 0.029590487480163574, -0.01261498685926199, -0.001136672217398882, 0.04299503192305565, -0.03158232942223549, 0.0835496112704277, 0.04130825027823448, -0.01839311793446541, 0.013449406251311302, -0.01999017782509327, -0.044358815997838974, -0.0485578291118145, 0.02838820591568947, -0.024512194097042084, 0.05953986570239067, 0.025481196120381355, 0.007155371364206076, 0.024960806593298912, 0.027831926941871643, -0.036588843911886215, 0.012022818438708782, 0.01340454537421465, -0.004495098255574703, 0.040734026581048965, 0.007684734184294939, -0.0015342551050707698, -0.002492043189704418, 0.005849908571690321, 0.07845337688922882, -0.06323643773794174, 0.011466538533568382, -0.027562759816646576, -0.013216127641499043, 0.0005613265093415976, 0.017504863440990448, 0.017181864008307457, -0.018195727840065956, 0.04188247397542, -0.014301770366728306, 0.0051276423037052155, -0.03348444402217865, -0.026378421112895012, 0.020061956718564034, 0.030990159139037132, 0.035619840025901794, 0.027831926941871643, 0.002453911118209362, -0.017424114048480988, -0.06761489063501358, -0.024637805297970772, 0.03718101233243942, -0.05889386311173439, 0.009178614243865013, 0.01531563512980938, -0.06187265366315842, 0.022340908646583557, 0.00017173451487906277, 0.001362660783343017, 0.011403732933104038, -0.011098676361143589, 0.004347056150436401, 0.06363121420145035, -0.021013015881180763, 0.04608148708939552, -0.0406622476875782, -0.07802270352840424, -0.01468757726252079, -0.042169585824012756, 0.015521996654570103, -0.036427345126867294, 0.01263293158262968, 0.015064411796629429, -0.025301750749349594, 0.007846234366297722, 0.004221444949507713, 0.052003175020217896, 0.031043993309140205, 0.02173079550266266, 0.053115732967853546, 0.009573393501341343, -0.05211084336042404, -0.06729189306497574, -0.0813244953751564, 0.0172985028475523, -0.05971931293606758, 0.024009747430682182, -0.022825410589575768, 0.006522827316075563, -0.026378421112895012, 0.023686746135354042, -0.018276477232575417, 0.050890613347291946, 0.004679029807448387, 0.018787896260619164, -0.007482858374714851, 0.016051359474658966, -0.03206682950258255, -0.04396403580904007, 0.01261498685926199, -0.08634895831346512, -0.03637351095676422, -0.06456432491540909, 0.0356018990278244, -0.030900437384843826, -0.03529684245586395, -0.08017604798078537, 0.010739785619080067, -0.051823727786540985, -0.017181864008307457, -0.003434129524976015, -0.03492000699043274, 0.0036943249870091677, 0.06327231973409653, -0.007855206727981567, 0.02652197703719139, 0.010389868170022964, 0.020277289673686028, 0.017827864736318588, 0.007953901775181293, 0.043748702853918076, -0.005230823066085577, 0.029805822297930717, -0.03393305838108063, 0.010901286266744137, 0.00828587543219328, 0.002352973213419318, -0.006787508726119995, 0.06395421177148819, 0.0025189598090946674, 0.006809939630329609, -0.020528513938188553, -0.03490206226706505, -0.0412723608314991, 0.003882742254063487, -0.017962448298931122, -0.04697871208190918, 0.03369978070259094, -0.015387413091957569, -0.09417276084423065, 0.0005245963693596423, 0.012067679315805435, -0.01475935522466898, -0.03861657530069351, 0.01839311793446541, 0.0345970056951046, 0.0694093406200409, 0.07974538207054138, -0.03664267808198929, -0.052433840930461884, -0.030074989423155785, 0.005006516817957163, -0.010910258628427982, -0.058822087943553925, -0.06406188011169434, 0.001517432159744203, -0.021946128457784653, 0.08426739275455475, -0.06693300604820251, -0.006137020420283079, -0.07752025872468948, -0.044681817293167114, 0.021856406703591347, -0.005544851999729872, 0.038652464747428894, -0.05164428427815437, 0.03314350172877312, 0.0052083926275372505, 0.009555448777973652, 0.02666553482413292, -0.04360514506697655, 0.001594817847944796, 0.02029523439705372, -0.023704690858721733, -0.03138493746519089, 0.04891671985387802, -0.1147012710571289, -0.04604559764266014, -0.023417579010128975, -0.01229198556393385, -0.019756900146603584, -0.003615817753598094, -0.011708789505064487, 0.09036852419376373, 0.013108460232615471, -0.008510181680321693, -0.03063127025961876, 0.017774032428860664, -0.006356840953230858, 0.05020872503519058, 0.028693262487649918, -0.02113862708210945, 0.023148411884903908, -0.02969815582036972, -0.019469788298010826, -0.025337640196084976, 0.005042405799031258, 0.01396979670971632, -0.019092952832579613, -0.0015746302669867873, 0.042313143610954285, 0.0220537967979908, -0.01875200681388378, -0.010362951084971428, 0.00975283794105053, 0.003941061906516552, -0.013906991109251976, 0.000372628855984658, -0.06804556399583817, -0.006383757572621107, 0.04012391343712807, 0.015396385453641415, -0.000527400232385844, -0.04776827245950699, 0.0029204681050032377, -0.015952665358781815, 0.015396385453641415, -0.022663909941911697, 0.011726734228432178, -0.010318090207874775, 0.04414348304271698, 0.0015746302669867873, -0.03154643997550011, -0.028944486752152443, 0.011933095753192902, -0.007805859670042992, 0.009003655053675175, -0.020241402089595795, -0.004378458950668573, -0.041703030467033386, 0.01676913909614086, 0.015530969016253948, 0.005805047228932381, 0.006105617620050907, 0.026306644082069397, 0.04252847656607628, 0.0089004747569561, 0.03951380029320717, -0.02634253352880478, 0.017406169325113297, -0.04654804617166519, -0.012229179963469505, 0.012300957925617695, -0.019900456070899963, 0.044394705444574356, 0.0037459153681993484, -0.00749631691724062, 0.01754075288772583, 0.011466538533568382, 0.00806156825274229, 0.022825410589575768, -0.01000406127423048, -0.06585633009672165, 0.08893296867609024, 0.007437997031956911, 0.004876418970525265, -0.004620709922164679, -0.055161409080028534, -0.0479477159678936, 0.029088042676448822, -0.02431480400264263, -0.04123647138476372, -0.031833551824092865, -0.052146729081869125, 0.03131316229701042, -0.06363121420145035, 0.02409946918487549, 0.04525604099035263, -0.04051868990063667, 0.05322340130805969, -0.06750722974538803, 0.0016912695718929172, -0.01776506006717682, -0.034686729311943054, -0.0077385674230754375, 0.027903703972697258, -0.008913932368159294, -0.03703745827078819, -0.012570125050842762, 0.00008089045877568424, -0.019164731726050377, 0.041200581938028336, 0.0025032584089785814, 0.015620691701769829, 0.031349048018455505, 0.026862923055887222, 0.01300976611673832, -0.012767515145242214, -0.03490206226706505, 0.03240777552127838, 0.00021281061344780028, -0.016544833779335022, 0.057853084057569504, 0.013359683565795422, -0.018518729135394096, -0.0005753457080572844, 0.07023479044437408, 0.03490206226706505, 0.11096881330013275, -0.018644340336322784, 0.01380829606205225, 0.003891714382916689, 0.0536181814968586, -0.03362800180912018, 0.007962874136865139, 0.03901135176420212, 0.018626395612955093, 0.006599091459065676, 0.0730341374874115, -0.08276005834341049, 0.03703745827078819, 0.022484464570879936, 0.06750722974538803, 0.021551350131630898, 0.018446950241923332, 0.04529193043708801, 0.02365085668861866, -0.04317447915673256, -0.04622504487633705, -0.011044842191040516, -0.01798936538398266, 0.029446931555867195, -0.02034906856715679, -0.039154909551143646, -0.09510587155818939, -0.006495910696685314, -0.039477910846471786, -0.0041676112450659275, -0.02160518430173397, 0.011143537238240242, -0.010066866874694824, 0.07730492949485779, -0.02490697242319584, -0.022017907351255417, 0.00714639900252223, 0.009510587900876999, 0.010928203351795673, -0.03368183597922325, 0.012426569126546383, -0.052003175020217896, -0.0661434456706047, 0.017899643629789352, -0.030559491366147995, -0.03700156882405281, 0.022861298173666, 0.004297709092497826, -0.011430649086833, 0.00960928201675415, -0.022430630400776863, -0.0345970056951046, 0.03700156882405281, 0.03384333476424217, -0.009465726092457771, -0.04270792007446289, 0.03972913324832916, 0.056596968322992325, -0.06334409862756729, -0.004293222911655903, 0.03570956364274025, -0.0412723608314991, -0.030900437384843826, -0.02379441261291504, -0.05211084336042404, -0.016876807436347008, 0.036929789930582047, -0.054371848702430725, 0.013467350974678993, -0.020923292264342308, -0.006715730763971806, 0.025355584919452667, 0.012991821393370628, 0.05092650279402733, -0.011708789505064487, -0.07113201916217804, -0.023848246783018112, 0.013951851986348629, -0.04554315283894539, 0.06463610380887985, -0.004782210569828749, 0.05379762500524521, -0.009797699749469757, 0.036893900483846664, -0.03299994394183159, -0.007159857545047998, -0.016401277855038643, -0.038508906960487366, 0.015683496370911598, 0.032156553119421005, 0.058319639414548874, -0.04385637119412422, 0.029446931555867195, 0.0562380775809288, 0.015611719340085983, -0.061334315687417984, -0.02334580011665821, -0.08670784533023834, -0.030074989423155785, 0.04590204358100891, -0.03285638988018036, 0.021210404112935066, -0.03908313065767288, -0.020869458094239235, -0.029088042676448822, -0.032318051904439926, -0.002442695666104555, 0.0390472412109375, -0.0029294404666870832, -0.029913488775491714, -0.0037930195685476065, -0.024332748726010323, -0.020241402089595795, 0.0020333367865532637, 0.014265880919992924, 0.0012449000496417284, 0.014346631243824959, 0.058965642005205154, -0.02921365387737751, 0.04392814636230469, -0.02937515452504158, 0.02747303619980812, -0.020869458094239235, -0.01126017700880766, -0.024350693449378014, -0.06768666952848434, 0.017504863440990448, 0.06208798661828041, 0.0261989776045084, 0.006123562343418598, 0.0051276423037052155, -0.01749589294195175, -0.04267203062772751, -0.029249543324112892, 0.007810345850884914, -0.0256965309381485, 0.04098524898290634, 0.025122307240962982, -0.07385957986116409, 0.007953901775181293, 0.01159214973449707, -0.03728868067264557, -0.0031043991912156343, -0.043569255620241165, 0.0119869289919734, 0.06643055379390717, 0.032910220324993134, -0.029249543324112892, -0.04159536212682724, 0.0027769121807068586, -0.015988552942872047, 0.008196152746677399, 0.010641091503202915, -0.0021387606393545866, 0.006809939630329609, -0.03509945049881935, 0.005185961723327637, 0.05368995666503906, 0.03046976961195469, 0.02034906856715679, 0.0198286771774292, -0.02969815582036972, 0.006895176135003567, -0.02079768106341362, -0.06869156658649445, -0.0014411680167540908, 0.02444041520357132, 0.08929185569286346, 0.0032973026391118765, -0.008676167577505112, 0.0016979987267404795, 0.011457566171884537, -0.05552029609680176, 0.055484406650066376, 0.005962061695754528, -0.04640448838472366, -0.15216940641403198, 0.010129672475159168, 0.06585633009672165, 0.02856765128672123, 0.02969815582036972, 0.007227149326354265, 0.009061974473297596, 0.07228046655654907, -0.018159838393330574, 0.02173079550266266, -0.06905045360326767, 0.05035227909684181, -0.008424945175647736, -0.03502767160534859, -0.017594587057828903, -0.011251204647123814, 0.01214842963963747, 0.014929828234016895, -0.0024382094852626324, 0.0331793874502182, -0.018644340336322784, 0.01286621019244194, -0.0036427343729883432, -0.020097844302654266, -0.020079901441931725, -0.028352316468954086, 0.03095426969230175, 0.005908227991312742, 0.01768430881202221, -0.00032300109160132706, 0.041344139724969864, 0.02828053943812847, 0.05839141830801964, 0.0009886299958452582, -0.005495504476130009, -0.015091328881680965, 0.013628851622343063, 0.05688408017158508, -0.05171606317162514, 0.01859050616621971, 0.01839311793446541, -0.040411025285720825, -0.009995088912546635, 0.052469730377197266, 0.00390965910628438, -0.018680229783058167, -0.018931452184915543, 0.019559510052204132, -0.019487731158733368, -0.017451031133532524, -0.054981961846351624, 0.04141591489315033, 0.026862923055887222, -0.014669632539153099 ]
39,905
lerc._lerc
encode_4D
null
def encode_4D(npArr, nValuesPerPixel, npValidMask, maxZErr, nBytesHint, npmaNoDataPerBand = None, printInfo = False): return _encode_Ext(npArr, nValuesPerPixel, npValidMask, maxZErr, nBytesHint, npmaNoDataPerBand, printInfo)
(npArr, nValuesPerPixel, npValidMask, maxZErr, nBytesHint, npmaNoDataPerBand=None, printInfo=False)
[ 0.014113628305494785, 0.03103950247168541, -0.025397544726729393, 0.005056801252067089, 0.004685619845986366, 0.02440190501511097, -0.05110950022935867, -0.048000309616327286, -0.007676905486732721, -0.014139829203486443, 0.04579942300915718, -0.048384591937065125, -0.004222734831273556, -0.009371239691972733, 0.038637805730104446, -0.05439336597919464, -0.010131070390343666, 0.008877786807715893, -0.030410677194595337, 0.04010506346821785, -0.01952851004898548, 0.03654172271490097, 0.015109268017113209, 0.03877754509449005, -0.0006779520190320909, -0.007908347994089127, 0.026777466759085655, -0.006842839065939188, -0.037065740674734116, 0.10019279271364212, -0.05376454070210457, -0.007183452602475882, -0.0350220613181591, 0.05177326127886772, 0.03505699709057808, -0.007751142140477896, -0.0006501133902929723, 0.001329702907241881, -0.08880406618118286, -0.05792177468538284, -0.040803756564855576, -0.04216621071100235, 0.016428053379058838, -0.014200965873897076, 0.005938902962952852, -0.02167699672281742, 0.054533105343580246, -0.0017249019583687186, 0.018864750862121582, 0.04027973860502243, 0.008921455591917038, -0.07350265979766846, -0.01491712685674429, 0.02887354977428913, -0.03156352415680885, 0.039965324103832245, 0.024332035332918167, 0.0214149858802557, 0.018200991675257683, -0.0573977530002594, -0.027738170698285103, -0.011310117319226265, 0.023109320551156998, -0.014087427407503128, -0.059039682149887085, 0.04517059773206711, -0.02029707469046116, 0.025083132088184357, -0.013982623815536499, 0.04213127866387367, 0.00044350724783726037, -0.010986970737576485, 0.0245765782892704, 0.04188673570752144, 0.002390845213085413, 0.06326678395271301, -0.04202647507190704, -0.0017205352196469903, 0.0033799344673752785, 0.0011086316080763936, 0.03353733569383621, 0.014043759554624557, 0.09117963165044785, 0.022602766752243042, 0.011310117319226265, -0.015292675234377384, 0.006414888892322779, 0.038463130593299866, 0.0538693442940712, -0.05177326127886772, 0.021292714402079582, -0.01795644871890545, -0.021711930632591248, 0.04873393848538399, -0.029205430299043655, -0.02663772739470005, 0.04943263530731201, 0.035214200615882874, 0.010777362622320652, -0.008235861547291279, 0.00035371407284401357, -0.10836751759052277, -0.011676931753754616, -0.04202647507190704, -0.010663824155926704, 0.05027106776833534, 0.03814871981739998, 0.021257780492305756, -0.06344146281480789, 0.04869900643825531, 0.04807018116116524, 0.04262036457657814, 0.0009339580428786576, -0.023668276146054268, 0.011869072914123535, 0.02653292380273342, -0.001533852773718536, -0.012663837522268295, 0.03786924108862877, -0.004545880947262049, 0.018008850514888763, 0.025851696729660034, -0.057048406451940536, 0.018113654106855392, -0.03559848293662071, 0.004807891324162483, 0.04027973860502243, 0.025554750114679337, 0.02597396820783615, -0.028751278296113014, 0.0176595039665699, 0.05732788145542145, -0.03786924108862877, -0.04115310683846474, 0.03420109674334526, -0.018113654106855392, -0.042201146483421326, -0.07287383824586868, 0.0013449868420138955, -0.02459404617547989, -0.0146813178434968, 0.0018766496796160936, 0.062009137123823166, 0.08146777749061584, 0.031476184725761414, 0.006200913339853287, 0.11374746263027191, 0.05470777675509453, 0.04129284247756004, -0.010847232304513454, 0.010436749085783958, 0.024087492376565933, 0.011563393287360668, 0.007646337617188692, 0.013100521638989449, 0.0017652952810749412, 0.050899893045425415, -0.06581702083349228, -0.001384288421832025, 0.005689993035048246, -0.020786160603165627, -0.04824485257267952, -0.04461164399981499, -0.008362499997019768, -0.006676899269223213, 0.028541669249534607, -0.020803628489375114, 0.0022303638979792595, -0.003041504416614771, 0.0379740446805954, 0.0568038634955883, -0.04517059773206711, -0.062113940715789795, 0.04789550602436066, 0.029013289138674736, 0.04377320781350136, -0.017886579036712646, -0.02541501261293888, -0.055860623717308044, 0.019947728142142296, 0.04971211403608322, 0.00015065599291119725, 0.06487378478050232, 0.0058515663258731365, 0.02178180031478405, -0.02794777974486351, 0.028821147978305817, -0.0164105873554945, 0.038008980453014374, -0.02019227109849453, -0.003421419532969594, 0.04953743889927864, 0.007991318590939045, -0.006248948629945517, 0.0190568920224905, -0.04195660352706909, 0.04338892921805382, 0.012166017666459084, 0.033799346536397934, -0.024332035332918167, 0.024139894172549248, -0.017589634284377098, 0.013545939698815346, -0.08391320705413818, -0.023301461711525917, -0.009423641487956047, 0.02038441225886345, -0.0221486147493124, 0.035388875752687454, 0.05963357537984848, 0.04918809235095978, -0.034725114703178406, -0.01664639636874199, -0.020803628489375114, 0.024524176493287086, -0.004729288164526224, 0.04583435878157616, 0.013642010278999805, -0.03269890323281288, -0.01369441207498312, -0.04618370532989502, -0.0027118080761283636, 0.014331970363855362, -0.017406227067112923, -0.02925783209502697, -0.004240202251821756, 0.012794842943549156, -0.006711834110319614, 0.009982597082853317, -0.024157362058758736, -0.019668249413371086, 0.021292714402079582, -0.12017545104026794, 0.007484764792025089, -0.00276857684366405, 0.017275221645832062, 0.059773314744234085, -0.04971211403608322, 0.020803628489375114, 0.00029448879649862647, -0.007554634008556604, 0.013563406653702259, 0.007899614982306957, 0.01632324978709221, 0.06539780646562576, -0.023703210055828094, 0.04394788295030594, 0.015091801062226295, 0.010593955405056477, 0.013449869118630886, -0.03989545628428459, -0.053624801337718964, -0.04377320781350136, 0.032192349433898926, -0.0366465263068676, 0.04904835298657417, 0.04820992052555084, 0.009214033372700214, 0.017554698511958122, -0.00801315251737833, -0.023633340373635292, -0.0005769688286818564, -0.016637662425637245, -0.015013197436928749, 0.06945022940635681, 0.03825352340936661, 0.01757216639816761, -0.035109397023916245, 0.0525418259203434, 0.04000025987625122, -0.010541552677750587, 0.028349528089165688, -0.03037574328482151, -0.02635824866592884, -0.022550364956259727, 0.009117962792515755, 0.02347613498568535, -0.03601770102977753, 0.027056943625211716, 0.010297009721398354, -0.01630578190088272, -0.04255049303174019, -0.03318798914551735, 0.046882398426532745, 0.020821096375584602, 0.06337159126996994, 0.0331181176006794, 0.004637584555894136, 0.02242809347808361, -0.044436968863010406, -0.037904176861047745, 0.03215741366147995, -0.043808143585920334, 0.032821174710989, -0.006318818312138319, -0.07434109598398209, 0.03234955295920372, -0.006427989341318607, -0.023231592029333115, 0.0207512266933918, -0.01851540431380272, 0.0040720789693295956, 0.08482150733470917, -0.0004156686190981418, 0.05030600354075432, -0.037624698132276535, -0.05365973711013794, -0.02263770066201687, -0.028017649427056313, -0.019650781527161598, -0.012445495463907719, 0.024087492376565933, 0.010340678505599499, -0.04328412190079689, 0.03451550751924515, 0.01613110862672329, 0.03972078114748001, 0.04684746637940407, 0.02728402055799961, 0.047057073563337326, -0.012262088246643543, -0.009729321114718914, -0.06892620772123337, -0.06141524389386177, 0.015886565670371056, -0.045380208641290665, 0.01182540412992239, -0.02027960680425167, 0.00024877346004359424, -0.012069947086274624, 0.01257650088518858, -0.015729360282421112, 0.011484790593385696, -0.0058559332974255085, 0.032401956617832184, -0.021554725244641304, 0.02104817144572735, -0.0497470460832119, -0.03247182443737984, 0.029973993077874184, -0.06452443450689316, -0.033694542944431305, -0.06574714928865433, 0.014017557725310326, -0.041362714022397995, -0.02824472449719906, -0.03954610601067543, -0.007751142140477896, -0.02319665625691414, -0.0020720658358186483, 0.0061747124418616295, -0.017318889498710632, 0.012541566044092178, 0.10724960267543793, -0.01504813227802515, 0.012663837522268295, 0.020244672894477844, 0.04737148433923721, 0.0011129984632134438, 0.027353888377547264, 0.00972058717161417, -0.02541501261293888, 0.022008875384926796, -0.018620207905769348, 0.0450308583676815, 0.00624021515250206, -0.022201016545295715, -0.021729398518800735, 0.05498725548386574, 0.030340807512402534, -0.024803653359413147, -0.0065764617174863815, -0.011519725434482098, -0.02394775301218033, 0.02139751799404621, -0.022952113300561905, -0.04157232120633125, 0.04834965988993645, -0.015729360282421112, -0.065642349421978, -0.026061303913593292, -0.0017827627016231418, 0.02597396820783615, -0.026602791622281075, 0.0021463020239025354, 0.016593994572758675, 0.08468177169561386, 0.0802101269364357, -0.06738908588886261, -0.058480728417634964, -0.0067860702984035015, 0.005738028325140476, -0.020174803212285042, -0.051913000643253326, -0.06176459416747093, 0.006567728240042925, -0.08216647058725357, 0.07559874653816223, -0.060541875660419464, -0.011834138073027134, -0.10843738168478012, -0.0189870223402977, 0.0012718422804027796, 0.007030613254755735, 0.027144281193614006, -0.06840219348669052, 0.05662918835878372, -0.006759868934750557, 0.022672636434435844, 0.0037904176861047745, -0.0025196669157594442, 0.022690104320645332, 0.019039424136281013, -0.01103063952177763, 0.0036048267502337694, 0.04534527286887169, -0.06665545701980591, -0.021432453766465187, -0.004991298541426659, 0.008384333923459053, -0.005777330137789249, 0.003871204098686576, -0.016681330278515816, 0.05750255659222603, 0.0061266771517694, -0.043598536401987076, -0.04041947424411774, 0.06075148656964302, -0.0005698726745322347, 0.045764487236738205, 0.0122533543035388, -0.018550338223576546, 0.02281237579882145, -0.04041947424411774, -0.021432453766465187, -0.022864777594804764, 0.0056463247165083885, 0.04765096306800842, -0.004233651794493198, -0.011510991491377354, 0.01615731045603752, 0.019877858459949493, -0.021554725244641304, -0.05456804111599922, 0.03675132989883423, -0.0017085263971239328, 0.0007925815298222005, 0.019126761704683304, -0.06993931531906128, 0.013240260072052479, 0.0009792640339583158, 0.0025524182710796595, 0.004043694119900465, -0.05439336597919464, -0.015310143120586872, 0.001687783864326775, 0.05152871832251549, -0.021904071792960167, 0.027598431333899498, -0.029467439278960228, 0.06861180067062378, -0.026987073943018913, -0.025834228843450546, -0.016428053379058838, 0.011091775260865688, 0.03551114723086357, -0.007131050806492567, -0.028087519109249115, -0.021100573241710663, -0.06522312760353088, 0.010812297463417053, 0.036506786942481995, 0.0038340860046446323, 0.002164861187338829, 0.022550364956259727, 0.03234955295920372, 0.007436729501932859, 0.033030781894922256, 0.0009508795337751508, 0.02356347069144249, -0.028733810409903526, -0.007965116761624813, 0.02756349742412567, -0.018759947270154953, 0.0037336486857384443, -0.003689980134367943, -0.021624594926834106, 0.0428299717605114, -0.01896955445408821, 0.011554660275578499, 0.0342884324491024, -0.030043862760066986, -0.06012266129255295, 0.06487378478050232, 0.03084736131131649, 0.016471723094582558, -0.008794817142188549, -0.09600061923265457, -0.028576605021953583, 0.02244555950164795, -0.0069825779646635056, -0.06319691985845566, -0.04869900643825531, -0.05862046778202057, 0.039301563054323196, -0.04279503598809242, -0.006694366689771414, 0.06455937027931213, -0.02504819817841053, 0.03409628942608833, -0.09229753911495209, 0.012934581376612186, -0.037240415811538696, -0.0062576825730502605, 0.01201754529029131, 0.061659786850214005, 0.0005423069815151393, -0.036122504621744156, -0.02840193174779415, 0.00635375315323472, -0.019423706457018852, 0.06012266129255295, -0.0011965143494307995, 0.03159845992922783, 0.007467297371476889, 0.03226221725344658, -0.012401826679706573, -0.012768642045557499, 0.00579479755833745, 0.03654172271490097, 0.01481232326477766, 0.002421413082629442, 0.08510098606348038, 0.018253393471240997, -0.00935377273708582, 0.01018347218632698, 0.048664070665836334, -0.00635375315323472, 0.08496125042438507, -0.02131018228828907, 0.02206127904355526, -0.03308318555355072, 0.046043965965509415, -0.048279788345098495, 0.012428028509020805, 0.021572193130850792, 0.03484738618135452, 0.022742506116628647, 0.09544166922569275, -0.059389032423496246, 0.04985184967517853, 0.02066388912498951, 0.08468177169561386, -0.02169446460902691, 0.0276683010160923, 0.05236715078353882, 0.027790572494268417, -0.023633340373635292, -0.043598536401987076, -0.03156352415680885, -0.02036694437265396, 0.014314503408968449, -0.0086463438346982, -0.03720548003911972, -0.06295236945152283, -0.024471774697303772, -0.020978301763534546, -0.01973811909556389, -0.00022079837799537927, 0.02382548153400421, -0.046323444694280624, 0.024978328496217728, -0.008196559734642506, -0.000579698069486767, -0.000552405312191695, 0.01145858969539404, -0.00523584196344018, -0.07231488078832626, 0.02083856239914894, -0.0911097601056099, -0.02599143423140049, 0.016035038977861404, 0.00036763338721357286, -0.047161877155303955, 0.0038559201639145613, -0.010960769839584827, -0.017458628863096237, -0.0013155107153579593, 0.038917284458875656, -0.034812454134225845, 0.02972945012152195, 0.02393028698861599, -0.017842911183834076, -0.048559267073869705, 0.0313539132475853, 0.06497858464717865, -0.07587821781635284, 0.00882975198328495, 0.04269023239612579, -0.026043836027383804, -0.03647185117006302, 0.010034999810159206, -0.052961040288209915, 0.005550254136323929, 0.03699587285518646, -0.07385201007127762, 0.0322272814810276, -0.03514433279633522, -0.006414888892322779, -0.004366840701550245, 0.006331918761134148, 0.059319160878658295, -0.009930195286870003, -0.0883149802684784, -0.026061303913593292, -0.018567806109786034, -0.046218641102313995, 0.05093482881784439, -0.013860351406037807, 0.0450308583676815, 0.0034323367290198803, 0.03552861511707306, -0.03409628942608833, -0.015152936801314354, 0.0027794940397143364, -0.013048119843006134, 0.015886565670371056, 0.0360526368021965, 0.04178192839026451, -0.026288380846381187, 0.026480520144104958, 0.015441148541867733, -0.0200175978243351, -0.04447190463542938, -0.04803524538874626, -0.061939265578985214, -0.018445534631609917, 0.038463130593299866, -0.03103950247168541, 0.011013171635568142, -0.015318876132369041, -0.019982662051916122, -0.004139764700084925, -0.02983425371348858, -0.0009410541388206184, 0.04195660352706909, -0.005899601615965366, -0.038183651864528656, -0.018567806109786034, -0.00981665775179863, -0.010698758997023106, -0.033502399921417236, 0.009650717489421368, -0.02476871944963932, 0.010698758997023106, 0.03982558473944664, -0.040349606424570084, 0.048279788345098495, -0.048454463481903076, 0.019004490226507187, -0.012655103579163551, -0.028157386928796768, -0.01860274001955986, -0.0760878324508667, 0.023773079738020897, 0.044646576046943665, 0.025257805362343788, 0.03608756884932518, -0.004615750629454851, -0.05299597606062889, -0.03619237616658211, -0.0293626356869936, 0.03299584612250328, 0.017904046922922134, 0.02291717939078808, -0.005860299803316593, -0.048943549394607544, -0.015091801062226295, 0.008235861547291279, -0.02917049452662468, 0.020035063847899437, -0.0322272814810276, 0.03236702084541321, 0.05152871832251549, 0.022952113300561905, -0.03979065269231796, -0.07280396670103073, -0.024628980085253716, -0.0007953108288347721, 0.03374694287776947, 0.012759908102452755, -0.008786083199083805, 0.022463027387857437, -0.05743268504738808, -0.014532845467329025, 0.008034986443817616, 0.054253626614809036, 0.060891225934028625, 0.02057655341923237, -0.009432375431060791, -0.023528536781668663, -0.03647185117006302, -0.02840193174779415, 0.00044869285193271935, 0.03552861511707306, 0.07790443301200867, -0.014078693464398384, 0.019214099273085594, -0.023318927735090256, 0.021362584084272385, -0.009476044215261936, 0.05655931681394577, -0.035388875752687454, -0.011004437692463398, -0.14435027539730072, 0.019685717299580574, 0.0456247515976429, 0.03357227146625519, 0.029519841074943542, 0.004360290244221687, -0.012366892769932747, 0.06899607926607132, -0.043703339993953705, 0.007890881039202213, -0.07650704681873322, 0.06717947125434875, -0.011257714591920376, -0.00488212751224637, -0.027615899220108986, -0.008960756473243237, 0.022218484431505203, 0.027266552671790123, 0.003965091425925493, 0.02094336785376072, -0.0262709129601717, 0.03338012844324112, 0.02393028698861599, -0.012829777784645557, -0.0043144384399056435, -0.018567806109786034, -0.0017685703933238983, 0.01772063970565796, 0.04422736167907715, 0.016681330278515816, 0.027423758059740067, 0.04936276376247406, 0.046602923423051834, 0.007000045385211706, -0.02840193174779415, -0.03186046704649925, 0.03243689239025116, 0.05648944899439812, -0.05488245189189911, -0.0071135833859443665, -0.03573822230100632, -0.06986945122480392, 0.015930233523249626, 0.0038537366781383753, 0.02008746564388275, -0.02225342020392418, -0.006283883471041918, 0.027633367106318474, -0.007995684631168842, -0.004061161540448666, -0.0662362352013588, 0.07102229446172714, 0.03215741366147995, -0.00813979096710682 ]
39,906
lerc._lerc
encode_ma
null
def encode_ma(npmaArr, nValuesPerPixel, maxZErr, nBytesHint, npmaNoDataPerBand = None, printInfo = False): fctErr = 'Error in encode_ma(): ' if nValuesPerPixel == 1: return _encode_Ext(npmaArr.data, nValuesPerPixel, np.logical_not(npmaArr.mask), maxZErr, nBytesHint, npmaNoDataPerBand, printInfo) elif nValuesPerPixel > 1: npArr = npmaArr.data if npmaNoDataPerBand is not None: # for each band that has noData value, fill all masked values with that noData value if npmaArr.ndim == 3: # nBands == 1 if not npmaNoDataPerBand.mask[0]: npArr = np.ma.filled(npmaArr, npmaNoDataPerBand[0]) return _encode_Ext(npArr, nValuesPerPixel, None, maxZErr, nBytesHint, npmaNoDataPerBand, printInfo) elif npmaArr.ndim == 4: # nBands > 1 nBands = npmaNoDataPerBand.size for m in range(nBands): if not npmaNoDataPerBand.mask[m]: npArr[m] = np.ma.filled(npmaArr[m], npmaNoDataPerBand[m]) if not np.any(npmaNoDataPerBand.mask): return _encode_Ext(npArr, nValuesPerPixel, None, maxZErr, nBytesHint, npmaNoDataPerBand, printInfo) # now we have at least one band w/o a noData value, so we must convert the mask and check there is no mixed case # compute sum of most inner dimension, # so that resulting array has one dim less, and values are in [0, nDepth] intMask = np.sum(npmaArr.mask, axis = npmaArr.mask.ndim - 1, dtype = int) # for each band without a noData value, check there is no other value but 0 or nDepth # (ensure there is no mixed case) if intMask.ndim == 2: # nBands == 1 if npmaNoDataPerBand.mask[0]: uv = np.unique(intMask) if _has_mixed_case(uv, nValuesPerPixel, 0): return (-1, 0) elif intMask.ndim == 3: # nBands > 1 for m in range(nBands): if npmaNoDataPerBand.mask[m]: uv = np.unique(intMask[m]) if _has_mixed_case(uv, nValuesPerPixel, m): return (-1, 0) # convert this int mask back to boolean boolMask = intMask.astype(bool) return _encode_Ext(npArr, nValuesPerPixel, np.logical_not(boolMask), maxZErr, nBytesHint, npmaNoDataPerBand, printInfo)
(npmaArr, nValuesPerPixel, maxZErr, nBytesHint, npmaNoDataPerBand=None, printInfo=False)
[ -0.015028566122055054, 0.03609905391931534, 0.03142942860722542, 0.022871628403663635, 0.010978381149470806, 0.0109593216329813, -0.04208379611372948, -0.05290969833731651, 0.022528553381562233, -0.01851648837327957, 0.026931341737508774, 0.022071121260523796, 0.009024763479828835, -0.026931341737508774, 0.020622584968805313, -0.007428514305502176, -0.03484111279249191, 0.03562255948781967, 0.018449779599905014, 0.05256662517786026, -0.0038214679807424545, 0.015171512961387634, 0.007843062281608582, 0.0530240572988987, 0.010073046199977398, -0.000004760269348480506, -0.009615614078938961, -0.030438324436545372, -0.034650515764951706, 0.08271905779838562, -0.044523436576128006, -0.032763607800006866, 0.00015977381553966552, 0.0378144271671772, 0.06514602154493332, -0.03562255948781967, -0.006280167959630489, -0.008748398162424564, -0.18144825100898743, -0.07071144878864288, -0.013046357780694962, -0.07795413583517075, 0.03607999533414841, 0.011512053199112415, 0.008314790204167366, -0.05938999354839325, 0.023595895618200302, 0.013627678155899048, -0.017096541821956635, 0.01931699551641941, -0.016629580408334732, -0.0508512519299984, 0.007276036776602268, 0.05523498356342316, -0.04372292757034302, 0.05043194070458412, -0.010702015832066536, 0.021251553669571877, 0.015343050472438335, -0.039301082491874695, -0.04090209677815437, 0.007623875979334116, 0.022090181708335876, -0.06689951568841934, -0.05275722220540047, 0.027560312300920486, -0.02218548022210598, 0.014552073553204536, 0.015781423076987267, 0.06243954598903656, -0.026645446196198463, 0.0192788764834404, 0.043151140213012695, 0.05916127935051918, 0.043989766389131546, 0.03592751547694206, -0.0015605121152475476, 0.04978391155600548, -0.028684834018349648, 0.044256601482629776, 0.024567941203713417, 0.04246499016880989, 0.05008886754512787, 0.013551440089941025, -0.01790657825767994, -0.0022311750799417496, -0.016496160998940468, 0.05210919305682182, 0.07844968140125275, -0.0547013096511364, -0.01340849231928587, -0.014704550616443157, 0.04326549544930458, 0.05458695441484451, -0.03621341288089752, -0.0006024648901075125, 0.023614956066012383, 0.022661970928311348, 0.020679764449596405, -0.01782081089913845, -0.0001404907670803368, -0.05938999354839325, 0.03362129256129265, -0.03644212707877159, 0.016991714015603065, 0.06312569230794907, 0.03714733570814133, 0.024529822170734406, -0.05119432881474495, 0.05942811444401741, -0.0032044104300439358, 0.0009732354083098471, -0.05233791097998619, -0.06335441023111343, -0.003988240379840136, 0.030571743845939636, -0.02544468641281128, -0.015019035898149014, -0.004174072295427322, 0.02109907753765583, -0.010987911373376846, 0.048335373401641846, 0.009653733111917973, -0.031315069645643234, -0.0027612727135419846, -0.006284932605922222, 0.07448527216911316, -0.004550501238554716, -0.00035141303669661283, -0.007871652022004128, -0.016581930220127106, 0.03224899619817734, -0.013189305551350117, -0.02056540548801422, 0.003309238702058792, -0.02437734417617321, -0.0038190854247659445, -0.07208374887704849, -0.016029199585318565, -0.040139708667993546, 0.003699962282553315, 0.019450413063168526, 0.03640400990843773, 0.03156284615397453, 0.0046553295105695724, -0.0069234324619174, 0.11313831806182861, 0.024567941203713417, 0.018678495660424232, -0.0276937298476696, -0.0349554717540741, -0.008877051062881947, -0.020393868908286095, 0.0004913826123811305, 0.0219186432659626, 0.0006545812357217073, 0.05473943054676056, -0.04440907761454582, -0.03257301077246666, 0.030571743845939636, -0.03472675383090973, -0.03038114681839943, -0.013551440089941025, -0.012960589490830898, -0.01655334047973156, 0.018592728301882744, -0.03941543772816658, -0.0041955141350626945, 0.02815116196870804, 0.0049698143266141415, 0.038729291409254074, -0.030857637524604797, -0.06392619758844376, 0.013017768040299416, 0.009067647159099579, -0.0049984036013484, -0.018364012241363525, -0.03066704235970974, -0.04086397588253021, 0.030171489343047142, 0.01894533261656761, 0.021175315603613853, -0.004295577760785818, -0.004664859268814325, -0.025101611390709877, -0.02874201349914074, 0.03869117051362991, -0.026664506644010544, 0.03369753062725067, -0.009644202888011932, 0.00520329549908638, 0.027503132820129395, 0.014475834555923939, 0.007862121798098087, 0.0014997593825682998, -0.0836339220404625, 0.06045733764767647, 0.014714080840349197, 0.051918596029281616, -0.022357016801834106, 0.003354505402967334, -0.02104189805686474, 0.04181696102023125, -0.008548270910978317, -0.012493627145886421, -0.03070516139268875, 0.01974583975970745, 0.02270009182393551, -0.01755397394299507, 0.059542473405599594, 0.03891988843679428, -0.049936387687921524, 0.02247137390077114, -0.014675961807370186, 0.024796657264232635, -0.01687735505402088, 0.09552716463804245, 0.015247751958668232, -0.04235063120722771, 0.006932962220162153, -0.05870384722948074, -0.004533823579549789, -0.018097175285220146, 0.019517121836543083, -0.010139754973351955, 0.027274416759610176, 0.015019035898149014, 0.027846207842230797, 0.05496814474463463, 0.02740783430635929, -0.042846184223890305, 0.04223627224564552, -0.09003797918558121, -0.03121977299451828, -0.03527948632836342, -0.005098467227071524, 0.07372288405895233, -0.047534868121147156, -0.016381803900003433, -0.04856409132480621, -0.003966798074543476, -0.016762997955083847, -0.02439640276134014, 0.03991099074482918, 0.027503132820129395, -0.0722743421792984, 0.041473884135484695, 0.03093387745320797, 0.019231228157877922, -0.003835762618109584, -0.02466323971748352, -0.0014664048794656992, -0.023176582530140877, 0.027979625388979912, -0.011045090854167938, -0.015686124563217163, 0.017048893496394157, 0.029409101232886314, 0.04921212047338486, -0.0167344082146883, -0.0034164495300501585, -0.026607327163219452, 0.03621341288089752, -0.010025396943092346, 0.0243392251431942, -0.011197567917406559, 0.005860854871571064, 0.01776363141834736, 0.0470011942088604, 0.06815744936466217, -0.021175315603613853, 0.001665340387262404, 0.005817970260977745, -0.03529854491353035, -0.025940237566828728, 0.05782710015773773, 0.06495542079210281, -0.04814477637410164, -0.0049698143266141415, 0.029142266139388084, -0.015724243596196175, -0.015400229953229427, -0.032744549214839935, 0.025368448346853256, 0.03196309879422188, 0.022566672414541245, 0.05702659487724304, -0.012627044692635536, -0.0009756179060786963, -0.013599089346826077, 0.028665773570537567, 0.013351312838494778, -0.08813200891017914, -0.0018380688270553946, -0.020165152847766876, -0.07242682576179504, 0.007009201217442751, -0.00393820833414793, 0.0028803956229239702, -0.025806820020079613, -0.03259206935763359, -0.013780156150460243, 0.08508245646953583, -0.02685510367155075, 0.04044466093182564, 0.0036904325243085623, -0.07966950535774231, -0.0026969462633132935, 0.00433846190571785, 0.007890711538493633, -0.020451048389077187, 0.007357040420174599, 0.006451705005019903, -0.03968227654695511, 0.02817022241652012, 0.024739477783441544, 0.08607356250286102, 0.04856409132480621, 0.039529796689748764, 0.06377372145652771, 0.017706451937556267, -0.050546299666166306, -0.05977118760347366, -0.06968222558498383, 0.032763607800006866, -0.04444719851016998, 0.011588291265070438, -0.020698823034763336, 0.0035236601252108812, -0.006818604189902544, -0.0015974403358995914, 0.0012090990785509348, -0.027750909328460693, 0.009153416380286217, 0.006661361549049616, -0.023881791159510612, -0.028684834018349648, -0.05614984780550003, -0.005994272418320179, 0.019250286743044853, -0.0657559335231781, -0.013084477744996548, -0.04856409132480621, -0.011845597065985203, 0.009958688169717789, -0.024320164695382118, -0.02900884859263897, 0.022318897768855095, -0.0339643694460392, 0.030228668823838234, -0.0032615894451737404, 0.018830973654985428, 0.008467267267405987, 0.07989822328090668, 0.014828438870608807, 0.046963077038526535, 0.03869117051362991, -0.009386897087097168, -0.018421189859509468, 0.00452667661011219, 0.033792831003665924, 0.031905923038721085, 0.042579349130392075, -0.01453301403671503, 0.03556538373231888, -0.017039362341165543, -0.02085130102932453, 0.03640400990843773, 0.05066065490245819, -0.035679738968610764, 0.019936436787247658, -0.029466280713677406, -0.004212191328406334, -0.07620064169168472, -0.003914383705705404, -0.019088279455900192, -0.027846207842230797, 0.02001267485320568, -0.026931341737508774, -0.02982841432094574, -0.011998075060546398, -0.00683766370639205, -0.04158824309706688, -0.022528553381562233, 0.029656877741217613, 0.0021918644197285175, 0.05771274119615555, 0.04376104846596718, -0.08424383401870728, -0.05279534310102463, 0.011102269403636456, -0.014990446157753468, 0.0010953365126624703, -0.07486646622419357, -0.022547613829374313, 0.028799191117286682, -0.03890082612633705, 0.06956786662340164, -0.059847425669431686, 0.004081156104803085, -0.060647934675216675, -0.06552721560001373, 0.012474567629396915, 0.011616881005465984, -0.008233786560595036, -0.04033030569553375, 0.024796657264232635, -0.04982202872633934, -0.0029709292575716972, 0.04566701874136925, 0.022299837321043015, 0.0071997977793216705, 0.029180385172367096, -0.018097175285220146, 0.0024777597282081842, 0.049707673490047455, -0.03741417080163956, -0.06491730362176895, -0.02851329743862152, -0.003978710155934095, -0.00009045907791005448, -0.05180423706769943, 0.018135294318199158, 0.05961871147155762, 0.0470011942088604, -0.07482834160327911, -0.03280172497034073, 0.011721709743142128, -0.060914769768714905, 0.05207107216119766, 0.039834752678871155, -0.040101587772369385, 0.023672135546803474, -0.047268033027648926, 0.0018213916337117553, 0.013580028899013996, -0.03339257836341858, 0.02003173530101776, -0.004712508525699377, -0.03607999533414841, 0.03177250176668167, 0.00848156213760376, -0.01669628918170929, -0.025292208418250084, -0.02494913525879383, -0.004190749488770962, 0.037642888724803925, 0.01356096938252449, -0.07071144878864288, -0.001337751979008317, -0.01109274011105299, 0.017363376915454865, 0.006904372945427895, -0.05553993582725525, 0.02412956766784191, -0.0008874668274074793, -0.03259206935763359, 0.00010281809227308258, 0.05534933879971504, 0.019364645704627037, 0.053748324513435364, -0.0012412623036652803, -0.05744590610265732, -0.028799191117286682, 0.057598382234573364, 0.059313755482435226, 0.03426932170987129, -0.021747106686234474, -0.014628312550485134, -0.05771274119615555, 0.0023955649230629206, 0.0041311876848340034, 0.014656901359558105, 0.0027040934655815363, 0.045819494873285294, 0.0036451658234000206, -0.03861493244767189, 0.012798582203686237, -0.0033902423456311226, 0.04055901989340782, -0.014294767752289772, 0.04620068892836571, 0.02079412154853344, -0.019202638417482376, 0.013656267896294594, -0.008452972397208214, -0.011626411229372025, -0.011883717030286789, 0.02186146378517151, -0.017525384202599525, 0.00848156213760376, -0.03314480185508728, -0.02521597035229206, 0.08919934928417206, -0.016496160998940468, 0.01329413428902626, 0.0173538476228714, -0.0597330704331398, -0.016905944794416428, 0.0008701939950697124, -0.006985376589000225, -0.05016510561108589, -0.08592108637094498, -0.036518365144729614, -0.006261108443140984, -0.012703283689916134, -0.024167686700820923, 0.03720451518893242, 0.015247751958668232, 0.017506325617432594, -0.05386268347501755, 0.005560664460062981, -0.029199445620179176, -0.021289674565196037, 0.02822740189731121, 0.04303678125143051, -0.007295096293091774, -0.0580558180809021, -0.037376053631305695, -0.016296034678816795, -0.02111813612282276, -0.0013973135501146317, -0.01001586765050888, 0.03097199648618698, 0.0009214169112965465, 0.03581315651535988, -0.019250286743044853, -0.017306199297308922, -0.03184874355792999, -0.008014599792659283, -0.0325348898768425, -0.017839869484305382, 0.05999990552663803, 0.05401516333222389, 0.029180385172367096, -0.03964415565133095, 0.055692415684461594, 0.010339882224798203, 0.0686148852109909, 0.04326549544930458, 0.01123568695038557, -0.0073808650486171246, 0.025616222992539406, -0.0537102073431015, 0.021994883194565773, 0.013036828488111496, -0.011855127289891243, 0.02026045136153698, 0.07505705952644348, -0.04372292757034302, 0.032992321997880936, 0.03344975784420967, 0.05332901328802109, 0.04654376208782196, 0.04703931510448456, 0.07860216498374939, 0.015886250883340836, -0.016010139137506485, -0.02550186589360237, -0.0008642378379590809, -0.023767434060573578, 0.00045713476720266044, 0.007190268021076918, -0.028551416471600533, -0.10848775506019592, 0.0018714233301579952, -0.018592728301882744, 0.023881791159510612, -0.027217237278819084, 0.0026326198130846024, -0.023710254579782486, -0.019059689715504646, -0.05275722220540047, -0.03236335515975952, -0.018221063539385796, 0.05862760543823242, -0.009582259692251682, -0.1117660254240036, -0.01272234320640564, -0.02982841432094574, -0.010358941741287708, 0.010787785053253174, 0.003537954995408654, -0.0380621999502182, 0.012541276402771473, 0.00527953403070569, -0.06057169660925865, 0.017725512385368347, 0.03171532601118088, -0.01147393323481083, 0.01632462441921234, 0.046924956142902374, 0.005989507772028446, -0.05862760543823242, -0.019164519384503365, 0.09651827067136765, -0.026645446196198463, -0.029142266139388084, 0.061219725757837296, -0.014942796900868416, -0.01726807840168476, 0.00848156213760376, -0.06529849767684937, -0.041245169937610626, 0.04406600445508957, -0.015114334411919117, 0.012055253610014915, -0.01917404867708683, 0.006980611477047205, 0.012055253610014915, 0.008648334071040154, 0.05275722220540047, -0.02138497307896614, -0.05172799900174141, 0.021461211144924164, -0.017277609556913376, -0.04509522765874863, 0.014790319837629795, 0.01312259677797556, 0.06423115730285645, 0.00809083878993988, 0.023138463497161865, -0.020622584968805313, -0.0035117478109896183, 0.0051365867257118225, -0.03062892146408558, 0.0176969226449728, 0.0070520853623747826, -0.007947891019284725, -0.039834752678871155, 0.03242053464055061, 0.06617524474859238, 0.015247751958668232, -0.05828453227877617, -0.050813134759664536, -0.03661366552114487, -0.02193770371377468, 0.030571743845939636, -0.03263019025325775, 0.044485315680503845, -0.007914536632597446, -0.03419308364391327, 0.0448283925652504, -0.03070516139268875, 0.009553669951856136, 0.02632143162190914, 0.012703283689916134, -0.03337351605296135, -0.03922484070062637, -0.009977747686207294, -0.017420556396245956, -0.03994911164045334, -0.011836067773401737, 0.001629603561013937, 0.040101587772369385, 0.02796056494116783, -0.0041311876848340034, 0.052414149045944214, -0.06041921675205231, -0.01437100674957037, -0.008591155521571636, -0.04158824309706688, -0.021728046238422394, -0.065069779753685, 0.05778897926211357, 0.024834776297211647, 0.03615623340010643, 0.02386273257434368, 0.04627692699432373, 0.009710912592709064, -0.02466323971748352, 0.033525995910167694, -0.00012329236778896302, 0.016372274607419968, 0.08134675770998001, 0.041245169937610626, -0.04261746630072594, -0.013618148863315582, -0.002029856899753213, -0.013627678155899048, -0.004274135455489159, -0.01966959983110428, 0.01874520443379879, 0.08637851476669312, 0.029466280713677406, -0.021956762298941612, 0.001855937298387289, -0.03972039371728897, -0.01396122295409441, 0.02052728645503521, 0.03247771039605141, -0.029085086658596992, 0.016381803900003433, -0.021003779023885727, 0.0023205173201858997, 0.02817022241652012, -0.026740744709968567, 0.06320193409919739, 0.02104189805686474, 0.021728046238422394, 0.005365302786231041, -0.020927539095282555, -0.05885632336139679, -0.004438525531440973, -0.007580991834402084, 0.07749669998884201, -0.010759195312857628, 0.02054634690284729, 0.011969485320150852, 0.006056216545403004, -0.0672425851225853, 0.07700114697217941, -0.02329094149172306, -0.0334688164293766, -0.13425645232200623, -0.028684834018349648, 0.0180685855448246, 0.036041874438524246, 0.04086397588253021, 0.0018344952259212732, -0.009229655377566814, 0.07951702922582626, -0.04349421337246895, 0.02712193876504898, -0.04799230024218559, 0.046353165060281754, -0.030285848304629326, -0.03343069553375244, 0.005127056501805782, -0.04090209677815437, 0.022261718288064003, 0.028322700411081314, 0.05146116390824318, 0.058513250201940536, -0.012512686662375927, 0.02106095850467682, 0.029237564653158188, -0.0071997977793216705, -0.026893222704529762, -0.023614956066012383, 0.025006312876939774, -0.012865290977060795, 0.035984694957733154, 0.010501889511942863, -0.0017010773299261928, 0.048640329390764236, 0.04490463063120842, 0.01380874589085579, -0.015781423076987267, -0.019917376339435577, 0.02298598550260067, -0.00791930127888918, -0.04894528537988663, 0.047229912132024765, -0.02189958468079567, -0.027293477207422256, 0.01671534776687622, -0.01917404867708683, 0.0416644811630249, -0.008591155521571636, -0.005551134701818228, 0.03484111279249191, -0.012283970601856709, 0.007642935961484909, -0.06343065202236176, 0.06491730362176895, 0.009101002477109432, -0.01436147652566433 ]
39,907
lerc._lerc
findDataRange
null
def findDataRange(npArr, bHasMask, npValidMask, nBands, printInfo = False): if printInfo: start = timer() if not bHasMask or npValidMask is None: zMin = np.amin(npArr) zMax = np.amax(npArr) else: if not npValidMask.any(): # if all pixel values are void return (-1, -1) if nBands == 1 or npValidMask.ndim == 3: # one mask per band zMin = np.amin(npArr[npValidMask]) zMax = np.amax(npArr[npValidMask]) elif nBands > 1: # same mask for all bands zMin = float("inf") zMax = -zMin for m in range(nBands): zMin = min(np.amin(npArr[m][npValidMask]), zMin) zMax = max(np.amax(npArr[m][npValidMask]), zMax) if printInfo: end = timer() print('time findDataRange() = ', (end - start)) return (zMin, zMax)
(npArr, bHasMask, npValidMask, nBands, printInfo=False)
[ 0.021676305681467056, 0.003265281906351447, -0.042356424033641815, 0.007508303504437208, -0.012941216118633747, 0.04582463577389717, -0.01382671669125557, -0.049661800265312195, -0.022746285423636436, -0.05412619933485985, 0.022617150098085403, 0.012406226247549057, -0.029479777440428734, -0.07279549539089203, -0.03182266280055046, 0.014638424851000309, -0.021067524328827858, 0.031564392149448395, -0.06408807635307312, 0.029184609651565552, -0.03490346670150757, -0.006558235734701157, 0.006050917785614729, 0.04324192553758621, 0.03770754858851433, 0.05283484235405922, 0.015699179843068123, -0.03877753019332886, 0.010164803825318813, 0.06589597463607788, -0.05633994936943054, -0.04390605166554451, -0.014536960981786251, 0.021731650456786156, 0.0028963235672563314, 0.012636825442314148, 0.07785022258758545, 0.01138236653059721, -0.08072809875011444, 0.0345345064997673, -0.028409797698259354, -0.0937892273068428, 0.05335138365626335, 0.024314358830451965, 0.019979096949100494, -0.07666955888271332, 0.042245738208293915, -0.05246588587760925, -0.06316567957401276, 0.04497602954506874, 0.038150299340486526, -0.04029025882482529, 0.00277641206048429, 0.003625016426667571, -0.06453082710504532, 0.047079093754291534, 0.014979710802435875, 0.0587012805044651, 0.015708403661847115, -0.027837911620736122, 0.001137429615482688, 0.026970859616994858, 0.027339817956089973, -0.044385697692632675, -0.025365890935063362, 0.009971100836992264, -0.07748126238584518, -0.017719227820634842, -0.04313123598694801, 0.06910590827465057, 0.0076789469458162785, 0.04405363276600838, 0.06364532560110092, 0.03160128742456436, -0.006539787631481886, 0.01574530079960823, 0.005114685744047165, 0.001099380780942738, -0.02086459845304489, 0.02490469254553318, 0.05807405337691307, 0.03075268305838108, 0.0844176858663559, 0.009251631796360016, 0.02282007783651352, -0.026841724291443825, 0.004637346137315035, 0.0602509081363678, 0.08522938936948776, -0.0032745059579610825, -0.0067427149042487144, -0.009330036118626595, 0.022893868386745453, 0.036748256534338, -0.007969501428306103, 0.014131107367575169, -0.009242407977581024, 0.049956969916820526, -0.004127722233533859, -0.02811462990939617, -0.001048072474077344, -0.02007133699953556, 0.03429468348622322, -0.005488256458193064, 0.00865207426249981, 0.05316690728068352, 0.0026288286317139864, -0.013208710588514805, -0.07534130662679672, 0.04486534371972084, -0.00672887871041894, 0.036065682768821716, -0.06663388758897781, -0.014712216332554817, -0.010690569877624512, 0.03114008903503418, 0.01747940480709076, 0.02923995442688465, -0.0016868317034095526, -0.021565617993474007, -0.0120003717020154, 0.029424432665109634, -0.01640942506492138, 0.022063713520765305, -0.015929779037833214, 0.006336860824376345, 0.06279671937227249, 0.013061127625405788, 0.0024328194558620453, -0.009007196873426437, 0.036231715232133865, -0.025089170783758163, -0.029922526329755783, 0.005488256458193064, 0.010506090708076954, -0.00003341884075780399, 0.0295166727155447, -0.0023325090296566486, -0.042467113584280014, -0.043537091463804245, -0.004305283538997173, 0.015653060749173164, -0.006355308461934328, 0.018429473042488098, -0.01157606951892376, 0.020550983026623726, 0.06733490526676178, 0.04962490499019623, 0.04305744543671608, -0.026897067204117775, -0.03213627636432648, -0.033409181982278824, -0.03929407149553299, 0.04110196605324745, 0.056413739919662476, -0.015099622309207916, 0.022063713520765305, -0.10352972894906998, -0.050842467695474625, -0.01245234627276659, -0.07821918278932571, 0.00975895021110773, -0.06209569796919823, -0.06386669725179672, -0.02715533785521984, 0.03518018499016762, -0.05217071995139122, 0.007960277609527111, 0.01253536157310009, 0.041065070778131485, 0.023742472752928734, 0.02540278621017933, -0.05667201057076454, 0.032117828726768494, -0.0032906478736549616, -0.009915756992995739, -0.002960891230031848, -0.011659085750579834, -0.0295166727155447, 0.016713816672563553, 0.0473373644053936, 0.005912558641284704, 0.012397002428770065, -0.020550983026623726, -0.00578803475946188, 0.0018828408792614937, 0.011446934193372726, -0.027063099667429924, -0.025937775149941444, 0.02079080604016781, -0.04283607006072998, 0.02704465202987194, -0.008864225819706917, -0.02210060879588127, -0.014084987342357635, -0.005193089600652456, -0.010865825228393078, 0.10965444147586823, -0.016114259138703346, -0.037633758038282394, 0.06087813526391983, -0.009971100836992264, -0.006553623825311661, -0.008172428235411644, -0.019591690972447395, -0.03222851827740669, -0.001643017865717411, 0.046230487525463104, -0.007743514608591795, 0.02304145321249962, -0.01675993576645851, -0.04659944772720337, -0.003993974532932043, -0.019591690972447395, 0.052133820950984955, 0.017276477068662643, 0.02457262948155403, -0.04110196605324745, -0.010727466084063053, 0.01272906456142664, 0.04361088201403618, -0.049551114439964294, 0.04659944772720337, -0.0001676166575634852, -0.009703606367111206, 0.02147337980568409, 0.019241180270910263, 0.014241794124245644, 0.030900266021490097, 0.011391590349376202, -0.01579141989350319, -0.011087199673056602, -0.041175756603479385, -0.05752061679959297, -0.021897681057453156, 0.05482722073793411, 0.04036404937505722, -0.00037616462213918567, 0.044275008141994476, -0.021270452067255974, -0.041175756603479385, 0.03529087081551552, -0.0033898053225129843, -0.014601528644561768, 0.007240808568894863, -0.08825485408306122, 0.027745671570301056, 0.008661299012601376, -0.0006485597114078701, -0.018586279824376106, -0.05637684464454651, -0.032357651740312576, -0.0042499396950006485, 0.01669536717236042, -0.003013928886502981, 0.03704342246055603, -0.004669629968702793, 0.028465140610933304, 0.04327882081270218, 0.018291112035512924, 0.00011609218927333131, -0.04243021830916405, 0.00840763933956623, -0.0023544158320873976, -0.004884087014943361, 0.017451733350753784, 0.026325182989239693, -0.040511634200811386, -0.011456158943474293, 0.0594760961830616, 0.015099622309207916, 0.03851925581693649, -0.030937163159251213, -0.04316813498735428, -0.016621576622128487, 0.011622189544141293, 0.09076377004384995, -0.09039480984210968, 0.039146486669778824, -0.007005597930401564, 0.01357766892760992, -0.002495081163942814, -0.026860171929001808, 0.004637346137315035, 0.05268726125359535, -0.038150299340486526, 0.06504736840724945, -0.008227772079408169, 0.0068303425796329975, 0.019923754036426544, -0.02197147347033024, -0.051395904272794724, -0.05431067571043968, -0.029701150953769684, 0.0029124654829502106, 0.011133319698274136, 0.04368467628955841, -0.003830249421298504, -0.0240007434040308, -0.014435498043894768, -0.01844792068004608, -0.07932605594396591, 0.008163204416632652, 0.04069611057639122, 0.020108232274651527, 0.012166403234004974, -0.03593654930591583, 0.010469194501638412, 0.007245420478284359, -0.01341163832694292, 0.002289848169311881, -0.06453082710504532, 0.0589226558804512, -0.043647781014442444, 0.02243267185986042, 0.0008001785608939826, 0.0008094024960882962, 0.07154103368520737, -0.052871737629175186, 0.035438455641269684, 0.007084001321345568, -0.025365890935063362, 0.0053176130168139935, -0.026675691828131676, 0.019425660371780396, -0.001334015280008316, -0.04523430019617081, 0.011649861931800842, 0.015431685373187065, 0.06829419732093811, -0.007605154998600483, -0.0033114016987383366, 0.01562538929283619, 0.030605100095272064, 0.09762639552354813, 0.02534744329750538, 0.020163577049970627, 0.0016729957424104214, 0.003841779427602887, -0.019536348059773445, -0.05622925981879234, -0.001444702735170722, -0.015606940723955631, -0.005216149613261223, 0.06796213984489441, -0.02704465202987194, -0.022119056433439255, 0.03660067543387413, -0.03287419304251671, 0.02630673348903656, 0.026565006002783775, 0.040733009576797485, -0.058369219303131104, 0.05700407177209854, -0.02051408775150776, 0.05811094865202904, 0.0713934525847435, -0.006018633954226971, 0.05172796919941902, 0.017903706058859825, 0.03047596476972103, 0.0006105108768679202, 0.025550369173288345, -0.05397861450910568, 0.01742406003177166, -0.010238595306873322, -0.03363055735826492, 0.022727837786078453, 0.04608290642499924, 0.014011195860803127, 0.0023913115728646517, -0.034718986600637436, -0.015948226675391197, -0.04992007091641426, 0.010275491513311863, -0.05043661221861839, -0.007014821749180555, -0.011234783567488194, -0.030771130695939064, -0.04626738280057907, -0.01719346083700657, -0.01121633592993021, -0.011336247436702251, 0.012710616923868656, 0.012175627052783966, 0.004584308248013258, -0.03047596476972103, 0.05766819790005684, -0.04940352961421013, -0.03944165259599686, 0.011686757206916809, -0.016381753608584404, 0.005285329185426235, -0.04254090413451195, -0.014472393319010735, 0.02309679612517357, 0.01871541514992714, 0.0484442375600338, 0.01152072660624981, -0.032523684203624725, -0.07320135086774826, -0.03490346670150757, -0.04840734228491783, 0.04283607006072998, 0.05538065731525421, 0.0025043052155524492, 0.01422334648668766, -0.05198623985052109, -0.005299164913594723, 0.04047473520040512, -0.03969992324709892, -0.01743328385055065, 0.04088059067726135, -0.02243267185986042, -0.009293139912188053, 0.03069734014570713, -0.10456281155347824, 0.060619864612817764, -0.02759808860719204, -0.02114131674170494, -0.0029701150488108397, -0.08345839381217957, 0.0074990796856582165, 0.006184665486216545, 0.010515314526855946, -0.021823890507221222, -0.014619977213442326, 0.011686757206916809, -0.022174399346113205, 0.050067655742168427, 0.003973220940679312, 0.00664586341008544, -0.03918338194489479, -0.07434511929750443, -0.011529950425028801, -0.045049820095300674, -0.0301254540681839, 0.026546556502580643, 0.023299723863601685, 0.0009529503877274692, 0.048886988312006, 0.052244510501623154, 0.05774199217557907, 0.005165417678654194, -0.04560326039791107, -0.012627601623535156, 0.013817491941154003, 0.0007125509437173605, -0.04017956927418709, -0.03750462085008621, 0.014426273293793201, -0.04025336354970932, 0.037080321460962296, -0.013669908978044987, 0.010579882189631462, -0.03388882800936699, -0.06777765601873398, -0.003920183051377535, 0.019148942083120346, 0.023650234565138817, 0.008080189116299152, 0.02523675560951233, -0.07615301758050919, -0.051912449300289154, 0.001083238865248859, 0.011862012557685375, 0.05091625824570656, -0.060915034264326096, -0.03636085242033005, -0.03102940134704113, -0.009814293123781681, -0.03281885012984276, -0.03455295413732529, -0.011659085750579834, 0.03578896448016167, 0.04434879869222641, 0.00885039009153843, 0.04110196605324745, 0.000541331188287586, 0.02355799451470375, -0.0005808212445117533, -0.005100850015878677, -0.03412865102291107, 0.01659390516579151, -0.04969869554042816, -0.008702806197106838, -0.05003076046705246, 0.04327882081270218, -0.05988194793462753, -0.08648385107517242, 0.02191612869501114, -0.017055101692676544, -0.040327154099941254, 0.010810481384396553, -0.023244379088282585, -0.05261346697807312, 0.051469698548316956, -0.015385565347969532, 0.0587012805044651, 0.010911945253610611, -0.02169475331902504, 0.0016568538267165422, 0.005479032173752785, -0.017294924706220627, 0.0236686822026968, -0.005963290110230446, 0.0052668810822069645, 0.03455295413732529, -0.0014331728452816606, 0.008292339742183685, -0.007429900113493204, -0.0011086047161370516, -0.02169475331902504, 0.0036803600378334522, 0.0022437283769249916, -0.011004184372723103, 0.010091012343764305, -0.011898908764123917, -0.010164803825318813, 0.02625139057636261, -0.02029271237552166, 0.05755751207470894, -0.014583081007003784, 0.0369696319103241, 0.03154594451189041, -0.010865825228393078, 0.0070102098397910595, -0.024775557219982147, -0.042577799409627914, 0.006143157370388508, 0.017691556364297867, -0.03221006691455841, 0.08456526696681976, -0.026380525901913643, 0.024498838931322098, 0.019462555646896362, 0.08788589388132095, -0.005257657263427973, 0.007734290789812803, 0.025845536962151527, 0.042135048657655716, 0.018567832186818123, 0.06552701443433762, -0.00371725601144135, 0.051580384373664856, 0.03294798731803894, -0.046747028827667236, 0.04564015567302704, 0.08855001628398895, 0.016501665115356445, 0.10766205936670303, 0.010727466084063053, 0.0828680545091629, 0.01624339446425438, 0.01984996162354946, 0.05571271851658821, -0.040511634200811386, -0.01782991550862789, -0.025734849274158478, -0.03405486047267914, -0.03036527708172798, -0.017811467871069908, -0.034368474036455154, 0.032800402492284775, -0.13710494339466095, -0.008785822428762913, 0.0002994904643855989, -0.024314358830451965, -0.03143525496125221, 0.007623603101819754, -0.04737425968050957, 0.07024967670440674, -0.06844178587198257, -0.015191862359642982, 0.06707663834095001, 0.054716531187295914, 0.0020604021847248077, -0.08471284806728363, -0.011068752035498619, -0.02248801477253437, 0.004146169871091843, -0.028963234275579453, 0.01014635618776083, -0.05183865502476692, -0.030309932306408882, 0.056856490671634674, -0.08146601915359497, -0.034036412835121155, 0.00027527756174094975, 0.003807189641520381, 0.07511993497610092, 0.029590463265776634, -0.030328381806612015, -0.017783794552087784, -0.021897681057453156, 0.048923883587121964, -0.03888821601867676, -0.022783180698752403, 0.004750339314341545, -0.004139252007007599, -0.028022391721606255, 0.03154594451189041, -0.0472266748547554, -0.03800271451473236, 0.02051408775150776, 0.0032399159390479326, 0.059217825531959534, -0.05110073834657669, -0.038814425468444824, -0.00014888048463035375, -0.0012406226014718413, -0.015099622309207916, -0.030033214017748833, -0.01794060319662094, -0.003740315791219473, -0.036287058144807816, -0.026767931878566742, 0.05434757471084595, 0.031010953709483147, 0.045344989746809006, 0.0016683838330209255, 0.008029457181692123, 0.06253845244646072, 0.009085600264370441, 0.02416677586734295, -0.05844300985336304, 0.05929161608219147, 0.01972082629799843, 0.03377814218401909, -0.00820471253246069, 0.03143525496125221, 0.041618507355451584, 0.018540160730481148, -0.08810726553201675, -0.07637438923120499, -0.026288285851478577, 0.0472266748547554, 0.008679746650159359, -0.08781210333108902, 0.026269838213920593, -0.0015150354010984302, 0.01821732148528099, 0.014038867317140102, -0.02457262948155403, 0.04637807235121727, 0.01129935123026371, 0.028299110010266304, 0.008730478584766388, 0.035327766090631485, 0.008236996829509735, -0.03399951756000519, 0.011862012557685375, -0.016953637823462486, -0.021491827443242073, -0.023908505216240883, -0.0073192124255001545, 0.014961263164877892, 0.027911704033613205, -0.03208093345165253, -0.010137132368981838, -0.038150299340486526, -0.008997973054647446, -0.02304145321249962, -0.08515559881925583, 0.01452773716300726, 0.022580254822969437, 0.019351867958903313, 0.049440424889326096, 0.027727223932743073, 0.030660443007946014, 0.0020696260035037994, 0.015247206203639507, -0.032357651740312576, 0.037135664373636246, 0.02923995442688465, 0.04914525896310806, -0.04630427807569504, -0.04029025882482529, -0.03958923742175102, -0.025365890935063362, 0.04560326039791107, -0.037246350198984146, -0.021104421466588974, 0.08028534799814224, 0.047079093754291534, 0.02540278621017933, 0.015330221503973007, -0.04405363276600838, 0.05552823841571808, 0.06342394649982452, -0.004180760122835636, 0.0045197405852377415, 0.027339817956089973, 0.0021941494196653366, 0.026103807613253593, -0.015819091349840164, -0.0031891842372715473, 0.06733490526676178, 0.022174399346113205, 0.0014596916735172272, -0.018927566707134247, -0.05766819790005684, -0.04549257084727287, 0.015523924492299557, -0.017839139327406883, 0.03440537303686142, -0.03818719461560249, 0.004171535838395357, 0.03361210972070694, 0.017903706058859825, -0.02704465202987194, 0.013420862145721912, -0.02529209852218628, -0.019148942083120346, -0.08773830533027649, 0.0045197405852377415, 0.02221129648387432, 0.006216949317604303, 0.0023913115728646517, 0.008979525417089462, 0.008578282780945301, 0.07681713998317719, -0.034368474036455154, 0.03885132074356079, -0.034718986600637436, 0.04508671537041664, -0.025052275508642197, -0.041397131979465485, -0.04305744543671608, 0.012249419465661049, -0.00885039009153843, -0.020384952425956726, 0.015892883762717247, 0.013107247650623322, -0.004505904391407967, 0.009777397848665714, 0.039773717522621155, -0.0148690240457654, -0.00230599008500576, 0.009602142497897148, 0.033649004995822906, -0.012332434765994549, 0.015274877659976482, 0.0021929964423179626, 0.00006244188989512622, 0.008269280195236206, 0.0037772117648273706, -0.00549286836758256, 0.007379168178886175, -0.05383102968335152, 0.028299110010266304, 0.002074238145723939, -0.0068211182951927185, 0.05464274063706398, -0.04003198817372322, -0.022524910047650337, 0.034774329513311386, -0.026214495301246643, 0.004847191274166107, 0.014767560176551342, 0.015016607008874416, 0.02355799451470375, -0.035327766090631485, 0.005465196445584297, -0.02748740091919899, 0.0012233277084305882, -0.07478787004947662, -0.002757964190095663 ]
39,908
lerc._lerc
findDataRange_ma
null
def findDataRange_ma(npmaArr): if not npmaArr.any(): return (-1, -1) zMin = np.amin(npmaArr) zMax = np.amax(npmaArr) return (zMin, zMax)
(npmaArr)
[ 0.034618645906448364, 0.047562696039676666, -0.005043716635555029, 0.011685354635119438, 0.030690794810652733, 0.036332614719867706, 0.018175235018134117, -0.04638434201478958, -0.00870375894010067, -0.004521491471678019, 0.010846222750842571, 0.0281376913189888, -0.025102533400058746, -0.06020323187112808, -0.022549431771039963, 0.030387278646230698, -0.03233334794640541, 0.023656371980905533, -0.017568202689290047, 0.08505581319332123, 0.0036801279056817293, 0.015354324132204056, -0.033993758261203766, -0.03799302503466606, 0.00514637678861618, 0.04134955257177353, -0.02222806215286255, 0.0023388562258332968, -0.00003504518463159911, -0.010631976649165154, -0.06902304291725159, -0.05541839823126793, 0.005668601952493191, 0.00041063889511860907, 0.064023956656456, -0.020710483193397522, 0.07180824130773544, 0.00387205695733428, -0.10748026520013809, 0.005802506115287542, -0.038064438849687576, -0.11333633214235306, 0.013604644685983658, 0.06863025575876236, 0.0008123508305288851, -0.06156012788414955, 0.045348815619945526, -0.04738415777683258, -0.049419499933719635, 0.02840549871325493, 0.06620213389396667, -0.01480978075414896, 0.01987135224044323, 0.020906876772642136, -0.06805893033742905, 0.09691078215837479, -0.011524669826030731, 0.028780430555343628, -0.025620296597480774, -0.030440839007496834, 0.012113847769796848, 0.013265421614050865, 0.02565600350499153, -0.08169928938150406, -0.014488411135971546, 0.01523827388882637, -0.023745641112327576, 0.03702891618013382, -0.03713604062795639, 0.07166541367769241, -0.03542206808924675, 0.019228613004088402, 0.04567018523812294, 0.00669519929215312, 0.04642004892230034, 0.03642188385128975, 0.022049523890018463, 0.02778061479330063, -0.029405316337943077, 0.03924279659986496, 0.02321002446115017, 0.023281440138816833, 0.05306168645620346, 0.04156379774212837, 0.0037136038299649954, -0.015773890540003777, -0.018585873767733574, 0.05791793763637543, 0.016693362966179848, -0.03692179173231125, -0.008984957821667194, 0.057203784584999084, 0.022495869547128677, 0.07620029896497726, -0.028780430555343628, 0.02911965362727642, -0.0030730965081602335, 0.060024693608284, -0.011854966171085835, -0.021567469462752342, -0.006311341188848019, -0.004802689887583256, 0.047812651842832565, 0.001302216318435967, 0.015175784938037395, 0.029423169791698456, 0.022924361750483513, 0.0062086815014481544, -0.0402069054543972, 0.0404568575322628, -0.05052643641829491, 0.013238640502095222, -0.050312191247940063, 0.007672698702663183, -0.03727886825799942, 0.024245548993349075, 0.04467036947607994, 0.024870434775948524, 0.03269042819738388, 0.00358193158172071, -0.020889021456241608, 0.016746925190091133, -0.0007359139854088426, 0.009230447933077812, -0.0016057320171967149, -0.027102166786789894, 0.09441123902797699, -0.03533279895782471, -0.0572751984000206, 0.0019248698372393847, 0.01605062372982502, -0.023495687171816826, -0.028441207483410835, 0.0007041118224151433, -0.019799936562776566, -0.012783367186784744, 0.052026163786649704, -0.026959335431456566, -0.018478751182556152, -0.04784835875034332, -0.017737815156579018, 0.05220470204949379, -0.01837162673473358, -0.013176152482628822, -0.03390448912978172, -0.037600237876176834, 0.052383240312337875, 0.059024877846241, 0.03233334794640541, -0.035118553787469864, -0.0389571338891983, -0.019050074741244316, -0.01437236089259386, -0.007989604957401752, 0.040778227150440216, -0.039921242743730545, -0.006074777338653803, -0.057810813188552856, -0.03545777499675751, -0.008083336986601353, -0.06877309083938599, 0.029780246317386627, -0.05698953568935394, -0.039671286940574646, 0.0023723323829472065, -0.004151023458689451, -0.047205619513988495, -0.003407856449484825, -0.0033074284438043833, 0.013158298097550869, 0.018085965886712074, 0.02679865062236786, -0.05531127378344536, -0.008538611233234406, -0.017487861216068268, -0.05113346874713898, 0.00322708603926003, 0.008360072039067745, 0.017853865399956703, 0.03674325346946716, 0.021174684166908264, 0.01647019013762474, 0.0025330171920359135, -0.002865545218810439, -0.0017028123838827014, -0.02283509261906147, 0.013015467673540115, -0.0001418545434717089, -0.01688975654542446, 0.010533780790865421, -0.03552919253706932, -0.0038140318356454372, 0.0065970029681921005, -0.04181375354528427, -0.04574160277843475, 0.011569304391741753, -0.03885000944137573, 0.07341509312391281, -0.02296007052063942, -0.05759656801819801, 0.03435083478689194, -0.0012910575605928898, -0.0009590873378328979, -0.012676244601607323, 0.03369024395942688, -0.02529892697930336, 0.005994435399770737, -0.0029347289819270372, -0.034743621945381165, 0.009560744278132915, -0.012435217387974262, -0.024727603420615196, 0.008993884548544884, -0.02124609984457493, 0.05538268759846687, 0.007239742204546928, 0.030940748751163483, -0.020960437133908272, 0.0219781082123518, 0.03788590058684349, 0.03465435281395912, -0.03552919253706932, 0.05391867086291313, 0.023852763697504997, 0.06223857402801514, 0.02517394907772541, 0.010337388142943382, 0.009056372568011284, 0.001487450092099607, 0.04199229180812836, 0.0035663095768541098, -0.01926431991159916, -0.03261901065707207, -0.0545257031917572, -0.0016057320171967149, 0.06973719596862793, 0.03167275711894035, -0.01036416832357645, -0.015309689566493034, -0.012095993384718895, -0.01876441203057766, 0.03404732048511505, -0.01197101641446352, 0.026227327063679695, -0.024745456874370575, -0.05863209441304207, 0.005597186740487814, -0.011685354635119438, 0.017862791195511818, -0.030797917395830154, -0.06666633486747742, -0.004084071610122919, -0.010730172507464886, 0.03097645565867424, 0.00012755749048665166, -0.0016671046614646912, 0.012604828923940659, 0.027102166786789894, 0.03727886825799942, 0.007779821753501892, 0.025834541767835617, -0.0540257953107357, 0.0076637715101242065, -0.00032220646971836686, -0.0033208189997822046, 0.04999082162976265, -0.005690919701009989, -0.005740017630159855, 0.019175050780177116, 0.02504897303879261, 0.06570222228765488, 0.008931395597755909, -0.021656738594174385, -0.061667248606681824, 0.014899049885571003, 0.011613938957452774, 0.07441490888595581, -0.09162603318691254, -0.012533413246273994, 0.010167775675654411, -0.03863576427102089, -0.014300946146249771, -0.027566367760300636, 0.01667550951242447, 0.02517394907772541, -0.03311891853809357, 0.06963007152080536, -0.07770001888275146, 0.01123900804668665, 0.01771996170282364, -0.02506682649254799, -0.03963558003306389, -0.0974821001291275, -0.0295124389231205, 0.010149922221899033, 0.0010879698675125837, 0.0665949136018753, 0.002907948335632682, -0.0020420358050614595, -0.02481687255203724, 0.03590412065386772, -0.06073885038495064, 0.03788590058684349, 0.01357786450535059, -0.019282173365354538, 0.0402069054543972, -0.05506131798028946, 0.0009841943392530084, 0.014649095945060253, -0.011515743099153042, -0.02306719310581684, -0.013988503254950047, -0.0029347289819270372, -0.04531310871243477, -0.005936410278081894, 0.04788406565785408, 0.03924279659986496, 0.031012164428830147, 0.005204401444643736, 0.020889021456241608, 0.006940689869225025, -0.035243529826402664, -0.0020822070073336363, -0.024102717638015747, 0.018193088471889496, 0.024638334289193153, -0.0708441361784935, -0.01821986958384514, 0.03924279659986496, 0.031404949724674225, -0.04174233600497246, 0.025227511301636696, -0.03294038027524948, 0.0537758432328701, 0.05124059319496155, 0.04281356930732727, -0.0009579714387655258, 0.010346314869821072, -0.005008009262382984, -0.0005757871549576521, -0.03111928701400757, -0.002325465902686119, 0.029566001147031784, 0.013702841475605965, 0.052276115864515305, -0.017496787011623383, -0.0021926776971668005, -0.002155854133889079, -0.04109959676861763, 0.013952795416116714, -0.005659675225615501, 0.06723765283823013, -0.03347599506378174, 0.025352489203214645, 0.017309322953224182, 0.027316413819789886, 0.06880879402160645, -0.026977190747857094, 0.010962272994220257, 0.03977841138839722, 0.011355058290064335, -0.009935676120221615, 0.012238824740052223, -0.05738232284784317, -0.028530476614832878, -0.00818153377622366, -0.011703208088874817, 0.026245182380080223, 0.045991554856300354, 0.004157718736678362, 0.012935125268995762, -0.032761842012405396, 0.027923444285988808, -0.03581485152244568, 0.004052827134728432, -0.009002811275422573, -0.014925830997526646, -0.014952612109482288, -0.05898917093873024, 0.014033137820661068, 0.008418097160756588, -0.015032954514026642, -0.0035105161368846893, 0.023763494566082954, 0.009221521206200123, -0.0074539887718856335, -0.028833992779254913, -0.008404706604778767, -0.08227060735225677, -0.005762334913015366, 0.04231366142630577, -0.02442408725619316, 0.0005674181738868356, -0.04877676069736481, 0.010203483514487743, 0.010453438386321068, -0.000633812218438834, -0.0005222255713306367, 0.03074435517191887, -0.016818340867757797, -0.05038360878825188, -0.012060285545885563, -0.02319217100739479, 0.006472025997936726, 0.014220603741705418, -0.022995777428150177, 0.0058739217929542065, -0.022388746961951256, -0.00043686176650226116, 0.041778042912483215, -0.03577914461493492, -0.0029860588256269693, 0.05359730124473572, -0.04167092218995094, 0.027548514306545258, -0.021799569949507713, -0.025995226576924324, 0.023870617151260376, -0.057703692466020584, -0.043741967529058456, 0.006414000876247883, -0.09241160750389099, -0.016836194321513176, -0.04367055371403694, 0.020210575312376022, -0.05859638378024101, -0.01634521409869194, -0.01590779423713684, -0.042635031044483185, 0.05673958361148834, 0.014791927300393581, 0.006351512391120195, -0.03261901065707207, -0.07605746388435364, -0.0046598585322499275, 0.012417363002896309, -0.0829133465886116, 0.012515559792518616, 0.021299660205841064, -0.01401528436690569, 0.06045318767428398, 0.030065909028053284, 0.04920525103807449, 0.040921058505773544, -0.042884983122348785, -0.03827868774533272, -0.004258146975189447, -0.03435083478689194, 0.017711034044623375, -0.036082662642002106, -0.01505080796778202, -0.02738782949745655, 0.04156379774212837, -0.04463466256856918, 0.0627741888165474, -0.012515559792518616, -0.08219919353723526, -0.01949642039835453, 0.036600422114133835, 0.006092631258070469, 0.018550164997577667, 0.06438104063272476, -0.057096660137176514, -0.08605562895536423, 0.03652900829911232, -0.004793762695044279, 0.03810014948248863, -0.030762208625674248, -0.04402763023972511, -0.056453920900821686, 0.0286375992000103, -0.050919223576784134, -0.016309505328536034, -0.06680916249752045, 0.030458694323897362, 0.03036942519247532, -0.004958910867571831, 0.01853231154382229, 0.04652717337012291, 0.051669083535671234, 0.015934575349092484, -0.030887186527252197, -0.005141912959516048, 0.03136923909187317, -0.026388011872768402, 0.018710849806666374, -0.06963007152080536, -0.01790742576122284, -0.09991022944450378, -0.0690944567322731, 0.0409567654132843, 0.011015834286808968, -0.017309322953224182, 0.05656104534864426, 0.013238640502095222, -0.04163521155714989, 0.12083496153354645, 0.011988870799541473, 0.04034973308444023, 0.0018233259906992316, -0.03335101902484894, -0.001024365541525185, -0.021781714633107185, -0.03913567215204239, 0.011551450937986374, 0.027727052569389343, -0.03479718416929245, 0.014193822629749775, 0.00446123443543911, 0.005909629166126251, 0.009301863610744476, 0.0016860744217410684, -0.01937144435942173, 0.0020665847696363926, 0.02469189465045929, 0.033618826419115067, 0.0021435797680169344, -0.034993574023246765, 0.008761784061789513, 0.005802506115287542, -0.030012346804142, -0.00847612228244543, -0.03131568059325218, -0.008592172525823116, -0.0064407819882035255, 0.009730356745421886, -0.020299844443798065, -0.027316413819789886, -0.04431329295039177, 0.04727703332901001, 0.026691528037190437, 0.0034636498894542456, 0.07102267444133759, 0.0029726685024797916, 0.010194556787610054, 0.010239191353321075, 0.03852863982319832, -0.008931395597755909, 0.039921242743730545, 0.0663449615240097, 0.024906141683459282, 0.016764778643846512, 0.008377926424145699, 0.022263769060373306, 0.0585249699652195, 0.009284010156989098, -0.05870350822806358, 0.05409720912575722, 0.029298191890120506, 0.03799302503466606, 0.07527189701795578, 0.022174499928951263, 0.04477749392390251, 0.05084780603647232, -0.014791927300393581, 0.03988553583621979, -0.03604695200920105, -0.02578098140656948, -0.019567836076021194, -0.025441758334636688, -0.016541605815291405, -0.0394570417702198, -0.00840024370700121, 0.05523985996842384, -0.17753882706165314, 0.004360806662589312, -0.01154252327978611, 0.0021034085657447577, -0.02083546109497547, 0.04542023316025734, 0.00657468568533659, -0.00009212873555952683, -0.06480953097343445, -0.031922709196805954, 0.04592014104127884, 0.05431145802140236, 0.0077887484803795815, -0.08884083479642868, -0.03724316135048866, -0.0002909621980506927, 0.01803240366280079, -0.013176152482628822, -0.02581668831408024, -0.06995144486427307, 0.0005417531938292086, 0.08805526047945023, -0.06352405250072479, -0.011926381848752499, 0.0036622739862650633, -0.012435217387974262, 0.007922652177512646, 0.01314044464379549, -0.004541576839983463, -0.008328828029334545, -0.06330980360507965, 0.07934257388114929, 0.006382756866514683, -0.007802139036357403, 0.031047871336340904, 0.014640169218182564, -0.0025977373588830233, 0.04809831082820892, -0.033975906670093536, -0.026995044201612473, 0.05616825819015503, 0.0026490672025829554, 0.04184946045279503, -0.06977290660142899, -0.027977006509900093, 0.002165897050872445, 0.008114581927657127, -0.026388011872768402, -0.03974270448088646, -0.015077589079737663, 0.002039804123342037, 0.005882848519831896, -0.04563447833061218, 0.02269226312637329, 0.03631476312875748, 0.08712685853242874, 0.013301129452884197, -0.03195841982960701, 0.059060584753751755, -0.010721245780587196, 0.07362934201955795, -0.03419015184044838, 0.06530943512916565, 0.007342401891946793, 0.01049807295203209, -0.005512380972504616, 0.0394570417702198, 0.03438654541969299, 0.02356710098683834, -0.10840866714715958, -0.05420433357357979, 0.006721980404108763, 0.03492216020822525, -0.0051776207983493805, -0.06548797339200974, 0.013256494887173176, -0.0272628515958786, 0.042884983122348785, 0.040171194821596146, -0.027102166786789894, 0.057025246322155, -0.00141157116740942, 0.012497705407440662, 0.03631476312875748, 0.00885998085141182, 0.013051175512373447, -0.006838030181825161, -0.03717174753546715, -0.02528107352554798, 0.009891041554510593, -0.02196025475859642, -0.023120755329728127, -0.023031486198306084, 0.03383307531476021, -0.0219781082123518, -0.03702891618013382, -0.050169359892606735, -0.011006907559931278, -0.03306535631418228, -0.05181191489100456, 0.0567752905189991, -0.003961326088756323, 0.0015276212943717837, 0.038421519100666046, 0.00200074864551425, 0.04234936833381653, 0.011846039444208145, 0.06263136118650436, 0.0025151632726192474, 0.05520414933562279, 0.07195107638835907, 0.045241694897413254, -0.002291989978402853, -0.056346796452999115, -0.050669267773628235, -0.0003989223041571677, 0.014970465563237667, 0.007967287674546242, -0.014399142004549503, 0.03777877986431122, 0.031279969960451126, 0.03260115906596184, 0.01642555557191372, -0.01339932531118393, 0.049312375485897064, 0.0964822843670845, 0.019674958661198616, -0.017836011946201324, -0.005342768970876932, -0.007440598215907812, 0.005860531236976385, 0.00868144165724516, -0.035725582391023636, 0.1115509495139122, -0.002434820868074894, 0.027602074667811394, -0.010899784974753857, -0.0008899035747162998, -0.05359730124473572, 0.011560377664864063, -0.03422585874795914, -0.01672014407813549, -0.01308688335120678, 0.020049890503287315, 0.014461630955338478, 0.007927116006612778, -0.019300028681755066, 0.02258513867855072, -0.0020944816060364246, -0.014675877057015896, -0.046491462737321854, 0.002206068253144622, -0.033618826419115067, 0.030012346804142, 0.011774623766541481, 0.0006070313975214958, -0.03640403226017952, 0.06209574267268181, -0.0014238457661122084, 0.00018816300143953413, -0.0439562164247036, 0.03529709205031395, -0.0016548300627619028, -0.022888654842972755, -0.04699137434363365, -0.028334083035588264, -0.0565253384411335, -0.035850562155246735, 0.026602258905768394, 0.03272613510489464, 0.005003545433282852, 0.02974453940987587, -0.003947935998439789, 0.008949249982833862, -0.01289049070328474, 0.0033944661263376474, 0.02492399513721466, 0.006503270473331213, 0.0036154077388346195, -0.00690498249605298, -0.008989420719444752, -0.00040952302515506744, -0.02087116800248623, 0.011194373480975628, -0.029655270278453827, -0.03938562795519829, 0.00028817253769375384, -0.006726443767547607, 0.015149004757404327, 0.03245832771062851, -0.05923912301659584, -0.02395988628268242, 0.043741967529058456, -0.03565416857600212, 0.025852397084236145, -0.02617376670241356, -0.0021279575303196907, 0.04224224388599396, -0.040421150624752045, 0.009774991311132908, -0.039207085967063904, 0.009408987127244473, -0.02503111958503723, -0.004559430759400129 ]
39,909
lerc._lerc
findMaxZError
null
def findMaxZError(npArr1, npArr2): npDiff = npArr2 - npArr1 yMin = np.amin(npDiff) yMax = np.amax(npDiff) return max(abs(yMin), abs(yMax))
(npArr1, npArr2)
[ 0.0010941395303234458, 0.022427590563893318, 0.02193727158010006, 0.042058542370796204, -0.007073317188769579, -0.03557542711496353, -0.034758225083351135, 0.008190156891942024, 0.015227153897285461, -0.004633068107068539, 0.029382867738604546, 0.010668995790183544, -0.03740958496928215, -0.03052694723010063, 0.006365077570080757, 0.06010957434773445, 0.0031689186580479145, 0.0020361891947686672, 0.014555234462022781, 0.02974606864154339, -0.019794391468167305, -0.027457909658551216, -0.007454677019268274, -0.010687155649065971, 0.0020486742723733187, 0.010723475366830826, 0.012348795309662819, -0.0015685693360865116, 0.019467512145638466, -0.002878358820453286, -0.09203483909368515, -0.01883191242814064, -0.022554710507392883, -0.005379898007959127, 0.010805195197463036, -0.006310597527772188, 0.021737510338425636, 0.011422635056078434, -0.06824525445699692, -0.015081874094903469, -0.026114068925380707, -0.03041798807680607, 0.029818708077073097, 0.05513373762369156, 0.006224337499588728, -0.023117670789361, -0.05673181638121605, -0.041223183274269104, -0.07707101106643677, 0.0496130995452404, 0.024534150958061218, -0.05734925717115402, 0.041223183274269104, 0.03301486745476723, -0.05607805773615837, 0.10162331908941269, 0.017878511920571327, 0.04819662123918533, -0.05084798112511635, -0.06570285558700562, -0.02865646779537201, -0.032143186777830124, 0.013901473954319954, -0.01420111395418644, -0.009515835903584957, 0.030218228697776794, -0.041659023612737656, 0.02800270915031433, 0.009969836100935936, 0.08375388383865356, -0.0009749645832926035, 0.024679429829120636, 0.003954338375478983, -0.040714703500270844, 0.054516296833753586, 0.051574379205703735, 0.004054218530654907, 0.005134738050401211, -0.0395161435008049, -0.0002433155314065516, -0.011658715084195137, -0.0032619887497276068, 0.08142940700054169, -0.007954076863825321, 0.032324787229299545, -0.007958617061376572, -0.02867462858557701, 0.03966142237186432, 0.009561236016452312, -0.020157592371106148, 0.0043084584176540375, 0.05709501728415489, 0.014428114518523216, 0.015744714066386223, -0.03642894700169563, 0.024025671184062958, -0.03372310474514961, 0.025769028812646866, 0.05302717909216881, -0.03799070417881012, 0.06494013220071793, 0.014909354038536549, 0.04187694191932678, 0.0006934847333468497, 0.0335959866642952, 0.038717105984687805, 0.049794699996709824, 0.008435316383838654, -0.03205238655209541, 0.001468689413741231, -0.0000855505932122469, 0.007254917174577713, -0.052482377737760544, -0.007922296412289143, -0.004356128163635731, 0.0075409370474517345, 0.019049832597374916, 0.0222823116928339, 0.05941949412226677, 0.03208870813250542, 0.024842869490385056, 0.015762872993946075, -0.011368155479431152, -0.008099356666207314, 0.0021042891312390566, -0.029110468924045563, 0.033323585987091064, -0.04187694191932678, -0.0005717560416087508, 0.01629859395325184, 0.030563266947865486, 0.017079472541809082, -0.03751854598522186, -0.01746991276741028, -0.017751391977071762, 0.003232478629797697, 0.02101111225783825, -0.006669257301837206, 0.017279233783483505, -0.049068301916122437, 0.019630951806902885, 0.033414386212825775, 0.030726708471775055, 0.002499269088730216, -0.05175597965717316, 0.016607312485575676, 0.0554969385266304, 0.018041953444480896, 0.04158638417720795, 0.009379636496305466, -0.022173350676894188, -0.016325833275914192, 0.009815475903451443, -0.03472190722823143, 0.05742189660668373, -0.06025485694408417, 0.009039136581122875, 0.002481108997017145, -0.02075687237083912, 0.01319323480129242, -0.04049678519368172, 0.04529102146625519, -0.05092062056064606, -0.041332144290208817, 0.012303395196795464, -0.04387454316020012, 0.02413463033735752, 0.03435870632529259, -0.06043645739555359, 0.05251869931817055, -0.005275477655231953, 0.006083597429096699, -0.060073256492614746, -0.02101111225783825, -0.007795176934450865, -0.022482071071863174, -0.022245990112423897, -0.0028147988487035036, -0.00966111570596695, 0.04078734293580055, 0.02260919101536274, -0.011422635056078434, -0.007027917075902224, 0.03203422576189041, 0.03633814677596092, 0.004857798106968403, 0.01738819293677807, 0.019213272258639336, 0.009370556101202965, -0.010496475733816624, -0.05960109457373619, 0.031743668019771576, 0.000277791143162176, -0.04529102146625519, 0.00750007713213563, 0.008072116412222385, -0.018686631694436073, 0.07165933400392532, 0.046525903046131134, -0.03294222801923752, -0.0479423813521862, 0.029782388359308243, 0.0026468189898878336, -0.07583612948656082, 0.041404783725738525, -0.011023115366697311, -0.014110314659774303, -0.057712458074092865, -0.020448151975870132, -0.00252196891233325, -0.004210848361253738, 0.014428114518523216, -0.02251839078962803, -0.025587430223822594, 0.04609006270766258, 0.015908153727650642, 0.024152791127562523, -0.010106035508215427, 0.0014970643678680062, 0.016616392880678177, 0.00038731860695406795, -0.04816029965877533, 0.02881990745663643, 0.013411154970526695, 0.016525592654943466, 0.018005631864070892, 0.047034382820129395, 0.020175751298666, 0.02126535214483738, 0.014972914010286331, -0.00803125649690628, -0.0038612685166299343, -0.0055070179514586926, -0.04772445932030678, -0.0037659285590052605, 0.051320139318704605, -0.011004955507814884, -0.0420222245156765, -0.013547354377806187, -0.01984887197613716, 0.006882637273520231, 0.0010209321044385433, -0.0039043985307216644, 0.008122056722640991, -0.028365908190608025, -0.05284557864069939, 0.007182277273386717, -0.011831235140562057, -0.00003667467171908356, 0.018613992258906364, -0.03882606327533722, -0.04423774033784866, -0.02934654802083969, -0.0036796685308218002, 0.013102434575557709, -0.04928622022271156, 0.03268798813223839, -0.05226445943117142, 0.06958909332752228, 0.0036319985520094633, 0.02168303169310093, -0.033069346100091934, -0.04503678157925606, -0.006169857457280159, -0.04848717898130417, 0.04213118180632591, -0.0022507039830088615, -0.021319830790162086, -0.051828619092702866, 0.05179229751229286, 0.11310043185949326, -0.024443350732326508, -0.05807565525174141, -0.06029117479920387, -0.01260303519666195, 0.05607805773615837, 0.024679429829120636, -0.047869741916656494, 0.033069346100091934, 0.0044764382764697075, 0.0011974244844168425, -0.08833020180463791, -0.05684077739715576, 0.015018314123153687, 0.02251839078962803, 0.03860814496874809, 0.00957939587533474, -0.12348794937133789, 0.01462787389755249, 0.039988305419683456, -0.00359340850263834, -0.005833897739648819, -0.04732494056224823, -0.011250114999711514, -0.01814183220267296, -0.016343994066119194, 0.04213118180632591, -0.014110314659774303, 0.02151959203183651, 0.019885191693902016, -0.07434701174497604, 0.014491674490272999, 0.05084798112511635, -0.03831758350133896, -0.037191666662693024, -0.020811351016163826, -0.07125981152057648, 0.0012802794808521867, 0.05945581570267677, 0.024697590619325638, -0.029618948698043823, 0.010069715790450573, -0.03788174316287041, -0.009434116072952747, -0.010069715790450573, 0.11811259388923645, 0.06330573558807373, -0.0033505186438560486, 0.034340545535087585, 0.0411868616938591, 0.010296715423464775, -0.02135615050792694, -0.02437070943415165, -0.01500015426427126, 0.024661270901560783, -0.021392472088336945, -0.06163501366972923, 0.019449351355433464, 0.0630514919757843, 0.024842869490385056, -0.023099509999155998, -0.028529347851872444, -0.016189632937312126, 0.032252147793769836, 0.127701073884964, 0.04587214067578316, 0.049903661012649536, -0.017106713727116585, 0.0051483577117323875, -0.01332943420857191, -0.04797869920730591, -0.011576995253562927, -0.03733694553375244, -0.014564313925802708, 0.010732555761933327, -0.016162393614649773, 0.01248499471694231, -0.016289513558149338, -0.03548462688922882, 0.02360798977315426, -0.055351655930280685, -0.02573270909488201, -0.01299347449094057, 0.021701190620660782, -0.03995198383927345, 0.004780618008226156, -0.02293607033789158, -0.020393671467900276, 0.0597100555896759, 0.02386222966015339, -0.07540029287338257, 0.003604758530855179, -0.014591554179787636, -0.05858413502573967, -0.07125981152057648, 0.0163984727114439, 0.015735633671283722, -0.025950629264116287, -0.01857767254114151, -0.05473421886563301, -0.040351502597332, -0.0032120486721396446, 0.031162546947598457, -0.057785097509622574, -0.010487395338714123, -0.03250638768076897, -0.007413817103952169, 0.024497829377651215, 0.0010305795585736632, 0.02865646779537201, -0.008762196637690067, -0.012830034829676151, -0.06762780994176865, -0.03740958496928215, 0.01328403502702713, 0.0437292605638504, -0.0672282949090004, -0.026876788586378098, -0.02967342734336853, -0.00750007713213563, 0.054007817059755325, -0.03991566225886345, 0.05066638067364693, -0.03497614711523056, 0.015862753614783287, 0.07895965129137039, -0.04213118180632591, 0.04797869920730591, 0.0007553421892225742, 0.006778217386454344, -0.08644156157970428, 0.010305795818567276, 0.03018190711736679, 0.010923235677182674, 0.04234910383820534, -0.018777431920170784, 0.02707654982805252, 0.07612668722867966, -0.0055932775139808655, 0.04311182349920273, -0.0239530298858881, -0.02814798802137375, -0.009306996129453182, -0.07939548790454865, -0.027276309207081795, -0.0008279821486212313, -0.05524269863963127, 0.02168303169310093, 0.003298308700323105, -0.02084767073392868, 0.029800547286868095, -0.04572686180472374, 0.01915879175066948, -0.09058204293251038, -0.0019124742830172181, -0.038789745420217514, -0.0327787883579731, 0.0025196990463882685, -0.02758502960205078, 0.008812136016786098, 0.018051031976938248, 0.05135646089911461, -0.021555911749601364, -0.050739020109176636, -0.009543076157569885, -0.010732555761933327, 0.03317830711603165, -0.014609714038670063, 0.03740958496928215, 0.04674382135272026, 0.0597100555896759, 0.042494382709264755, 0.004857798106968403, 0.07100556790828705, -0.06243405491113663, -0.030381668359041214, 0.06294253468513489, -0.05070269852876663, 0.0008041471592150629, -0.002540129004046321, -0.03385022655129433, -0.014972914010286331, 0.0023744190111756325, -0.04093262180685997, 0.01739727333188057, -0.015835514292120934, -0.0285656675696373, -0.035430144518613815, -0.027258148416876793, 0.004299378488212824, -0.030726708471775055, 0.06533965468406677, -0.026785988360643387, -0.04605374112725258, -0.06112653389573097, 0.015526793897151947, 0.0285838283598423, -0.008980116806924343, 0.01638939417898655, -0.012584875337779522, 0.008212856948375702, -0.045690540224313736, -0.04772445932030678, -0.0038907784037292004, 0.016825232654809952, 0.03889870271086693, 0.020720550790429115, 0.013402074575424194, 0.040133584290742874, 0.050157900899648666, -0.007836036384105682, 0.011368155479431152, -0.012285235337913036, -0.04238542169332504, 0.03094462677836418, -0.005166518036276102, -0.09145372360944748, -0.02346271090209484, -0.009361476637423038, -0.01232155505567789, 0.016035273671150208, 0.00478969793766737, -0.05251869931817055, 0.08288220316171646, -0.01664363406598568, -0.06334205716848373, 0.07104188948869705, 0.004319808445870876, 0.027784788981080055, -0.06109021604061127, -0.006778217386454344, 0.03657422587275505, -0.035357505083084106, -0.05077533796429634, 0.009533995762467384, 0.01480039395391941, -0.020484471693634987, -0.008789436891674995, 0.0008194696856662631, 0.04380190372467041, -0.030999107286334038, 0.017333712428808212, 0.005398057866841555, 0.007654436863958836, -0.005793037824332714, 0.023662470281124115, 0.03493982553482056, 0.0031689186580479145, 0.05705869570374489, 0.04645325988531113, -0.017015913501381874, 0.024243589490652084, -0.03176182880997658, -0.0638868510723114, 0.0010555495973676443, -0.010469235479831696, -0.025750869885087013, -0.013565514236688614, 0.047615502029657364, 0.009906276129186153, -0.01564483344554901, -0.01984887197613716, 0.06457693129777908, 0.02471574954688549, 0.00014783369260840118, -0.003021368756890297, -0.05665917694568634, 0.0013824293855577707, -0.0369737446308136, 0.006433177273720503, 0.03230662643909454, 0.010696236044168472, 0.03523038700222969, 0.010850595310330391, -0.019521992653608322, 0.00676459725946188, -0.020629752427339554, 0.08774908632040024, -0.007096017245203257, 0.029219428077340126, 0.055860135704278946, 0.01657099276781082, 0.06755517423152924, 0.008267336525022984, -0.02084767073392868, 0.08251900970935822, -0.052082858979701996, -0.0009006221080198884, 0.024334389716386795, 0.009760996326804161, -0.0222641509026289, 0.022300470620393753, 0.025750869885087013, -0.03228846564888954, -0.11738619208335876, 0.02916494756937027, 0.009951676242053509, 0.059056296944618225, -0.029273908585309982, 0.05941949412226677, -0.036029424518346786, 0.052337098866701126, -0.038535505533218384, -0.027512388303875923, 0.0672282949090004, 0.06592077016830444, 0.015054633840918541, -0.011858475394546986, 0.01984887197613716, 0.0035956786014139652, 0.013901473954319954, -0.021029271185398102, 0.021737510338425636, -0.04685278236865997, -0.02934654802083969, -0.011531595140695572, -0.057966697961091995, -0.005289097782224417, 0.022137030959129333, 0.01606251299381256, -0.04935885965824127, -0.011032195761799812, -0.01428283378481865, -0.002876088721677661, -0.017161192372441292, 0.08586044609546661, 0.00848979689180851, 0.021900951862335205, -0.005874757654964924, 0.030163748189806938, 0.013229554519057274, -0.009120856411755085, 0.007395656779408455, -0.05978269502520561, 0.05092062056064606, -0.002487919060513377, -0.02371695078909397, -0.10721659660339355, -0.03740958496928215, 0.006405937485396862, 0.029709747061133385, 0.019867032766342163, -0.062325093895196915, -0.041731663048267365, 0.006365077570080757, 0.005230078008025885, -0.029473667964339256, 0.029237588867545128, 0.0035253085661679506, 0.09624796360731125, 0.029727907851338387, 0.02814798802137375, 0.07107821106910706, -0.02251839078962803, 0.05284557864069939, 0.035684384405612946, 0.01892271265387535, -0.00521191768348217, 0.02110191062092781, 0.03343254700303078, 0.026913108304142952, 0.019630951806902885, 0.02506078965961933, -0.0899282842874527, -0.04670749977231026, -0.021537750959396362, 0.04747021943330765, 0.013919634744524956, -0.018196312710642815, 0.012948074378073215, -0.048705101013183594, -0.0022688640747219324, -0.026858629658818245, 0.017760472372174263, -0.020883992314338684, 0.017842192202806473, 0.0030917387921363115, 0.039043985307216644, 0.03412262722849846, -0.03421342745423317, 0.0027966387569904327, -0.01231247466057539, -0.026713348925113678, -0.004349318332970142, -0.0167979933321476, -0.02210071124136448, -0.04209486395120621, 0.07830588519573212, -0.02260919101536274, -0.05444365739822388, 0.017379112541675568, -0.041985902935266495, -0.053245097398757935, -0.0184777919203043, 0.0706060528755188, -0.013211394660174847, 0.06948012858629227, 0.0016593693289905787, -0.0496130995452404, -0.02135615050792694, 0.0167979933321476, -0.010905075818300247, 0.030563266947865486, 0.00832181703299284, -0.00022231803450267762, -0.01344747468829155, -0.04841453954577446, 0.06025485694408417, -0.013474714942276478, -0.007790636736899614, 0.03025454841554165, 0.04213118180632591, -0.034685585647821426, 0.07078765332698822, 0.07438333332538605, 0.01738819293677807, 0.01311151497066021, 0.05092062056064606, 0.025097109377384186, 0.06755517423152924, 0.0035797886084765196, -0.009007356129586697, 0.0014005894772708416, 0.005293637979775667, 0.006256117485463619, -0.0015640293713659048, 0.011994674801826477, 0.09130844473838806, -0.053426697850227356, 0.010741635225713253, -0.03755486384034157, 0.008494336158037186, -0.0689353346824646, -0.008498876355588436, -0.011940195225179195, 0.036102063953876495, -0.0027466989122331142, -0.0037069085519760847, 0.027167348191142082, -0.07042445242404938, -0.029310228303074837, -0.02050263248383999, 0.06359629333019257, -0.035175904631614685, -0.07427436858415604, 0.024915510788559914, 0.03523038700222969, 0.015100033953785896, 0.010514635592699051, 0.023571670055389404, -0.05564221739768982, 0.06323309242725372, 0.00259460904635489, -0.007027917075902224, -0.012902675196528435, 0.024606790393590927, 0.03915294259786606, -0.03590230643749237, -0.0302727073431015, -0.021283511072397232, -0.053426697850227356, -0.02411646954715252, 0.00949767604470253, 0.021737510338425636, -0.007985856384038925, 0.020829511806368828, 0.009561236016452312, -0.03740958496928215, 0.011440794914960861, 0.019540151581168175, 0.01815999299287796, -0.021392472088336945, 0.011377234943211079, 0.0036229186225682497, 0.016679953783750534, 0.015163593925535679, -0.05909261479973793, 0.05026685819029808, -0.024479670450091362, -0.04638062044978142, -0.0031212486792355776, -0.035847824066877365, 0.003305118763819337, 0.01663455367088318, -0.028620148077607155, 0.00701883714646101, 0.027603188529610634, -0.02547846920788288, -0.012530394829809666, 0.004399258177727461, 0.012612114660441875, 0.0024584089405834675, -0.01096863579005003, 0.01403767429292202, 0.009020976722240448, 0.031816307455301285, -0.05600541830062866, 0.005979177542030811 ]
39,910
lerc._lerc
findMaxZError_4D
null
def findMaxZError_4D(npDataOrig, npDataDec, npValidMaskDec, nBands): npDiff = npDataDec - npDataOrig if (npValidMaskDec is None): zMin = np.amin(npDiff) zMax = np.amax(npDiff) else: if not npValidMaskDec.any(): # if all pixel values are void return 0 if nBands == 1 or npValidMaskDec.ndim == 3: # one mask per band zMin = np.amin(npDiff[npValidMaskDec]) zMax = np.amax(npDiff[npValidMaskDec]) elif nBands > 1: # same mask for all bands zMin = float("inf") zMax = -zMin for m in range(nBands): zMin = min(np.amin(npDiff[m][npValidMaskDec]), zMin) zMax = max(np.amax(npDiff[m][npValidMaskDec]), zMax) return max(abs(zMin), abs(zMax))
(npDataOrig, npDataDec, npValidMaskDec, nBands)
[ 0.004328994546085596, 0.022716958075761795, 0.004899199120700359, 0.034704942256212234, -0.014022475108504295, -0.010190699249505997, -0.017480196431279182, -0.02616555616259575, -0.008055852726101875, -0.009387850761413574, 0.051528263837099075, 0.026785938069224358, -0.04922919720411301, -0.051528263837099075, 0.008548509329557419, 0.047805964946746826, -0.03288028761744499, 0.04182109609246254, -0.0036128172650933266, 0.011048287153244019, -0.03277080878615379, -0.027114376425743103, -0.01157743763178587, 0.039959948509931564, 0.015518692322075367, 0.05718469247221947, 0.02539920061826706, -0.02213306725025177, 0.0027917225379496813, 0.050761908292770386, -0.0722198560833931, 0.036328885704278946, -0.02497952990233898, 0.0524405911564827, 0.009570316411554813, 0.01633978821337223, 0.044594574719667435, -0.015609925612807274, -0.14538852870464325, -0.00414196727797389, -0.0048627061769366264, -0.02392122894525528, 0.041638631373643875, 0.047295063734054565, 0.03645661100745201, -0.04554339498281479, -0.01323787309229374, -0.052039165049791336, -0.051017358899116516, 0.019304851070046425, 0.017854250967502594, -0.07670850306749344, 0.02508900873363018, 0.02039964497089386, -0.04043436050415039, 0.03142056241631508, 0.049849580973386765, 0.08860525488853455, -0.012097463943064213, -0.06769470870494843, -0.05492212250828743, -0.012124833650887012, -0.0018269360298290849, -0.03952203318476677, -0.03160302713513374, 0.0445580817759037, -0.0321139320731163, -0.03747841715812683, -0.019505564123392105, 0.04820739105343819, -0.030763685703277588, 0.012407654896378517, 0.017379840835928917, -0.007937249727547169, 0.054849136620759964, -0.004577603656798601, 0.032314643263816833, -0.026585226878523827, -0.032807301729917526, -0.019104139879345894, 0.017808634787797928, -0.010747219435870647, 0.07429996132850647, 0.017991099506616592, 0.03696751594543457, -0.06014063581824303, 0.050360482186079025, 0.002796284155920148, 0.025837117806077003, -0.0024427571333944798, 0.005738540552556515, -0.017124388366937637, -0.005008678417652845, 0.00300155789591372, -0.06769470870494843, 0.022461505606770515, -0.0009459696593694389, 0.00850745476782322, 0.05171072855591774, -0.026293281465768814, 0.020819315686821938, 0.02570939250290394, 0.012252559885382652, -0.01437828317284584, 0.024924790486693382, 0.05514108017086983, 0.030690699815750122, -0.005218513775616884, -0.06886249035596848, -0.0370040088891983, 0.026348020881414413, 0.003957220818847418, -0.0371134877204895, -0.022151313722133636, 0.01872096210718155, 0.00004946526314597577, -0.015007789246737957, 0.011103026568889618, 0.01440565288066864, -0.0012783990241587162, -0.00029451074078679085, 0.018602360039949417, -0.0520026721060276, 0.010619493201375008, -0.03213217854499817, 0.01701490953564644, 0.07174544036388397, -0.010747219435870647, -0.027880731970071793, 0.015838006511330605, 0.05740365386009216, 0.034248776733875275, -0.030873166397213936, -0.003498776350170374, -0.0005194565164856613, 0.02351980470120907, 0.01685069128870964, 0.005519581958651543, -0.024450380355119705, -0.03640187159180641, 0.018173566088080406, 0.03340943530201912, 0.007303182501345873, 0.04295238479971886, -0.03570850193500519, 0.047805964946746826, 0.07641655951738358, 0.04225901514291763, 0.06247619539499283, -0.0014939364045858383, -0.032351136207580566, -0.016887184232473373, -0.023428572341799736, 0.03134757652878761, 0.033372942358255386, 0.001311470870859921, -0.007184579968452454, -0.038938142359256744, -0.02361103892326355, 0.00903660524636507, -0.059885185211896896, 0.014779707416892052, -0.07123453915119171, -0.048316869884729385, 0.006226636003702879, -0.041127726435661316, -0.004575322847813368, -0.029541168361902237, -0.04287939891219139, 0.06758522987365723, 0.02824566327035427, 0.034595463424921036, -0.06298709660768509, 0.022990655153989792, -0.021786382421851158, -0.002944537438452244, -0.006299621891230345, -0.02156742475926876, -0.027680018916726112, -0.000718457973562181, 0.03901112824678421, 0.006732977461069822, 0.02406720258295536, 0.03585447371006012, 0.002898921025916934, -0.009027482010424137, 0.004839898087084293, -0.0037907210644334555, -0.0068561420775949955, -0.03198620676994324, -0.061928797513246536, 0.027515800669789314, 0.009442591108381748, -0.06448331475257874, -0.019706275314092636, -0.031238097697496414, 0.06079751253128052, 0.0821094810962677, 0.04864530637860298, -0.08218246698379517, 0.010427904315292835, -0.001265854574739933, 0.02198709547519684, -0.04762350022792816, -0.012690477073192596, -0.013101024553179741, -0.0015121829928830266, 0.008689920417964458, -0.03784335032105446, 0.044448599219322205, 0.0010206664446741343, -0.004401980433613062, -0.01775389537215233, -0.0003198848571628332, 0.0005257287994027138, 0.00035381203633733094, 0.07371606677770615, -0.000842192443087697, 0.008831331506371498, 0.03886515647172928, -0.0323876291513443, -0.03379261493682861, 0.02224254608154297, 0.017598798498511314, 0.00179728539660573, -0.0024792503099888563, 0.003453159937635064, 0.05335291847586632, 0.026457499712705612, -0.01843813993036747, -0.034449491649866104, -0.010218068957328796, -0.052148643881082535, -0.01779038831591606, -0.006162772886455059, 0.0767814889550209, 0.02992434613406658, -0.050871387124061584, 0.02335558645427227, -0.018146196380257607, -0.021384958177804947, 0.006062416825443506, 0.012371161952614784, 0.025818871334195137, 0.010400534607470036, -0.05608990043401718, -0.0007469682022929192, 0.00476691173389554, 0.03952203318476677, -0.002579606371000409, -0.040215399116277695, -0.04032488167285919, -0.022315533831715584, -0.0007458277978003025, -0.00027141746249981225, 0.05426524579524994, 0.018319537863135338, 0.010592123493552208, 0.08437205851078033, -0.038062307983636856, 0.008890632539987564, -0.044594574719667435, -0.023319093510508537, -0.01147708110511303, -0.018903428688645363, -0.004506898112595081, 0.036128174513578415, -0.027917224913835526, -0.014204940758645535, 0.03846373036503792, 0.11882154643535614, 0.0037838786374777555, -0.06981130689382553, -0.06484824419021606, -0.00485814455896616, 0.017881620675325394, 0.07470138370990753, -0.052294619381427765, 0.01977926306426525, 0.013931242749094963, 0.016631731763482094, -0.05495861545205116, -0.055615492165088654, 0.02468758448958397, 0.04543391615152359, 0.05608990043401718, 0.03952203318476677, -0.09948020428419113, 0.015007789246737957, 0.014971296302974224, 0.014168447814881802, -0.022917669266462326, -0.03901112824678421, -0.0008478944655507803, -0.01744370348751545, -0.028683580458164215, 0.0324423685669899, -0.031949713826179504, -0.024651091545820236, -0.0010651424527168274, -0.07517579197883606, -0.08050378412008286, 0.08291233330965042, -0.0014699877938255668, -0.018219182267785072, -0.012991544790565968, -0.060615044087171555, -0.024085449054837227, 0.05492212250828743, -0.008484646677970886, 0.015509569086134434, -0.016713840886950493, 0.004999555181711912, -0.06681887060403824, 0.027880731970071793, 0.05634535104036331, 0.047295063734054565, 0.01440565288066864, 0.01150445081293583, 0.04667467996478081, 0.03134757652878761, 0.029249222949147224, -0.01560080237686634, -0.009825767949223518, -0.00301524274982512, -0.024669338017702103, -0.06054205819964409, 0.008484646677970886, 0.025983089581131935, -0.006395416334271431, -0.06973832100629807, -0.03879217058420181, -0.007312305737286806, 0.016914553940296173, 0.10670583695173264, -0.016522252932190895, 0.05317045375704765, -0.05824299529194832, 0.01068335585296154, -0.033573657274246216, -0.00943346694111824, -0.007836894132196903, -0.022570984438061714, -0.00534167792648077, 0.013502448797225952, 0.029103251174092293, 0.025016022846102715, 0.017717402428388596, -0.05590743571519852, 0.09006498008966446, -0.026694705709815025, -0.008749221451580524, -0.020381398499011993, 0.014396529644727707, -0.04054383933544159, -0.007617935538291931, 0.02193235605955124, -0.01376702357083559, 0.0692274197936058, 0.014697597362101078, -0.0071115936152637005, 0.02278994396328926, 0.0024473187513649464, -0.011869382113218307, 0.00661893654614687, -0.014177571050822735, -0.02070983685553074, -0.02096528746187687, 0.008694482035934925, -0.011075656861066818, -0.02324610762298107, -0.036128174513578415, 0.020217180252075195, -0.05795104801654816, -0.0025704829022288322, -0.01644926704466343, -0.005218513775616884, 0.010583000257611275, -0.002887516748160124, -0.008571317419409752, -0.03514285758137703, -0.04006942734122276, -0.04776947200298309, -0.03528883308172226, 0.017708279192447662, 0.018310414627194405, -0.040507346391677856, 0.04287939891219139, -0.06295060366392136, -0.025362707674503326, 0.04054383933544159, -0.0445580817759037, 0.042769916355609894, -0.02937694825232029, -0.006295060273259878, 0.059228308498859406, -0.011623053811490536, 0.042550958693027496, 0.025326214730739594, 0.005282376892864704, -0.09896929562091827, 0.00595293752849102, 0.014779707416892052, 0.04196706786751747, 0.05437472462654114, -0.03662082925438881, 0.08758345246315002, 0.03165776655077934, 0.023538051173090935, 0.04349977895617485, -0.003111037192866206, 0.012626614421606064, 0.0032319205347448587, -0.03769737482070923, -0.044193148612976074, 0.061016470193862915, -0.05105385184288025, 0.021658657118678093, -0.037806857377290726, -0.03538006544113159, 0.013967735692858696, -0.04401068389415741, 0.04736804962158203, -0.018447263166308403, -0.00037462450563907623, -0.07258478552103043, -0.019469071179628372, 0.007631620392203331, -0.10590298473834991, 0.022406766191124916, 0.011969737708568573, 0.0017311415867879987, 0.006924566347151995, -0.05079840123653412, -0.0026754005812108517, -0.017662663012742996, -0.009424343705177307, 0.035069871693849564, -0.004130563233047724, 0.02784423902630806, 0.036438364535570145, 0.04141967371106148, 0.007102470379322767, -0.004803404677659273, -0.0320591926574707, -0.002164497273042798, 0.04193057492375374, -0.022479752078652382, -0.05740365386009216, -0.01599310338497162, -0.05309746786952019, -0.04273342341184616, -0.014186694286763668, -0.005957499146461487, 0.004693925380706787, -0.008443592116236687, -0.03145705536007881, 0.0014506009174510837, 0.0008866683929227293, -0.0008399115758948028, -0.006664553191512823, 0.021238986402750015, -0.020417891442775726, -0.050105031579732895, -0.05660080537199974, 0.08043079823255539, 0.018000222742557526, -0.04006942734122276, -0.009342234581708908, -0.03428526967763901, -0.012407654896378517, -0.018739208579063416, -0.04309835657477379, 0.017918113619089127, 0.027570540085434914, 0.016750333830714226, 0.01800934597849846, 0.026493992656469345, 0.005747663788497448, 0.04109123349189758, 0.0346137098968029, 0.01670471765100956, 0.005930129438638687, -0.03904762119054794, -0.02258923090994358, -0.02707788348197937, -0.0967797115445137, 0.06765821576118469, -0.03326346352696419, -0.040470853447914124, 0.03003382496535778, 0.0014323543291538954, -0.03846373036503792, 0.04258745163679123, -0.019469071179628372, -0.06368046998977661, 0.037514910101890564, -0.047295063734054565, 0.0622207410633564, -0.03616466745734215, -0.01321050338447094, 0.018739208579063416, -0.05517757311463356, -0.049740102142095566, 0.0155825549736619, -0.00848008506000042, -0.026804184541106224, 0.008183578960597515, 0.012809079140424728, 0.004265131428837776, -0.04820739105343819, 0.014086337760090828, -0.002892078598961234, 0.03229639679193497, 0.007864263840019703, 0.037514910101890564, 0.03003382496535778, -0.01690543070435524, 0.013055408373475075, 0.03288028761744499, -0.02559991180896759, 0.02244325913488865, -0.03366488963365555, 0.015847129747271538, 0.016604362055659294, 0.028683580458164215, -0.04492301121354103, -0.022096574306488037, 0.018082333728671074, 0.02866533398628235, 0.00033385487040504813, 0.0007920144125819206, 0.06973832100629807, 0.039959948509931564, -0.01654049940407276, -0.0023629285860806704, 0.01448776200413704, -0.005045171827077866, -0.039303071796894073, -0.010081220418214798, 0.019304851070046425, -0.009570316411554813, 0.03747841715812683, -0.043171342462301254, 0.013420338742434978, -0.011358479037880898, -0.0005237330333329737, 0.08262038975954056, 0.07302270084619522, -0.004059857688844204, 0.05981219559907913, 0.015619048848748207, 0.054484203457832336, -0.008042167872190475, 0.024797063320875168, 0.09692568331956863, -0.005588006693869829, 0.010601246729493141, -0.03457721695303917, -0.022060081362724304, -0.02468758448958397, -0.010510014370083809, 0.03085491992533207, -0.020472630858421326, -0.10882243514060974, -0.014277926646173, 0.021348465234041214, -0.030727192759513855, -0.00966154970228672, 0.04397419095039368, -0.056892748922109604, 0.03660258278250694, 0.0029331331606954336, 0.01983400247991085, 0.048426348716020584, 0.03897463530302048, 0.015317980200052261, -0.07021272927522659, 0.06017712876200676, -0.03185848146677017, 0.04547040909528732, -0.04656520113348961, 0.03687627986073494, -0.043317314237356186, -0.047805964946746826, 0.023483311757445335, -0.07897108048200607, 0.001382176298648119, 0.03298976644873619, 0.001633066451177001, 0.015135514549911022, 0.03003382496535778, -0.04514196887612343, -0.03698576241731644, -0.003959501627832651, 0.0696653351187706, -0.06123542785644531, 0.01988874189555645, 0.031146863475441933, 0.016923677176237106, -0.04820739105343819, 0.004397418815642595, -0.042295508086681366, -0.0062904986552894115, 0.04685714468359947, -0.06703782826662064, 0.02662171982228756, -0.0498860739171505, -0.029650647193193436, -0.03412105143070221, 0.013465954922139645, 0.0063178688287734985, -0.05295149236917496, -0.029760126024484634, 0.011778149753808975, -0.07875211536884308, -0.028136182576417923, 0.03724121302366257, 0.035672008991241455, 0.07554072886705399, -0.0025271475315093994, 0.0497765950858593, 0.032205164432525635, 0.011814642697572708, 0.05583444982767105, 0.006431909743696451, 0.024851804599165916, 0.0297783724963665, -0.017507566139101982, 0.007677236571907997, 0.02574588544666767, 0.04120071604847908, 0.00829761940985918, -0.02142145112156868, -0.08670761436223984, -0.004399699624627829, 0.079117052257061, 0.006244882475584745, -0.03952203318476677, -0.008968180045485497, -0.0016467513050884008, 0.025216734036803246, 0.032916780561208725, -0.007599689066410065, -0.007960058748722076, 0.06295060366392136, 0.041638631373643875, 0.021020028740167618, 0.009980863891541958, -0.017598798498511314, -0.00604417035356164, 0.022406766191124916, -0.023081887513399124, -0.05349889025092125, 0.031384069472551346, -0.004849021323025227, 0.012918558903038502, 0.06692834943532944, -0.013174010440707207, -0.02625678852200508, -0.040507346391677856, -0.05605340749025345, -0.020107699558138847, -0.034595463424921036, 0.0646657794713974, -0.00666911480948329, 0.03428526967763901, 0.011495327576994896, -0.010236315429210663, -0.028574099764227867, -0.0009676374611444771, -0.015546062029898167, -0.017325101420283318, 0.028008457273244858, 0.0006380591075867414, -0.00358772836625576, -0.002718736184760928, 0.005660992581397295, 0.006687361281365156, -0.022041834890842438, 0.02591010369360447, -0.010555630549788475, -0.015774143859744072, 0.10283757001161575, 0.07429996132850647, -0.005309746600687504, -0.02870182693004608, -0.008042167872190475, 0.033683136105537415, 0.06681887060403824, -0.023574545979499817, -0.007640743628144264, 0.03308099880814552, -0.013548064976930618, -0.019651535898447037, -0.059483759105205536, 0.0006449015927501023, 0.09816645085811615, -0.004094070289283991, 0.013219626620411873, -0.022935915738344193, -0.03813529387116432, -0.05298798531293869, 0.0004233770305290818, 0.002716455375775695, -0.0006962200277484953, -0.007440031506121159, -0.03625589981675148, 0.0309461522847414, -0.024158434942364693, 0.012480641715228558, 0.022881176322698593, -0.011723409406840801, -0.020235426723957062, -0.0618923045694828, 0.06539564579725266, 0.03926657885313034, 0.015901869162917137, 0.017799511551856995, 0.003984590992331505, -0.013347352854907513, 0.058315981179475784, -0.0395585261285305, 0.022060081362724304, -0.019925234839320183, 0.00036550124059431255, -0.010382288135588169, -0.04094526171684265, -0.030562974512577057, 0.01596573367714882, 0.009187138639390469, -0.019140632823109627, 0.01772652566432953, -0.00879483763128519, -0.02514374814927578, 0.006194704212248325, 0.069336898624897, -0.0026115376967936754, -0.019085893407464027, 0.02952292189002037, 0.019085893407464027, -0.02167690359055996, 0.05160124972462654, -0.0030106811318546534, 0.01456074882298708, 0.04693013057112694, -0.01585625298321247, 0.037514910101890564, -0.005560636520385742, -0.04992256686091423, 0.03397507965564728, -0.02764352597296238, 0.0005704898503609002, -0.009789275005459785, -0.0422225221991539, -0.05762261152267456, 0.03048998862504959, -0.03795282915234566, -0.0014677069848403335, 0.016887184232473373, 0.03691277280449867, -0.0071982648223638535, 0.010911437682807446, -0.016120828688144684, -0.01193324476480484, 0.02528972178697586, -0.041273701936006546, -0.019870495423674583 ]
39,911
lerc._lerc
findMaxZError_ma
null
def findMaxZError_ma(npmaArrOrig, npmaArrDec): npDiff = npmaArrDec - npmaArrOrig yMin = np.amin(npDiff) yMax = np.amax(npDiff) return max(abs(yMin), abs(yMax))
(npmaArrOrig, npmaArrDec)
[ -0.0034896070137619972, 0.06824120879173279, 0.041297126561403275, 0.05418182909488678, 0.010929972864687443, -0.03182631731033325, -0.010884086601436138, 0.016069170087575912, 0.0202814768999815, -0.0028976816684007645, 0.03380858153104782, 0.03758956119418144, -0.0332028903067112, -0.0468401163816452, -0.00429948978126049, 0.07213231176137924, -0.024980172514915466, 0.010544532909989357, 0.01519734226167202, 0.05197931453585625, -0.01113186962902546, -0.023163098841905594, -0.04805149883031845, -0.001862959237769246, -0.00788775086402893, 0.028082044795155525, 0.021492859348654747, -0.005322740413248539, -0.0001746524212649092, 0.002773790154606104, -0.064570352435112, 0.016271067783236504, -0.007851042784750462, 0.019620724022388458, 0.047243911772966385, -0.018161557614803314, 0.03344149515032768, -0.014151148498058319, -0.13530774414539337, -0.032890867441892624, 0.002002910478040576, -0.03312947228550911, 0.041774336248636246, 0.06673615425825119, 0.005350272171199322, -0.047904666513204575, -0.021015647798776627, -0.02652193233370781, -0.061413414776325226, 0.0030468101613223553, 0.01963907666504383, -0.07121460139751434, 0.0564577579498291, 0.0462527796626091, -0.019675785675644875, 0.07367407530546188, 0.018693832680583, 0.05550333485007286, -0.023456767201423645, -0.046693284064531326, -0.03887436166405678, -0.029054822400212288, 0.012636920437216759, -0.03993890807032585, 0.00028750256751663983, 0.04955654963850975, -0.010186624713242054, 0.009287265129387379, 0.017895421013236046, 0.06446022540330887, -0.03606615588068962, 0.00252600759267807, 0.004143478348851204, -0.030559873208403587, 0.07448165863752365, 0.011388829909265041, 0.010737252421677113, -0.018904905766248703, -0.06963612884283066, -0.009016538970172405, -0.0243377722799778, 0.009236790239810944, 0.048932503908872604, 0.03602944687008858, 0.005359448958188295, -0.04812491685152054, 0.015087216161191463, 0.0057907747104763985, -0.0064285858534276485, -0.0006974625866860151, -0.005841249134391546, 0.021878300234675407, 0.01849193498492241, 0.026778891682624817, -0.09830551594495773, 0.004489915445446968, -0.004850117955356836, 0.031202273443341255, 0.06783740967512131, -0.04228825494647026, 0.026283325627446175, 0.009021127596497536, 0.03938828036189079, 0.0183175690472126, 0.027347873896360397, 0.03527692332863808, 0.05407170206308365, 0.008888059295713902, -0.02896304987370968, -0.03311111778020859, 0.007369242608547211, 0.010654658079147339, -0.04320596903562546, -0.03134910762310028, 0.0032578844111412764, 0.01270116027444601, 0.008617333136498928, -0.007956579327583313, 0.04915275797247887, 0.025145361199975014, -0.0034414271358400583, -0.020887168124318123, -0.015408416278660297, -0.021933361887931824, -0.03059658221900463, -0.02292449399828911, 0.05513625219464302, -0.025145361199975014, -0.034304145723581314, 0.03746107965707779, 0.02679724618792534, 0.018574530258774757, -0.02134602516889572, 0.0054236892610788345, -0.009691058658063412, 0.018657123669981956, 0.01438975427299738, -0.007607848383486271, -0.011755915358662605, -0.05576029792428017, 0.001084623159840703, 0.0552830845117569, -0.02000616304576397, -0.014325514435768127, -0.0573754720389843, 0.006433174479752779, 0.05983494594693184, 0.024190938100218773, 0.04577556997537613, -0.00556593481451273, -0.05256665125489235, -0.026264971122145653, -0.03039468452334404, -0.015610313042998314, 0.03202821686863899, -0.014288805425167084, -0.01632612943649292, 0.023713726550340652, -0.007667499594390392, 0.019584015011787415, -0.054145120084285736, 0.033459849655628204, -0.06291846185922623, -0.050254013389348984, 0.024521315470337868, -0.029770638793706894, 0.017794473096728325, 0.0071076941676437855, -0.051685646176338196, 0.05616408959031105, -0.003540081437677145, 0.022392218932509422, -0.07547279447317123, -0.02257576212286949, 0.002379173180088401, -0.04559202492237091, 0.011067629791796207, -0.0026430159341543913, -0.0015784678980708122, 0.0332028903067112, 0.007919871248304844, 0.016849227249622345, -0.004639043938368559, 0.03434085473418236, 0.00434537511318922, -0.02754977159202099, 0.021547922864556313, -0.007795979734510183, -0.012517618015408516, -0.044123683124780655, -0.06684628129005432, 0.0339554138481617, 0.027898503467440605, -0.06416655331850052, -0.02604472078382969, -0.02850419282913208, 0.005712768994271755, 0.09037646651268005, 0.06552477180957794, -0.062257710844278336, -0.018335923552513123, 0.022704241797327995, 0.0015750264283269644, -0.04570215195417404, 0.037809811532497406, -0.004338492639362812, -0.00573571166023612, -0.030504809692502022, -0.07455507665872574, 0.03691045194864273, -0.008860527537763119, 0.01500462181866169, 0.00021939097496215254, -0.02679724618792534, 0.007649145554751158, 0.028485840186476707, 0.06926904618740082, 0.012581857852637768, 0.020446665585041046, 0.041113581508398056, -0.0375528521835804, -0.04118699952960014, 0.019143512472510338, 0.02850419282913208, 0.041480667889118195, 0.0006033969111740589, 0.01794130727648735, 0.06446022540330887, 0.014343868009746075, -0.011966989375650883, -0.04004903510212898, 0.017445741221308708, -0.03795664757490158, -0.02754977159202099, -0.0073875971138477325, 0.07253610342741013, 0.014710953459143639, -0.04272875934839249, -0.00620833458378911, -0.018179912120103836, 0.005308974999934435, 0.02248399145901203, -0.0038842239882797003, 0.04349963739514351, -0.017051124945282936, -0.03197315335273743, 0.009874601848423481, 0.0006808289908803999, 0.024209292605519295, -0.0004924108507111669, -0.008328253403306007, -0.020042872056365013, -0.011223641224205494, -0.0033817756921052933, 0.02850419282913208, 0.006189980078488588, 0.025897886604070663, -0.0032945929560810328, 0.07650063186883926, -0.030926957726478577, 0.03615792840719223, -0.04335280507802963, 0.0019489949336275458, -0.006791082676500082, -0.028063690289855003, 0.010810669511556625, 0.001597969327121973, -0.01651884987950325, -0.017684346064925194, 0.044600896537303925, 0.13846467435359955, -0.01746409572660923, -0.08391576260328293, -0.07943731546401978, 0.006919562816619873, 0.052052732557058334, 0.049703385680913925, -0.03788322955369949, -0.02652193233370781, 0.028430776670575142, -0.015188165009021759, -0.07169181108474731, -0.05201602354645729, 0.03825031593441963, 0.015022976323962212, 0.0337902270257473, 0.03267061337828636, -0.11320918798446655, 0.021364379674196243, 0.042545218020677567, 0.01515145692974329, -0.016362838447093964, -0.06229441985487938, -0.018941614776849747, -0.010847378522157669, -0.028375713154673576, 0.030816832557320595, -0.007506899535655975, -0.007956579327583313, -0.007919871248304844, -0.049409717321395874, -0.029054822400212288, 0.04581227898597717, -0.024686504155397415, -0.05708180367946625, 0.00859439093619585, -0.07169181108474731, -0.03579084202647209, 0.08090566098690033, 0.011021743528544903, -0.0070985169149935246, 0.011820155195891857, -0.034689586609601974, -0.02587953209877014, -0.008227305486798286, 0.10696873068809509, 0.04672999307513237, -0.017014415934681892, 0.04331609606742859, 0.05568687990307808, 0.012049583718180656, -0.007254528347402811, -0.009067012928426266, -0.028008628636598587, 0.027770021930336952, -0.020648563280701637, -0.09162455797195435, 0.0006131476256996393, 0.043940141797065735, -0.028834570199251175, -0.04841858521103859, -0.0309453122317791, -0.03479970991611481, 0.03338643163442612, 0.09771817922592163, 0.018262507393956184, 0.014096085913479328, -0.0624779611825943, 0.016390370205044746, -0.02426435612142086, -0.02415422908961773, -0.017060302197933197, -0.0144907021895051, 0.009617641568183899, 0.009993904270231724, 0.03520350530743599, 0.01393089722841978, -0.005428277887403965, -0.06060582771897316, 0.07389432191848755, -0.05201602354645729, -0.0009217289043590426, -0.004840940702706575, 0.024044103920459747, -0.04037941247224808, 0.005400746129453182, 0.013903365470468998, -0.01519734226167202, 0.03683703765273094, 0.013940074481070042, -0.059798236936330795, 0.030541518703103065, -0.005620997864753008, -0.03178960829973221, -0.040636371821165085, -0.009553401730954647, -0.005290620494633913, -0.017152072861790657, 0.02219032123684883, -0.04761099815368652, -0.00933773908764124, -0.026393452659249306, 0.06122986972332001, -0.039681948721408844, -0.04294900968670845, -0.00024204704095609486, -0.020556790754199028, 0.002801321679726243, -0.0006257661734707654, 0.03235859051346779, 0.0044509125873446465, -0.03267061337828636, -0.05880710855126381, -0.018904905766248703, 0.012618565931916237, -0.0008270896505564451, -0.052236273884773254, -0.03700222447514534, -0.05098818615078926, -0.013086600229144096, 0.052162859588861465, -0.06163366511464119, 0.03334972262382507, -0.03210163116455078, 0.007630791049450636, 0.017234666272997856, -0.027880148962140083, 0.03560730069875717, 0.03057822771370411, 0.015390061773359776, -0.08119932562112808, -0.003930109553039074, 0.03623134642839432, 0.008470498956739902, 0.004533506464213133, -0.04037941247224808, 0.051502104848623276, 0.06310200691223145, 0.001127640949562192, 0.06412984430789948, -0.02226373925805092, 0.0018870491767302155, 0.012958120554685593, -0.06317542493343353, -0.007369242608547211, 0.05197931453585625, -0.04012245312333107, -0.0025695988442748785, -0.03791993856430054, -0.04981350898742676, 0.03551552817225456, -0.035919323563575745, 0.03916803002357483, -0.05509954318404198, 0.016105879098176956, -0.06163366511464119, -0.0324503630399704, -0.02765989676117897, -0.08898153901100159, 0.012829639948904514, 0.03850727528333664, 0.011921103112399578, 0.019143512472510338, -0.055466629564762115, 0.002968804445117712, 0.032230112701654434, -0.02565927989780903, -0.0091587845236063, 0.00467345817014575, 0.013306851498782635, 0.04540848359465599, 0.04001232609152794, -0.020318185910582542, 0.0441603921353817, -0.037240829318761826, -0.0078418655321002, 0.04059966281056404, -0.081125907599926, -0.009938841685652733, -0.006359757389873266, -0.05524637550115585, -0.019951099529862404, -0.0006097061559557915, -0.023915624246001244, 0.04896921291947365, -0.01691346801817417, -0.028944697231054306, -0.019473889842629433, 0.007029688451439142, 0.02380549907684326, -0.015417593531310558, 0.05774255841970444, 0.008286956697702408, -0.09382706880569458, -0.026191554963588715, 0.050657808780670166, 0.024227647110819817, 0.0006722254329361022, -0.013985959812998772, -0.0328725129365921, 0.011535664089024067, -0.034873127937316895, -0.03479970991611481, 0.00024247722467407584, 0.017317261546850204, -0.012591035105288029, -0.003934698179364204, 0.02870609052479267, 0.011820155195891857, 0.05902735888957977, -0.0008362667867913842, -0.0005078972899354994, -0.0013020065380260348, -0.011801800690591335, 0.014802725054323673, 0.015573604963719845, -0.09426756948232651, -0.007061808370053768, -0.02861431986093521, -0.0268890168517828, 0.02709091454744339, 0.018519466742873192, -0.02586117759346962, 0.09272581338882446, -0.011251172050833702, -0.05609067529439926, 0.09037646651268005, 0.007337122689932585, 0.027054205536842346, -0.05682484433054924, -0.024576378986239433, 0.025530800223350525, -0.0669931173324585, -0.06394630670547485, -0.004198540933430195, 0.012618565931916237, -0.06857158243656158, -0.024576378986239433, -0.01763846166431904, 0.015564427711069584, -0.023438412696123123, 0.004336198326200247, -0.005414512008428574, -0.005084135103970766, -0.0051437863148748875, 0.045261651277542114, 0.021786527708172798, -0.03568071499466896, 0.030651643872261047, 0.024209292605519295, -0.01596822217106819, -0.016739102080464363, -0.06412984430789948, -0.019749203696846962, 0.004051706753671169, 0.02718268521130085, -0.05381474271416664, 0.007672088220715523, 0.015812210738658905, 0.029018113389611244, 0.014215388335287571, 0.022887784987688065, 0.07224243879318237, 0.032633908092975616, -0.009080778807401657, -0.019125157967209816, -0.0028403245378285646, -0.019969454035162926, 0.005350272171199322, 0.01728972978889942, 0.028999758884310722, 0.010406875982880592, -0.0019753791857510805, -0.012040406465530396, 0.006167037412524223, -0.014077731408178806, -0.011985343880951405, 0.07110447436571121, 0.026301680132746696, 0.026485223323106766, 0.05814635381102562, 0.0462527796626091, 0.05249323323369026, 0.039792075753211975, -0.008328253403306007, 0.07951073348522186, -0.019785910844802856, -0.008791699074208736, -0.011535664089024067, -0.008264013566076756, -0.0034597814083099365, 0.002984864404425025, 0.05091476812958717, 0.0035033728927373886, -0.12040406465530396, 0.03386364132165909, 0.028485840186476707, 0.023842206224799156, -0.007020511198788881, 0.043830014765262604, -0.009792007505893707, -0.0003541801997926086, -0.02103400230407715, 0.0006796818342991173, 0.03575413301587105, 0.06578173488378525, 0.0279352106153965, -0.06269821524620056, 0.027421291917562485, 0.013664759695529938, 0.04933629930019379, -0.020409956574440002, 0.00197079055942595, -0.040636371821165085, -0.02050172910094261, 0.014215388335287571, -0.05957798659801483, -0.010351812466979027, 0.031092146411538124, -0.005198849365115166, -0.05021730437874794, 0.032890867441892624, -0.05689826235175133, -0.047060370445251465, -0.02918330207467079, 0.07818922400474548, -0.004255898296833038, 0.016096701845526695, 0.011315412819385529, 0.034891482442617416, -0.018693832680583, 0.00006492109241662547, -0.013563811779022217, -0.02604472078382969, 0.04720720276236534, -0.02248399145901203, 0.0021703934762626886, -0.09096380323171616, -0.015637844800949097, 0.00391634413972497, -0.005721946246922016, -0.007341711316257715, -0.053300824016332626, -0.014004314318299294, 0.03254213556647301, -0.030468100681900978, -0.022135259583592415, 0.020832104608416557, 0.04100345820188522, 0.10256370902061462, 0.01811567321419716, 0.025439029559493065, 0.05755901709198952, 0.011480600573122501, 0.07088422030210495, 0.030926957726478577, 0.020409956574440002, -0.0020189706701785326, -0.004203129559755325, 0.0016128821298480034, 0.007263705600053072, 0.0657450258731842, 0.012242303229868412, -0.036763619631528854, -0.04977680370211601, -0.008236481808125973, 0.05902735888957977, 0.00026470309239812195, -0.024704858660697937, -0.021731466054916382, -0.05308057367801666, 0.0077776252292096615, 0.03560730069875717, 0.0009108310332521796, -0.009434099309146404, 0.041590794920921326, 0.030321266502141953, 0.040159158408641815, 0.016078347340226173, -0.010792315006256104, 0.0037098585162311792, -0.012783754616975784, -0.033845286816358566, -0.019180219620466232, 0.014151148498058319, -0.028632674366235733, -0.02587953209877014, 0.09155113995075226, -0.029587095603346825, -0.04107687249779701, -0.028339006006717682, -0.07539937645196915, -0.04258192330598831, -0.052236273884773254, 0.1021232008934021, -0.0213276706635952, 0.02000616304576397, 0.026026366278529167, -0.03575413301587105, 0.008153888396918774, 0.010131561197340488, 0.005258500576019287, 0.007226997055113316, 0.0016828578663989902, 0.018831489607691765, 0.0000360812118742615, 0.00967270415276289, 0.019088448956608772, 0.0016220592660829425, 0.008759579621255398, 0.019932745024561882, 0.046105947345495224, -0.019840974360704422, 0.0817132443189621, 0.07169181108474731, 0.04151737689971924, 0.008654042147099972, 0.03766297921538353, 0.006951682735234499, 0.05341094732284546, -0.009268910624086857, -0.03683703765273094, 0.018473580479621887, 0.007369242608547211, -0.007254528347402811, -0.002257576212286949, -0.016840049996972084, 0.10263711959123611, -0.01775776408612728, 0.019749203696846962, -0.007341711316257715, 0.019492242485284805, -0.05175906419754028, 0.0030399272218346596, 0.006020203232765198, -0.022906139492988586, 0.017051124945282936, -0.019749203696846962, 0.004109064117074013, -0.05062109977006912, 0.0035423757508397102, 0.01575714722275734, 0.03946169838309288, -0.03806677088141441, -0.040526244789361954, 0.01927199214696884, 0.0032945929560810328, -0.006570831406861544, 0.026209909468889236, 0.02020806074142456, -0.03920473903417587, 0.03579084202647209, 0.0005420247907750309, 0.007543608080595732, -0.035552237182855606, 0.007750093936920166, 0.0031890557147562504, -0.01166414376348257, -0.03500160947442055, -0.039241448044776917, -0.03643324226140976, -0.030284559354186058, 0.039792075753211975, 0.014086908660829067, -0.05627421662211418, 0.019216928631067276, 0.01014991570264101, -0.001857223454862833, -0.007607848383486271, 0.007584905251860619, -0.010682189837098122, -0.006703900173306465, 0.038654111325740814, 0.020813751965761185, -0.011352120898663998, 0.028852924704551697, -0.06904879212379456, 0.04929959028959274, -0.009709413163363934, -0.053190696984529495, 0.012591035105288029, -0.03887436166405678, -0.01671157032251358, 0.03232188522815704, -0.03547881916165352, -0.020318185910582542, 0.03880094364285469, -0.03145923092961311, -0.0024273532908409834, -0.008938533253967762, 0.013802416622638702, 0.0202814768999815, 0.012774577364325523, 0.014775194227695465, -0.016491318121552467, 0.007112282793968916, -0.03957182168960571, -0.018831489607691765 ]
39,912
lerc._lerc
getLercBlobInfo
null
def getLercBlobInfo(lercBlob, printInfo = False): return _getLercBlobInfo_Ext(lercBlob, 0, printInfo)
(lercBlob, printInfo=False)
[ 0.03590403124690056, -0.02913067117333412, -0.02712826244533062, 0.06324124336242676, 0.01473945751786232, -0.034423988312482834, 0.06341536343097687, -0.01688116230070591, -0.025091031566262245, -0.040535684674978256, -0.010551814921200275, -0.007500320672988892, -0.06069905310869217, -0.04199831187725067, -0.06052493304014206, -0.014722045511007309, -0.06801219284534454, -0.0655396580696106, 0.0059462785720825195, 0.04133664816617966, -0.005859217140823603, 0.008949888870120049, 0.037784550338983536, 0.02516068145632744, -0.06275369971990585, 0.027842164039611816, 0.014217090792953968, -0.00234194565564394, 0.02832970768213272, 0.045411109924316406, -0.037993498146533966, -0.05871405825018883, -0.057077307254076004, 0.03273500129580498, -0.029722686856985092, 0.05265460163354874, 0.06146519258618355, 0.004801424220204353, -0.0242204200476408, -0.007696208078414202, -0.0573907271027565, 0.020058896392583847, 0.042067959904670715, -0.022305073216557503, 0.011204773560166359, -0.03433692827820778, 0.002500832313671708, -0.10363762825727463, -0.024359717965126038, -0.01667221635580063, 0.061186596751213074, 0.00805751234292984, -0.015183469280600548, -0.05167951434850693, 0.020058896392583847, -0.06529588252305984, 0.03743630647659302, -0.0016465445514768362, -0.04568970575928688, 0.05369933322072029, -0.00018337261280976236, -0.008932476863265038, 0.023889588192105293, 0.0029774922877550125, 0.014896167442202568, -0.0016791925299912691, 0.020755384117364883, 0.029165495187044144, -0.032682765275239944, 0.0021667350083589554, 0.023349808529019356, -0.027580982074141502, -0.024133358150720596, -0.007526438683271408, -0.08239469677209854, -0.06404220312833786, -0.026692956686019897, -0.03872481361031532, -0.03418022021651268, 0.0179868396371603, -0.021347401663661003, 0.035625435411930084, 0.06073387712240219, 0.013799197040498257, 0.01991959847509861, -0.07320103794336319, 0.09653343260288239, 0.006769006606191397, 0.0009816148085519671, 0.11499040573835373, -0.021713057532906532, 0.007996569387614727, -0.013990730978548527, -0.01955394074320793, -0.006507823243737221, -0.0658530741930008, -0.00996850524097681, 0.05564950406551361, 0.018996749073266983, -0.03844621777534485, 0.002197206486016512, -0.0034976827446371317, 0.024533839896321297, -0.018439557403326035, -0.031742505729198456, 0.00780068151652813, 0.0005109402700327337, 0.022113539278507233, 0.035050831735134125, -0.015192175284028053, -0.037749726325273514, 0.005550150293856859, -0.02658848464488983, -0.01202314905822277, 0.03391903638839722, 0.003978695720434189, 0.006011574529111385, -0.026484010741114616, -0.037192534655332565, -0.008501524105668068, 0.018613679334521294, -0.05000793933868408, 0.002579187508672476, -0.0719473585486412, -0.03527718782424927, 0.03120272606611252, 0.011701022274792194, 0.005140962544828653, -0.03921235352754593, -0.024882085621356964, 0.07953909039497375, -0.01812613755464554, -0.04022226482629776, 0.058296166360378265, 0.02361099235713482, -0.053977929055690765, 0.04199831187725067, 0.02441195398569107, -0.02655365876853466, 0.02340204454958439, 0.01153560634702444, -0.015932194888591766, 0.015705836936831474, -0.002112321788445115, -0.036217451095581055, 0.00936778262257576, 0.007465496193617582, -0.06693263351917267, 0.0005914719076827168, -0.03391903638839722, 0.019780300557613373, -0.013381303288042545, -0.012301744893193245, 0.011579136364161968, -0.00816198531538248, -0.031324613839387894, 0.016411032527685165, -0.03304842486977577, -0.008122808299958706, 0.001782577601261437, -0.018700741231441498, 0.025491513311862946, 0.0019186107674613595, -0.08559855073690414, 0.009385194629430771, -0.01852661930024624, -0.01913604699075222, -0.02810334786772728, -0.030192816630005836, 0.0259790550917387, 0.011770671233534813, 0.013076589442789555, -0.015740660950541496, 0.06975341588258743, 0.08316083997488022, 0.06028116121888161, 0.0027010729536414146, 0.06296264380216599, -0.0292525552213192, -0.02946150302886963, -0.04158041998744011, 0.010290631093084812, 0.031742505729198456, 0.05725143104791641, -0.003467211499810219, -0.013738254085183144, 0.07006683945655823, -0.019867360591888428, 0.016428444534540176, -0.0370880626142025, 0.04868461191654205, 0.030123168602585793, 0.004888485185801983, -0.010482165962457657, 0.018387321382761, -0.026309888809919357, 0.0006769006722606719, 0.025683047249913216, -0.06783807277679443, 0.005837452132254839, 0.0028120761271566153, 0.04868461191654205, -0.02383735030889511, -0.009028243832290173, -0.00013446870434563607, 0.03512047976255417, -0.0053020259365439415, 0.06076870113611221, -0.04196348786354065, 0.044436026364564896, 0.047326456755399704, 0.017560239881277084, -0.019867360591888428, 0.02906102128326893, 0.005271554458886385, -0.025491513311862946, -0.10635393857955933, 0.03228228539228439, -0.03223004937171936, -0.013529307208955288, 0.03235193341970444, 0.013598956167697906, -0.015453359112143517, 0.025421863421797752, -0.03087189421057701, 0.03219522535800934, 0.05021688714623451, -0.0025291272904723883, 0.02577010914683342, -0.028573479503393173, -0.051853638142347336, -0.051052674651145935, -0.12084091454744339, 0.02615317888557911, 0.03022764064371586, 0.042276907712221146, -0.008205516263842583, 0.04802294448018074, 0.02188717946410179, -0.05432617664337158, 0.05108749866485596, 0.033675264567136765, 0.02813817374408245, 0.051157146692276, -0.028155585750937462, -0.1136670783162117, 0.011892557144165039, 0.05429135262966156, -0.09402607381343842, -0.040883928537368774, 0.0077615040354430676, -0.044575322419404984, 0.03684429079294205, 0.0010431017726659775, 0.018996749073266983, -0.030593298375606537, -0.03963024914264679, -0.030767420306801796, 0.02345428057014942, -0.025926819071173668, -0.020076308399438858, -0.04290374740958214, 0.07041507959365845, 0.020076308399438858, -0.014817812480032444, 0.01601925678551197, -0.014103910885751247, -0.032891713082790375, -0.023558754473924637, 0.019641002640128136, 0.04001331701874733, -0.0011872968170791864, -0.07299209386110306, 0.007182547356933355, -0.029043609276413918, -0.026797430589795113, 0.023193098604679108, 0.010351574048399925, -0.02477761171758175, 0.03162062168121338, -0.013773078098893166, -0.008153279311954975, -0.017255526036024094, -0.007983510382473469, -0.03202110156416893, -0.024725373834371567, -0.04527181386947632, -0.005110491067171097, -0.028556065633893013, -0.009237190708518028, -0.06125624477863312, 0.03240416944026947, -0.029548563063144684, 0.002263590693473816, 0.05248047783970833, -0.0025748342741280794, 0.023907000198960304, 0.020233018323779106, 0.0018010780913755298, -0.003967813216149807, -0.06588789820671082, -0.02496914565563202, 0.016741864383220673, -0.020546438172459602, -0.03806314617395401, 0.012963409535586834, 0.049485575407743454, -0.05895783007144928, -0.0425206795334816, 0.020581262186169624, 0.051609866321086884, 0.07347963750362396, 0.06891763210296631, 0.0193449929356575, -0.011814202181994915, -0.024899497628211975, 0.013233299367129803, 0.02185235545039177, -0.014800400473177433, 0.024847259745001793, 0.01695951819419861, 0.010116509161889553, 0.022357311099767685, 0.004235526546835899, 0.024063710123300552, -0.10900059342384338, -0.0005931042833253741, 0.0197454746812582, 0.03202110156416893, 0.03764525428414345, -0.04645584523677826, -0.04642102122306824, 0.0074785551987588406, -0.011039357632398605, 0.026031292974948883, 0.05167951434850693, -0.07473331689834595, -0.00118512031622231, -0.09472256153821945, -0.021434461697936058, 0.04858013615012169, -0.0706588551402092, -0.009272015653550625, 0.04467979818582535, -0.019797712564468384, 0.052027761936187744, 0.0682559609413147, 0.018491793423891068, -0.009724733419716358, 0.03169026970863342, -0.0230189748108387, -0.04133664816617966, -0.06076870113611221, 0.01856144331395626, 0.02345428057014942, 0.01356413122266531, -0.02303638868033886, -0.008484112098813057, 0.02263590693473816, 0.03959542512893677, 0.014756869524717331, -0.054987840354442596, 0.010812998749315739, -0.04882390797138214, -0.016184672713279724, -0.029357029125094414, 0.01856144331395626, 0.018979337066411972, 0.044819094240665436, 0.019379818812012672, -0.0487542599439621, -0.0050974320620298386, 0.002526950789615512, -0.045794181525707245, 0.019571352750062943, -0.036426398903131485, -0.0017161935102194548, -0.023698052391409874, -0.04722198471426964, 0.04123217239975929, 0.04701303690671921, 0.026257650926709175, 0.010717230848968029, -0.009890150278806686, -0.02672778256237507, -0.0179868396371603, -0.05286354944109917, 0.04377435892820358, -0.0009495109552517533, 0.01453921664506197, -0.0067733596079051495, 0.0220613032579422, -0.011770671233534813, 0.025247741490602493, -0.025456689298152924, 0.004871072713285685, 0.010212276130914688, 0.01896192505955696, -0.026013880968093872, -0.05916677787899971, -0.003430210519582033, 0.02791181392967701, -0.07048472762107849, -0.020006658509373665, -0.041092876344919205, 0.03393644839525223, -0.010107803158462048, 0.030593298375606537, -0.029182907193899155, -0.05784344673156738, -0.03416280820965767, -0.03256088122725487, 0.03381456062197685, -0.02731979824602604, -0.025648223236203194, 0.05265460163354874, 0.00013168003351893276, 0.0296530369669199, -0.03381456062197685, -0.007008424960076809, 0.008884592913091183, 0.019379818812012672, -0.04447085037827492, 0.051818814128637314, -0.005310731939971447, 0.03607815131545067, 0.023193098604679108, 0.029583388939499855, 0.018213199451565742, -0.015200882218778133, 0.013442246243357658, 0.008479759097099304, 0.037958674132823944, -0.04398330673575401, -0.0024899498093873262, 0.012301744893193245, -0.02577010914683342, 0.006703710649162531, -0.008932476863265038, 0.06717640161514282, -0.007535145152360201, 0.0449235662817955, -0.010038154199719429, -0.008214222267270088, 0.025717871263623238, 0.03148132190108299, -0.042868923395872116, 0.017438353970646858, 0.037540778517723083, -0.028747601434588432, 0.009385194629430771, -0.0164632685482502, 0.0030884952284395695, -0.010839116759598255, -0.005293319467455149, 0.02613576501607895, -0.057495202869176865, 0.023158272728323936, 0.003697923617437482, 0.015200882218778133, -0.056903187185525894, 0.020737972110509872, 0.012928584590554237, -0.059027478098869324, 0.0527590736746788, -0.0263795368373394, 0.053768984973430634, 0.016184672713279724, -0.03625227510929108, -0.018631091341376305, 0.04133664816617966, -0.029026197269558907, 0.024899497628211975, 0.039525773376226425, 0.06414667516946793, 0.0018696387996897101, 0.01122218556702137, -0.021329989656805992, -0.0019686708692461252, -0.03259570524096489, -0.057669322937726974, -0.04586382955312729, -0.014930992387235165, -0.032682765275239944, -0.0014713339041918516, -0.005667682737112045, -0.027180500328540802, 0.04485391825437546, -0.01239751186221838, -0.03872481361031532, -0.08497171103954315, 0.12237319350242615, -0.04196348786354065, -0.03294394910335541, 0.025265153497457504, 0.034249868243932724, 0.04311269521713257, 0.010299337096512318, -0.02028525434434414, 0.0073610227555036545, -0.0011029563611373305, -0.027058614417910576, 0.03351855278015137, -0.0625099241733551, 0.015009347349405289, -0.012911172583699226, 0.014478273689746857, 0.009541905485093594, 0.008553761057555676, 0.03008834272623062, -0.036008503288030624, -0.026292476803064346, 0.018439557403326035, 0.05662459135055542, -0.08566819876432419, 0.035033419728279114, -0.010499577969312668, 0.025247741490602493, 0.008148926310241222, 0.003895987756550312, 0.033100660890340805, 0.032526057213544846, 0.04450567439198494, -0.09695132821798325, 0.038376566022634506, 0.010386398993432522, -0.002151499269530177, 0.03492894396185875, -0.03496376797556877, 0.0390034094452858, 0.004457532428205013, -0.014835224486887455, -0.0212603397667408, -0.04335646703839302, -0.035869207233190536, 0.05523161217570305, -0.004932015668600798, 0.031080840155482292, -0.009533199481666088, -0.04885873198509216, 0.005863570142537355, -0.021782707422971725, 0.013755666092038155, -0.018996749073266983, 0.002389829372987151, 0.007626559119671583, 0.03412798047065735, 0.054744068533182144, 0.0242204200476408, -0.02559598721563816, 0.0823250487446785, -0.016236910596489906, 0.008109748363494873, -0.050669606775045395, -0.029914220795035362, 0.02458607591688633, 0.023123448714613914, -0.05429135262966156, 0.004914603661745787, -0.04488874226808548, 0.06191790848970413, 0.031951453536748886, -0.006690651644021273, 0.014904873445630074, 0.044227078557014465, 0.02810334786772728, 0.024063710123300552, 0.06686298549175262, -0.007300079800188541, -0.03862033784389496, 0.01327682938426733, 0.04680408909916878, 0.017847541719675064, -0.013311654329299927, 0.008893299847841263, 0.0208598580211401, -0.01445215567946434, 0.021556347608566284, 0.07431542128324509, -0.015218294225633144, 0.04370471090078354, -0.03003610670566559, -0.01764730177819729, 0.014800400473177433, 0.01590607687830925, 0.009376488626003265, -0.02794663794338703, -0.001525747124105692, 0.017769185826182365, -0.006477351766079664, -0.011230891570448875, -0.05049548298120499, -0.03614780306816101, -0.03334443271160126, 0.07375822961330414, 0.0042094080708920956, -0.019780300557613373, 0.03806314617395401, -0.023175686597824097, 0.01812613755464554, -0.010064272210001945, -0.032891713082790375, -0.0585051104426384, 0.013381303288042545, -0.07807646691799164, -0.024359717965126038, 0.04690856114029884, -0.021625997498631477, 0.052236706018447876, 0.03334443271160126, 0.02441195398569107, -0.01357283815741539, -0.04426190257072449, -0.04544593393802643, 0.005162728019058704, -0.015270530246198177, 0.025630811229348183, 0.010464753955602646, 0.05331626534461975, 0.02303638868033886, 0.024690549820661545, 0.05537090823054314, 0.018665917217731476, 0.025526337325572968, -0.044575322419404984, -0.03471999615430832, 0.01913604699075222, -0.008109748363494873, 0.07340998202562332, 0.0026553659699857235, 0.03768007829785347, 0.029217731207609177, 0.0019523468799889088, 0.024951733648777008, 0.019101222977042198, -0.0036282746586948633, 0.020563850179314613, -0.022113539278507233, -0.01729905605316162, 0.07125087082386017, 0.016637390479445457, 0.039734721183776855, -0.040152616798877716, -0.019675826653838158, 0.006808184087276459, -0.01345965825021267, 0.04213761165738106, -0.03123755007982254, 0.0768924355506897, -0.020563850179314613, -0.03750595450401306, 0.07121604681015015, 0.05826134234666824, 0.016141142696142197, -0.0687435045838356, 0.0028273118659853935, -0.0117097282782197, 0.06390290707349777, -0.020198194310069084, -0.00014120235573500395, -0.04165006801486015, -0.09284204244613647, -0.001645456301048398, -0.018213199451565742, 0.06017668545246124, -0.010612757876515388, -0.017420941963791847, 0.027041202411055565, 0.015723248943686485, -0.04913732782006264, -0.002296238671988249, 0.03458070009946823, 0.035799555480480194, -0.042451031506061554, 0.013198474422097206, -0.019188283011317253, -0.033257368952035904, 0.008440581150352955, 0.04036156088113785, 0.015583951026201248, 0.010717230848968029, 0.05021688714623451, -0.005245435982942581, 0.0406053327023983, 0.016855044290423393, 0.021434461697936058, -0.022792616859078407, 0.011370189487934113, 0.039560601115226746, 0.007535145152360201, -0.03593885526061058, 0.022949326783418655, 0.049903467297554016, 0.03226487338542938, 0.0021177632734179497, 0.04095357656478882, 0.007874683476984501, -0.030105754733085632, 0.0292525552213192, -0.017194582149386406, 0.030593298375606537, -0.005362968426197767, -0.00906306877732277, 0.0003906870260834694, 0.010377692058682442, -0.03764525428414345, 0.008205516263842583, -0.04373953491449356, -0.01492228638380766, 0.019815124571323395, 0.004163701087236404, 0.04022226482629776, 0.0022679436951875687, -0.07696208357810974, -0.03066294640302658, 0.04133664816617966, -0.024951733648777008, 0.05362968519330025, -0.034841883927583694, -0.006912657525390387, -0.01153560634702444, 0.01856144331395626, 0.06564413011074066, 0.0909615159034729, 0.04328681901097298, 0.09117046743631363, 0.035050831735134125, 0.01972806267440319, -0.05136609449982643, 0.007648324593901634, 0.022130951285362244, -0.051261622458696365, -0.016794100403785706, -0.035660259425640106, -0.025299979373812675, -0.020267842337489128, -0.0060551050119102, -0.01680280826985836, 0.03454587608575821, -0.03247382119297981, 0.04593347758054733, 0.014530510641634464, -0.04001331701874733, 0.07675313204526901, 0.020372316241264343, -0.010699818842113018, -0.03381456062197685, 0.032317109405994415, 0.052410829812288284, 0.014295445755124092, 0.014321563765406609, -0.007221724838018417, -0.031080840155482292, -0.003991755191236734, -0.0008330666460096836, -0.0176647137850523, 0.004592477343976498, 0.019014161080121994, 0.010316750034689903, -0.025456689298152924, 0.02671036869287491, -0.061360716819763184, -0.02343686856329441, -0.0012471514055505395, -0.04701303690671921, -0.0043965894728899, -0.049520399421453476, -0.002374593634158373 ]
39,913
lerc._lerc
getLercBlobInfo_4D
null
def getLercBlobInfo_4D(lercBlob, printInfo = False): return _getLercBlobInfo_Ext(lercBlob, 1, printInfo)
(lercBlob, printInfo=False)
[ 0.039565350860357285, 0.005893368273973465, -0.02967401221394539, 0.04393799230456352, 0.009344757534563541, -0.029568223282694817, 0.060934871435165405, -0.032812438905239105, -0.03759060800075531, -0.028457431122660637, -0.018636619672179222, -0.023414788767695427, -0.07539279758930206, -0.0110021298751235, -0.04922747611999512, -0.05070853233337402, -0.062063295394182205, -0.023291366174817085, -0.005016195122152567, 0.02528374083340168, -0.001818260527215898, 0.026271110400557518, 0.028739536181092262, 0.03917745500802994, -0.056421175599098206, 0.030079539865255356, 0.007392055820673704, 0.01574503444135189, 0.012853449210524559, 0.051978010684251785, -0.05913644656538963, -0.030132435262203217, -0.07193700224161148, 0.0472174733877182, -0.024931106716394424, 0.05335327610373497, 0.050814323127269745, -0.006087316200137138, -0.022286364808678627, 0.014757663942873478, -0.06008855253458023, 0.019853200763463974, 0.03864850476384163, -0.032389283180236816, -0.014211083762347698, -0.024578474462032318, 0.015251349657773972, -0.11171393096446991, -0.001226499443873763, 0.02193373255431652, 0.08787598460912704, -0.021510573104023933, -0.016952799633145332, -0.04111693426966667, 0.020646624267101288, -0.057479072362184525, 0.041222721338272095, 0.028298746794462204, -0.04824010655283928, 0.03632113337516785, 0.01264187041670084, -0.01676766760647297, 0.009089099243283272, 0.017816750332713127, -0.022057153284549713, 0.0031516517046839, 0.04192798584699631, 0.02018820308148861, -0.054199591279029846, 0.013523451052606106, 0.002151057356968522, -0.040164824575185776, -0.020628992468118668, -0.00392083078622818, -0.06763488799333572, -0.04111693426966667, -0.03022059239447117, -0.059700656682252884, 0.013787925243377686, 0.0015692139277234674, -0.014695953577756882, 0.003667376469820738, 0.06703541427850723, 0.013470555655658245, 0.017719775438308716, -0.04672378674149513, 0.09464652091264725, 0.014502005651593208, -0.00023871556913945824, 0.07158436626195908, -0.01014699600636959, 0.0058404733426868916, -0.03545718267560005, 0.014299241825938225, -0.015850825235247612, -0.07292436808347702, -0.001924050273373723, 0.05712644010782242, 0.035580605268478394, -0.019200831651687622, 0.0032111583277583122, -0.051308006048202515, 0.014457926154136658, -0.031137436628341675, -0.057479072362184525, 0.024790054187178612, 0.005545143969357014, 0.03487534075975418, 0.0034161258954554796, -0.04905116185545921, -0.04309167340397835, 0.022039521485567093, -0.020576097071170807, 0.0041544497944414616, 0.0236087366938591, -0.01739359088242054, 0.015603981912136078, -0.010913971811532974, -0.03521034121513367, -0.019183199852705002, 0.031225595623254776, -0.037872716784477234, -0.06583645939826965, -0.04326799139380455, -0.035598237067461014, 0.002227093791589141, 0.009327125735580921, -0.0015725198900327086, -0.03267138823866844, -0.036180078983306885, 0.08702966570854187, 0.026623742654919624, -0.05159011483192444, 0.023714525625109673, 0.022356892004609108, -0.07278332114219666, 0.018231092020869255, -0.0037797780241817236, -0.009344757534563541, 0.009089099243283272, -0.014175821095705032, -0.011398840695619583, 0.04369114711880684, 0.04506641626358032, -0.014687137678265572, 0.03878955915570259, 0.03720271214842796, -0.03487534075975418, -0.020382151007652283, -0.023961368948221207, 0.01634451001882553, 0.024402158334851265, 0.01231568492949009, 0.008524887263774872, -0.00420293677598238, -0.04217483103275299, -0.006620672531425953, -0.044537466019392014, -0.02068188786506653, -0.023802684620022774, -0.00045484062866307795, 0.001687125419266522, -0.02362636849284172, -0.04986221343278885, 0.02362636849284172, -0.02859848365187645, -0.04249219968914986, -0.028457431122660637, -0.018742410466074944, 0.052401166409254074, 0.023220840841531754, 0.035157445818185806, -0.029956119135022163, 0.08674755692481995, 0.06809330731630325, 0.08872230350971222, -0.011645683087408543, 0.03744955733418465, -0.026535585522651672, -0.04640641808509827, 0.006611856631934643, 0.013065028935670853, 0.07052647322416306, 0.07623911648988724, 0.0017444281838834286, -0.005382051225751638, 0.07630964368581772, -0.016132930293679237, 0.024225842207670212, -0.03311217948794365, 0.03663850203156471, 0.043444305658340454, -0.006739685777574778, -0.001857931725680828, 0.028915852308273315, -0.010605418123304844, 0.02140478417277336, -0.011187261901795864, -0.051413796842098236, -0.013955425471067429, 0.02348531410098076, 0.02704690210521221, -0.026764795184135437, -0.05536327883601189, -0.018848199397325516, 0.036250606179237366, -0.007123173680156469, 0.06368540227413177, -0.025442425161600113, 0.06015907973051071, 0.06731751561164856, 0.016485562548041344, -0.019782675430178642, 0.034452181309461594, 0.00617106631398201, -0.060300134122371674, -0.08547808229923248, 0.018072407692670822, -0.015233717858791351, -0.008771729655563831, 0.026341637596488, 0.026271110400557518, -0.03253033384680748, 0.039635878056287766, -0.05776118114590645, 0.01683819480240345, 0.02814006246626377, 0.0002307262475369498, 0.01685582660138607, -0.040200088173151016, -0.0348929725587368, -0.04675905033946037, -0.11792025715112686, 0.02255083993077278, 0.054658014327287674, 0.04330325499176979, -0.007361200638115406, 0.03182506933808327, 0.03970640152692795, -0.0506027415394783, 0.0492980033159256, 0.02246268093585968, 0.04587746784090996, 0.05321222171187401, 0.0041500418446958065, -0.08519597351551056, -0.014554900117218494, 0.02142241597175598, -0.07154910266399384, -0.03198375552892685, -0.023661630228161812, -0.06523698568344116, 0.023785052821040154, 0.02025872841477394, 0.004601852037012577, -0.02184557355940342, -0.007625674828886986, -0.02812243066728115, 0.01638858951628208, -0.04534852132201195, -0.013100291602313519, -0.04422009736299515, 0.034557972103357315, 0.007872517220675945, 0.0015945594059303403, 0.04989747703075409, 0.012923975475132465, -0.06647119671106339, -0.011407656595110893, -0.006506066769361496, 0.049791689962148666, 0.008837847970426083, -0.08590124547481537, 0.004227180499583483, -0.04256272688508034, -0.019430043175816536, 0.014272795058786869, -0.002631518989801407, -0.025001633912324905, 0.034452181309461594, -0.022004259750247, -0.0043550096452236176, -0.023785052821040154, 0.018971620127558708, -0.04605378583073616, 0.012183448299765587, -0.027364270761609077, -0.009750284254550934, -0.003054677741602063, -0.001924050273373723, -0.06731751561164856, 0.02641216292977333, -0.00116148276720196, 0.008295675739645958, 0.03268902003765106, -0.0005978220142424107, 0.03216006979346275, 0.005783170461654663, -0.009961863979697227, 0.014360953122377396, -0.06798751652240753, -0.020029516890645027, 0.05324748530983925, 0.004540141671895981, -0.03896587714552879, 0.00009332360059488565, 0.07017383724451065, -0.07172542065382004, -0.03529850021004677, -0.01737595908343792, 0.060829080641269684, 0.08413808047771454, 0.0560685433447361, 0.006603040732443333, 0.01622108928859234, -0.02630637399852276, -0.0014546085149049759, 0.03744955733418465, -0.019888464361429214, 0.010199890471994877, 0.01092278677970171, 0.03833113610744476, 0.018654251471161842, 0.014722401276230812, 0.026041898876428604, -0.08237491548061371, 0.0022744787856936455, -0.002206156263127923, 0.03409954905509949, 0.03475191816687584, -0.053071171045303345, -0.04221009463071823, -0.004822247661650181, -0.023855578154325485, 0.05335327610373497, 0.02967401221394539, -0.045207466930150986, -0.01802833005785942, -0.07856649160385132, 0.0004333521064836532, 0.0528595894575119, -0.06752909719944, -0.020946361124515533, 0.035122182220220566, -0.024278737604618073, 0.029867960140109062, 0.08533702790737152, 0.01570977084338665, -0.002166484948247671, 0.0368853434920311, -0.021686889231204987, -0.03720271214842796, -0.04534852132201195, 0.03878955915570259, 0.02812243066728115, -0.0046547469682991505, -0.009468179196119308, 0.025530582293868065, 0.023291366174817085, 0.054799068719148636, 0.020082412287592888, -0.06788172572851181, 0.009468179196119308, -0.035086918622255325, 0.011434104293584824, -0.03466375917196274, -0.0031538556795567274, -0.0031031647231429815, 0.03716744855046272, 0.04055272042751312, -0.057514335960149765, 0.02073478326201439, -0.01149581465870142, -0.03921271860599518, 0.017755039036273956, -0.05000326782464981, 0.0026337229646742344, 0.009071467444300652, -0.04619484022259712, 0.0219161007553339, 0.023749789223074913, 0.01964162290096283, 0.021052151918411255, 0.01740240678191185, -0.03464612737298012, -0.003808429464697838, -0.015304244123399258, 0.06347382068634033, -0.030132435262203217, 0.010825813747942448, 0.01732306368649006, 0.0325479656457901, -0.006550145801156759, 0.028545590117573738, -0.026077162474393845, 0.022815313190221786, -0.026782426983118057, 0.013840819709002972, -0.049156948924064636, -0.058572232723236084, -0.04337377846240997, 0.036744292825460434, -0.054799068719148636, -0.014149373397231102, -0.031031647697091103, -0.011733842082321644, 0.023132681846618652, 0.02470189705491066, -0.027311375364661217, -0.06573066860437393, -0.02198662795126438, -0.01067594438791275, 0.030432172119617462, -0.007396463770419359, 0.0027813876513391733, 0.03783745318651199, 0.02085820399224758, 0.03829587250947952, -0.009662126190960407, 0.011293050833046436, 0.0015581941697746515, 0.02018820308148861, -0.0654485672712326, 0.0417516715824604, -0.04101114347577095, 0.022921103984117508, -0.007378831971436739, 0.07652121782302856, 0.030978752300143242, -0.005434946157038212, 0.001581335673108697, 0.007630082778632641, 0.02461373805999756, -0.05617433413863182, -0.011398840695619583, -0.004888365976512432, -0.020346887409687042, 0.029991382732987404, 0.02459610626101494, 0.036285869777202606, -0.024472685530781746, 0.04443167522549629, -0.029991382732987404, -0.0562448613345623, 0.023132681846618652, 0.0180106982588768, -0.0368853434920311, 0.04538378491997719, 0.010631865821778774, -0.023238472640514374, 0.012950423173606396, -0.026130057871341705, -0.0001787956280168146, -0.01372621487826109, -0.019482938572764397, 0.03522797301411629, -0.003398494329303503, 0.013752661645412445, 0.02013530768454075, -0.014211083762347698, -0.03886008635163307, -0.007008567918092012, 0.008873111568391323, -0.02914506383240223, 0.027628745883703232, 0.014334505423903465, 0.028386903926730156, -0.00986489001661539, -0.03864850476384163, -0.022286364808678627, 0.03878955915570259, -0.017772670835256577, 0.02572453022003174, 0.029056906700134277, 0.06594225019216537, 0.00783725455403328, 0.026094794273376465, -0.007396463770419359, 0.01041147019714117, -0.026711901649832726, -0.03586271032691002, -0.057479072362184525, 0.008908375166356564, -0.04605378583073616, -0.01907741092145443, -0.0007124275434762239, -0.05000326782464981, 0.07017383724451065, -0.037872716784477234, -0.026535585522651672, -0.042950622737407684, 0.10261601209640503, -0.06167539954185486, -0.05427011847496033, 0.04982695356011391, 0.04563062638044357, 0.0380137674510479, -0.04379693791270256, -0.016529642045497894, 0.0023758604656904936, 0.006796988658607006, -0.0594538152217865, 0.003175895195454359, -0.06668277829885483, 0.020540835335850716, -0.016035957261919975, 0.011451736092567444, 0.018795304000377655, 0.012932791374623775, 0.023273736238479614, -0.06160487234592438, -0.022074785083532333, -0.0029709276277571917, 0.07482858747243881, -0.054658014327287674, 0.059242237359285355, -0.0026844139210879803, 0.031137436628341675, -0.0111960768699646, 0.008859887719154358, 0.027752166613936424, 0.045242730528116226, 0.03154296427965164, -0.06185171380639076, 0.018777672201395035, 0.0229563657194376, -0.01962399110198021, 0.02069951966404915, 0.002580828033387661, 0.049721162766218185, 0.012923975475132465, 0.0068763308227062225, 0.0047737606801092625, -0.0213518887758255, -0.026817690581083298, 0.06724698841571808, -0.0071319895796477795, 0.0035219157580286264, -0.04111693426966667, -0.05166063830256462, 0.02810479886829853, -0.04559536278247833, 0.004348397720605135, -0.03309454768896103, 0.010332128033041954, 0.0022810904774814844, 0.040129560977220535, 0.04986221343278885, 0.05931276082992554, -0.025495318695902824, 0.07687385380268097, -0.017085038125514984, 0.01206002663820982, -0.08308017998933792, 0.0001643321884330362, 0.026112426072359085, 0.0336763896048069, -0.026852954179048538, -0.027258481830358505, -0.05793749541044235, 0.03857798129320145, 0.025407161563634872, 0.0028673417400568724, 0.0019725372549146414, 0.056985389441251755, 0.00013478545588441193, 0.029867960140109062, 0.03942429646849632, 0.006814620457589626, -0.03554534167051315, -0.04788747429847717, 0.04210430383682251, 0.04087008908390999, 0.0009620251366868615, -0.018372146412730217, 0.013197265565395355, -0.03974166512489319, -0.028810063377022743, 0.07313594967126846, -0.060300134122371674, 0.04414957016706467, -0.016626615077257156, -0.000006499937171611236, -0.0007454868173226714, 0.02695874311029911, 0.008745282888412476, -0.003696027910336852, 0.010887524113059044, 0.04284483194351196, -0.02466663345694542, -0.016106482595205307, -0.06629488617181778, -0.04213956743478775, -0.02750532329082489, 0.06798751652240753, 0.02018820308148861, -0.03833113610744476, 0.04809905216097832, -0.019994255155324936, 0.013796741142868996, -0.021016888320446014, -0.0061181713826954365, -0.05508117377758026, 0.029286116361618042, -0.0560685433447361, -0.03826060891151428, 0.07130226492881775, -0.019430043175816536, 0.033464811742305756, -0.0014546085149049759, 0.02189846895635128, -0.006744093727320433, -0.026641374453902245, -0.06781119853258133, -0.001995678758248687, -0.029021643102169037, 0.01916556805372238, 0.0073215290904045105, 0.014669505879282951, 0.018160566687583923, 0.005135208833962679, 0.049121685326099396, -0.012395027093589306, -0.0023648408241569996, -0.017208458855748177, -0.020911099389195442, 0.02133425697684288, 0.02300926111638546, 0.07898964732885361, 0.00563330203294754, 0.04450220242142677, 0.018618987873196602, -0.0010948132257908583, 0.015119112096726894, -0.00929186213761568, 0.009891337715089321, 0.022586101666092873, -0.01964162290096283, -0.020100044086575508, 0.049615371972322464, 0.03365875780582428, 0.059171710163354874, -0.035580605268478394, -0.016600167378783226, 0.009265415370464325, -0.00901416502892971, 0.03878955915570259, -0.050779059529304504, 0.06551909446716309, -0.019835570827126503, -0.03646218404173851, 0.04936853051185608, 0.044643256813287735, -0.014193451963365078, -0.058678023517131805, 0.010799366049468517, -0.01858372427523136, 0.040129560977220535, -0.03145480528473854, 0.012395027093589306, -0.03607428818941116, -0.08040017634630203, 0.004253627732396126, -0.03871903195977211, 0.05635065212845802, -0.01258015912026167, -0.0017301024636253715, 0.04203377664089203, 0.011090287938714027, -0.0748991146683693, -0.029004011303186417, 0.014228715561330318, 0.04869852960109711, -0.03381744399666786, -0.005258630029857159, -0.037872716784477234, -0.0019504977390170097, 0.004348397720605135, 0.04883958026766777, 0.008300083689391613, 0.020558467134833336, 0.04679431393742561, 0.00984725821763277, 0.013029765337705612, 0.007449358701705933, 0.008956861682236195, -0.05409380421042442, 0.009926600381731987, 0.03646218404173851, 0.026059530675411224, -0.02646505832672119, 0.0029577037785202265, 0.06968015432357788, 0.0017433261964470148, 0.006638303864747286, 0.018689515069127083, 0.03998851031064987, 0.005073498003184795, 0.009723837487399578, -0.030467435717582703, 0.004447575658559799, -0.008485215716063976, -0.0026138874236494303, 0.009212519973516464, 0.014933980070054531, -0.027258481830358505, -0.012289237231016159, -0.023679262027144432, -0.014272795058786869, 0.029515327885746956, 0.01676766760647297, 0.047393787652254105, -0.026835322380065918, -0.05331801250576973, -0.02189846895635128, 0.034610867500305176, -0.0359332375228405, 0.05345906689763069, -0.026852954179048538, -0.013488187454640865, -0.025407161563634872, 0.024578474462032318, 0.06216908246278763, 0.08272755146026611, 0.019324252381920815, 0.10825813561677933, 0.05670328438282013, 0.03314744308590889, -0.06410856544971466, 0.008591005578637123, 0.02302689291536808, -0.0246490016579628, -0.019888464361429214, -0.03988271951675415, -0.02812243066728115, -0.0025830320082604885, 0.029938487336039543, -0.011583972722291946, 0.01914793625473976, -0.036109551787376404, 0.017755039036273956, 0.018195830285549164, -0.019817939028143883, 0.07574543356895447, 0.0011934401700273156, 0.0015262368833646178, -0.023873209953308105, 0.04548957571387291, 0.019817939028143883, 0.003592442022636533, 0.030555592849850655, 0.01572740264236927, -0.033376652747392654, -0.036709029227495193, -0.021052151918411255, -0.05818433687090874, 0.0028673417400568724, -0.00492803705856204, 0.03811955824494362, -0.03291822969913483, 0.01261542271822691, -0.055927492678165436, -0.01958872750401497, 0.004998563788831234, -0.05959486961364746, 0.017049774527549744, -0.037379030138254166, 0.016194641590118408 ]
39,914
lerc._lerc
getLercDataRanges
null
def getLercDataRanges(lercBlob, nDepth, nBands, printInfo = False): global lercDll nBytes = len(lercBlob) len0 = nDepth * nBands; cpBytes = ct.cast(lercBlob, ct.c_char_p) mins = ct.create_string_buffer(len0 * 8) maxs = ct.create_string_buffer(len0 * 8) cpMins = ct.cast(mins, ct.POINTER(ct.c_double)) cpMaxs = ct.cast(maxs, ct.POINTER(ct.c_double)) if printInfo: start = timer() result = lercDll.lerc_getDataRanges(cpBytes, nBytes, nDepth, nBands, cpMins, cpMaxs) if result > 0: print('Error in getLercDataRanges(): lercDLL.lerc_getDataRanges() failed with error code = ', result) return (result) if printInfo: end = timer() print('time lerc_getDataRanges() = ', (end - start)) print('data ranges per band and depth:') for i in range(nBands): for j in range(nDepth): print('band', i, 'depth', j, ': [', cpMins[i * nDepth + j], ',', cpMaxs[i * nDepth + j], ']') npMins = np.frombuffer(mins, 'd') npMaxs = np.frombuffer(maxs, 'd') npMins.shape = (nBands, nDepth) npMaxs.shape = (nBands, nDepth) return (result, npMins, npMaxs)
(lercBlob, nDepth, nBands, printInfo=False)
[ -0.00024780715466476977, 0.01981305330991745, -0.061558693647384644, 0.006994468625634909, -0.024033693596720695, 0.035479187965393066, -0.021508682519197464, -0.04198524355888367, -0.01738019473850727, -0.01937071606516838, -0.025139538571238518, -0.0037921261973679066, -0.0629962906241417, -0.02276197262108326, -0.02823590487241745, -0.02082674391567707, -0.08397048711776733, -0.01563848927617073, -0.021158497780561447, -0.003994864411652088, -0.03415217623114586, -0.01619141176342964, 0.0004671042552217841, 0.051274336874485016, -0.028051597997546196, 0.04209582507610321, 0.015039489604532719, -0.025950491428375244, -0.01728804036974907, 0.07490255683660507, -0.044233791530132294, -0.03619798645377159, -0.04858344793319702, -0.011021587066352367, -0.04471299424767494, 0.01364796794950962, 0.05978934466838837, -0.004939440172165632, -0.08551866561174393, 0.025028955191373825, -0.042280133813619614, -0.05363347381353378, 0.03855712339282036, 0.007363083306699991, 0.021527113392949104, -0.05484990403056145, -0.007367691025137901, -0.08839386701583862, -0.009556342847645283, 0.008846758864820004, 0.031405992805957794, -0.043459702283144, -0.025084245949983597, -0.027074767276644707, 0.007657975424081087, 0.013970506377518177, 0.0003576716990210116, 0.08463399112224579, 0.02915744110941887, 0.0027369658928364515, -0.019960498437285423, -0.03203263878822327, -0.0039395722560584545, -0.009897311218082905, -0.03925749287009239, -0.025102676823735237, -0.044233791530132294, -0.015214581973850727, 0.0037898223381489515, 0.022577665746212006, 0.006040677428245544, 0.04106370359659195, 0.01728804036974907, 0.01839388534426689, -0.05197470635175705, 0.03398629650473595, -0.012035277672111988, 0.05400208756327629, -0.01937071606516838, 0.01937071606516838, -0.012468400411307812, 0.06347548961639404, 0.06904157996177673, -0.007252498995512724, 0.030834639444947243, -0.06812003999948502, -0.005036201793700457, 0.03308318927884102, 0.033396512269973755, 0.03680620342493057, -0.028936272487044334, -0.023499201983213425, -0.009722218848764896, -0.009989464655518532, -0.013740122318267822, -0.020550282672047615, -0.05164295434951782, 0.06196417286992073, 0.01555555034428835, -0.03730383142828941, 0.0218220055103302, -0.021692989394068718, 0.019204838201403618, 0.009565557353198528, -0.02674301341176033, 0.0297656562179327, 0.006575169041752815, 0.0044487216509878635, -0.03896259889006615, 0.024383878335356712, -0.037930477410554886, 0.016495518386363983, 0.044860437512397766, -0.026097938418388367, -0.013712476007640362, 0.01583201251924038, -0.0034027767833322287, 0.01782253198325634, -0.030502887442708015, -0.030889932066202164, 0.010828063823282719, 0.0028959312476217747, -0.016854917630553246, 0.020089514553546906, -0.06705106049776077, 0.046814098954200745, 0.03577408194541931, 0.036879923194646835, -0.05787254497408867, 0.0068193762563169, 0.05698787048459053, 0.0028498542960733175, -0.017776455730199814, 0.019665606319904327, 0.06192731112241745, -0.03457608073949814, 0.02132437378168106, 0.0055015780963003635, 0.04570825397968292, -0.045855697244405746, -0.005533831659704447, 0.020476559177041054, 0.04161662608385086, 0.015362028032541275, -0.018098993226885796, 0.032917313277721405, 0.06100577488541603, 0.017048440873622894, 0.02630067616701126, -0.00963006541132927, -0.025563446804881096, 0.02077145129442215, -0.030484456568956375, -0.012311738915741444, 0.038409676402807236, -0.030023686587810516, -0.02877039648592472, -0.04113742709159851, -0.004962478764355183, -0.023536063730716705, -0.10262239724397659, 0.030484456568956375, -0.029857810586690903, -0.08603473007678986, 0.005768823903053999, -0.021084774285554886, -0.07681935280561447, -0.05636122450232506, -0.038409676402807236, 0.02626381441950798, 0.03420746698975563, 0.026116369292140007, -0.02869667299091816, 0.010192203335464, 0.06922588497400284, -0.021103205159306526, 0.004796601831912994, 0.028051597997546196, -0.05676669999957085, 0.013408368453383446, 0.0015884999884292483, -0.010090834461152554, 0.036419156938791275, 0.02971036359667778, -0.009358211420476437, -0.01192469336092472, 0.03525801748037338, -0.07176932692527771, -0.005487754940986633, -0.04504474624991417, -0.002898234874010086, 0.003156265476718545, -0.022172188386321068, -0.00013895054871682078, 0.03629014268517494, -0.02633753791451454, 0.013251706957817078, 0.0752343088388443, -0.028917841613292694, 0.0012198850745335221, -0.006607423070818186, 0.046814098954200745, -0.010090834461152554, -0.02318587899208069, 0.0005753848818130791, -0.0032438114285469055, -0.0405845046043396, 0.04692468047142029, 0.024899939075112343, 0.014938120730221272, 0.03369140625, -0.027388090267777443, 0.02469720132648945, -0.012947600334882736, 0.014246967621147633, 0.007054368499666452, -0.07328064739704132, -0.015131643041968346, 0.028604520484805107, -0.02337018772959709, 0.026374399662017822, -0.061558693647384644, -0.059273283928632736, -0.016642965376377106, -0.059273283928632736, 0.015896519646048546, 0.027461813762784004, 0.030097410082817078, 0.0287151038646698, 0.003808253211900592, -0.054296981543302536, -0.019223269075155258, -0.04696154221892357, -0.04054764285683632, 0.007114268373697996, 0.048730894923210144, -0.00801276694983244, 0.05337544530630112, 0.05156923085451126, -0.03896259889006615, -0.02126908302307129, 0.004497102461755276, 0.019702468067407608, -0.011049233376979828, 0.00008905794675229117, -0.09989465028047562, 0.01010926440358162, 0.052232738584280014, -0.02630067616701126, 0.000499358051456511, -0.023923110216856003, -0.058646637946367264, 0.005432462785393, 0.023996833711862564, -0.02525012381374836, -0.018946807831525803, -0.03509214147925377, 0.025028955191373825, 0.05897838994860649, -0.0405845046043396, 0.01143627893179655, -0.03728540241718292, -0.00025414273841306567, 0.024586616083979607, -0.004377302248030901, 0.011602154932916164, 0.02924959547817707, -0.036013681441545486, 0.013251706957817078, 0.036898355931043625, -0.008164821192622185, 0.023536063730716705, -0.06587149202823639, 0.001109300646930933, -0.03907318413257599, 0.06587149202823639, 0.1209794208407402, -0.0830858051776886, -0.0034235112834721804, 0.0016864133067429066, 0.019978929311037064, 0.02123222127556801, -0.014458920806646347, -0.012790938839316368, 0.005022378638386726, -0.06001051142811775, -0.0004408980312291533, -0.05238018184900284, -0.020052652806043625, 0.02619009092450142, -0.015325166285037994, -0.03210636228322983, -0.044749852269887924, 0.016836486756801605, 0.09119533747434616, 0.009574772790074348, 0.08802524954080582, -0.06233278661966324, -0.008593335747718811, 0.004008687566965818, -0.05713531747460365, -0.0685255154967308, 0.1091100201010704, 0.04062136635184288, -0.016255918890237808, -0.03171931579709053, -0.000646804051939398, -0.038852013647556305, -0.045818839222192764, -0.008206290192902088, 0.019038962200284004, 0.04497102275490761, 0.06177986413240433, -0.07302261888980865, 0.014901258982717991, -0.013694045133888721, 0.015997888520359993, 0.0924486294388771, -0.029139012098312378, 0.026153231039643288, -0.005238940007984638, -0.00017077238589990884, 0.06487622857093811, 0.015288304537534714, 0.049726154655218124, 0.015288304537534714, 0.013454445637762547, 0.024383878335356712, 0.039368074387311935, 0.004437202587723732, -0.02279883436858654, -0.04463927075266838, -0.0015631577698513865, 0.026097938418388367, 0.07530803233385086, 0.009491834789514542, 0.01138098631054163, -0.005801077466458082, -0.030337009578943253, -0.02930488809943199, 0.05090572312474251, -0.014117952436208725, -0.006791730411350727, -0.010072403587400913, 0.03422589600086212, 0.035884663462638855, 0.03863084688782692, 0.04047391936182976, -0.04047391936182976, 0.10785673558712006, -0.012892307713627815, 0.01972089894115925, -0.058278024196624756, 0.0934070274233818, -0.004619205836206675, 0.0476619116961956, 0.04803052544593811, -0.01739862561225891, 0.0476619116961956, -0.0009376642410643399, 0.020015791058540344, 0.01067140232771635, 0.050721414387226105, -0.047367021441459656, 0.03571878746151924, -0.017665870487689972, -0.007289360277354717, 0.004425683058798313, 0.04117428883910179, 0.02084517478942871, -0.03477881848812103, 0.018080562353134155, 0.01979462243616581, 0.007386121898889542, -0.009722218848764896, -0.055734578520059586, -0.010321218520402908, -0.025434430688619614, -0.04121115058660507, 0.0287151038646698, -0.004612294491380453, 0.02080831304192543, 0.04065822809934616, -0.010321218520402908, 0.009805157780647278, -0.01189704705029726, -0.04419693350791931, 0.015822796151041985, -0.028880979865789413, -0.008961950428783894, 0.028880979865789413, 0.022467080503702164, 0.011749600991606712, 0.02471563220024109, -0.05507107079029083, 0.0065152691677212715, 0.02427329309284687, 0.023904679343104362, 0.02337018772959709, -0.0455608069896698, -0.0666087195277214, -0.013537383638322353, -0.06915216147899628, 0.04707212746143341, 0.007386121898889542, 0.036345433443784714, 0.05050024762749672, -0.0436440110206604, -0.01830173283815384, -0.059236422181129456, -0.038446538150310516, 0.007422983646392822, 0.03074248693883419, 0.003934964537620544, 0.009422719478607178, 0.03382042050361633, -0.04257502406835556, 0.011583724990487099, 0.0035294881090521812, 0.008676274679601192, 0.01830173283815384, -0.045339636504650116, -0.03168245404958725, 0.04917323216795921, 0.016338856890797615, -0.007298575714230537, 0.006091361865401268, 0.03678777068853378, -0.0365666039288044, 0.008017375133931637, 0.026927322149276733, 0.007252498995512724, -0.006178908050060272, -0.09525009989738464, -0.028014736250042915, -0.003082542447373271, -0.03748814016580582, 0.07018428295850754, 0.07822009176015854, -0.020660867914557457, 0.02924959547817707, 0.03911004588007927, 0.04357028752565384, -0.04014216735959053, -0.012044493108987808, 0.005432462785393, -0.008362951688468456, 0.006234200205653906, -0.05160609260201454, -0.06764084100723267, -0.012293308041989803, -0.021121636033058167, 0.021656127646565437, -0.00008574617095291615, -0.025415999814867973, 0.025895200669765472, -0.07309634238481522, 0.03702737018465996, -0.02276197262108326, 0.03951552137732506, 0.03306476026773453, -0.005160609260201454, 0.04570825397968292, -0.016246704384684563, -0.002619470003992319, 0.056176915764808655, 0.05695100873708725, -0.018006840720772743, -0.011178248561918736, -0.022080035880208015, -0.006409292109310627, -0.008091097697615623, -0.02818061225116253, 0.002304995199665427, 0.030078979209065437, 0.016467873007059097, -0.006432330701500177, 0.02473406307399273, 0.010828063823282719, -0.003527184249833226, -0.04791994392871857, -0.005211293697357178, 0.005192862823605537, 0.019002100452780724, -0.04456554725766182, -0.015260658226907253, -0.05042652413249016, 0.03706423193216324, -0.06236964836716652, -0.07748286426067352, -0.03973669186234474, 0.040363337844610214, -0.06085832789540291, -0.011482355184853077, 0.0169378574937582, 0.03018956445157528, 0.04946812614798546, -0.036013681441545486, 0.026613999158143997, 0.008906658738851547, -0.01972089894115925, -0.014422059990465641, 0.002046964829787612, -0.03966296836733818, 0.02534227818250656, 0.05134806036949158, 0.04946812614798546, 0.018965238705277443, -0.029470764100551605, -0.03852026164531708, -0.04309108853340149, -0.030355440452694893, 0.00030497126863338053, 0.043385978788137436, -0.059752482920885086, -0.006146654020994902, 0.015140858478844166, 0.01629278063774109, -0.06447075307369232, 0.030078979209065437, 0.042796194553375244, 0.038446538150310516, 0.052822522819042206, 0.015481827780604362, 0.05945758894085884, -0.009146258234977722, -0.002658635377883911, 0.004642244428396225, -0.037856753915548325, 0.012698784470558167, 0.009777511470019817, -0.00545550137758255, 0.04637175798416138, -0.023020002990961075, 0.006377038545906544, 0.03221694752573967, 0.030042117461562157, -0.008478143252432346, -0.004338137339800596, 0.017223533242940903, 0.011574509553611279, -0.006487622857093811, 0.08338069915771484, -0.01138098631054163, 0.0009969882667064667, 0.0034626766573637724, 0.009081751108169556, 0.018909946084022522, 0.10417058318853378, 0.035939957946538925, 0.126729816198349, -0.005552262533456087, 0.01711294800043106, -0.021140066906809807, -0.03973669186234474, 0.003190823132172227, -0.020716160535812378, -0.05304368957877159, -0.02969193458557129, -0.06189044937491417, 0.04006844386458397, 0.043349117040634155, -0.018753284588456154, 0.03402315825223923, -0.05650867149233818, 0.025968922302126884, 0.05444442853331566, 0.05989992991089821, -0.049763016402721405, -0.0063632153905928135, -0.0604897104203701, 0.04010530561208725, 0.012919954024255276, -0.02473406307399273, 0.031995777040719986, 0.026503413915634155, -0.019481299445033073, -0.12031591683626175, -0.023056864738464355, -0.03826222941279411, 0.02281726524233818, -0.03356239199638367, -0.022964710369706154, -0.053338583558797836, 0.0251764003187418, 0.08205368369817734, -0.055660855025053024, 0.016845703125, 0.030982086434960365, -0.03070562519133091, 0.0352211594581604, 0.00005655215500155464, -0.061558693647384644, -0.04991046339273453, 0.014007368125021458, 0.010441018268465996, -0.0641390010714531, -0.005736569873988628, -0.05462873354554176, 0.0016864133067429066, -0.022006312385201454, -0.009021850302815437, -0.06454447656869888, 0.04449182376265526, -0.012827799655497074, -0.0101461261510849, 0.10195889323949814, -0.052269600331783295, 0.022024743258953094, 0.03206950053572655, 0.010487095452845097, -0.0011715043801814318, 0.0021460300777107477, -0.02572932280600071, 0.011804893612861633, -0.040842536836862564, -0.005598339252173901, -0.0017359460471197963, 0.07704052329063416, 0.04943126440048218, 0.027037905529141426, 0.05484990403056145, 0.041358597576618195, 0.015205366536974907, -0.0338757149875164, -0.028604520484805107, -0.002942007966339588, 0.018237223848700523, 0.0566561184823513, -0.020107945427298546, 0.04176407307386398, 0.028088457882404327, 0.01983148418366909, -0.025600308552384377, -0.002932792529463768, 0.0039027107413858175, 0.04349656403064728, -0.02469720132648945, -0.00631253095343709, 0.02171142026782036, 0.023591356351971626, 0.012754077091813087, 0.027424952015280724, -0.027848858386278152, -0.004930224735289812, 0.030078979209065437, 0.04220641031861305, -0.011215109378099442, 0.0342627577483654, 0.0009601267520338297, -0.017887040972709656, 0.045339636504650116, 0.02821747399866581, -0.03133226931095123, -0.0650973990559578, 0.02722221426665783, 0.0012072139652445912, 0.025950491428375244, 0.003674630308523774, -0.009219980798661709, 0.0014422059757634997, -0.029544487595558167, 0.025010524317622185, -0.04895206540822983, 0.016624534502625465, -0.009261450730264187, 0.0026978005189448595, 0.055255379527807236, 0.029931534081697464, 0.035958386957645416, -0.013076615519821644, -0.01067140232771635, -0.02025539055466652, 0.039331212639808655, 0.012330169789493084, 0.020660867914557457, -0.05801999196410179, -0.024365447461605072, 0.00027458934346213937, -0.028991565108299255, -0.028917841613292694, 0.06646127253770828, -0.03218008577823639, 0.008146390318870544, 0.03730383142828941, 0.04062136635184288, -0.009169296361505985, -0.03818850964307785, 0.08109528571367264, 0.023609787225723267, 0.030097410082817078, 0.030871501192450523, 0.02528698556125164, 0.0037921261973679066, -0.0066673229448497295, 0.007874536328017712, 0.0005822964012622833, -0.010247495025396347, -0.010026326403021812, 0.0057227471843361855, 0.008561082184314728, -0.031922053545713425, -0.03280673176050186, 0.03286202251911163, 0.024936800822615623, -0.025968922302126884, -0.006036069709807634, -0.03332279250025749, 0.00420221034437418, 0.019702468067407608, 0.009528696537017822, 0.005238940007984638, -0.020015791058540344, -0.024125847965478897, -0.06273826211690903, -0.0465192049741745, -0.021619265899062157, 0.0725434198975563, -0.009482619352638721, 0.0016829576343297958, 0.021527113392949104, 0.06535542756319046, 0.04847286641597748, 0.03457608073949814, 0.016145333647727966, 0.06535542756319046, 0.04419693350791931, 0.04552394524216652, -0.03571878746151924, -0.0038335954304784536, -0.0005825844127684832, -0.047809358686208725, 0.02075302042067051, -0.04043705761432648, 0.002531923819333315, -0.023996833711862564, 0.01990520767867565, -0.016375718638300896, 0.025121107697486877, -0.00596234668046236, 0.00010504086094442755, -0.023683510720729828, -0.03112953156232834, 0.006713399663567543, 0.00015248563431669027, 0.0202922523021698, -0.007948259823024273, 0.01636650413274765, 0.008620982058346272, -0.03966296836733818, 0.048767756670713425, -0.0453764982521534, -0.017444701865315437, -0.00047372779226861894, -0.044233791530132294, -0.041874658316373825, 0.014081090688705444, -0.023443911224603653, -0.012855445966124535, 0.001970937941223383, 0.02978408709168434, 0.025600308552384377, -0.020568713545799255, -0.0051053171046078205, -0.04762504994869232, 0.006146654020994902, -0.03472352772951126, -0.02174828201532364 ]
39,915
lerc._lerc
getLercDatatype
null
def getLercDatatype(npDtype): switcher = { np.dtype('b'): 0, # char or int8 np.dtype('B'): 1, # byte or uint8 np.dtype('h'): 2, # short or int16 np.dtype('H'): 3, # ushort or uint16 np.dtype('i'): 4, # int or int32 np.dtype('I'): 5, # uint or uint32 np.dtype('f'): 6, # float or float32 np.dtype('d'): 7 # double or float64 } return switcher.get(npDtype, -1)
(npDtype)
[ -0.02289343811571598, 0.014354804530739784, 0.05080752447247505, 0.006814996711909771, 0.012790272943675518, -0.032103847712278366, 0.027578195556998253, 0.002868309151381254, -0.02704784646630287, -0.05010038986802101, -0.031785640865564346, -0.012348313815891743, -0.04932254180312157, -0.011296453885734081, 0.025014838203787804, 0.004081484861671925, -0.05349462851881981, 0.04532724246382713, -0.020772038027644157, -0.018986526876688004, 0.002071679336950183, 0.05664137378334999, 0.033111512660980225, -0.018208680674433708, -0.03730127960443497, 0.0012860986171290278, 0.031219933182001114, -0.02257522940635681, -0.03047744184732437, -0.007075752131640911, -0.05922240763902664, -0.018968848511576653, -0.022133270278573036, 0.009917543269693851, -0.045362599194049835, 0.004609624855220318, 0.009608172811567783, -0.010527445934712887, 0.006430492736399174, 0.02068364806473255, -0.029027819633483887, -0.023812711238861084, -0.01212733518332243, -0.032598841935396194, -0.020895786583423615, -0.02634071372449398, -0.05649994686245918, -0.05918705090880394, -0.05063074082136154, 0.05780814215540886, 0.008379529230296612, -0.01618451252579689, 0.01720101572573185, -0.04451403766870499, -0.05285821110010147, -0.010129683651030064, -0.00718182185664773, -0.008070157840847969, -0.10465572029352188, 0.04564544931054115, -0.04684757813811302, 0.018632961437106133, -0.02853282541036606, -0.01126109715551138, -0.0064349123276770115, -0.0020087002776563168, 0.011711894534528255, 0.01367418933659792, -0.01214501354843378, 0.03394239395856857, -0.023193970322608948, -0.0141957001760602, -0.07587539404630661, -0.01789047010242939, 0.08902807533740997, -0.007645878009498119, 0.03592236712574959, -0.03282866254448891, 0.006655891425907612, 0.08803808689117432, 0.004817345179617405, 0.024360740557312965, 0.046211156994104385, 0.03510916605591774, -0.0025036935694515705, -0.02890407107770443, 0.013011251576244831, 0.06254593282938004, 0.022150948643684387, -0.054979611188173294, -0.0007336507551372051, -0.07827965170145035, -0.0058426884934306145, 0.02064829133450985, -0.00936951581388712, -0.01599888876080513, 0.013523923233151436, 0.06898085027933121, 0.022999508306384087, -0.02959352545440197, 0.00015178504690993577, -0.010739586316049099, 0.06473805010318756, -0.012277601286768913, -0.03740734979510307, 0.010827978141605854, 0.045185815542936325, 0.05706565082073212, -0.05837384983897209, -0.01514149084687233, -0.04833255708217621, -0.05614637956023216, -0.034667208790779114, -0.023512180894613266, -0.03814983740448952, 0.00921041052788496, 0.03291705250740051, 0.04384225979447365, -0.011482075788080692, 0.0326872356235981, -0.05763135850429535, 0.0757339671254158, -0.025333048775792122, -0.002737931441515684, -0.01255161501467228, 0.029505133628845215, 0.03171492740511894, -0.0029368128161877394, 0.02078971639275551, 0.06261664628982544, 0.011269936338067055, 0.05812635272741318, -0.0516207255423069, 0.058267779648303986, -0.018968848511576653, 0.019675983116030693, -0.007968507707118988, -0.006271387916058302, 0.020931143313646317, 0.047590065747499466, -0.0010098746279254556, -0.02492644637823105, 0.07863321900367737, -0.019835086539387703, 0.055509958416223526, 0.07948177307844162, 0.043983686715364456, -0.003076029708608985, -0.036594144999980927, 0.04352404922246933, -0.016255225986242294, -0.00023368543770629913, 0.04246335104107857, 0.043771546334028244, 0.05922240763902664, -0.028126224875450134, -0.023158613592386246, -0.09235160052776337, -0.03302312269806862, -0.031591176986694336, 0.020170975476503372, -0.013912846334278584, -0.02100185677409172, -0.05918705090880394, 0.006063667591661215, -0.004591946490108967, 0.012268762104213238, -0.0344020314514637, 0.015972372144460678, 0.023635929450392723, -0.013523923233151436, 0.02513858675956726, 0.01454042736440897, 0.02204487845301628, 0.05451997369527817, 0.030053162947297096, -0.006280227098613977, 0.0015965743223205209, -0.025775006040930748, -0.027507483959197998, 0.07290543615818024, 0.053600698709487915, -0.03977624326944351, 0.03988231346011162, 0.01946384273469448, 0.04695364832878113, -0.007274633273482323, -0.03010619804263115, -0.02975263074040413, 0.03182099759578705, 0.01912795379757881, 0.05872741714119911, -0.012215727008879185, -0.017430834472179413, 0.03995302692055702, 0.016644148156046867, 0.013302943669259548, 0.023653607815504074, -0.011738412082195282, 0.052257146686315536, 0.05038324370980263, 0.0688040629029274, 0.012693041935563087, 0.04684757813811302, -0.0361698642373085, -0.051337871700525284, -0.03236902505159378, 0.011809125542640686, 0.00679731834679842, -0.026570530608296394, 0.02771962247788906, 0.003723498433828354, 0.012295279651880264, -0.007946410216391087, 0.040165167301893234, -0.06491483002901077, -0.06325306743383408, 0.014239896088838577, -0.0516560822725296, 0.010456732474267483, 0.03560416027903557, -0.005215107463300228, 0.03938732296228409, 0.05271678417921066, -0.006359779741615057, -0.00529024051502347, -0.01514149084687233, 0.033977750688791275, 0.046494010835886, 0.08075461536645889, -0.021549886092543602, -0.01075726468116045, -0.023335397243499756, 0.019835086539387703, 0.055297818034887314, 0.004848282318562269, -0.011552789248526096, 0.022433802485466003, -0.010439054109156132, 0.011075474321842194, -0.017669491469860077, -0.0005784129025414586, -0.0007723220624029636, -0.002284924266859889, 0.011676537804305553, -0.02047150768339634, 0.04066016152501106, 0.01791698858141899, -0.032245274633169174, 0.017342442646622658, -0.05628780648112297, -0.07990605384111404, 0.04606973007321358, 0.010686551220715046, 0.035551123321056366, -0.008649123832583427, -0.007234856951981783, -0.0038980720564723015, -0.01683861017227173, -0.03687699884176254, -0.029116211459040642, 0.04401904344558716, 0.006063667591661215, 0.017501547932624817, -0.03733663633465767, -0.045185815542936325, 0.045362599194049835, -0.028851035982370377, 0.060495249927043915, -0.016767896711826324, 0.04624651372432709, 0.04515045881271362, -0.05420176312327385, -0.013064286671578884, 0.004178715404123068, -0.04111979901790619, 0.035745587199926376, 0.03800841048359871, 0.05490889772772789, 0.007252535317093134, 0.0005800702492706478, -0.01942848600447178, -0.039846956729888916, 0.020259367302060127, -0.07679466903209686, 0.05985882878303528, -0.010023613460361958, -0.07679466903209686, -0.025421440601348877, 0.008578410372138023, 0.019746696576476097, 0.015238720923662186, 0.0004872590070590377, 0.026800349354743958, -0.016043085604906082, -0.005754296667873859, 0.045680806040763855, -0.018155645579099655, 0.06788478791713715, 0.00938719417899847, -0.06456126272678375, -0.006912227254360914, 0.05307035148143768, 0.0197820533066988, -0.03477327898144722, -0.04525652900338173, -0.000174573520780541, -0.061874158680438995, -0.0533178448677063, 0.04419582709670067, -0.006695667747408152, 0.015910498797893524, -0.03144975006580353, -0.01530943438410759, 0.026924097910523415, -0.018526891246438026, -0.012578132562339306, 0.031573500484228134, -0.0005297974566929042, 0.03601076081395149, -0.00025688824825920165, 0.02031240239739418, -0.021284710615873337, 0.0018639590125530958, -0.02665892243385315, -0.011614663526415825, 0.0012794692302122712, -0.011826803907752037, 0.040872301906347275, 0.031078506261110306, 0.016608791425824165, -0.0447261780500412, -0.009563976898789406, -0.03677092865109444, 0.03765484690666199, -0.014681854285299778, 0.03850340470671654, -0.05784349888563156, -0.0670715868473053, 0.0024130921810865402, 0.0007728745113126934, -0.000858503975905478, 0.008207165636122227, 0.03344740346074104, 0.035003095865249634, 0.00971424300223589, 0.025403762236237526, -0.014231056906282902, 0.054626043885946274, 0.08556312322616577, -0.010465571656823158, -0.03627593442797661, -0.05469675734639168, 0.017298247665166855, -0.0017136932583525777, -0.033482760190963745, 0.012967055663466454, 0.02528001368045807, 0.055509958416223526, 0.025386083871126175, 0.01075726468116045, -0.023353075608611107, 0.033977750688791275, -0.029841022565960884, -0.012410188093781471, -0.0005071471096016467, -0.014726050198078156, -0.0602831095457077, 0.026800349354743958, 0.029222281649708748, -0.018367785960435867, 0.022663621231913567, -0.017439672723412514, -0.03394239395856857, -0.0068901292979717255, -0.06141452118754387, -0.040695518255233765, 0.016255225986242294, -0.036382004618644714, -0.006775220390409231, -0.06357128173112869, -0.06972333788871765, 0.011552789248526096, 0.07615824788808823, -0.012463223189115524, -0.02492644637823105, 0.01598121039569378, 0.027931762859225273, -0.0585506334900856, -0.021090248599648476, -0.012586971744894981, -0.010050131008028984, 0.05837384983897209, -0.0035179879050701857, 0.006213933229446411, 0.0008364060195162892, -0.03687699884176254, -0.01556577067822218, 0.040341950953006744, -0.013629993423819542, -0.05296428129076958, 0.0189511701464653, -0.06289950013160706, 0.028974784538149834, 0.0010115320328623056, 0.06799086183309555, 0.03480863198637962, 0.01690048538148403, -0.04143800958991051, -0.04338262602686882, 0.027489805594086647, 0.0809667557477951, 0.01565416157245636, -0.061697375029325485, 0.05123180150985718, -0.009051305241882801, -0.027737300843000412, 0.040023740381002426, 0.0344373881816864, 0.029823344200849533, -0.04235728085041046, -0.04599901661276817, 0.003319106763228774, -0.01824403740465641, -0.004313512705266476, 0.014531588181853294, 0.017784401774406433, 0.06954655796289444, -0.02685338445007801, 0.08209817111492157, 0.0045079742558300495, 0.05890420079231262, -0.017315926030278206, -0.05091359466314316, 0.011163866147398949, 0.007712171878665686, -0.017483869567513466, 0.047413282096385956, 0.007155304308980703, -0.007690073922276497, 0.02340611070394516, 0.04111979901790619, -0.012215727008879185, -0.007261374499648809, 0.015035420656204224, -0.052080363035202026, 0.051019664853811264, 0.03411917760968208, -0.005555415526032448, -0.03284633904695511, -0.004399694502353668, -0.0672483742237091, 0.07799679785966873, 0.000011247492693655659, 0.00826461985707283, 0.01861528307199478, -0.04614044353365898, 0.003495889948680997, 0.03719520941376686, -0.028674252331256866, -0.03560416027903557, -0.02273433282971382, 0.00392017001286149, 0.009166214615106583, 0.02738373540341854, -0.028833357617259026, 0.015954693779349327, -0.0499589629471302, 0.01075726468116045, 0.03288169577717781, -0.00836185086518526, -0.010695390403270721, 0.07354185730218887, -0.03687699884176254, -0.011110831052064896, 0.030247624963521957, -0.01842082105576992, -0.01789047010242939, -0.015521574765443802, -0.026446783915162086, -0.005564254708588123, -0.04218049719929695, -0.006390716880559921, -0.05819706618785858, -0.040200524032115936, -0.022928794845938683, -0.05717172101140022, 0.12028336524963379, -0.05664137378334999, -0.020595256239175797, 0.007818241603672504, 0.08492670208215714, 0.020400794222950935, -0.026977133005857468, 0.11844481527805328, 0.03807912394404411, -0.004622883629053831, -0.02858586050570011, 0.011658859439194202, 0.05073681101202965, 0.01704191043972969, -0.013744902797043324, -0.023653607815504074, -0.0499236062169075, 0.02565125748515129, -0.04681222140789032, 0.03044208511710167, 0.06731908768415451, 0.01599888876080513, 0.0037522257771342993, -0.04288763180375099, 0.0689101368188858, 0.0069785211235284805, 0.0026163929142057896, -0.040341950953006744, 0.05077216774225235, 0.030424408614635468, 0.007721011061221361, 0.029381386935710907, 0.0377962701022625, 0.032103847712278366, 0.005573093891143799, -0.009899865835905075, -0.04271084815263748, 0.005847108084708452, 0.025686614215373993, -0.002775497967377305, -0.016414331272244453, 0.014124986715614796, 0.08216888457536697, 0.00919273216277361, -0.011155026964843273, 0.042958345264196396, 0.029734952375292778, -0.02752516232430935, -0.02375967614352703, -0.02015329711139202, 0.034667208790779114, 0.012984734028577805, -0.05883348733186722, -0.017289407551288605, -0.055333174765110016, 0.062050942331552505, 0.0010955040343105793, 0.025757327675819397, 0.028957106173038483, -0.0481911301612854, 0.01671486161649227, -0.013948203064501286, -0.012136174365878105, 0.007986186072230339, 0.004742212127894163, -0.004667079541832209, 0.016944680362939835, -0.03991767019033432, 0.007354185916483402, -0.02754283882677555, 0.060318466275930405, 0.010262271389365196, -0.05147929862141609, -0.03426060453057289, -0.05706565082073212, 0.014045434072613716, 0.013311782851815224, -0.06289950013160706, -0.03251045197248459, -0.03496773913502693, -0.0008828116697259247, -0.020170975476503372, -0.00800386443734169, -0.0038273585960268974, -0.03747806325554848, 0.011791447177529335, -0.02909853309392929, 0.010173879563808441, 0.035038452595472336, -0.032934729009866714, -0.05010038986802101, 0.0006209513521753252, -0.011862159706652164, -0.03357115015387535, 0.04090765863656998, -0.01789047010242939, -0.012905181385576725, -0.014239896088838577, -0.026941776275634766, 0.009015948511660099, -0.017589939758181572, -0.029681917279958725, -0.04426654055714607, 0.0002593742683529854, -0.03942267969250679, 0.03061886876821518, -0.017483869567513466, 0.0005460946704261005, 0.04076623171567917, -0.01333830039948225, 0.0672130137681961, 0.06003561243414879, 0.029876379296183586, 0.026128573343157768, 0.004207442980259657, -0.046564724296331406, 0.013727224431931973, 0.05561602860689163, -0.020595256239175797, 0.03510916605591774, -0.028108546510338783, 0.03751341998577118, -0.05805563926696777, 0.05010038986802101, 0.03044208511710167, 0.011172705329954624, -0.013028929941356182, -0.0073144095949828625, -0.029823344200849533, 0.015742553398013115, -0.06639981269836426, -0.02618160843849182, -0.02870960906147957, -0.027419092133641243, 0.041720859706401825, 0.06845049560070038, -0.03903375566005707, -0.01620219089090824, 0.006081345956772566, -0.031396716833114624, -0.01048325002193451, 0.02768426574766636, -0.0360991507768631, 0.0026362810749560595, 0.03044208511710167, 0.03390703722834587, -0.062369152903556824, -0.08881593495607376, 0.016573434695601463, 0.016971196979284286, -0.055121034383773804, 0.014893993735313416, 0.07138510048389435, -0.0037455963902175426, 0.04239263758063316, 0.03256348520517349, -0.05303499475121498, 0.048085059970617294, -0.04734256863594055, 0.03113154135644436, -0.03839733451604843, -0.005374212749302387, -0.008322074078023434, -0.04783756285905838, 0.04027123749256134, -0.0043113031424582005, -0.06586945801973343, -0.036063794046640396, 0.031414393335580826, 0.020029548555612564, 0.0361168310046196, -0.010995921678841114, -0.043806903064250946, -0.03921053931117058, -0.019729018211364746, 0.010863334871828556, -0.0034097081515938044, 0.05787885561585426, -0.017430834472179413, 0.0189158134162426, -0.007539808284491301, 0.03733663633465767, -0.10423143953084946, -0.029045497998595238, 0.025757327675819397, 0.007172982674092054, -0.011658859439194202, 0.009837991558015347, -0.023971816524863243, 0.008794969879090786, -0.007796144112944603, 0.060495249927043915, 0.0031622115056961775, 0.039528749883174896, 0.047271858900785446, -0.007411640137434006, 0.0567828007042408, -0.0011479866225272417, -0.03162653371691704, 0.032280631363391876, 0.003816309617832303, -0.019393129274249077, -0.02665892243385315, 0.027454448863863945, 0.02444913238286972, 0.0031953584402799606, -0.008136452175676823, -0.041261225938797, -0.04214514046907425, 0.03404846414923668, 0.06268735975027084, -0.04631722718477249, 0.026093216612935066, 0.003131274366751313, -0.0550503246486187, -0.015742553398013115, 0.029292995110154152, 0.013736063614487648, 0.025704292580485344, 0.018526891246438026, -0.018809745088219643, 0.02681802771985531, 0.005007387138903141, -0.017598778009414673, 0.012604650110006332, 0.005917821079492569, -0.03454345837235451, -0.008070157840847969, -0.00981147401034832, -0.07269329577684402, 0.01701539382338524, -0.05706565082073212, 0.025403762236237526, 0.0006795108201913536, -0.06215701252222061, 0.03723056614398956, 0.09963507205247879, 0.02429002709686756, 0.01685628853738308, -0.016087280586361885, 0.0017192177474498749, -0.07799679785966873, 0.0031953584402799606, 0.006187415681779385, -0.03487934544682503, 0.019481521099805832, -0.0412965826690197, 0.018314750865101814, 0.036063794046640396, 0.01058048103004694, 0.035338982939720154, 0.012321796268224716, 0.0073807029984891415, -0.07202152162790298, 0.06420769542455673, -0.04005909711122513, 0.005206268280744553, 0.026764992624521255, 0.03251045197248459, 0.006324423011392355, 0.027560517191886902, 0.00679731834679842, -0.012242244556546211, 0.036594144999980927, -0.04147336632013321, -0.07142046093940735, -0.08895736187696457, 0.006222772412002087, -0.07707752287387848, 0.010226914659142494, -0.007964088581502438, 0.013727224431931973, 0.01498238556087017, 0.0024263509549200535, -0.08916950225830078, -0.02289343811571598, 0.03284633904695511, -0.041544076055288315, -0.0012750496389344335, -0.03374793380498886, -0.009820313192903996 ]
39,916
lerc._lerc
getLercShape
null
def getLercShape(npArr, nValuesPerPixel): nBands = 1 dim = npArr.ndim npShape = npArr.shape if nValuesPerPixel == 1: if dim == 2: (nRows, nCols) = npShape elif dim == 3: (nBands, nRows, nCols) = npShape # or band interleaved elif nValuesPerPixel > 1: if dim == 3: (nRows, nCols, nValpp) = npShape # or pixel interleaved elif dim == 4: (nBands, nRows, nCols, nValpp) = npShape # 4D array if nValpp != nValuesPerPixel: return (0, 0, 0) return (nBands, nRows, nCols)
(npArr, nValuesPerPixel)
[ -0.0399123840034008, -0.06765317171812057, -0.035618722438812256, 0.0028468843083828688, 0.021300295367836952, 0.0595138855278492, 0.019993528723716736, -0.01655859872698784, 0.010659481398761272, -0.008587323129177094, 0.015653196722269058, -0.018789436668157578, -0.04547547921538353, -0.03754153847694397, 0.03901631757616997, -0.0019904854707419872, -0.005530423019081354, -0.023671142756938934, -0.013534368015825748, -0.0017629681387916207, 0.0009205703972838819, -0.0020499899983406067, 0.05208398401737213, 0.004646021872758865, 0.02576196938753128, -0.011284862644970417, 0.02671404369175434, -0.0028655524365603924, -0.0007922272197902203, 0.06040995195508003, -0.09856753796339035, 0.005857114680111408, -0.007266555447131395, 0.03447996824979782, -0.0034582645166665316, 0.02221503295004368, 0.01386106014251709, 0.029570261016488075, -0.06701845675706863, -0.014598449692130089, -0.02088959701359272, -0.02152431197464466, 0.03901631757616997, 0.01625991053879261, -0.01335702184587717, -0.02176699787378311, -0.005936454050242901, -0.10543739795684814, -0.06500230729579926, 0.034610647708177567, 0.0076259165070950985, -0.02630334533751011, -0.035226695239543915, -0.016287911683321, -0.0710134282708168, 0.018136054277420044, 0.03261316195130348, 0.012703638523817062, -0.030970368534326553, -0.007999278604984283, -0.03166108950972557, 0.03276250511407852, 0.05081455409526825, 0.002713874215260148, -0.039464350789785385, -0.02443653531372547, 0.003885297104716301, 0.05480952560901642, 0.0038689624052494764, 0.05279336869716644, -0.016054561361670494, 0.020217545330524445, 0.032575823366642, -0.010342123918235302, 0.024212518706917763, 0.021710993722081184, 0.050217173993587494, 0.01743599958717823, 0.05936453863978386, 0.01963883452117443, -0.03203444927930832, 0.0599992536008358, 0.08452913165092468, 0.033639904111623764, 0.0362534373998642, -0.0042539918795228004, 0.02740476280450821, 0.0653756633400917, 0.030223645269870758, -0.005185062997043133, -0.012918321415781975, -0.03154907748103142, 0.002282174536958337, 0.022159026935696602, -0.05809510871767998, 0.012106259353458881, 0.03375191614031792, 0.023839157074689865, 0.03909099102020264, -0.035618722438812256, -0.012684970162808895, -0.10917101800441742, -0.01856542006134987, -0.03244514763355255, -0.032314471900463104, 0.07631517201662064, 0.041891202330589294, 0.04883573576807976, -0.03935234248638153, 0.04349666088819504, 0.058393798768520355, -0.0005075387889519334, -0.02615400031208992, 0.04476609081029892, -0.03548804670572281, -0.000006380696049745893, 0.004515345208346844, 0.017884034663438797, 0.006496496964246035, -0.02326044626533985, -0.02678871527314186, 0.022420380264520645, -0.024959241971373558, 0.035450711846351624, -0.0012612631544470787, 0.04028574749827385, 0.05017983540892601, -0.01672661304473877, -0.007219885475933552, 0.046147529035806656, 0.006589837372303009, 0.03668280690908432, -0.01748267002403736, -0.08333437144756317, 0.003255249001085758, 0.016222573816776276, -0.0008528985781595111, -0.07952608168125153, -0.007737924810498953, -0.0030242311768233776, -0.0029682270251214504, 0.012694303877651691, 0.0582817904651165, 0.010827494785189629, 0.01032345648854971, 0.06630907207727432, 0.09438588470220566, 0.01986285299062729, 0.059887245297431946, 0.06511431187391281, -0.015065152198076248, -0.017081305384635925, 0.03242648020386696, 0.03472265601158142, 0.04737962409853935, -0.022121692076325417, 0.01366504468023777, -0.07967542856931686, -0.007243220694363117, -0.009464723989367485, -0.012414282187819481, -0.011667558923363686, -0.03612276166677475, -0.06690645217895508, -0.021244291216135025, 0.05712436884641647, -0.0077285910956561565, -0.01695062965154648, 0.002443186938762665, -0.0065338327549397945, 0.0014782797079533339, -0.024305857717990875, -0.0769125446677208, 0.011284862644970417, -0.009819417260587215, 0.03063434176146984, -0.00011492545309010893, 0.0011655890848487616, -0.04831302911043167, 0.0034582645166665316, 0.03864295408129692, -0.03007430024445057, -0.0005378744681365788, 0.009049358777701855, 0.011014175601303577, 0.0389416441321373, 0.037037499248981476, -0.02630334533751011, 0.012264938093721867, 0.040808454155921936, -0.05641498044133186, 0.027983473613858223, -0.006295814644545317, 0.04304862394928932, 0.014598449692130089, -0.003728951793164015, 0.029644934460520744, 0.059812575578689575, -0.02348446287214756, -0.008844009600579739, 0.02977561019361019, -0.008671329356729984, -0.012834315188229084, 0.0017314656870439649, 0.008283967152237892, -0.02929024025797844, 0.02882353775203228, 0.0019986529368907213, 0.018229393288493156, 0.01864009164273739, 0.02355913445353508, -0.02968226931989193, -0.0026975395157933235, -0.004601685330271721, 0.03235180675983429, 0.0197135079652071, 0.0065851700492203236, 0.024959241971373558, -0.09961295127868652, -0.028524847701191902, -0.009334047324955463, 0.01279697846621275, 0.03276250511407852, 0.006846523378044367, -0.01743599958717823, -0.02333511784672737, 0.00677185133099556, -0.020945601165294647, 0.00249452400021255, 0.04618486389517784, -0.03406927362084389, -0.018994785845279694, -0.004141983576118946, 0.010883498936891556, -0.005717103835195303, 0.011154185980558395, 0.010426130145788193, -0.028151486068964005, -0.00677185133099556, -0.001065831515006721, 0.004403336904942989, -0.020777588710188866, 0.010790158063173294, -0.0020138206891715527, 0.033639904111623764, -0.04827569052577019, 0.045587487518787384, 0.0008814840693958104, -0.02270040288567543, -0.020777588710188866, -0.09505793452262878, -0.040808454155921936, 0.04357133060693741, 0.004797700326889753, 0.02064691297709942, -0.007490572985261679, 0.01220893394201994, 0.028226157650351524, 0.0208149254322052, -0.04278727248311043, -0.005586427170783281, 0.04443006590008736, 0.03293051943182945, 0.00990342441946268, -0.0023008426651358604, -0.011844906024634838, 0.046296872198581696, 0.014309094287455082, -0.012348944321274757, 0.06813854724168777, 0.053054723888635635, 0.03912832587957382, -0.03298652172088623, -0.043085962533950806, -0.0377095490694046, -0.03447996824979782, 0.04368333891034126, -0.00743923569098115, 0.0796007513999939, 0.03532003238797188, -0.0011725897202268243, -0.039949722588062286, -0.04043509066104889, 0.056975021958351135, 0.03700016438961029, 0.05331607535481453, 0.04136849567294121, -0.07470971345901489, -0.00919403601437807, 0.007887269370257854, 0.007835932075977325, -0.01586787961423397, -0.082288958132267, 0.027442097663879395, -0.004797700326889753, -0.02096427045762539, 0.03276250511407852, 0.016819952055811882, 0.040808454155921936, -0.020852260291576385, -0.044019367545843124, -0.0507025420665741, 0.08288633823394775, 0.005054386332631111, 0.015158492140471935, -0.008732001297175884, -0.03438663110136986, -0.017874700948596, -0.016670608893036842, 0.023577803745865822, -0.04827569052577019, 0.03171709179878235, 0.010454133152961731, -0.05051586404442787, 0.049059752374887466, 0.0062071410939097404, 0.01963883452117443, 0.01354370266199112, 0.015802541747689247, 0.03834426403045654, 0.0299996268004179, -0.03360256925225258, -0.06477828323841095, 0.017426665872335434, -0.00314324046485126, 0.003215579316020012, -0.040323082357645035, -0.018826773390173912, 0.04349666088819504, 0.02789013274013996, -0.03791489824652672, -0.03961369767785072, -0.019601499661803246, 0.01734265871345997, 0.047715649008750916, -0.041256487369537354, 0.057759083807468414, -0.0046810247004032135, -0.029234236106276512, -0.02867419272661209, -0.03496534004807472, -0.0769125446677208, -0.07736058533191681, 0.005138393025845289, 0.044019367545843124, 0.0008785671670921147, 0.011816903948783875, 0.003052233485504985, 0.017529340460896492, 0.04069644585251808, 0.016437256708741188, -0.04973180219531059, -0.008470647968351841, 0.058468472212553024, -0.015410511754453182, 0.05103857070207596, -0.028879541903734207, -0.0017454668413847685, 0.04428071901202202, 0.019732175394892693, 0.017930705100297928, -0.015998557209968567, 0.06462894380092621, -0.006426491308957338, 0.01257296185940504, 0.012227601371705532, -0.030186308547854424, -0.021710993722081184, 0.012134261429309845, 0.011872908100485802, -0.02410051040351391, -0.014430437237024307, -0.024324527010321617, -0.03440529853105545, 0.027778124436736107, -0.021561648696660995, -0.034666649997234344, 0.011956914328038692, -0.015643863007426262, -0.05040385574102402, -0.050627872347831726, -0.026135331019759178, 0.05693768709897995, 0.0019601499661803246, -0.024697888642549515, 0.034984007477760315, 0.01319834217429161, 0.05488419532775879, -0.09640204161405563, -0.03382658585906029, -0.018033379688858986, 0.01257296185940504, 0.014981145970523357, -0.07030404359102249, -0.010286119766533375, 0.03360256925225258, -0.013413025997579098, 0.0428619459271431, 0.03315453603863716, -0.009058692492544651, -0.059737902134656906, -0.07456036657094955, -0.029327575117349625, 0.013917064294219017, -0.023577803745865822, 0.017053304240107536, 0.0148784713819623, 0.06910928338766098, -0.00990342441946268, -0.04667023569345474, 0.032874513417482376, 0.008844009600579739, 0.03588007763028145, -0.07952608168125153, 0.004877039697021246, -0.005721770692616701, -0.08064616471529007, 0.0521586537361145, -0.010080770589411259, 0.0014339429326355457, -0.0345359742641449, -0.025631293654441833, 0.008979353122413158, 0.031231721863150597, 0.020124206319451332, 0.02143097296357155, -0.016857288777828217, 0.038605619221925735, 0.009688740596175194, 0.04204054921865463, -0.007775261066854, 0.01650259457528591, -0.018705429509282112, -0.04532613232731819, -0.037802889943122864, -0.06813854724168777, -0.03356523439288139, 0.0737016350030899, -0.03078368678689003, -0.04144316911697388, 0.0450647808611393, 0.06014860048890114, -0.018136054277420044, 0.005315739661455154, 0.04304862394928932, -0.02740476280450821, 0.008125288411974907, -0.013534368015825748, -0.04379534721374512, -0.02977561019361019, -0.03102637268602848, -0.04428071901202202, 0.06903461366891861, -0.015606526285409927, -0.0020523236598819494, 0.004573683254420757, -0.012442285194993019, -0.019414817914366722, 0.036085426807403564, -0.01932147704064846, 0.04241390898823738, -0.015494517982006073, -0.010267451405525208, -0.02309243194758892, 0.008652661927044392, -0.05622829869389534, 0.025724634528160095, -0.06653308868408203, -0.00247585610486567, -0.05757240206003189, 0.009399385191500187, 0.007649251725524664, 0.02703140117228031, 0.0021596651058644056, 0.01853741705417633, 0.02647135779261589, 0.0210576094686985, 0.01076215598732233, -0.026490025222301483, 0.0013977735070511699, -0.054772187024354935, 0.024623217061161995, -0.038605619221925735, -0.013674379326403141, -0.00805528275668621, 0.0005539173725992441, -0.07803263515233994, 0.04752896726131439, -0.028618188574910164, -0.029010217636823654, -0.025743301957845688, 0.0099780960008502, -0.03102637268602848, 0.009828751906752586, 0.04136849567294121, -0.015093154273927212, 0.04752896726131439, -0.026116663590073586, 0.002541194437071681, 0.04752896726131439, -0.02333511784672737, -0.014169083908200264, 0.053054723888635635, -0.04256325587630272, 0.020684247836470604, -0.0656370222568512, 0.03582407161593437, 0.004454674199223518, 0.026359349489212036, 0.018546750769019127, -0.05592960864305496, 0.054548170417547226, -0.023969832807779312, 0.0002638326841406524, -0.029122227802872658, 0.027348758652806282, 0.008246630430221558, 0.0045293462462723255, 0.01711864210665226, 0.03186643496155739, 0.03627210855484009, 0.0037849561776965857, -0.006071797572076321, 0.046446219086647034, -0.00037161176442168653, 0.01523316465318203, 0.024996578693389893, -0.030410325154662132, 0.008414643816649914, 0.010230115614831448, -0.01829473301768303, -0.02882353775203228, 0.028562184423208237, 0.04980647563934326, 0.003425595350563526, -0.005908451974391937, -0.007513907738029957, 0.04133116081357002, 0.0565643236041069, 0.002646202454343438, 0.013926398009061813, -0.041032470762729645, 0.018425408750772476, 0.02434319444000721, -0.028170153498649597, 0.023055097088217735, 0.024623217061161995, -0.005735771730542183, 0.024044504389166832, -0.07579246163368225, 0.09692474454641342, 0.02144964039325714, 0.05406280234456062, -0.03909099102020264, 0.014775796793401241, 0.10252517461776733, -0.019657503813505173, -0.03007430024445057, -0.017716022208333015, -0.03446130082011223, -0.016353251412510872, -0.03401326760649681, -0.016418589279055595, 0.012190265581011772, -0.029738273471593857, -0.013020996004343033, 0.019620167091488838, 0.01653059758245945, -0.008311969228088856, 0.005441749468445778, -0.03714950755238533, 0.008956017903983593, -0.0199561920017004, -0.006048462353646755, 0.04581150412559509, 0.005017050541937351, 0.0011947579914703965, -0.08027280867099762, -0.004461674485355616, -0.04917176067829132, -0.010006098076701164, -0.03300518915057182, -0.021860338747501373, -0.07818198204040527, -0.024473872035741806, 0.0416298508644104, -0.08049682527780533, 0.004104647319763899, -0.007835932075977325, -0.013571704737842083, 0.03901631757616997, 0.03658946603536606, 0.004195654299110174, -0.02206568792462349, -0.02512725442647934, 0.05103857070207596, -0.06205274537205696, -0.019116127863526344, 0.005782442167401314, 0.009077360853552818, -0.030372988432645798, 0.04681957885622978, -0.04737962409853935, 0.06869858503341675, 0.03455464169383049, -0.08415576815605164, 0.057460393756628036, -0.04801433905959129, -0.01464512012898922, -0.027535438537597656, 0.04737962409853935, 0.011415539309382439, 0.026434021070599556, -0.06029794365167618, 0.010827494785189629, 0.004634354263544083, -0.02598598785698414, 0.02434319444000721, 0.0036216103471815586, 0.015634529292583466, 0.014561113901436329, 0.009474057704210281, 0.0487237274646759, -0.01583987846970558, -0.008302634581923485, -0.0025388607755303383, 0.006230476312339306, -0.06242610514163971, 0.03541337326169014, -0.062202088534832, 0.05712436884641647, -0.0008365639951080084, 0.018285397440195084, -0.11932645738124847, -0.055406901985406876, -0.011807569302618504, 0.04312329739332199, -0.006253811530768871, -0.029122227802872658, 0.01947082206606865, -0.012162263505160809, 0.006692511960864067, 0.01850941590964794, -0.03849361091852188, 0.02497790940105915, -0.025183258578181267, 0.036010753363370895, -0.03242648020386696, -0.005759106948971748, 0.015111822634935379, -0.03126905858516693, -0.026994064450263977, 0.021412303671240807, -0.040248412638902664, -0.0017676351126283407, 0.07624049484729767, 0.028562184423208237, 0.0411444790661335, -0.06119401380419731, -0.022121692076325417, -0.04581150412559509, -0.039464350789785385, 0.03401326760649681, 0.0037336188834160566, 0.04513945057988167, 0.039464350789785385, 0.040883127599954605, 0.043085962533950806, 0.014262423850595951, -0.03468531742691994, -0.0005008299485780299, 0.03464798256754875, 0.015326505526900291, 0.01009010523557663, 0.011452876031398773, 0.005045052617788315, -0.032706502825021744, -0.0028562184888869524, 0.026807382702827454, -0.026210004463791847, -0.04200321063399315, 0.01653059758245945, -0.01174223143607378, 0.0815422385931015, 0.07202150672674179, -0.07780861854553223, 0.0013627709122374654, -0.015391843393445015, 0.010258117690682411, 0.011667558923363686, 0.002606532536447048, 0.03961369767785072, 0.028300831094384193, -0.031605083495378494, -0.042525917291641235, -0.015354507602751255, 0.010043434798717499, 0.03166108950972557, 0.015709200873970985, 0.011368869803845882, 0.0026345348451286554, -0.038045577704906464, -0.07818198204040527, 0.034666649997234344, -0.0023136769887059927, 0.06115667521953583, 0.026359349489212036, -0.03487199917435646, 0.017305323854088783, 0.03487199917435646, -0.08355838805437088, 0.011620888486504555, 0.03235180675983429, -0.07388831675052643, -0.10327189415693283, -0.0024221851490437984, 0.009380717761814594, 0.025967318564653397, -0.0035912746097892523, 0.007051872555166483, -0.013889062218368053, 0.060745976865291595, 0.017323991283774376, 0.03980037569999695, -0.03767221421003342, 0.0049890480004251, 0.06253811717033386, 0.020460231229662895, -0.051635947078466415, -0.015933217480778694, -0.0007239720434881747, -0.032706502825021744, 0.014617118053138256, 0.025239262729883194, 0.026023322716355324, 0.038605619221925735, 0.055332232266664505, 0.0027022066060453653, 0.015811875462532043, -0.037578873336315155, 0.03560005500912666, -0.020292218774557114, 0.008615325205028057, -0.024828564375638962, 0.013693046756088734, 0.029570261016488075, 0.003721951274201274, 0.011116850189864635, -0.012824980542063713, -0.05275603383779526, 0.043944694101810455, 0.020329555496573448, 0.00007230240589706227, -0.06675710529088974, -0.07056539505720139, -0.1391146332025528, 0.05081455409526825, -0.06765317171812057, -0.034666649997234344, 0.011816903948783875, 0.02607932686805725, -0.006860524415969849, -0.031101044267416, 0.05641498044133186, -0.013954400084912777, 0.03567472845315933, -0.030970368534326553, -0.04588617384433746 ]
39,920
lerc._lerc
test
null
def test(): fctErr = 'Error in test(): ' # data types supported by Lerc, all little endian byte order # 'b', 'B', 'h', 'H', 'i', 'I', 'f', 'd' print('\n -------- encode test 1 -------- ') nBands = 1 nRows = 256 nCols = 256 nValuesPerPixel = 3 # values or array per pixel, could be RGB values or hyper spectral image npArr = np.zeros((nRows, nCols, nValuesPerPixel), 'f', 'C') # data type float, C order #npValidMask = np.full((nRows, nCols), True) # set all pixels valid npValidMask = None # same as all pixels valid maxZErr = 0.001 # fill it with something for i in range(nRows): for j in range(nCols): for k in range(nValuesPerPixel): npArr[i][j][k] = 0.001 * i * j + k # call with buffer size 0 to only compute compressed size, optional numBytesNeeded = 0 (result, numBytesNeeded) = encode(npArr, nValuesPerPixel, False, npValidMask, maxZErr, numBytesNeeded, True) if result > 0: print(fctErr, 'encode() failed with error code = ', result) return result print('computed compressed size = ', numBytesNeeded) # encode with numBytesNeeded from above or big enough estimate (result, numBytesWritten, outBuffer) = encode(npArr, nValuesPerPixel, False, npValidMask, maxZErr, numBytesNeeded, True) if result > 0: print(fctErr, 'encode() failed with error code = ', result) return result print('num bytes written to buffer = ', numBytesWritten) # decode again (result, npArrDec, npValidMaskDec) = decode(outBuffer, True) if result > 0: print(fctErr, 'decode() failed with error code = ', result) return result # evaluate the difference to orig maxZErrFound = findMaxZError_4D(npArr, npArrDec, npValidMaskDec, nBands) print('maxZErr found = ', maxZErrFound) # find the range [zMin, zMax] in the numpy array (zMin, zMax) = findDataRange(npArrDec, False, None, nBands, True) print('data range found = ', zMin, zMax) print('\n -------- encode test 2 -------- ') nBands = 3 nRows = 256 nCols = 256 nValuesPerPixel = 1 npArr = np.zeros((nBands, nRows, nCols), 'f', 'C') # data type float, C order npValidMask = np.full((nRows, nCols), True) # set all pixels valid maxZErr = 0.001 # fill it with something for m in range(nBands): for i in range(nRows): for j in range(nCols): npArr[m][i][j] = 0.001 * i * j + m # encode nBytesBigEnough = npArr.nbytes * 2 (result, numBytesWritten, outBuffer) = encode(npArr, nValuesPerPixel, True, npValidMask, maxZErr, nBytesBigEnough, True) if result > 0: print(fctErr, 'encode() failed with error code = ', result) return result print('num bytes written to buffer = ', numBytesWritten) # decode again (result, npArrDec, npValidMaskDec) = decode(outBuffer, True) if result > 0: print(fctErr, 'decode() failed with error code = ', result) return result # evaluate the difference to orig maxZErrFound = findMaxZError_4D(npArr, npArrDec, npValidMaskDec, nBands) print('maxZErr found = ', maxZErrFound) # find the range [zMin, zMax] (zMin, zMax) = findDataRange(npArrDec, True, npValidMaskDec, nBands, True) print('data range found = ', zMin, zMax) # save compressed Lerc blob to disk #open('C:/temp/test_1_256_256_3_double.lrc', 'wb').write(outBuffer) print('\n -------- encode test 3 -------- ') # example for the new _4D() and _ma() functions in Lerc version 4.0 nBands = 3 nRows = 512 nCols = 512 nValuesPerPixel = 2 # values or array per pixel npArr = np.zeros((nBands, nRows, nCols, nValuesPerPixel), 'f', 'C') # data type float, C order npValidMask = None # same as all pixels valid, but we are going to add a noData value maxZErr = 0.01 noDataVal = -9999.0 cntInvalid = 0 # fill it with something start = timer() for m in range(nBands): for i in range(nRows): for j in range(nCols): for k in range(nValuesPerPixel): z = 0.001 * i * j + 5 * m + k # for all values at the same pixel, will get pushed into the byte mask if j == i: z = noDataVal cntInvalid += 1 # create mixed case, decoded output will use noData for this one pixel in band 0 if (m == 0 and i == 5 and j == 7 and k == 0): z = noDataVal cntInvalid += 1 npArr[m][i][j][k] = z end = timer() print('time fill test array = ', (end - start)) # prepare noData arrays npNoDataArr = np.zeros((nBands), 'd') # noData value is always type double npNoDataArr.fill(noDataVal) # noData value can vary between bands npmaNoData = np.ma.array(npNoDataArr, mask = False) # input has noData values in all 3 bands # part A, using _4D() functions: # encode using encode_4D() start = timer() nBytesBigEnough = npArr.nbytes * 2 (result, numBytesWritten, outBuffer) = encode_4D(npArr, nValuesPerPixel, npValidMask, maxZErr, nBytesBigEnough, npmaNoData, False) end = timer() if result > 0: print(fctErr, 'encode_4D() failed with error code = ', result) return result print('time encode_4D() = ', (end - start)) print('num bytes written to buffer = ', numBytesWritten) # decode using decode_4D() start = timer() (result, npArrDec, npValidMaskDec, npmaNoDataDec) = decode_4D(outBuffer, False) end = timer() if result > 0: print(fctErr, 'decode_4D() failed with error code = ', result) return result print('time decode_4D() = ', (end - start)) # evaluate the difference to orig maxZErrFound = findMaxZError_4D(npArr, npArrDec, npValidMaskDec, nBands) print('maxZErr found = ', maxZErrFound) # find the range [zMin, zMax] npmaArrDec = convert2ma(npArrDec, npValidMaskDec, nValuesPerPixel, nBands, npmaNoDataDec) (zMin, zMax) = findDataRange_ma(npmaArrDec) print('data range found = ', zMin, zMax) # part B, using _ma() functions or masked arrays: npmaArr = np.ma.array(npArr, mask = False) start = timer() (result, numBytesWritten2, outBuffer2) = encode_ma(npmaArr, nValuesPerPixel, maxZErr, nBytesBigEnough, npmaNoData, False) end = timer() if result > 0: print(fctErr, 'encode_ma() failed with error code = ', result) return result print('time encode_ma() = ', (end - start)) print('num bytes written to buffer = ', numBytesWritten2) print('lerc blob size from encode_4D() = ', numBytesWritten, ', and from encode_ma() = ', numBytesWritten2) #decode using decode_ma() start = timer() (result, npmaArrDec, nDepthDec, npmaNoDataDec2) = decode_ma(outBuffer2, False) end = timer() if result > 0: print(fctErr, 'decode_ma() failed with error code = ', result) return result print('time decode_ma() = ', (end - start)) # find the range [zMin, zMax], again (zMin, zMax) = findDataRange_ma(npmaArrDec) print('data range found for ma = ', zMin, zMax) print('number of invalid values, orig = ', cntInvalid, ', in masked array = ', np.ma.count_masked(npmaArrDec)) if False: print('\n -------- decode test on ~100 different Lerc blobs -------- ') folder = 'D:/GitHub/LercOpenSource_v2.5/testData/' listFile = folder + '_list.txt' with open(listFile, 'r') as f: lines = f.readlines() f.close() skipFirstLine = True for line in lines: if skipFirstLine: skipFirstLine = False continue fn = folder + line.
()
[ -0.0063275923021137714, 0.004545025061815977, -0.03135650232434273, 0.07459678500890732, 0.01935805380344391, -0.006332804448902607, -0.09932339191436768, -0.07042703777551651, -0.027666276320815086, -0.03058510087430477, 0.03462975472211838, 0.013249373994767666, -0.02668638527393341, 0.026519596576690674, 0.007213663775473833, 0.0031351291108876467, -0.023288041353225708, 0.03444211557507515, 0.016032680869102478, 0.027749672532081604, -0.0662572905421257, -0.01496939454227686, 0.005240852013230324, 0.053831443190574646, -0.0002620751620270312, 0.0026569112669676542, 0.031043771654367447, -0.020827891305088997, -0.05533255264163017, 0.058418165892362595, -0.0330035537481308, -0.004268779419362545, -0.01124789472669363, -0.010481704026460648, -0.012655184604227543, -0.04732663929462433, 0.04050910100340843, -0.013864411972463131, -0.1301795244216919, -0.051162805408239365, -0.02069237269461155, -0.04724324122071266, 0.03661038726568222, -0.027249302715063095, 0.02649874798953533, -0.026707235723733902, -0.02483084797859192, 0.018002886325120926, 0.005274731200188398, 0.01846155896782875, -0.0060721952468156815, -0.08964958041906357, 0.003612044034525752, 0.0218703281134367, -0.019243385642766953, 0.07234512269496918, 0.0037631974555552006, 0.0733458623290062, 0.020754920318722725, -0.03385835140943527, -0.04100947082042694, -0.028041554614901543, 0.014813029207289219, 0.0035885891411453485, -0.07972557842731476, 0.04724324122071266, -0.03671462833881378, 0.0017135057132691145, 0.003122098743915558, 0.04653438553214073, 0.03750688210129738, 0.004696178715676069, 0.03177347779273987, 0.04590892419219017, -0.003914350643754005, 0.06008606776595116, -0.030126428231596947, -0.011028982698917389, -0.012957490980625153, -0.020254550501704216, 0.05716724321246147, 0.051579780876636505, 0.08873223513364792, -0.0018672652076929808, 0.0455753430724144, -0.048827748745679855, 0.03016812540590763, 0.05858495831489563, 0.037673670798540115, -0.052413731813430786, -0.023559074848890305, 0.0047926041297614574, 0.03392089903354645, 0.04486648738384247, -0.04424102604389191, -0.014938121661543846, 0.006744567304849625, 0.0039430176839232445, 0.017669307067990303, -0.018920231610536575, 0.03166923299431801, -0.007787004113197327, -0.022641731426119804, -0.013061734847724438, -0.020066911354660988, 0.05733403190970421, -0.007760942913591862, 0.031210562214255333, -0.0578760989010334, -0.011143650859594345, 0.026832327246665955, 0.0026973055209964514, -0.01901404932141304, -0.031836025416851044, 0.002819791901856661, 0.0028979748021811247, -0.02576904185116291, 0.019733332097530365, -0.005081880372017622, 0.015719950199127197, 0.02902144566178322, 0.03513012453913689, -0.02535206638276577, -0.0035208307672291994, 0.018482407554984093, -0.007380453869700432, 0.06054473668336868, 0.01647050306200981, 0.008725197054445744, -0.015000667423009872, -0.00848543643951416, 0.056291595101356506, -0.0265821423381567, 0.033774957060813904, 0.007990279234945774, -0.015751222148537636, -0.03963345289230347, -0.05591631680727005, -0.01953526772558689, -0.043490469455718994, 0.0072084516286849976, 0.003033491550013423, 0.08322816342115402, 0.023371435701847076, -0.022954462096095085, 0.004138474818319082, 0.09890642017126083, -0.05170487239956856, 0.0083134351298213, -0.008886775001883507, -0.005319034680724144, -0.018273919820785522, -0.018169676885008812, -0.0037631974555552006, 0.05358126014471054, -0.022203907370567322, 0.029917940497398376, -0.01890980638563633, -0.052413731813430786, 0.04201021045446396, -0.044741395860910416, 0.00869392417371273, -0.038069795817136765, -0.0204317644238472, -0.015209155157208443, 0.016835356131196022, -0.018367739394307137, 0.01743997074663639, -0.02883380651473999, 0.0476602166891098, 0.044824790209531784, -0.002947490429505706, -0.08522964268922806, 0.0238301083445549, -0.011060256510972977, 0.02566479705274105, -0.04415762796998024, -0.016824932768940926, -0.04234378784894943, 0.010799647308886051, -0.022016268223524094, 0.01775270141661167, 0.006624686997383833, 0.03844507411122322, -0.019389327615499496, -0.014604541473090649, 0.05520746111869812, -0.02218305878341198, 0.062421124428510666, -0.02883380651473999, -0.025101881474256516, 0.009475751779973507, 0.0019089627312496305, 0.015699099749326706, 0.027061663568019867, -0.038903746753931046, 0.08377023041248322, 0.029584361240267754, 0.043198589235544205, 0.002720760414376855, -0.026331957429647446, 0.011372987180948257, 0.03636020049452782, -0.08410381525754929, -0.019868848845362663, -0.04486648738384247, 0.00011035172792617232, 0.014218839816749096, 0.001688747899606824, 0.03356647118926048, 0.008949321694672108, -0.005188730079680681, -0.00013755280815530568, -0.007588941138237715, 0.037069059908390045, -0.06121189892292023, 0.01191505417227745, 0.015803344547748566, 0.040238067507743835, 0.003043915843591094, -0.05149638652801514, 0.012655184604227543, -0.045241765677928925, -0.0031664022244513035, -0.01979587785899639, 0.004886423237621784, 0.04978678748011589, 0.027645427733659744, 0.043490469455718994, -0.01673111319541931, -0.01050255261361599, 0.013718469999730587, -0.05387314036488533, -0.0011518928222358227, 0.014031201601028442, 0.018263494595885277, 0.04670117422938347, 0.011310441419482231, -0.03867441043257713, -0.05858495831489563, -0.007390878163278103, -0.04109286516904831, 0.017929915338754654, 0.013666348531842232, 0.012290331535041332, -0.01773185282945633, 0.031627535820007324, 0.019139142706990242, 0.010137699544429779, 0.02595668099820614, -0.051079411059617996, -0.06062813475728035, -0.014906848780810833, 0.022954462096095085, -0.005691705737262964, -0.05487387999892235, 0.06404732912778854, -0.046159107238054276, 0.06500636786222458, -0.04050910100340843, -0.0034634966868907213, -0.0631299838423729, 0.008396829478442669, 0.02854192443192005, -0.018242646008729935, -0.01175868883728981, 0.0348382443189621, -0.0008359041530638933, 0.026206865906715393, 0.04090522602200508, 0.06980157643556595, -0.007693184539675713, -0.06996836513280869, -0.026227714493870735, -0.02576904185116291, 0.023871805518865585, 0.06550674140453339, -0.02000436559319496, 0.016699839383363724, 0.029876243323087692, -0.004503327421844006, -0.0037319243419915438, -0.045241765677928925, -0.001963690621778369, 0.031627535820007324, 0.035234369337558746, -0.014093747362494469, -0.08848205208778381, -0.005722979083657265, -0.0474100336432457, -0.011185348965227604, -0.01399992872029543, -0.05633329227566719, 0.006051346659660339, 0.04324028640985489, -0.0229127649217844, 0.031148016452789307, -0.05921041965484619, 0.016804084181785583, 0.001149286748841405, -0.06821707636117935, -0.03871610760688782, 0.14477364718914032, -0.008438527584075928, 0.0016262016724795103, -0.048911143094301224, -0.04874435067176819, -0.0289380494505167, -0.027958158403635025, 0.00475351233035326, -0.009136959910392761, 0.03831998258829117, 0.019139142706990242, -0.037986401468515396, 0.009746785275638103, -0.0052695185877382755, 0.07497206330299377, 0.05808458849787712, 0.03627680614590645, 0.06054473668336868, 0.030314067378640175, 0.003202887484803796, -0.03679802641272545, -0.03679802641272545, 0.025101881474256516, -0.05283070355653763, 0.03944581374526024, -0.02084873989224434, 0.037465184926986694, -0.0638805404305458, -0.04201021045446396, -0.022516638040542603, -0.014500298537313938, 0.0012489698128774762, 0.05845986306667328, -0.01762760803103447, -0.014375206083059311, -0.06934290379285812, 0.014093747362494469, -0.023121250793337822, -0.003093431703746319, -0.009564358741044998, -0.042781613767147064, 0.022850217297673225, -0.02964690700173378, -0.038611866533756256, 0.011289591901004314, -0.00809452310204506, -0.0877314954996109, 0.0877314954996109, 0.00025588570861145854, 0.014500298537313938, 0.015282126143574715, 0.11149905622005463, 0.01309300772845745, 0.011206197552382946, -0.013874836266040802, -0.01717936061322689, 0.01963951252400875, 0.013624651357531548, -0.008626165799796581, 0.011883781291544437, 0.02330888994038105, -0.01313470583409071, -0.011258319020271301, -0.02993878908455372, -0.020369218662381172, 0.0027728823479264975, 0.03200281411409378, -0.03544285520911217, -0.00845937617123127, -0.03346222639083862, -0.01584504172205925, -0.028187494724988937, -0.011477231048047543, -0.015365520492196083, -0.023746713995933533, 0.037256695330142975, -0.04069674015045166, 0.017168937250971794, -0.007776579819619656, 0.0340459905564785, -0.04653438553214073, -0.03212790563702583, 0.0662572905421257, 0.008047613315284252, 0.04078013449907303, 0.04082183167338371, -0.06454769521951675, -0.03135650232434273, 0.00496200006455183, 0.0009857544209808111, 0.028500227257609367, -0.04486648738384247, -0.03515097498893738, 0.07238682359457016, -0.04201021045446396, 0.08110159635543823, -0.02810410037636757, -0.018951503559947014, -0.06584031879901886, -0.05845986306667328, 0.046367596834897995, 0.04311519116163254, 0.0369231179356575, -0.04109286516904831, 0.09040012955665588, -0.010137699544429779, -0.0031820388976484537, 0.03888290002942085, -0.04536685720086098, 0.0476602166891098, -0.006536079570651054, -0.031544141471385956, -0.0623377300798893, 0.006682021077722311, -0.031627535820007324, -0.05950229987502098, -0.005832434631884098, 0.03189856931567192, 0.004724845290184021, -0.007489909417927265, 0.0429484024643898, 0.06271300464868546, -0.005173093173652887, -0.06021115928888321, -0.02710336074233055, 0.037569429725408554, -0.07234512269496918, 0.020160730928182602, 0.030751889571547508, -0.016303714364767075, -0.001981933368369937, -0.07363774627447128, -0.05012036859989166, 0.010976861231029034, -0.029375873506069183, 0.019055748358368874, 0.04532516002655029, -0.002328543458133936, 0.03185687214136124, 0.03496333584189415, 0.02472660504281521, -0.011331290006637573, -0.005681281443685293, 0.002256876090541482, -0.007776579819619656, 0.02841683104634285, -0.08468757569789886, 0.0218703281134367, -0.021703537553548813, -0.0024510298389941454, -0.010106426663696766, -0.028395982459187508, -0.010841344483196735, 0.034296177327632904, 0.02270427718758583, 0.012196511961519718, -0.002316816244274378, -0.02008775994181633, 0.051579780876636505, -0.006066983100026846, 0.00029269675724208355, 0.009423630312085152, 0.021640991792082787, 0.08606359362602234, 0.00024806743022054434, -0.002699911827221513, 0.006087831687182188, -0.02629026025533676, -0.020567281171679497, 0.0029266418423503637, -0.024559814482927322, 0.01631413772702217, 0.05716724321246147, -0.008949321694672108, -0.0356096476316452, 0.006661172024905682, -0.021171893924474716, -0.012530092149972916, -0.01549061294645071, -0.03435872122645378, 0.029000597074627876, -0.026457050815224648, 0.02166184037923813, -0.04886944591999054, 0.012519667856395245, 0.015918012708425522, 0.018138403072953224, -0.0214742012321949, -0.04878604784607887, -0.011122802272439003, -0.043198589235544205, 0.06775840371847153, -0.013979079201817513, 0.01502151694148779, -0.0018034159438684583, -0.05775100737810135, 0.003958654124289751, -0.05896023288369179, -0.000643053324893117, -0.03027236834168434, -0.0827694907784462, -0.06838386505842209, 0.02228730171918869, 0.005712554324418306, -0.020890437066555023, -0.025685647502541542, 0.022850217297673225, -0.0024119385052472353, -0.10924739390611649, -0.008360343985259533, 0.003122098743915558, -0.01736699976027012, -0.015052789822220802, 0.06458939611911774, 0.0021369957830756903, -0.0004322855675127357, -0.050328854471445084, 0.006025285460054874, -0.042698219418525696, 0.0366729311645031, 0.015428067184984684, 0.02034837007522583, -0.00019073339353781193, 0.04486648738384247, -0.023871805518865585, -0.04982848837971687, 0.018086280673742294, 0.02854192443192005, -0.05470709130167961, -0.00224514864385128, 0.05349786579608917, 0.05574952811002731, 0.04528346285223961, -0.004362598527222872, 0.04928641766309738, -0.012373726814985275, -0.01042436994612217, -0.019180839881300926, 0.004167141858488321, -0.004297446459531784, 0.03540115803480148, -0.0712192952632904, -0.0073700291104614735, 0.030731040984392166, 0.01467751245945692, 0.07005176693201065, 0.07184475660324097, -0.03016812540590763, 0.05020376294851303, 0.020942557603120804, 0.0712192952632904, -0.022370697930455208, 0.04982848837971687, -0.0061086807399988174, 0.044741395860910416, -0.01880556344985962, -0.019128717482089996, 0.008245676755905151, 0.010413945652544498, 0.04069674015045166, -0.019087020307779312, -0.021171893924474716, -0.09131747484207153, 0.016585171222686768, 0.00941320601850748, 0.005613523069769144, -0.026561293751001358, -0.00485254405066371, -0.008792955428361893, 0.027979008853435516, 0.010195033624768257, -0.013968654908239841, -0.009548722766339779, 0.031836025416851044, -0.0751805528998375, -0.06529825180768967, 0.033691562712192535, -0.06567353010177612, 0.026707235723733902, 0.0010554674081504345, 0.015553159639239311, -0.060586437582969666, 0.027478639036417007, 0.00845937617123127, -0.014875574968755245, 0.03016812540590763, 0.009355871938169003, 0.0032810703851282597, 0.00019920319027733058, -0.002699911827221513, -0.03919563069939613, -0.027874764055013657, 0.014906848780810833, 0.06525655090808868, -0.04857756197452545, 0.00012517387222032994, 0.017262756824493408, 0.0041801719926297665, -0.02914653718471527, -0.03631850332021713, -0.06367205083370209, -0.01206099521368742, 0.038695260882377625, -0.03792385756969452, 0.01977502927184105, -0.012769852764904499, 0.043907444924116135, -0.042573124170303345, 0.0387578047811985, 0.0439908392727375, -0.008084098808467388, -0.08126838505268097, 0.011018558405339718, -0.0746384859085083, -0.03596407547593117, 0.00547279417514801, 0.05041225254535675, 0.04653438553214073, 0.04415762796998024, 0.03292015939950943, -0.015157033689320087, -0.024080293253064156, -0.014927697367966175, 0.00394822983071208, -0.010570310987532139, 0.03923732787370682, 0.020369218662381172, -0.009762422181665897, 0.035005033016204834, 0.014917273074388504, 0.021390806883573532, -0.016480928286910057, -0.008527134545147419, -0.019243385642766953, 0.0269782692193985, 0.01864919625222683, 0.0004974378971382976, 0.048702653497457504, 0.014990243129432201, 0.009579995647072792, 0.03857016563415527, -0.028896352276206017, -0.026748932898044586, 0.054748788475990295, 0.0429484024643898, -0.010262791998684406, -0.01906617172062397, 0.030626798048615456, -0.0069426302798092365, 0.016491353511810303, 0.018711743876338005, -0.04142644628882408, 0.035838983952999115, 0.005029758438467979, 0.013562104664742947, 0.049119628965854645, -0.008188342675566673, -0.008303009904921055, -0.01920168846845627, -0.014750482514500618, 0.01089346595108509, -0.034713149070739746, 0.013635075651109219, -0.012384151108562946, 0.043073493987321854, 0.016647718846797943, 0.03892459720373154, 0.007119844201952219, -0.023746713995933533, -0.02535206638276577, 0.008787743747234344, 0.029792848974466324, 0.03346222639083862, 0.028979746624827385, -0.03098122589290142, -0.038799501955509186, 0.0439908392727375, -0.009814543649554253, 0.023454831913113594, 0.048827748745679855, -0.017325302585959435, 0.036047469824552536, 0.05295579880475998, 0.005212184973061085, -0.06175396591424942, -0.0289380494505167, -0.004109807778149843, 0.006655959878116846, 0.021255290135741234, 0.02155759558081627, 0.0322113037109375, -0.038695260882377625, -0.024101141840219498, 0.022662580013275146, 0.0036276807077229023, 0.048202283680438995, -0.029772000387310982, -0.01702299527823925, -0.0019767209887504578, -0.0474100336432457, -0.03888290002942085, 0.007573304697871208, 0.02155759558081627, 0.08193554729223251, -0.03729839250445366, -0.02320464700460434, -0.033900048583745956, -0.028812957927584648, 0.012832398526370525, 0.0578760989010334, -0.016981298103928566, -0.031231410801410675, -0.09640456736087799, 0.035338614135980606, -0.02218305878341198, 0.05049564689397812, 0.01838858798146248, 0.0437406562268734, -0.012050570920109749, 0.09807246923446655, 0.0013890472473576665, 0.04436611756682396, -0.062421124428510666, 0.023142101243138313, -0.037882160395383835, -0.012175663374364376, -0.008620953187346458, 0.005029758438467979, 0.008527134545147419, 0.06146208196878433, 0.012947066687047482, 0.0369231179356575, -0.02904229424893856, -0.05408162996172905, 0.022349847480654716, -0.01946229860186577, 0.007667123805731535, -0.00026028347201645374, 0.01517788227647543, -0.040425706654787064, -0.02781221829354763, 0.0166268702596426, -0.009647754020988941, 0.063380166888237, 0.03477569669485092, 0.04017551988363266, -0.029375873506069183, -0.00657256506383419, 0.03381665423512459, -0.04715984687209129, -0.06821707636117935, 0.008673075586557388, -0.007343968376517296, -0.03621425852179527, 0.0066872332245111465, 0.019889697432518005, 0.013749743811786175, -0.0055144913494586945, -0.0033514348324388266, -0.0035208307672291994, -0.004943757317960262, 0.02862531878054142, -0.05374804884195328, 0.05850156024098396, -0.017012571915984154, 0.012894945219159126 ]
39,921
tldextract.tldextract
TLDExtract
A callable for extracting, subdomain, domain, and suffix components from a URL.
class TLDExtract: """A callable for extracting, subdomain, domain, and suffix components from a URL.""" # TODO: too-many-arguments def __init__( self, cache_dir: str | None = get_cache_dir(), suffix_list_urls: Sequence[str] = PUBLIC_SUFFIX_LIST_URLS, fallback_to_snapshot: bool = True, include_psl_private_domains: bool = False, extra_suffixes: Sequence[str] = (), cache_fetch_timeout: str | float | None = CACHE_TIMEOUT, ) -> None: """Construct a callable for extracting subdomain, domain, and suffix components from a URL. Upon calling it, it first checks for a JSON in `cache_dir`. By default, the `cache_dir` will live in the tldextract directory. You can disable the caching functionality of this module by setting `cache_dir` to `None`. If the cached version does not exist (such as on the first run), HTTP request the URLs in `suffix_list_urls` in order, until one returns public suffix list data. To disable HTTP requests, set this to an empty sequence. The default list of URLs point to the latest version of the Mozilla Public Suffix List and its mirror, but any similar document could be specified. Local files can be specified by using the `file://` protocol. (See `urllib2` documentation.) If there is no cached version loaded and no data is found from the `suffix_list_urls`, the module will fall back to the included TLD set snapshot. If you do not want this behavior, you may set `fallback_to_snapshot` to False, and an exception will be raised instead. The Public Suffix List includes a list of "private domains" as TLDs, such as blogspot.com. These do not fit `tldextract`'s definition of a suffix, so these domains are excluded by default. If you'd like them included instead, set `include_psl_private_domains` to True. You can pass additional suffixes in `extra_suffixes` argument without changing list URL cache_fetch_timeout is passed unmodified to the underlying request object per the requests documentation here: http://docs.python-requests.org/en/master/user/advanced/#timeouts cache_fetch_timeout can also be set to a single value with the environment variable TLDEXTRACT_CACHE_TIMEOUT, like so: TLDEXTRACT_CACHE_TIMEOUT="1.2" When set this way, the same timeout value will be used for both connect and read timeouts """ suffix_list_urls = suffix_list_urls or () self.suffix_list_urls = tuple( url.strip() for url in suffix_list_urls if url.strip() ) self.fallback_to_snapshot = fallback_to_snapshot if not (self.suffix_list_urls or cache_dir or self.fallback_to_snapshot): raise ValueError( "The arguments you have provided disable all ways for tldextract " "to obtain data. Please provide a suffix list data, a cache_dir, " "or set `fallback_to_snapshot` to `True`." ) self.include_psl_private_domains = include_psl_private_domains self.extra_suffixes = extra_suffixes self._extractor: _PublicSuffixListTLDExtractor | None = None self.cache_fetch_timeout = ( float(cache_fetch_timeout) if isinstance(cache_fetch_timeout, str) else cache_fetch_timeout ) self._cache = DiskCache(cache_dir) def __call__( self, url: str, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Alias for `extract_str`.""" return self.extract_str(url, include_psl_private_domains, session=session) def extract_str( self, url: str, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Take a string URL and splits it into its subdomain, domain, and suffix components. I.e. its effective TLD, gTLD, ccTLD, etc. components. >>> extractor = TLDExtract() >>> extractor.extract_str('http://forums.news.cnn.com/') ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_str('http://forums.bbc.co.uk/') ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False) Allows configuring the HTTP request via the optional `session` parameter. For example, if you need to use a HTTP proxy. See also `requests.Session`. >>> import requests >>> session = requests.Session() >>> # customize your session here >>> with session: ... extractor.extract_str("http://forums.news.cnn.com/", session=session) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) """ return self._extract_netloc( lenient_netloc(url), include_psl_private_domains, session=session ) def extract_urllib( self, url: urllib.parse.ParseResult | urllib.parse.SplitResult, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Take the output of urllib.parse URL parsing methods and further splits the parsed URL. Splits the parsed URL into its subdomain, domain, and suffix components, i.e. its effective TLD, gTLD, ccTLD, etc. components. This method is like `extract_str` but faster, as the string's domain name has already been parsed. >>> extractor = TLDExtract() >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.news.cnn.com/')) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.bbc.co.uk/')) ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False) """ return self._extract_netloc( url.netloc, include_psl_private_domains, session=session ) def _extract_netloc( self, netloc: str, include_psl_private_domains: bool | None, session: requests.Session | None = None, ) -> ExtractResult: netloc_with_ascii_dots = ( netloc.replace("\u3002", "\u002e") .replace("\uff0e", "\u002e") .replace("\uff61", "\u002e") ) min_num_ipv6_chars = 4 if ( len(netloc_with_ascii_dots) >= min_num_ipv6_chars and netloc_with_ascii_dots[0] == "[" and netloc_with_ascii_dots[-1] == "]" ): if looks_like_ipv6(netloc_with_ascii_dots[1:-1]): return ExtractResult("", netloc_with_ascii_dots, "", is_private=False) labels = netloc_with_ascii_dots.split(".") suffix_index, is_private = self._get_tld_extractor( session=session ).suffix_index(labels, include_psl_private_domains=include_psl_private_domains) num_ipv4_labels = 4 if suffix_index == len(labels) == num_ipv4_labels and looks_like_ip( netloc_with_ascii_dots ): return ExtractResult("", netloc_with_ascii_dots, "", is_private) suffix = ".".join(labels[suffix_index:]) if suffix_index != len(labels) else "" subdomain = ".".join(labels[: suffix_index - 1]) if suffix_index >= 2 else "" domain = labels[suffix_index - 1] if suffix_index else "" return ExtractResult(subdomain, domain, suffix, is_private) def update( self, fetch_now: bool = False, session: requests.Session | None = None ) -> None: """Force fetch the latest suffix list definitions.""" self._extractor = None self._cache.clear() if fetch_now: self._get_tld_extractor(session=session) @property def tlds(self, session: requests.Session | None = None) -> list[str]: """Returns the list o
(cache_dir: 'str | None' = '/root/.cache/python-tldextract/3.10.14.final__local__ecb11d__tldextract-5.1.2', suffix_list_urls: 'Sequence[str]' = ('https://publicsuffix.org/list/public_suffix_list.dat', 'https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat'), fallback_to_snapshot: 'bool' = True, include_psl_private_domains: 'bool' = False, extra_suffixes: 'Sequence[str]' = (), cache_fetch_timeout: 'str | float | None' = None) -> 'None'
[ 0.01746826246380806, 0.024105580523610115, -0.06167218089103699, 0.03365255147218704, -0.019487414509058, -0.005845189094543457, -0.009370940737426281, -0.011183001101016998, 0.02048145979642868, -0.03775298222899437, 0.027936793863773346, 0.0555008202791214, 0.005306748207658529, -0.00034623296232894063, 0.0074035609140992165, 0.0024229835253208876, -0.005415471736341715, 0.06519275158643723, 0.018162021413445473, -0.031270984560251236, -0.03642759099602699, 0.020408976823091507, 0.04866676405072212, 0.03659326583147049, -0.01572868414223194, -0.0006814641528762877, 0.03982390835881233, -0.03839496895670891, -0.006285260897129774, 0.017737481743097305, 0.061175160109996796, -0.015024568885564804, -0.061216577887535095, 0.020926708355545998, -0.023090826347470284, -0.024146998301148415, -0.011690378189086914, 0.025907285511493683, -0.06494424492120743, 0.009334699250757694, -0.03669681027531624, -0.03419099003076553, 0.013502438552677631, -0.03209935501217842, 0.01665024645626545, 0.031333111226558685, -0.06349459290504456, 0.02547239139676094, -0.04332377389073372, -0.04117001220583916, -0.017582163214683533, 0.008501151576638222, 0.005726110655814409, -0.052932873368263245, 0.008200867101550102, 0.06042962521314621, 0.01886613667011261, 0.11348675191402435, 0.00325394282117486, 0.03646900877356529, 0.02708771452307701, -0.00875484012067318, -0.04870818182826042, 0.05931132659316063, -0.02547239139676094, 0.016981594264507294, -0.004543094430118799, -0.02828885056078434, -0.06424012780189514, -0.02157904952764511, 0.023712104186415672, -0.024105580523610115, -0.04319952055811882, -0.025099625810980797, 0.04502193257212639, 0.010975908488035202, 0.0061765373684465885, -0.04531186446547508, 0.03110531158745289, 0.012177045457065105, -0.048956695944070816, 0.0025213526096194983, 0.02934502437710762, -0.03145736828446388, 0.07099134474992752, -0.0444420762360096, 0.07823958992958069, -0.03717312589287758, -0.024602603167295456, 0.08134597539901733, -0.07840526103973389, 0.011586831882596016, 0.028951548039913177, -0.017054077237844467, -0.04932945966720581, -0.021516922861337662, -0.0036163548938930035, -0.003763908287510276, -0.00254076742567122, -0.017571808770298958, 0.031912971287965775, 0.024706149473786354, -0.07861235737800598, 0.0015777868684381247, 0.01553194597363472, -0.0014302333584055305, -0.07600299268960953, -0.014610383659601212, -0.03452233970165253, -0.005560436751693487, -0.03419099003076553, -0.008138739503920078, 0.035226453095674515, 0.01994301937520504, 0.02820601500570774, -0.04829399660229683, -0.05926990509033203, -0.00959356501698494, -0.050613436847925186, -0.01467251218855381, 0.005063414573669434, 0.056784793734550476, -0.0943513959646225, 0.04365512356162071, -0.02992488257586956, -0.01654670014977455, 0.022987280040979385, 0.012477329932153225, 0.08010341972112656, -0.0554179847240448, 0.021724015474319458, 0.044400654733181, -0.01579081267118454, 0.03110531158745289, 0.05690905079245567, -0.021206283941864967, -0.03112602047622204, 0.04601597785949707, -0.08664754778146744, 0.01970486156642437, -0.029241478070616722, -0.023152954876422882, 0.05272578075528145, -0.025845158845186234, -0.014755348674952984, -0.024126289412379265, 0.036261916160583496, -0.039181921631097794, -0.009200089611113071, -0.029075803235173225, -0.002344029489904642, -0.042495403438806534, -0.003344545839354396, 0.0018573618726804852, -0.037980783730745316, 0.00664249574765563, -0.0249339509755373, -0.006601077038794756, 0.01916642114520073, -0.03377680480480194, -0.030049137771129608, -0.03698674216866493, -0.03176800534129143, -0.04643016308546066, -0.0013888148823753, -0.020947417244315147, 0.07886086404323578, -0.07128127664327621, -0.020295076072216034, 0.058524373918771744, 0.02942785993218422, 0.10818517953157425, -0.018690109252929688, 0.03323836624622345, -0.012290947139263153, 0.07848810404539108, 0.03669681027531624, 0.0386434830725193, -0.043406613171100616, 0.045850303024053574, 0.007828100584447384, -0.028578780591487885, -0.04481483995914459, 0.011721442453563213, 0.028433816507458687, 0.06158934533596039, -0.052435848861932755, 0.03773227334022522, -0.0018871314823627472, 0.06958311796188354, -0.03535071015357971, -0.05947699770331383, 0.03930617868900299, -0.013512792997062206, -0.007636540103703737, 0.013999461196362972, -0.05251868814229965, -0.017841028049588203, -0.006828879006206989, -0.007320723962038755, -0.06585545092821121, 0.02280089631676674, 0.0037431989330798388, -0.00677710585296154, -0.05268436297774315, -0.014475774019956589, -0.04808690398931503, 0.050737690180540085, -0.07844667881727219, 0.02725338749587536, -0.004141852259635925, 0.003794972086325288, -0.03930617868900299, 0.017344007268548012, 0.011472931131720543, -0.0611337386071682, 0.002241777488961816, 0.05616351589560509, 0.05260152369737625, -0.025803739205002785, 0.03804291412234306, -0.05388549715280533, 0.022552385926246643, 0.017654646188020706, 0.02323579229414463, -0.0032979499083012342, 0.048998113721609116, 0.03373538702726364, 0.049122367054224014, -0.06904467940330505, 0.03725596144795418, -0.04879102110862732, 0.07695561647415161, 0.022552385926246643, 0.0941028818488121, -0.044566329568624496, 0.018420888110995293, 0.03943043202161789, 0.08349974453449249, 0.003836390795186162, -0.019031811505556107, 0.025907285511493683, 0.01992230862379074, 0.014071943238377571, -0.018938619643449783, 0.0386849008500576, 0.02002585493028164, 0.024064162746071815, -0.0039735897444188595, -0.021226992830634117, -0.0012211992871016264, 0.025803739205002785, -0.00477607361972332, 0.004351533483713865, -0.0020566885359585285, 0.0002315230667591095, -0.01050995010882616, -0.0124876843765378, 0.015117760747671127, -0.030628997832536697, 0.026818493381142616, -0.05173173546791077, -0.02168259583413601, -0.004675115924328566, -0.08921549469232559, 0.015034924261271954, 0.06026395037770271, -0.04044518619775772, -0.04713428020477295, 0.02024330385029316, 0.03779440373182297, 0.04286817088723183, -0.024581894278526306, 0.009826544672250748, -0.03170587867498398, 0.03108460083603859, 0.017437197268009186, -0.03493652492761612, -0.009179379791021347, -0.009588387794792652, 0.02439551055431366, 0.01105874590575695, -0.0249753687530756, -0.061837855726480484, 0.05028208717703819, -0.02321508154273033, -0.038581352680921555, 0.04502193257212639, -0.02942785993218422, -0.009070656262338161, -0.05384407937526703, -0.06407445669174194, 0.0662282183766365, -0.011887116357684135, 0.014341163448989391, -0.010696333833038807, -0.04808690398931503, -0.04398646950721741, 0.029034385457634926, -0.0249753687530756, -0.060595300048589706, 0.03379751369357109, 0.03586843982338905, 0.027315516024827957, -0.005586323328316212, -0.018855782225728035, 0.02944857068359852, -0.009738530032336712, 0.03644829988479614, -0.0046233427710831165, 0.030608288943767548, -0.011980308219790459, -0.021703306585550308, 0.008397605270147324, 0.007947179488837719, 0.006295615341514349, 0.015459463931620121, 0.04816974326968193, -0.019829118624329567, 0.025865867733955383, -0.02439551055431366, 0.025845158845186234, 0.01736471615731716, 0.03615837171673775, 0.06490282714366913, -0.04597456008195877, 0.03539212793111801, 0.051814571022987366, 0.0138234319165349, -0.0011098870309069753, -0.03437737375497818, -0.013771658763289452, -0.02495465986430645, 0.014651802368462086, -0.011731796897947788, -0.03232715651392937, -0.0054931314662098885, -0.05483812466263771, 0.03539212793111801, -0.020419331267476082, -0.0152316614985466, -0.038519226014614105, -0.08747591823339462, 0.03385964408516884, 0.05156606063246727, -0.056867633014917374, 0.03435666486620903, 0.023442884907126427, 0.028185304254293442, -0.045104771852493286, 0.023670686408877373, -0.043489448726177216, -0.023649977520108223, 0.045684631913900375, 0.043448030948638916, -0.021972525864839554, -0.03104318305850029, -0.03926476091146469, 0.029013674706220627, -0.012259882874786854, -0.0021304653491824865, -0.017592517659068108, -0.023732813075184822, -0.021931108087301254, -0.01041158102452755, -0.08416243642568588, 0.06486140936613083, -0.0032901838421821594, 0.03771156445145607, -0.05086194723844528, 0.006362920626997948, -0.015915067866444588, 0.02603154256939888, -0.06925176829099655, 0.021371956914663315, -0.02874445542693138, 0.014113361947238445, -0.005700224079191685, -0.07306227087974548, 0.047341372817754745, -0.004136675037443638, 0.022034654393792152, 0.014030524529516697, 0.02377423271536827, 0.03168516978621483, -0.008459732867777348, 0.05032350495457649, 0.035185035318136215, 0.03700745105743408, 0.04891527444124222, 0.03781511262059212, 0.029510697349905968, 0.049039531499147415, -0.007879873737692833, -0.0023194372188299894, -0.02599012292921543, -0.07844667881727219, -0.016774501651525497, -0.004928804002702236, -0.006994552910327911, 0.03284488990902901, 0.015169533900916576, 0.034667301923036575, 0.06742935627698898, 0.011338320560753345, -0.007419093046337366, 0.08996102958917618, 0.006181714590638876, -0.030359776690602303, 0.03978249058127403, -0.045104771852493286, -0.04502193257212639, -0.012756905518472195, -0.06295615434646606, -0.04862534627318382, 0.033590421080589294, -0.038581352680921555, 0.05173173546791077, -0.005508663598448038, 0.014921022579073906, -0.006875474937260151, -0.048998113721609116, -0.010080233216285706, 0.017644289880990982, 0.004944336134940386, -0.006844411138445139, -0.014299744740128517, -0.03475014120340347, -0.04593314230442047, -0.012404847890138626, 0.01630854420363903, -0.0005193494725972414, -0.05152464285492897, 0.014465419575572014, 0.0829198807477951, 0.0002583804016467184, -0.022510966286063194, 0.009427891112864017, -0.0055552595295012, -0.06055388227105141, -0.05367840453982353, 0.007517462130635977, 0.01854514330625534, 0.0032280562445521355, 0.08507364243268967, -0.028040340170264244, -0.02928289584815502, -0.03470872342586517, -0.02110273763537407, -0.05264294147491455, -0.023132244125008583, 0.003233233466744423, 0.03448092192411423, 0.05910423398017883, -0.06324608623981476, 0.01902145706117153, 0.025368845090270042, 0.027025585994124413, -0.04119072109460831, 0.01940457709133625, -0.017934219911694527, 0.01305718906223774, 0.09037521481513977, 0.03448092192411423, -0.016122160479426384, 0.048459671437740326, 0.04481483995914459, -0.0025330015923827887, -0.03439808264374733, -0.035827022045850754, -0.06597970426082611, 0.0018198263132944703, -0.01826556771993637, -0.004688058979809284, 0.016577763482928276, 0.021786142140626907, 0.0012749138986691833, -0.03501936048269272, 0.011814633384346962, -0.05690905079245567, -0.00014027288125362247, -0.016753792762756348, 0.060098275542259216, -0.00846491102129221, -0.01770641840994358, -0.06453005969524384, 0.04361370578408241, -0.00553972739726305, 0.031333111226558685, -0.002054099924862385, -0.0330519825220108, 0.04218476638197899, 0.03489510715007782, -0.02986275590956211, -0.02994559146463871, -0.013844141736626625, -0.0304633229970932, 0.030608288943767548, 0.08014484494924545, -0.062334876507520676, 0.0017615815158933401, -0.03272063285112381, 0.0499507375061512, 0.0014354106970131397, 0.0555008202791214, 0.043572284281253815, -0.058482956141233444, 0.06270764023065567, -0.01604967750608921, -0.037960074841976166, -0.062293458729982376, 0.010603141970932484, 0.007305191829800606, 0.016277479007840157, -0.008495974354445934, 0.035143617540597916, -0.025182461366057396, 0.020709261298179626, 0.0007500635692849755, -0.0008503740536980331, 0.018141312524676323, 0.08656471222639084, 0.018141312524676323, -0.043033845722675323, 0.0018936031265184283, 0.040175966918468475, 0.0032228787895292044, 0.042909588664770126, -0.0062593743205070496, 0.03443950042128563, 0.010499595664441586, -0.03555780276656151, 0.020533232018351555, -0.015418045222759247, 0.049785066395998, 0.06453005969524384, -0.06838198006153107, -0.05206308513879776, 0.008055903017520905, 0.035122908651828766, 0.027584737166762352, 0.0165674090385437, -0.013895914889872074, -0.054092589765787125, -0.059684090316295624, -0.00801448430866003, -0.01191817969083786, 0.048459671437740326, -0.0010937078623101115, 0.026797784492373466, 0.016401734203100204, -0.020636778324842453, 0.06270764023065567, -0.020833516493439674, 0.011338320560753345, 0.010349453426897526, -0.025161752477288246, 0.0006177184404805303, -0.0276468638330698, 0.0012444971362128854, -0.010696333833038807, -0.03553709387779236, -0.02159976027905941, 0.013616339303553104, -0.014838186092674732, 0.021226992830634117, -0.007351787760853767, 0.017758192494511604, -0.03936830535531044, -0.026176506653428078, 0.0024074516259133816, 0.0049469247460365295, -0.008687535300850868, 0.037400927394628525, -0.03303127363324165, 0.0180067028850317, 0.0013914034934714437, -0.07625149935483932, 0.10114403069019318, -0.0020411566365510225, 0.044607747346162796, 0.04531186446547508, 0.014434355311095715, -0.017934219911694527, 0.010349453426897526, -0.0152316614985466, 0.022324584424495697, 0.01736471615731716, -0.03212006390094757, -0.04390363395214081, -0.050199251621961594, 0.04373795911669731, 0.022345293313264847, 0.03100176528096199, 0.006476821377873421, -0.00664249574765563, -0.04108717292547226, -0.003194403601810336, 0.030939636752009392, -0.038477808237075806, -0.0017719361931085587, 0.035764895379543304, -0.014330809004604816, 0.001979028806090355, 0.025141043588519096, -0.02273876965045929, -0.012477329932153225, -0.028392396867275238, -0.009640160948038101, -0.06448864191770554, 0.008040370419621468, -0.015946131199598312, 0.028019631281495094, -0.011307256296277046, -0.013191799633204937, -0.040693700313568115, -0.017354361712932587, 0.03282418102025986, 0.0026714946143329144, -0.08043476939201355, 0.0034920992329716682, 0.021371956914663315, 0.02319437265396118, 0.05612209811806679, -0.02429196424782276, -0.025741612538695335, 0.008563279174268246, 0.010706688277423382, -0.022883733734488487, 0.03615837171673775, -0.0032979499083012342, 0.018514079973101616, 0.01830698736011982, -0.021724015474319458, 0.03493652492761612, 0.010675624012947083, 0.026963459327816963, -0.014848540537059307, 0.015252371318638325, -0.0045896898955106735, -0.04647158458828926, -0.01908358372747898, 0.010235552676022053, 0.008868740871548653, -0.051234714686870575, -0.028599489480257034, 0.005337812006473541, -0.03702815994620323, 0.0608438104391098, 0.028040340170264244, -0.0008426081039942801, 0.047382790595293045, 0.037400927394628525, 0.012363429181277752, -0.09691934287548065, 0.0333004929125309, -0.02944857068359852, -0.006425048224627972, 0.029034385457634926, -0.012001017108559608, 0.023152954876422882, -0.021050963550806046, 0.007092921994626522, -0.01818273216485977, 0.010100942105054855, -0.016142869368195534, 0.009448600932955742, -0.0039088730700314045, 0.05782025679945946, -0.017675355076789856, 0.03454304859042168, 0.0018573618726804852, -0.005053059663623571, 0.030090557411313057, 0.02321508154273033, -0.07376638799905777, 0.0070463260635733604, -0.02654927410185337, 0.015842584893107414, 0.03437737375497818, 0.06539984792470932, 0.006010862998664379, 0.001172014744952321, 0.0026093670167028904, -0.03385964408516884, 0.020212238654494286, 0.062293458729982376, -0.018151666969060898, 0.0013836375437676907, -0.039161212742328644, 0.011245128698647022, 0.03555780276656151, 0.014527547173202038, 0.0034843331668525934, -0.0002093576913466677, 0.04618165269494057, -0.009578033350408077, -0.05819302424788475, 0.06158934533596039, -0.05579075217247009, 0.0016670955810695887, -0.013461019843816757, -0.012042435817420483, -0.005684692412614822, 0.002276724437251687, 0.028558071702718735, -0.08507364243268967, -0.006026395130902529, -0.005762352142482996, 0.040693700313568115, 0.005607032682746649, 0.006590722594410181, 0.0662696361541748, -0.022303873673081398, 0.019093938171863556, -0.054548196494579315, 0.02820601500570774, 0.01058243215084076, 0.015821876004338264, 0.01774783618748188, 0.05715756118297577, -0.013543857261538506, 0.08648187667131424, 0.05272578075528145, -0.022076072171330452, -0.015418045222759247, -0.005436181090772152, -0.01902145706117153, 0.012187400832772255, 0.03419099003076553, -0.03661397472023964, 0.09650515764951706, 0.004669938236474991, -0.024499056860804558, -0.023691395297646523, -0.11365243047475815, -0.0028682327829301357, -0.009246685542166233, -0.03203722834587097, -0.005715756211429834, 0.006932425312697887, -0.05840011686086655, 0.003875220660120249, 0.03990674763917923, -0.016422444954514503, 0.02020188421010971, 0.026984168216586113, 0.014776058495044708, 0.03392177075147629, -0.02275947853922844, 0.034046024084091187, -0.0362204983830452, -0.05777883902192116, -0.009132783859968185, -0.00885320920497179, -0.025244589895009995, 0.03727667033672333, -0.018493371084332466, -0.021848270669579506, 0.007853987626731396, -0.021475503221154213, -0.012239173986017704, 0.01654670014977455, 0.019570251926779747, 0.0029821337666362524, 0.0076468950137495995, -0.023028697818517685, 0.013181445188820362 ]
39,922
tldextract.tldextract
__call__
Alias for `extract_str`.
def __call__( self, url: str, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Alias for `extract_str`.""" return self.extract_str(url, include_psl_private_domains, session=session)
(self, url: str, include_psl_private_domains: Optional[bool] = None, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract.ExtractResult
[ -0.00794319249689579, -0.03332437947392464, -0.00997086614370346, 0.05240214616060257, 0.0020276738796383142, 0.019395140931010246, 0.020029891282320023, -0.024296822026371956, 0.01082601584494114, 0.013479623012244701, 0.02674766257405281, 0.010217713192105293, 0.03238988667726517, 0.008401622995734215, 0.005849398206919432, 0.04474988207221031, 0.041964031755924225, -0.006030126009136438, 0.0035638571716845036, -0.023521017283201218, -0.01987120322883129, 0.013823446817696095, 0.0570569783449173, 0.04728887975215912, -0.03066195547580719, 0.014722676016390324, 0.05649275705218315, -0.04637201875448227, -0.030080100521445274, -0.023256538435816765, 0.07137411832809448, 0.013065272942185402, -0.06072442606091499, 0.02389128878712654, -0.037168145179748535, -0.007070410531014204, -0.02283337153494358, 0.031349603086709976, -0.06611979752779007, -0.030044836923480034, -0.06805931776762009, 0.024314453825354576, 0.07042199373245239, -0.004150119610130787, 0.0052014244720339775, 0.028087690472602844, -0.09295562654733658, -0.004668057896196842, -0.04337459057569504, -0.02382075972855091, -0.00517497630789876, 0.06918776035308838, -0.015216370113193989, -0.032266464084386826, 0.013885158114135265, 0.006224077194929123, 0.041188228875398636, 0.08646706491708755, 0.028105324134230614, 0.02881060168147087, -0.018178537487983704, -0.029427720233798027, 0.0029908190481364727, 0.046019382774829865, 0.029092712327837944, 0.020135683938860893, -0.01764957793056965, 0.0024023528676480055, -0.037062350660562515, -0.02486104518175125, 0.045878324657678604, -0.015463217161595821, -0.049016810953617096, 0.009873890317976475, 0.020347267389297485, -0.011037598364055157, 0.021387550979852676, -0.05451798066496849, 0.02182834967970848, -0.006250525359064341, -0.020347267389297485, -0.005298399832099676, -0.006109469570219517, -0.016247838735580444, -0.019007239490747452, -0.030379844829440117, 0.09711676090955734, -0.09401354193687439, -0.01692666858434677, 0.1689845770597458, -0.022251516580581665, 0.05744488164782524, -0.04809994995594025, -0.008780709467828274, -0.010402848944067955, 0.01483728364109993, 0.010781935416162014, 0.008745445869863033, 0.025513427332043648, -0.014696227386593819, -0.0056334068067371845, 0.02161676622927189, -0.042951423674821854, -0.0007223588181659579, 0.021563870832324028, 0.024279190227389336, -0.01575414463877678, -0.020241474732756615, -0.013171064667403698, 0.05346006155014038, 0.0003137935418635607, 0.036180753260850906, -0.023168377578258514, 0.019060134887695312, 0.04037715867161751, -0.026271600276231766, -0.049898408353328705, -0.03268963098526001, -0.06760088354349136, -0.003039306728169322, -0.025478163734078407, 0.029515879228711128, -0.05427113175392151, -0.013726470991969109, -0.03277778998017311, 0.057938575744628906, 0.007026331033557653, -0.04221088066697121, 0.06453292816877365, -0.04665413126349449, 0.013735286891460419, 0.04541989415884018, 0.04235193505883217, 0.01584230363368988, 0.005245503969490528, -0.0033103979658335447, -0.003041510935872793, 0.030132997781038284, -0.03268963098526001, 0.07035146653652191, -0.03362412378191948, 0.004368314985185862, 0.03244278207421303, 0.0009758180822245777, 0.025354739278554916, -0.04418565705418587, 0.05448271706700325, -0.028211114928126335, 0.015498481690883636, -0.020946752279996872, 0.02784084342420101, -0.041082438081502914, 0.00004890110358246602, -0.004747401922941208, -0.047077298164367676, 0.020100420340895653, 0.043057214468717575, -0.005919926334172487, 0.04238719865679741, -0.045067254453897476, 0.00942427571862936, -0.04450303316116333, -0.01793169043958187, -0.04087085276842117, -0.010693775489926338, -0.05603432655334473, 0.10050209611654282, -0.025248948484659195, 0.028105324134230614, 0.01283605769276619, 0.035175733268260956, 0.04785310477018356, 0.008145959116518497, 0.033253852277994156, 0.004778257571160793, 0.05846753716468811, 0.040130309760570526, 0.07341942936182022, -0.018301960080862045, 0.007643449120223522, 0.01879565604031086, -0.02092912048101425, -0.07821531593799591, 0.046019382774829865, 0.036251284182071686, 0.029480615630745888, -0.022233884781599045, 0.009724019095301628, -0.0014612475642934442, 0.06735403835773468, -0.002583080204203725, -0.032266464084386826, 0.04263404756784439, -0.010684959590435028, -0.049052074551582336, -0.04076506197452545, -0.061782341450452805, 0.020065154880285263, -0.09351984411478043, -0.005646631121635437, -0.023027323186397552, 0.011178654618561268, -0.049863144755363464, -0.010808383114635944, -0.05829121544957161, -0.003618957009166479, -0.061711814254522324, 0.06939934194087982, -0.031120385974645615, -0.001456839614547789, 0.03253094106912613, -0.029850885272026062, -0.004875233396887779, 0.02069990523159504, 0.009150980040431023, 0.007299625780433416, -0.040906116366386414, 0.02681819163262844, 0.03291884437203407, -0.022974425926804543, 0.044996727257966995, -0.05751541256904602, 0.05130896717309952, -0.0035682653542608023, 0.024367351084947586, -0.0021048136986792088, 0.01779945008456707, -0.011734060943126678, -0.004769441671669483, -0.06206445395946503, 0.036216020584106445, -0.049016810953617096, 0.08406912535429001, -0.0014458196237683296, 0.01793169043958187, -0.01570124924182892, -0.016036255285143852, 0.021105440333485603, 0.07264362275600433, -0.03263673186302185, -0.01574532873928547, 0.015683617442846298, 0.0024993284605443478, 0.04527883976697922, -0.0376618392765522, 0.02556632272899151, -0.05857332795858383, 0.0491931326687336, 0.02267468348145485, -0.00997968204319477, 0.045843061059713364, 0.005382151808589697, -0.020241474732756615, 0.030080100521445274, -0.011161022819578648, -0.006550268270075321, -0.04661886766552925, -0.01235117856413126, -0.0018921282608062029, -0.013082904741168022, 0.004707729909569025, -0.04125875607132912, 0.023238906636834145, -0.058784909546375275, -0.06298131495714188, -0.007925559766590595, 0.013268040493130684, -0.0004901130450889468, 0.007837400771677494, 0.019236454740166664, -0.06340447813272476, 0.03928397595882416, 0.016521133482456207, 0.007546473294496536, -0.02986851893365383, 0.004566674120724201, -0.002556632272899151, -0.035228628665208817, 0.024437878280878067, -0.037062350660562515, 0.055046938359737396, 0.017164699733257294, -0.000934493204113096, -0.03889607638120651, 0.05857332795858383, -0.0013301100116223097, 0.03745025396347046, 0.05617538094520569, -0.026377392932772636, -0.05624591186642647, -0.023521017283201218, -0.01589520089328289, 0.07821531593799591, -0.00025607648422010243, 0.006783891469240189, 0.0084985988214612, -0.03540495038032532, -0.018011033535003662, 0.00039396382635459304, -0.0393192432820797, -0.052049506455659866, -0.014713860116899014, 0.012042619287967682, 0.03480546176433563, -0.0018359264358878136, 0.014414116740226746, 0.004125875420868397, 0.028457961976528168, -0.006250525359064341, 0.002316396916285157, 0.023961815983057022, 0.006241708993911743, -0.03829658776521683, -0.013047641143202782, -0.04647781327366829, -0.0021070176735520363, 0.019007239490747452, 0.03688603267073631, -0.010808383114635944, -0.004136895760893822, 0.015586640685796738, -0.05018052086234093, 0.022515995427966118, 0.016485869884490967, 0.05832647904753685, -0.00160340522415936, 0.01789642684161663, 0.008167999796569347, 0.03875501826405525, -0.005408599507063627, -0.022939162328839302, 0.05254320055246353, -0.03431176766753197, -0.020135683938860893, -0.03173750266432762, -0.05578748136758804, -0.04249299317598343, -0.056915923953056335, -0.006951394956558943, -0.006810339633375406, -0.057832784950733185, -0.03861396387219429, -0.0629107877612114, 0.014123189263045788, 0.02089385688304901, -0.017543787136673927, -0.03896660357713699, -0.007749240845441818, 0.01681206189095974, -0.09549462795257568, 0.04817047715187073, -0.02383839152753353, -0.005452679470181465, 0.05275478586554527, 0.03632181137800217, 0.0495457723736763, -0.020347267389297485, 0.019148293882608414, 0.03334201127290726, -0.01541913766413927, 0.02189887873828411, -0.0669308677315712, -0.025160787627100945, -0.03487599268555641, -0.02071753703057766, -0.06269920617341995, 0.04277510195970535, 0.003618957009166479, 0.011099310591816902, -0.024931572377681732, -0.02754110097885132, 0.009768098592758179, -0.023168377578258514, -0.05945492535829544, -0.004500554408878088, 0.03126144036650658, 0.017235228791832924, -0.027911372482776642, -0.08167117834091187, 0.02570737898349762, 0.009715203195810318, 0.0394955612719059, 0.012024987488985062, 0.0005570593057200313, 0.07927323132753372, 0.028193483129143715, 0.004597530234605074, 0.03776763007044792, -0.00544827152043581, 0.01671508513391018, 0.0358281172811985, 0.033042266964912415, 0.04372722655534744, 0.02479051798582077, -0.016388894990086555, -0.027981899678707123, -0.056774869561195374, -0.0014976134989410639, -0.017446812242269516, 0.0339943952858448, 0.06939934194087982, -0.013285672292113304, -0.01983593963086605, 0.005505575332790613, -0.0014281877083703876, 0.0007025228696875274, 0.019271718338131905, -0.01774655468761921, -0.04834679886698723, 0.013682390563189983, -0.019465669989585876, -0.054800089448690414, -0.04958103597164154, -0.06650770455598831, -0.055928535759449005, 0.04055347666144371, -0.021969405934214592, 0.06340447813272476, -0.035228628665208817, -0.011257997713983059, 0.04675992205739021, -0.06975198537111282, -0.02278047613799572, 0.036251284182071686, -0.020329635590314865, 0.002191871404647827, 0.005862622521817684, -0.06788299232721329, 0.049933671951293945, -0.04330406337976456, -0.012527498416602612, 0.015092946588993073, -0.0537421740591526, 0.021510975435376167, 0.06594347953796387, 0.01694430038332939, -0.01338264811784029, 0.0017169108614325523, -0.01784352958202362, 0.00023555179359391332, -0.005161752458661795, 0.003689484903588891, -0.011883932165801525, 0.05603432655334473, 0.12095515429973602, -0.02369733713567257, -0.04139981046319008, 0.006343092769384384, -0.0018315184861421585, -0.054800089448690414, 0.03159644827246666, -0.0007140938541851938, 0.035069942474365234, 0.03826132416725159, -0.059983883053064346, -0.012474602088332176, 0.019077766686677933, 0.017543787136673927, -0.03184329718351364, 0.05275478586554527, -0.024138135835528374, 0.006444476544857025, 0.03559890016913414, 0.012395258992910385, 0.021510975435376167, 0.05353059247136116, 0.0023053770419210196, -0.016432974487543106, -0.042034562677145004, -0.057092245668172836, -0.041964031755924225, -0.008489781990647316, 0.005280768033117056, 0.04326879605650902, 0.05716277286410332, 0.0037864604964852333, -0.029445352032780647, 0.007048370782285929, -0.004013471771031618, -0.03126144036650658, -0.04619570076465607, 0.0016574029577896, 0.03179040178656578, -0.013700022362172604, -0.025531059131026268, 0.0031428944785147905, 0.06467398256063461, 0.004822337534278631, 0.043163005262613297, 0.01763194613158703, -0.008639654144644737, 0.11721718311309814, 0.007925559766590595, -0.0616060234606266, -0.047042034566402435, -0.009600594639778137, -0.010958255268633366, 0.016406526789069176, 0.054905883967876434, -0.03970714285969734, -0.01884855143725872, 0.0003498839505482465, 0.06114759296178818, -0.00797845609486103, 0.04623096436262131, 0.08054273575544357, -0.0012099923333153129, 0.05367164686322212, -0.02390892058610916, 0.009847442619502544, -0.06724824756383896, 0.03579285368323326, -0.002539000241085887, 0.011090494692325592, 0.03182566538453102, 0.016309550032019615, 0.015004786662757397, 0.03060906007885933, -0.036286547780036926, -0.019095398485660553, 0.01589520089328289, 0.0630871057510376, 0.019395140931010246, -0.03365938737988472, 0.016626926138997078, 0.02174019068479538, -0.0025588362477719784, 0.055011674761772156, -0.055046938359737396, -0.0036784650292247534, -0.016600478440523148, -0.01690903678536415, -0.03568705916404724, 0.01143431756645441, 0.043515644967556, 0.05645749345421791, -0.12356468290090561, -0.006761851720511913, -0.005104448646306992, 0.055858008563518524, 0.019201189279556274, -0.013700022362172604, -0.012659737840294838, -0.01574532873928547, -0.07729845494031906, -0.004787073470652103, -0.01579822413623333, 0.07073937356472015, -0.031085122376680374, 0.03142013028264046, -0.02981562167406082, -0.0570569783449173, 0.015216370113193989, 0.021757822483778, 0.0851975679397583, 0.05134423077106476, -0.02658897638320923, -0.025319475680589676, -0.08604390174150467, -0.01539268996566534, -0.016979563981294632, -0.03235462307929993, -0.06336921453475952, 0.0002343120431760326, -0.042140353471040726, -0.004143507685512304, 0.006938171107321978, -0.008639654144644737, -0.08350490033626556, -0.024455510079860687, 0.030185893177986145, 0.008379582315683365, -0.030044836923480034, 0.04083558917045593, -0.03290121257305145, 0.016600478440523148, 0.04436197876930237, -0.026465551927685738, 0.07941428571939468, 0.06918776035308838, 0.00892176479101181, 0.02858138643205166, 0.02981562167406082, 0.0048972731456160545, -0.028881128877401352, -0.027329517528414726, -0.003162730485200882, -0.038120269775390625, -0.021281760185956955, -0.027400044724345207, 0.01985357142984867, -0.03847290948033333, 0.026112914085388184, 0.049087341874837875, -0.031067490577697754, -0.04880522936582565, -0.044079866260290146, -0.034223608672618866, 0.036145489662885666, -0.014087925665080547, 0.018037481233477592, 0.036991823464632034, 0.029198503121733665, -0.005580511409789324, 0.024049974977970123, 0.030855907127261162, -0.05744488164782524, 0.03177276998758316, -0.030415108427405357, -0.039142921566963196, -0.03371228277683258, -0.010570351965725422, -0.006109469570219517, -0.02479051798582077, -0.0030371027532964945, 0.011178654618561268, -0.005351295694708824, 0.03593390807509422, 0.00982099398970604, -0.044926200062036514, 0.02071753703057766, 0.02673003077507019, -0.011125758290290833, 0.04926365986466408, -0.0033103979658335447, -0.006850011181086302, 0.00888650119304657, 0.014925442636013031, 0.04460882395505905, 0.10367584973573685, -0.009856258518993855, 0.030221156775951385, 0.04630149155855179, 0.0023230090737342834, 0.03727393597364426, -0.019448038190603256, 0.022128093987703323, 0.0138058140873909, -0.009221508167684078, -0.022974425926804543, -0.06284026056528091, -0.0077712805941700935, -0.03836711496114731, 0.016450606286525726, -0.03563416376709938, 0.032336991280317307, -0.049157869070768356, -0.010464560240507126, 0.06805931776762009, -0.02591896243393421, 0.0020221639424562454, 0.030238788574934006, 0.08167117834091187, 0.02953351102769375, -0.03588101267814636, 0.01685614138841629, -0.03450572118163109, 0.026201073080301285, -0.005435047671198845, 0.0007201548432931304, -0.03988346457481384, -0.013876342214643955, -0.0075685130432248116, 0.003504349384456873, -0.019324613735079765, 0.006942579057067633, 0.012580393813550472, -0.03875501826405525, 0.01429069321602583, -0.03455861657857895, 0.0042955828830599785, 0.06358080357313156, -0.01962435618042946, 0.0416819229722023, 0.009574146941304207, -0.04048294946551323, -0.01969488523900509, -0.07306678593158722, -0.013038824312388897, 0.008137143217027187, 0.01974778063595295, -0.023062586784362793, 0.007991679944097996, -0.01596572808921337, -0.07617001235485077, 0.008754261769354343, 0.01888381503522396, 0.002631568117067218, -0.013655942864716053, -0.04034189507365227, -0.0034161896910518408, 0.021581502631306648, -0.006867643445730209, -0.010305873118340969, 0.04556095227599144, 0.050991591066122055, 0.013470807112753391, -0.09210929274559021, 0.08646706491708755, 0.0028409473598003387, 0.007453905418515205, 0.02189887873828411, 0.004787073470652103, 0.011919195763766766, -0.018971974030137062, 0.0005829562433063984, -0.012606842443346977, 0.013576598837971687, -0.013444359414279461, 0.037203408777713776, -0.016529949381947517, -0.029057448729872704, 0.00035511841997504234, -0.008053392171859741, 0.0036035291850566864, -0.0023318249732255936, 0.04757099226117134, 0.017138252034783363, 0.007639041170477867, 0.021175967529416084, 0.04929892346262932, -0.03889607638120651, 0.04527883976697922, 0.04644254967570305, -0.01681206189095974, 0.017534971237182617, -0.0189190786331892, -0.0016199351521208882, 0.08068379014730453, 0.016626926138997078, -0.05264899507164955, 0.04637201875448227, -0.027505837380886078, 0.01592164859175682, -0.020029891282320023, -0.05159107595682144, -0.05751541256904602, -0.005501167383044958, 0.021422814577817917, -0.04432671517133713, 0.007057186681777239, 0.0005063674761913717, 0.058890704065561295, -0.010217713192105293, -0.014017397537827492, -0.0021720353979617357, 0.005245503969490528, 0.01678561419248581, 0.029304295778274536, -0.026148177683353424, 0.0003620058996602893, -0.0017907446017488837, 0.005161752458661795, -0.0017786226235330105, 0.014237796887755394, -0.026306863874197006, 0.005598143208771944, 0.003733564866706729, -0.01482846774160862, -0.007907927967607975, -0.05226109176874161, 0.04182297736406326, 0.027382412925362587, -0.017323387786746025, -0.008815973065793514, 0.0038658042903989553, -0.023291802033782005, -0.009045188315212727 ]
39,923
tldextract.tldextract
__init__
Construct a callable for extracting subdomain, domain, and suffix components from a URL. Upon calling it, it first checks for a JSON in `cache_dir`. By default, the `cache_dir` will live in the tldextract directory. You can disable the caching functionality of this module by setting `cache_dir` to `None`. If the cached version does not exist (such as on the first run), HTTP request the URLs in `suffix_list_urls` in order, until one returns public suffix list data. To disable HTTP requests, set this to an empty sequence. The default list of URLs point to the latest version of the Mozilla Public Suffix List and its mirror, but any similar document could be specified. Local files can be specified by using the `file://` protocol. (See `urllib2` documentation.) If there is no cached version loaded and no data is found from the `suffix_list_urls`, the module will fall back to the included TLD set snapshot. If you do not want this behavior, you may set `fallback_to_snapshot` to False, and an exception will be raised instead. The Public Suffix List includes a list of "private domains" as TLDs, such as blogspot.com. These do not fit `tldextract`'s definition of a suffix, so these domains are excluded by default. If you'd like them included instead, set `include_psl_private_domains` to True. You can pass additional suffixes in `extra_suffixes` argument without changing list URL cache_fetch_timeout is passed unmodified to the underlying request object per the requests documentation here: http://docs.python-requests.org/en/master/user/advanced/#timeouts cache_fetch_timeout can also be set to a single value with the environment variable TLDEXTRACT_CACHE_TIMEOUT, like so: TLDEXTRACT_CACHE_TIMEOUT="1.2" When set this way, the same timeout value will be used for both connect and read timeouts
def __init__( self, cache_dir: str | None = get_cache_dir(), suffix_list_urls: Sequence[str] = PUBLIC_SUFFIX_LIST_URLS, fallback_to_snapshot: bool = True, include_psl_private_domains: bool = False, extra_suffixes: Sequence[str] = (), cache_fetch_timeout: str | float | None = CACHE_TIMEOUT, ) -> None: """Construct a callable for extracting subdomain, domain, and suffix components from a URL. Upon calling it, it first checks for a JSON in `cache_dir`. By default, the `cache_dir` will live in the tldextract directory. You can disable the caching functionality of this module by setting `cache_dir` to `None`. If the cached version does not exist (such as on the first run), HTTP request the URLs in `suffix_list_urls` in order, until one returns public suffix list data. To disable HTTP requests, set this to an empty sequence. The default list of URLs point to the latest version of the Mozilla Public Suffix List and its mirror, but any similar document could be specified. Local files can be specified by using the `file://` protocol. (See `urllib2` documentation.) If there is no cached version loaded and no data is found from the `suffix_list_urls`, the module will fall back to the included TLD set snapshot. If you do not want this behavior, you may set `fallback_to_snapshot` to False, and an exception will be raised instead. The Public Suffix List includes a list of "private domains" as TLDs, such as blogspot.com. These do not fit `tldextract`'s definition of a suffix, so these domains are excluded by default. If you'd like them included instead, set `include_psl_private_domains` to True. You can pass additional suffixes in `extra_suffixes` argument without changing list URL cache_fetch_timeout is passed unmodified to the underlying request object per the requests documentation here: http://docs.python-requests.org/en/master/user/advanced/#timeouts cache_fetch_timeout can also be set to a single value with the environment variable TLDEXTRACT_CACHE_TIMEOUT, like so: TLDEXTRACT_CACHE_TIMEOUT="1.2" When set this way, the same timeout value will be used for both connect and read timeouts """ suffix_list_urls = suffix_list_urls or () self.suffix_list_urls = tuple( url.strip() for url in suffix_list_urls if url.strip() ) self.fallback_to_snapshot = fallback_to_snapshot if not (self.suffix_list_urls or cache_dir or self.fallback_to_snapshot): raise ValueError( "The arguments you have provided disable all ways for tldextract " "to obtain data. Please provide a suffix list data, a cache_dir, " "or set `fallback_to_snapshot` to `True`." ) self.include_psl_private_domains = include_psl_private_domains self.extra_suffixes = extra_suffixes self._extractor: _PublicSuffixListTLDExtractor | None = None self.cache_fetch_timeout = ( float(cache_fetch_timeout) if isinstance(cache_fetch_timeout, str) else cache_fetch_timeout ) self._cache = DiskCache(cache_dir)
(self, cache_dir: str | None = '/root/.cache/python-tldextract/3.10.14.final__local__ecb11d__tldextract-5.1.2', suffix_list_urls: collections.abc.Sequence[str] = ('https://publicsuffix.org/list/public_suffix_list.dat', 'https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat'), fallback_to_snapshot: bool = True, include_psl_private_domains: bool = False, extra_suffixes: collections.abc.Sequence[str] = (), cache_fetch_timeout: Union[str, float, NoneType] = None) -> NoneType
[ 0.009487866424024105, 0.003250516951084137, -0.05630394071340561, 0.03262023255228996, -0.022034477442502975, 0.006280497647821903, -0.010604931972920895, 0.024795979261398315, 0.006021606735885143, -0.02025100775063038, 0.04157593473792076, 0.10018112510442734, -0.009564574807882309, -0.009511837735772133, 0.007316060364246368, 0.007229763548821211, 0.004784684162586927, 0.05193156376481056, 0.010432337410748005, -0.041192393749952316, -0.018218236044049263, 0.028612220659852028, 0.044874392449855804, 0.04130745679140091, -0.017815517261624336, 0.013951334170997143, 0.0173169132322073, -0.03785558044910431, 0.006405148655176163, 0.03329142928123474, 0.04422237351536751, -0.00489015830680728, -0.06662121415138245, 0.048518043011426926, -0.000308930961182341, 0.010825468227267265, -0.029340950772166252, 0.008931729942560196, -0.07525090873241425, -0.0035909104626625776, 0.0016168685397133231, -0.048978291451931, 0.029973793774843216, -0.03597622364759445, 0.037376150488853455, 0.05354243889451027, -0.02569730207324028, 0.02337687462568283, -0.024508323520421982, -0.05235346034169197, -0.0020255802664905787, 0.03490230813622475, 0.020385248586535454, -0.04966866597533226, -0.02441243827342987, 0.06148175522685051, 0.043493643403053284, 0.13132472336292267, -0.00011363925295881927, 0.06700475513935089, 0.010183035396039486, -0.033080484718084335, -0.03233257681131363, 0.04886322841048241, -0.005968869663774967, 0.015629328787326813, -0.030299805104732513, -0.045679833739995956, -0.034787245094776154, 0.022437196224927902, 0.059985943138599396, -0.032888710498809814, -0.06017771363258362, -0.023242635652422905, 0.05043575167655945, 0.011650082655251026, -0.02190023846924305, -0.027404064312577248, -0.00722496910020709, 0.002466653473675251, -0.027902668341994286, -0.006198994815349579, 0.01768127828836441, -0.04345528781414032, 0.0715305507183075, -0.04614008218050003, 0.06988131999969482, -0.04215124621987343, 0.010202212259173393, 0.08545312285423279, -0.10616438090801239, 0.0056908018887043, -0.0021406428422778845, -0.049515251070261, -0.025313761085271835, -0.023089218884706497, -0.00005588324347627349, 0.00168758409563452, 0.004348405636847019, 0.004995632451027632, 0.03595704585313797, 0.01750868372619152, -0.02268650010228157, 0.01665530353784561, 0.024546677246689796, 0.01698131486773491, -0.06194200739264488, -0.01751827262341976, -0.044874392449855804, -0.007872195914387703, -0.028842344880104065, 0.02611919865012169, 0.047559186816215515, 0.0146992402151227, -0.004794273059815168, -0.021439988166093826, -0.05672583729028702, -0.030318981036543846, -0.020749613642692566, -0.013395198620855808, 0.011707614175975323, 0.07030321657657623, -0.06865398585796356, 0.05158637464046478, -0.04571818560361862, -0.017815517261624336, 0.024009719491004944, 0.02285909280180931, 0.08008353412151337, -0.03413522243499756, 0.06094479560852051, 0.020040061324834824, -0.009741962887346745, 0.04794272780418396, 0.0692676529288292, -0.016684070229530334, 0.021708467975258827, 0.053235605359077454, -0.07900961488485336, 0.039025381207466125, -0.0327928252518177, -0.023089218884706497, 0.07567280530929565, -0.017393622547388077, -0.006462679710239172, -0.025313761085271835, 0.01665530353784561, -0.041345808655023575, -0.01706761121749878, -0.008370800875127316, -0.01091176550835371, -0.024297375231981277, -0.009804287925362587, -0.02025100775063038, -0.029513543471693993, -0.01568686030805111, -0.03122030571103096, 0.007411946076899767, 0.019263388589024544, -0.0004203978169243783, -0.020212654024362564, 0.0031690143514424562, -0.029168356209993362, -0.0598708800971508, -0.002505007665604353, -0.01887984573841095, 0.02880399115383625, -0.04855639487504959, -0.0062469374388456345, 0.06865398585796356, 0.025716479867696762, 0.07674671709537506, -0.006975667085498571, 0.02586989663541317, -0.003348799655213952, 0.03752956911921501, 0.028765637427568436, 0.04924676939845085, -0.0293984804302454, 0.027615012601017952, 0.003948083613067865, -0.035400912165641785, -0.030664170160889626, 0.0051874034106731415, 0.0165594182908535, 0.08583666384220123, -0.03357908874750137, 0.04529628902673721, -0.015332085080444813, 0.0714154914021492, -0.017489507794380188, -0.02941765822470188, 0.03701178729534149, -0.03329142928123474, -0.032581876963377, 0.0025074046570807695, -0.060139358043670654, -0.014373229816555977, -0.011611728928983212, 0.0014466717839241028, -0.0714154914021492, 0.03018474206328392, 0.0357077457010746, -0.013999276794493198, -0.02009759284555912, -0.016875840723514557, -0.04084720462560654, 0.04303339496254921, -0.06723488122224808, 0.04322516545653343, 0.013203427195549011, 0.0019272976787760854, -0.06021606922149658, -0.0021022886503487825, 0.00642432551831007, -0.046446915715932846, -0.014219813048839569, 0.03912126645445824, 0.03958151862025261, -0.018505893647670746, 0.06988131999969482, -0.016866251826286316, 0.0036987815983593464, 0.02759583480656147, 0.030683346092700958, 0.04042530804872513, 0.07356332242488861, 0.03146960586309433, 0.014277344569563866, -0.05269864574074745, -0.0043939510360360146, -0.035055723041296005, 0.07739873975515366, 0.009109118022024632, 0.07601799070835114, -0.0719524472951889, 0.02629179321229458, 0.06627602875232697, 0.03133536875247955, -0.0029125206638127565, 0.03369414806365967, 0.03371332585811615, 0.03578445315361023, 0.02165093645453453, 0.005896955728530884, 0.00913788378238678, -0.003355991095304489, 0.016942961141467094, 0.006568153854459524, 0.011793911457061768, 0.01611834578216076, 0.04913171008229256, -0.02285909280180931, -0.014795126393437386, -0.0013531835284084082, -0.010873410850763321, -0.01595534011721611, -0.0259466040879488, 0.012091156095266342, -0.022897446528077126, 0.01595534011721611, -0.061021506786346436, -0.026157552376389503, -0.005407939665019512, -0.07701519876718521, 0.012704823166131973, 0.04383883252739906, -0.04667704179883003, -0.03977328911423683, 0.03821994364261627, -0.00562847638502717, 0.002176599809899926, -0.00722496910020709, 0.02214954048395157, -0.029091648757457733, 0.022533083334565163, 0.004242931492626667, -0.055153314024209976, -0.021689290180802345, 0.007455094251781702, 0.03845006972551346, 0.015044428408145905, 0.004142251797020435, -0.051011063158512115, 0.05200827121734619, -0.014238990843296051, -0.05097270756959915, 0.036513183265924454, -0.05346573144197464, -0.022092008963227272, -0.029551897197961807, -0.022092008963227272, 0.053504087030887604, -0.04287997633218765, 0.020327717065811157, -0.042918331921100616, -0.04004176706075668, -0.050934355705976486, 0.06658285856246948, 0.007656453642994165, -0.0776672214269638, 0.000618461228441447, 0.048441331833601, 0.051356252282857895, 0.01349108386784792, -0.018573014065623283, -0.004923718050122261, 0.006203789263963699, 0.03355991095304489, 0.016703246161341667, 0.04510451853275299, -0.017230616882443428, -0.01409516204148531, 0.00013566293637268245, 0.03354073315858841, 0.02932177297770977, -0.02199612371623516, 0.04882487654685974, -0.02000170573592186, 0.010144681669771671, -0.0343078151345253, 0.04311010241508484, -0.0068606045097112656, 0.03286953642964363, 0.040578726679086685, -0.03396262973546982, 0.020653728395700455, 0.05335066840052605, 0.005441499873995781, -0.008116704411804676, -0.02335769683122635, -0.015149902552366257, -0.013682854361832142, 0.0052161687053740025, -0.015341673046350479, 0.01864013262093067, 0.014843069016933441, -0.00926732923835516, 0.04372376948595047, 0.0029269035439938307, -0.008869404904544353, -0.015245787799358368, -0.08683387190103531, 0.030414866283535957, -0.004815847147256136, -0.03423110768198967, 0.0691525936126709, 0.010844645090401173, 0.043762121349573135, -0.06945942342281342, 0.011343250051140785, -0.04863310232758522, -0.009612517431378365, 0.046868812292814255, 0.08476274460554123, -0.04337858036160469, -0.03248599171638489, -0.027998553588986397, 0.02544800005853176, -0.03379003703594208, -0.01298289094120264, -0.028171148151159286, -0.037376150488853455, -0.006031195167452097, -0.011544609442353249, -0.0760563462972641, 0.05185485631227493, -0.03821994364261627, 0.02803690731525421, -0.07559609413146973, 0.004619281738996506, -0.03267776221036911, 0.0013939348282292485, -0.05538344010710716, 0.04054037109017372, -0.0727195292711258, -0.021190686151385307, 0.0026512329932302237, -0.06466515362262726, 0.06282415241003036, -0.03469135984778404, 0.03233257681131363, 0.008394772186875343, 0.012321281246840954, 0.021842706948518753, 0.008620102889835835, 0.02389465644955635, 0.03008885681629181, 0.08207795023918152, 0.03242846205830574, 0.04180606082081795, 0.024297375231981277, 0.025121990591287613, -0.005144254770129919, -0.009161855094134808, -0.01707720011472702, -0.05883531644940376, 0.017786752432584763, 0.007450300268828869, -0.0113816037774086, 0.03896785154938698, 0.015025251545011997, 0.024182312190532684, 0.05898873507976532, 0.010278920643031597, -0.005254522897303104, 0.11099700629711151, -0.0059592812322080135, -0.008696811273694038, 0.039888352155685425, -0.049208417534828186, -0.07528926432132721, -0.011793911457061768, -0.03438452631235123, -0.0472523532807827, 0.042918331921100616, -0.04556477069854736, 0.026790397241711617, -0.01444993820041418, 0.01000085286796093, -0.0006550175603479147, -0.026675334200263023, -0.006155846174806356, -0.017441565170884132, 0.03706931695342064, -0.003895346773788333, -0.010039207525551319, -0.028823168948292732, -0.037299443036317825, -0.03770216181874275, 0.00722496910020709, 0.017029257491230965, -0.046446915715932846, 0.004525793716311455, 0.08215466141700745, 0.018323710188269615, -0.04706058278679848, -0.022609790787100792, -0.021938592195510864, -0.06036948412656784, -0.07601799070835114, -0.023933010175824165, 0.01939762756228447, 0.01164049468934536, 0.05150966718792915, -0.029340950772166252, -0.021842706948518753, 0.004310051444917917, 0.016540242359042168, -0.06236390024423599, -0.005834630224853754, 0.028267033398151398, 0.04571818560361862, 0.033118836581707, -0.042036183178424835, 0.0034806421026587486, 0.0074598887003958225, 0.014401995576918125, -0.042918331921100616, -0.0014922174159437418, -0.015111547894775867, -0.013002067804336548, 0.0836121216416359, -0.01349108386784792, -0.03338731452822685, 0.07011144608259201, 0.05258358642458916, 0.011813088320195675, -0.01846753992140293, -0.0622488409280777, -0.04383883252739906, -0.01065287459641695, -0.038852788507938385, -0.015284141525626183, -0.005331231281161308, 0.028477981686592102, 0.006314057391136885, -0.054194461554288864, 0.002819032408297062, -0.04917006194591522, 0.01026933267712593, -0.007872195914387703, 0.030990179628133774, 0.017479918897151947, -0.011966505087912083, -0.08875157684087753, 0.023511113598942757, -0.005523002240806818, 0.023261811584234238, -0.0015221816720440984, -0.020653728395700455, 0.0576079823076725, 0.026272615417838097, -0.020749613642692566, -0.006611302495002747, 0.008327651768922806, -0.0030635404400527477, 0.03871854767203331, 0.05051245912909508, -0.048939935863018036, 0.0030827175360172987, -0.05465470999479294, 0.05699431523680687, 0.04054037109017372, 0.041345808655023575, 0.029992971569299698, -0.06896082311868668, 0.028075262904167175, -0.03079840913414955, -0.03518996387720108, -0.02717393822968006, 0.022993333637714386, -0.01579233445227146, 0.011813088320195675, -0.018927790224552155, 0.021094800904393196, -0.06209542229771614, 0.008850228041410446, -0.015006073750555515, 0.019186679273843765, 0.036263879388570786, 0.09258699417114258, 0.022801561281085014, -0.05120283365249634, -0.0026416443288326263, -0.018822316080331802, 0.025121990591287613, 0.04050201550126076, 0.03578445315361023, 0.03233257681131363, -0.0030659374315291643, -0.046523623168468475, -0.01461294386535883, -0.021881060674786568, 0.03486395254731178, 0.07107029855251312, -0.0655856505036354, -0.02776842936873436, 0.008720782585442066, -0.0180168766528368, 0.03887196630239487, 0.0420745387673378, 0.0003418915730435401, -0.06758007407188416, -0.0661226138472557, -0.018323710188269615, -0.03503654524683952, 0.05733950436115265, 0.04322516545653343, 0.046178437769412994, 0.046523623168468475, -0.04529628902673721, 0.05423281341791153, -0.03553514927625656, -0.0020962958224117756, -0.0026991756167262793, -0.013395198620855808, -0.0162909384816885, -0.006894164253026247, 0.013040422461926937, -0.004391553811728954, -0.007023609708994627, -0.022264603525400162, 0.033943451941013336, -0.024891864508390427, 0.028401272371411324, 0.025582240894436836, 0.004357994068413973, -0.0025865102652460337, -0.03768298402428627, 0.015360849909484386, -0.002370767993852496, -0.009075558744370937, 0.04828791692852974, -0.049630314111709595, 0.01436364185065031, 0.0006298475782386959, -0.067311592400074, 0.06673628091812134, -0.018985319882631302, 0.04422237351536751, 0.015447147190570831, 0.011918562464416027, -0.03357908874750137, -0.007833842188119888, -0.02784513682126999, -0.00231563369743526, 0.01889902353286743, -0.02500692754983902, -0.04863310232758522, -0.03697343170642853, 0.04637020826339722, 0.019435983151197433, 0.01732650212943554, -0.001718746847473085, -0.025198698043823242, -0.053695857524871826, 0.0014406789559870958, 0.020634550601243973, -0.026943814009428024, 0.006405148655176163, 0.05258358642458916, -0.010576166212558746, -0.019790759310126305, 0.013663677498698235, -0.03482559695839882, -0.021439988166093826, -0.020634550601243973, -0.009679636918008327, -0.040310245007276535, 0.0024187106173485518, 0.009569368325173855, 0.026502739638090134, -0.028075262904167175, 0.00562847638502717, -0.04249643534421921, -0.00953580904752016, 0.03421192988753319, -0.026195906102657318, -0.07709190994501114, -0.020059237256646156, 0.020903030410408974, 0.025716479867696762, 0.05438623204827309, -0.048594750463962555, -0.034365348517894745, 0.028612220659852028, -0.0055661508813500404, -0.008639279752969742, 0.034192755818367004, 0.02318510413169861, 0.0016072799917310476, 0.023683708161115646, -0.008490657433867455, 0.02897658571600914, -0.0012255359906703234, 0.03183397278189659, 0.008624897338449955, 0.04560312256217003, -0.0025337731931358576, -0.006395560223609209, -0.021324925124645233, 0.007690013851970434, 0.012004859745502472, -0.08085061609745026, -0.02586989663541317, -0.0037563128862529993, -0.006227760575711727, 0.08384224772453308, 0.02017430029809475, -0.008078349754214287, 0.045219581574201584, 0.013634911738336086, 0.024297375231981277, -0.09281712025403976, 0.024450791999697685, -0.0034734506625682116, 0.002665615640580654, 0.03630223497748375, -0.019790759310126305, 0.015916986390948296, -0.021229039877653122, -0.013721209019422531, -0.017729220911860466, -0.009737168438732624, -0.05154802277684212, 0.015821101143956184, -0.009382392279803753, 0.022264603525400162, 0.012963714078068733, 0.010058384388685226, -0.004612090531736612, -0.03379003703594208, 0.026521917432546616, 0.02285909280180931, -0.06911423802375793, -0.008596131578087807, -0.027442418038845062, 0.023779593408107758, 0.03779804706573486, 0.03645564988255501, 0.006572948303073645, -0.013088365085422993, 0.021324925124645233, -0.051087770611047745, 0.04587160423398018, 0.034979015588760376, 0.01189938560128212, -0.005350408609956503, -0.036513183265924454, 0.011755556799471378, 0.021938592195510864, 0.004794273059815168, -0.014056808315217495, 0.01350067276507616, 0.05810658633708954, -0.025371292605996132, -0.07360167801380157, 0.034614648669958115, -0.04311010241508484, -0.011276129633188248, 0.011736379936337471, -0.03283118084073067, 0.013539026491343975, -0.004516205284744501, 0.015821101143956184, -0.06474185734987259, 0.010154269635677338, -0.03622552752494812, 0.0002594900142867118, 0.02508363500237465, 0.01263770367950201, 0.08330528438091278, -0.019944176077842712, -0.015341673046350479, -0.06029277667403221, 0.07340990751981735, 0.004185400437563658, 0.03839253634214401, -0.00020720247994177043, 0.03751039132475853, -0.02665615640580654, 0.06244061142206192, 0.032888710498809814, 0.012771942652761936, -0.030395690351724625, -0.033233899623155594, -0.03432699292898178, 0.0030587459914386272, 0.010480280965566635, -0.015495089814066887, 0.07287294417619705, 0.04663868620991707, -0.048441331833601, -0.014756771735846996, -0.11590634286403656, -0.000965446699410677, -0.02354946918785572, -0.026176730170845985, 0.02491104230284691, 0.007268117740750313, -0.032390106469392776, 0.026330146938562393, 0.06297756731510162, -0.04637020826339722, 0.03267776221036911, -0.0006933716940693557, -0.008840639144182205, 0.048326268792152405, -0.022456374019384384, 0.0034878335427492857, -0.033329784870147705, -0.04111568257212639, 0.015149902552366257, 0.010144681669771671, -0.05457800254225731, 0.02172764390707016, -0.016319705173373222, -0.02268650010228157, -0.018151117488741875, -0.04069378972053528, -0.03553514927625656, 0.0009966094512492418, -0.008078349754214287, 0.01843877322971821, 0.01760457083582878, 0.0042381370440125465, 0.0012057595886290073 ]
39,924
tldextract.tldextract
_extract_netloc
null
def _extract_netloc( self, netloc: str, include_psl_private_domains: bool | None, session: requests.Session | None = None, ) -> ExtractResult: netloc_with_ascii_dots = ( netloc.replace("\u3002", "\u002e") .replace("\uff0e", "\u002e") .replace("\uff61", "\u002e") ) min_num_ipv6_chars = 4 if ( len(netloc_with_ascii_dots) >= min_num_ipv6_chars and netloc_with_ascii_dots[0] == "[" and netloc_with_ascii_dots[-1] == "]" ): if looks_like_ipv6(netloc_with_ascii_dots[1:-1]): return ExtractResult("", netloc_with_ascii_dots, "", is_private=False) labels = netloc_with_ascii_dots.split(".") suffix_index, is_private = self._get_tld_extractor( session=session ).suffix_index(labels, include_psl_private_domains=include_psl_private_domains) num_ipv4_labels = 4 if suffix_index == len(labels) == num_ipv4_labels and looks_like_ip( netloc_with_ascii_dots ): return ExtractResult("", netloc_with_ascii_dots, "", is_private) suffix = ".".join(labels[suffix_index:]) if suffix_index != len(labels) else "" subdomain = ".".join(labels[: suffix_index - 1]) if suffix_index >= 2 else "" domain = labels[suffix_index - 1] if suffix_index else "" return ExtractResult(subdomain, domain, suffix, is_private)
(self, netloc: str, include_psl_private_domains: bool | None, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract.ExtractResult
[ -0.011728395707905293, -0.00758418207988143, -0.01011224277317524, 0.018815994262695312, -0.03383989632129669, -0.031131261959671974, -0.0029456422198563814, -0.011060265824198723, 0.01287505216896534, -0.015971926972270012, 0.008843697607517242, 0.0018802451668307185, -0.015430198982357979, -0.029632482677698135, 0.011484618298709393, 0.028494855388998985, -0.006694846320897341, -0.008410315960645676, -0.009570515714585781, -0.03817371651530266, -0.030517304316163063, -0.008744381368160248, 0.047419194132089615, -0.021235710009932518, -0.013868218287825584, 0.014301599934697151, 0.04182134568691254, -0.035519253462553024, -0.03082428313791752, 0.00011751532292691991, 0.061720795929431915, -0.045757897198200226, -0.03261198103427887, -0.006162147969007492, -0.030481187626719475, -0.023655423894524574, -0.011159582063555717, 0.004433135036379099, -0.07129131257534027, -0.005340528208762407, -0.06428497284650803, -0.04694969952106476, -0.02376377023756504, -0.006414954084903002, 0.023095639422535896, 0.019267434254288673, -0.04326595366001129, -0.025677872821688652, -0.08169247210025787, -0.007412634789943695, -0.013967535458505154, 0.042182497680187225, -0.015141277574002743, -0.010888718068599701, 0.007051483262330294, -0.018093692138791084, 0.04337429627776146, 0.09873882681131363, -0.006911537144333124, 0.02636406198143959, -0.03712637722492218, -0.029108813032507896, -0.043554872274398804, 0.0724831074476242, 0.010897747240960598, 0.003974923864006996, -0.022608084604144096, -0.025858448818325996, -0.0663074180483818, -0.04489113390445709, 0.03918493911623955, -0.005629449151456356, -0.04182134568691254, -0.036006808280944824, 0.047997038811445236, -0.029704712331295013, 0.007177886553108692, -0.016549767926335335, 0.06229863688349724, 0.004171300213783979, -0.029560253024101257, -0.021091248840093613, 0.02916298620402813, -0.020278658717870712, 0.05431718751788139, -0.026616867631673813, 0.08364269137382507, -0.04597458988428116, -0.003142018336802721, 0.07699750363826752, -0.04081012308597565, 0.0024761450476944447, -0.0004765507183037698, -0.008171053603291512, -0.061720795929431915, 0.04369933530688286, 0.029469965025782585, 0.01571911945939064, -0.0072140018455684185, -0.03241334855556488, 0.03774033486843109, 0.002390371635556221, -0.14446060359477997, 0.012333324179053307, 0.009480227716267109, 0.035356733947992325, -0.035194214433431625, 0.04438552260398865, -0.03075205162167549, 0.020116139203310013, -0.008035621605813503, -0.035230331122875214, -0.02119959518313408, 0.027610033750534058, 0.04759977012872696, -0.04521616920828819, -0.02136211283504963, 0.026815500110387802, -0.04651631787419319, -0.010789401829242706, -0.009245478548109531, 0.04991114139556885, -0.07678081095218658, 0.008952043019235134, -0.042543649673461914, 0.060420650988817215, 0.02818787656724453, 0.010346991010010242, 0.05020006000995636, -0.010446308180689812, 0.05771201476454735, 0.003146532690152526, -0.026779385283589363, 0.03463442996144295, 0.016784517094492912, 0.03165493160486221, -0.054281074553728104, 0.04084623605012894, -0.07114685326814651, 0.0219399556517601, -0.007548066787421703, -0.026327945291996002, 0.037306953221559525, -0.006342723499983549, -0.019754989072680473, -0.0005496274679899216, -0.022192761301994324, -0.026996076107025146, -0.024431901052594185, -0.08400384336709976, 0.015791350975632668, -0.038968250155448914, -0.01738041639328003, 0.019754989072680473, -0.02343873307108879, 0.0005925142322666943, 0.0007629325846210122, -0.0352664478123188, 0.05579791218042374, -0.040196165442466736, -0.044132716953754425, -0.03846263885498047, 0.004543737508356571, -0.04243530333042145, -0.03123960644006729, -0.011872855946421623, 0.06952166557312012, -0.06399604678153992, -0.019646642729640007, 0.045757897198200226, -0.003218763042241335, 0.07483059912919998, 0.025804275646805763, 0.02627377398312092, -0.0019163602264598012, 0.030156152322888374, -0.004611453507095575, -0.01366958487778902, -0.04532451555132866, 0.011565877124667168, 0.026183485984802246, 0.013958506286144257, 0.005123837385326624, 0.020459234714508057, 0.012947281822562218, 0.05247531458735466, 0.0030269012786448, -0.008238769136369228, 0.0019524754025042057, 0.040232278406620026, 0.021506574004888535, 0.025822333991527557, 0.002279768930748105, 0.011240840889513493, 0.011349186301231384, -0.013732786290347576, -0.02627377398312092, 0.056195177137851715, -0.07569736242294312, -0.018978511914610863, -0.036494363099336624, 0.03277450054883957, -0.05150020867586136, 0.006798677612096071, -0.0848706066608429, 0.026815500110387802, -0.04333818331360817, 0.08508729934692383, -0.05601460114121437, 0.010753287002444267, -0.0004125027626287192, 0.002057434991002083, 0.010735228657722473, 0.009173248894512653, 0.0020675924606621265, 0.016026098281145096, -0.056484099477529526, 0.08739867061376572, 0.005805510561913252, 0.007480350788682699, 0.04507170990109444, -0.09823321551084518, 0.08205362409353256, 0.021470457315444946, -0.00404038280248642, -0.007173371966928244, -0.013380663469433784, 0.01819300837814808, 0.026418233290314674, -0.04857487976551056, 0.035681769251823425, -0.01754293590784073, 0.037920910865068436, 0.027321113273501396, 0.07916441559791565, 0.03030061349272728, 0.014671780169010162, 0.015376025810837746, 0.13312044739723206, -0.013967535458505154, -0.07306095212697983, 0.013091742992401123, -0.014283542521297932, -0.0016962835798040032, -0.007985963486135006, 0.008766952902078629, -0.0050200060941278934, -0.005652021151036024, 0.032684214413166046, 0.006866393145173788, -0.025822333991527557, 0.05666467547416687, -0.003069787984713912, 0.027158593758940697, 0.01608929969370365, 0.015646889805793762, -0.06843821704387665, -0.020892616361379623, 0.01620667427778244, -0.012008287943899632, -0.033243998885154724, -0.0346163734793663, 0.013994621112942696, -0.07132742553949356, -0.08956557512283325, 0.003941066097468138, 0.0448550209403038, -0.024468015879392624, 0.008301970548927784, -0.0009508442599326372, 0.0018509015208110213, 0.1245250478386879, -0.018906282261013985, 0.00406069727614522, 0.016342107206583023, -0.006699360907077789, 0.02221081778407097, -0.028043415397405624, 0.03983501344919205, -0.04308537766337395, 0.013552211225032806, 0.023547079414129257, -0.050344523042440414, -0.006934109143912792, 0.03151046857237816, -0.014265485107898712, -0.010852603241801262, 0.026418233290314674, -0.010906776413321495, -0.02668909728527069, -0.03663882240653038, -0.04720250517129898, 0.07938110828399658, 0.01324523240327835, 0.01859930343925953, 0.01973693072795868, -0.05276423692703247, 0.03154658526182175, -0.007448750082403421, 0.003681488335132599, -0.07103850692510605, 0.01856318861246109, 0.03712637722492218, 0.006107975263148546, 0.0406295470893383, 0.004478279035538435, 0.016378222033381462, 0.013868218287825584, 0.033045362681150436, -0.00975109077990055, 0.005272812210023403, -0.036945801228284836, 0.0173894464969635, -0.005403729621320963, 0.015475342981517315, 0.037993140518665314, 0.009516342543065548, 0.03423716500401497, 0.025334779173135757, -0.009227421134710312, 0.03167298808693886, 0.003715346334502101, 0.018996570259332657, 0.05579791218042374, -0.0005702244234271348, -0.042868684977293015, 0.004694969858974218, 0.011529762297868729, 0.00454825209453702, 0.01908685825765133, 0.0021014504600316286, -0.01928549073636532, -0.068257637321949, 0.01541214156895876, 0.03042701631784439, -0.012360410764813423, -0.046769123524427414, -0.0367291085422039, -0.016504624858498573, -0.0346163734793663, -0.028530970215797424, -0.018545130267739296, -0.04915272071957588, 0.03430939465761185, 0.05312538892030716, -0.028856007382273674, -0.007381034083664417, 0.020603694021701813, -0.061034608632326126, 0.012116633355617523, 0.005448873620480299, 0.01228818017989397, -0.012477785348892212, 0.0169018916785717, 0.00505612138658762, 0.047021929174661636, -0.0032661641016602516, -0.05774812772870064, 0.06518784910440445, 0.0065458714962005615, 0.025822333991527557, -0.014590521343052387, 0.016793545335531235, -0.05529229715466499, 0.02253585495054722, -0.04438552260398865, 0.04409660026431084, 0.013850160874426365, -0.01305562723428011, -0.018247181549668312, -0.037018030881881714, -0.009516342543065548, 0.01970081590116024, -0.04886380210518837, -0.0033113081008195877, -0.004848459269851446, 0.08219808340072632, -0.042218614369630814, -0.08183693885803223, -0.020856499671936035, -0.02546118199825287, 0.057784244418144226, 0.020693982020020485, 0.021903838962316513, 0.05435330420732498, 0.000026839483325602487, 0.04138796404004097, 0.06182914227247238, -0.053233735263347626, 0.03560953959822655, 0.02314981259405613, 0.02831427939236164, 0.07277203351259232, -0.0025483753997832537, -0.033280111849308014, -0.0342913381755352, -0.08111463487148285, -0.009733033366501331, -0.0006026715855114162, 0.006879936438053846, 0.028097588568925858, 0.010825516656041145, -0.014355773106217384, 0.015791350975632668, 0.011836741119623184, 0.02766420692205429, -0.01216177735477686, -0.04601070284843445, -0.03441774100065231, -0.03667493537068367, -0.0007352819084189832, -0.020098082721233368, 0.03127572312951088, -0.025822333991527557, -0.03687357157468796, 0.08797650784254074, -0.019628584384918213, 0.07779204100370407, -0.027772551402449608, -0.0031713617499917746, -0.006591015495359898, -0.09454946964979172, -0.0007014239672571421, 0.02360125258564949, 0.05211416631937027, -0.021091248840093613, -0.019429951906204224, -0.085159532725811, 0.01078037265688181, -0.025858448818325996, -0.004654340445995331, -0.004121641628444195, -0.035681769251823425, 0.008157510310411453, 0.091010183095932, -0.028440682217478752, 0.02822399139404297, 0.02031477354466915, -0.019032685086131096, 0.025081973522901535, -0.007990477606654167, -0.024955570697784424, 0.005760366562753916, 0.04911660775542259, 0.02546118199825287, -0.013714728876948357, -0.02367348223924637, -0.03147435560822487, 0.002215438988059759, -0.04402437061071396, -0.006162147969007492, -0.04048508405685425, 0.007484865374863148, 0.08537621796131134, 0.014915557578206062, 0.011574906297028065, -0.015809407457709312, 0.059084389358758926, -0.01640530861914158, 0.005205096211284399, -0.05626740679144859, 0.036006808280944824, 0.07389160245656967, 0.029722770676016808, 0.005909341853111982, 0.026291830465197563, 0.04861099645495415, -0.03290090337395668, -0.02919910103082657, -0.04601070284843445, -0.05113905668258667, -0.03885990381240845, 0.011078323237597942, 0.029144927859306335, 0.035916518419981, -0.007426178082823753, -0.02018837071955204, 0.01803048886358738, 0.003013357985764742, -0.03091457113623619, -0.04492725059390068, 0.0077828154899179935, -0.007006339728832245, -0.016098329797387123, -0.01885210908949375, 0.012902137823402882, -0.0014254199340939522, 0.009886522777378559, -0.004685941152274609, 0.03979889675974846, -0.03885990381240845, 0.07721419632434845, 0.011529762297868729, -0.09144356846809387, -0.01941189356148243, -0.004245787393301725, 0.02546118199825287, 0.023222042247653008, 0.049008261412382126, -0.06312928348779678, 0.002181580988690257, 0.038896020501852036, 0.03857098147273064, -0.01819300837814808, 0.004227729979902506, 0.018147863447666168, 0.02822399139404297, 0.05637575313448906, -0.008193625137209892, 0.018337467685341835, -0.05236697196960449, 0.015105162747204304, 0.052294742316007614, 0.0100761279463768, -0.019718872383236885, 0.0416046567261219, 0.006983767729252577, 0.010085156187415123, 0.015773292630910873, 0.02360125258564949, 0.060745686292648315, 0.051355745643377304, 0.021235710009932518, -0.011258898302912712, 0.019231319427490234, 0.058181509375572205, 0.04301314800977707, 0.0803200975060463, -0.061142951250076294, -0.023330388590693474, -0.020603694021701813, 0.0069250804372131824, 0.010717171244323254, 0.024016575887799263, 0.03138406574726105, 0.06616295874118805, -0.04073789343237877, 0.02594873681664467, -0.03203414008021355, 0.06020395830273628, -0.008464489132165909, -0.010662999004125595, -0.008414830081164837, -0.0004974298062734306, -0.05410049855709076, 0.006265978794544935, 0.01001292560249567, 0.046444084495306015, -0.016197646036744118, 0.0442049466073513, 0.016667142510414124, -0.005354071501642466, 0.06656022369861603, 0.025334779173135757, 0.08133132010698318, 0.07627519965171814, -0.05171689763665199, 0.007557095494121313, -0.0438799113035202, -0.010527567006647587, -0.00595899997279048, -0.02847679704427719, 0.005846140440553427, 0.011349186301231384, -0.052583660930395126, 0.010816488415002823, -0.0342913381755352, -0.013407750055193901, -0.044818904250860214, 0.013579296879470348, -0.018490957096219063, -0.021705206483602524, -0.006044773850589991, 0.05186135694384575, -0.027284998446702957, 0.01596289686858654, 0.03712637722492218, -0.026327945291996002, 0.09953335672616959, 0.04048508405685425, -0.022644201293587685, 0.04879157245159149, 0.03943774476647377, 0.009353824891149998, -0.008130423724651337, 0.013588326051831245, -0.005679107736796141, -0.06493504345417023, -0.007931790314614773, -0.03969055414199829, 0.018301352858543396, 0.055256184190511703, 0.03270227089524269, 0.03638601675629616, 0.01466275192797184, -0.07017174363136292, -0.03871544450521469, 0.03781256452202797, 0.03351486101746559, -0.0331537090241909, 0.004150985274463892, -0.020134197548031807, 0.014166168868541718, -0.023619309067726135, 0.04333818331360817, -0.021759379655122757, -0.03609709441661835, -0.02815176174044609, -0.022571969777345657, -0.06464612483978271, 0.0015552086988463998, -0.009453141130506992, -0.014337715692818165, -0.025316722691059113, -0.028693487867712975, -0.05319761857390404, -0.0178770013153553, 0.025479240342974663, -0.024720821529626846, -0.047094158828258514, 0.011854798533022404, -0.017001207917928696, -0.02165103331208229, 0.034219108521938324, -0.02603902481496334, -0.029469965025782585, 0.028097588568925858, 0.03042701631784439, 0.04406048730015755, 0.12120245397090912, 0.012360410764813423, 0.034092701971530914, 0.021741321310400963, -0.037343066185712814, -0.006383353378623724, -0.03741529956459999, 0.0199897363781929, -0.004983890801668167, -0.0186895914375782, 0.0032165057491511106, -0.06385158747434616, -0.0020721068140119314, 0.009949724189937115, -0.026020966470241547, -0.004631768446415663, -0.012495842762291431, -0.010301847010850906, -0.027465572580695152, 0.06016784533858299, -0.021632976830005646, 0.009498285129666328, 0.07743088901042938, 0.05810927972197533, 0.009678861126303673, -0.06027618795633316, 0.0065819863229990005, -0.03987112641334534, 0.024720821529626846, 0.017235957086086273, -0.007101141847670078, -0.021669091656804085, -0.01025670301169157, 0.005624935030937195, 0.00491617526859045, 0.016784517094492912, 0.03817371651530266, 0.011647136881947517, -0.06247921288013458, 0.03642212972044945, -0.08978226780891418, -0.000016585107005084865, 0.030246440321207047, -0.04864710941910744, 0.06457389146089554, 0.013010483235120773, -0.03459831699728966, -0.006627130322158337, -0.023258158937096596, -0.05319761857390404, -0.02672521211206913, 0.05962611734867096, -0.01023864559829235, 0.012568073347210884, -0.0321785993874073, -0.030715936794877052, 0.007403606083244085, 0.03741529956459999, -0.0247027650475502, 0.04886380210518837, -0.014969730749726295, 0.0399794727563858, 0.03192579373717308, 0.005263783503323793, 0.04633574187755585, -0.0033090508077293634, 0.032882846891880035, 0.0386793278157711, -0.04507170990109444, -0.01305562723428011, 0.020693982020020485, -0.006618101615458727, -0.021705206483602524, -0.058506548404693604, -0.01710052415728569, -0.02018837071955204, 0.004399276804178953, -0.013868218287825584, 0.023619309067726135, -0.020657867193222046, 0.06461000442504883, 0.00960663054138422, -0.02766420692205429, -0.010509509593248367, -0.05373934656381607, -0.0006162147619761527, 0.017858942970633507, 0.017813798040151596, 0.01989944837987423, -0.011258898302912712, -0.021578803658485413, 0.042796455323696136, -0.021344054490327835, 0.0033519375137984753, 0.06442943215370178, -0.03326205536723137, 0.0066451882012188435, -0.021777436137199402, -0.054281074553728104, 0.004494079388678074, 0.04395214095711708, -0.02831427939236164, 0.06215417757630348, -0.0001402989000780508, 0.006618101615458727, -0.03286479040980339, -0.0367291085422039, -0.05377546325325966, 0.026671040803194046, -0.02753780409693718, -0.014220341108739376, 0.016315020620822906, -0.01368764229118824, 0.04182134568691254, 0.019032685086131096, -0.04821372777223587, 0.004636282566934824, 0.010383105836808681, 0.013570268638432026, 0.006076374556869268, -0.01993556320667267, 0.03618738427758217, 0.017967287451028824, 0.04243530333042145, -0.016712287440896034, 0.012188863940536976, -0.03878767415881157, 0.008762438781559467, -0.005010977387428284, -0.022571969777345657, 0.0352664478123188, -0.001501035992987454, 0.01419325452297926, -0.00557527644559741, 0.00033716880716383457, -0.056809134781360626, -0.029433848336338997, -0.06526008248329163, -0.02278866060078144 ]
39,925
tldextract.tldextract
_get_tld_extractor
Get or compute this object's TLDExtractor. Looks up the TLDExtractor in roughly the following order, based on the settings passed to __init__: 1. Memoized on `self` 2. Local system _cache file 3. Remote PSL, over HTTP 4. Bundled PSL snapshot file
def _get_tld_extractor( self, session: requests.Session | None = None ) -> _PublicSuffixListTLDExtractor: """Get or compute this object's TLDExtractor. Looks up the TLDExtractor in roughly the following order, based on the settings passed to __init__: 1. Memoized on `self` 2. Local system _cache file 3. Remote PSL, over HTTP 4. Bundled PSL snapshot file """ if self._extractor: return self._extractor public_tlds, private_tlds = get_suffix_lists( cache=self._cache, urls=self.suffix_list_urls, cache_fetch_timeout=self.cache_fetch_timeout, fallback_to_snapshot=self.fallback_to_snapshot, session=session, ) if not any([public_tlds, private_tlds, self.extra_suffixes]): raise ValueError("No tlds set. Cannot proceed without tlds.") self._extractor = _PublicSuffixListTLDExtractor( public_tlds=public_tlds, private_tlds=private_tlds, extra_tlds=list(self.extra_suffixes), include_psl_private_domains=self.include_psl_private_domains, ) return self._extractor
(self, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract._PublicSuffixListTLDExtractor
[ 0.038718078285455704, 0.0021746838465332985, -0.053750667721033096, 0.026252031326293945, -0.005687634460628033, 0.009422865696251392, 0.010275323875248432, 0.02821359969675541, -0.0198906809091568, 0.007479629013687372, 0.04491443932056427, 0.049570873379707336, -0.010064500384032726, -0.019194047898054123, 0.011219443753361702, 0.024198800325393677, -0.03849808871746063, 0.04399781674146652, -0.021503932774066925, -0.056353870779275894, -0.00668675173074007, 0.014647606760263443, 0.057527147233486176, 0.03407997637987137, -0.047077663242816925, 0.006292604375630617, 0.02691199816763401, -0.03389665111899376, -0.001977610168978572, 0.01791994459927082, 0.08894892036914825, -0.020220663398504257, -0.03692150115966797, 0.027571965008974075, 0.013712652958929539, 0.029093556106090546, -0.02823193371295929, 0.03671984374523163, -0.05969037115573883, -0.010348653420805931, 0.0011938990792259574, -0.02106395550072193, 0.05954371392726898, -0.016691671684384346, -0.011980239301919937, 0.04117462411522865, -0.05569390580058098, -0.0027567383367568254, 0.0010930708376690745, -0.026765339076519012, -0.002387798158451915, 0.021283945068717003, 0.004150002263486385, -0.05745381861925125, 0.004113337490707636, 0.025262080132961273, 0.03637152910232544, 0.0826425701379776, -0.026838669553399086, 0.05690384283661842, 0.007860026322305202, -0.015234244056046009, 0.0038085610140115023, 0.05481394752860069, 0.008891225792467594, 0.0015467982739210129, -0.0099453404545784, -0.02291552908718586, -0.04454778879880905, 0.019670691341161728, 0.033841654658317566, -0.05122079327702522, -0.06797663122415543, 0.008052517659962177, 0.018616575747728348, -0.0033662912901490927, 0.008506244979798794, -0.07046984136104584, 0.041944585740566254, -0.003964386880397797, -0.052577391266822815, 0.02253054827451706, 0.025463737547397614, -0.03204507753252983, 0.07611622661352158, -0.05646386742591858, 0.07230307906866074, -0.03398831561207771, -0.013703486882150173, 0.058847080916166306, -0.06775663793087006, 0.01042198296636343, 0.03908472880721092, -0.01721414551138878, -0.040441326797008514, -0.029276881366968155, -0.04033133387565613, 0.017122484743595123, -0.02199890837073326, -0.007869193330407143, 0.04165126755833626, 0.05092747509479523, -0.04264121875166893, 0.06724333018064499, 0.04704099893569946, 0.04605104774236679, -0.03963470086455345, -0.007860026322305202, -0.02498709410429001, -0.0009017261327244341, -0.018433252349495888, 0.021137284114956856, 0.01954236440360546, 0.05056082457304001, -0.004729765467345715, -0.04352117329835892, -0.023465503007173538, -0.020165666937828064, -0.044657785445451736, -0.008020435459911823, -0.03483160585165024, 0.06911323964595795, -0.08872893452644348, 0.01678333431482315, -0.033071693032979965, -0.045207757502794266, 0.05741715058684349, -0.023997142910957336, 0.06170693784952164, -0.03992801904678345, 0.042347900569438934, 0.03090846724808216, 0.011063617654144764, 0.04436446726322174, 0.022860532626509666, 0.0005519778351299465, -0.00938620138913393, 0.053347352892160416, -0.06797663122415543, 0.018094101920723915, -0.0320267453789711, -0.015958374366164207, 0.021430604159832, -0.05521726235747337, 0.00568305142223835, 0.031770091503858566, -0.0011927533196285367, 0.03464828059077263, 0.01591254398226738, -0.00838250108063221, -0.017461633309721947, -0.06398016214370728, 0.01061447337269783, 0.013520162552595139, -0.0238871481269598, -0.012493547052145004, -0.04682100936770439, 0.03470327705144882, 0.020019007846713066, -0.021265611052513123, 0.016994157806038857, -0.044437795877456665, -0.040074680000543594, -0.08528243750333786, -0.008753732778131962, -0.007745448965579271, 0.044657785445451736, -0.023777153342962265, 0.026435354724526405, 0.05510726571083069, -0.007745448965579271, 0.05034083500504494, -0.015518397092819214, 0.03758146986365318, 0.013071018271148205, 0.05496060848236084, 0.05719716101884842, 0.04641769826412201, -0.012026069685816765, 0.06306353956460953, -0.024162134155631065, -0.009661187417805195, -0.05917706340551376, -0.003964386880397797, 0.02597704529762268, 0.11564093083143234, 0.021265611052513123, 0.027241982519626617, -0.04165126755833626, 0.08022268861532211, -0.009853677824139595, 0.013712652958929539, 0.01800244115293026, -0.03692150115966797, -0.002903397660702467, 0.038168106228113174, -0.010559475980699062, 0.0008255319553427398, -0.04355783760547638, 0.03358500078320503, -0.022585546597838402, 0.03182508796453476, -0.0015777342487126589, 0.041211288422346115, -0.056390535086393356, 0.042897872626781464, -0.032485056668519974, 0.07626288384199142, -0.10530143976211548, 0.027993611991405487, 0.025353742763400078, -0.018680740147829056, -0.045024432241916656, 0.032851703464984894, 0.015014255419373512, -0.029606863856315613, -0.05001085251569748, 0.0322650671005249, 0.006100113969296217, -0.0107886316254735, 0.03406164422631264, -0.04113795980811119, 0.03144010528922081, 0.013795149512588978, 0.036316532641649246, -0.018616575747728348, 0.02238388918340206, -0.002836942672729492, 0.0031073458958417177, -0.06577673554420471, 0.04003801569342613, -0.026582015678286552, 0.03239339217543602, 0.042714547365903854, 0.094008669257164, -0.03505159541964531, 0.027040325105190277, 0.021173950284719467, 0.03659151867032051, 0.009807846508920193, -0.018827399238944054, 0.014170963317155838, 0.0351065918803215, 0.01298852264881134, -0.04260455444455147, 0.05356734246015549, 0.006636337377130985, -0.02936854399740696, 0.008451247587800026, -0.006343018729239702, -0.002875898964703083, 0.05459395796060562, 0.0017140816198661923, 0.0119435740634799, 0.025115421041846275, -0.044071149080991745, -0.00020810165733564645, -0.012383552268147469, 0.008836228400468826, -0.03294336423277855, -0.021448936313390732, -0.0020016715861856937, -0.020550647750496864, -0.030450155958533287, -0.09342203289270401, -0.0038085610140115023, 0.04682100936770439, -0.02826859802007675, -0.050854142755270004, 0.01893739402294159, 0.008437498472630978, 0.024858767166733742, -0.025445405393838882, 0.012420217506587505, 0.0076171220280230045, 0.005944288335740566, 0.02313551865518093, -0.0058663757517933846, 0.013960140757262707, 0.02768195979297161, 0.04205458238720894, 0.009642855264246464, 0.013749318197369576, -0.043337851762771606, 0.02632535994052887, 0.0007716804975643754, -0.03133011236786842, 0.004076672717928886, 0.0034762858413159847, -0.03294336423277855, -0.0343366302549839, -0.03254005312919617, 0.04300786554813385, 0.000619865080807358, 0.028671910986304283, 0.013034353032708168, -0.06618005037307739, -0.017379138618707657, 0.0686732605099678, -0.05151411145925522, -0.10090166330337524, 0.012172729708254337, 0.02766362763941288, 0.053530678153038025, 0.010696968995034695, -0.022402221336960793, 0.006599672604352236, -0.0012924359180033207, 0.036866504698991776, -0.002924021566286683, 0.018699072301387787, -0.008744566701352596, 0.016150865703821182, 0.020348990336060524, 0.006315520033240318, -0.023612162098288536, -0.03461161628365517, 0.036866504698991776, -0.014931759797036648, 0.03963470086455345, -0.04249455779790878, 0.05378733202815056, 0.012200227938592434, -0.0003540449251886457, 0.044437795877456665, -0.009349536150693893, 0.04249455779790878, 0.03882807493209839, 0.027755290269851685, 0.018323257565498352, -0.05437396839261055, -0.03371332958340645, 0.003499201498925686, 0.03633486479520798, 0.001195044838823378, -0.007814195938408375, 0.02423546463251114, -0.038718078285455704, 0.024675441905856133, -0.04454778879880905, -0.019010724499821663, -0.042714547365903854, -0.08220259100198746, 0.03596821427345276, 0.05444730073213577, 0.0013508704723790288, 0.016453349962830544, 0.005192658863961697, 0.05455729365348816, -0.07794946432113647, 0.021943911910057068, -0.03244838863611221, -0.0009624522645026445, 0.043887823820114136, 0.03897473216056824, -0.02520708367228508, -0.03208174183964729, 0.02100895717740059, 0.011961906217038631, 0.013648489490151405, -0.015949208289384842, -0.023153850808739662, -0.0371781550347805, 0.001198482234030962, -0.00227322056889534, -0.061890263110399246, 0.017379138618707657, -0.0227322056889534, 0.044804442673921585, -0.05532725527882576, -0.030395159497857094, -0.019597360864281654, 0.025317078456282616, -0.03127511590719223, -0.001581171527504921, -0.010623639449477196, 0.003787937108427286, -0.004807678051292896, -0.02654534950852394, 0.03945137560367584, 0.00020480755483731627, 0.04696767032146454, 0.009124964475631714, 0.043704498559236526, 0.027920281514525414, 0.0051239123567938805, 0.004518942441791296, 0.01571088656783104, 0.06156028062105179, 0.01145776454359293, 0.03769146278500557, 0.0024130053352564573, 0.03013850562274456, -0.03171509504318237, 0.015206745825707912, 0.0003918555739801377, -0.09994837641716003, 0.016059203073382378, -0.00227322056889534, -0.010852795094251633, 0.06658336520195007, -0.009349536150693893, 0.01353849470615387, 0.05642719939351082, -0.031036794185638428, -0.011439432390034199, 0.09686852991580963, 0.006393433082848787, -0.018524914979934692, 0.03923138603568077, -0.05415397882461548, -0.035326581448316574, 0.004949754569679499, -0.08916891366243362, -0.03992801904678345, 0.04524442180991173, -0.014418451115489006, 0.053164031356573105, 0.004848926328122616, 0.04069798067212105, -0.009441198781132698, -0.030651813372969627, -0.02748030424118042, -0.006347601767629385, 0.012896860018372536, -0.005641803611069918, -0.025665393099188805, -0.01487676240503788, -0.043667834252119064, -0.017076652497053146, 0.017039988189935684, 0.0076950350776314735, -0.022053906694054604, -0.0006038242136128247, 0.10640139132738113, -0.010165329091250896, -0.03765479847788811, 0.016490016132593155, -0.045537739992141724, -0.0480676144361496, -0.018259095028042793, -0.02517041750252247, 0.010687802918255329, 0.0640534907579422, 0.08014936000108719, -0.03221007063984871, -0.05741715058684349, -0.015115083195269108, -0.007942522875964642, -0.048580922186374664, 0.011411934159696102, -0.004725182428956032, 0.060716986656188965, 0.06544675678014755, -0.024602113291621208, -0.003806269494816661, 0.05041416734457016, -0.02447378635406494, -0.01593087613582611, 0.005582223180681467, -0.045574404299259186, 0.012539378367364407, 0.12605375051498413, -0.010339487344026566, -0.0031944247893989086, 0.023428838700056076, 0.024748772382736206, -0.005660135764628649, -0.015380904078483582, -0.025280412286520004, -0.03695816546678543, -0.015839213505387306, -0.01651751436293125, -0.029331877827644348, -0.009523694403469563, -0.00043138486216776073, -0.003677942557260394, -0.021558931097388268, 0.013098516501486301, -0.05173410102725029, -0.023227181285619736, 0.02693033032119274, 0.027938613668084145, 0.0034694112837314606, -0.019615693017840385, -0.053897324949502945, -0.012246059253811836, 0.013501830399036407, -0.001931779203005135, 0.006196359172463417, -0.00786461029201746, 0.06266022473573685, -0.003013392211869359, -0.038021448999643326, -0.049387551844120026, 0.02445545420050621, 0.03340167552232742, 0.03010183945298195, 0.049387551844120026, -0.019377371296286583, 0.013043520040810108, -0.03541824221611023, 0.07200976461172104, -0.019670691341161728, 0.05573057010769844, -0.0068792421370744705, -0.06599672883749008, 0.03089013509452343, -0.032851703464984894, 0.028488587588071823, -0.0198906809091568, -0.0001273960224352777, -0.06823328137397766, 0.01145776454359293, -0.013401001691818237, 0.05158744007349014, -0.06669335812330246, -0.017186647281050682, -0.01591254398226738, 0.01591254398226738, 0.029276881366968155, 0.06676668673753738, 0.015885045751929283, -0.061853598803281784, 0.022970527410507202, -0.007603372912853956, -0.00785544328391552, 0.05169743672013283, 0.013071018271148205, -0.009216626174747944, 0.0005986682372167706, -0.06830660998821259, -0.03708649426698685, -0.00830000452697277, 0.03222840279340744, 0.03860808536410332, -0.08689568936824799, -0.04792095720767975, 0.008153345435857773, -0.030835136771202087, 0.04088130593299866, -0.018213262781500816, 0.005527225788682699, -0.0444011315703392, -0.04913089796900749, -0.0413212850689888, -0.041944585740566254, 0.04058798775076866, -0.0121360644698143, 0.026380358263850212, 0.010586975142359734, -0.03583988919854164, 0.047077663242816925, -0.03371332958340645, -0.007484212052077055, 0.005880124866962433, -0.03123844973742962, 0.028011944144964218, -0.011576925404369831, 0.018341589719057083, -0.028946897014975548, -0.05496060848236084, -0.03602321445941925, 0.02957019954919815, -0.0007814195705577731, 0.009056217037141323, 0.0009028718923218548, 0.004981836304068565, -0.027388641610741615, -0.03442829102277756, 0.028726909309625626, 0.01506925281137228, -0.03820477053523064, 0.03813144192099571, -0.002242284594103694, 0.021357273682951927, 0.014546778053045273, -0.02293386310338974, 0.07200976461172104, -0.02845192141830921, 0.026985328644514084, 0.04942421615123749, 0.030358493328094482, -0.01337350346148014, -0.011283607222139835, -0.0560605525970459, 0.009422865696251392, 0.0006863201269879937, -0.07692284882068634, -0.03956137225031853, -0.032705046236515045, 0.03180675581097603, -0.003391498466953635, 0.00031308343750424683, 0.006691334769129753, -0.02328217774629593, -0.06108363717794418, -0.016655007377266884, 0.02977185696363449, -0.004516650922596455, -0.025867050513625145, 0.06614338606595993, -0.018231594935059547, -0.0029836019966751337, 0.05250406265258789, -0.07380633801221848, -0.0125943748280406, -0.01279603224247694, 0.008336669765412807, -0.08528243750333786, -0.010220326483249664, 0.02009233646094799, 0.043667834252119064, -0.02555539831519127, -0.0037627299316227436, -0.028158603236079216, 0.032136738300323486, 0.0074933781288564205, 0.01315351389348507, -0.08014936000108719, -0.03298003226518631, 0.03429996594786644, 0.038718078285455704, 0.06533675640821457, -0.020880630239844322, -0.030651813372969627, 0.07013985514640808, -0.0343366302549839, 0.04678434506058693, 0.02009233646094799, -0.0061046970076859, 0.0000017231404854101129, 0.01934070698916912, -0.022860532626509666, 0.022695541381835938, 0.0545206293463707, 0.008144179359078407, -0.016352523118257523, 0.011952740140259266, 0.013611825183033943, -0.07970938086509705, -0.008075432851910591, 0.014400118961930275, 0.011971073225140572, -0.06229357793927193, -0.04036799818277359, 0.01552756316959858, -0.0016132532618939877, 0.044217806309461594, 0.022218897938728333, -0.02293386310338974, 0.03010183945298195, 0.04073464497923851, 0.007713367231190205, -0.0640534907579422, -0.007112980354577303, 0.01631585694849491, 0.00442957179620862, 0.0075712911784648895, -0.045611072331666946, 0.02176058664917946, -0.04572106525301933, 0.022090571001172066, -0.018029939383268356, 0.07611622661352158, 0.007539209444075823, -0.02920355089008808, 0.01741580292582512, 0.03959803655743599, -0.044034481048583984, -0.0038452260196208954, 0.020550647750496864, -0.03528991714119911, 0.006329269614070654, -0.005724299233406782, -0.07853610068559647, 0.01970735564827919, -0.0436311699450016, 0.03736148029565811, 0.027718625962734222, 0.026490353047847748, 0.010861961171030998, -0.03052348643541336, 0.02064230851829052, -0.04792095720767975, 0.03673817589879036, 0.06969987601041794, -0.00724589079618454, 0.016939159482717514, -0.06460346281528473, -0.016022538766264915, 0.007988354191184044, 0.03389665111899376, 0.03340167552232742, 0.0462343730032444, 0.01449178159236908, 0.003643569303676486, -0.05492394044995308, 0.038571421056985855, -0.05041416734457016, -0.013208511285483837, -0.02122894674539566, -0.01335517130792141, 0.005838877055794001, -0.008730816654860973, -0.0028713159263134003, -0.060716986656188965, -0.003171509364619851, -0.043264519423246384, -0.006173443980515003, -0.017085818573832512, -0.004516650922596455, 0.09496195614337921, -0.031036794185638428, 0.035546571016311646, -0.070213183760643, -0.001287852763198316, 0.007750032469630241, 0.004821427632123232, 0.019267378374934196, 0.04682100936770439, -0.03624320402741432, 0.05763714015483856, 0.05873708799481392, 0.015536729246377945, -0.012511879205703735, -0.02023899555206299, -0.05481394752860069, -0.033841654658317566, 0.033475007861852646, -0.02520708367228508, 0.038571421056985855, -0.00678299693390727, -0.047444313764572144, -0.017571628093719482, -0.0875556543469429, -0.0010392193216830492, 0.010000336915254593, -0.035344913601875305, 0.017709121108055115, -0.0032562967389822006, -0.039671365171670914, 0.0009252144955098629, 0.047847624868154526, -0.034758277237415314, 0.026453688740730286, 0.022420555353164673, -0.026783671230077744, 0.04641769826412201, -0.00785544328391552, 0.04964420571923256, -0.03642652556300163, -0.020000673830509186, 0.014620108529925346, -0.004576231352984905, -0.06951655447483063, 0.04242122918367386, -0.03488660231232643, -0.019835682585835457, -0.01431762333959341, -0.031036794185638428, -0.04982752725481987, 0.05177076533436775, -0.0023580079432576895, 0.02023899555206299, -0.023208849132061005, -0.005045999772846699, -0.01674667000770569 ]
39,926
tldextract.tldextract
extract_str
Take a string URL and splits it into its subdomain, domain, and suffix components. I.e. its effective TLD, gTLD, ccTLD, etc. components. >>> extractor = TLDExtract() >>> extractor.extract_str('http://forums.news.cnn.com/') ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_str('http://forums.bbc.co.uk/') ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False) Allows configuring the HTTP request via the optional `session` parameter. For example, if you need to use a HTTP proxy. See also `requests.Session`. >>> import requests >>> session = requests.Session() >>> # customize your session here >>> with session: ... extractor.extract_str("http://forums.news.cnn.com/", session=session) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False)
def extract_str( self, url: str, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Take a string URL and splits it into its subdomain, domain, and suffix components. I.e. its effective TLD, gTLD, ccTLD, etc. components. >>> extractor = TLDExtract() >>> extractor.extract_str('http://forums.news.cnn.com/') ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_str('http://forums.bbc.co.uk/') ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False) Allows configuring the HTTP request via the optional `session` parameter. For example, if you need to use a HTTP proxy. See also `requests.Session`. >>> import requests >>> session = requests.Session() >>> # customize your session here >>> with session: ... extractor.extract_str("http://forums.news.cnn.com/", session=session) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) """ return self._extract_netloc( lenient_netloc(url), include_psl_private_domains, session=session )
(self, url: str, include_psl_private_domains: Optional[bool] = None, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract.ExtractResult
[ -0.015644308179616928, 0.05256044119596481, -0.012391622178256512, 0.023803742602467537, 0.014498475939035416, 0.008954125456511974, 0.016485201194882393, -0.025984520092606544, -0.009878183715045452, -0.00259891408495605, 0.013851635158061981, 0.0650167465209961, -0.029569867998361588, 0.0053965006954967976, 0.0010944316163659096, 0.01578291691839695, 0.01907256431877613, 0.018185468390583992, 0.020643463358283043, -0.025263754650950432, -0.030567850917577744, 0.008829377591609955, 0.050010036677122116, 0.0326562225818634, -0.034615226089954376, -0.025910595431923866, 0.023175382986664772, -0.06113570183515549, -0.017298372462391853, 0.0207913126796484, 0.09698916226625443, 0.0038856654427945614, -0.04738571122288704, -0.008940264582633972, -0.06760410964488983, -0.0188785120844841, 0.0031625896226614714, 0.005008396226912737, -0.06257723271846771, 0.017187485471367836, -0.07033932209014893, 0.010709836147725582, 0.0744791030883789, 0.001691026845946908, 0.018481167033314705, 0.020273840054869652, -0.06963703781366348, -0.0047773816622793674, -0.07022843509912491, -0.007318542338907719, 0.00683803204447031, 0.013352643698453903, -0.024358177557587624, -0.07606848329305649, 0.03869956359267235, 0.01583836041390896, 0.027629345655441284, 0.059989869594573975, 0.01767723634839058, -0.00507308030501008, 0.01450771652162075, -0.02613237127661705, -0.019756367430090904, 0.07695557922124863, 0.003502181265503168, 0.005036117974668741, 0.0005541462451219559, -0.008612223900854588, -0.04538974538445473, -0.028109855949878693, 0.030142784118652344, -0.013334162533283234, -0.028054412454366684, -0.012520990334451199, 0.020052066072821617, 0.01613405905663967, 0.026076925918459892, -0.049603451043367386, 0.05082320794463158, 0.002303215442225337, -0.035945869982242584, -0.005308715160936117, 0.011938833631575108, -0.026280220597982407, 0.014637084677815437, -0.02899695187807083, 0.03899526223540306, -0.09314507991075516, -0.00016459789185319096, 0.11280904710292816, -0.02117941714823246, -0.01287213247269392, 0.01433214545249939, 0.006126506719738245, -0.05426070839166641, -0.006228153128176928, 0.020236877724528313, 0.031732164323329926, -0.019626999273896217, -0.03158431500196457, 0.017150523141026497, 0.01305694505572319, -0.10312490910291672, 0.011181105859577656, -0.003014740301296115, -0.0019763298332691193, -0.0724831372499466, -0.025966038927435875, -0.030383039265871048, 0.044280875474214554, 0.03073418140411377, 0.020957643166184425, -0.0048143439926207066, 0.07100464403629303, 0.029200244694948196, -0.08575261384248734, -0.07836014777421951, -0.007258478552103043, -0.053299687802791595, -0.01578291691839695, -0.021789295598864555, 0.04601810500025749, -0.08841390162706375, -0.0370917022228241, -0.03271166607737541, 0.042210984975099564, 0.01207744237035513, -0.04531582072377205, 0.03188001364469528, -0.04490923509001732, 0.008358107879757881, 0.027278203517198563, 0.009175899438560009, -0.002908473601564765, -0.0016887167003005743, -0.005225549917668104, -0.03766461834311485, 0.06394483894109726, -0.040067169815301895, 0.02160448394715786, -0.015542661771178246, -0.0045579178258776665, 0.058696188032627106, -0.00601099943742156, 0.007429429329931736, -0.012631877325475216, 0.04690520092844963, -0.03127013519406319, 0.0017499355599284172, -0.03699929639697075, 0.002591983648017049, -0.04901205375790596, -0.015810638666152954, -0.027980487793684006, -0.04272845759987831, -0.0036731320433318615, 0.023840704932808876, -0.012308456934988499, 0.030493926256895065, -0.054186783730983734, -0.023471081629395485, -0.032120268791913986, 0.004456271417438984, -0.024265771731734276, 0.000574071251321584, -0.0048605469055473804, 0.15391115844249725, -0.04180439934134483, 0.004823584575206041, 0.047496598213911057, 0.01663305051624775, 0.09188836067914963, 0.004865167196840048, 0.04867939278483391, -0.030586332082748413, 0.060359492897987366, 0.031288616359233856, 0.045944180339574814, -0.040510717779397964, 0.01473873108625412, 0.033025845885276794, -0.022103475406765938, -0.03232356160879135, 0.04235883429646492, 0.026372626423835754, 0.008233360014855862, -0.05063839629292488, 0.040732491761446, -0.010294009931385517, 0.024616913869976997, -0.001034945365972817, -0.05178422853350639, 0.0019012500997632742, -0.0290154330432415, -0.055850088596343994, 0.02040320821106434, -0.058030866086483, -0.010876166634261608, -0.08427412062883377, 0.005271752830594778, -0.01740925945341587, 0.006657840684056282, -0.048864204436540604, -0.009665650315582752, -0.04032590612769127, 0.012280735187232494, -0.07939509302377701, 0.0563305988907814, -0.04723786190152168, -0.018185468390583992, 0.017187485471367836, -0.030216708779335022, 0.0050638397224247456, 0.03280407190322876, 0.019774848595261574, -0.04472442343831062, -0.026039963588118553, 0.06087696552276611, 0.02404399774968624, -0.038847412914037704, -0.004530196078121662, -0.05082320794463158, 0.08094751089811325, 0.03023518994450569, -0.007854496128857136, -0.01493278332054615, -0.005133144091814756, -0.004657254088670015, 0.020033584907650948, -0.06283596903085709, 0.05026877298951149, -0.060766078531742096, 0.06146836280822754, 0.011643134988844395, 0.09765448421239853, 0.03197241947054863, -0.01533936895430088, 0.00791918020695448, 0.13602139055728912, -0.02905239537358284, -0.020514095202088356, 0.03984539583325386, 0.0027606242801994085, 0.013010741211473942, -0.026705287396907806, 0.04786622151732445, -0.022528542205691338, 0.034301046282052994, 0.007678925059735775, -0.01583836041390896, 0.01413809321820736, 0.009499319829046726, -0.0017718819435685873, 0.04490923509001732, -0.00018495605036150664, 0.0010407207300886512, 0.007406327873468399, -0.014729490503668785, -0.03415319696068764, -0.0054196021519601345, 0.01636507362127304, -0.06272508203983307, 0.021900182589888573, -0.02864580973982811, -0.09277545660734177, -0.03361724317073822, 0.009037290699779987, -0.022972090169787407, 0.004359245300292969, -0.0013918628683313727, 0.029366575181484222, 0.07477480173110962, 0.012548712082207203, -0.02448754571378231, -0.03271166607737541, -0.008145574480295181, -0.0040658568032085896, -0.04320896789431572, 0.058289602398872375, -0.03365420550107956, 0.0004923498490825295, 0.0050268773920834064, -0.028460998088121414, -0.02785111963748932, 0.04845761880278587, -0.004971433896571398, 0.007378606125712395, 0.021401191130280495, 0.006620878353714943, -0.009795018471777439, -0.06952615082263947, -0.057032883167266846, 0.06730841100215912, 0.034707631915807724, -0.00027043145382776856, -0.014248980209231377, -0.03271166607737541, -0.016780899837613106, 0.026335664093494415, -0.03685144707560539, -0.03540991619229317, 0.0490490160882473, -0.01058970857411623, 0.03358028084039688, 0.030383039265871048, -0.017732679843902588, 0.026298701763153076, -0.008205638267099857, -0.0018076892010867596, -0.03152887150645256, 0.029994934797286987, 0.000055118638556450605, -0.01827787421643734, 0.045057084411382675, -0.04184136167168617, -0.0026150851044803858, 0.019386744126677513, -0.0018827689345926046, -0.05026877298951149, -0.012382381595671177, 0.004188294522464275, -0.036796003580093384, 0.03202786296606064, 0.043393779546022415, 0.05943543463945389, -0.014396829530596733, 0.028959989547729492, 0.013629861176013947, 0.0049206106923520565, 0.009499319829046726, -0.037590693682432175, 0.022972090169787407, -0.02409944124519825, -0.012326938100159168, -0.015034429728984833, -0.06553421914577484, -0.007544936612248421, -0.07259402424097061, -0.0032157229725271463, 0.005724541377276182, -0.04150870069861412, -0.06172709912061691, -0.09661953896284103, 0.026409588754177094, 0.048753317445516586, -0.02204803191125393, -0.02197410725057125, 0.02247309871017933, 0.020477132871747017, -0.06971096247434616, 0.04638772830367088, -0.014248980209231377, -0.03455978259444237, 0.015413293614983559, -0.005599793512374163, 0.05122979357838631, -0.03725803270936012, -0.03559472784399986, 0.058252640068531036, -0.0016737007535994053, 0.022121956571936607, -0.04952952638268471, -0.020218396559357643, -0.03866260126233101, -0.04982522502541542, -0.060433417558670044, 0.03372813016176224, 0.009656409732997417, 0.013999484479427338, 0.007734368555247784, 0.01914648897945881, 0.03182457014918327, 0.02493109367787838, -0.021900182589888573, 0.015108354389667511, 0.029366575181484222, 0.018656738102436066, -0.02496805600821972, -0.040954265743494034, 0.021900182589888573, -0.012631877325475216, 0.014821896329522133, 0.020181434229016304, -0.017547868192195892, 0.0432828925549984, 0.011661616154015064, 0.04938167706131935, 0.038884375244379044, -0.006717904470860958, 0.02069890685379505, 0.023397156968712807, 0.062059760093688965, 0.043800365179777145, -0.011125662364065647, -0.02367437444627285, -0.03367268666625023, -0.07492265105247498, -0.0004516335320658982, 0.01999662257730961, 0.023341713473200798, 0.06024860590696335, -0.0024510647635906935, 0.004627222195267677, 0.01410113088786602, -0.004631842486560345, 0.051414605230093, -0.016060134395956993, -0.03862563893198967, -0.057956941425800323, -0.038773488253355026, 0.021770814433693886, -0.0366666354238987, -0.01907256431877613, -0.04398517683148384, -0.02860884740948677, 0.03766461834311485, -0.014923542737960815, 0.0505644716322422, -0.05899188667535782, 0.02696402370929718, 0.010367934592068195, -0.05695895850658417, -0.04679431393742561, 0.03788639232516289, -0.02701946720480919, 0.0056090340949594975, -0.0009691062150523067, -0.03358028084039688, 0.04572240635752678, -0.03372813016176224, -0.004544056951999664, -0.010432618670165539, -0.0787297710776329, 0.053706273436546326, 0.06904564052820206, -0.0220665130764246, 0.01686406508088112, 0.03659271076321602, -0.029126320034265518, -0.02241765521466732, -0.033007364720106125, -0.02117941714823246, 0.0019821051973849535, 0.06789980828762054, 0.11280904710292816, -0.037960316985845566, -0.013167832046747208, -0.03855171427130699, -0.012123645283281803, -0.02737060934305191, 0.03237900510430336, 0.008792415261268616, 0.01348201185464859, 0.09358862787485123, -0.030475445091724396, -0.009425395168364048, 0.031381022185087204, 0.004169813357293606, -0.019442187622189522, 0.045870255678892136, -0.06571903079748154, 0.013278719037771225, 0.04609202966094017, 0.06941526383161545, 0.01392555981874466, 0.03784942999482155, 0.04808799549937248, -0.03651878610253334, -0.034356489777565, -0.03977147117257118, -0.02735212817788124, 0.015108354389667511, 0.014193536713719368, 0.014794174581766129, 0.0548151433467865, -0.010885407216846943, -0.020458651706576347, -0.014461513608694077, 0.03494788706302643, -0.02827618643641472, -0.012474787421524525, 0.021050048992037773, 0.034615226089954376, 0.01101477537304163, -0.03127013519406319, 0.008478235453367233, 0.01472024992108345, 0.014212017878890038, 0.03459674492478371, 0.028109855949878693, -0.0349663682281971, 0.03701777756214142, 0.022657910361886024, -0.06010075658559799, -0.043356817215681076, -0.019368262961506844, -0.028793659061193466, 0.04036286845803261, 0.05758731812238693, -0.034670669585466385, 0.02777719497680664, 0.014988226816058159, 0.036370936781167984, -0.015441015362739563, 0.011578450910747051, 0.07288972288370132, -0.002031773328781128, 0.05488906800746918, -0.012752004899084568, 0.00935147050768137, -0.062466345727443695, 0.03570561483502388, -0.001136014237999916, 0.02117941714823246, 0.035945869982242584, 0.005428842734545469, 0.011698578484356403, 0.012493268586695194, -0.0009598656324669719, -0.019405225291848183, -0.014175055548548698, 0.06372306495904922, 0.01750166527926922, -0.00015088140207808465, 0.020125990733504295, 0.026298701763153076, -0.008963366039097309, 0.08442196995019913, -0.04938167706131935, 0.02117941714823246, -0.017686476930975914, -0.002622015541419387, -0.01328795962035656, 0.055406540632247925, 0.018749143928289413, 0.020033584907650948, -0.12404559552669525, -0.029255688190460205, -0.017150523141026497, 0.06024860590696335, 0.0026474271435290575, 0.005045358557254076, 0.003617688547819853, -0.033875979483127594, -0.04723786190152168, -0.01570899225771427, 0.020846756175160408, 0.042580608278512955, -0.018398001790046692, 0.030586332082748413, -0.0077805714681744576, -0.011495285667479038, 0.04683127626776695, 0.0302906334400177, 0.06971096247434616, 0.04768140986561775, -0.040030207484960556, 0.006667081266641617, -0.05644148588180542, -0.022768797352910042, -0.023526525124907494, -0.021493596956133842, -0.009684131480753422, 0.02537464164197445, -0.003114076564088464, 0.009365331381559372, -0.006611637771129608, 0.004740419331938028, -0.07118945568799973, -0.013528214767575264, -0.002982398262247443, -0.02032928355038166, -0.030623294413089752, 0.035502322018146515, -0.0515994168817997, 0.024690838530659676, 0.016974952071905136, -0.04191528633236885, 0.09728486090898514, 0.08663970977067947, 0.005428842734545469, 0.022547023370862007, 0.032157231122255325, 0.020643463358283043, -0.024339696392416954, -0.01765875518321991, 0.019386744126677513, -0.0422479473054409, -0.03200938180088997, -0.036703597754240036, 0.025097424164414406, 0.00821949914097786, 0.018148506060242653, 0.06327951699495316, 0.005299474578350782, -0.06631042808294296, -0.04206313565373421, -0.021253341808915138, 0.04014109447598457, -0.02864580973982811, 0.033820535987615585, 0.005826187785714865, 0.03899526223540306, 0.0019301269203424454, 0.017132041975855827, -0.000608145899605006, -0.01570899225771427, 0.01723368838429451, -0.018795346841216087, -0.06631042808294296, -0.003929558210074902, -0.033413950353860855, -0.00662549864500761, -0.02692706137895584, -0.008358107879757881, -0.039180073887109756, 0.011024015955626965, 0.0010257047833874822, 0.02907087653875351, -0.062022797763347626, 0.07529227435588837, 0.03694385290145874, 0.023156901821494102, 0.04623987898230553, 0.009115835651755333, -0.02537464164197445, 0.019774848595261574, 0.0008091285708360374, 0.030586332082748413, 0.07695557922124863, -0.010793001390993595, 0.014895820990204811, 0.010515783913433552, -0.050897132605314255, 0.02907087653875351, 0.00011449660814832896, 0.013620620593428612, -0.026039963588118553, 0.033802054822444916, -0.029625311493873596, -0.03515117987990379, -0.003227273700758815, -0.007757470011711121, 0.0216414462774992, -0.01767723634839058, -0.0028137576300650835, -0.035446878522634506, -0.041323889046907425, 0.0315658338367939, -0.030937474220991135, -0.00039099217974580824, 0.03151039034128189, 0.06512763351202011, -0.015459496527910233, -0.05596097558736801, 0.019238894805312157, 0.011550729162991047, -0.0010395656572654843, -0.00913893710821867, 0.04198921099305153, -0.009092734195291996, -0.011375158093869686, 0.01099629420787096, 0.00973957497626543, -0.01804685965180397, 0.010839204303920269, -0.0005382639938034117, -0.0028206880670040846, 0.02491261251270771, -0.06675397604703903, 0.04472442343831062, 0.03402382880449295, -0.020236877724528313, 0.03766461834311485, 0.04472442343831062, -0.03036455810070038, -0.02618781477212906, -0.06704967468976974, -0.030068859457969666, -0.01533936895430088, 0.07451606541872025, 0.010451099835336208, 0.0188785120844841, -0.05732858180999756, -0.011088700033724308, -0.020569538697600365, 0.031769126653671265, -0.017529387027025223, -0.014618603512644768, -0.027721751481294632, 0.01493278332054615, 0.028867583721876144, 0.0019231964834034443, -0.04372644051909447, 0.03208330646157265, 0.04978826269507408, 0.016910267993807793, -0.03446737676858902, 0.06357521563768387, -0.009125076234340668, -0.013001500628888607, 0.010950091294944286, -0.015505699440836906, 0.018250152468681335, -0.01854585111141205, 0.03516966104507446, -0.039623621851205826, 0.010913128964602947, -0.011532247997820377, 0.014784933999180794, -0.0065007503144443035, -0.01388859748840332, 0.01058970857411623, -0.03417167812585831, 0.019719405099749565, -0.0370917022228241, 0.036370936781167984, 0.0432828925549984, 0.015681270509958267, 0.02489413134753704, 0.058733150362968445, -0.030068859457969666, 0.04106515273451805, 0.03995628282427788, -0.020255358889698982, -0.012705801986157894, 0.007752849720418453, 0.02990252897143364, 0.01953459344804287, 0.012761245481669903, -0.05019484832882881, 0.07200262695550919, -0.005766123998910189, 0.021937144920229912, -0.024265771731734276, -0.034652188420295715, -0.06623650342226028, 0.0009870098438113928, 0.020994605496525764, -0.03788639232516289, 0.027074910700321198, -0.015062151476740837, 0.0724831372499466, -0.0032388244289904833, -0.012114404700696468, 0.007896078750491142, -0.013528214767575264, 0.01581987924873829, -0.009665650315582752, -0.0439482145011425, 0.023914629593491554, -0.0010851910337805748, -0.021013086661696434, -0.00816405564546585, -0.021401191130280495, -0.034301046282052994, -0.005937074776738882, -0.020236877724528313, -0.039623621851205826, 0.005576692055910826, -0.02328626997768879, 0.006842652335762978, 0.02953290566802025, 0.015108354389667511, -0.05470425635576248, 0.016041653230786324, -0.016836343333125114, -0.018656738102436066 ]
39,927
tldextract.tldextract
extract_urllib
Take the output of urllib.parse URL parsing methods and further splits the parsed URL. Splits the parsed URL into its subdomain, domain, and suffix components, i.e. its effective TLD, gTLD, ccTLD, etc. components. This method is like `extract_str` but faster, as the string's domain name has already been parsed. >>> extractor = TLDExtract() >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.news.cnn.com/')) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.bbc.co.uk/')) ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False)
def extract_urllib( self, url: urllib.parse.ParseResult | urllib.parse.SplitResult, include_psl_private_domains: bool | None = None, session: requests.Session | None = None, ) -> ExtractResult: """Take the output of urllib.parse URL parsing methods and further splits the parsed URL. Splits the parsed URL into its subdomain, domain, and suffix components, i.e. its effective TLD, gTLD, ccTLD, etc. components. This method is like `extract_str` but faster, as the string's domain name has already been parsed. >>> extractor = TLDExtract() >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.news.cnn.com/')) ExtractResult(subdomain='forums.news', domain='cnn', suffix='com', is_private=False) >>> extractor.extract_urllib(urllib.parse.urlsplit('http://forums.bbc.co.uk/')) ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk', is_private=False) """ return self._extract_netloc( url.netloc, include_psl_private_domains, session=session )
(self, url: urllib.parse.ParseResult | urllib.parse.SplitResult, include_psl_private_domains: Optional[bool] = None, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract.ExtractResult
[ -0.019043346866965294, 0.031829461455345154, -0.03731859102845192, 0.05646497383713722, 0.018350180238485336, 0.004732735455036163, 0.03930441662669182, -0.030386924743652344, -0.03765580430626869, 0.026583874598145485, 0.029693758115172386, 0.04012872651219368, -0.008617746643722057, -0.004414253402501345, -0.012551935389637947, 0.009807370603084564, 0.024654248729348183, 0.05316774919629097, 0.00037731914198957384, -0.025815771892666817, -0.02143196202814579, 0.009723066352307796, 0.02364260144531727, 0.014725105836987495, -0.01765701361000538, -0.03284110873937607, 0.028550969436764717, -0.05309281125664711, -0.004566469229757786, 0.009638762101531029, 0.04586140066385269, 0.02368006855249405, -0.05830093100667, -0.003636782756075263, -0.05582801252603531, 0.00818217545747757, -0.0014636118430644274, 0.05118191987276077, -0.014069408178329468, 0.0379180870950222, -0.04361329227685928, -0.017909925431013107, 0.032241612672805786, 0.020532717928290367, 0.025909442454576492, 0.03424617648124695, -0.024804122745990753, -0.003995074890553951, -0.08303011208772659, -0.054629020392894745, -0.015212195925414562, 0.03823656588792801, 0.023511461913585663, -0.03477073460817337, 0.029506415128707886, 0.03274743631482124, 0.05091964080929756, 0.07523667812347412, -0.015137258917093277, 0.022630952298641205, 0.01478130929172039, 0.005306471139192581, -0.038592517375946045, 0.06182296574115753, -0.00947952177375555, 0.0075873639434576035, -0.023155510425567627, 0.006571031641215086, -0.08632733672857285, -0.0028499451000243425, 0.01972714625298977, -0.012130415067076683, -0.04496215656399727, -0.004208176862448454, 0.03173578903079033, 0.023623866960406303, 0.05050748959183693, -0.04818444326519966, 0.07156476378440857, 0.011736996471881866, -0.06156068667769432, 0.015605615451931953, 0.018247142434120178, 0.024841591715812683, 0.015437006950378418, -0.03941682353615761, 0.04533684253692627, -0.07029084116220474, -0.013498013839125633, 0.10094004124403, -0.0336279459297657, -0.0030560216400772333, 0.026209190487861633, -0.003791340161114931, -0.07029084116220474, 0.005048875696957111, -0.022012721747159958, 0.03514542058110237, -0.01666409894824028, -0.025722099468111992, 0.03503301367163658, 0.005727991461753845, -0.12919126451015472, -0.0031941866036504507, -0.016270680353045464, -0.011240539140999317, -0.051594074815511703, -0.019895754754543304, -0.038967203348875046, 0.03439604863524437, 0.029656289145350456, 0.028906919062137604, 0.026471469551324844, 0.09172280132770538, 0.0125238336622715, -0.09929142892360687, -0.049383435398340225, 0.000182366042281501, -0.041327714920043945, -0.018490687012672424, -0.052231039851903915, 0.05612775683403015, -0.0712275505065918, 0.003135642036795616, -0.02508513629436493, -0.0002294943406013772, 0.020382843911647797, -0.05290547013282776, 0.015165360644459724, -0.021993989124894142, -0.003643808187916875, 0.03130489960312843, -0.017188657075166702, -0.013975736685097218, -0.030049707740545273, -0.02759552374482155, -0.05665231868624687, 0.04432519152760506, -0.054329272359609604, 0.011184336617588997, -0.034826938062906265, -0.005264319013804197, 0.018247142434120178, 0.028757045045495033, -0.014116243459284306, -0.031023887917399406, 0.025422353297472, -0.03284110873937607, 0.006435208488255739, -0.017497772350907326, -0.018930941820144653, -0.04484974965453148, 0.01651422493159771, -0.0016322199953719974, -0.033384401351213455, 0.010744081810116768, 0.004484506789594889, -0.005465711932629347, 0.021712975576519966, -0.06133587658405304, -0.011259273625910282, -0.022668421268463135, -0.003297224873676896, -0.014771942049264908, -0.0027234889566898346, -0.008716101758182049, 0.13406215608119965, -0.04814697429537773, 0.014434725977480412, 0.03218540921807289, 0.013732192106544971, 0.10333802551031113, 0.011025095358490944, 0.037149980664253235, -0.037487197667360306, 0.05234344303607941, 0.021862847730517387, 0.04031606763601303, -0.012364593334496021, 0.03280363976955414, 0.04440012946724892, -0.022518547251820564, -0.0034845671616494656, 0.02907552756369114, 0.010612942278385162, 0.0031988699920475483, -0.06092372164130211, 0.013329406268894672, -0.03278490528464317, 0.006051156669855118, -0.00017387709522154182, -0.06422095000743866, -0.0006597962346859276, -0.05545332655310631, -0.024298299103975296, 0.031136292964220047, -0.06793032586574554, 0.017722582444548607, -0.04559912160038948, -0.0027234889566898346, -0.035445164889097214, -0.010313194245100021, -0.07489945739507675, 0.0021122845355421305, -0.07606098055839539, 0.016467390581965446, -0.04728520289063454, 0.04597380384802818, -0.0528305321931839, -0.010004079900681973, 0.04870900139212608, -0.010172687470912933, -0.0011597659904509783, 0.05582801252603531, 0.013029658235609531, -0.06077384948730469, -0.01965220831334591, 0.0195772722363472, 0.02501020021736622, -0.03203553706407547, -0.03964163362979889, -0.038480110466480255, 0.06942906230688095, 0.035857319831848145, 0.023623866960406303, -0.0010988798458129168, 0.0036484915763139725, -0.00009674474131315947, 0.017385367304086685, -0.05683965981006622, 0.013638520613312721, -0.05571560561656952, 0.05417940020561218, 0.008903443813323975, 0.09921649098396301, 0.006552297621965408, -0.016242578625679016, -0.007770022843033075, 0.12072338908910751, -0.02708970010280609, -0.024298299103975296, 0.07148982584476471, 0.0001364818017464131, 0.006186980288475752, -0.025740833953022957, 0.03823656588792801, 0.009835471399128437, 0.019820816814899445, -0.003629757324233651, -0.015174727886915207, -0.01049116998910904, 0.03137983754277229, 0.016607897356152534, 0.028532234951853752, -0.0031450092792510986, 0.00914230477064848, -0.023286649957299232, 0.0031614017207175493, -0.043838102370500565, -0.010294460691511631, 0.049383435398340225, -0.024260830134153366, 0.046610768884420395, -0.029319072142243385, -0.08175618946552277, -0.029899833723902702, 0.05672725290060043, -0.036531753838062286, -0.010678512044250965, 0.004828748293220997, 0.05170648172497749, 0.04762241616845131, -0.009835471399128437, -0.0025993746239691973, -0.021225884556770325, 0.0344335176050663, -0.0197646152228117, -0.0406532846391201, 0.04076568782329559, -0.014322319999337196, 0.024223361164331436, 0.01569928601384163, -0.02941274456679821, -0.01139978040009737, 0.02778286673128605, 0.03134236857295036, -0.023886146023869514, 0.04507456347346306, -0.012139782309532166, -0.004880267195403576, -0.06088625267148018, -0.04533684253692627, 0.06272220611572266, 0.03698137402534485, -0.0026813368313014507, 0.0019436764996498823, -0.025740833953022957, 0.008111922070384026, 0.00532988877967, -0.01766638085246086, -0.05073229968547821, 0.03527655825018883, -0.0033229843247681856, 0.041140373796224594, 0.00030413854983635247, -0.00787306111305952, 0.05968726426362991, -0.018116002902388573, 0.01776941865682602, -0.03188566118478775, 0.06972881406545639, 0.03276617079973221, -0.020307907834649086, 0.03803049027919769, -0.027464384213089943, -0.006397739984095097, 0.029956037178635597, 0.008008884266018867, -0.029956037178635597, -0.020382843911647797, -0.019389929249882698, -0.022181330248713493, 0.0528305321931839, 0.03531402722001076, 0.03591352328658104, -0.0019905122462660074, 0.0019097207114100456, -0.019895754754543304, -0.018387649208307266, 0.02641526609659195, -0.04567405581474304, 0.03285984322428703, -0.030686670914292336, 0.01766638085246086, -0.041365183889865875, -0.046873047947883606, -0.016870176419615746, -0.05331762507557869, 0.028888186439871788, -0.0195772722363472, -0.04874647036194801, -0.05234344303607941, -0.08842557668685913, -0.005774826742708683, 0.07355059683322906, -0.021263353526592255, -0.012224086560308933, 0.028101347386837006, 0.02379247359931469, -0.04297632724046707, 0.04481228440999985, -0.03934188559651375, -0.05691459774971008, 0.015905363485217094, 0.0034002631437033415, 0.04514949768781662, -0.025403618812561035, -0.05526598542928696, 0.03495807573199272, 0.021076010540127754, 0.06129840761423111, -0.036082129925489426, -0.01803169772028923, -0.03919201344251633, -0.010406865738332272, -0.0672558918595314, 0.06541993468999863, -0.0002659382880665362, -0.019202588126063347, -0.006903564557433128, -0.005034824833273888, -0.00022115175670478493, 0.033122122287750244, -0.01814410276710987, 0.019558537751436234, 0.01765701361000538, 0.011671426706016064, -0.013713457621634007, -0.03698137402534485, -0.0010959525825455785, -0.02242487482726574, 0.0040700118988752365, 0.02675248309969902, -0.027426915243268013, 0.05024521052837372, -0.022331204265356064, 0.0625348687171936, 0.03595099225640297, -0.02774539776146412, 0.03014337830245495, 0.00471868459135294, 0.05796371400356293, 0.02508513629436493, 0.014462826773524284, 0.019521068781614304, -0.013647887855768204, -0.07257641106843948, -0.01119370386004448, -0.008936228230595589, 0.01666409894824028, 0.038929734379053116, 0.0050067235715687275, 0.005648370832204819, -0.002601716434583068, -0.02025170437991619, 0.00877698790282011, -0.01700131595134735, 0.005446977913379669, -0.054479144513607025, -0.057701434940099716, 0.018116002902388573, -0.01761954464018345, -0.01961474120616913, -0.03982897847890854, -0.011718261986970901, 0.02793273888528347, 0.007554579060524702, 0.049308497458696365, -0.0621601827442646, 0.02675248309969902, 0.03806795924901962, -0.04260164499282837, -0.07171463966369629, 0.007812174502760172, -0.03930441662669182, -0.012804847210645676, -0.00873483531177044, -0.03628820553421974, 0.0038545681163668633, -0.02105727605521679, -0.024822857230901718, 0.0013664279831573367, -0.02937527559697628, 0.0617854967713356, 0.062497396022081375, -0.02641526609659195, 0.013123329728841782, 0.04544924572110176, -0.03660668805241585, -0.025722099468111992, -0.054404210299253464, -0.012776746414601803, -0.00626191683113575, 0.03531402722001076, 0.1322636753320694, -0.054629020392894745, 0.008954962715506554, -0.02154436707496643, -0.04987052455544472, -0.0363631434738636, 0.002728172577917576, 0.015680551528930664, 0.07066552340984344, 0.0668812096118927, -0.041552525013685226, 0.011062564328312874, 0.021300822496414185, 0.012261554598808289, -0.010322561487555504, 0.05901283025741577, -0.009568508714437485, 0.0005435854545794427, 0.03941682353615761, 0.019970690831542015, -0.007999517023563385, 0.02493526227772236, 0.059949543327093124, -0.0625348687171936, -0.005718624219298363, -0.028850717470049858, -0.04024112969636917, 0.025797037407755852, 0.04762241616845131, 0.011933705769479275, 0.013338773511350155, -0.002917856676504016, 0.02401728555560112, -0.013891433365643024, 0.07223919779062271, -0.05841333419084549, -0.02379247359931469, 0.020720060914754868, 0.015362069942057133, 0.014181813225150108, -0.01655169390141964, 0.022106394171714783, -0.023417789489030838, -0.010978260077536106, 0.022780826315283775, 0.012392694130539894, -0.020382843911647797, 0.003538428107276559, 0.035482633858919144, -0.07137742638587952, -0.046460896730422974, -0.050844706594944, -0.03426491096615791, 0.03145477548241615, 0.0704781785607338, -0.041102904826402664, 0.0379180870950222, -0.005920017138123512, 0.05294293910264969, -0.06354651600122452, 0.011736996471881866, 0.05313028022646904, 0.014088142663240433, 0.06463310122489929, -0.019277524203062057, 0.004617988131940365, -0.057251811027526855, 0.03941682353615761, -0.008158758282661438, 0.041215311735868454, 0.06174802780151367, -0.022780826315283775, 0.001868739607743919, -0.008439771831035614, 0.01581169106066227, -0.02435450069606304, 0.010509904474020004, 0.06635665148496628, 0.029150465503335, 0.009741800837218761, -0.006243182811886072, 0.057139407843351364, -0.043800633400678635, 0.10198915749788284, -0.033609211444854736, 0.0307054053992033, 0.049570776522159576, -0.025366149842739105, -0.031229965388774872, 0.033047184348106384, -0.0016942770453169942, 0.04979558661580086, -0.1060357540845871, -0.028869451954960823, -0.054928768426179886, 0.04009125754237175, 0.010622309520840645, 0.013301304541528225, -0.007770022843033075, -0.04732266813516617, -0.05785130709409714, 0.020345374941825867, -0.020158033818006516, 0.03385275602340698, -0.03332819789648056, 0.013104595243930817, -0.006336853839457035, 0.019820816814899445, 0.0418897420167923, 0.017928659915924072, 0.07549895346164703, 0.04061581566929817, -0.02180664613842964, -0.0014682954642921686, -0.04488721862435341, -0.0195772722363472, -0.023174244910478592, -0.0093858502805233, 0.010828386060893536, 0.046873047947883606, -0.0032550727482885122, 0.006327486597001553, -0.0223124697804451, 0.02242487482726574, -0.07482451945543289, -0.03628820553421974, -0.018490687012672424, -0.00929217878729105, -0.0363631434738636, 0.03803049027919769, 0.00565305445343256, 0.006027739029377699, 0.01913701742887497, -0.06156068667769432, 0.07740984857082367, 0.04443759843707085, 0.0014741498744115233, 0.03606339544057846, -0.0012095288839191198, -0.00570925697684288, -0.027426915243268013, -0.026096785441040993, 0.014715739525854588, -0.03982897847890854, -0.026546405628323555, 0.0019507019314914942, 0.000037267218431225047, 0.020607655867934227, 0.004779570735991001, 0.05848827213048935, 0.003777289530262351, -0.06665639579296112, -0.06864222884178162, -0.004758494906127453, 0.015867894515395164, -0.007240780629217625, 0.0461236797273159, -0.003107540775090456, 0.013544850051403046, -0.0013910167617723346, 0.009826104156672955, -0.038929734379053116, -0.018930941820144653, 0.01906208135187626, -0.006959767080843449, -0.08895013481378555, -0.006730272900313139, -0.04263911023736, 0.022593483328819275, -0.03340313583612442, -0.012598770670592785, -0.016673466190695763, 0.013357507064938545, 0.01346991304308176, 0.04286392405629158, -0.05871308222413063, 0.033684149384498596, 0.038405176252126694, 0.03370288386940956, 0.03550136834383011, 0.021900316700339317, -0.04743507504463196, 0.008636481128633022, 0.04282645508646965, -0.005484446417540312, 0.08033238351345062, 0.010940791107714176, 0.00918445736169815, 0.017010683193802834, -0.05170648172497749, 0.021525632590055466, 0.0181815717369318, 0.01640181988477707, -0.02128208801150322, 0.057626497000455856, -0.02306183986365795, -0.016823340207338333, -0.013498013839125633, 0.014565865509212017, 0.002496336353942752, 0.005877865478396416, -0.02619045600295067, -0.0131139624863863, -0.014415991492569447, 0.033721618354320526, -0.019221322610974312, 0.005161280743777752, 0.01633625105023384, 0.0614108107984066, -0.024616779759526253, -0.06620677560567856, 0.003952922765165567, -0.017282329499721527, -0.011521552689373493, -0.016729669645428658, 0.04012872651219368, -0.007549895439296961, 0.000729464169126004, 0.031791992485523224, 0.024766653776168823, 0.002852286910638213, 0.004599254112690687, -0.031979333609342575, 0.00953104067593813, 0.019464867189526558, -0.06729336082935333, 0.014874979853630066, 0.03812416270375252, -0.04496215656399727, 0.07463718205690384, 0.028775779530405998, -0.05399205535650253, -0.03055553138256073, -0.06950400024652481, -0.003955264575779438, -0.001276269555091858, 0.09666863828897476, 0.004800647031515837, 0.028644639998674393, -0.021731708198785782, -0.022218799218535423, 0.008613063022494316, 0.029937302693724632, -0.00990104116499424, -0.014294219203293324, -0.021600568667054176, 0.00530178751796484, 0.050470020622015, 0.007821542210876942, -0.022031456232070923, -0.01005091518163681, 0.05133179575204849, 0.03136110305786133, -0.060024477541446686, 0.07066552340984344, -0.0021684872917830944, -0.00873483531177044, -0.007456224411725998, -0.016017768532037735, 0.006149511784315109, -0.01618637703359127, 0.02227500081062317, -0.02446690760552883, 0.009507622569799423, -0.00454539293423295, 0.04544924572110176, -0.03450845554471016, -0.022050190716981888, 0.0035407699178904295, -0.015718020498752594, 0.02641526609659195, -0.026808686554431915, 0.03383402153849602, 0.027988942340016365, 0.008870658464729786, 0.03816163167357445, 0.05316774919629097, -0.03690643608570099, 0.060511570423841476, 0.03570744767785072, -0.04458747059106827, -0.017750684171915054, 0.010837753303349018, 0.0017352582653984427, 0.02637779898941517, 0.004102796781808138, -0.05032014846801758, 0.06272220611572266, 0.001624023774638772, -0.016729669645428658, -0.00838825199753046, -0.029394010081887245, -0.03625074028968811, 0.023586397990584373, 0.022143861278891563, -0.04218949005007744, 0.033534273505210876, -0.04057834669947624, 0.06429588049650192, 0.00036443935823626816, -0.017975496128201485, -0.017788153141736984, -0.012889151461422443, 0.011868136003613472, -0.022125128656625748, -0.031904395669698715, 0.012701809406280518, -0.0053626736626029015, -0.008936228230595589, -0.005236217752099037, -0.02386741153895855, -0.03686896711587906, 0.003327667945995927, -0.04533684253692627, -0.038779858499765396, -0.007676351349800825, -0.0010766328778117895, 0.023005636408925056, 0.02838236093521118, 0.007990149781107903, -0.05785130709409714, 0.020532717928290367, -0.007732554338872433, -0.021300822496414185 ]
39,928
tldextract.tldextract
update
Force fetch the latest suffix list definitions.
def update( self, fetch_now: bool = False, session: requests.Session | None = None ) -> None: """Force fetch the latest suffix list definitions.""" self._extractor = None self._cache.clear() if fetch_now: self._get_tld_extractor(session=session)
(self, fetch_now: bool = False, session: Optional[requests.sessions.Session] = None) -> NoneType
[ 0.06061776727437973, 0.023404810577630997, -0.07829219847917557, -0.0059375036507844925, -0.013048699125647545, 0.02506178803741932, -0.0010021694470196962, 0.02746095322072506, 0.023594671860337257, -0.03348475694656372, -0.04598113149404526, -0.04404798895120621, -0.005674285814166069, -0.0007206127047538757, 0.0292042326182127, 0.01805415377020836, -0.02929053269326687, 0.06113557144999504, -0.020850302651524544, -0.04539428651332855, -0.026408081874251366, -0.02585575543344021, 0.02350837178528309, 0.055646833032369614, -0.0009951575193554163, -0.05889175087213516, 0.02873820625245571, -0.028375742956995964, -0.004349566530436277, -0.00787927396595478, 0.05882271006703377, -0.019262365996837616, -0.037834323942661285, -0.02699492871761322, 0.013903078623116016, -0.021713312715291977, 0.0010032482678070664, 0.03065408766269684, -0.023542892187833786, -0.02811684086918831, 0.05174603313207626, -0.025217128917574883, 0.03880089521408081, 0.005096069537103176, 0.029514916241168976, 0.06669335067272186, -0.048086874186992645, 0.027685334905982018, 0.006843663286417723, 0.004729290492832661, -0.03883541375398636, -0.003559913020581007, -0.02295604534447193, -0.012876097112894058, -0.012953768484294415, -0.0009304318227805197, 0.02685684710741043, 0.06596842408180237, 0.02896258980035782, 0.061066530644893646, 0.057959698140621185, -0.08202039450407028, -0.05050329864025116, 0.01424828264862299, 0.022869743406772614, 0.028323963284492493, 0.07318317890167236, 0.014981839805841446, -0.03258722648024559, 0.003363578347489238, 0.008539476431906223, -0.010148988105356693, 0.00407771859318018, 0.017363745719194412, -0.008125231601297855, -0.024060696363449097, -0.020798522979021072, -0.028513824567198753, -0.012142539955675602, -0.03714391589164734, 0.0016354024410247803, 0.0027378967497497797, 0.027754375711083412, -0.019780172035098076, -0.014774717390537262, -0.03415790572762489, 0.1024564579129219, -0.03942226245999336, -0.021057425066828728, 0.0402507483959198, -0.047327425330877304, 0.03545241802930832, 0.02751273475587368, -0.053126849234104156, 0.036142826080322266, -0.0272710919380188, -0.037696242332458496, -0.0278924573212862, -0.001461721840314567, 0.018140453845262527, 0.045221682637929916, -0.058857228606939316, 0.004306416027247906, -0.011253640055656433, 0.04736194759607315, 0.0395948626101017, 0.019176064059138298, -0.05961667746305466, -0.0214371494948864, -0.008612832054495811, -0.01674237847328186, -0.03710939735174179, 0.004940727725625038, -0.02464754320681095, 0.027391912415623665, -0.006597705651074648, 0.012807057239115238, -0.02478562481701374, 0.019072502851486206, 0.011322680860757828, -0.02440590038895607, -0.002297762082889676, -0.09023624658584595, 0.009199677966535091, 0.010235289111733437, -0.03700583428144455, -0.0015598891768604517, 0.02675328589975834, 0.09203130006790161, -0.05799422040581703, -0.028047800064086914, 0.02088482305407524, -0.03949130326509476, -0.009631182998418808, 0.06731472164392471, -0.041976768523454666, -0.02154071070253849, -0.015258003026247025, -0.06337939947843552, 0.019762910902500153, -0.03384722024202347, -0.00737009895965457, 0.09410252422094345, -0.044462233781814575, -0.005790791939944029, -0.011262270621955395, -0.017812510952353477, 0.006135995499789715, -0.055508751422166824, 0.00876817386597395, 0.010865285992622375, -0.021368108689785004, -0.01974565163254738, -0.029325053095817566, -0.07718754559755325, 0.008444544859230518, -0.06279255449771881, 0.0003557216259650886, -0.00001652696300880052, 0.004479018040001392, 0.0013355067931115627, -0.006597705651074648, -0.0350036546587944, -0.05064138025045395, -0.0422184094786644, 0.017743470147252083, -0.018882641568779945, 0.0030464224983006716, -0.021989474073052406, 0.03817952796816826, 0.01726018451154232, 0.04791427031159401, 0.006563185248523951, 0.019573049619793892, 0.03184504061937332, 0.060410644859075546, 0.03436502814292908, 0.03137901425361633, 0.04736194759607315, 0.03597022593021393, -0.022403718903660774, -0.048224955797195435, -0.04049239307641983, -0.04415155202150345, 0.024285079911351204, 0.03519351780414581, -0.05309232696890831, 0.03056778572499752, 0.011184599250555038, 0.09693319350481033, 0.02211029641330242, 0.007754137739539146, 0.042908817529678345, -0.027409173548221588, -0.010494192130863667, -0.01633676514029503, -0.03541789948940277, -0.007620371412485838, -0.015275263227522373, 0.011098298244178295, -0.044600315392017365, 0.00737009895965457, 0.020211676135659218, -0.01900346390902996, 0.02126454748213291, 0.0570966899394989, 0.01617279276251793, 0.03904253616929054, -0.05747641250491142, 0.013609655201435089, -0.014688417315483093, 0.05733833089470863, -0.04384086653590202, -0.04183868691325188, -0.0008797300397418439, -0.06886813789606094, -0.040319789201021194, 0.02331850863993168, -0.019107023254036903, -0.05050329864025116, -0.005307506769895554, -0.012108019553124905, 0.011555693112313747, -0.021885914728045464, -0.010338850319385529, -0.008107971400022507, 0.04932960867881775, 0.015698138624429703, 0.022921524941921234, -0.05178055167198181, 0.017415525391697884, -0.006390583235770464, 0.03645350784063339, -0.022610841318964958, 0.10363014787435532, -0.044565796852111816, 0.013298972509801388, 0.0622747465968132, 0.011564323678612709, 0.03514173626899719, 0.0075642759911715984, 0.01274664606899023, -0.0034369342029094696, -0.019020723178982735, -0.039629384875297546, 0.039629384875297546, 0.016095122322440147, -0.01843387633562088, -0.028997110202908516, -0.00907885655760765, 0.02036701701581478, 0.031292714178562164, 0.013290341943502426, 0.009864195249974728, 0.029687516391277313, -0.0643114447593689, -0.02948039583861828, -0.01933140680193901, -0.017493197694420815, -0.018140453845262527, -0.038490209728479385, 0.009959126822650433, -0.051193706691265106, -0.004535113461315632, -0.09520717710256577, 0.032897911965847015, 0.015180332586169243, -0.0017012069001793861, -0.0681086853146553, 0.0661410242319107, 0.004729290492832661, -0.06130817532539368, -0.031724218279123306, -0.017743470147252083, 0.003633268876001239, 0.0635865181684494, 0.008422969840466976, -0.027305612340569496, -0.011978567577898502, 0.02623547986149788, 0.049640290439128876, -0.055888477712869644, 0.04049239307641983, 0.03634994849562645, 0.002774574561044574, -0.0036203237250447273, -0.024699324741959572, 0.08920063078403473, -0.03824856877326965, -0.043150462210178375, -0.007262222468852997, 0.007236332166939974, 0.08816502243280411, 0.02492370642721653, -0.01862373948097229, -0.031292714178562164, 0.0016192210605368018, 0.01834757626056671, 0.06241282820701599, 0.03634994849562645, -0.08429873734712601, -0.02195495367050171, -0.017743470147252083, 0.026770545169711113, 0.06572677940130234, -0.10197316855192184, 0.021385367959737778, -0.007473659701645374, 0.014817868359386921, 0.021713312715291977, -0.0005423473776318133, -0.023922614753246307, -0.051331788301467896, 0.00661928066983819, -0.03443406894803047, -0.023214947432279587, -0.07187140733003616, 0.008578311651945114, 0.007029210217297077, 0.0184856578707695, -0.036660630255937576, -0.00589003786444664, -0.004280525725334883, 0.02901436947286129, -0.013626915402710438, -0.035383377224206924, 0.044841960072517395, 0.07573769241571426, 0.006614965852349997, -0.02050509862601757, 0.02473384514451027, -0.06296515464782715, -0.006481199059635401, -0.028841767460107803, 0.011719665490090847, 0.016328133642673492, -0.0010798402363434434, -0.0321212038397789, 0.031344495713710785, 0.009303239174187183, -0.03956034407019615, -0.012444593012332916, -0.08264176547527313, 0.04242553189396858, 0.013152260333299637, 0.017381004989147186, 0.06413884460926056, 0.01663018763065338, 0.06721115857362747, -0.0460846908390522, -0.00673578679561615, -0.05858106538653374, -0.0015102660981938243, 0.03800692781805992, 0.09417156875133514, -0.037316519767045975, 0.012919248081743717, -0.01660429686307907, -0.0070378403179347515, -0.035383377224206924, -0.06862649321556091, -0.03313955292105675, 0.010105838067829609, -0.010278440080583096, -0.006062639877200127, -0.014256912283599377, 0.026580683887004852, -0.0028393003158271313, 0.015240742824971676, -0.10142084211111069, -0.026787806302309036, 0.013773627579212189, 0.05416245758533478, -0.009052966721355915, -0.0034843997564166784, -0.014610745944082737, -0.013790887780487537, 0.039905548095703125, -0.042391013354063034, 0.050710421055555344, 0.004004362970590591, 0.027719855308532715, -0.01810593344271183, 0.011219119653105736, 0.04204580932855606, 0.006032434292137623, 0.014213762246072292, -0.003391626290977001, 0.012876097112894058, 0.004906207323074341, 0.09016720205545425, 0.001203897874802351, -0.016647448763251305, 0.0010712102521210909, -0.021178245544433594, 0.018830861896276474, -0.03032614476978779, -0.028099579736590385, 0.002209303667768836, 0.002031307900324464, 0.04397894814610481, 0.03144805505871773, 0.027547255158424377, 0.0700073093175888, -0.03320859372615814, -0.01927962526679039, 0.050434257835149765, 0.027202051132917404, -0.06665883213281631, 0.08008725196123123, -0.037696242332458496, -0.05902983248233795, -0.05157342925667763, -0.009199677966535091, -0.004394874442368746, 0.013290341943502426, -0.016707858070731163, 0.0030054296366870403, 0.018692780286073685, 0.036004744470119476, 0.02468206360936165, 0.01300554908812046, 0.025596853345632553, 0.057959698140621185, 0.02393987588584423, 0.008513585664331913, -0.023266728967428207, -0.003974157385528088, -0.07732562720775604, 0.00376272015273571, 0.021195506677031517, -0.010364741086959839, -0.04919152706861496, 0.007836123928427696, 0.05982379987835884, -0.010019537061452866, 0.01627635397017002, -0.04097567871212959, -0.09030528366565704, -0.08512722700834274, -0.01843387633562088, 0.010787615552544594, -0.013186780735850334, 0.037834323942661285, 0.03412338346242905, -0.019262365996837616, -0.011478022672235966, -0.04570496827363968, 0.008164066821336746, -0.03610830754041672, -0.0622747465968132, -0.027547255158424377, -0.002371117938309908, 0.05371369421482086, -0.05202219635248184, -0.025458771735429764, 0.06721115857362747, 0.020660441368818283, -0.025614114478230476, 0.0023150222841650248, -0.07960397005081177, -0.0029946418944746256, 0.06641718745231628, 0.02192043326795101, 0.03645350784063339, -0.0005895431968383491, 0.019262365996837616, -0.01154706347733736, -0.05785613879561424, -0.03997458890080452, -0.01570676825940609, -0.06700403243303299, 0.022162076085805893, -0.03405434265732765, -0.00933775957673788, -0.02568315528333187, -0.037178438156843185, 0.0036613165866583586, 0.021143725141882896, -0.026684245094656944, 0.01542197447270155, 0.08257272094488144, -0.0038598086684942245, -0.01652662642300129, 0.026787806302309036, -0.08630092442035675, 0.021851394325494766, -0.02552781254053116, 0.0008829663274809718, 0.004084191285073757, -0.020815782248973846, 0.024578502401709557, 0.015974299982190132, -0.058477506041526794, 0.012927877716720104, 0.021885914728045464, 0.004854426719248295, 0.05164247006177902, 0.060686808079481125, -0.01876182109117508, -0.01300554908812046, -0.07318317890167236, 0.0008710999391041696, 0.033415716141462326, -0.01248774304986, 0.0030032719951123, -0.0253034308552742, 0.022973304614424706, 0.006744416896253824, 0.047189343720674515, -0.005570724606513977, 0.013868558220565319, 0.011374461464583874, 0.03239736706018448, 0.030412444844841957, 0.03645350784063339, -0.014843758195638657, 0.00996775645762682, 0.03766172379255295, 0.044841960072517395, 0.0026602258440107107, -0.0023107072338461876, 0.008651667274534702, -0.05944407358765602, 0.0018155556172132492, -0.02563137374818325, -0.0022524541709572077, 0.025786714628338814, 0.037696242332458496, -0.02380179427564144, 0.014990470372140408, -0.025734934955835342, 0.03381270170211792, 0.01952126808464527, 0.05702764913439751, 0.010511452332139015, 0.02356015145778656, -0.042114850133657455, 0.002992484485730529, -0.014636636711657047, 0.002463891403749585, -0.004815591499209404, 0.015016360208392143, 0.0175018273293972, -0.05540519207715988, -0.04349566623568535, -0.03239736706018448, 0.004996823612600565, 0.06755635887384415, 0.0409066379070282, -0.08844118565320969, -0.03935322165489197, 0.03690227493643761, -0.017795249819755554, -0.03431324660778046, -0.0204533189535141, -0.03365736082196236, 0.01598293147981167, 0.0021823346614837646, 0.036660630255937576, -0.02732287161052227, -0.01641443558037281, 0.05985831841826439, 0.08602476119995117, 0.06866101175546646, 0.04701674357056618, 0.012927877716720104, 0.012211580760776997, 0.0050270287320017815, 0.017596758902072906, 0.04839755594730377, 0.012479113414883614, 0.027150269597768784, 0.01824401505291462, 0.014161981642246246, 0.012988288886845112, 0.012953768484294415, -0.04946769028902054, 0.09375732392072678, -0.008789748884737492, -0.005070179235190153, 0.03897349536418915, 0.03800692781805992, 0.02055688016116619, 0.021091945469379425, -0.03855925053358078, 0.026114659383893013, 0.028859028592705727, -0.011736925691366196, -0.05319589003920555, -0.086922287940979, 0.035158995538949966, 0.03514173626899719, 0.009199677966535091, -0.04311593994498253, -0.006222296506166458, -0.030826689675450325, -0.020539619028568268, -0.014731567353010178, -0.0001000551346805878, 0.02342206984758377, 0.04228745028376579, -0.00008475020149489865, 0.005471478682011366, 0.015957040712237358, -0.024837404489517212, -0.02464754320681095, -0.01871003955602646, -0.03942226245999336, -0.012798426672816277, 0.024630283936858177, 0.025372471660375595, 0.04487647861242294, 0.021557969972491264, -0.013126370497047901, -0.04339210316538811, 0.0643114447593689, -0.010770355351269245, -0.017277443781495094, -0.08478202670812607, -0.01889990270137787, 0.02961847558617592, 0.03686775267124176, 0.02647712267935276, -0.05209123715758324, -0.00606695469468832, 0.027391912415623665, -0.016647448763251305, 0.016802789643406868, 0.05609560012817383, -0.00815543718636036, -0.017199773341417313, -0.012781166471540928, 0.012410072609782219, 0.01927962526679039, 0.013523354195058346, -0.010511452332139015, -0.010968847200274467, 0.034641191363334656, 0.004522168543189764, 0.017001282423734665, -0.011495282873511314, 0.02873820625245571, 0.0072794826701283455, -0.10231837630271912, 0.033225856721401215, -0.020436057820916176, -0.030170802026987076, 0.023680973798036575, 0.044462233781814575, 0.012427332811057568, -0.021126465871930122, 0.05647532269358635, 0.05802873894572258, -0.021696051582694054, -0.024802884086966515, -0.0376272015273571, -0.019642090424895287, 0.07111196219921112, -0.05723477154970169, 0.007050785236060619, -0.0622747465968132, 0.015163072384893894, -0.01747593656182289, 0.006852293387055397, -0.024699324741959572, 0.0120130879804492, 0.014947319403290749, 0.012824317440390587, -0.0454288050532341, -0.0038382334169000387, -0.015465125441551208, -0.002293447032570839, -0.010744464583694935, 0.000270634307526052, -0.12530894577503204, -0.026891367509961128, 0.03603926673531532, 0.07635905593633652, 0.048880841583013535, 0.04349566623568535, -0.013713216409087181, -0.00285656051710248, 0.016587037593126297, -0.042114850133657455, 0.019383186474442482, 0.010649533942341805, 0.014118830673396587, 0.004686139989644289, -0.009838305413722992, -0.013126370497047901, 0.00431504612788558, -0.01965934969484806, 0.002752999309450388, 0.03742007911205292, 0.010373370721936226, 0.002098191063851118, -0.05084850266575813, 0.02492370642721653, -0.005195315461605787, 0.06517445296049118, 0.0674528032541275, 0.004131656605750322, -0.03994006663560867, 0.0006569657707586884, 0.08001821488142014, -0.0818132758140564, 0.012228840962052345, -0.08712941408157349, 0.030308883637189865, 0.017743470147252083, 0.024889186024665833, 0.010338850319385529, 0.01398937962949276, 0.0340888649225235, -0.03710939735174179, 0.01824401505291462, -0.009890086017549038, 0.03527981787919998, 0.0682467669248581, 0.04052691161632538, 0.022869743406772614, 0.0311373732984066, 0.008746598847210407, 0.03686775267124176, -0.0012934351107105613, 0.0120130879804492, 0.0024833090137690306, -0.02704670839011669, 0.029756557196378708, -0.021885914728045464, 0.026632465422153473, 0.024336859583854675, -0.02666698582470417, 0.017795249819755554, -0.044186070561409, 0.0037605627439916134, 0.014049789868295193, -0.03175874054431915, -0.025148088112473488, -0.02590753696858883, -0.02830670215189457, -0.0163885448127985, 0.09009816497564316, -0.06182597950100899, -0.026822326704859734, 0.00460846908390522, -0.060824889689683914, 0.02939409390091896, 0.02549329213798046, 0.012116649188101292, -0.006576130166649818, -0.0029471765737980604, 0.027823416516184807, 0.015499645844101906, -0.05012357607483864, 0.016138272359967232, 0.03301873430609703, 0.002377590397372842, -0.01611238159239292, -0.008608517237007618, -0.016000190749764442, -0.0029363888315856457, -0.00407771859318018, 0.012461853213608265, 0.016923610121011734, -0.045877568423748016, -0.019072502851486206 ]
39,931
tldextract.tldextract
__call__
Alias for `extract_str`.
@wraps(TLD_EXTRACTOR.__call__) def extract( # noqa: D103 url: str, include_psl_private_domains: bool | None = False, session: requests.Session | None = None, ) -> ExtractResult: return TLD_EXTRACTOR( url, include_psl_private_domains=include_psl_private_domains, session=session )
(url: str, include_psl_private_domains: bool | None = None, session: Optional[requests.sessions.Session] = None) -> tldextract.tldextract.ExtractResult
[ 0.0055006989277899265, -0.02052667923271656, 0.00008384549437323585, 0.03726755827665329, -0.0029674251563847065, 0.04536014050245285, 0.03198827803134918, -0.04101862758398056, -0.050639424473047256, 0.05320959910750389, 0.042651038616895676, 0.005596212111413479, 0.01036753598600626, -0.008370439521968365, -0.009612113237380981, 0.02111712656915188, 0.015447108075022697, 0.05859307944774628, 0.004111414309591055, -0.04199112579226494, -0.022593241184949875, 0.008018776774406433, 0.027368906885385513, 0.011713406071066856, -0.02903604879975319, -0.016020188108086586, 0.02472926676273346, -0.02023145742714405, -0.005891434848308563, -0.014422510750591755, 0.05199397727847099, -0.005435576196759939, -0.0679360181093216, 0.019554181024432182, -0.038448452949523926, -0.023444177582859993, -0.029973816126585007, 0.05404317006468773, -0.0728679746389389, -0.01008967962116003, -0.039247289299964905, 0.009551331400871277, 0.04223425313830376, -0.005991289857774973, -0.01205204427242279, 0.01998833194375038, -0.0679360181093216, -0.04997951164841652, -0.034940507262945175, -0.047652460634708405, 0.0010132009629160166, 0.02038775198161602, 0.03400273993611336, -0.021898599341511726, 0.03301287442445755, 0.008153364062309265, 0.016645366325974464, 0.10669706016778946, 0.018581680953502655, 0.027125781401991844, -0.01727922633290291, -0.007393599022179842, -0.01703610271215439, 0.07099243998527527, 0.03177988529205322, 0.027351541444659233, -0.021377617493271828, 0.012251753360033035, -0.05317486822605133, -0.018599048256874084, 0.012468828819692135, -0.03393327817320824, -0.02500712312757969, 0.021742304787039757, 0.03754541650414467, -0.03395064175128937, 0.027820423245429993, -0.08801118284463882, 0.0663730725646019, -0.005470308009535074, -0.08669135719537735, -0.02901868149638176, 0.002078500110656023, 0.04827763885259628, 0.02821984328329563, -0.0245208740234375, 0.1205204427242279, -0.06949896365404129, -0.00357089564204216, 0.11642204970121384, -0.051056209951639175, 0.0411575548350811, -0.034280598163604736, -0.016054920852184296, -0.04438764229416847, 0.03158885985612869, 0.012668538838624954, 0.040983896702528, -0.026014354079961777, 0.004706201609224081, 0.05213290452957153, 0.015395009890198708, -0.04445710778236389, 0.0411575548350811, 0.027872521430253983, 0.04153960943222046, -0.0413312166929245, -0.03207510709762573, -0.018981100991368294, 0.042755234986543655, -0.021950697526335716, 0.035253096371889114, 0.008787225000560284, 0.03138046711683273, 0.01026333961635828, -0.05442522466182709, -0.02438194490969181, -0.003501431317999959, -0.07779993861913681, -0.029765423387289047, -0.002418223535642028, 0.017774159088730812, -0.06519217789173126, -0.015603402629494667, -0.04532540962100029, 0.035548318177461624, 0.007953654043376446, -0.023357346653938293, 0.04390139505267143, -0.018303824588656425, -0.005843678489327431, 0.051334064453840256, 0.021464446559548378, 0.030095377936959267, -0.01710556633770466, 0.019380521029233932, -0.017383422702550888, 0.02005779556930065, -0.04032398387789726, 0.043415144085884094, -0.06887378543615341, 0.004369734320789576, 0.021412348374724388, -0.0032018667552620173, 0.000683245831169188, -0.016905857250094414, -0.0067640794441103935, 0.00719388946890831, 0.0014055653009563684, -0.021724937483668327, 0.03233559802174568, -0.043172020465135574, 0.019832037389278412, -0.00305642606690526, -0.042581573128700256, 0.02431248128414154, 0.023826230317354202, 0.016801660880446434, 0.03342965990304947, -0.07120083272457123, 0.02854979783296585, -0.026830559596419334, -0.030772654339671135, -0.025545470416545868, -0.02023145742714405, -0.03810112923383713, 0.11649151146411896, -0.04636737331748009, 0.035374660044908524, 0.059426650404930115, 0.027872521430253983, 0.06685931980609894, 0.03639925643801689, 0.04570746421813965, -0.016193848103284836, 0.04431818053126335, 0.04608951508998871, 0.02505922131240368, -0.02050931379199028, 0.058905668556690216, -0.0009746699943207204, -0.02087400108575821, -0.0749519020318985, 0.04442237690091133, 0.018199628219008446, 0.0288102887570858, -0.04661049693822861, 0.0005312928115017712, -0.014040457084774971, 0.05011844262480736, -0.013241618871688843, -0.00844858679920435, 0.04171327129006386, -0.02856716513633728, -0.04845130071043968, -0.008917470462620258, -0.07814726233482361, 0.01434436347335577, -0.08926153182983398, 0.022002795711159706, -0.03653818368911743, -0.008526734076440334, -0.04383192956447601, 0.010332804173231125, -0.047305140644311905, 0.026049086824059486, -0.07363208383321762, 0.051855046302080154, -0.06085066497325897, -0.021690206602215767, 0.04536014050245285, -0.0021295128390192986, -0.005201134365051985, 0.05237602815032005, 0.015195299871265888, 0.006824860814958811, -0.040983896702528, 0.031172072514891624, 0.034749481827020645, -0.02120395563542843, 0.006976813543587923, -0.04230371490120888, 0.04876388981938362, 0.0061779748648405075, 0.04171327129006386, -0.01684507541358471, 0.042651038616895676, -0.02419091761112213, -0.010532514192163944, -0.08544100075960159, 0.01249487791210413, -0.030911581590771675, 0.04598531872034073, 0.013736551627516747, 0.055467188358306885, -0.0283761378377676, -0.019380521029233932, -0.01004626415669918, 0.100167416036129, 0.006586077157407999, -0.02384359762072563, 0.04181746765971184, 0.015655500814318657, 0.016193848103284836, -0.02453823946416378, 0.039177827537059784, -0.04508228600025177, 0.018790073692798615, 0.0063690016977488995, -0.008357414975762367, -0.013710502535104752, -0.021533912047743797, 0.006933398544788361, 0.057794239372015, -0.0011656966526061296, 0.004827763885259628, -0.0164630226790905, -0.01616779901087284, -0.005478991195559502, -0.03754541650414467, 0.018112797290086746, -0.03747595101594925, -0.004413149319589138, -0.02436457946896553, -0.06974208354949951, -0.02821984328329563, 0.023600472137331963, -0.04126175120472908, -0.006668566260486841, -0.021586010232567787, -0.03803166747093201, 0.05466834828257561, 0.00033890947815962136, -0.007658431306481361, 0.0004672554787248373, 0.015151885338127613, 0.008557124994695187, -0.02490292675793171, 0.0025007121730595827, -0.013641037978231907, 0.051334064453840256, 0.01620253175497055, -0.025510737672448158, -0.010332804173231125, 0.009247425943613052, 0.02478136494755745, -0.011574476957321167, 0.07571601122617722, -0.01590730808675289, -0.06133691594004631, -0.03594774007797241, -0.011070861481130123, 0.10245973616838455, -0.0013176496140658855, -0.009021666832268238, 0.007497795391827822, -0.06557423621416092, -0.03301287442445755, -0.001956937601789832, -0.01216492336243391, -0.06300405412912369, 0.004254684317857027, 0.034627918154001236, 0.038969434797763824, -0.0008503941353410482, 0.0011700381292030215, 0.002861057873815298, 0.025944890454411507, -0.01428358256816864, -0.0013643208658322692, 0.03598247095942497, 0.023635204881429672, -0.043449874967336655, -0.0027807399164885283, -0.04779139161109924, -0.06241361051797867, 0.0063776844181120396, 0.018824806436896324, -0.011730771511793137, 0.011235838755965233, -0.01981467194855213, -0.014318314380943775, 0.025996988639235497, 0.02026618830859661, 0.0639418214559555, -0.006012997590005398, 0.038552649319171906, 0.00035980300162918866, 0.031345732510089874, 0.00999416597187519, -0.07627172768115997, 0.043310947716236115, -0.038378987461328506, 0.0033104047179222107, -0.03782327473163605, -0.030112743377685547, -0.03214457258582115, -0.059252988547086716, 0.0040723406709730625, 0.0025940549094229937, -0.06779708713293076, -0.03983773663640022, -0.09488813579082489, 0.02514605037868023, 0.034089572727680206, -0.04094916209578514, -0.014205435290932655, 0.017834940925240517, 0.039698805660009384, -0.06206629052758217, 0.051160406321287155, 0.0026548360474407673, 0.004801714792847633, 0.05685647204518318, 0.02903604879975319, 0.034940507262945175, -0.021759670227766037, 0.01021124143153429, 0.006351635325700045, 0.005413868464529514, 0.02856716513633728, -0.04490862414240837, -0.001259039156138897, -0.029557030647993088, -0.00714179128408432, -0.06713718175888062, 0.04140068218111992, -0.02094346471130848, 0.013311083428561687, -0.02035301923751831, -0.023079490289092064, 0.003377698129042983, 0.0018939856672659516, -0.008474635891616344, 0.0014131629141047597, -0.011478964239358902, 0.023756766691803932, -0.04907647892832756, -0.06126745045185089, 0.06838753074407578, -0.039108362048864365, 0.047965049743652344, 0.022419579327106476, 0.009247425943613052, 0.05723852664232254, -0.002270611934363842, 0.018442753702402115, 0.04226898401975632, -0.031241538003087044, 0.009039033204317093, 0.027334174141287804, 0.027143148705363274, 0.030164841562509537, 0.005405185278505087, 0.011461597867310047, -0.03646872192621231, -0.08891421556472778, -0.01259907428175211, -0.0033342831302434206, 0.0199709665030241, 0.08703868091106415, 0.0013610647292807698, 0.02894921787083149, 0.00023986866290215403, 0.012955078855156898, -0.008235853165388107, 0.01454407349228859, -0.029782788828015327, -0.016141749918460846, 0.002837179694324732, -0.012086776085197926, -0.02070034109055996, -0.015395009890198708, -0.03632979094982147, -0.022176455706357956, 0.027768325060606003, -0.004150487948209047, 0.0725206583738327, -0.055085133761167526, -0.014474608935415745, 0.06105905771255493, -0.09718045592308044, -0.04119228944182396, 0.047131478786468506, -0.039455682039260864, -0.006464514881372452, -0.004680152516812086, -0.03261345624923706, 0.019033199176192284, -0.00032642760197632015, -0.016680099070072174, -0.0008645040215924382, -0.05737745389342308, 0.02424301579594612, 0.08356546610593796, 0.013276350684463978, -0.03299551084637642, 0.01773942820727825, -0.02070034109055996, -0.011461597867310047, -0.02394779399037361, 0.018512217327952385, 0.02000569738447666, 0.021481813862919807, 0.09516599774360657, -0.03636452555656433, -0.03221403807401657, 0.004319806583225727, 0.0055614798329770565, -0.06276093423366547, 0.038448452949523926, -0.009950750507414341, 0.06852646172046661, 0.05897513031959534, -0.06974208354949951, 0.0038813138380646706, 0.02483346313238144, 0.009612113237380981, -0.01727922633290291, 0.03400273993611336, -0.01687980815768242, -0.02389569580554962, 0.05456415191292763, 0.003579578595235944, 0.05310540273785591, 0.022419579327106476, -0.02389569580554962, -0.0401155911386013, -0.035600416362285614, -0.03712863102555275, -0.015125836245715618, 0.012460146099328995, 0.035009972751140594, -0.0009247425477951765, 0.07314583659172058, 0.014795880764722824, -0.01025465689599514, -0.005665676202625036, 0.013875479809939861, -0.029695957899093628, -0.011340035125613213, 0.0020242310129106045, 0.01670614816248417, -0.022002795711159706, -0.03598247095942497, 0.018546950072050095, 0.009117180481553078, 0.003401576541364193, 0.0421995185315609, 0.011287936940789223, -0.023218419402837753, 0.08238457888364792, 0.03318653628230095, -0.09322099387645721, -0.003351649036630988, -0.03702443465590477, 0.02023145742714405, 0.04473496228456497, 0.1012093797326088, -0.04560326784849167, -0.017557084560394287, -0.013467377983033657, 0.0847463607788086, -0.022627972066402435, 0.04147014394402504, 0.03768434375524521, 0.007311110384762287, 0.027629397809505463, -0.0053661116398870945, 0.027160514146089554, -0.03375961631536484, 0.055536650121212006, 0.013988358899950981, 0.025927523151040077, 0.04504755139350891, 0.034940507262945175, -0.017713379114866257, 0.023183686658740044, 0.002285807393491268, -0.017834940925240517, 0.023166321218013763, 0.06696351617574692, 0.04421398416161537, -0.05769004300236702, 0.027698861435055733, 0.029504932463169098, 0.0028545456007122993, 0.06078119948506355, -0.04105335846543312, 0.01424884982407093, 0.0013838576851412654, -0.02877555787563324, -0.009290840476751328, 0.0033429660834372044, 0.010766956023871899, 0.051472995430231094, -0.11586633324623108, -0.0339680090546608, -0.05352218821644783, 0.026448504999279976, 0.02424301579594612, -0.02089136652648449, -0.006503588519990444, -0.02396515943109989, -0.059808701276779175, 0.011834967881441116, -0.05466834828257561, 0.03221403807401657, -0.018182262778282166, 0.043276216834783554, -0.004658444784581661, -0.03381171450018883, 0.026049086824059486, 0.001956937601789832, 0.04671469330787659, 0.042720500379800797, -0.0411575548350811, -0.015282130800187588, -0.07925868779420853, -0.005296647548675537, -0.011435548774898052, -0.07786940038204193, -0.009429769590497017, -0.0005345489480532706, -0.027143148705363274, -0.014830613508820534, 0.004584639333188534, -0.004845130257308483, -0.08113422244787216, -0.01986677013337612, 0.013580257073044777, 0.005162060726433992, 0.01004626415669918, 0.042581573128700256, -0.026604799553751945, 0.008162046782672405, 0.02511131949722767, -0.059496112167835236, 0.10940616577863693, 0.013649721629917622, 0.0009160595363937318, 0.025719130411744118, 0.029452834278345108, -0.021863866597414017, -0.001613957923837006, -0.030460065230727196, 0.017539717257022858, -0.014952175319194794, -0.003134573344141245, -0.039490412920713425, -0.012017311528325081, -0.013545525260269642, 0.009707625955343246, 0.05331379547715187, -0.0020958660170435905, -0.017253177240490913, -0.05050049349665642, -0.018998466432094574, 0.042546842247247696, -0.018008600920438766, 0.005834995303303003, 0.04487389326095581, -0.013580257073044777, 0.002539785811677575, 0.003286526305601001, -0.018182262778282166, -0.026622166857123375, -0.012303851544857025, -0.038830503821372986, -0.10760009288787842, -0.018633779138326645, -0.02512868493795395, 0.03667711466550827, -0.02908814698457718, 0.026083817705512047, -0.002782910829409957, 0.005392160732299089, 0.018564315512776375, 0.005930508486926556, -0.06772762537002563, 0.0003318545059300959, -0.011852334253489971, 0.019345788285136223, 0.04247737675905228, 0.015559987165033817, -0.0032908678986132145, 0.039594609290361404, 0.02924444153904915, 0.007489112205803394, 0.10398795455694199, -0.012182289734482765, 0.030512163415551186, 0.03164095804095268, -0.005457283463329077, 0.04199112579226494, 0.026986854150891304, 0.038830503821372986, -0.008739468641579151, 0.006555686704814434, -0.031345732510089874, -0.09988956153392792, -0.0005513723008334637, -0.011366084218025208, 0.018842171877622604, -0.018581680953502655, -0.0017051297472789884, -0.027820423245429993, -0.013311083428561687, 0.042581573128700256, 0.011357401497662067, -0.023687303066253662, 0.04251210764050484, 0.06696351617574692, 0.0051403529942035675, -0.04494335502386093, 0.005409527104347944, -0.05425156280398369, 0.026813192293047905, 0.031033145263791084, -0.009368987753987312, -0.01443987712264061, -0.0032192328944802284, -0.013701819814741611, 0.00199058442376554, -0.00518376799300313, -0.00791892223060131, -0.018668511882424355, -0.043519340455532074, 0.038969434797763824, -0.0504310317337513, 0.009586064144968987, 0.03346439450979233, -0.006533978972584009, 0.039907198399305344, 0.016784295439720154, -0.06477539241313934, -0.01691454090178013, -0.05432102829217911, 0.021707572042942047, -0.013614988885819912, 0.03678131103515625, -0.002546298084780574, 0.014691684395074844, -0.0030412308406084776, -0.07161761820316315, 0.005505040287971497, 0.03369015082716942, 0.01408387254923582, -0.006586077157407999, -0.021846501156687737, 0.008878396824002266, 0.03426323086023331, -0.005031815264374018, -0.005748164840042591, 0.016141749918460846, 0.029782788828015327, 0.007814725860953331, -0.054703082889318466, 0.08599671721458435, -0.023808864876627922, -0.023322615772485733, 0.013832064345479012, 0.01465695258229971, 0.013667087070643902, -0.019779939204454422, 0.014370412565767765, -0.02422565035521984, 0.006421099882572889, -0.018946368247270584, 0.023010026663541794, -0.017583133652806282, -0.02512868493795395, 0.03719809651374817, -0.0055918702855706215, 0.010662759654223919, -0.039455682039260864, 0.0035057729110121727, 0.030911581590771675, 0.023722033947706223, -0.0005638541770167649, 0.07682743668556213, -0.027837790548801422, 0.0572732575237751, 0.055953435599803925, -0.03573934733867645, 0.02002306468784809, -0.025684399530291557, -0.015316862612962723, 0.05643968656659126, 0.006616468075662851, -0.013311083428561687, 0.0418521985411644, -0.013562890700995922, 0.025614934042096138, -0.026743728667497635, -0.035548318177461624, -0.07245118916034698, 0.02384359762072563, -0.04261630401015282, -0.04470023140311241, 0.021742304787039757, 0.001090262783691287, 0.05716906115412712, 0.023565739393234253, 0.002520248992368579, 0.009881286881864071, 0.0001626711164135486, 0.003965973388403654, 0.027681495994329453, -0.01642828993499279, 0.02483346313238144, 0.004254684317857027, -0.027264710515737534, -0.026986854150891304, 0.013232936151325703, -0.011392133310437202, 0.03440215811133385, -0.029991181567311287, -0.019015833735466003, -0.014917443506419659, -0.021742304787039757, -0.004343685228377581, 0.018581680953502655, -0.00843990407884121, 0.0007310024811886251, 0.005887093488126993, -0.012130191549658775, -0.01566418446600437 ]
39,935
s3path.old_versions
PureS3Path
PurePath subclass for AWS S3 service. S3 is not a file-system but we can look at it like a POSIX system.
class PureS3Path(PurePath): """ PurePath subclass for AWS S3 service. S3 is not a file-system but we can look at it like a POSIX system. """ _flavour = _s3_flavour __slots__ = () @classmethod def from_uri(cls, uri: str): """ from_uri class method create a class instance from url >> from s3path import PureS3Path >> PureS3Path.from_uri('s3://<bucket>/<key>') << PureS3Path('/<bucket>/<key>') """ if not uri.startswith('s3://'): raise ValueError('Provided uri seems to be no S3 URI!') unquoted_uri = unquote(uri) return cls(unquoted_uri[4:]) @property def bucket(self) -> str: """ The AWS S3 Bucket name, or '' """ self._absolute_path_validation() with suppress(ValueError): _, bucket, *_ = self.parts return bucket return '' @property def is_bucket(self) -> bool: """ Check if Path is a bucket """ return self.is_absolute() and self == PureS3Path(f"/{self.bucket}") @property def key(self) -> str: """ The AWS S3 Key name, or '' """ self._absolute_path_validation() key = self._flavour.sep.join(self.parts[2:]) return key @classmethod def from_bucket_key(cls, bucket: str, key: str): """ from_bucket_key class method create a class instance from bucket, key pair's >> from s3path import PureS3Path >> PureS3Path.from_bucket_key(bucket='<bucket>', key='<key>') << PureS3Path('/<bucket>/<key>') """ bucket = cls(cls._flavour.sep, bucket) if len(bucket.parts) != 2: raise ValueError(f'bucket argument contains more then one path element: {bucket}') key = cls(key) if key.is_absolute(): key = key.relative_to('/') return bucket / key def as_uri(self) -> str: """ Return the path as a 's3' URI. """ return super().as_uri() def _absolute_path_validation(self): if not self.is_absolute(): raise ValueError('relative path have no bucket, key specification')
(*args)
[ -0.00723288394510746, -0.024510663002729416, -0.08670134097337723, 0.01563161052763462, 0.015491709113121033, -0.05267740786075592, -0.007503359578549862, 0.05670655891299248, 0.06663020700216293, 0.010977569036185741, 0.07118165493011475, 0.075322724878788, 0.024062979966402054, 0.018793374300003052, -0.04249260947108269, 0.032270509749650955, 0.0717412531375885, 0.004036145284771919, 0.011173429898917675, 0.029248645529150963, 0.014409807510674, 0.032401081174612045, 0.038761917501688004, -0.008114260621368885, 0.019548838958144188, 0.027439258992671967, 0.003378610359504819, 0.023354148492217064, 0.034173160791397095, -0.08080684393644333, 0.011872935108840466, 0.02855846658349037, 0.00426231836900115, 0.07442735880613327, 0.044768333435058594, -0.03913498669862747, 0.03572139889001846, 0.001987760653719306, 0.02268262207508087, -0.0045211357064545155, -0.03572139889001846, 0.045924849808216095, 0.002002916531637311, -0.06912977248430252, 0.05924342945218086, 0.0493943952023983, -0.00596911134198308, 0.04928247630596161, -0.052640099078416824, -0.0023072015028446913, 0.04984207823872566, 0.04670829698443413, 0.020537473261356354, -0.04876017943024635, -0.007326151244342327, -0.0031967388931661844, 0.03542294353246689, 0.03148706257343292, -0.07118165493011475, 0.02327953465282917, 0.012619074434041977, 0.031692251563072205, 0.03868730366230011, -0.006332853808999062, -0.051446277648210526, -0.04797673225402832, -0.04372373968362808, -0.063571035861969, -0.03260627016425133, 0.03695252910256386, -0.013327905908226967, 0.0068318345583975315, -0.00728884432464838, -0.022178979590535164, 0.01575285755097866, 0.002268728567287326, -0.010315370745956898, 0.015016045421361923, 0.03260627016425133, 0.009392024017870426, -0.056482717394828796, -0.06655558943748474, -0.010949588380753994, -0.0952073261141777, 0.019791334867477417, 0.035217758268117905, 0.005773250013589859, -0.051782041788101196, 0.005563398357480764, 0.0716666430234909, -0.05088667571544647, 0.047939423471689224, -0.03318452835083008, 0.008095607161521912, 0.04726789891719818, -0.016144581139087677, -0.0034322389401495457, -0.0893128290772438, -0.029435180127620697, -0.02329818718135357, -0.004677358083426952, 0.010921608656644821, -0.0025065604131668806, -0.016750818118453026, 0.008729825727641582, -0.004943170119076967, -0.014316540211439133, -0.010688439942896366, 0.0020483843982219696, -0.03868730366230011, -0.000009827684152696747, 0.020481513813138008, -0.02809212915599346, 0.04249260947108269, -0.018746741116046906, -0.0352923721075058, 0.020145751535892487, -0.0155756501480937, 0.00779248820617795, -0.05234164372086525, 0.020183058455586433, 0.03348298370838165, -0.023559335619211197, 0.04555178061127663, 0.04223146289587021, -0.009438657201826572, 0.010595172643661499, 0.00717692356556654, -0.018728086724877357, 0.0023515033535659313, 0.005250952672213316, 0.04879748448729515, -0.04424603655934334, -0.028241358697414398, 0.01381289679557085, 0.05823614075779915, -0.024995652958750725, 0.043798353523015976, -0.042865682393312454, 0.11856147646903992, 0.07692692428827286, -0.008095607161521912, -0.0020856913179159164, -0.007853112183511257, -0.007321488112211227, 0.02493969351053238, 0.02329818718135357, -0.04555178061127663, -0.008976983837783337, 0.002574179321527481, 0.009126211516559124, -0.0008924520807340741, 0.08655211329460144, 0.09587884694337845, 0.028819615021348, -0.07976225018501282, -0.030740922316908836, -0.04211954027414322, -0.0019108151318505406, 0.008781122043728828, -0.021078424528241158, -0.05566196143627167, 0.0029239319264888763, -0.0435372069478035, -0.023074345663189888, 0.0024506000336259604, 0.00007403096969937906, -0.005679982248693705, -0.009559905156493187, 0.0014514733338728547, 0.017953967675566673, 0.02669311873614788, -0.046745602041482925, 0.03620639070868492, 0.037120409309864044, 0.0205747801810503, -0.02327953465282917, 0.008025656454265118, 0.01259109377861023, -0.1117716059088707, 0.04551447555422783, -0.0458875447511673, 0.01774877868592739, 0.016666878014802933, 0.027196763083338737, 0.05972842127084732, -0.015025372616946697, 0.024510663002729416, 0.03480738028883934, 0.04170916602015495, -0.06517523527145386, 0.021544761955738068, -0.0031804172322154045, 0.06163107603788376, 0.06095954775810242, -0.0288009624928236, 0.05196857452392578, -0.0012754312483593822, -0.014167312532663345, 0.09222277253866196, -0.04092571884393692, 0.03868730366230011, 0.01312271784991026, -0.02141418680548668, 0.01139727234840393, 0.0022628994192928076, 0.014447114430367947, -0.012609747238457203, -0.06618252396583557, 0.05338623747229576, -0.05222972482442856, 0.009550577960908413, -0.037791937589645386, 0.004073452204465866, -0.002697758609429002, 0.016060641035437584, 0.023093000054359436, 0.04633522778749466, 0.01493210531771183, 0.014810857363045216, 0.07517349720001221, -0.0003238126228097826, 0.028483852744102478, 0.0587957464158535, 0.016051312908530235, -0.035460252314805984, 0.038388848304748535, 0.006729240529239178, -0.026898307725787163, -0.023260880261659622, 0.0061090122908353806, -0.048610951751470566, 0.07364390790462494, 0.01752493716776371, 0.0276257935911417, -0.006738567259162664, 0.06898054480552673, -0.0026861000806093216, 0.014559035189449787, -0.02492103911936283, -0.03456488624215126, -0.04846172407269478, -0.01903586834669113, -0.005339556373655796, -0.06726442277431488, -0.015099986456334591, 0.011154776439070702, 0.017543591558933258, 0.008557280525565147, -0.044619105756282806, 0.010791034437716007, 0.10789168626070023, -0.01329059898853302, -0.010250083170831203, 0.04141071066260338, -0.012609747238457203, -0.02727137692272663, -0.017963293939828873, -0.010212776251137257, 0.025200841948390007, -0.0623399056494236, -0.05454275384545326, 0.031002072617411613, -0.02126495912671089, -0.014381827786564827, -0.018979908898472786, 0.02564852498471737, -0.010539212264120579, -0.03790385648608208, 0.06890592724084854, 0.0505509115755558, 0.0049338433891534805, -0.03917229175567627, 0.030050745233893394, -0.019809987396001816, -0.0002086857275571674, -0.06095954775810242, -0.018438957631587982, -0.025238148868083954, -0.03704579547047615, -0.02622678317129612, 0.0008924520807340741, 0.01005422230809927, -0.007633933797478676, 0.05622156709432602, -0.0030428478494286537, 0.006911111529916525, -0.013635688461363316, 0.02622678317129612, 0.049095939844846725, -0.012283312156796455, -0.013104064390063286, -0.02691696211695671, -0.040963027626276016, 0.028745001181960106, 0.003215392353013158, -0.09095433354377747, -0.05331162363290787, 0.042865682393312454, -0.056967705488204956, -0.05211780220270157, 0.04655906930565834, 0.01986594870686531, 0.045924849808216095, 0.039209600538015366, -0.005222972482442856, -0.004749640356749296, -0.016890719532966614, 0.01835501752793789, 0.04831249639391899, -0.015556996688246727, 0.0031337833497673273, -0.04689482972025871, 0.018019255250692368, 0.00857593398541212, 0.0858059749007225, 0.006048388779163361, -0.0034392341040074825, -0.023596642538905144, 0.03917229175567627, -0.05517697334289551, 0.04271645098924637, -0.04517871141433716, 0.022178979590535164, -0.010035568848252296, -0.044395264238119125, -0.06260105222463608, 0.02268262207508087, -0.01601400598883629, 0.0340798944234848, -0.016498995944857597, 0.058049608021974564, -0.01151851937174797, 0.026861000806093216, -0.014531055465340614, -0.005167012102901936, 0.013271945528686047, -0.040851105004549026, 0.02906211093068123, -0.004854566417634487, 0.07065935432910919, -0.018606839701533318, -0.007330814842134714, 0.004728655330836773, -0.05976572632789612, -0.013215985149145126, 0.017608879134058952, 0.0008889545570127666, 0.0065333787351846695, -0.032736845314502716, 0.008846409618854523, -0.03478872776031494, 0.01988460123538971, 0.015295847319066525, -0.004005833063274622, -0.007745854556560516, -0.012936183251440525, -0.027308683842420578, 0.01718917489051819, -0.01705860160291195, 0.08871591836214066, -0.06323527544736862, -0.011705053970217705, -0.011546500027179718, 0.028129437938332558, 0.0003917229187209159, 0.038388848304748535, -0.012180717661976814, -0.038165006786584854, 0.004588754381984472, -0.02270127646625042, -0.06058647856116295, -0.005759259685873985, -0.07804612815380096, 0.042044926434755325, 0.018606839701533318, 0.04279106482863426, -0.03471411392092705, 0.0041923681274056435, 0.005610032007098198, 0.023969711735844612, 0.025965634733438492, 0.01140659861266613, 0.03928421437740326, 0.019548838958144188, 0.03402393311262131, 0.06677943468093872, 0.008729825727641582, 0.031002072617411613, 0.01999652199447155, 0.01093093492090702, 0.004490823484957218, 0.06386949121952057, -0.04607407748699188, -0.031580328941345215, -0.023260880261659622, 0.0010445944499224424, -0.00012977278674952686, -0.0132253123447299, 0.032158587127923965, 0.001922473544254899, -0.04771558195352554, 0.012329945340752602, 0.024753158912062645, 0.01857885904610157, -0.015239886939525604, 0.03820231184363365, 0.023093000054359436, -0.01881202682852745, -0.004136407747864723, -0.02083592861890793, -0.08714902400970459, -0.028371931985020638, 0.00048061838606372476, 0.03518044948577881, 0.008342765271663666, -0.004019823390990496, -0.045924849808216095, -0.0000970563487499021, 0.03846346214413643, -0.038276925683021545, -0.02341010794043541, -0.030069397762417793, 0.01917576976120472, 0.042865682393312454, -0.018438957631587982, -0.019380958750844002, -0.0276444461196661, 0.0552888922393322, 0.01691870018839836, 0.030890151858329773, 0.0037330263294279575, -0.09729651361703873, -0.023111652582883835, -0.013076084665954113, 0.01730109564960003, 0.004598081111907959, 0.03130052611231804, 0.005624021869152784, -0.001908483449369669, -0.04913324862718582, 0.019455572590231895, -0.05935535207390785, 0.05719154700636864, 0.05208049714565277, -0.019194424152374268, -0.01962345279753208, 0.04174647107720375, 0.056967705488204956, 0.003429907374083996, -0.028166744858026505, 0.006906448397785425, -0.011481212452054024, -0.01510931272059679, -0.044171422719955444, -0.026525238528847694, 0.05107320845127106, -0.01975402794778347, -0.016872067004442215, -0.024958346039056778, 0.021339572966098785, 0.046260613948106766, 0.04764096811413765, -0.04267914593219757, -0.038985759019851685, -0.007769171614199877, 0.02727137692272663, -0.0025858376175165176, -0.04223146289587021, -0.0659213736653328, 0.024286821484565735, -0.023540683090686798, -0.03913498669862747, 0.04779019579291344, 0.021936483681201935, 0.009060924872756004, 0.02341010794043541, 0.012609747238457203, -0.063571035861969, -0.041933007538318634, -0.030554387718439102, -0.05118513107299805, -0.028371931985020638, 0.029696328565478325, 0.02398836612701416, -0.008020993322134018, 0.013309252448379993, 0.0493570901453495, 0.07383044809103012, -0.025667179375886917, 0.024193555116653442, 0.052155110985040665, -0.05749000236392021, 0.06670481711626053, -0.02635735645890236, 0.009186835028231144, -0.032942034304142, 0.025219494476914406, -0.036747340112924576, -0.044619105756282806, 0.022440128028392792, -0.044283345341682434, 0.01135063823312521, 0.026898307725787163, 0.028745001181960106, 0.0493943952023983, -0.06927900016307831, 0.000689012638758868, 0.02811078354716301, -0.06547369062900543, -0.014549708925187588, 0.03256896510720253, 0.010268736630678177, 0.01656428351998329, -0.005125041585415602, 0.009457310661673546, -0.054393526166677475, 0.017011966556310654, 0.042865682393312454, -0.009737112559378147, 0.005959784612059593, 0.00005162494198884815, 0.01977268047630787, -0.017133215442299843, -0.05704231932759285, -0.019474225118756294, 0.033576250076293945, -0.02176860347390175, 0.030032090842723846, 0.02870769426226616, -0.0020833597518503666, 0.0012894213432446122, -0.02562987245619297, 0.04189569875597954, 0.018047234043478966, 0.096401147544384, -0.036299657076597214, 0.009802400134503841, -0.017338402569293976, -0.0108749745413661, 0.03846346214413643, 0.05540081486105919, -0.010837667621672153, -0.011854281648993492, -0.026282742619514465, 0.02010844461619854, 0.008790449239313602, -0.0019411270041018724, 0.01646168902516365, -0.03268088400363922, 0.00793238915503025, -0.001198485610075295, 0.062265291810035706, 0.016648223623633385, 0.060288023203611374, -0.03846346214413643, 0.0026954268105328083, -0.07804612815380096, -0.05607233941555023, -0.007284181192517281, -0.01951153203845024, 0.04443257302045822, -0.020481513813138008, -0.006430784706026316, -0.005400180350989103, 0.00776450801640749, 0.015846125781536102, 0.025200841948390007, 0.028987497091293335, -0.02727137692272663, -0.03846346214413643, 0.07491234689950943, 0.013617035001516342, 0.026170821860432625, 0.017953967675566673, 0.02518218755722046, 0.005213645752519369, -0.03260627016425133, 0.03021862544119358, -0.02387644536793232, 0.05092398077249527, -0.0021626369562000036, -0.02939787320792675, -0.02352202869951725, -0.010539212264120579, -0.02611486241221428, -0.02247743494808674, 0.03835153952240944, -0.0647275522351265, -0.010660459287464619, -0.012404559180140495, -0.02941652573645115, -0.01964210718870163, -0.012115431018173695, 0.023689910769462585, -0.03695252910256386, 0.030181318521499634, -0.04010496661067009, 0.01457768864929676, 0.007284181192517281, -0.022253593429923058, 0.017123887315392494, 0.010697766207158566, 0.04737982153892517, 0.0276444461196661, 0.01457768864929676, -0.011499865911900997, 0.015827471390366554, -0.042156849056482315, -0.015426422469317913, -0.008608577772974968, 0.05088667571544647, 0.010865648277103901, 0.015174600295722485, 0.00025444503990001976, 0.016834760084748268, -0.10296717286109924, -0.005129705183207989, -0.02562987245619297, -0.002697758609429002, -0.032382428646087646, -0.061108775436878204, -0.009499280713498592, 0.04506678879261017, -0.10072875022888184, -0.02010844461619854, 0.04267914593219757, 0.029080763459205627, -0.02247743494808674, -0.06174299493432045, 0.05670655891299248, -0.06446640193462372, 0.03823962062597275, -0.05954188480973244, 0.02188052423298359, -0.012171391397714615, -0.025368722155690193, 0.04984207823872566, -0.0037097095046192408, 0.02904345653951168, -0.03842615336179733, -0.04973015934228897, -0.07032359391450882, 0.037586748600006104, -0.04432065039873123, -0.06774941086769104, 0.022272245958447456, -0.0552515871822834, 0.023969711735844612, -0.03868730366230011, 0.010464598424732685, 0.013094738125801086, 0.02702888287603855, -0.028838269412517548, -0.008781122043728828, 0.005852526985108852, 0.02939787320792675, -0.0822991207242012, 0.01964210718870163, -0.02316761389374733, 0.015967372804880142, -0.05939265713095665, -0.010296717286109924, 0.06998783349990845, 0.010884301736950874, -0.014857491478323936, 0.03624369949102402, -0.021955138072371483, 0.030647655948996544, 0.016284482553601265, 0.02624543569982052, 0.011733034625649452, -0.05670655891299248, -0.029808249324560165, -0.05823614075779915, -0.02105977013707161, 0.05424429848790169, -0.05189396068453789, -0.015501036308705807, -0.005456140730530024, 0.004043140448629856, 0.005875844042748213, -0.04178377985954285, 0.05353546887636185, 0.04152262955904007, -0.006328190676867962, 0.053460851311683655, -0.018830681219697, 0.007065002806484699, -0.09692344814538956, 0.03984381631016731, -0.019679414108395576, -0.006990388967096806, 0.03607581555843353, -0.05189396068453789, -0.023801831528544426, 0.02844654582440853, -0.006542705465108156, 0.037213679403066635, -0.04152262955904007, 0.0517447330057621, -0.015370461158454418, 0.011453232727944851, -0.028017515316605568, -0.001305743120610714, 0.015016045421361923, -0.025200841948390007, -0.022253593429923058, 0.011984855867922306, 0.004304288886487484, -0.027103496715426445, 0.011285350657999516, 0.016275154426693916, -0.0717412531375885, 0.031132645905017853, 0.015072005800902843, 0.02456662431359291, -0.05111051723361015, -0.004546783864498138, -0.0006878467975184321, -0.004012828227132559, -0.059803035110235214, -0.0003485867637209594, 0.019940562546253204, -0.017207829281687737, -0.02822270430624485, -0.03538563847541809, -0.00152025802526623, 0.003294669557362795, 0.04637253284454346, -0.04514140263199806, 0.053199704736471176, -0.029603062197566032, 0.007018369156867266, 0.044768333435058594, -0.03984381631016731, 0.005484120920300484, -0.03600120171904564, 0.001985429087653756, 0.04648445546627045, -0.023951059207320213, -0.012199371121823788, -0.00846401322633028, -0.0540950708091259, 0.021246304735541344, -0.02611486241221428, 0.01516527310013771, 0.05103590339422226, -0.0005671821418218315, 0.03424777463078499, 0.021190345287322998, 0.0014130005147308111, -0.0132253123447299, -0.008151567541062832, 0.0388365313410759, -0.05458006262779236, -0.07207702100276947, -0.002338679041713476, -0.015790164470672607, -0.023596642538905144, -0.046633683145046234, -0.0022372507955878973, 0.05137166380882263, 0.020854583010077477, 0.07185317575931549, 0.019959215074777603, -0.04126148298382759, 0.0014398149214684963 ]
39,950
s3path.old_versions
_absolute_path_validation
null
def _absolute_path_validation(self): if not self.is_absolute(): raise ValueError('relative path have no bucket, key specification')
(self)
[ 0.030626095831394196, 0.034635089337825775, -0.051985498517751694, 0.05441718176007271, -0.01100830640643835, -0.03923557698726654, 0.05116398259997368, 0.048600852489471436, 0.035522326827049255, -0.015419844537973404, 0.04679352045059204, 0.0412072129547596, 0.06151507422327995, -0.022361651062965393, -0.041305795311927795, 0.03460222855210304, 0.053759969770908356, 0.008375349454581738, 0.01891128532588482, 0.025384826585650444, -0.03368213400244713, -0.05053963139653206, -0.028835192322731018, -0.018451236188411713, 0.00847803894430399, 0.08596337586641312, 0.021227959543466568, 0.001101857633329928, 0.03723108023405075, -0.019469914957880974, -0.007911194115877151, 0.016939647495746613, 0.06687135994434357, 0.07025600224733353, 0.03920271620154381, -0.07459360361099243, 0.017859745770692825, 0.007258088793605566, -0.08254586905241013, -0.05530441924929619, -0.002409094013273716, 0.058426178991794586, 0.005183762405067682, -0.022624535486102104, 0.07807682454586029, 0.018566248938441277, -0.054778650403022766, 0.05021102353930473, -0.07709100842475891, -0.04643205180764198, -0.01725182496011257, -0.0052001927979290485, -0.002480976516380906, -0.011796961538493633, -0.035522326827049255, 0.015009087510406971, 0.0562245175242424, 0.06273091584444046, -0.029903162270784378, -0.026058468967676163, -0.026617100462317467, 0.014351874589920044, 0.009463857859373093, -0.07807682454586029, 0.04541337490081787, -0.039432741701602936, -0.02571343258023262, -0.05596163123846054, -0.0031833723187446594, 0.07413355261087418, -0.02277240715920925, 0.03831547871232033, -0.06595125794410706, 0.007401854265481234, 0.030757537111639977, -0.05290559306740761, 0.0182376429438591, 0.05862333998084068, 0.03499655798077583, 0.006153150461614132, -0.06815291941165924, -0.07985129952430725, 0.03235127776861191, -0.07104465365409851, 0.0022509524133056402, 0.006079214159399271, 0.025121942162513733, -0.010055349208414555, 0.0714389830827713, 0.0778796598315239, -0.007689384277909994, -0.01859910972416401, -0.05080251395702362, -0.061317913234233856, 0.0548115111887455, 0.0349636971950531, 0.009718528017401695, -0.06742998957633972, -0.012692413292825222, -0.0395970456302166, -0.022049473598599434, 0.01596204563975334, 0.03604809567332268, 0.025236954912543297, 0.01198591012507677, 0.018040478229522705, 0.01198591012507677, -0.07538225501775742, -0.016890358179807663, -0.01116439513862133, -0.022936711087822914, -0.016249574720859528, 0.006785717327147722, 0.027159299701452255, -0.03555518761277199, -0.020882923156023026, -0.010885079391300678, -0.03407645970582962, 0.016405662521719933, -0.023593923076987267, 0.06604984402656555, 0.02696213684976101, -0.05267557129263878, -0.02704428881406784, 0.09266693890094757, 0.02428399585187435, -0.031102575361728668, 0.02500692941248417, -0.0182376429438591, 0.0062394095584750175, 0.00335383671335876, 0.013776813633739948, -0.049356646835803986, -0.005138579290360212, -0.047352150082588196, 0.0411086343228817, 0.059806324541568756, 0.04048427939414978, -0.04511762782931328, 0.038282617926597595, 0.05862333998084068, 0.016873927786946297, 0.02821083925664425, -0.025368396192789078, 0.01610991731286049, 0.03581807389855385, -0.02500692941248417, 0.0034565262030810118, -0.011632658541202545, 0.018122630193829536, 0.04662921652197838, -0.007471682969480753, 0.017005369067192078, 0.028950203210115433, 0.023232456296682358, -0.046202030032873154, -0.008905227296054363, -0.0426202192902565, 0.038808390498161316, -0.0038796067237854004, -0.0035592156928032637, -0.03371499478816986, 0.05395713448524475, -0.039925649762153625, -0.01583881676197052, 0.04524907097220421, -0.0004210266633890569, -0.03368213400244713, 0.0047401441261172295, 0.017284685745835304, -0.012626692652702332, 0.023741796612739563, -0.032499149441719055, -0.00798102281987667, 0.01038395520299673, -0.039169855415821075, 0.004370462149381638, 0.005910803563892841, 0.016791775822639465, 0.00784957967698574, -0.02384037710726261, -0.030839689075946808, 0.036409564316272736, 0.011131534352898598, 0.02691284567117691, 0.04498618468642235, -0.043967507779598236, 0.008334274403750896, 0.04699068143963814, 0.028769470751285553, -0.1035766676068306, 0.03989278897643089, 0.025828445330262184, 0.01984781213104725, 0.023873237892985344, -0.0635852962732315, 0.05053963139653206, 0.007882440462708473, 0.0007311487570405006, 0.05724319443106651, -0.0048674787394702435, -0.04373748227953911, 0.01465583499521017, 0.00746346777305007, 0.02188517153263092, 0.0349636971950531, -0.0044156452640891075, -0.0063420990481972694, 0.005610950291156769, 0.0607592836022377, -0.06026637181639671, -0.017777593806385994, -0.056520260870456696, -0.02913093753159046, -0.01877984218299389, 0.000675696472171694, -0.04285024479031563, 0.012684198096394539, -0.0028157441411167383, 0.07709100842475891, 0.07702528685331345, -0.006962343119084835, 0.08287447690963745, -0.04551195353269577, 0.05786754563450813, 0.0009385813609696925, 0.056881729513406754, 0.03149690106511116, -0.01361251063644886, 0.007964592427015305, -0.010687915608286858, -0.04978383705019951, -0.0319405198097229, -0.0026596563402563334, 0.025121942162513733, -0.023429621011018753, 0.048600852489471436, -0.00965280644595623, 0.02904878556728363, 0.007619555573910475, -0.03374785557389259, -0.00022180916857905686, -0.027652209624648094, -0.01116439513862133, -0.04163440316915512, -0.042324475944042206, 0.023413190618157387, 0.019552066922187805, -0.011895543895661831, -0.04160154238343239, -0.00029625900788232684, 0.07774822413921356, -0.06667419523000717, -0.009529579430818558, 0.0348651148378849, 0.004255449865013361, -0.05819615349173546, -0.05441718176007271, 0.04455899819731712, 0.0034503648057579994, -0.02683069370687008, 0.0068021477200090885, 0.026436366140842438, 0.027110008522868156, -0.023544631898403168, -0.027372894808650017, 0.009603515267372131, -0.005142686422914267, -0.010466106235980988, 0.0532013401389122, -0.0052289459854364395, 0.029525265097618103, -0.04045141860842705, 0.019502775743603706, 0.005052319727838039, 0.03128330782055855, 0.042193032801151276, 0.006325668655335903, 0.007907086052000523, 0.007512758485972881, 0.002581612206995487, 0.00013914417650084943, 0.027027858421206474, -0.0016450847033411264, 0.033879294991493225, -0.020669328048825264, -0.029607417061924934, -0.06401248276233673, -0.029590986669063568, 0.01283207070082426, 0.010827573016285896, -0.02068575844168663, -0.020718619227409363, -0.027290742844343185, 0.0013421508483588696, 0.00430474104359746, 0.06470255553722382, -0.06940162181854248, -0.008350704796612263, -0.0064242505468428135, -0.037921153008937836, 0.027192160487174988, -0.022000184282660484, 0.007299164775758982, -0.004121953621506691, -0.010112854652106762, -0.012043416500091553, -0.006863761693239212, 0.019141308963298798, 0.04738501086831093, -0.033254943788051605, -0.013694662600755692, -0.014327229000627995, 0.029919592663645744, 0.043934646993875504, 0.03739538416266441, 0.06986167281866074, 0.004078824073076248, -0.021425122395157814, 0.030018175020813942, -0.03670531138777733, 0.050868235528469086, -0.009373490698635578, -0.04285024479031563, -0.06108788773417473, -0.009702097624540329, 0.007599017582833767, 0.00345241860486567, -0.014466886408627033, 0.04074716567993164, -0.013021019287407398, 0.021638717502355576, -0.008305520750582218, -0.012528110295534134, -0.0025549130514264107, 0.0050071366131305695, -0.014992657117545605, -0.015025516971945763, 0.058393318206071854, -0.03318922221660614, 0.033517830073833466, 0.00305192987434566, 0.032499149441719055, -0.03197338059544563, 0.023281747475266457, -0.01695607788860798, -0.022361651062965393, 0.00847803894430399, -0.010909724980592728, -0.02886805310845375, -0.03946560248732567, 0.02686355449259281, -0.0395970456302166, -0.015074808150529861, 0.01541162934154272, 0.029705997556447983, -0.008313735947012901, -0.013012804090976715, 0.03016604669392109, 0.04919234290719032, 0.14274652302265167, -0.11356629431247711, -0.031694065779447556, -0.03269631415605545, -0.01992996409535408, 0.011895543895661831, 0.014491531997919083, -0.015896324068307877, 0.025861306115984917, -0.007192367687821388, -0.005196085199713707, -0.039925649762153625, 0.024924779310822487, -0.09095819294452667, 0.02641993574798107, 0.040188536047935486, 0.034142181277275085, -0.005023567005991936, -0.025697002187371254, 0.0016255737282335758, 0.044591858983039856, 0.050506770610809326, -0.02433328703045845, 0.014499747194349766, -0.028325852006673813, -0.018270503729581833, 0.01578952744603157, -0.002015793463215232, -0.008112465031445026, 0.012626692652702332, 0.051492586731910706, -0.03179264813661575, 0.06611556559801102, -0.06138363480567932, -0.002308458322659135, -0.012585616670548916, 0.054384320974349976, -0.008683417923748493, 0.02931166999042034, -0.000525256444234401, 0.02094864286482334, 0.018352655693888664, -0.0865548700094223, 0.03479939326643944, 0.04879801720380783, -0.014762632548809052, 0.00020833118469454348, 0.024218274280428886, -0.018714122474193573, 0.025434117764234543, -0.025023359805345535, -0.05970774218440056, 0.007221120875328779, 0.018796272575855255, 0.006756964605301619, -0.01127940695732832, -0.032811325043439865, -0.07912836968898773, -0.015041947364807129, -0.02798081561923027, -0.013743952848017216, -0.030363211408257484, 0.010876864194869995, 0.015986690297722816, 0.05382569134235382, -0.02321602590382099, -0.04140437766909599, -0.01659461110830307, 0.03923557698726654, 0.009373490698635578, -0.008235692046582699, -0.015354123897850513, -0.04754931479692459, -0.013563219457864761, -0.025253385305404663, 0.021901601925492287, -0.009463857859373093, 0.03336995840072632, 0.013785028830170631, -0.013333195820450783, -0.024316856637597084, -0.017646152526140213, 0.021556565538048744, 0.06588553637266159, 0.05372710898518562, 0.012043416500091553, -0.014236862771213055, 0.05195263773202896, 0.03493083640933037, 0.000240806708461605, -0.05096681788563728, 0.007590802852064371, -0.0197492316365242, -0.02584487572312355, -0.0594448558986187, -0.028309421613812447, -0.05579732730984688, -0.00573828537017107, -0.03545660525560379, -0.004896231926977634, 0.006321561522781849, 0.03410932049155235, 0.01774473302066326, -0.04636633023619652, 0.020390013232827187, 0.021425122395157814, 0.020899353548884392, 0.039169855415821075, -0.0006489972001872957, 0.0012702682288363576, -0.02112937718629837, -0.046103447675704956, -0.012889577075839043, 0.05247840657830238, 0.008691633120179176, -0.004888016730546951, 0.06148221716284752, 0.07078176736831665, -0.018270503729581833, -0.007964592427015305, 0.0006541316397488117, -0.04731928929686546, -0.04436183348298073, 0.0410100519657135, 0.01633172668516636, -0.03782257065176964, -0.08248014748096466, -0.014434026554226875, -0.006633737124502659, 0.001902835094369948, 0.03297562897205353, -0.0076318783685564995, -0.029508834704756737, 0.039169855415821075, -0.0010330557124689221, -0.011616228148341179, -0.000270329910563305, 0.08149433135986328, 0.0048510488122701645, -0.024300426244735718, -0.0004780192975886166, 0.023725366219878197, 0.021375831216573715, 0.022608105093240738, 0.0023618568666279316, 0.023922529071569443, -0.032318416982889175, -0.03900555148720741, 0.01118904072791338, -0.05668456479907036, -0.015575932338833809, 0.026485657319426537, 0.05964202061295509, 0.0805085152387619, 0.01569915935397148, 0.03473367169499397, -0.020307861268520355, -0.023413190618157387, 0.06305952370166779, 0.021901601925492287, -0.015263756737112999, -0.056783147156238556, 0.014195786789059639, -0.06184368208050728, -0.014787278138101101, -0.06483399868011475, -0.010153930634260178, -0.028753040358424187, -0.021375831216573715, 0.001859705545939505, 0.01439295057207346, -0.008358919993042946, 0.06526118516921997, 0.020044976845383644, 0.004961953032761812, 0.12828785181045532, 0.005602735094726086, 0.000249792035901919, -0.10390527546405792, 0.03568663075566292, -0.010375740006566048, 0.012265225872397423, 0.02922951988875866, -0.039794206619262695, 0.048962321132421494, 0.026058468967676163, -0.010482536628842354, -0.0003201343060936779, 0.004008995369076729, 0.005422001704573631, 0.03923557698726654, 0.021474413573741913, 0.05537014082074165, 0.019502775743603706, 0.038282617926597595, -0.03864408656954765, 0.023248886689543724, 0.010572903789579868, -0.02855587750673294, 0.020390013232827187, -0.014573683962225914, -0.03864408656954765, -0.03172692656517029, -0.01212556753307581, -0.041798707097768784, -0.010728991590440273, -0.037296801805496216, 0.0025980425998568535, 0.03821689635515213, 0.020899353548884392, -0.06499829888343811, 0.02535196579992771, 0.03118472546339035, -0.04639919102191925, -0.01601955108344555, 0.02029143087565899, -0.020620036870241165, -0.0021585319191217422, -0.006695350632071495, -0.00860948208719492, 0.09345559775829315, -0.03982706740498543, 0.014688695780932903, 0.00743882218375802, 0.014236862771213055, -0.027340034022927284, 0.03548946604132652, 0.02152370475232601, -0.06463683396577835, -0.04222589358687401, -0.025992749258875847, 0.0008466743747703731, -0.012421313673257828, -0.0117641007527709, 0.027438616380095482, -0.01671783998608589, 0.023725366219878197, -0.08951232582330704, 0.02344605140388012, -0.005668456666171551, -0.013456422835588455, 0.022443801164627075, 0.012380237691104412, 0.05346422642469406, -0.00791940838098526, 0.003394912462681532, 0.027685070410370827, -0.012495249509811401, -0.060923583805561066, -0.014918720349669456, 0.007155399303883314, 0.02428399585187435, -0.02717573009431362, -0.04485474154353142, -0.016487814486026764, -0.010244297794997692, -0.032449860125780106, -0.0006839116103947163, -0.037789709866046906, 0.044953323900699615, 0.00016841066826600581, -0.05395713448524475, -0.00719647528603673, 0.03637670353055, -0.07755105942487717, 0.011156179942190647, 0.04048427939414978, 0.018648400902748108, -0.06023351103067398, -0.04600486531853676, 0.03709963709115982, -0.011493001133203506, -0.010934370569884777, -0.006116182543337345, 0.05004671961069107, -0.010022488422691822, 0.03847978264093399, 0.03512800112366676, 0.03864408656954765, 0.05671742558479309, -0.06979595124721527, -0.08044279366731644, -0.07268768548965454, 0.05057249218225479, -0.024448299780488014, 0.03322208300232887, -0.010203221812844276, -0.034536510705947876, -0.0030991670209914446, -0.023725366219878197, 0.02904878556728363, 0.03861122578382492, -0.010811143554747105, -0.032137684524059296, 0.04958667233586311, 0.05205121636390686, 0.023199595510959625, -0.07485648989677429, -0.028900913894176483, -0.046103447675704956, -0.008979164063930511, -0.03864408656954765, -0.03309064358472824, 0.028095828369259834, -0.027685070410370827, 0.027455046772956848, 0.046202030032873154, -0.040550000965595245, -0.002460438758134842, 0.03228555619716644, -0.016791775822639465, -0.07097893208265305, -0.06736426800489426, -0.020275000482797623, 0.0058902655728161335, 0.0212115291506052, 0.008855936117470264, -0.016266005113720894, 0.005598627496510744, -0.03519372269511223, 0.01574845053255558, 0.009669236838817596, -0.03680389001965523, 0.024924779310822487, 0.05428573861718178, 0.0212608203291893, 0.02891734428703785, 0.029821010306477547, 0.035653769969940186, -0.029968883842229843, 0.02108008600771427, -0.03838120028376579, -0.012708843685686588, -0.0011419064830988646, -0.02446473017334938, -0.0026144729927182198, -0.01966707967221737, 0.038184039294719696, 0.028260130435228348, 0.0037954014260321856, 0.025466978549957275, 0.017054660245776176, 0.003064252668991685, 0.006625521928071976, -0.015600577928125858, -0.015230895951390266, -0.010811143554747105, -0.009504933841526508, -0.036902472376823425, 0.020718619227409363, -0.012248795479536057, 0.010268943384289742, -0.022788837552070618, -0.11980981379747391, 0.00782904215157032, -0.057900406420230865, -0.004087039269506931, -0.028621597215533257, 0.033649273216724396, -0.07262196391820908, -0.016085272654891014, -0.033517830073833466, -0.019453486427664757, -0.027964385226368904, 0.010876864194869995, -0.050868235528469086, -0.0562245175242424, -0.055008672177791595, 0.03134902939200401, 0.022739548236131668, 0.013472853228449821, 0.03179264813661575, -0.019026298075914383, 0.09306126832962036, 0.053759969770908356, 0.004263665061444044, -0.03019890747964382, 0.00440332293510437, 0.004682638216763735, 0.03713249787688255, 0.07157042622566223, -0.018040478229522705, -0.006350314244627953, -0.07525081187486649, 0.02740575559437275, 0.011115103960037231, -0.020488595589995384, 0.033024922013282776, -0.01659461110830307, -0.029640277847647667, 0.012840285897254944, 0.008946303278207779, 0.03545660525560379, 0.023281747475266457, -0.0043622469529509544, -0.04777933657169342, -0.02318316511809826, 0.047352150082588196, 0.00892165768891573, 0.016126347705721855, -0.012593831866979599, 0.00791940838098526, 0.014179356396198273, 0.03864408656954765, 0.029590986669063568, 0.01459011435508728, -0.010770067572593689, 0.01899343729019165 ]
39,953
s3path.old_versions
as_uri
Return the path as a 's3' URI.
def as_uri(self) -> str: """ Return the path as a 's3' URI. """ return super().as_uri()
(self) -> str
[ -0.043504878878593445, -0.0481073260307312, -0.03786100447177887, 0.028236178681254387, 0.03688676282763481, -0.02027428150177002, -0.013521786779165268, 0.063191257417202, 0.09446773678064346, 0.03298979997634888, 0.030470212921500206, 0.013353814370930195, 0.004056536126881838, 0.019115271046757698, 0.012858295813202858, 0.05244101956486702, 0.012648330070078373, -0.015176316723227501, 0.034770309925079346, 0.03974229469895363, -0.03404802829027176, 0.008570797741413116, 0.016410915181040764, -0.057144246995449066, 0.00886054988950491, 0.04824170470237732, 0.0038108762819319963, 0.0003372573119122535, -0.014076096005737782, -0.034064825624227524, 0.002903824672102928, -0.015587848611176014, 0.02699318155646324, 0.08788321912288666, 0.048544056713581085, 0.03194837272167206, -0.005135759711265564, 0.031410858035087585, -0.0378945991396904, -0.00572366314008832, -0.04548695683479309, 0.031897980719804764, 0.0020345670636743307, -0.03374567627906799, 0.07484854757785797, 0.04578930512070656, -0.022541910409927368, -0.0006944613414816558, -0.002523787086829543, -0.02101336047053337, 0.057278625667095184, 0.05835365131497383, -0.009725607931613922, -0.019417623057961464, -0.051130831241607666, -0.014739587903022766, 0.03016786277294159, 0.03604689985513687, -0.035677362233400345, 0.0787455141544342, 0.03964151069521904, -0.016318529844284058, 0.0586559996008873, -0.024204839020967484, -0.02289465256035328, -0.0024859930854290724, -0.036483630537986755, -0.004745223559439182, 0.002227735472843051, 0.03621487319469452, 0.029311202466487885, -0.018191423267126083, -0.01498314831405878, -0.004132123664021492, 0.009675216861069202, -0.013412605039775372, 0.00002263692113047, 0.023398570716381073, -0.01090981438755989, -0.002206738805398345, -0.04649478942155838, -0.07081720978021622, -0.030117470771074295, -0.05079488828778267, -0.0249607153236866, -0.029479175806045532, 0.004342089407145977, -0.06634914129972458, -0.02007271535694599, 0.039910268038511276, -0.027530694380402565, 0.0439080148935318, -0.05915991961956024, -0.03759224712848663, 0.007294206414371729, -0.033023394644260406, -0.010498281568288803, -0.10400857776403427, 0.032603465020656586, -0.023784907534718513, 0.011354941874742508, 0.024288825690746307, 0.021130941808223724, 0.0012031031074002385, 0.010741841979324818, -0.014546419493854046, -0.0018613453721627593, -0.04743543639779091, 0.0024901924189180136, -0.019669581204652786, -0.006500536110252142, 0.01353018544614315, -0.020895780995488167, 0.036416441202163696, 0.004984584171324968, -0.0670546293258667, 0.045957278460264206, 0.0005175652913749218, 0.021063752472400665, -0.03967510536313057, 0.013395807705819607, 0.06809605658054352, -0.02328098937869072, 0.017502736300230026, 0.055397335439920425, 0.05657314136624336, -0.03675238415598869, 0.009305677376687527, -0.03802897781133652, -0.02482633665204048, 0.002931120339781046, 0.03772662580013275, -0.10152258723974228, -0.04323612526059151, 0.02328098937869072, 0.040783725678920746, 0.039910268038511276, 0.019132068380713463, 0.006970859132707119, 0.1319591999053955, 0.023448962718248367, 0.010691449977457523, -0.00025563317467458546, -0.00524494145065546, -0.00770993810147047, 0.045923683792352676, 0.00572366314008832, -0.03382966294884682, -0.028992054983973503, -0.025884563103318214, 0.0724969357252121, 0.043303314596414566, 0.09991005063056946, 0.037256304174661636, -0.03413201496005058, -0.055363740772008896, -0.02307942323386669, -0.020089512690901756, 0.03853289410471916, 0.005005580838769674, 0.024423202499747276, -0.004295896738767624, -0.01646970398724079, -0.011102982796728611, -0.011346543207764626, -0.017502736300230026, 0.02055983617901802, 0.02593495510518551, -0.007697340101003647, -0.019619189202785492, 0.0019127869745716453, -0.005396116990596056, -0.08096274733543396, 0.021030157804489136, 0.04636041447520256, 0.0360804945230484, -0.008650584146380424, 0.0677265152335167, 0.019585594534873962, -0.08351593464612961, 0.015176316723227501, -0.04743543639779091, 0.03786100447177887, 0.047771383076906204, 0.039171189069747925, 0.00793670117855072, -0.01681404747068882, 0.023096220567822456, 0.03534141555428505, 0.016797251999378204, -0.026069333776831627, 0.02874009683728218, -0.05915991961956024, 0.02156767062842846, 0.030117470771074295, -0.09063796699047089, 0.05932788923382759, -0.03547579422593117, -0.046897925436496735, 0.08573316782712936, -0.026405278593301773, 0.006777690723538399, -0.051164425909519196, -0.0048208110965788364, 0.03722270950675011, -0.02091257832944393, 0.032284315675497055, -0.0284209493547678, -0.038297731429338455, 0.07605795562267303, -0.035744551569223404, 0.03614768385887146, -0.04562133550643921, -0.005984020885080099, 0.01090981438755989, -0.055565305054187775, -0.07169067114591599, 0.03614768385887146, 0.043437689542770386, 0.044378336519002914, 0.06974218785762787, -0.028824083507061005, 0.010254722088575363, -0.010153938084840775, -0.02932799980044365, -0.014227272011339664, 0.05146677792072296, -0.024624770507216454, -0.060134157538414, -0.027312330901622772, -0.04031340405344963, -0.02670762874186039, 0.06325844675302505, 0.05697627738118172, 0.04394160956144333, 0.0009968118974938989, 0.010229526087641716, 0.003435037797316909, -0.0031809795182198286, -0.03631565719842911, -0.02097976580262184, -0.026002144441008568, -0.013672962784767151, -0.016066569834947586, -0.02188681811094284, -0.0062527768313884735, -0.000324396911310032, 0.05996618792414665, -0.0011579605052247643, -0.03947354108095169, 0.05522936210036278, 0.03933916240930557, -0.03591252118349075, -0.002731652930378914, 0.02912643365561962, -0.04219469428062439, -0.014470831491053104, -0.004925793968141079, -0.01625973917543888, -0.024809539318084717, -0.06450144201517105, -0.0769314095377922, 0.03957432508468628, -0.013311821036040783, -0.032872218638658524, -0.01337061170488596, -0.025531820952892303, -0.005442309193313122, -0.009557635523378849, 0.0457221157848835, 0.06954061985015869, 0.021618062630295753, -0.061343561857938766, -0.0018036048859357834, -0.006412350572645664, -0.038398515433073044, -0.06372877210378647, -0.0027967423666268587, -0.06114199385046959, -0.02848813869059086, -0.013513388112187386, 0.00492999330163002, 0.03087334707379341, 0.0038591683842241764, 0.05328087881207466, -0.030352633446455002, 0.02454078383743763, 0.015302295796573162, -0.003735288744792342, 0.016738461330533028, 0.03248588368296623, 0.024204839020967484, -0.05872318893671036, -0.05700986832380295, 0.017872275784611702, 0.006853278260678053, -0.020425457507371902, 0.00569846760481596, 0.032217126339673996, 0.01810743659734726, -0.05946226790547371, 0.008415422402322292, 0.008503608405590057, 0.03614768385887146, 0.011044192127883434, 0.02954636514186859, -0.005093766376376152, -0.010809031315147877, 0.0037142920773476362, 0.05919351428747177, -0.001867644372396171, 0.02024068683385849, -0.06413190811872482, 0.03463593125343323, 0.031595628708601, 0.09164579957723618, -0.011430528946220875, -0.02156767062842846, -0.008910941891372204, 0.03433358296751976, -0.08190339803695679, 0.02265949174761772, -0.012807903811335564, -0.013202639296650887, 0.007331999950110912, -0.031444452702999115, -0.06443425267934799, 0.050156593322753906, -0.03136046603322029, 0.061645910143852234, 0.02373451553285122, 0.010179134085774422, 0.0030591993127018213, 0.015512261539697647, -0.023415368050336838, -0.033056989312171936, 0.03628206253051758, -0.016452906653285027, 0.04199312627315521, -0.0020954571664333344, 0.06335923075675964, -0.003911660052835941, 0.008415422402322292, 0.019551999866962433, -0.08257528394460678, 0.023650528863072395, -0.018544165417551994, -0.04041418433189392, 0.009011724963784218, -0.03776022046804428, -0.036685194820165634, -0.0004816086729988456, 0.020375065505504608, 0.040111836045980453, -0.005425512325018644, 0.035643767565488815, -0.008495209738612175, -0.014941154979169369, -0.003153683850541711, 0.009045319631695747, 0.06356079876422882, -0.08640506118535995, 0.028958460316061974, 0.010573869571089745, 0.0523066408932209, 0.024591175839304924, 0.023096220567822456, -0.013740151189267635, 0.02422163635492325, -0.017124798148870468, -0.03233470767736435, -0.03957432508468628, -0.016973622143268585, -0.03409842029213905, 0.01726757362484932, 0.0005695318104699254, 0.012127615511417389, -0.05868959426879883, -0.006068007089197636, -0.008969731628894806, 0.0020996564999222755, 0.047603409737348557, 0.014428839087486267, 0.02838735468685627, 0.0279674232006073, -0.0023054226767271757, 0.02638848125934601, 0.005370920989662409, -0.006164591293781996, 0.013244632631540298, 0.027597883716225624, -0.02964714728295803, 0.0634264200925827, -0.030083876103162766, -0.036618009209632874, -0.07122034579515457, -0.02825297601521015, -0.007583959028124809, 0.029563162475824356, 0.02786663919687271, 0.02276027575135231, -0.04793935641646385, 0.017939463257789612, 0.023616934195160866, 0.010187532752752304, -0.034803904592990875, 0.0058328453451395035, 0.030570996925234795, -0.005127361044287682, -0.026422075927257538, -0.028891270980238914, -0.07350476831197739, -0.07659546285867691, -0.000741178693715483, 0.06036932021379471, -0.006437546573579311, 0.006055409088730812, -0.03843211010098457, -0.02482633665204048, 0.08022367209196091, 0.0003984097857028246, 0.02618691511452198, 0.02971433661878109, 0.03507266193628311, 0.05103004723787308, -0.041623588651418686, -0.00012164884537924081, 0.005564089398831129, 0.0643334686756134, 0.023717718198895454, -0.004312694072723389, 0.015604645945131779, -0.01174967736005783, -0.015184715390205383, 0.024104055017232895, 0.05432230979204178, 0.014882364310324192, 0.001373175298795104, -0.02586776576936245, 0.008352433331310749, -0.0017395652830600739, -0.02764827571809292, -0.0710187777876854, 0.011724481359124184, 0.05267617851495743, -0.030990928411483765, -0.05485982075333595, 0.03772662580013275, 0.07424385100603104, 0.005975622218102217, -0.06487098336219788, 0.005093766376376152, -0.010935010388493538, -0.04155639931559563, -0.04323612526059151, -0.03240189701318741, 0.05492701008915901, -0.030722172930836678, 0.003504326567053795, -0.06450144201517105, -0.006643312983214855, 0.014865566976368427, 0.03544219955801964, -0.06312406808137894, 0.00982639193534851, -0.049585483968257904, -0.01286669448018074, -0.00416151899844408, -0.021584467962384224, -0.062284208834171295, 0.026438873261213303, -0.0013479794142767787, -0.061511535197496414, -0.0032481683883816004, 0.04206031560897827, 0.023465760052204132, -0.009759202599525452, 0.031108509749174118, -0.03765943646430969, -0.027749057859182358, -0.07343757897615433, -0.062217019498348236, -0.032603465020656586, 0.044311147183179855, 0.031024523079395294, 0.017032412812113762, -0.021349305287003517, 0.038297731429338455, 0.08008929342031479, 0.0023747114464640617, 0.04111967235803604, 0.06688665598630905, -0.07404228299856186, 0.04041418433189392, -0.013815739192068577, 0.023163409903645515, -0.0205934289842844, 0.0070548453368246555, -0.059764619916677475, 0.004392480943351984, 0.04421036317944527, -0.043471284210681915, 0.003275464056059718, 0.0586559996008873, 0.023012233898043633, 0.011296151205897331, -0.02741311304271221, -0.021130941808223724, 0.01241316832602024, -0.03853289410471916, -0.027278736233711243, 0.03722270950675011, 0.03591252118349075, 0.02848813869059086, -0.013664564117789268, -0.010725044645369053, -0.04410958290100098, 0.058823972940444946, 0.023969678208231926, 0.020895780995488167, -0.003569415770471096, -0.0466291680932045, -0.00994397234171629, -0.036584414541721344, -0.06033572554588318, -0.03816335275769234, -0.006949862465262413, 0.009045319631695747, -0.02066061832010746, 0.06382955610752106, -0.014008907601237297, -0.0018267011037096381, -0.008692577481269836, 0.024792741984128952, -0.0020566133316606283, 0.1662255972623825, -0.0393727570772171, -0.014277663081884384, -0.008041683584451675, -0.008894144557416439, 0.014815175905823708, -0.0054591065272688866, -0.023717718198895454, -0.021970804780721664, -0.04582289978861809, 0.01748593896627426, -0.018745731562376022, 0.001266092760488391, 0.0911082923412323, -0.012429965659976006, 0.0466291680932045, -0.00882695522159338, 0.023096220567822456, -0.0022088384721428156, 0.06288890540599823, -0.014580014161765575, -0.020358268171548843, -0.04928313568234444, -0.047704193741083145, 0.003367848927155137, -0.009305677376687527, 0.015680233016610146, 0.007172426208853722, 0.056170009076595306, -0.019132068380713463, 0.04783857241272926, 0.026875602081418037, -0.004140522330999374, 0.018863312900066376, -0.004946790635585785, 0.00009625612437957898, 0.018342597410082817, 0.03213313966989517, 0.04017902538180351, -0.011422130279242992, 0.014420440420508385, 0.032183531671762466, -0.04625963047146797, 0.03792819380760193, -0.007882109843194485, 0.049383919686079025, -0.01576421968638897, 0.024255231022834778, 0.0019747267942875624, -0.03090694174170494, -0.008100474253296852, -0.012581140734255314, 0.046931520104408264, -0.009490447118878365, -0.003094893414527178, -0.005648075602948666, -0.04713308811187744, -0.03394724428653717, -0.01842658407986164, 0.02695958875119686, -0.07854394614696503, 0.04044777899980545, -0.062284208834171295, -0.0029710137750953436, 0.0020639621652662754, 0.02828657068312168, 0.04239626228809357, -0.01510072872042656, 0.08223934471607208, -0.015898598358035088, 0.0017689605010673404, -0.007373993285000324, 0.04545336216688156, -0.04541976749897003, -0.011405333876609802, -0.024759147316217422, 0.01583980768918991, -0.0017941563855856657, -0.021298915147781372, -0.003720591077581048, 0.006277972366660833, -0.04783857241272926, 0.031897980719804764, -0.04646119475364685, 0.017418749630451202, -0.006089003290981054, -0.03702114149928093, -0.03171321004629135, 0.03796178847551346, -0.0808955579996109, -0.029109636321663857, 0.05573327839374542, 0.0042476048693060875, -0.021937210112810135, -0.061645910143852234, 0.03450155258178711, -0.04904797300696373, 0.06712181866168976, -0.056237198412418365, 0.043370503932237625, -0.008944536559283733, -0.012959078885614872, 0.05600203573703766, -0.023012233898043633, -0.008159264922142029, 0.016511697322130203, -0.0026518660597503185, -0.062519371509552, 0.018292207270860672, -0.04286658391356468, -0.012228398583829403, -0.014882364310324192, -0.04206031560897827, -0.020576631650328636, -0.04632681980729103, -0.008016488514840603, 0.009985965676605701, 0.033476922661066055, 0.00828524399548769, 0.01968637853860855, 0.023045828565955162, 0.03927197307348251, -0.04155639931559563, -0.0019001889741048217, -0.027429910376667976, 0.031142104417085648, -0.03591252118349075, -0.04202672094106674, 0.05872318893671036, 0.003926357254385948, -0.046864330768585205, 0.01898089423775673, -0.00879336055368185, 0.0011212164536118507, 0.028152192011475563, -0.013992110267281532, 0.03816335275769234, -0.06678587198257446, -0.013681361451745033, -0.015008343383669853, -0.03362809494137764, 0.042564235627651215, -0.0466291680932045, 0.03174680471420288, 0.007810721639543772, -0.04457990452647209, -0.030638186261057854, -0.023197004571557045, 0.06026853621006012, 0.014773182570934296, -0.005072769708931446, 0.00832303799688816, 0.02010631002485752, 0.016898034140467644, -0.05086207762360573, -0.040111836045980453, -0.044445525854825974, -0.060806047171354294, 0.034283190965652466, 0.0032901614904403687, 0.013698157854378223, 0.021298915147781372, -0.027144357562065125, 0.03769303113222122, 0.0020776099991053343, 0.05089567229151726, 0.019148865714669228, 0.024910323321819305, -0.02066061832010746, 0.030705375596880913, -0.00832303799688816, 0.03614768385887146, -0.047737788408994675, -0.022172370925545692, 0.011186969466507435, -0.014227272011339664, -0.02017349936068058, -0.04699870944023132, -0.022995436564087868, 0.04313534125685692, 0.010447890497744083, 0.0027064571622759104, -0.02877369150519371, -0.013605773448944092, -0.01144732628017664, -0.03678597882390022, -0.06127637252211571, -0.0031494845170527697, 0.010380701161921024, 0.031797196716070175, -0.006471140775829554, -0.05237383022904396, 0.04824170470237732, 0.016721663996577263, 0.022205965593457222, -0.000023063412299961783, 0.030436618253588676, 0.018964096903800964, -0.016377320513129234, 0.035677362233400345, -0.00011994287342531607, 0.03132687509059906, -0.02741311304271221, -0.018376192077994347, 0.032284315675497055, 0.007772928103804588, 0.02020709216594696, -0.04501663148403168, -0.02855532616376877, 0.042530640959739685, 0.0014813075540587306, 0.010725044645369053, 0.02349935472011566, -0.030705375596880913, 0.02188681811094284, 0.03688676282763481, 0.053717609494924545, 0.023163409903645515, 0.012606336735188961, 0.004463869612663984, -0.06907029449939728, -0.01347979437559843, 0.0035610173363238573, -0.025162281468510628, -0.011455724947154522, -0.03634925186634064, -0.008616989478468895, 0.0388016514480114, 0.0002456597867421806, 0.03765943646430969, 0.04125404730439186, -0.024490391835570335, -0.023885691538453102 ]
39,963
s3path.old_versions
PureVersionedS3Path
PurePath subclass for AWS S3 service Keys with Versions. S3 is not a file-system, but we can look at it like a POSIX system.
class PureVersionedS3Path(PureS3Path): """ PurePath subclass for AWS S3 service Keys with Versions. S3 is not a file-system, but we can look at it like a POSIX system. """ def __new__(cls, *args, version_id: str): self = super().__new__(cls, *args) self.version_id = version_id return self @classmethod def from_uri(cls, uri: str, *, version_id: str): """ from_uri class method creates a class instance from uri and version id >> from s3path import VersionedS3Path >> VersionedS3Path.from_uri('s3://<bucket>/<key>', version_id='<version_id>') << VersionedS3Path('/<bucket>/<key>', version_id='<version_id>') """ self = PureS3Path.from_uri(uri) return cls(self, version_id=version_id) @classmethod def from_bucket_key(cls, bucket: str, key: str, *, version_id: str): """ from_bucket_key class method creates a class instance from bucket, key and version id >> from s3path import VersionedS3Path >> VersionedS3Path.from_bucket_key('<bucket>', '<key>', version_id='<version_id>') << VersionedS3Path('/<bucket>/<key>', version_id='<version_id>') """ self = PureS3Path.from_bucket_key(bucket=bucket, key=key) return cls(self, version_id=version_id) def __repr__(self) -> str: return f'{type(self).__name__}({self.as_posix()}, version_id={self.version_id})' def joinpath(self, *args): if not args: return self new_path = super().joinpath(*args) if isinstance(args[-1], PureVersionedS3Path): new_path.version_id = args[-1].version_id else: new_path = S3Path(new_path) return new_path def __truediv__(self, key): if not isinstance(key, (PureS3Path, str)): return NotImplemented key = S3Path(key) if isinstance(key, str) else key return key.__rtruediv__(self) def __rtruediv__(self, key): if not isinstance(key, (PureS3Path, str)): return NotImplemented new_path = super().__rtruediv__(key) new_path.version_id = self.version_id return new_path
(*args, version_id: 'str')
[ -0.008569829165935516, -0.0606779083609581, -0.09072086960077286, 0.030190959572792053, 0.008218341507017612, -0.05838398635387421, -0.018277369439601898, 0.07174052298069, 0.04339950531721115, 0.012820057570934296, 0.050133273005485535, 0.043066516518592834, 0.016982413828372955, 0.039070650935173035, -0.03414982184767723, 0.026213595643639565, 0.05305616930127144, 0.02027530036866665, 0.014290757477283478, 0.01964632235467434, 0.02308720350265503, 0.0253441259264946, 0.027286559343338013, 0.021144770085811615, 0.023142702877521515, 0.047321368008852005, 0.013097547926008701, 0.025566117838025093, 0.038811661303043365, -0.10159849375486374, -0.013587781228125095, 0.02491864003241062, 0.01586320251226425, 0.08739098906517029, 0.03296586498618126, -0.048764318227767944, 0.028119029477238655, -0.004173918627202511, 0.010239397175610065, 0.02599160373210907, 0.004148481879383326, 0.05216820165514946, -0.0027818416710942984, -0.09390275925397873, 0.05124323442578316, 0.05535009130835533, -0.011534351855516434, 0.04499045014381409, -0.030634943395853043, 0.01263506431132555, 0.05738501995801926, 0.021570255979895592, 0.029210492968559265, -0.03439031541347504, -0.013772775419056416, 0.03170790523290634, 0.05042926222085953, 0.03492679446935654, -0.058087997138500214, 0.026324592530727386, 0.01955382525920868, -0.003459380706772208, 0.03205939382314682, 0.010479888878762722, -0.054647114127874374, -0.04635940119624138, -0.03379833325743675, -0.0605299137532711, -0.03995862230658531, 0.055572085082530975, -0.0005850423476658762, -0.014494250528514385, 0.012080083601176739, -0.015317471697926521, -0.0014024828560650349, 0.04517544060945511, -0.025418123230338097, 0.01262581441551447, 0.04824633523821831, -0.008005598559975624, -0.029765473678708076, -0.0889449343085289, -0.010812876746058464, -0.08102720230817795, 0.01749114692211151, 0.0374797061085701, 0.0005373486783355474, -0.06456277519464493, -0.014956734143197536, 0.049578290432691574, -0.0655987411737442, 0.06693068891763687, -0.06215785816311836, -0.0033206355292350054, 0.0677446648478508, -0.03725771605968475, 0.0069557600654661655, -0.08443108946084976, -0.026787076145410538, -0.017694639042019844, 0.00901843886822462, -0.024770645424723625, -0.026158098131418228, -0.02599160373210907, 0.0010602447437122464, -0.029857970774173737, -0.02525162883102894, -0.0016637863591313362, -0.014420252293348312, -0.046137407422065735, 0.0008266902295872569, 0.03877466171979904, -0.027508551254868507, 0.028230026364326477, -0.01335653942078352, -0.03661023825407028, 0.03278087079524994, -0.02599160373210907, 0.015964949503540993, -0.04617440700531006, 0.0327993705868721, 0.032114893198013306, -0.020774783566594124, 0.06659770011901855, 0.018073877319693565, -0.02029380016028881, 0.017787136137485504, 0.0036929352208971977, -0.008320088498294353, -0.022587720304727554, 0.007487616967409849, 0.06604272127151489, -0.05509110167622566, -0.02717556245625019, 0.022791214287281036, 0.010738879442214966, -0.026916570961475372, 0.05135422945022583, -0.03368733823299408, 0.11232812702655792, 0.0454714335501194, -0.028137529268860817, 0.02978397347033024, -0.00973991397768259, -0.01702866330742836, 0.01783338561654091, 0.023401692509651184, -0.01855486072599888, -0.012949553318321705, 0.009906408376991749, 0.01719515770673752, 0.017620641738176346, 0.07991724461317062, 0.07103755325078964, 0.010128400288522243, -0.09486472606658936, -0.029006998986005783, -0.06955759972333908, -0.0027009069453924894, -0.007691110018640757, -0.010489138774573803, -0.05102124065160751, 0.0169361662119627, -0.06034491956233978, -0.005004077218472958, 0.0026199722196906805, 0.0006006511393934488, -0.033835332840681076, -0.02580660954117775, 0.007145378738641739, 0.023679183796048164, 0.03692472726106644, -0.02591760642826557, 0.04262252897024155, 0.0227357167750597, 0.03461230546236038, -0.01903584413230419, 0.007436743471771479, 0.02797103486955166, -0.09886059165000916, 0.04806134104728699, -0.03766470029950142, 0.0017539707478135824, 0.025510620325803757, 0.0424005389213562, 0.07270248979330063, -0.008916692808270454, 0.03505629301071167, 0.027952536940574646, 0.018767602741718292, -0.03448281064629555, -0.007039007265120745, 0.009448548778891563, 0.06441477686166763, 0.05042926222085953, -0.008449583314359188, 0.005859673023223877, -0.018231121823191643, -0.010849876329302788, 0.1110701709985733, -0.030819937586784363, 0.021681252866983414, 0.017139658331871033, -0.03200389817357063, 0.004136919975280762, -0.014873486943542957, 0.01739864982664585, -0.014392503537237644, -0.025936106219887733, 0.04095758870244026, -0.028655512258410454, 0.018675105646252632, -0.032651372253894806, 0.01749114692211151, -0.02020130306482315, -0.016714174300432205, 0.011007120832800865, 0.03488979861140251, 0.019979311153292656, -0.0008752510766498744, 0.07821530103683472, 0.03250337764620781, 0.002038398524746299, 0.0686696320772171, 0.003544940147548914, -0.03692472726106644, 0.04480545595288277, -0.002216454828158021, -0.03903365507721901, -0.012450071051716805, 0.028822006657719612, -0.029635978862643242, 0.06582073122262955, 0.00914330966770649, 0.011090368032455444, -0.0035935011692345142, 0.03579626604914665, 0.013708027079701424, 0.012709061615169048, -0.005776425823569298, -0.015215725637972355, -0.03940363973379135, 0.007709609344601631, 0.023050205782055855, -0.025566117838025093, -0.03551877662539482, -0.01794438064098358, 0.010627883486449718, 0.017602143809199333, -0.03529678285121918, 0.0067337676882743835, 0.06097389757633209, -0.017074910923838615, -0.0060307919047772884, 0.04095758870244026, -0.02247672528028488, -0.026787076145410538, -0.026047101244330406, -0.013763525523245335, 0.007260999642312527, -0.04924530163407326, -0.04184555634856224, -0.01467924378812313, -0.024493156000971794, -0.02327219769358635, -0.03176340460777283, 0.027656545862555504, -0.0005350362625904381, -0.03657323867082596, 0.07211051136255264, 0.024511653929948807, -0.016778921708464622, -0.07003858685493469, 0.03892265632748604, -0.014549748040735722, -0.006326782051473856, -0.06985358893871307, -0.030764440074563026, -0.028119029477238655, -0.03329885005950928, -0.02482614479959011, -0.006211160682141781, 0.012829307466745377, 0.008685450069606304, 0.042437538504600525, 0.005989168304949999, -0.006604272406548262, -0.03738721087574959, 0.022051239386200905, 0.026602081954479218, -0.00909706111997366, 0.0032096393406391144, -0.027471553534269333, -0.030227957293391228, 0.031041929498314857, 0.0008480801479890943, -0.08198916912078857, -0.026787076145410538, 0.05734802410006523, -0.04684038460254669, -0.04291852191090584, 0.026380090042948723, 0.026102600619196892, 0.02319820038974285, 0.025862108916044235, -0.008107345551252365, 0.012783058919012547, -0.0071870023384690285, 0.012866306118667126, 0.0369432270526886, -0.016529180109500885, 0.02255072258412838, -0.06056691333651543, -0.007089880295097828, 0.01883235014975071, 0.07177752256393433, -0.01794438064098358, -0.0064979009330272675, -0.008403335697948933, 0.0496152900159359, -0.07240650057792664, 0.06722668558359146, -0.05279717966914177, 0.03448281064629555, 0.008824195712804794, -0.07447843253612518, -0.024937139824032784, 0.002409541979432106, -0.01648293249309063, 0.033650338649749756, -0.026195095852017403, 0.059382952749729156, 0.030542446300387383, 0.03178190439939499, -0.03770169988274574, -0.004897706210613251, 0.028470518067479134, -0.038552671670913696, 0.013245543465018272, 0.026047101244330406, 0.09730664640665054, -0.014337006025016308, -0.010988621041178703, -0.00484683271497488, -0.07085255533456802, -0.012709061615169048, 0.035555772483348846, 0.003931114450097084, -0.0012602690840139985, -0.03163390979170799, -0.010267145931720734, -0.03742421045899391, -0.0003014817775692791, 0.02327219769358635, 0.010072902776300907, -0.035019293427467346, -0.005152072291821241, -0.036554738879203796, 0.01245932001620531, -0.020589789375662804, 0.038996655493974686, -0.0434735007584095, -0.016603177413344383, -0.008717824704945087, 0.02908099628984928, 0.002276577753946185, 0.03796068951487541, -0.030930932611227036, -0.04073559492826462, -0.009887908585369587, -0.047469362616539, -0.06300882995128632, -0.0018753728363662958, -0.06463677436113358, 0.05890196934342384, -0.002453477820381522, 0.0029437108896672726, -0.0029159619007259607, -0.005239944439381361, 0.0004994827904738486, 0.02906249836087227, 0.009309804067015648, 0.0253441259264946, 0.04510144516825676, 0.01399476733058691, 0.04806134104728699, 0.09035088121891022, -0.010701880790293217, 0.06948360055685043, 0.044509466737508774, -0.022957708686590195, 0.03115292638540268, 0.04954129084944725, -0.023531189188361168, -0.026676079258322716, 0.0035657519474625587, -0.005818049423396587, 0.0044282847084105015, 0.0007862228667363524, 0.0013111423468217254, 0.014845738187432289, -0.030098462477326393, 0.028230026364326477, 0.026953570544719696, 0.000507865275721997, -0.019405830651521683, 0.058272991329431534, 0.023808678612113, -0.029395487159490585, -0.03551877662539482, -0.022495225071907043, -0.06278683245182037, -0.03707272186875343, -0.005082699935883284, 0.04772835597395897, -0.006007667630910873, 0.02671307884156704, -0.03439031541347504, -0.00391724007204175, 0.05298217386007309, -0.021977242082357407, 0.02282821200788021, -0.0126720629632473, 0.02064528875052929, 0.033927831798791885, -0.01836986653506756, -0.02345719188451767, -0.0005983387236483395, 0.02906249836087227, 0.02408616989850998, 0.06604272127151489, 0.0018233433365821838, -0.06219485402107239, -0.009393051266670227, -0.011978336609899998, -0.0026939695235341787, 0.023697683587670326, 0.01534522045403719, 0.003184202592819929, 0.023531189188361168, -0.041882555931806564, 0.006197286304086447, -0.045878417789936066, 0.037535205483436584, 0.05227919667959213, -0.025584617629647255, -0.015668960288167, 0.026676079258322716, 0.05091024562716484, -0.005670054350048304, -0.020682286471128464, 0.004479158204048872, -0.021033775061368942, -0.00973991397768259, -0.05916095897555351, -0.025307128205895424, 0.03760920464992523, -0.026306092739105225, -0.01575220748782158, -0.020034808665513992, 0.010535386390984058, 0.04336250573396683, 0.03315085545182228, -0.012875556014478207, -0.04528643935918808, -0.017602143809199333, 0.022846711799502373, -0.030838437378406525, -0.045434433966875076, -0.06204685941338539, 0.05179821327328682, -0.024474656209349632, -0.02155175618827343, 0.037794195115566254, 0.003729933872818947, 0.024511653929948807, 0.013550782576203346, -0.022532222792506218, -0.07814130187034607, -0.040180616080760956, -0.04421347379684448, -0.03168940544128418, -0.022717216983437538, 0.0353337824344635, 0.02020130306482315, -0.014706992544233799, 0.013097547926008701, 0.06315682083368301, 0.06493276357650757, -0.02192174457013607, 0.008824195712804794, 0.05298217386007309, -0.06167687475681305, 0.08502306789159775, 0.00638228002935648, 0.011562101542949677, -0.038367677479982376, 0.012033835053443909, -0.023531189188361168, -0.043510500341653824, 0.023753181099891663, -0.043325506150722504, 0.012246578000485897, 0.04310351237654686, 0.04099458456039429, 0.05435112491250038, -0.05805099755525589, 0.00025118666235357523, 0.04058760032057762, -0.06167687475681305, -0.008676201105117798, 0.005438812542706728, 0.014827238395810127, 0.023679183796048164, 0.009300554171204567, 0.01973881945014, -0.060640908777713776, 0.03405732661485672, 0.030098462477326393, -0.018675105646252632, 0.009439299814403057, 0.005596057046204805, 0.032022394239902496, -0.05461011826992035, -0.05978993698954582, -0.012570316903293133, 0.001285705715417862, -0.025677114725112915, 0.05379614606499672, 0.03720221668481827, -0.028600012883543968, -0.00446297088637948, -0.03607375547289848, 0.03107892908155918, -0.004532343707978725, 0.09612268209457397, -0.05712603032588959, 0.03157841041684151, 0.013032800517976284, -0.04628540575504303, 0.017787136137485504, 0.03803468868136406, -0.017879633232951164, -0.004701150581240654, -0.05242719128727913, 0.029746973887085915, 0.016075946390628815, 0.0058319238014519215, -0.0028049657121300697, -0.04809834063053131, -0.008676201105117798, 0.02871100977063179, 0.08228516578674316, 0.005651555024087429, 0.03940363973379135, -0.03701722249388695, -0.005942920222878456, -0.09449474513530731, -0.04277052357792854, -0.0011313515715301037, -0.003644374432042241, 0.06911361962556839, 0.025214631110429764, -0.01268131285905838, -0.0146329952403903, 0.017232155427336693, 0.032743871212005615, 0.014290757477283478, 0.02018280327320099, 0.005216820165514946, -0.02924749068915844, 0.058198992162942886, 0.008551330305635929, 0.0071546281687915325, -0.015326721593737602, 0.01245932001620531, -0.018869349732995033, -0.03359484300017357, 0.024400658905506134, -0.03977362811565399, 0.03592576086521149, 0.0019274023361504078, 0.008347837254405022, -0.04684038460254669, -0.0030732066370546818, -0.013375039212405682, -0.018628858029842377, 0.07566238939762115, -0.023531189188361168, 0.017824135720729828, -0.054758112877607346, -0.035555772483348846, -0.0034963793586939573, -0.017167408019304276, 0.01272756140679121, -0.04576742276549339, 0.021144770085811615, -0.02338319458067417, 0.01746339723467827, -0.01535447034984827, -0.014235259033739567, 0.015160227194428444, 0.007635611575096846, 0.04277052357792854, 0.017343152314424515, 0.001781719853170216, -0.017167408019304276, 0.01132160983979702, -0.03725771605968475, -0.019516827538609505, 0.009263555519282818, 0.055461086332798004, 0.0252701286226511, -0.027675045654177666, 0.01245932001620531, 0.01657542772591114, -0.09686265885829926, 0.022236233577132225, -0.03196689859032631, -0.019350333139300346, -0.04602641239762306, -0.03368733823299408, -0.011663847602903843, 0.032022394239902496, -0.10396641492843628, 0.004805209115147591, 0.024511653929948807, 0.03598126024007797, 0.0026639080606400967, -0.08021323382854462, 0.05279717966914177, -0.06441477686166763, 0.04236353933811188, -0.03884866088628769, 0.02654658444225788, -0.01882310025393963, -0.020145805552601814, 0.027138564735651016, 0.01408726442605257, 0.057829007506370544, -0.012801558710634708, -0.05279717966914177, -0.06711568683385849, 0.04273352771997452, -0.05242719128727913, -0.058827970176935196, 0.02970997616648674, -0.055017102509737015, 0.015363720245659351, -0.01903584413230419, 0.016593927517533302, 0.00838021095842123, 0.017185907810926437, -0.041438572108745575, -0.01947982795536518, 0.003362259129062295, 0.024493156000971794, -0.060085929930210114, 0.028600012883543968, -0.004814459010958672, 0.023309195414185524, -0.03969963267445564, -0.01177484355866909, 0.0689656212925911, 0.02199574187397957, -0.006650520488619804, 0.05675604194402695, -0.016593927517533302, 0.0293399877846241, 0.01195983774960041, 0.014475750736892223, 0.000581862754188478, -0.03984762728214264, -0.01182109210640192, -0.06093689799308777, -0.062009863555431366, 0.052501190453767776, -0.007284123916178942, 0.0006151038105599582, 0.0009515609126538038, 0.004273352678865194, 0.008199842646718025, -0.044509466737508774, 0.0465443953871727, 0.01849011331796646, -0.005286192521452904, 0.031134426593780518, 0.00488845631480217, -0.00667826971039176, -0.11269811540842056, 0.04032861068844795, -0.029043998569250107, -0.002772592008113861, 0.023401692509651184, -0.04258553311228752, -0.035463277250528336, 0.009934157133102417, -0.004902331158518791, 0.01182109210640192, -0.059086963534355164, 0.04828333482146263, -0.015520964749157429, -0.00014387589180842042, -0.021348264068365097, 0.0005463092820718884, 0.008116595447063446, -0.029746973887085915, -0.026287592947483063, 0.02020130306482315, -0.007089880295097828, -0.017444899305701256, 0.017981380224227905, 0.03439031541347504, -0.08258115500211716, 0.05849498137831688, 0.03287336602807045, 0.019516827538609505, -0.052501190453767776, -0.01748189702630043, 0.016140693798661232, -0.02945098467171192, -0.05272318050265312, 0.02308720350265503, 0.02047879435122013, -0.016048196703195572, -0.012931054458022118, 0.006174162030220032, 0.025196131318807602, -0.02354968711733818, 0.0565340518951416, -0.03359484300017357, 0.05424012988805771, -0.03069044090807438, -0.04573042318224907, 0.06430378556251526, -0.018009129911661148, -0.0005067090969532728, -0.032466381788253784, 0.01565971039235592, 0.050133273005485535, -0.03352084383368492, 0.004717337433248758, -0.03033895418047905, -0.02092277817428112, 0.02462265081703663, -0.015779955312609673, 0.022976208478212357, 0.06219485402107239, -0.019997810944914818, 0.02754555083811283, 0.029469484463334084, 0.013791274279356003, -0.03579626604914665, -0.030505448579788208, 0.05272318050265312, -0.05967894196510315, -0.050392262637615204, 0.002541349967941642, 0.001182802952826023, -0.045619428157806396, -0.0424005389213562, -0.02582510933279991, 0.025788111612200737, 0.024215664714574814, 0.06659770011901855, 0.02699057012796402, -0.023660684004426003, 0.01132160983979702 ]
39,972
s3path.old_versions
__new__
null
def __new__(cls, *args, version_id: str): self = super().__new__(cls, *args) self.version_id = version_id return self
(cls, *args, version_id: str)
[ 0.01713048294186592, -0.059128645807504654, 0.00468788156285882, 0.0033078044652938843, -0.005883948877453804, -0.023640943691134453, -0.0008094263030216098, 0.0720619410276413, 0.01931232027709484, -0.0008614530088379979, -0.04524901136755943, 0.05082189664244652, -0.04325118660926819, 0.05040130019187927, 0.007649571634829044, -0.008258557878434658, 0.024079063907265663, 0.015605826862156391, 0.009717497043311596, -0.04587990418076515, 0.018681427463889122, 0.06196766346693039, -0.022501831874251366, 0.06768074631690979, 0.04840347543358803, 0.06666430830955505, 0.02374609187245369, 0.018891725689172745, 0.04559950903058052, -0.062388259917497635, -0.02958184853196144, 0.017892811447381973, 0.008324275724589825, 0.1058497428894043, -0.004814936313778162, -0.0506816990673542, -0.03343730419874191, 0.03441869094967842, -0.08089444041252136, 0.01193438284099102, 0.08096453547477722, 0.03501453250646591, -0.0021982660982757807, -0.04139355942606926, -0.0024797581136226654, 0.025954216718673706, 0.015491915866732597, -0.014738350175321102, -0.04167395457625389, 0.018260832875967026, 0.0060635777190327644, 0.02295747771859169, 0.00773281417787075, -0.013669337145984173, -0.03697730973362923, 0.11068658530712128, 0.06985381990671158, 0.04195434972643852, -0.008797445334494114, 0.06494687497615814, -0.04297078773379326, -0.011356065049767494, 0.018628854304552078, -0.015886222943663597, -0.023413121700286865, -0.0005520309205166996, -0.0031084599904716015, -0.012521463446319103, 0.014957409352064133, 0.05008585378527641, 0.04710663855075836, -0.022694604471325874, -0.0017689086962491274, 0.019732914865016937, 0.0501910038292408, 0.05166308581829071, -0.07879146188497543, 0.025165600702166557, 0.02506045252084732, 0.03080858290195465, 0.018786577507853508, -0.049735359847545624, -0.0011089907493442297, -0.00802635494619608, -0.026497485116124153, -0.004192806314677, -0.020784402266144753, -0.09568536281585693, -0.02980967052280903, 0.0371876060962677, -0.06365004181861877, 0.06126667186617851, -0.0725526362657547, 0.01755984127521515, 0.04195434972643852, -0.08243662118911743, 0.03690721094608307, 0.0023198442067950964, 0.04030701890587807, 0.03596087172627449, 0.0010279385605826974, -0.048228226602077484, -0.05769161507487297, -0.047001492232084274, -0.015491915866732597, -0.054852597415447235, -0.01887420006096363, 0.008893831633031368, -0.04325118660926819, 0.01028705295175314, 0.032368291169404984, 0.06778589636087418, -0.02481510490179062, 0.030983831733465195, -0.05537834018468857, -0.008398756384849548, 0.016447016969323158, -0.007329744286835194, 0.03532997891306877, 0.002777679357677698, -0.020171035081148148, 0.012696711346507072, -0.05310012027621269, 0.08503028750419617, 0.01733201928436756, 0.00882373284548521, -0.03995652496814728, -0.05295991897583008, 0.020994700491428375, -0.05884825065732002, 0.030195215716958046, 0.0024381366092711687, -0.02018856070935726, -0.012591563165187836, -0.007583853788673878, -0.0442325733602047, 0.010532399639487267, 0.05874310061335564, -0.02279975451529026, 0.05345061421394348, -0.03231571614742279, 0.009883982129395008, 0.07192174345254898, -0.005914617329835892, -0.05720091983675957, -0.03554027900099754, 0.0061555830761790276, -0.008758014999330044, -0.021678166463971138, 0.022782228887081146, 0.01179418433457613, 0.023255398496985435, 0.05345061421394348, 0.0631944015622139, -0.03187759593129158, -0.013318841345608234, 0.0038948848377913237, -0.07016926258802414, 0.03159720078110695, 0.01468577515333891, 0.04076266661286354, -0.013721912167966366, 0.07500610500574112, -0.05951419100165367, 0.023325497284531593, 0.006519222632050514, -0.017384592443704605, -0.07724928110837936, -0.03865969181060791, 0.02292242832481861, 0.010190666653215885, -0.025708869099617004, 0.023027576506137848, 0.026777882128953934, -0.030440563336014748, 0.04416247457265854, 0.01947004348039627, 0.010392201133072376, 0.05982963740825653, 0.008920119144022465, 0.04198940098285675, -0.0122147798538208, -0.0034304780419915915, 0.025481047108769417, 0.06925797462463379, 0.01966281607747078, 0.007618903182446957, 0.07087025791406631, 0.03592582419514656, -0.026339761912822723, 0.023027576506137848, -0.039676129817962646, 0.05625458061695099, 0.013371416367590427, -0.002372418763116002, -0.0037327806930989027, -0.038519490510225296, -0.04198940098285675, -0.02101222425699234, 0.061512019485235214, 0.05005080625414848, 0.028460262343287468, -0.002747011138126254, -0.05488764867186546, 0.016192907467484474, -0.007062491029500961, 0.04535416141152382, -0.03739790618419647, -0.0046922629699110985, -0.04616029933094978, 0.04773753136396408, 0.0018411984201520681, 0.02977462112903595, 0.03785355016589165, -0.03580315038561821, -0.049139514565467834, 0.03140442818403244, -0.026059364899992943, 0.03648661449551582, 0.005033996421843767, 0.11278955638408661, 0.030230265110731125, -0.04437277093529701, 0.01562335155904293, -0.00884125754237175, -0.020907076075673103, 0.04773753136396408, -0.05113734304904938, -0.04829832538962364, 0.0017612415831536055, -0.020153509452939034, -0.011724085547029972, 0.0054195416159927845, 0.015439341776072979, -0.03317442908883095, -0.023465696722269058, -0.016517115756869316, 0.05478249862790108, -0.06792609393596649, -0.014729587361216545, 0.04777258262038231, 0.039150383323431015, 0.06039043143391609, 0.0684167891740799, 0.039465829730033875, -0.00850390549749136, -0.08615187555551529, 0.04104306176304817, 0.03830919414758682, -0.019925687462091446, 0.020994700491428375, -0.06498192995786667, -0.01512389536947012, 0.03001996874809265, 0.0179278627038002, 0.015378004871308804, -0.04500366374850273, -0.051768235862255096, 0.002081068931147456, -0.043987225741147995, -0.03385789692401886, 0.014843498356640339, -0.021117374300956726, 0.04167395457625389, 0.006747044622898102, -0.01994321309030056, -0.00676018837839365, -0.019259745255112648, 0.0040066055953502655, 0.03547017648816109, 0.054221704602241516, 0.005699938628822565, -0.02707580290734768, 0.06722509860992432, -0.03466403856873512, -0.09365248680114746, -0.050962094217538834, -0.02295747771859169, -0.0790017619729042, -0.021187473088502884, 0.027899468317627907, 0.002115023322403431, 0.046370599418878555, 0.02148539386689663, 0.009209278039634228, 0.00596719142049551, -0.012600325047969818, 0.049139514565467834, -0.039991576224565506, -0.03960602730512619, -0.04135850816965103, 0.04538920894265175, -0.025919167324900627, 0.0016944282688200474, 0.023132724687457085, 0.008451330475509167, -0.04475831612944603, 0.07584729790687561, -0.023360546678304672, -0.03841434419155121, -0.01712172105908394, -0.05860290303826332, -0.021275097504258156, 0.009314427152276039, -0.049735359847545624, -0.005997859872877598, 0.010357151739299297, -0.011846759356558323, 0.0008285940275527537, 0.01947004348039627, 0.03862464055418968, 0.0691528245806694, -0.05555358901619911, 0.006015384569764137, -0.004475393798202276, 0.0205390565097332, -0.009542249143123627, -0.0431460365653038, 0.016306819394230843, 0.02707580290734768, -0.033279579132795334, -0.044933564960956573, -0.006882861722260714, 0.01496617216616869, 0.031141554936766624, 0.015316667966544628, 0.005353823769837618, -0.04840347543358803, -0.049700308591127396, 0.002499473514035344, -0.02930145151913166, 0.04896426945924759, 0.03627631813287735, -0.013721912167966366, -0.01634186878800392, -0.043426431715488434, 0.0003214704047422856, -0.009253090247511864, -0.015491915866732597, 0.01590374857187271, 0.070730060338974, 0.004972659517079592, -0.03985137492418289, 0.01649959199130535, -0.04325118660926819, -0.0112421540543437, 0.02129262126982212, -0.03988642618060112, 0.013923446647822857, -0.05218882858753204, -0.0103308642283082, -0.08615187555551529, -0.015526965260505676, -0.03473413735628128, 0.09449367970228195, -0.0486137717962265, 0.02113489806652069, 0.011285965330898762, -0.04181415215134621, -0.04556445777416229, -0.06046053022146225, -0.01451052725315094, 0.02204618789255619, -0.00010268432379234582, -0.03156214952468872, 0.0029967394657433033, 0.01831340789794922, -0.013529139570891857, -0.03683711215853691, 0.019329845905303955, -0.04044722020626068, -0.023938864469528198, 0.014282705262303352, -0.016315581277012825, 0.03697730973362923, -0.04808802902698517, -0.07178154587745667, 0.017235632985830307, -0.02688303031027317, -0.024008965119719505, -0.0055904085747897625, -0.019767964258790016, 0.05341556295752525, 0.017664989456534386, -0.027145901694893837, 0.011820471845567226, 0.040972962975502014, 0.017025334760546684, 0.05373100936412811, 0.04416247457265854, -0.0280747152864933, -0.013686861842870712, -0.00951596163213253, 0.011075668036937714, 0.0054633538238704205, -0.003439240390434861, -0.00012691783194895834, 0.016306819394230843, 0.01304720714688301, -0.04142860695719719, -0.010471062734723091, -0.003073410363867879, 0.0024490896612405777, 0.0040701329708099365, -0.005848899018019438, -0.056359730660915375, 0.0663488581776619, 0.01479092426598072, -0.02239668369293213, -0.0647716298699379, 0.0035378173924982548, -0.010847846046090126, -0.029161253944039345, -0.016701126471161842, 0.05895340070128441, -0.01322245504707098, 0.052994970232248306, -0.0222389604896307, -0.016587214544415474, -0.03033541515469551, 0.020486481487751007, 0.07647819072008133, -0.003193893237039447, 0.01480844896286726, 0.01253022626042366, 0.038589589297771454, -0.00045865666470490396, 0.012775572948157787, 0.018330931663513184, -0.021345196291804314, 0.005572883877903223, 0.027584021911025047, 0.006830287631601095, 0.043636731803417206, 0.01740211807191372, -0.009551011025905609, 0.0179278627038002, -0.04311098903417587, -0.01634186878800392, 0.041884250938892365, -0.04191930219531059, -0.0652623251080513, 0.05222387984395027, 0.01082155853509903, 0.008604672737419605, -0.05895340070128441, 0.004959516227245331, -0.00045263252104632556, 0.0196277666836977, -0.04353158175945282, -0.011802947148680687, 0.032526012510061264, -0.006199394818395376, -0.03380532190203667, -0.028653034940361977, -0.0894465371966362, -0.07781007140874863, -0.014098694548010826, 0.025831542909145355, -0.012302403338253498, -0.057271018624305725, 0.00967368483543396, -0.010357151739299297, -0.027286101132631302, -0.036731962114572525, 0.0035356266889721155, 0.028302539139986038, -0.07192174345254898, -0.03918543457984924, -0.0003759615356102586, 0.03918543457984924, 0.01815568469464779, 0.03313938155770302, -0.007785388734191656, -0.046370599418878555, 0.005835755728185177, -0.011566362343728542, -0.05173318460583687, -0.04412742704153061, -0.006957342382520437, -0.009305664338171482, 0.05853280425071716, 0.03662681579589844, 0.06680450588464737, -0.0322631411254406, 0.0010909183183684945, 0.04419752582907677, -0.01240755245089531, 0.026059364899992943, 0.016438255086541176, -0.008885069750249386, 0.054852597415447235, -0.03652166575193405, 0.062423307448625565, 0.03953592851758003, 0.010138091631233692, 0.0036692533176392317, 0.004696644376963377, 0.016674838960170746, -0.029634421691298485, -0.002204837743192911, -0.03575057536363602, -0.009384525939822197, -0.03690721094608307, 0.025673819705843925, -0.04570465534925461, -0.053941309452056885, 0.0351196825504303, 0.012293641455471516, -0.0034940054174512625, -0.012801860459148884, -0.044512972235679626, 0.016701126471161842, -0.011715322732925415, 0.047912780195474625, 0.024008965119719505, -0.06771579384803772, 0.003491814713925123, -0.030598286539316177, 0.028460262343287468, 0.04114821180701256, 0.05534329265356064, 0.034155819565057755, -0.0954049676656723, -0.0035378173924982548, -0.007903681136667728, -0.04349653422832489, -0.019715391099452972, 0.10374676436185837, 0.07290313392877579, -0.03957097977399826, -0.041568804532289505, -0.05012090504169464, 0.025989266112446785, -0.024254310876131058, 0.03862464055418968, -0.05793696269392967, 0.04924466460943222, 0.020714303478598595, -0.051522888243198395, -0.0021478822454810143, 0.03135185316205025, -0.013292554765939713, 0.0036583002656698227, -0.06880233436822891, -0.0009764594724401832, 0.009919032454490662, 0.053976356983184814, -0.0280747152864933, -0.02453470788896084, 0.02188846468925476, 0.0161315705627203, -0.008744871243834496, -0.01508884597569704, -0.01669236458837986, -0.0061073899269104, 0.005840136669576168, -0.061196573078632355, -0.01840103045105934, 0.005555358715355396, 0.02343064546585083, 0.061512019485235214, 0.07027441263198853, -0.00921803992241621, -0.022344108670949936, 0.03589077293872833, 0.025148075073957443, -0.024254310876131058, -0.018348457291722298, 0.027268575504422188, -0.004766743164509535, -0.03389294818043709, 0.01727944426238537, 0.06638391315937042, -0.05204863101243973, -0.006580559071153402, -0.0020679254084825516, 0.05982963740825653, 0.005038377363234758, -0.022256486117839813, -0.019522618502378464, 0.03238581493496895, -0.03827414661645889, -0.08180572837591171, -0.05649992823600769, -0.005397635977715254, -0.018663903698325157, 0.02996739372611046, 0.07234233617782593, 0.015544489957392216, -0.015018746256828308, -0.014379091560840607, -0.012241067364811897, -0.017542315647006035, -0.03405066952109337, -0.015877461060881615, -0.04875396937131882, -0.04784268140792847, 0.011680273339152336, -0.004427200648933649, 0.0010701075661927462, 0.07528650760650635, -0.01959271728992462, 0.01931232027709484, 0.02022361010313034, -0.010164379142224789, -0.042445044964551926, 0.008784301578998566, -0.01479092426598072, -0.010173141956329346, 0.0154656283557415, 0.0014808449195697904, -0.011373589746654034, -0.02453470788896084, 0.013511613942682743, 0.006506078876554966, -0.03410324454307556, 0.06697975099086761, -0.02010093629360199, -0.04177910462021828, -0.025288274511694908, 0.0501910038292408, 0.024990353733301163, 0.02402648888528347, -0.045178912580013275, 0.0319652184844017, -0.009927794337272644, 0.00626511313021183, 0.006988010834902525, -0.05085694417357445, 0.02201113849878311, -0.03256106376647949, -0.009717497043311596, -0.031299278140068054, 0.01708667166531086, -0.01689389906823635, -0.014817210845649242, -0.013073494657874107, 0.059058547019958496, 0.05278467386960983, 0.0020273993723094463, -0.015439341776072979, -0.02414916269481182, -0.0006933245458640158, -0.02195856347680092, -0.016955235973000526, -0.008333038538694382, -0.028249964118003845, -0.0040066055953502655, -0.015491915866732597, 0.0006966104847379029, 0.0027097708079963923, -0.010532399639487267, -0.025621244683861732, -0.008446949534118176, 0.00039923665462993085, -0.06098627299070358, 0.05467734858393669, 0.024201737716794014, -0.003691159188747406, 0.01155760046094656, 0.014563102275133133, 0.036451566964387894, 0.007128208875656128, 0.02173074148595333, 0.037012360990047455, 0.03795870020985603, -0.04405732452869415, -0.012740523554384708, 0.03247343748807907, 0.00184886553324759, 0.011110717430710793, -0.022729653865098953, 0.02937155030667782, -0.02299252711236477, -0.08874554187059402, -0.03424344211816788, 0.038519490510225296, 0.03319195657968521, 0.02339559607207775, 0.002231125021353364, -0.034155819565057755, 0.021240048110485077, -0.02823243848979473, -0.027566496282815933, 0.021275097504258156, -0.050015754997730255, 0.05232902616262436, 0.007837963290512562, -0.11559352278709412, 0.008552098646759987, -0.009551011025905609, 0.005734988022595644, -0.005642982665449381, -0.00806578528136015, 0.023255398496985435, -0.03841434419155121, -0.06690965592861176, 0.016753701493144035, -0.011540074832737446, 0.009428338147699833, 0.0038598354440182447, -0.03908028453588486, 0.03599592298269272, 0.00021125588682480156, 0.0027097708079963923, -0.01096175704151392, 0.018821626901626587, 0.008153409697115421, -0.021275097504258156, 0.0036407755687832832, 0.03271878510713577, 0.03869473934173584, -0.024920253083109856, 0.05036625266075134, 0.03466403856873512, 0.027724219486117363, -0.016447016969323158, -0.03599592298269272, 0.003448002738878131, -0.008854401297867298, 0.013187405653297901, 0.03455888852477074, 0.015272855758666992, 0.007115065585821867, 0.02216886170208454, 0.009997894056141376, 0.03238581493496895, -0.0035947728902101517, -0.006764569785445929, 0.04055236652493477, 0.02160806767642498, -0.03476918488740921, -0.10465805232524872, 0.03992147371172905, -0.012022007256746292, 0.022274009883403778, -0.026812931522727013, 0.04269039258360863, 0.03424344211816788, -0.048824068158864975, 0.02961689792573452, -0.003791926894336939, 0.03527740389108658, -0.02695312909781933, 0.03806384652853012, 0.023500746116042137, 0.02493777871131897, 0.0205390565097332, 0.011093192733824253, -0.004617782775312662, 0.0287406574934721, -0.008574004285037518, 0.03124670311808586, 0.032526012510061264, -0.06771579384803772, 0.018804101273417473, 0.023045100271701813, 0.025270748883485794, -0.04233989492058754, -0.02695312909781933, -0.024832630529999733, 0.011636462062597275, -0.02647995948791504, 0.008078929036855698, 0.0395008809864521, 0.05870805308222771, 0.025113025680184364 ]
39,974
s3path.old_versions
__repr__
null
def __repr__(self) -> str: return f'{type(self).__name__}({self.as_posix()}, version_id={self.version_id})'
(self) -> str
[ 0.051054034382104874, -0.03990311920642853, 0.004734850022941828, 0.05366163328289986, 0.061655983328819275, -0.08632523566484451, 0.0017005145782604814, 0.038942426443099976, 0.007295271847397089, -0.057264238595962524, -0.013535495847463608, 0.0015364674618467689, -0.02995307371020317, 0.05273525044322014, -0.0005352975567802787, 0.035751551389694214, -0.01935112662613392, -0.03904535993933678, 0.003767722751945257, 0.006313133519142866, 0.007466824259608984, 0.04673091322183609, 0.013672737404704094, -0.05626923218369484, 0.016417577862739563, 0.058808211237192154, 0.010824965313076973, 0.013621271587908268, -0.027757201343774796, -0.06210201978683472, -0.05530853942036629, -0.04467228055000305, -0.009195216000080109, -0.027191078290343285, -0.01945405825972557, 0.015576970763504505, -0.04326555132865906, 0.01454765535891056, -0.05499974638223648, -0.057024065405130386, 0.0626852959394455, 0.028323324397206306, -0.01722387596964836, -0.057435791939496994, -0.03863363340497017, 0.005022200755774975, 0.0401776060461998, 0.010713456198573112, -0.017944395542144775, -0.01957414485514164, 0.0322004109621048, 0.03890811651945114, -0.021581308916211128, 0.0022087390534579754, -0.0822765976190567, 0.04985316842794418, 0.050127651542425156, -0.02219889871776104, -0.02396588958799839, 0.04566728696227074, -0.03276653587818146, 0.0245320126414299, 0.024291839450597763, -0.023605629801750183, -0.012094453908503056, -0.022970885038375854, -0.010996517725288868, -0.013158080168068409, -0.004601896740496159, 0.025424087420105934, 0.04954437538981438, -0.03115394152700901, -0.013098036870360374, 0.014796406961977482, 0.009872849099338055, -0.010584792122244835, -0.054690949618816376, 0.023811493068933487, 0.021649930626153946, -0.04072657227516174, 0.005472525954246521, -0.01671779528260231, -0.04165295884013176, -0.03949139639735222, 0.004052928648889065, -0.0385650098323822, -0.015714213252067566, -0.026436246931552887, -0.06210201978683472, 0.002225894248113036, -0.021649930626153946, 0.04412331432104111, -0.04079519584774971, 0.052460767328739166, -0.0052151973359286785, -0.0631999596953392, 0.0171123668551445, -0.05661233887076378, 0.028100306168198586, -0.01429032627493143, 0.029541347175836563, -0.05523991957306862, -0.061587363481521606, -0.03110247477889061, -0.048823852092027664, 0.000119684700621292, -0.03151420131325722, 0.02384580299258232, -0.02026035450398922, -0.014161662198603153, -0.03115394152700901, 0.06357736885547638, 0.0005074202781543136, -0.030433420091867447, 0.04748574271798134, -0.021752862259745598, -0.006030071992427111, -0.011682728305459023, 0.08646248281002045, -0.0039499974809587, -0.007745597045868635, 0.0332125723361969, -0.02813461609184742, 0.015371107496321201, -0.052803874015808105, 0.02683081664144993, -0.043574344366788864, -0.007239517290145159, 0.008311720564961433, -0.07088550925254822, 0.024669256061315536, 0.01724103093147278, -0.025870123878121376, 0.019196730107069016, 0.06577324122190475, -0.005995761137455702, 0.010824965313076973, 0.07067964971065521, 0.006977899465709925, 0.13888894021511078, 0.0015750668244436383, -0.05300973355770111, 0.019488368183374405, 0.004333846271038055, -0.03436197340488434, 0.012489024549722672, -0.00013563373067881912, 0.03561430796980858, -0.0384620800614357, -0.013741358183324337, 0.04655935987830162, 0.02933548390865326, 0.056337855756282806, 0.013775669038295746, -0.001867778250016272, 0.026247538626194, -0.004460365977138281, -0.06193046644330025, 0.026007365435361862, -0.027139611542224884, -0.04045208916068077, -0.03547706454992294, 0.047348503023386, -0.05043644830584526, 0.035339824855327606, 0.01121095847338438, -0.01733538508415222, -0.06004339084029198, 0.006347443908452988, 0.02315959334373474, 0.003589736996218562, -0.029695745557546616, -0.015508349984884262, 0.05060799792408943, 0.0017230308149009943, 0.05928855761885643, 0.010584792122244835, 0.0889328345656395, 0.0030879457481205463, -0.05043644830584526, 0.05204904079437256, -0.045804526656866074, -0.04686815291643143, 0.0174125824123621, 0.04110398888587952, 0.0008625875925645232, 0.010378928855061531, 0.02094656601548195, 0.06769463419914246, -0.028597809374332428, -0.008834956213831902, 0.023039506748318672, 0.011382510885596275, 0.03736414387822151, -0.010378928855061531, -0.04618194326758385, -0.005944295320659876, -0.07383621484041214, 0.0047562941908836365, -0.0027105300687253475, 0.01752409152686596, 0.06285685300827026, -0.016417577862739563, 0.006055804900825024, 0.007282405160367489, -0.027414096519351006, 0.018853623420000076, -0.025990210473537445, 0.015439728274941444, 0.0018870779313147068, 0.015594125725328922, -0.010902163572609425, -0.022679245099425316, 0.024051666259765625, 0.002047908492386341, -0.0401776060461998, -0.03787880018353462, -0.007917149923741817, -0.017275340855121613, 0.026693575084209442, 0.07829657942056656, -0.00818734522908926, 0.009752761572599411, -0.05523991957306862, -0.05427922308444977, -0.02391442470252514, 0.027517028152942657, 0.0272082332521677, -0.0027062413282692432, -0.017129521816968918, 0.04292244464159012, -0.05427922308444977, -0.018115948885679245, 0.029695745557546616, -0.023537008091807365, 0.023708561435341835, -0.05530853942036629, 0.04549573361873627, -0.030056005343794823, -0.016794994473457336, -0.019900094717741013, 0.030656438320875168, 0.05101972445845604, 0.024463392794132233, 0.08124728500843048, -0.07527725398540497, -0.010438972152769566, 0.04474090412259102, 0.02470356598496437, -0.018115948885679245, 0.02995307371020317, -0.04251071810722351, -0.05180886760354042, -0.011039406061172485, 0.015834299847483635, -0.06759170442819595, -0.059494420886039734, -0.02089509926736355, 0.02139260247349739, 0.04024622589349747, -0.022216053679585457, -0.004627629648894072, -0.021546998992562294, 0.003355996683239937, 0.013158080168068409, -0.011408244259655476, -0.05551440268754959, 0.00004399384488351643, 0.008178767748177052, 0.005168020259588957, 0.08220797777175903, -0.005944295320659876, -0.08618799597024918, 0.0437115877866745, -0.057092685252428055, -0.07596346735954285, -0.04525556042790413, -0.009383924305438995, -0.04069226235151291, -0.0507795512676239, 0.0056998333893716335, -0.018390432000160217, 0.01792724058032036, 0.014479034580290318, 0.029369795694947243, -0.012120187282562256, -0.00896362029016018, -0.008603359572589397, -0.02031182125210762, 0.01549119409173727, 0.0017466193530708551, 0.03801604360342026, -0.02477218769490719, 0.0030000251717865467, 0.0544164665043354, -0.0161516722291708, 0.03379585221409798, -0.0023374033626168966, 0.02293657511472702, -0.014633432030677795, -0.023073816671967506, 0.02430899441242218, 0.04480952396988869, 0.027482716366648674, -0.05808769166469574, 0.01876784861087799, 0.008466118015348911, 0.007363892626017332, -0.003358141053467989, 0.017378272488713264, -0.006184468977153301, 0.024960894137620926, 0.021924415603280067, 0.06083253026008606, 0.02026035450398922, 0.07095412909984589, -0.04388314113020897, -0.032389119267463684, 0.01432463712990284, 0.058808211237192154, -0.04834350571036339, 0.028597809374332428, -0.005759876687079668, 0.06580755114555359, 0.03873656317591667, -0.057024065405130386, -0.017618445679545403, 0.005382461007684469, 0.005395327229052782, 0.05455370992422104, -0.012600534595549107, -0.015559815801680088, 0.027774356305599213, 0.03475654497742653, 0.03969725966453552, 0.029061000794172287, 0.026796506717801094, -0.01967707648873329, -0.04429486766457558, -0.02487511932849884, 0.06896412372589111, 0.02173570729792118, -0.01466774195432663, -0.01758413575589657, -0.07315000146627426, 0.015825722366571426, 0.007093697786331177, 0.017824308946728706, 0.05136283114552498, -0.026247538626194, -0.04467228055000305, -0.024669256061315536, -0.031925927847623825, -0.0033152529504150152, -0.01649477705359459, -0.03463645651936531, -0.009349613450467587, 0.040555018931627274, -0.020740702748298645, 0.05534284934401512, 0.006433220114558935, -0.023828648030757904, 0.02864927425980568, 0.010945051908493042, -0.0575387217104435, -0.03280084580183029, -0.0004945538239553571, 0.00008932794298743829, 0.043162617832422256, 0.0024317572824656963, -0.06522427499294281, 0.006814924534410238, 0.001112947124056518, -0.08927594125270844, -0.04096674546599388, 0.04244209825992584, -0.021787172183394432, 0.013809979893267155, -0.058568038046360016, -0.09250113368034363, 0.01549119409173727, 0.0005891757318750024, 0.007333870977163315, 0.0350310280919075, -0.028717895969748497, 0.0436086542904377, 0.027637114748358727, -0.014316059648990631, 0.02749987319111824, 0.017618445679545403, -0.04878954216837883, 0.010910741984844208, 0.014865027740597725, 0.03448206186294556, -0.02156415395438671, -0.021752862259745598, 0.019831473007798195, -0.006467530969530344, -0.017018012702465057, 0.0030622128397226334, 0.0262990053743124, -0.02460063435137272, 0.008007214404642582, -0.010207376442849636, -0.020294666290283203, 0.00813159067183733, 0.05386749655008316, 0.0007896777824498713, -0.03063928335905075, -0.023708561435341835, 0.009984358213841915, -0.022130277007818222, -0.0767182931303978, -0.03647207096219063, 0.06553307175636292, 0.015413995832204819, -0.013732780702412128, -0.011168070137500763, 0.03288662061095238, -0.0043359906412661076, -0.04628487676382065, 0.03853069990873337, -0.0017519802786409855, 0.07191482186317444, -0.019385436549782753, 0.023245370015501976, -0.0026461980305612087, 0.05191179737448692, 0.060112010687589645, 0.0253383107483387, 0.010653412900865078, 0.04837781563401222, 0.022336140275001526, 0.02727685496211052, 0.037226900458335876, -0.061141327023506165, 0.03225187957286835, -0.030604973435401917, -0.029318328946828842, 0.04329986125230789, 0.009178061038255692, -0.029541347175836563, 0.019882939755916595, 0.01229173969477415, 0.011288157664239407, 0.0066476608626544476, -0.05328422039747238, -0.021066652610898018, 0.006802058313041925, 0.0047305612824857235, 0.013295321725308895, 0.02648771181702614, -0.016700640320777893, -0.029541347175836563, -0.04072657227516174, -0.070062056183815, -0.039011046290397644, -0.038770873099565506, -0.00841894093900919, -0.037467073649168015, -0.07452242076396942, 0.057092685252428055, 0.0157999899238348, 0.029181087389588356, -0.0067763254046440125, -0.029747210443019867, 0.06100408360362053, -0.02653917856514454, -0.07452242076396942, -0.010764922015368938, 0.045152630656957626, 0.016469044610857964, 0.001261983416043222, 0.02710530161857605, -0.022524848580360413, 0.06978757679462433, -0.026110297068953514, -0.029918763786554337, -0.06196477636694908, -0.037638626992702484, -0.04889247566461563, -0.04566728696227074, -0.019934404641389847, 0.048583678901195526, -0.0017005145782604814, 0.017138099297881126, 0.045118317008018494, 0.029146777465939522, 0.021924415603280067, 0.002223749877884984, 0.01888793520629406, 0.09627528488636017, -0.07431656122207642, 0.021924415603280067, 0.06570462137460709, 0.03588879108428955, -0.01144255418330431, -0.02840910106897354, -0.06004339084029198, -0.022953730076551437, 0.0014796407194808125, -0.015413995832204819, 0.0341218002140522, -0.02161562070250511, 0.027517028152942657, -0.0005972172948531806, 0.02089509926736355, 0.011888590641319752, 0.010104444809257984, -0.03189161792397499, 0.031016699969768524, -0.06731721758842468, 0.03069075010716915, -0.03194308280944824, -0.013895755633711815, -0.008912154473364353, -0.009795649908483028, -0.024034511297941208, -0.033761538565158844, 0.018115948885679245, -0.0027105300687253475, -0.0052666631527245045, -0.019659921526908875, -0.06292547285556793, -0.032663602381944656, 0.022696401923894882, -0.009915736503899097, 0.038084663450717926, 0.005828497465699911, 0.08371763676404953, -0.010396083816885948, 0.02556132897734642, 0.008140168152749538, 0.0018334677442908287, -0.01041323971003294, 0.10059840977191925, -0.0923638865351677, 0.0489610955119133, -0.02671073004603386, -0.014530500397086143, 0.03211463615298271, -0.02197588048875332, -0.022919420152902603, -0.03166859969496727, -0.036780864000320435, -0.04120691865682602, 0.049098338931798935, 0.004140849690884352, 0.03636913746595383, -0.030107470229268074, 0.03413895517587662, -0.008440384641289711, 0.006926433648914099, -0.0157999899238348, -0.0010153766488656402, 0.05294111371040344, 0.03365860879421234, -0.026110297068953514, -0.009778494946658611, 0.006021494045853615, -0.012171653099358082, 0.04666228964924812, 0.07637519389390945, -0.007595488801598549, 0.006939300335943699, 0.05352439358830452, 0.003126545110717416, -0.0118371257558465, -0.012205963023006916, -0.00008075031655607745, 0.007676976267248392, -0.014393257908523083, 0.07644381374120712, -0.0051894644275307655, -0.0558231957256794, 0.0006170530687086284, 0.011408244259655476, 0.07383621484041214, 0.012308894656598568, 0.013183812610805035, -0.028597809374332428, -0.002350269816815853, -0.01905948668718338, -0.05688682198524475, -0.04223623499274254, 0.00483778165653348, -0.033864472061395645, 0.018459053710103035, 0.033761538565158844, -0.032835155725479126, -0.051843177527189255, -0.0576416552066803, 0.04388314113020897, -0.007110852748155594, 0.012471869587898254, -0.05009334161877632, -0.01573994569480419, -0.03051919676363468, 0.026161761954426765, 0.02789444290101528, 0.06429789215326309, 0.043162617832422256, 0.028443410992622375, 0.05379887670278549, 0.05911700427532196, 0.002659064484760165, -0.014573388732969761, 0.01323527842760086, -0.04206468164920807, 0.03719259053468704, -0.031016699969768524, 0.0403834693133831, -0.03019324690103531, -0.04820626229047775, 0.018218880519270897, -0.026213228702545166, 0.006008627824485302, 0.018956555053591728, -0.01996871642768383, -0.01549119409173727, -0.008324586786329746, 0.06954739987850189, -0.019814318045973778, 0.014942226000130177, -0.005665522534400225, 0.025887278839945793, -0.029832987114787102, 0.005095110274851322, 0.039457082748413086, -0.06769463419914246, 0.02755133807659149, 0.009349613450467587, 0.006643372122198343, -0.05928855761885643, -0.030827991664409637, -0.025870123878121376, -0.0279630646109581, 0.008770623244345188, -0.014504767023026943, 0.06004339084029198, 0.02298804000020027, -0.04240778833627701, -0.0696503296494484, -0.01001866813749075, -0.047451432794332504, 0.008774912916123867, -0.006549018435180187, -0.06800343096256256, 0.028786515817046165, -0.033075328916311264, -0.046765223145484924, -0.004370301030576229, 0.011982944793999195, -0.026384780183434486, 0.014847872778773308, 0.003967152442783117, -0.0626852959394455, 0.008659114129841328, -0.03760431706905365, -0.0025346886832267046, -0.009495433419942856, -0.05390181019902229, -0.014933648519217968, -0.007972904480993748, 0.029404105618596077, -0.012403248809278011, 0.0174125824123621, 0.012454714626073837, 0.016451887786388397, -0.025492707267403603, 0.011485442519187927, 0.029181087389588356, -0.007595488801598549, -0.03247489780187607, -0.07507139444351196, -0.02607598714530468, 0.007149452343583107, 0.06944447010755539, 0.04429486766457558, -0.01560270320624113, 0.045838840305805206, -0.007333870977163315, -0.07184620201587677, -0.06210201978683472, 0.02705383487045765, 0.027036679908633232, 0.006802058313041925, 0.06827791035175323, -0.006767747923731804, -0.09867702424526215, -0.03298955410718918, -0.018133103847503662, 0.004434633068740368, 0.014230282977223396, 0.034087490290403366, -0.00429310230538249, 0.05894545465707779, -0.03777587041258812, 0.020466217771172523, -0.03105100989341736, 0.03705534711480141, 0.021032340824604034, 0.02494373917579651, 0.022336140275001526, 0.03561430796980858, 0.028786515817046165, 0.034207575023174286, 0.012051565572619438, 0.0192825049161911, -0.00989858154207468, 0.025595638900995255, 0.08728593587875366, 0.012025833129882812, -0.042030371725559235, 0.03194308280944824, -0.004333846271038055, 0.005648367572575808, 0.03353852033615112, -0.012986527755856514, -0.004666229244321585, -0.02384580299258232, 0.049612995237112045, 0.0872173085808754, -0.012506180442869663, 0.03588879108428955, 0.07973761856555939, -0.03794742375612259, -0.0020554137881845236, -0.029369795694947243, 0.015233865939080715, 0.0015622003702446818, 0.022610625252127647, -0.0436086542904377, -0.045907460153102875, 0.06368030607700348, -0.006141581106930971, 0.03304101899266243, 0.0008191633969545364, -0.008723447099328041, 0.04302537813782692, -0.005026489496231079, 0.05664664879441261, -0.029867297038435936, 0.014702052809298038, 0.024806497618556023, 0.03582017123699188, 0.0021551288664340973, 0.045838840305805206, 0.0002175232657464221, 0.021306825801730156, 0.05551440268754959, 0.024617789313197136, -0.058568038046360016, -0.02043190784752369, 0.05729854851961136, -0.06697411090135574, 0.006278823129832745, 0.052495077252388, 0.02671073004603386, -0.02053483948111534, -0.03657500073313713, -0.005970028229057789, 0.0078999949619174, 0.023897269740700722, -0.020569149404764175, 0.03863363340497017, -0.03914828971028328, -0.01124526932835579 ]
39,975
s3path.old_versions
__rtruediv__
null
def __rtruediv__(self, key): if not isinstance(key, (PureS3Path, str)): return NotImplemented new_path = super().__rtruediv__(key) new_path.version_id = self.version_id return new_path
(self, key)
[ 0.015443139709532261, -0.04894585534930229, -0.05472492054104805, 0.08118880540132523, 0.02075529843568802, -0.0365067720413208, 0.004131678491830826, 0.04950966686010361, 0.05824873968958855, 0.010897411964833736, 0.05172967165708542, 0.02075529843568802, 0.019240055233240128, 0.04880490154027939, -0.032242950052022934, 0.01757504977285862, 0.032824378460645676, 0.05331538990139961, -0.020350057631731033, 0.012905989773571491, -0.013698848895728588, 0.018077194690704346, 0.028895320370793343, 0.022728636860847473, 0.011117651127278805, 0.044717270880937576, 0.04704299196600914, 0.0040105474181473255, 0.06314684450626373, -0.09281741082668304, -0.009672884829342365, 0.026340551674365997, 0.03724677488207817, 0.06660018861293793, 0.008479190990328789, -0.028613414615392685, 0.012588845565915108, 0.006127041298896074, -0.008175261318683624, -0.004107452463358641, 0.001902862568385899, 0.03858582675457001, 0.013734087347984314, -0.06977163255214691, 0.03943154215812683, 0.07037068158388138, -0.012271702289581299, 0.028877701610326767, 0.023345304653048515, 0.009294074028730392, 0.02146006189286709, 0.045809656381607056, -0.00100208621006459, -0.018500052392482758, -0.027838176116347313, 0.010800506919622421, 0.040664877742528915, 0.042462028563022614, -0.044963937252759933, 0.06603638082742691, -0.00014563286094926298, -0.05412587150931358, 0.016086237505078316, 0.001343456213362515, -0.020420534536242485, -0.04450584203004837, -0.03759915381669998, -0.000940419384278357, -0.013575514778494835, 0.05046109855175018, -0.019099103286862373, -0.019363388419151306, 0.007884546183049679, 0.004014952108263969, 0.005369420163333416, 0.0164209995418787, -0.03731724992394447, 0.01969815231859684, 0.03731724992394447, -0.01587480679154396, -0.018200527876615524, -0.08626310527324677, -0.022693399339914322, -0.03589010238647461, -0.03344104811549187, 0.048663947731256485, -0.0004396515723783523, -0.0948612242937088, -0.005290134344249964, 0.015513615682721138, -0.059658266603946686, 0.0676925778388977, -0.08710882067680359, -0.0048408471047878265, 0.06684685498476028, -0.017249098047614098, -0.002823460381478071, -0.08598119765520096, 0.014879328198730946, -0.031027231365442276, 0.027203887701034546, 0.013637182302772999, 0.03599581867456436, -0.013531467877328396, 0.024719594046473503, -0.035713911056518555, -0.011840034276247025, -0.01857052929699421, -0.009399788454174995, -0.007990260608494282, 0.002220006426796317, 0.06705828756093979, -0.0310096126049757, 0.03640105575323105, -0.034656766802072525, -0.016200760379433632, 0.020226724445819855, -0.052716340869665146, 0.03872677683830261, 0.013575514778494835, 0.0246491190046072, 0.025600548833608627, -0.050919193774461746, 0.05363253504037857, 0.0015372663037851453, 0.01283551286906004, 0.011954558081924915, 0.030798183754086494, -0.020138628780841827, -0.02567102573812008, -0.011011936701834202, 0.05877730995416641, -0.02602340839803219, 0.00008100655395537615, -0.015240520238876343, -0.006853829137980938, 0.03932582587003708, 0.027979128062725067, 0.023186733946204185, 0.08217547088861465, 0.012985275126993656, 0.008620143868029118, 0.055993493646383286, 0.018130052834749222, 0.022288158535957336, 0.007576212286949158, 0.004902514163404703, 0.015892427414655685, -0.011531699448823929, 0.012359797023236752, 0.02137196622788906, 0.03597819805145264, 0.0914078801870346, 0.021618632599711418, 0.03220771253108978, -0.04475250840187073, -0.02165387198328972, -0.034462954849004745, -0.00605656486004591, -0.037387724965810776, 0.014773613773286343, -0.05553539842367172, 0.024666737765073776, -0.055993493646383286, 0.00661156652495265, -0.043202027678489685, 0.027415316551923752, -0.014905757270753384, -0.04038297384977341, 0.04351917281746864, 0.020931487902998924, -0.011672652326524258, -0.07808784395456314, 0.05254014953970909, 0.02355673350393772, 0.016879096627235413, 0.009901933372020721, -0.0025789954233914614, 0.02153053879737854, -0.040982022881507874, 0.0365067720413208, -0.02516007237136364, 0.0048540616407990456, 0.07223830372095108, 0.04669060930609703, 0.03604867681860924, -0.009901933372020721, 0.025494834408164024, 0.05402015522122383, -0.005924421828240156, -0.04422393813729286, -0.005061085801571608, -0.011505271308124065, 0.016694094985723495, 0.024596260860562325, -0.04168678820133209, 0.020702440291643143, -0.023415781557559967, -0.03752867877483368, 0.09591837227344513, -0.007554188370704651, -0.03451581299304962, 0.008880025707185268, -0.0013676824746653438, -0.02301054261624813, -0.023609591647982597, 0.0014535755617544055, -0.007620260119438171, 0.019222436472773552, 0.04598584771156311, 0.023433400318026543, -0.0022299170959740877, -0.004085428547114134, 0.006461804267019033, -0.02484292909502983, -0.05430205911397934, -0.05215252935886383, 0.02519530989229679, 0.027873413637280464, 0.02316911332309246, 0.08612215518951416, 0.02660483866930008, 0.024825308471918106, -0.018658624961972237, 0.0016462844796478748, -0.052293483167886734, 0.011505271308124065, -0.007642284035682678, -0.07533926516771317, -0.026516743004322052, 0.037387724965810776, -0.014570994302630424, 0.016729334369301796, 0.00011252822150709108, -0.0003969802928622812, -0.006928710266947746, -0.01754862256348133, 0.03460390865802765, 0.039184875786304474, -0.008479190990328789, -0.004545727279037237, -0.0345686711370945, 0.027432935312390327, 0.05437253788113594, -0.05838968977332115, -0.010677173733711243, -0.006761328782886267, 0.05909445509314537, 0.011505271308124065, -0.0011584557360038161, 0.03833915665745735, 0.011769557371735573, -0.05592301860451698, 0.0472896583378315, 0.06970115005970001, 0.00036009031464345753, -0.011655033566057682, -0.016500284895300865, 0.01347860973328352, -0.005360610783100128, -0.05141253024339676, -0.05187062546610832, -0.004468643572181463, -0.04084106907248497, -0.029353417456150055, -0.025424359366297722, 0.025019118562340736, 0.031115327030420303, -0.007241449318826199, 0.03985439985990524, -0.02901865541934967, -0.012218845076858997, -0.05292776972055435, 0.022376254200935364, 0.01004288624972105, -0.009716932661831379, -0.030199134722352028, 0.00404798798263073, -0.018006717786192894, 0.0027706031687557697, -0.009399788454174995, -0.009056216105818748, 0.031538184732198715, 0.008540857583284378, -0.012932417914271355, 0.002984234830364585, -0.007369187660515308, -0.044682033360004425, -0.02043815329670906, -0.014315517619252205, -0.0011870866874232888, 0.009311693720519543, -0.05729730799794197, 0.0012894977116957307, 0.05172967165708542, 0.011188127100467682, -0.09028025716543198, -0.04119345173239708, 0.06593066453933716, 0.0007444068905897439, -0.0712868720293045, 0.008800739422440529, -0.02239387296140194, 0.005765849724411964, 0.009417408145964146, 0.016244808211922646, 0.0182533860206604, 0.023856259882450104, -0.027521030977368355, 0.0438363179564476, -0.04309631511569023, 0.047994423657655716, -0.08097737282514572, 0.011373127810657024, 0.03840963542461395, 0.026851505041122437, -0.003426914568990469, -0.0036603675689548254, 0.003605308011174202, 0.05553539842367172, -0.06050398200750351, 0.02686912566423416, -0.08266881108283997, 0.020226724445819855, 0.02348625846207142, -0.057015400379896164, 0.011690272018313408, -0.038867730647325516, 0.0019094697199761868, 0.038832493126392365, -0.022904828190803528, 0.07075829803943634, 0.02230577915906906, 0.023662449792027473, -0.06829162687063217, -0.02878960594534874, 0.037387724965810776, -0.014764804393053055, 0.021935777738690376, 0.0529630109667778, 0.06578971445560455, -0.03518534079194069, 0.012201225385069847, -0.01985672302544117, -0.0382334440946579, -0.015557663515210152, -0.007210616022348404, -0.03541438654065132, 0.03444533795118332, -0.04485822468996048, -0.0338110476732254, -0.0401010662317276, -0.012271702289581299, 0.03203152120113373, 0.04161630943417549, -0.04270869493484497, -0.007862522266805172, -0.010967888869345188, -0.017856955528259277, -0.016244808211922646, 0.03351152315735817, -0.03171437606215477, -0.015962902456521988, -0.0011259705061092973, 0.028067223727703094, -0.007422045338898897, -0.011055984534323215, -0.039960116147994995, -0.019204817712306976, -0.014421232044696808, -0.059552550315856934, -0.05616968497633934, -0.004594179801642895, -0.04845251888036728, 0.037035346031188965, 0.0008490203181281686, -0.01635933294892311, 0.007153353653848171, -0.014042421244084835, -0.00440257228910923, 0.0228167325258255, 0.046091560274362564, 0.04644394293427467, 0.04225059598684311, -0.0010747649939730763, 0.05944683775305748, 0.05719159170985222, -0.029776275157928467, 0.07562117278575897, 0.04292012378573418, -0.03929058834910393, 0.011108841747045517, 0.04690203815698624, -0.009390979073941708, -0.00951431319117546, 0.0036801891401410103, -0.009593598544597626, -0.03490343317389488, -0.005545611027628183, -0.002567983465269208, 0.020808154717087746, -0.025882454589009285, -0.026816267520189285, 0.05535920709371567, 0.007554188370704651, -0.04588013142347336, 0.057825881987810135, 0.04337821900844574, -0.017777670174837112, -0.08929359167814255, 0.0009635444148443639, -0.04598584771156311, -0.03897344693541527, -0.00873907282948494, 0.05430205911397934, -0.019980058073997498, 0.048311568796634674, -0.06223065406084061, -0.017398860305547714, 0.06512019038200378, 0.016077427193522453, 0.033916763961315155, -0.03437485918402672, -0.0025195309426635504, 0.0033542357850819826, 0.0018676244653761387, 0.015240520238876343, -0.00632966123521328, 0.005272515118122101, 0.033529143780469894, 0.03685915470123291, 0.03759915381669998, 0.01474718563258648, 0.043589647859334946, -0.005717397201806307, -0.002865305868908763, 0.019257673993706703, 0.00867740623652935, 0.009435026906430721, 0.053843963891267776, -0.010545030236244202, -0.023944353684782982, -0.043942030519247055, 0.0007801956962794065, 0.04605632275342941, -0.036330580711364746, -0.05934112146496773, 0.05098966881632805, 0.047571565955877304, -0.03437485918402672, 0.0228167325258255, 0.0069022816605865955, -0.02711579203605652, -0.021900538355112076, -0.050108715891838074, 0.009866694919764996, -0.011100031435489655, -0.027327220886945724, -0.004180131014436483, -0.03971344605088234, -0.02664007619023323, 0.06688209623098373, 0.045739177614450455, -0.01193693932145834, -0.010060505010187626, -0.012456702068448067, -0.023732924833893776, -0.03798677399754524, -0.015760283917188644, -0.05211729183793068, 0.0008088267059065402, -0.06046874448657036, -0.01844719611108303, 0.020896250382065773, 0.004120666533708572, 0.025882454589009285, 0.012685750611126423, -0.0003650456783361733, -0.07456402480602264, -0.06621257215738297, -0.0636049434542656, -0.014535755850374699, -0.04133440554141998, 0.030445801094174385, 0.02711579203605652, -0.006382518447935581, -0.027943890541791916, 0.07139258831739426, 0.06889067590236664, -0.03229580819606781, -0.0008060737163759768, 0.047571565955877304, -0.07058210670948029, 0.10247267782688141, 0.015284568071365356, 0.01667647622525692, -0.024631500244140625, 0.01191931962966919, -0.02285197004675865, 0.003526021959260106, -0.005325372330844402, -0.06304113566875458, 0.0419686920940876, 0.03342342749238014, 0.020173868164420128, 0.05479539558291435, -0.054830633103847504, -0.003999535460025072, 0.029282940551638603, -0.05074300244450569, -0.008915264159440994, -0.007223830092698336, 0.0159012358635664, 0.01205146312713623, 0.049439188092947006, 0.03597819805145264, -0.07512783259153366, 0.029194844886660576, -0.010536220856010914, -0.014985042624175549, -0.006135851144790649, -0.006470613647252321, 0.008880025707185268, -0.07400020956993103, -0.02757388912141323, 0.00174318952485919, -0.03943154215812683, -0.05518301576375961, 0.043765839189291, 0.02223530225455761, -0.08217547088861465, -0.018165290355682373, -0.0061622797511518, 0.03714105859398842, -0.027133410796523094, 0.08880025148391724, -0.0364362932741642, 0.03257771208882332, -0.01899338699877262, -0.06254779547452927, 0.003948880359530449, 0.043554410338401794, -0.02091386914253235, -0.019574817270040512, -0.024948643520474434, 0.04528108239173889, -0.025054357945919037, 0.011179317720234394, -0.006549899931997061, -0.023732924833893776, -0.04598584771156311, 0.037000104784965515, 0.04087630659341812, -0.019099103286862373, 0.0675516203045845, -0.03023437224328518, 0.004567751195281744, -0.06617733091115952, -0.047219183295965195, 0.012148368172347546, 0.02375054359436035, -0.0017266715876758099, 0.0318024717271328, -0.009813837707042694, -0.0008556274697184563, 0.022323397919535637, 0.009760980494320393, -0.02047339268028736, 0.03692962974309921, -0.00449066748842597, -0.013663610443472862, 0.016218379139900208, 0.03566105663776398, 0.013320038095116615, -0.03724677488207817, -0.002660483820363879, -0.010263124480843544, -0.012377416715025902, 0.004743942059576511, -0.057403020560741425, 0.005867159925401211, 0.002407209249213338, 0.09627075493335724, -0.012985275126993656, -0.029001034796237946, 0.0006898978026583791, 0.02984675206243992, 0.10148600488901138, -0.019046245142817497, 0.015733854845166206, -0.06793924421072006, -0.08090689778327942, -0.003552450565621257, -0.03145008906722069, -0.018940530717372894, -0.05032014474272728, 0.027256745845079422, -0.02316911332309246, 0.019433865323662758, -0.012086701579391956, 0.01537266280502081, -0.019909581169486046, 0.010456934571266174, 0.08323261886835098, -0.02801436558365822, 0.02156577631831169, -0.02894817851483822, 0.060292553156614304, -0.017522193491458893, -0.03640105575323105, 0.02285197004675865, 0.054865870624780655, 0.026939600706100464, -0.03226057067513466, 0.016235999763011932, 0.021971015259623528, -0.029353417456150055, 0.026076264679431915, -0.04855823516845703, -0.0059860884211957455, -0.07935641705989838, -0.001661701244302094, -0.030251991003751755, 0.021054822951555252, -0.09570693969726562, -0.003140604356303811, 0.04972109571099281, 0.025600548833608627, 0.026181979104876518, -0.07357735186815262, 0.005580849479883909, -0.051201097667217255, 0.024472927674651146, 0.030710088089108467, 0.0327010452747345, -0.027274364605545998, 0.01219241600483656, 0.02875436842441559, 0.013337657786905766, 0.04764204099774361, 0.027873413637280464, -0.040664877742528915, -0.058495406061410904, 0.04718394577503204, -0.049086809158325195, -0.0019281901186332107, 0.012782655656337738, -0.02988199144601822, -0.013231942430138588, -0.025406738743185997, -0.005325372330844402, -0.009523122571408749, 0.012923608534038067, -0.051941100507974625, -0.0006667727720923722, -0.007135734893381596, 0.05578206479549408, -0.05514777824282646, 0.0030811398755759, -0.02831389009952545, 0.001522950828075409, -0.022094348445534706, -0.047254420816898346, 0.0173548124730587, 0.06282970309257507, -0.013135037384927273, 0.027133410796523094, -0.029247703030705452, -0.014694327488541603, -0.019204817712306976, 0.017856955528259277, -0.022675778716802597, -0.061138272285461426, -0.0012707774294540286, -0.03210199624300003, -0.062477320432662964, 0.048628710210323334, -0.012668131850659847, 0.03936106711626053, 0.005338586866855621, -0.03289485722780228, 0.003865189617499709, -0.01556647289544344, 0.012782655656337738, -0.024543404579162598, 0.00930288340896368, -0.011610985733568668, 0.026657694950699806, 0.0182181466370821, -0.11114127188920975, 0.011514080688357353, -0.0838669091463089, -0.029511990025639534, -0.005025847814977169, -0.028648653998970985, -0.011381937190890312, 0.03599581867456436, 0.009452646598219872, 0.021407203748822212, -0.008765500970184803, 0.03338818997144699, 0.02590007521212101, -0.000330908689647913, -0.007589426357299089, 0.007197401486337185, -0.024737214669585228, 0.01864100620150566, -0.03139723464846611, -0.030533896759152412, -0.03023437224328518, 0.016315285116434097, -0.01610385626554489, 0.013769324868917465, -0.07449354976415634, 0.0566277801990509, 0.06473256647586823, -0.013408133760094643, -0.059235408902168274, 0.001943606766872108, -0.00042781373485922813, -0.02531864494085312, -0.05359729751944542, 0.012588845565915108, 0.04676108807325363, -0.0006375911179929972, -0.012104320339858532, 0.010659554041922092, 0.026587219908833504, -0.008602525107562542, 0.07237925380468369, 0.0059860884211957455, 0.04898109287023544, 0.008250142447650433, -0.06793924421072006, 0.06469732522964478, -0.027485793456435204, -0.036260105669498444, -0.008197285234928131, 0.027080554515123367, 0.08703834563493729, -0.008712643757462502, 0.02866627275943756, -0.04267345741391182, -0.014156945049762726, 0.04707822948694229, -0.014077659696340561, 0.01347860973328352, 0.06490875780582428, -0.012412654235959053, 0.017821718007326126, 0.020878631621599197, 0.044646795839071274, -0.014896947890520096, 0.00769514124840498, 0.045069653540849686, -0.06286494433879852, 0.004244000185281038, 0.03338818997144699, 0.04884013906121254, -0.018817197531461716, -0.04122868925333023, -0.053068723529577255, -0.003944475669413805, 0.03273628279566765, 0.018041957169771194, 0.03197866305708885, 0.008915264159440994, 0.00996359996497631 ]
39,977
s3path.old_versions
__truediv__
null
def __truediv__(self, key): if not isinstance(key, (PureS3Path, str)): return NotImplemented key = S3Path(key) if isinstance(key, str) else key return key.__rtruediv__(self)
(self, key)
[ 0.008910002186894417, -0.02910718135535717, -0.03694305196404457, 0.08649393171072006, 0.038844794034957886, -0.02997000701725483, -0.0035195390228182077, -0.006981849670410156, 0.054692622274160385, 0.019440004602074623, 0.05909479781985283, 0.039760444313287735, 0.027716094627976418, 0.015786198899149895, -0.046733491122722626, 0.021605875343084335, 0.020091526210308075, 0.06437740474939346, -0.007875490933656693, -0.004488017410039902, -0.033315662294626236, 0.027786528691649437, 0.031096965074539185, 0.005687610246241093, 0.01145445927977562, 0.037295226007699966, 0.04979740455746651, -0.008073588833212852, 0.04159174859523773, -0.08135219663381577, -0.020971961319446564, 0.06462392956018448, 0.020073918625712395, 0.047649141401052475, -0.0027095386758446693, -0.054058708250522614, 0.008557828143239021, -0.03491805121302605, -0.020038699731230736, 0.01374359056353569, -0.00030760199297219515, 0.0195456575602293, 0.04426827281713486, -0.06226436421275139, 0.029617832973599434, 0.044409140944480896, -0.0049612512812018394, 0.03398479148745537, 0.003464511828497052, -0.012017937377095222, 0.018735656514763832, 0.031959790736436844, 0.009746415540575981, -0.02361326664686203, -0.04342305287718773, 0.013541090302169323, 0.028015442192554474, 0.028772616758942604, -0.0641661062836647, 0.06860349327325821, 0.015134677290916443, -0.04159174859523773, 0.013092068023979664, -0.006039784289896488, -0.018277831375598907, -0.035956963896751404, -0.035816095769405365, 0.020232396200299263, -0.02916000783443451, 0.025338919833302498, -0.022644788026809692, 0.002614891855046153, 0.0056700012646615505, 0.002812989754602313, 0.006515218876302242, -0.00785348005592823, -0.02519804984331131, 0.02665957249701023, 0.006801360286772251, 0.012202829122543335, 0.00861065462231636, -0.06603262573480606, 0.005678805988281965, -0.023278702050447464, -0.023085005581378937, 0.0049964687786996365, -0.00039619574090465903, -0.0914243683218956, 0.009191741235554218, 0.03937305510044098, -0.07311132550239563, 0.034301746636629105, -0.06134871020913124, -0.014078156091272831, 0.056312624365091324, 0.01539880782365799, -0.014676851220428944, -0.078886978328228, 0.0012810329208150506, -0.05564349144697189, 0.04409218579530716, 0.07219567149877548, 0.07395654171705246, -0.022239787504076958, 0.04018305242061615, -0.0235956571996212, -0.04011261835694313, -0.02452891878783703, -0.0035833704750984907, 0.0011478671804070473, 0.00821445882320404, 0.06001044809818268, -0.028543703258037567, 0.04088740050792694, -0.01025706809014082, -0.04303566366434097, 0.006836577784270048, -0.027733702212572098, 0.010723697952926159, 0.03130826726555824, 0.030357398092746735, 0.017265331000089645, -0.026289789006114006, 0.03527022525668144, -0.022680005058646202, 0.012290872633457184, 0.03254087641835213, 0.018489135429263115, -0.02370131015777588, -0.0012535193236544728, 0.015513264574110508, 0.05138218775391579, -0.006559240631759167, 0.021588265895843506, -0.012176415883004665, 0.020285222679376602, 0.07103349268436432, 0.04166218265891075, 0.04352870583534241, 0.054551754146814346, 0.04180305451154709, 0.016094351187348366, 0.05176957696676254, 0.03403761610388756, 0.035111747682094574, 0.03403761610388756, -0.017247721552848816, -0.0016794297844171524, 0.009843263775110245, -0.005278207827359438, -0.004283316433429718, 0.04634609818458557, 0.11826002597808838, 0.015495656058192253, 0.043740011751651764, -0.03940827026963234, -0.012599024921655655, -0.028948701918125153, -0.029318485409021378, -0.04243696853518486, 0.008284893818199635, -0.009737610816955566, -0.028843050822615623, -0.05250914394855499, -0.01020424161106348, -0.05796784162521362, 0.03373827040195465, -0.020161962136626244, -0.02993478998541832, 0.04698001220822334, 0.02276804856956005, -0.01737978681921959, -0.0803661048412323, 0.06737088412046432, 0.04898740351200104, -0.004661903250962496, -0.023472396656870842, 0.02275044098496437, 0.01703641749918461, -0.0260784849524498, 0.012502176687121391, -0.0174150038510561, 0.0029912779573351145, 0.023085005581378937, 0.023842180147767067, 0.014491960406303406, 0.013558698818087578, 0.031237833201885223, 0.03384391963481903, -0.014439133927226067, -0.03222392126917839, -0.0056655993685126305, -0.030392616987228394, 0.023208266124129295, 0.03676696494221687, -0.015196308493614197, 0.031889356672763824, 0.0042326911352574825, -0.018260221928358078, 0.09029741585254669, -0.03227674588561058, -0.0038585064467042685, 0.005383859854191542, -0.0025532615836709738, -0.037400878965854645, -0.038844794034957886, -0.02824435569345951, 0.0043031261302530766, -0.0035217399708926678, 0.029688268899917603, 0.02287370152771473, -0.012704676948487759, -0.024599354714155197, 0.03303392231464386, -0.021535439416766167, -0.0175646785646677, -0.0336502268910408, 0.010714894160628319, 0.038246095180511475, 0.0068101645447313786, 0.11044176667928696, 0.013294568285346031, 0.04233131557703018, -0.010521198622882366, 0.02761044166982174, -0.03775305300951004, 0.010873372666537762, 0.039443489164114, -0.054727841168642044, -0.006044186186045408, 0.05500957742333412, 0.014439133927226067, 0.03474196419119835, 0.03407283499836922, -0.0009673779713921249, -0.026553919538855553, -0.02667718008160591, 0.013620329089462757, 0.027170224115252495, -0.03997175022959709, -0.01705402508378029, -0.03247044235467911, 0.030533485114574432, 0.048846535384655, -0.07092784345149994, -0.014219025149941444, 0.009323806501924992, 0.07952088862657547, -0.010054567828774452, 0.0242471806704998, 0.03137870505452156, 0.03136109560728073, -0.05670001357793808, 0.04310609772801399, 0.0356576181948185, 0.015249134041368961, 0.012968807481229305, -0.017098046839237213, 0.008958426304161549, 0.017027612775564194, -0.028508486226201057, -0.058636970818042755, 0.01743261329829693, -0.0348300077021122, -0.033298052847385406, -0.001128057367168367, 0.03470674902200699, 0.03363261744379997, -0.0174150038510561, 0.04173262044787407, -0.04321175068616867, -0.05490392819046974, -0.0242471806704998, -0.010063371621072292, -0.004314131569117308, -0.0019985875114798546, -0.007620165124535561, 0.026307398453354836, -0.0142366336658597, 0.002837201813235879, -0.020743047818541527, -0.0056303818710148335, -0.013919677585363388, -0.03845740109682083, -0.01810174435377121, 0.0031387507915496826, 0.011841850355267525, -0.07987306267023087, -0.014756090939044952, 0.006132229696959257, -0.0145183727145195, -0.030480660498142242, -0.038210880011320114, -0.006986251566559076, 0.0353054441511631, -0.017784787341952324, -0.09832698106765747, -0.07381567358970642, 0.09748176485300064, 0.024740222841501236, -0.07804176211357117, 0.008478589355945587, -0.026236962527036667, -0.0004223336582072079, 0.004146848805248737, 0.030392616987228394, 0.01956326514482498, 0.03370305150747299, -0.04271870478987694, 0.0379643589258194, -0.048318274319171906, 0.035868920385837555, -0.07811219245195389, 0.011806633323431015, 0.02669478952884674, 0.051523055881261826, 0.0008022963884286582, 0.018770873546600342, -0.015592504292726517, 0.061665669083595276, -0.01903500407934189, 0.03405522555112839, -0.05670001357793808, 0.026219354942440987, 0.02354283258318901, -0.06159523129463196, -0.02289130911231041, -0.04247218370437622, 0.008157229982316494, 0.029617832973599434, -0.013426633551716805, 0.06923741102218628, 0.028631746768951416, 0.018436308950185776, -0.06645523756742477, -0.010477176867425442, 0.04979740455746651, 0.036555662751197815, 0.014800112694501877, 0.06011610105633736, 0.04810696840286255, -0.03704870492219925, 0.024828266352415085, -0.008135219104588032, -0.04014783725142479, -0.028931094333529472, -0.026289789006114006, -0.049903057515621185, 0.06846262514591217, -0.03866870701313019, 0.000033738542697392404, -0.03965479135513306, 0.010882176458835602, 0.02609609253704548, 0.009455871768295765, -0.031202616170048714, 0.004683914128690958, -0.02514522336423397, 0.0014329080004245043, -0.0055027189664542675, 0.046803925186395645, -0.046909578144550323, -0.0377882719039917, 0.002219796646386385, 0.015768591314554214, -0.020320439711213112, 0.01413978636264801, -0.060221754014492035, -0.04004218429327011, 0.025814354419708252, -0.050853926688432693, -0.04504305496811867, -0.017820004373788834, -0.03292826935648918, 0.02923044189810753, 0.016041526570916176, 0.011181524954736233, 0.013144894503057003, 0.0014296063454821706, 0.00021474360255524516, 0.01499380823224783, 0.050677839666604996, 0.04081696644425392, 0.02356044016778469, 0.005771251395344734, 0.07543566823005676, 0.00861065462231636, -0.025374136865139008, 0.06233479827642441, 0.021764352917671204, -0.023877397179603577, 0.004868805408477783, 0.04557131603360176, -0.035851314663887024, -0.04465566202998161, 0.01956326514482498, 0.003008886706084013, -0.06691306084394455, 0.0008193548419512808, -0.003717636689543724, 0.012141198851168156, -0.03690783679485321, -0.025409353896975517, 0.06536349654197693, 0.018718048930168152, 0.006682501640170813, 0.03711913898587227, 0.04775479435920715, -0.017089243978261948, -0.03965479135513306, -0.0015187503304332495, -0.030885659158229828, -0.042930010706186295, 0.0011610736837610602, 0.012563807889819145, -0.03993653133511543, 0.0078798932954669, -0.06853306293487549, -0.0353054441511631, 0.06413088738918304, 0.018806092441082, -0.01979217864573002, -0.04550088196992874, -0.01759989559650421, -0.008601849898695946, -0.0026192942168563604, 0.017520656809210777, -0.035058923065662384, 0.016252830624580383, 0.03444261848926544, 0.015944678336381912, 0.034248922020196915, 0.007069893181324005, 0.010080981068313122, 0.006695708259940147, 0.010785329155623913, -0.01583022065460682, 0.03750653192400932, 0.02047891728579998, 0.027962615713477135, 0.0012689268914982677, -0.0117978285998106, -0.03616826981306076, 0.015266742557287216, 0.031783703714609146, -0.049233924597501755, -0.02213413640856743, 0.06229957938194275, 0.04324696585536003, -0.04698001220822334, 0.022415874525904655, 0.014659242704510689, -0.04011261835694313, -0.03481239825487137, -0.01824261248111725, 0.016006307676434517, 0.006154240574687719, -0.015372395515441895, -0.015284352004528046, -0.02592000551521778, -0.02685326710343361, 0.06656088680028915, 0.05124131590127945, -0.03440739959478378, -0.032805006951093674, -0.006585653871297836, -0.022222179919481277, -0.027275877073407173, 0.008174839429557323, -0.03715435788035393, -0.015786198899149895, -0.02276804856956005, -0.01781119965016842, 0.01218522060662508, -0.0003210836439393461, 0.028860658407211304, 0.0221165269613266, 0.011436850763857365, -0.0379643589258194, -0.06923741102218628, -0.033474139869213104, -0.03993653133511543, -0.006193860433995724, 0.014720872975885868, 0.03405522555112839, -0.0030132888350635767, -0.061700884252786636, 0.06127827614545822, 0.08945219963788986, -0.05092436075210571, -0.0043955715373158455, 0.04905783757567406, -0.02440565824508667, 0.09064958989620209, 0.0012667258270084858, 0.0068409801460802555, -0.03294587880373001, 0.0051065231673419476, -0.039901312440633774, 0.0353054441511631, -0.011304785497486591, -0.014844134449958801, 0.03782348707318306, 0.026236962527036667, 0.02053174376487732, 0.06152479723095894, -0.016631416976451874, -0.0027557616122066975, 0.034372180700302124, -0.07543566823005676, -0.023419570177793503, -0.00949989352375269, 0.019087830558419228, 0.0055071208626031876, 0.04807174950838089, 0.005929729901254177, -0.09198784828186035, 0.019175874069333076, -0.002962663769721985, -0.01765272207558155, 0.014668047428131104, -0.031906966120004654, -0.023173049092292786, -0.045219141989946365, -0.019123047590255737, 0.0010961415246129036, -0.044585227966308594, -0.05645349249243736, 0.01761750504374504, 0.017679134383797646, -0.07381567358970642, -0.040605660527944565, -0.018541961908340454, 0.024951528757810593, -0.057052187621593475, 0.06124305725097656, -0.06589175760746002, 0.00989608932286501, -0.011674568057060242, -0.02611370198428631, 0.005154946818947792, 0.03877435624599457, 0.025655876845121384, -0.0017575683305040002, 0.004829186014831066, 0.02215174399316311, -0.06934306025505066, 0.02130652777850628, -0.013180111534893513, 0.022503918036818504, -0.04958609864115715, 0.005982555914670229, 0.013497068546712399, -0.018418699502944946, 0.09318523854017258, -0.0033522562589496374, -0.011929893866181374, -0.0519808828830719, -0.06444784253835678, 0.004776360001415014, 0.035886529833078384, -0.016508156433701515, 0.030040442943572998, -0.015610112808644772, -0.017881635576486588, -0.028543703258037567, 0.005115327425301075, -0.01182424183934927, 0.02058457024395466, -0.019246309995651245, -0.02204609289765358, 0.0315195731818676, 0.05638305842876434, 0.01696598157286644, -0.05719305947422981, 0.007752230390906334, -0.04099305346608162, -0.028596529737114906, -0.008659077808260918, -0.06131349503993988, 0.010125002823770046, -0.006365545094013214, 0.06289827823638916, 0.027716094627976418, -0.02040848322212696, 0.0039663598872721195, 0.020091526210308075, 0.08240871876478195, -0.035886529833078384, 0.007338425610214472, -0.056277405470609665, -0.10973741859197617, -0.016437722370028496, -0.006435980089008808, 0.0017872831085696816, -0.03532305359840393, 0.039901312440633774, -0.006026577670127153, 0.022486310452222824, -0.019862612709403038, 0.04032392427325249, -0.024757832288742065, 0.019369570538401604, 0.09346698224544525, -0.009596741758286953, 0.06360262632369995, -0.029441745951771736, 0.04328218474984169, -0.005542338360100985, -0.04933957755565643, 0.02984674647450447, 0.053178273141384125, 0.016957178711891174, -0.02290891855955124, 0.03606261685490608, 0.028631746768951416, -0.04409218579530716, -0.008372936397790909, -0.02135935239493847, -0.0016067938413470984, -0.07219567149877548, -0.007822665385901928, -0.041979141533374786, 0.030357398092746735, -0.06064436212182045, -0.020214786753058434, 0.04342305287718773, 0.0008974934462457895, 0.02114804834127426, -0.0698361024260521, 0.002258315682411194, -0.05342479422688484, 0.06437740474939346, 0.030234137549996376, 0.0078798932954669, -0.0030066855251789093, 0.01104945968836546, 0.04881131649017334, -0.015249134041368961, 0.027240658178925514, 0.019475221633911133, -0.019440004602074623, -0.054763056337833405, 0.05458696931600571, -0.025356527417898178, -0.029670659452676773, -0.00949989352375269, -0.0008402651292271912, 0.003915734589099884, -0.02368370071053505, -0.0008941917913034558, 0.006761740893125534, 0.045148707926273346, -0.04747305437922478, -0.023930223658680916, -0.040500011295080185, 0.08719827979803085, -0.06585653871297836, -0.0009387638419866562, -0.03845740109682083, -0.013699568808078766, -0.014773699454963207, -0.07684436440467834, 0.03224153071641922, 0.0767034962773323, -0.053988274186849594, 0.025338919833302498, -0.01763511262834072, -0.012863155454397202, -0.01579500362277031, 0.045360010117292404, 0.016789894551038742, -0.05113566666841507, -0.014219025149941444, -0.026166528463363647, -0.014403916895389557, 0.06715957820415497, -0.030498268082737923, 0.04194392263889313, 0.00890559982508421, -0.03845740109682083, 0.01739739626646042, -0.020795874297618866, 0.018541961908340454, -0.017714351415634155, -0.01417500339448452, -0.019369570538401604, 0.021711526438593864, -0.014747286215424538, -0.10734263807535172, 0.0010339608415961266, -0.07430871576070786, -0.037436097860336304, -0.011436850763857365, -0.022556744515895844, -0.029318485409021378, 0.05444610118865967, 0.04824783653020859, 0.028878267854452133, -0.01457119919359684, -0.0025092398282140493, -0.01136641576886177, 0.006000164430588484, -0.023472396656870842, -0.0028438051231205463, -0.016596199944615364, 0.03877435624599457, -0.026307398453354836, 0.0063347299583256245, -0.05909479781985283, 0.010670872405171394, -0.017591090872883797, 0.005441088229417801, -0.05169914290308952, 0.05029044672846794, 0.08931132405996323, -0.0004311380034778267, -0.02356044016778469, 0.015372395515441895, 0.005247392691671848, -0.01296000275760889, -0.06279262155294418, 0.01882370002567768, 0.05331914499402046, -0.02366609312593937, -0.012334894388914108, 0.020848700776696205, 0.02602565847337246, -0.03916174918413162, 0.058601751923561096, 0.007703806273639202, 0.04035913944244385, 0.015865439549088478, -0.05726349353790283, 0.041274793446063995, -0.028719790279865265, -0.03965479135513306, -0.013690764084458351, 0.04271870478987694, 0.08726871758699417, -0.012510981410741806, 0.01803130842745304, -0.027804138138890266, -0.04331740364432335, 0.06825131922960281, -0.030375007539987564, -0.01570696011185646, 0.0646943673491478, 0.0228560920804739, 0.00983445905148983, 0.021641092374920845, 0.030551094561815262, -0.0351293571293354, -0.01973935216665268, 0.06529305875301361, -0.03785870596766472, -0.015530873090028763, -0.0011324594961479306, 0.025585440918803215, -0.01603272184729576, -0.05881305783987045, -0.0425778366625309, 0.018806092441082, 0.04546566307544708, 0.007945925928652287, 0.00019617192447185516, 0.021623482927680016, 0.017731960862874985 ]
39,985
s3path.old_versions
joinpath
null
def joinpath(self, *args): if not args: return self new_path = super().joinpath(*args) if isinstance(args[-1], PureVersionedS3Path): new_path.version_id = args[-1].version_id else: new_path = S3Path(new_path) return new_path
(self, *args)
[ -0.0439530573785305, -0.03337043151259422, -0.06674086302518845, 0.067425936460495, -0.01990327052772045, -0.060430947691202164, 0.017757900059223175, 0.0942520871758461, 0.05797909200191498, 0.02213878370821476, 0.044205453246831894, -0.025293739512562752, 0.010222060605883598, 0.02752925269305706, -0.034398045390844345, 0.03501100838184357, 0.03126111626625061, 0.007427670061588287, 0.026555722579360008, 0.05231820046901703, 0.019975384697318077, -0.01005980558693409, 0.042330507189035416, 0.01803733967244625, 0.022373151034116745, 0.030612096190452576, 0.03214450553059578, 0.02147173509001732, 0.026627836748957634, -0.06237800419330597, 0.015080694109201431, 0.005913290660828352, 0.03252309933304787, 0.07499783486127853, 0.05242636799812317, 0.013602371327579021, -0.01830776408314705, 0.028701093047857285, 0.011754468083381653, 0.009762338362634182, 0.019560731947422028, 0.017253106459975243, 0.016712257638573647, -0.04723421111702919, 0.048964932560920715, 0.05397680401802063, -0.022697661072015762, 0.025474023073911667, 0.0010597275104373693, 0.017613673582673073, 0.0205883476883173, 0.023761332035064697, 0.017226064577698708, -0.025636278092861176, -0.0710316002368927, 0.027565309777855873, 0.04997451603412628, 0.027907846495509148, -0.07045469433069229, 0.029800821095705032, 0.044457849115133286, -0.04168148711323738, 0.04936155304312706, 0.04629673808813095, -0.011006292887032032, -0.02213878370821476, -0.02711460180580616, -0.0014591675717383623, -0.015017595142126083, 0.0826418399810791, -0.01350321527570486, -0.017703814432024956, -0.021399622783064842, -0.025167541578412056, -0.008856414817273617, 0.0349569208920002, -0.0007459219777956605, 0.027655450627207756, 0.05704162269830704, -0.0054670898243784904, -0.06681296974420547, -0.06544282287359238, -0.07442092895507812, -0.04838802292943001, -0.00722034415230155, 0.05646471306681633, -0.03210844844579697, -0.06241406127810478, -0.03670566901564598, 0.013719555921852589, -0.04543137922883034, 0.06248617544770241, -0.05851994454860687, -0.019993413239717484, 0.07658432424068451, -0.05412103235721588, 0.006057517137378454, -0.053075388073921204, 0.012115034274756908, -0.006620902568101883, -0.00327214109711349, -0.09050219506025314, 0.0016890286933630705, -0.025906702503561974, 0.04471024498343468, -0.06028671935200691, 0.0017273388803005219, -0.033821139484643936, -0.003450170625001192, 0.003569608321413398, -0.025131484493613243, 0.02628529816865921, -0.02105708420276642, -0.011366859078407288, -0.0486404225230217, -0.030359700322151184, 0.01882157102227211, -0.018497060984373093, 0.048135627061128616, -0.01399899460375309, 0.024410352110862732, 0.03850850090384483, -0.022409208118915558, 0.03800370916724205, 0.03775131329894066, -0.003132421523332596, -0.03650735691189766, 0.0005042297416366637, -0.011781510896980762, -0.07528628408908844, -0.014377589337527752, 0.05408497527241707, -0.07326711714267731, -0.06573127210140228, 0.022571463137865067, -0.02167004719376564, -0.01225926075130701, 0.020570319145917892, 0.004033837933093309, 0.10968433320522308, 0.023112311959266663, -0.03764314204454422, 0.03432593122124672, -0.014278433285653591, -0.019668903201818466, 0.045972228050231934, 0.030107302591204643, 0.008265987038612366, -0.019037911668419838, 0.030449841171503067, 0.005025395657867193, 0.02094891294836998, 0.06569521874189377, 0.028430668637156487, -0.010564598254859447, -0.09165600687265396, -0.04016710817813873, -0.029205886647105217, 0.039013296365737915, -0.016577044501900673, 0.0403473936021328, -0.06580338627099991, 0.04301558434963226, -0.013656456023454666, 0.02825038507580757, 0.0006839495617896318, 0.021021027117967606, 0.02213878370821476, -0.00757189653813839, 0.0038197513204067945, 0.05848388746380806, 0.0022828367073088884, 0.021039055660367012, 0.002958898898214102, -0.04687364399433136, 0.013926881365478039, -0.015928024426102638, 0.006165686994791031, 0.01763170212507248, -0.05257059633731842, 0.03340648487210274, -0.0286109521985054, 0.06349576264619827, 0.03259521350264549, 0.0480995699763298, 0.05787092447280884, -0.019398478791117668, 0.03266732394695282, 0.027294883504509926, 0.009843465872108936, -0.00928458757698536, -0.0061386446468532085, 0.016504932194948196, 0.03306394815444946, 0.0163787342607975, -0.03915752097964287, 0.026375439018011093, -0.03084646351635456, -0.03270338103175163, 0.10881897062063217, -0.016910569742321968, -0.0353715755045414, -0.0017115641385316849, -0.017199022695422173, 0.04514292627573013, -0.02156187780201435, 0.04827985540032387, 0.01015896163880825, -0.011087420396506786, 0.0502990260720253, 0.007779222447425127, 0.011231646873056889, -0.015017595142126083, -0.031603652983903885, -0.0186593160033226, -0.025474023073911667, -0.0453232079744339, 0.013548286631703377, 0.02722277119755745, 0.045178983360528946, 0.03840033337473869, -0.0073104859329760075, 0.01898382604122162, 0.04391700029373169, -0.034812696278095245, -0.03800370916724205, 0.03430790454149246, -0.007094145752489567, -0.008261480368673801, -0.022679632529616356, 0.006512732245028019, -0.017857056111097336, 0.017487475648522377, -0.0045318701304495335, -0.018497060984373093, 0.02285991609096527, 0.01296236552298069, 0.036164820194244385, -0.02343682199716568, 0.007139216642826796, 0.010717839002609253, -0.01597309671342373, 0.01912805251777172, -0.0014287447556853294, 0.008455284871160984, -0.02147173509001732, -0.012133062817156315, -0.014152235351502895, 0.03342451527714729, -0.004572433885186911, 0.005953854415565729, 0.10232877731323242, -0.024662747979164124, 0.046477023512125015, 0.012169119901955128, -0.03131520003080368, -0.019200166687369347, -0.052642710506916046, -0.02779967710375786, -0.024482466280460358, -0.029151801019906998, -0.02567233517765999, 0.01464801374822855, -0.05069565027952194, -0.05686133727431297, -0.015170835889875889, -0.02985490672290325, -0.027403054758906364, -0.030449841171503067, 0.05999826639890671, -0.04258290305733681, -0.021633990108966827, -0.039950769394636154, 0.031549569219350815, 0.020696517080068588, 0.02302217110991478, -0.06731776893138885, -0.009500927291810513, -0.042546845972537994, 0.015098722651600838, 0.012881238013505936, 0.01301645115017891, 0.0023076257202774286, -0.011240661144256592, 0.002535233274102211, 0.009600083343684673, 0.025996845215559006, -0.02291400171816349, -0.003594397334381938, 0.005611316300928593, 0.017307192087173462, 0.06912060081958771, -0.03775131329894066, -0.0004422573547344655, -0.0009340926189906895, 0.00832457933574915, 0.0016270563937723637, 0.004637786652892828, 0.07276231795549393, -0.018316779285669327, -0.029746737331151962, -0.015197877772152424, -0.0024000208359211683, 0.006774143315851688, 0.019001854583621025, -0.04132091999053955, 0.038652729243040085, 0.011285731568932533, 0.03064815327525139, 0.03135125711560249, -0.04038344696164131, 0.007936970330774784, -0.08776188641786575, 0.012709969654679298, 0.00565188005566597, 0.05184946209192276, 0.0003862005250994116, -0.0093296580016613, -0.03070223703980446, 0.011330801993608475, -0.08004576712846756, 0.022697661072015762, -0.04485447332262993, 0.036525387316942215, 0.03396536409854889, -0.017866069450974464, -0.0029363634530454874, 0.03683186694979668, -0.021129196509718895, 0.0478111170232296, 0.005160607863217592, 0.040058936923742294, 0.037823427468538284, 0.022895973175764084, -0.045178983360528946, 0.006882313173264265, 0.02203061245381832, -0.021183282136917114, 0.04467419162392616, 0.03811188042163849, 0.06731776893138885, -0.03915752097964287, -0.010240089148283005, 0.006454140413552523, -0.013404060155153275, 0.013773640617728233, 0.03847244754433632, 0.010330229997634888, 0.01912805251777172, -0.037102293223142624, -0.04654913395643234, -0.014116178266704082, -0.0172080360352993, -0.0003732426557689905, 0.028232356533408165, 0.021742159500718117, -0.03739074617624283, 0.0031504498329013586, 0.01177249662578106, -0.007333021145313978, 0.021291451528668404, -0.039842598140239716, 0.0015966335777193308, -0.0020507220178842545, 0.02960251085460186, 0.049073100090026855, -0.015279005281627178, 0.008540919050574303, -0.05531090125441551, -0.01954270526766777, -0.03991471230983734, -0.04719815403223038, 0.05790698155760765, -0.050371140241622925, 0.0411766953766346, 0.028809264302253723, -0.024410352110862732, 0.003157210536301136, -0.018497060984373093, -0.03627299144864082, -0.008175845257937908, -0.012673912569880486, 0.021453706547617912, 0.04355643317103386, -0.009054725989699364, 0.06061122938990593, 0.08163225650787354, -0.06421689689159393, 0.07254598289728165, 0.03800370916724205, 0.0064135766588151455, 0.013313918374478817, 0.07287049293518066, -0.034614384174346924, -0.0232204832136631, -0.021652018651366234, 0.036218903958797455, -0.012709969654679298, 0.014521815814077854, -0.023202454671263695, 0.00021380466932896525, -0.027096573263406754, 0.01470209937542677, 0.05159706622362137, -0.018055368214845657, -0.04957789555191994, 0.03677778318524361, 0.057366129010915756, -0.02194047160446644, -0.050839878618717194, -0.04676547646522522, -0.04579194635152817, -0.06814707070589066, 0.027150657027959824, 0.058303602039813995, 0.009726281277835369, 0.029800821095705032, -0.030954634770751, -0.0026884740218520164, 0.052642710506916046, -0.041609372943639755, 0.05040719732642174, -0.02026383765041828, 0.012863210402429104, 0.01981312967836857, -0.04853225126862526, -0.03904935345053673, 0.0062558287754654884, 0.037354689091444016, 0.013178705237805843, 0.00949191302061081, -0.024284154176712036, 0.0020372008439153433, 0.025798533111810684, 0.007936970330774784, 0.051561009138822556, 0.051452841609716415, -0.01653197407722473, 0.01498153805732727, 0.028142215684056282, -0.009104304015636444, -0.029584482312202454, -0.06782256066799164, 0.0004560602828860283, 0.00904571171849966, -0.05325567349791527, -0.05184946209192276, -0.009401771239936352, 0.013647441752254963, 0.0030219980981200933, -0.010690797120332718, 0.00993360672146082, -0.008653596043586731, -0.012205176055431366, -0.06609184294939041, -0.054878223687410355, 0.0040518660098314285, -0.027204742655158043, 0.027979960665106773, -0.021633990108966827, -0.019326364621520042, 0.019416505470871925, 0.06082756817340851, 0.0010028255637735128, -0.004741449374705553, -0.02769150771200657, 0.011132490821182728, -0.03477663919329643, -0.05642865598201752, -0.061909269541502, 0.04921732842922211, -0.04827985540032387, -0.05354412645101547, 0.022535406053066254, 0.04972212016582489, 0.030305614694952965, 0.014828297309577465, 0.003197774291038513, -0.04921732842922211, -0.046693362295627594, -0.07470937818288803, -0.03894118219614029, -0.010510513558983803, 0.02716868557035923, 0.021345537155866623, 0.012673912569880486, -0.0009955015266314149, 0.0536162406206131, 0.04110458120703697, -0.0017442404059693217, 0.07579107582569122, 0.044566020369529724, -0.07997365295886993, 0.05509456247091293, -0.010204032063484192, 0.031441397964954376, -0.01965087465941906, -0.006386534310877323, -0.055815692991018295, -0.005733007565140724, 0.03447015956044197, -0.05325567349791527, -0.0025014302227646112, 0.041501205414533615, 0.0023121326230466366, 0.06252223253250122, -0.09086275845766068, -0.005674415268003941, -0.02089482918381691, -0.02581656165421009, -0.018497060984373093, 0.0028056581504642963, 0.005615823436528444, 0.04182571545243263, 0.01668521575629711, 0.045755889266729355, -0.036471303552389145, 0.03506509214639664, 0.030666181817650795, -0.01278208289295435, -0.01207897812128067, 0.03335240110754967, 0.012737011536955833, -0.058772340416908264, -0.04903704300522804, -0.014404632151126862, 0.00030760830850340426, 0.022463293746113777, 0.039842598140239716, 0.044349681586027145, -0.06753410398960114, 0.021273422986268997, -0.04521504044532776, 0.04485447332262993, 0.001739733386784792, 0.12374642491340637, -0.08112746477127075, 0.03547974303364754, 0.037354689091444016, -0.048604365438222885, -0.01376462634652853, 0.0028214328922331333, -0.01564858667552471, -0.043412208557128906, -0.04914521425962448, 0.01934439316391945, -0.003738624043762684, 0.026429524645209312, 0.05123649910092354, -0.029332084581255913, -0.028124187141656876, 0.018587203696370125, 0.05660894140601158, 0.07110371440649033, 0.029890963807702065, -0.011529114097356796, -0.03728257492184639, -0.07723334431648254, -0.038796957582235336, 0.00036084820749238133, 0.0019188898149877787, 0.041717544198036194, 0.03585834056138992, 0.023472879081964493, -0.002449598629027605, -0.006418083794414997, 0.021381594240665436, 0.01753254607319832, 0.03209041804075241, -0.004763985052704811, -0.04763083532452583, 0.01716296561062336, -0.09201657027006149, -0.03587636724114418, -0.012033906765282154, -0.03401944786310196, 0.008626553229987621, -0.020191723480820656, 0.003610172076150775, -0.015504359267652035, 0.0004718350828625262, 0.01410716399550438, 0.055238787084817886, -0.010339244268834591, -0.013025464490056038, -0.010862065479159355, 0.027781648561358452, 0.06050305813550949, -0.0015402950812131166, 0.002261427929624915, -0.0489288754761219, -0.02706051617860794, 0.008851907216012478, -0.0005746528622694314, 0.030810408294200897, -0.04853225126862526, 0.0005690190009772778, -0.03832821920514107, 0.006373012904077768, -0.04795534536242485, 0.02442838065326214, -0.02001144178211689, -0.012502643279731274, 0.06630817800760269, -0.040058936923742294, -0.03340648487210274, -0.02523965574800968, 0.01767677254974842, -0.05574358254671097, -0.0006811326602473855, 0.026717977598309517, 0.08754554390907288, 0.022012585774064064, -0.004011302255094051, -0.018587203696370125, 0.007747672963887453, -0.04550349339842796, 0.023581048473715782, -0.015675628557801247, 0.01623450592160225, -0.07092343270778656, -0.036885954439640045, -0.02064243145287037, 0.03764314204454422, -0.10939587652683258, 0.010357272811233997, 0.026573751121759415, 0.009888536296784878, 0.03374902531504631, -0.03677778318524361, 0.0154773173853755, -0.07193301618099213, 0.028340527787804604, -0.01389983855187893, 0.022769775241613388, -0.036994121968746185, -0.00722034415230155, -0.018082410097122192, 0.005922304932028055, 0.02078665979206562, -0.008238944225013256, -0.04723421111702919, -0.09677604585886002, -0.0015763517003506422, -0.037102293223142624, -0.012448558583855629, 0.0001878889452200383, -0.05376046523451805, -0.02945828251540661, -0.05235425755381584, 0.017505504190921783, -0.011051363311707973, -0.005953854415565729, -0.00733752828091383, 0.012430530041456223, 0.04571983218193054, 0.04204205423593521, -0.03070223703980446, 0.0026321355253458023, 0.025167541578412056, 0.02150779217481613, -0.035227347165346146, 0.015071679838001728, 0.03355071321129799, -0.007260907907038927, -0.02244526520371437, 0.0514167845249176, -0.03194619342684746, 0.006954426411539316, -0.0021217085886746645, -0.0398065410554409, -0.043520376086235046, -0.05574358254671097, 0.016775356605648994, -0.03048589825630188, -0.09518955647945404, 0.04301558434963226, -0.00858148280531168, 0.016405776143074036, -0.012773068621754646, -0.038796957582235336, -0.06140447407960892, -0.031910136342048645, 0.024175984784960747, 0.038183990865945816, 0.019777072593569756, 0.039229635149240494, 0.04258290305733681, 0.030413784086704254, -0.053435955196619034, 0.040780071169137955, -0.06169292703270912, -0.014476745389401913, 0.011429958045482635, -0.012935323640704155, -0.004975817631930113, -0.0028191793244332075, -0.0261230431497097, -0.00956402625888586, -0.013809696771204472, 0.04355643317103386, 0.058664169162511826, 0.0006366252200677991, -0.018641287460923195, 0.013989980332553387, -0.0324690118432045, 0.03526340425014496, -0.020552290603518486, -0.009216981008648872, 0.006075545679777861, -0.026429524645209312, 0.011321788653731346, 0.053688351064920425, -0.03760708495974541, 0.0685436949133873, 0.023040199652314186, -0.0035155233927071095, -0.0414651483297348, -0.03252309933304787, 0.0067425938323140144, -0.03573213890194893, -0.05646471306681633, 0.04337615147233009, -0.01887565664947033, 0.03181999549269676, -0.03219858929514885, 0.007927956059575081, 0.03940992057323456, -0.01329588983207941, 0.036218903958797455, -0.05091198906302452, 0.025798533111810684, 0.03410959243774414, -0.009338672272861004, 0.054409485310316086, -0.001885086763650179, 0.01353025808930397, 0.010871079750359058, 0.0016124083194881678, 0.011060377582907677, -0.040058936923742294, 0.001636070548556745, -0.010104876011610031, -0.008099225349724293, 0.029746737331151962, -0.019975384697318077, 0.013854768127202988, 0.03131520003080368, -0.04921732842922211, 0.007684573531150818, 0.05148889496922493, 0.03778737038373947, 0.024752890691161156, -0.03692201152443886, 0.02960251085460186, -0.07506994903087616, -0.000502257898915559, 0.02581656165421009, 0.03335240110754967, -0.04402517154812813, -0.02064243145287037, -0.005494132172316313, 0.00023352315474767238, 0.041140638291835785, 0.08321874588727951, 0.062233779579401016, -0.0026479102671146393, 0.018749458715319633 ]
39,991
s3path.old_versions
S3Path
Path subclass for AWS S3 service. S3Path provide a Python convenient File-System/Path like interface for AWS S3 Service using boto3 S3 resource as a driver. If boto3 isn't installed in your environment NotImplementedError will be raised.
class S3Path(_PathNotSupportedMixin, Path, PureS3Path): """ Path subclass for AWS S3 service. S3Path provide a Python convenient File-System/Path like interface for AWS S3 Service using boto3 S3 resource as a driver. If boto3 isn't installed in your environment NotImplementedError will be raised. """ _accessor = _s3_accessor __slots__ = () def _init(self, template=None): super()._init(template) if template is None: self._accessor = _s3_accessor def stat(self, *, follow_symlinks: bool = True) -> StatResult: """ Returns information about this path (similarly to boto3's ObjectSummary). For compatibility with pathlib, the returned object some similar attributes like os.stat_result. The result is looked up at each call to this method """ if not follow_symlinks: raise NotImplementedError( f'Setting follow_symlinks to {follow_symlinks} is unsupported on S3 service.') self._absolute_path_validation() if not self.key: return None return self._accessor.stat(self, follow_symlinks=follow_symlinks) def exists(self) -> bool: """ Whether the path points to an existing Bucket, key or key prefix. """ self._absolute_path_validation() if not self.bucket: return True return self._accessor.exists(self) def is_dir(self) -> bool: """ Returns True if the path points to a Bucket or a key prefix, False if it points to a full key path. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated. """ self._absolute_path_validation() if self.bucket and not self.key: return True return self._accessor.is_dir(self) def is_file(self) -> bool: """ Returns True if the path points to a Bucket key, False if it points to Bucket or a key prefix. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated. """ self._absolute_path_validation() if not self.bucket or not self.key: return False try: return bool(self.stat()) except ClientError: return False def iterdir(self) -> Generator[S3Path, None, None]: """ When the path points to a Bucket or a key prefix, yield path objects of the directory contents """ self._absolute_path_validation() for name in self._accessor.listdir(self): yield self._make_child_relpath(name) def glob(self, pattern: str) -> Generator[S3Path, None, None]: """ Glob the given relative pattern in the Bucket / key prefix represented by this path, yielding all matching files (of any kind) """ self._absolute_path_validation() general_options = self._accessor.configuration_map.get_general_options(self) glob_new_algorithm = general_options['glob_new_algorithm'] if not glob_new_algorithm: yield from super().glob(pattern) return yield from self._glob(pattern) def _glob(self, pattern): """ Glob with new Algorithm that better fit S3 API """ sys.audit("pathlib.Path.glob", self, pattern) if not pattern: raise ValueError(f'Unacceptable pattern: {pattern}') drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") for part in pattern_parts: if part != '**' and '**' in part: raise ValueError("Invalid pattern: '**' can only be an entire path component") selector = _Selector(self, pattern=pattern) yield from selector.select() def _scandir(self): """ Override _scandir so _Selector will rely on an S3 compliant implementation """ return self._accessor.scandir(self) def rglob(self, pattern: str) -> Generator[S3Path, None, None]: """ This is like calling S3Path.glob with "**/" added in front of the given relative pattern """ self._absolute_path_validation() general_options = self._accessor.configuration_map.get_general_options(self) glob_new_algorithm = general_options['glob_new_algorithm'] if not glob_new_algorithm: yield from super().rglob(pattern) return yield from self._rglob(pattern) def _rglob(self, pattern): """ RGlob with new Algorithm that better fit S3 API """ sys.audit("pathlib.Path.rglob", self, pattern) if not pattern: raise ValueError(f'Unacceptable pattern: {pattern}') drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") for part in pattern_parts: if part != '**' and '**' in part: raise ValueError("Invalid pattern: '**' can only be an entire path component") pattern = f'**{self._flavour.sep}{pattern}' selector = _Selector(self, pattern=pattern) yield from selector.select() def open( self, mode: Literal["r", "w", "rb", "wb"] = 'r', buffering: int = DEFAULT_BUFFER_SIZE, encoding: Optional[str] = None, errors: Optional[str] = None, newline: Optional[str] = None ) -> Union[TextIOWrapper, smart_open.s3.Reader, smart_open.s3.MultipartWriter]: """ Opens the Bucket key pointed to by the path, returns a Key file object that you can read/write with """ self._absolute_path_validation() if smart_open.__version__ < '4.0.0' and mode.startswith('b'): mode = ''.join(reversed(mode)) return self._accessor.open( self, mode=mode, buffering=buffering, encoding=encoding, errors=errors, newline=newline) def owner(self) -> str: """ Returns the name of the user owning the Bucket or key. Similarly to boto3's ObjectSummary owner attribute """ self._absolute_path_validation() if not self.is_file(): return KeyError('file not found') return self._accessor.owner(self) def rename(self, target: Union[str, S3Path]) -> S3Path: """ Renames this file or Bucket / key prefix / key to the given target. If target exists and is a file, it will be replaced silently if the user has permission. If path is a key prefix, it will replace all the keys with the same prefix to the new target prefix. Target can be either a string or another S3Path object. """ self._absolute_path_validation() if not isinstance(target, type(self)): target = type(self)(target) target._absolute_path_validation() self._accessor.rename(self, target) return self.__class__(target) def replace(self, target: Union[str, S3Path]) -> S3Path: """ Renames this Bucket / key prefix / key to the given target. If target points to an existing Bucket / key prefix / key, it will be unconditionally replaced. """ return self.rename(target) def unlink(self, missing_ok: bool = False): """ Remove this key from its bucket. """ self._absolute_path_validation() # S3 doesn't care if you remove full prefixes or buckets with its delete API # so unless we manually check, this call will be dropped through without any # validation and could result in data loss try: if self.is_dir(): raise IsADirectoryError(str(self)) if not self.is_file(): raise FileNotFoundError(str(self)) except (IsADirectoryError, FileNotFoundError): if missing_ok: return
(*args, **kwargs)
[ 0.0110096987336874, -0.05085234344005585, -0.09505732357501984, 0.019890163093805313, 0.011684820987284184, -0.03352764621376991, 0.001138620893470943, 0.05459148436784744, 0.04449579864740372, 0.0003166261885780841, 0.027503473684191704, 0.036872103810310364, 0.06339924782514572, 0.038326214998960495, -0.04395570233464241, 0.044163431972265244, 0.0593692809343338, 0.007031665649265051, 0.022850317880511284, 0.02906144969165325, -0.02432520128786564, 0.019516248255968094, 0.0382431223988533, -0.01427106186747551, 0.009524427354335785, 0.022725678980350494, 0.009192059747874737, 0.03793152794241905, 0.047196291387081146, -0.040403515100479126, -0.02420056425035, 0.006751229986548424, 0.009534814395010471, 0.05779052898287773, 0.020336782559752464, -0.049398232251405716, 0.01571478694677353, 0.009275151416659355, 0.0002948794572148472, 0.00010995092452503741, -0.02503148466348648, 0.058372173458337784, 0.014374926686286926, -0.06842631101608276, 0.06693065911531448, 0.07029588520526886, -0.014769614674150944, 0.059327732771635056, -0.017511652782559395, -0.003227607347071171, 0.04948132485151291, 0.0624852329492569, -0.01065655704587698, -0.03570881485939026, 0.01506043691188097, 0.013699803501367569, 0.02553003653883934, 0.04312478005886078, -0.014374926686286926, 0.0033366656862199306, 0.04387260973453522, 0.02012905292212963, 0.034794799983501434, -0.016961166635155678, -0.04106825217604637, -0.05966010317206383, -0.023847421631217003, -0.07403502613306046, -0.04050737991929054, 0.033423781394958496, -0.032842136919498444, -0.01969281956553459, 0.018332187086343765, -0.01125897467136383, -0.02521844208240509, 0.021728575229644775, -0.010885060764849186, -0.007187463343143463, 0.04005037620663643, -0.012900043278932571, -0.04283395782113075, -0.05608714371919632, -0.0019487685058265924, -0.07577995955944061, 0.05022915080189705, 0.033548422157764435, 0.0441218838095665, -0.041795309633016586, 0.004920607898384333, 0.06269296258687973, -0.06398089230060577, 0.056876517832279205, -0.014748841524124146, -0.0031652883626520634, 0.008101476356387138, -0.021520843729376793, -0.021541617810726166, -0.08957324177026749, -0.004336366895586252, -0.013533620163798332, -0.021115770563483238, 0.002851096447557211, 0.011196655221283436, -0.005899536423385143, 0.02382664941251278, -0.005034859757870436, -0.033984653651714325, -0.015050049871206284, 0.02559235505759716, -0.02156239002943039, -0.050270698964595795, 0.01175752654671669, 0.024221336469054222, 0.01597444899380207, 0.0008172883535735309, -0.046947017312049866, 0.016805369406938553, -0.016680732369422913, -0.01565246656537056, -0.06751230359077454, 0.034545525908470154, 0.0023213846143335104, -0.01490463875234127, 0.05708424746990204, 0.07337029278278351, -0.024096697568893433, 0.03163730353116989, 0.024242108687758446, 0.013606325723230839, 0.005930696148425341, -0.020700309425592422, 0.04154603183269501, -0.04200303927063942, -0.012723471969366074, 0.018332187086343765, 0.019848616793751717, -0.004281837958842516, 0.010620204731822014, -0.057001154869794846, 0.08425535261631012, 0.08155485987663269, -0.022476403042674065, 0.02187398634850979, -0.016504161059856415, -0.0009536112775094807, -0.01779208891093731, 0.01761551760137081, -0.04067356511950493, 0.002634278032928705, -0.020097892731428146, 0.01333627663552761, 0.00439868588000536, 0.07702634483575821, 0.06934032589197159, 0.019651273265480995, -0.040216557681560516, -0.03865858167409897, -0.007322487886995077, -0.029269179329276085, -0.0001773820840753615, -0.00015961141616571695, -0.027835840359330177, -0.008252080529928207, -0.014790386892855167, -0.014136036857962608, 0.013959466479718685, -0.022995728999376297, -0.003923503216356039, -0.02168702892959118, 0.02037832885980606, 0.03356919437646866, 0.039011724293231964, -0.02451215870678425, 0.013637484982609749, 0.029476908966898918, 0.06697220355272293, -0.01254690159112215, 0.03005855344235897, 0.006346156354993582, -0.086997389793396, 0.022933408617973328, -0.057125791907310486, 0.02627786435186863, 0.014208742417395115, 0.006450021639466286, 0.07307946681976318, -0.01153940986841917, 0.01341936830431223, 0.050146061927080154, 0.04212767630815506, -0.06418862193822861, -0.000029759779863525182, 0.013772509060800076, 0.04503589868545532, 0.0422523133456707, -0.030390921980142593, 0.020388714969158173, -0.01968243159353733, -0.009202445857226849, 0.10004284232854843, -0.05779052898287773, 0.02798125147819519, 0.03043246828019619, -0.03560495004057884, 0.003692403668537736, 0.0011567972833290696, 0.0006546746008098125, 0.010630590841174126, -0.038513172417879105, 0.06256832182407379, -0.05974319204688072, 0.011497864499688148, -0.013035067357122898, -0.011061631143093109, 0.025239214301109314, -0.000017283799024880864, 0.00782623328268528, 0.03705906122922897, 0.007644469849765301, 0.0081793749704957, 0.07361956685781479, 0.015112369321286678, -0.037121377885341644, 0.020793788135051727, 0.030162418261170387, -0.01860223524272442, 0.04445425420999527, 0.01936045102775097, 0.008189761079847813, -0.02181166596710682, 0.025758540257811546, -0.025488490238785744, 0.06880022585391998, 0.03275904431939125, 0.027815068140625954, -0.057250432670116425, 0.04752866178750992, 0.006403282284736633, 0.01911117509007454, -0.03269672766327858, -0.05708424746990204, -0.042792413383722305, 0.0002059449761873111, 0.013388209044933319, -0.06385625153779984, -0.018373733386397362, 0.019391611218452454, 0.036747466772794724, 0.023722784593701363, -0.04032042250037193, 0.054549939930438995, 0.08915778249502182, -0.04056970030069351, -0.00983602274209261, 0.020606832578778267, -0.042543135583400726, -0.013045454397797585, -0.023868195712566376, -0.003266556654125452, 0.01402178592979908, -0.04727938398718834, -0.033548422157764435, 0.005395791027694941, -0.0009464705362915993, -0.0037806888576596975, 0.011352453380823135, 0.047071654349565506, -0.018955377861857414, -0.05949391797184944, 0.04923204705119133, 0.07872972637414932, 0.015216234140098095, -0.057624347507953644, 0.02906144969165325, -0.04050737991929054, 0.019069628790020943, -0.04603300243616104, -0.024242108687758446, -0.02609090879559517, -0.026776418089866638, -0.009612713009119034, 0.0036482608411461115, 0.00876621250063181, 0.007680822629481554, 0.05600405111908913, 0.012006803415715694, -0.01153940986841917, -0.006450021639466286, -0.0009263466927222908, 0.044620439410209656, -0.03151266649365425, -0.021977851167321205, -0.026257092133164406, -0.03849240019917488, 0.0345870703458786, -0.010391701012849808, -0.0881606787443161, -0.038014620542526245, 0.03400542587041855, -0.04470352828502655, -0.058205991983413696, 0.04993832856416702, 0.05396829545497894, 0.02835516631603241, -0.005232203286141157, -0.005821637809276581, 0.027524245902895927, -0.02652714215219021, -0.002340859267860651, 0.05720888450741768, 0.0007510743453167379, -0.013751736842095852, -0.022933408617973328, 0.005676226690411568, 0.035688042640686035, 0.01345052756369114, 0.012650766409933567, 0.041774533689022064, -0.022601041942834854, 0.02860444225370884, -0.05754125490784645, 0.04644846171140671, -0.04470352828502655, 0.0035262193996459246, 0.012443036772310734, -0.06377315521240234, -0.03358996659517288, 0.04968905448913574, -0.015694012865424156, 0.034981757402420044, -0.03703828901052475, 0.015808265656232834, -0.02559235505759716, 0.027067240327596664, -0.03992573544383049, 0.01552782952785492, -0.007966451346874237, -0.05351128801703453, 0.033174507319927216, 0.029331497848033905, 0.07183308899402618, 0.008937589824199677, -0.007644469849765301, 0.01761551760137081, -0.08359061926603317, -0.029331497848033905, 0.08421380817890167, -0.00864676758646965, 0.01062539778649807, -0.023618919774889946, 0.063648521900177, 0.004164989572018385, 0.03525180742144585, 0.025550808757543564, 0.021084610372781754, -0.051724810153245926, -0.009451721794903278, -0.019329290837049484, -0.00543733686208725, -0.01043844036757946, 0.03566726669669151, -0.039946507662534714, -0.013523233123123646, -0.019069628790020943, 0.04079820215702057, -0.005951468832790852, 0.019568180665373802, -0.019350064918398857, -0.03269672766327858, -0.044869713485240936, -0.02226867340505123, -0.042667776346206665, -0.02987159602344036, -0.06132194399833679, 0.04204458370804787, 0.011892551556229591, 0.041899174451828, -0.02577931247651577, -0.024699116125702858, 0.046573102474212646, 0.02879139967262745, 0.04374797269701958, 0.028064344078302383, 0.031159523874521255, 0.014291835017502308, 0.0036872103810310364, 0.06992197036743164, -0.009472494944930077, 0.024761434644460678, 0.0007419861503876746, 0.014333381317555904, -0.0000653619717922993, 0.06194513291120529, -0.0260285884141922, -0.0382431223988533, -0.04615763947367668, 0.0382431223988533, -0.0034690937027335167, -0.005206237081438303, -0.009446528740227222, 0.008812951855361462, -0.035002533346414566, -0.02187398634850979, 0.03930254653096199, 0.02005634643137455, -0.0229541826993227, 0.08446308225393295, 0.04570063576102257, -0.007379613816738129, 0.008402684703469276, -0.028562895953655243, -0.07964374125003815, -0.03240590542554855, 0.026485595852136612, 0.011518637649714947, 0.0039650495164096355, -0.03049478679895401, -0.023411188274621964, -0.005561974830925465, 0.057998258620500565, -0.02640250325202942, -0.04044506326317787, -0.01798943243920803, 0.0033548420760780573, 0.04491126164793968, -0.05305428430438042, -0.02407592535018921, -0.028396712616086006, 0.006782389711588621, 0.02465756982564926, 0.03874167427420616, 0.00808070320636034, -0.06406398117542267, -0.02490684576332569, 0.0014164600288495421, -0.0010503355879336596, -0.026817964389920235, 0.0075925374403595924, 0.009186866693198681, 0.009929501451551914, -0.025820858776569366, 0.009950274601578712, -0.029206860810518265, 0.020544512197375298, 0.02698414772748947, -0.004611609503626823, -0.0060605271719396114, 0.0624852329492569, 0.0680108517408371, 0.0065590799786150455, -0.045492906123399734, 0.006855095271021128, 0.0014255482237786055, -0.028645988553762436, -0.05949391797184944, -0.018207548186182976, 0.07756644487380981, -0.002140918979421258, -0.025239214301109314, -0.07445048540830612, 0.020606832578778267, 0.04449579864740372, 0.08479545265436172, -0.033673059195280075, -0.037952300161123276, 0.003212027484551072, 0.02891603857278824, 0.0052633630111813545, -0.03238513320684433, -0.06713838875293732, 0.028147436678409576, -0.04374797269701958, -0.07860509306192398, 0.026257092133164406, 0.01534087210893631, -0.019277358427643776, 0.0024836736265569925, 0.01597444899380207, -0.03955182060599327, -0.03992573544383049, -0.007997611537575722, -0.08732976019382477, 0.02131311409175396, -0.006242291070520878, 0.002822533482685685, -0.0441218838095665, 0.0364566445350647, 0.013938693329691887, 0.04408033937215805, -0.0526803694665432, 0.01885151118040085, 0.021136542782187462, -0.050021421164274216, 0.05243109166622162, -0.025924723595380783, 0.013949080370366573, -0.05251418426632881, 0.007016086019575596, -0.019827842712402344, -0.06136348843574524, 0.01068771630525589, -0.029975462704896927, -0.013679031282663345, 0.039260998368263245, 0.043540243059396744, 0.03936486318707466, -0.03381846845149994, -0.014364540576934814, 0.014977344311773777, -0.07627851516008377, -0.017148124054074287, 0.03724601864814758, -0.012474196031689644, 0.02879139967262745, -0.014572270214557648, -0.00933747086673975, -0.04050737991929054, 0.028874492272734642, 0.012432649731636047, -0.002973137889057398, 0.01125897467136383, -0.031138751655817032, 0.015361645258963108, -0.03753684088587761, -0.0441218838095665, -0.01690923422574997, 0.021219635382294655, -0.03331991657614708, 0.02773197554051876, 0.02432520128786564, -0.013627097941935062, -0.0065642730332911015, -0.020700309425592422, 0.017075419425964355, 0.005499655846506357, 0.08874232321977615, 0.020918427035212517, -0.0052841356955468655, -0.004032561555504799, 0.011217428371310234, 0.02993391640484333, 0.059327732771635056, -0.02760733850300312, -0.027461927384138107, -0.03660205379128456, 0.032675955444574356, 0.011207042261958122, -0.046490009874105453, 0.05068615823984146, -0.029082221910357475, 0.04408033937215805, -0.0019461719784885645, 0.04516053572297096, 0.03755761310458183, 0.07058671116828918, -0.04711319878697395, 0.015735559165477753, -0.09505732357501984, -0.03755761310458183, -0.0020149825140833855, -0.009342663921415806, 0.06826013326644897, -0.03840930759906769, -0.031969670206308365, 0.06269296258687973, 0.007540604565292597, 0.017771314829587936, 0.047570206224918365, 0.040465835481882095, -0.01527855359017849, -0.004518130794167519, 0.05887072533369064, 0.02798125147819519, -0.0035521856043487787, -0.025633901357650757, -0.0032847330439835787, -0.03867935389280319, -0.043664880096912384, 0.016618411988019943, -0.04860885813832283, 0.07087752968072891, -0.0198797769844532, 0.013689417392015457, -0.021583164110779762, -0.007026472594588995, -0.020201757550239563, -0.019318904727697372, 0.07012970000505447, -0.03759915754199028, 0.0040870909579098225, -0.02924840711057186, -0.023972060531377792, -0.018394505605101585, -0.04678083211183548, 0.017376627773046494, 0.014572270214557648, 0.04079820215702057, -0.05803980678319931, 0.019526634365320206, -0.007000506389886141, -0.012141827493906021, 0.035314127802848816, 0.0065590799786150455, 0.04877503961324692, -0.011269360780715942, 0.03325759992003441, 0.009768511168658733, 0.008511743508279324, 0.006029367912560701, 0.006652558222413063, -0.026360956951975822, 0.04050737991929054, 0.03080638311803341, -0.00949846114963293, -0.03695519641041756, 0.01936045102775097, -0.08591719716787338, 0.016930008307099342, -0.013253184035420418, -0.027835840359330177, -0.04129675403237343, -0.056377965956926346, -0.02897835709154606, 0.046240732073783875, -0.09896264970302582, -0.033236823976039886, 0.011425158940255642, 0.02137543261051178, -0.04345715045928955, -0.033361464738845825, 0.02156239002943039, -0.08533555269241333, 0.05550549924373627, -0.028832945972681046, 0.03290445730090141, 0.010454020462930202, -0.021894758567214012, 0.01830102689564228, -0.029456136748194695, 0.014915025793015957, -0.02206094190478325, -0.07756644487380981, -0.047944121062755585, 0.04943977668881416, -0.052098724991083145, -0.04669773951172829, 0.02024330385029316, -0.042273085564374924, 0.038513172417879105, -0.0183633454144001, 0.016878075897693634, 0.02791893295943737, -0.02534307911992073, -0.04200303927063942, -0.027690429240465164, 0.03506485000252724, 0.004949171096086502, -0.09455876797437668, 0.011601729318499565, -0.01534087210893631, 0.012391104362905025, -0.05853835865855217, -0.0272334236651659, 0.06269296258687973, 0.022310219705104828, -0.038637809455394745, 0.020773015916347504, -0.004227308556437492, 0.03406774625182152, 0.03747452050447464, 0.0336938314139843, 0.01772976852953434, -0.027503473684191704, -0.02534307911992073, -0.05363592877984047, -0.03331991657614708, 0.07116835564374924, -0.0229541826993227, -0.003064019838348031, -0.006346156354993582, -0.02748269960284233, 0.026070134714245796, -0.019194265827536583, 0.06535191088914871, 0.02640250325202942, 0.002300611464306712, 0.021230021491646767, -0.03527257964015007, 0.012619607150554657, -0.07361956685781479, 0.038263894617557526, -0.0065642730332911015, 0.009114161133766174, 0.012858496978878975, -0.10103994607925415, -0.010454020462930202, 0.0398426428437233, 0.009612713009119034, 0.024886073544621468, -0.06767848879098892, 0.044745076447725296, -0.005395791027694941, 0.021458525210618973, -0.048941224813461304, 0.0038767640944570303, -0.0056502604857087135, -0.06256832182407379, -0.010968152433633804, 0.013512847013771534, 0.013159705325961113, -0.004705088213086128, 0.016587253659963608, 0.0049699442461133, -0.06830167770385742, 0.03427547588944435, 0.012744245119392872, 0.03629045933485031, -0.06622437387704849, 0.01855030283331871, -0.015517442487180233, -0.004162393044680357, -0.051849447190761566, -0.016171792522072792, 0.03502330556511879, -0.011996416375041008, -0.004419459030032158, -0.0069693466648459435, 0.005411370657384396, -0.018955377861857414, 0.04740402102470398, -0.00575412530452013, 0.05263882130384445, -0.0185399167239666, -0.010895446874201298, 0.05317892134189606, -0.04773639142513275, 0.029539229348301888, -0.020077120512723923, -0.0021058644633740187, 0.05450839176774025, -0.02187398634850979, -0.014644975773990154, -0.04557599499821663, -0.02704646624624729, 0.019080014899373055, -0.025259986519813538, 0.03199044615030289, 0.052597276866436005, -0.01797904446721077, 0.02131311409175396, 0.024034379050135612, -0.03915713354945183, -0.005442530382424593, 0.008361139334738255, -0.0027654077857732773, -0.03471171110868454, -0.060200199484825134, 0.0272334236651659, 0.022372538223862648, -0.00801319070160389, -0.05346974357962608, -0.015756333246827126, 0.031138751655817032, 0.03390156105160713, 0.08064084500074387, 0.046947017312049866, -0.029580773785710335, -0.0005125092575326562 ]
40,009
s3path.old_versions
_glob
Glob with new Algorithm that better fit S3 API
def _glob(self, pattern): """ Glob with new Algorithm that better fit S3 API """ sys.audit("pathlib.Path.glob", self, pattern) if not pattern: raise ValueError(f'Unacceptable pattern: {pattern}') drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") for part in pattern_parts: if part != '**' and '**' in part: raise ValueError("Invalid pattern: '**' can only be an entire path component") selector = _Selector(self, pattern=pattern) yield from selector.select()
(self, pattern)
[ 0.06742273271083832, -0.04598258063197136, -0.031436365097761154, 0.00961704645305872, 0.00661387387663126, -0.016450664028525352, 0.03702045977115631, -0.009203409776091576, 0.003309091320261359, 0.021009283140301704, 0.031315721571445465, 0.05511705204844475, -0.0025249056052416563, 0.022543184459209442, -0.034607578068971634, 0.0007007043459452689, 0.05622008070349693, 0.038123488426208496, -0.02554204873740673, 0.021216100081801414, -0.04722348973155022, 0.0743856132030487, 0.045465532690286636, 0.019751138985157013, -0.0009775391081348062, 0.031177842989563942, -0.014890910126268864, 0.004429356660693884, 0.05008447542786598, -0.04518977552652359, -0.0011170337675139308, 0.005282481666654348, -0.008858713321387768, 0.019182387739419937, -0.07259318977594376, -0.04553447291254997, -0.008802699856460094, 0.07266212999820709, -0.04949849098920822, -0.008061600849032402, 0.032987501472234726, 0.021181629970669746, 0.009289584122598171, -0.01919962279498577, 0.039502277970314026, 0.03667576238512993, -0.0006355351069942117, -0.0035611509811133146, -0.03722727671265602, -0.0011191880330443382, 0.022146781906485558, 0.07555758208036423, -0.057392049580812454, -0.0547378845512867, -0.019802842289209366, 0.04598258063197136, 0.01055634580552578, 0.07528182864189148, 0.0226982980966568, 0.05946023389697075, 0.022250192239880562, 0.0025098249316215515, -0.025025002658367157, 0.010220265947282314, -0.013908524066209793, -0.05404848977923393, -0.0490848533809185, -0.033573489636182785, -0.03819242864847183, 0.039709094911813736, -0.06845682114362717, 0.004993797745555639, 0.02228466048836708, -0.013848202303051949, -0.03233258053660393, -0.006230398081243038, -0.003050568513572216, 0.011409470811486244, 0.04932614043354988, 0.033314965665340424, -0.038537126034498215, -0.0280755702406168, 0.0447416715323925, -0.02466307021677494, 0.02228466048836708, 0.02642102539539337, -0.028764965012669563, -0.03643447160720825, 0.046671975404024124, 0.019371971487998962, -0.02102651633322239, 0.041880685836076736, -0.015916384756565094, 0.04298371449112892, -0.021336743608117104, -0.0075402469374239445, -0.002807126147672534, 0.01297784224152565, 0.023560039699077606, 0.01268485002219677, -0.03908864036202431, -0.010340910404920578, 0.012814111076295376, -0.04849886894226074, 0.02792045660316944, -0.004929167218506336, 0.010668371804058552, -0.017545077949762344, -0.015356251038610935, 0.02231913059949875, 0.00012111521937185898, 0.08389925211668015, 0.022146781906485558, -0.002794200088828802, -0.03946780785918236, 0.0016739348648115993, -0.006532008294016123, -0.014890910126268864, -0.008832860738039017, -0.041915155947208405, -0.027144888415932655, 0.04998106509447098, -0.00589431868866086, 0.093619704246521, 0.08121061325073242, -0.014865058474242687, 0.001220442820340395, -0.011478410102427006, -0.016131820157170296, 0.06718144565820694, 0.012667614966630936, 0.06563030928373337, -0.02516288124024868, -0.01756231300532818, -0.04046742618083954, 0.034866102039813995, 0.01589053124189377, -0.07562652230262756, 0.017286553978919983, 0.011616288684308529, 0.014425569213926792, -0.00828565377742052, 0.0008795159519650042, -0.005338494665920734, -0.004198840353637934, 0.001183818792924285, 0.0396401546895504, -0.023249812424182892, 0.001290459418669343, -0.013951610773801804, 0.015244225040078163, 0.06307955086231232, 0.09623940289020538, 0.0360553078353405, 0.009255114942789078, -0.01751922443509102, -0.01806212216615677, 0.046085990965366364, -0.04050189629197121, 0.011228504590690136, 0.039915911853313446, 0.005179072264581919, -0.043293941766023636, 0.03067803382873535, 0.008802699856460094, 0.02504223771393299, -0.016347255557775497, 0.007139536552131176, -0.031867239624261856, 0.002031557960435748, 0.04419015720486641, 0.020061366260051727, -0.031057199463248253, -0.02845473773777485, 0.019716668874025345, 0.06504432111978531, -0.03908864036202431, 0.06252803653478622, 0.05639243125915527, -0.010125474072992802, 0.03443523123860359, -0.06414811313152313, 0.023766858503222466, 0.017993183806538582, 0.010676989331841469, 0.02219848707318306, 0.008832860738039017, -0.009522254578769207, 0.03660682216286659, 0.01990625262260437, -0.06142500415444374, 0.03191894292831421, 0.00002516220774850808, 0.0056271785870194435, 0.00964289903640747, -0.02466307021677494, -0.04436250403523445, 0.0036817947402596474, -0.05335909500718117, 0.0856916755437851, -0.05273864045739174, -0.017476137727499008, -0.017958713695406914, -0.024525191634893417, 0.03284962475299835, -0.0292130708694458, 0.04622386768460274, 0.0259556844830513, -0.013107103295624256, -0.020802464336156845, -0.085140161216259, 0.029850760474801064, 0.017303789034485817, -0.0007405599462799728, 0.02261212281882763, 0.006385512184351683, -0.015657860785722733, 0.02474924549460411, 0.012529736384749413, 0.012460796162486076, 0.011383618228137493, -0.0011784328380599618, -0.0446382611989975, 0.0041816052980721, 0.015020172111690044, -0.019251327961683273, 0.027437880635261536, 0.02612803317606449, -0.05373826250433922, -0.04670644551515579, 0.004052344243973494, -0.04967083781957626, 0.10920000821352005, -0.018475759774446487, -0.015183903276920319, -0.028782200068235397, 0.0633208379149437, 0.005200616084039211, 0.04412121698260307, 0.013486269861459732, -0.011047539301216602, 0.017053883522748947, -0.011461175046861172, -0.008522633463144302, -0.03250492736697197, 0.02683466114103794, 0.0017256393330171704, 0.05232500657439232, 0.053807202726602554, 0.009703220799565315, -0.03784773126244545, 0.06425151973962784, -0.04701667279005051, 0.0037270362954586744, 0.027558526024222374, -0.04412121698260307, -0.041708339005708694, 0.036537881940603256, -0.00014999705308582634, 0.04236325994133949, -0.023215342313051224, 0.03183276951313019, -0.012943372130393982, 0.0025701469276100397, -0.02883390337228775, -0.005463447421789169, -0.000549360818695277, -0.020268183201551437, -0.026196971535682678, 0.007505777291953564, -0.026507198810577393, 0.014408335089683533, -0.043328411877155304, 0.03864053264260292, -0.022801706567406654, -0.006941335741430521, -0.03960568457841873, 0.02724829874932766, -0.008333049714565277, -0.04677538201212883, 0.0016405422938987613, 0.0302471611648798, 0.043087124824523926, 0.005614252295345068, 0.0030484141316264868, 0.05453106388449669, 0.016045644879341125, 0.018044887110590935, -0.003951089456677437, 0.00978939514607191, -0.020630115643143654, -0.021629737690091133, -0.02266382798552513, -0.018268940970301628, 0.004998106509447098, 0.0320395864546299, 0.02540416829288006, -0.03805454820394516, 0.034400761127471924, 0.021147161722183228, -0.03629659488797188, 0.025093941017985344, 0.046671975404024124, 0.06008068844676018, -0.029902465641498566, -0.004476752132177353, -0.004812831990420818, -0.0187342818826437, -0.014761649072170258, 0.03805454820394516, 0.005217850673943758, -0.02792045660316944, 0.015140815638005733, -0.013348391279578209, -0.028403032571077347, -0.007841857150197029, 0.03071250207722187, 0.041673868894577026, -0.02762746438384056, -0.013615531846880913, -0.026317616924643517, 0.04887803643941879, -0.03422841057181358, 0.021836554631590843, -0.037985607981681824, 0.02583504095673561, -0.04439697414636612, 0.040708716958761215, -0.02604185789823532, 0.01994072087109089, -0.01702803187072277, 0.015339016914367676, -0.02924754098057747, 0.03050568513572216, 0.018303411081433296, 0.03083314746618271, -0.0005972952931188047, -0.04949849098920822, 0.019371971487998962, 0.027007009834051132, 0.037571974098682404, 0.009625663980841637, -0.02733447216451168, 0.030488450080156326, -0.0324704572558403, 0.010271970182657242, 0.07397197932004929, -0.015244225040078163, -0.01849299483001232, -0.07238636910915375, 0.05394507944583893, -0.021853789687156677, 0.0005795218166895211, 0.029988639056682587, 0.093826524913311, 0.04201856628060341, -0.011754168197512627, -0.009289584122598171, -0.03984697163105011, 0.031108904629945755, 0.13091592490673065, 0.026593374088406563, 0.025111176073551178, -0.07672955095767975, 0.010720076970756054, -0.011125096119940281, 0.004004948306828737, 0.03238428384065628, -0.013357008807361126, -0.040915533900260925, -0.016657482832670212, 0.016623012721538544, 0.01272793672978878, -0.045879170298576355, 0.0020003197714686394, -0.053221218287944794, -0.018010418862104416, -0.056185610592365265, 0.013779263012111187, 0.058770839124917984, 0.0177001915872097, 0.028696024790406227, 0.051221974194049835, 0.0009570727706886828, 0.023232577368617058, -0.005579782649874687, 0.03526250272989273, -0.004310866817831993, -0.022474244236946106, -0.01820000261068344, 0.03126401826739311, -0.01610596664249897, 0.051980309188365936, -0.044465914368629456, -0.037365153431892395, -0.05253182351589203, 0.0447416715323925, -0.00041713722748681903, -0.045672353357076645, 0.02533522993326187, 0.017010796815156937, -0.022457009181380272, -0.08520910143852234, 0.0032078365329653025, 0.029936933889985085, -0.076453797519207, 0.08962122350931168, 0.029471592977643013, -0.008919035084545612, -0.02959223836660385, -0.05504811182618141, -0.10361591726541519, -0.0374685637652874, 0.039571214467287064, 0.02883390337228775, -0.021474624052643776, -0.02102651633322239, -0.06108031049370766, -0.016640247777104378, 0.055220458656549454, -0.010530493222177029, -0.0670090988278389, -0.01070284191519022, 0.028764965012669563, 0.08769091963768005, -0.010823485441505909, 0.007958192378282547, -0.011314678937196732, -0.0011245739879086614, 0.061528414487838745, -0.07500606775283813, 0.031229548156261444, -0.07507500797510147, 0.00044595173676498234, 0.05708182230591774, -0.018458524718880653, -0.010427084751427174, -0.003593466244637966, -0.018992803990840912, -0.0368136391043663, -0.004998106509447098, 0.02941988967359066, -0.0058167618699371815, -0.0017568775219842792, 0.015588921494781971, -0.05763334035873413, 0.03503844887018204, 0.037985607981681824, 0.035745080560445786, -0.05032576248049736, -0.03472822159528732, 0.02011306956410408, 0.02395644225180149, -0.030936555936932564, 0.026524433866143227, 0.0008439690573140979, 0.08141743391752243, 0.017174528911709785, -0.03396989032626152, -0.10699395090341568, 0.020216479897499084, 0.002369791967794299, 0.08203788846731186, -0.007286032661795616, 0.02374962344765663, -0.058736369013786316, 0.05901212617754936, 0.008126231841742992, -0.0030828837770968676, -0.06045985221862793, -0.01262452732771635, -0.02178485132753849, -0.09148258715867996, 0.0064759948290884495, -0.006407055538147688, -0.04915379360318184, -0.03650341182947159, 0.01957879029214382, -0.016407577320933342, -0.04074318706989288, -0.017631251364946365, -0.05263523384928703, 0.01020303089171648, 0.02123333513736725, -0.03145360201597214, -0.05587538331747055, 0.0237840935587883, -0.032522160559892654, -0.019871782511472702, -0.102306067943573, 0.016709187999367714, 0.061321597546339035, -0.024059850722551346, -0.0012613756116479635, 0.0009317590738646686, 0.033108148723840714, -0.037985607981681824, 0.03905417025089264, 0.007380824536085129, -0.024042615666985512, -0.010108239948749542, -0.004425047896802425, -0.07114546000957489, 0.02912689745426178, -0.01840681955218315, -0.006006345152854919, 0.023835796862840652, -0.027007009834051132, 0.006497538648545742, 0.022560419514775276, 0.001443418674170971, 0.027231063693761826, -0.05249735340476036, 0.04622386768460274, 0.01702803187072277, -0.015511364676058292, 0.015993941575288773, -0.019957955926656723, -0.0135207399725914, 0.04046742618083954, -0.010082387365400791, -0.04081212356686592, -0.021595267578959465, -0.026317616924643517, -0.0022448392119258642, -0.04581023007631302, 0.0033478697296231985, -0.039536744356155396, 0.009565342217683792, -0.00520492484793067, -0.006036506034433842, 0.004218229558318853, 0.02202613838016987, 0.05684053525328636, 0.02131951041519642, -0.013589679263532162, 0.0772121250629425, 0.0005525923916138709, -0.07035265862941742, 0.0177001915872097, -0.022732766345143318, 0.06101137027144432, 0.011805872432887554, -0.013693088665604591, -0.024180494248867035, -0.0029277701396495104, 0.01218503899872303, -0.07424773275852203, 0.12422879785299301, 0.009565342217683792, 0.08451970666646957, -0.054772354662418365, -0.04381098970770836, 0.04543106630444527, 0.03877841308712959, -0.02645549550652504, -0.008660512045025826, -0.02466307021677494, -0.0548412911593914, -0.02287064678966999, -0.03383200988173485, 0.0446382611989975, -0.024214964359998703, 0.002925615757703781, -0.0029579312540590763, -0.007647964637726545, -0.0031776754185557365, 0.04315606504678726, 0.03988144174218178, 0.008414915762841702, 0.03919205069541931, 0.005489299539476633, 0.10285758227109909, 0.00012286563287489116, -0.02483541890978813, -0.03708939626812935, -0.006454451475292444, -0.037365153431892395, 0.015744036063551903, -0.019458144903182983, 0.03722727671265602, -0.020802464336156845, 0.010022065602242947, -0.017631251364946365, -0.048464398831129074, 0.0033521782606840134, 0.019371971487998962, 0.015588921494781971, -0.02895454876124859, 0.0360553078353405, 0.04019166901707649, -0.03702045977115631, 0.028265153989195824, 0.0036343990359455347, -0.06204545870423317, -0.00036193185951560736, 0.005984801799058914, -0.0475681871175766, -0.014132576994597912, -0.02562822215259075, 0.00041713722748681903, 0.11409470438957214, 0.01969943381845951, 0.0002586574119050056, -0.008772538974881172, 0.0035439161583781242, 0.02504223771393299, -0.029902465641498566, 0.00021880181157030165, 0.02483541890978813, -0.032780684530735016, 0.06725038588047028, 0.01572680100798607, 0.02879943512380123, 0.01030644029378891, 0.08314091712236404, -0.0741787925362587, 0.010340910404920578, -0.023594509810209274, -0.011262974701821804, -0.084933340549469, 0.019251327961683273, -0.013253599405288696, 0.003300473792478442, -0.02369791828095913, -0.02854091115295887, -0.017579546198248863, -0.040708716958761215, -0.027972161769866943, 0.01406363770365715, -0.007622112520039082, -0.051807958632707596, 0.010470171459019184, -0.023628979921340942, 0.051635611802339554, -0.05056704953312874, -0.06580265611410141, -0.028144510462880135, -0.06204545870423317, -0.004963636863976717, -0.03901970013976097, -0.05215265601873398, -0.006893939804285765, -0.00384983466938138, -0.0241632591933012, -0.048223111778497696, -0.025817805901169777, 0.017286553978919983, 0.011736933141946793, -0.05373826250433922, 0.030764207243919373, 0.045500002801418304, 0.014201516285538673, 0.04146704822778702, -0.05846061185002327, 0.060321975499391556, -0.03750303387641907, -0.05432424694299698, 0.060735613107681274, -0.016002558171749115, -0.0018322799587622285, 0.024214964359998703, -0.040122732520103455, 0.0166143961250782, -0.05425530672073364, -0.03050568513572216, -0.0051747639663517475, -0.03846818581223488, -0.012271213345229626, 0.06008068844676018, 0.01020303089171648, 0.02959223836660385, -0.014123959466814995, -0.03640000522136688, -0.03195341303944588, -0.015485513024032116, 0.03712386637926102, -0.005790909752249718, 0.03526250272989273, 0.027110418304800987, -0.035779546946287155, -0.0077944607473909855, 0.02642102539539337, 0.04277689754962921, 0.018217235803604126, 0.044914018362760544, -0.02361174486577511, -0.021767616271972656, 0.04536212608218193, -0.019096214324235916, 0.016295550391077995, 0.029144130647182465, -0.00980662927031517, -0.005347112193703651, -0.07183485478162766, 0.08810455352067947, 0.04636174812912941, 0.013313922099769115, 0.013460418209433556, -0.0291613657027483, 0.007217093370854855, 0.028902843594551086, -0.005648721940815449, -0.022353600710630417, 0.007691051810979843, 0.019957955926656723, -0.024335607886314392, -0.0023180872667580843, -0.04360416904091835, 0.01366723608225584, -0.0547378845512867, 0.019802842289209366, -0.02028541825711727, 0.0070878323167562485, 0.017786365002393723, 0.005709044169634581, 0.027679169550538063, -0.03200511634349823, 0.0343145877122879, -0.026472730562090874, -0.014330778270959854, -0.07535076141357422, -0.003755043027922511, 0.013848202303051949, -0.018596403300762177, 0.04157045856118202, -0.017088353633880615, 0.017958713695406914, 0.0540829598903656, 0.01890663057565689, -0.033366668969392776, 0.0526697002351284, 0.002652012510225177, 0.00756179029121995, 0.025903979316353798, -0.03567614033818245, -0.01030644029378891, -0.023335987702012062, -0.03543485328555107, 0.005243703257292509, -0.07049053907394409, 0.0007012429414317012, -0.04632727801799774, -0.010832102969288826, -0.02219848707318306, -0.014537596143782139, 0.03293579816818237, 0.021715911105275154, -0.013210512697696686, 0.008725143037736416, -0.03091932088136673, -0.05277311056852341, 0.022232957184314728, 0.015468277968466282, -0.06080454960465431, -0.032608337700366974, 0.0000988310930551961, 0.008190862834453583, 0.027231063693761826, 0.0183551162481308, -0.08520910143852234, 0.019751138985157013, 0.06183864176273346, 0.024146024137735367, 0.012986459769308567, 0.007139536552131176, 0.005321260076016188, -0.0424666702747345 ]
40,010
s3path.old_versions
_init
null
def _init(self, template=None): super()._init(template) if template is None: self._accessor = _s3_accessor
(self, template=None)
[ -0.012142420746386051, -0.04261954873800278, 0.01674339547753334, -0.01239322591573, 0.012531600892543793, 0.03405758738517761, 0.026325874030590057, 0.07790521532297134, 0.028003674000501633, 0.048327524214982986, 0.04272333160042763, 0.08247159421443939, -0.0073468564078211784, -0.034593790769577026, -0.05074908956885338, 0.05946672707796097, 0.01790228672325611, 0.02127518132328987, 0.0020399526692926884, -0.03504351153969765, -0.023904308676719666, -0.03293328732252121, -0.008626826107501984, 0.03580457344651222, 0.019372522830963135, 0.0015988817904144526, -0.025409139692783356, 0.007770630065351725, 0.06292610615491867, -0.04220442473888397, 0.0005934997461736202, 0.029629580676555634, 0.021084915846586227, 0.0900130420923233, 0.04220442473888397, -0.05541925132274628, 0.038122355937957764, -0.016336917877197266, -0.0371883250772953, 0.0400250144302845, 0.06496714055538177, 0.021569227799773216, 0.005569600500166416, -0.0639985129237175, 0.01766877807676792, 0.09042816609144211, 0.020220071077346802, 0.012886187061667442, 0.019614679738879204, -0.02001250721514225, 0.037638045847415924, 0.07735171914100647, -0.02745017223060131, -0.012471061199903488, -0.051613934338092804, 0.0070441607385873795, 0.067873015999794, 0.06970648467540741, -0.02258974500000477, 0.03374624252319336, -0.00848412699997425, 0.022641636431217194, 0.009106815792620182, -0.055315472185611725, -0.022122729569673538, -0.020790867507457733, -0.027553953230381012, -0.0064690387807786465, 0.03071928583085537, 0.04210064187645912, 0.021949760615825653, 0.01812714710831642, -0.015670986846089363, -0.011390005238354206, 0.036461856216192245, 0.003143710782751441, -0.02025466412305832, -0.002438862342387438, -0.022174619138240814, -0.028522580862045288, -0.022018948569893837, -0.018352005630731583, -0.04127039387822151, 0.027657736092805862, 0.003422623034566641, -0.0038853150326758623, -0.015567205846309662, -0.04372655227780342, 0.027086937800049782, 0.03954070433974266, -0.056249503046274185, 0.03912557661533356, -0.022036245092749596, -0.037292107939720154, 0.023644855245947838, 0.019718460738658905, -0.0016291512874886394, -0.11146119236946106, 0.010559754446148872, 0.0558689720928669, 0.025530217215418816, -0.03378083556890488, 0.05296309292316437, 0.004337196704000235, 0.006715519353747368, -0.03836451470851898, 0.004207469988614321, -0.0024950772058218718, 0.03587375953793526, -0.01954549178481102, 0.048223745077848434, 0.04687458649277687, 0.006516605149954557, 0.05863647535443306, -0.03746507689356804, -0.04791240021586418, 0.04203145578503609, 0.016077464446425438, 0.014953166246414185, -0.06060831993818283, 0.006551199126988649, -0.02675829641520977, -0.05178690329194069, 0.03805316984653473, 0.040405549108982086, -0.009297081269323826, 0.017080683261156082, -0.016492590308189392, 0.025097794830799103, -0.045560020953416824, 0.022485964000225067, 0.008185755461454391, -0.0463210865855217, -0.04853508993983269, -0.009919769130647182, -0.018196333199739456, 0.04258495569229126, 0.007269020192325115, -0.07060592621564865, 0.05552303418517113, 0.007653876207768917, 0.0027523685712367296, 0.0026810187846422195, -0.002849663607776165, -0.01285159308463335, 0.04697836935520172, 0.0011751077836379409, 0.05676840990781784, 0.0016702314605936408, -0.04151254892349243, -0.009997605346143246, 0.01966656930744648, 0.04853508993983269, 0.02700045332312584, -0.04725511744618416, -0.024942122399806976, -0.011026770807802677, -0.004038825165480375, 0.02258974500000477, -0.009400862269103527, 0.054727375507354736, 0.05732190981507301, -0.053101468831300735, -0.00689281290397048, -0.005638787988573313, -0.015264510177075863, -0.009539238177239895, -0.05642247200012207, -0.018784428015351295, 0.0004516111221164465, -0.02013358660042286, -0.04767024517059326, -0.06482876092195511, 0.0066030896268785, 0.05922456830739975, 0.05995103716850281, -0.0038161275442689657, 0.02452699840068817, -0.014425610192120075, -0.03014848753809929, 0.018006067723035812, -0.028782034292817116, 0.016086112707853317, 0.03826073184609413, -0.017175817862153053, 0.030044706538319588, 0.022624339908361435, 0.02907608076930046, 0.030805770307779312, 0.05407009273767471, 0.06396391987800598, 0.010075441561639309, -0.05296309292316437, -0.023333512246608734, 0.05375875160098076, -0.011182443238794804, 0.04227361083030701, -0.06040075793862343, -0.04628649353981018, 0.12024801224470139, -0.03559701144695282, -0.023523777723312378, -0.008531693369150162, -0.029249049723148346, 0.030183082446455956, 0.0546581894159317, 0.02058330550789833, 0.023074058815836906, -0.05832513049244881, 0.01006679330021143, -0.03874504566192627, 0.0020183315500617027, -0.009115464054048061, 0.023091355338692665, 0.008994385600090027, -0.02105032093822956, -0.012592139653861523, -0.01204728800803423, 0.009547886438667774, 0.0066766017116606236, 0.08710716664791107, 0.023541074246168137, -0.04780861735343933, -0.027398282662034035, 0.0147801972925663, 0.047151338309049606, -0.005798784084618092, -0.05175231024622917, -0.06628170609474182, -0.005232310853898525, 0.0036972113884985447, 0.009625722654163837, 0.0353548526763916, 0.024613482877612114, 0.03279491513967514, -0.08516991138458252, 0.028643658384680748, -0.0022312994115054607, -0.0796349048614502, -0.03409218043088913, -0.015152079984545708, 0.03552782163023949, 0.012661327607929707, -0.02873014286160469, -0.046459462493658066, 0.013949945569038391, -0.07250858843326569, 0.05213284119963646, -0.008341427892446518, -0.02023736760020256, 0.06552063673734665, 0.02130977436900139, -0.03815695270895958, -0.007031187880784273, -0.029231753200292587, -0.05289390683174133, 0.07382314652204514, 0.026550734415650368, -0.009461401961743832, -0.0061187767423689365, -0.03853748366236687, -0.06437904387712479, 0.02606642059981823, -0.0022226511500775814, -0.0009145733201876283, 0.0017005009576678276, 0.010654887184500694, 0.00695335166528821, -0.03500891476869583, 0.0353548526763916, 0.051198810338974, 0.010775965638458729, 0.01572287827730179, 0.0028842573519796133, 0.003584781428799033, -0.07174751907587051, -0.002523184521123767, -0.024371325969696045, -0.03615051135420799, 0.02208813466131687, 0.07195508480072021, -0.022053541615605354, 0.04594055563211441, 0.052409593015909195, -0.002447510603815317, -0.031359270215034485, 0.005145826376974583, 0.007480907253921032, -0.015117486007511616, -0.02186327613890171, -0.024250246584415436, 0.04116661101579666, -0.01849038153886795, -0.015195322223007679, -0.0011242982000112534, -0.04649405553936958, -0.0833018496632576, 0.029767956584692, 0.011632162146270275, 0.007554418873041868, -0.03481864929199219, -0.029750660061836243, -0.005738244857639074, 0.048119962215423584, 0.019701164215803146, -0.014045079238712788, 0.0035718088038265705, 0.016259081661701202, 0.0169682539999485, 0.03794938698410988, 0.02188057266175747, 0.0774209052324295, -0.041235797107219696, 0.029594987630844116, 0.03516458719968796, 0.014987759292125702, 0.011822427622973919, -0.02186327613890171, 0.002903716405853629, 0.05638787895441055, -0.05144096538424492, -0.02490752935409546, -0.05479656532406807, 0.005919862538576126, 0.02290108986198902, -0.01930333487689495, -0.0526171550154686, -0.018524974584579468, -0.04130498692393303, 0.06624710559844971, -0.06953351944684982, 0.04300008341670036, 0.011969451792538166, -0.01482343953102827, -0.02442321553826332, -0.023679450154304504, -0.028712846338748932, -0.04331142455339432, -0.035078104585409164, -0.04400330036878586, 0.010023551061749458, 0.013820218853652477, 0.0007248480105772614, 0.0207216814160347, -0.06292610615491867, -0.006412824150174856, 0.033088959753513336, -0.06994864344596863, 0.005785811692476273, -0.05348199978470802, -0.05254796892404556, -0.006711195223033428, 0.08745310455560684, 0.05593815818428993, 0.05164853110909462, -0.05337821692228317, -0.0007410638500005007, 0.037395887076854706, -0.0029383101500570774, -0.008120892569422722, 0.04268873855471611, -0.012038638815283775, -0.004739349242299795, -0.003850721288472414, 0.05351659283041954, 0.013474280945956707, 0.006434445269405842, 0.0004972857423126698, -0.04552542790770531, -0.052305810153484344, -0.0351472906768322, -0.09049735963344574, -0.05244418606162071, 0.015264510177075863, 0.0073425318114459515, -0.02964687906205654, -0.038468293845653534, -0.024405919015407562, -0.029249049723148346, -0.016587723046541214, -0.0037015355192124844, 0.03397110104560852, 0.043553583323955536, 0.003145872848108411, 0.0019848188385367393, -0.020047102123498917, -0.006905785296112299, 0.025288060307502747, 0.056699223816394806, -0.003321003867313266, 0.0024799422826617956, -0.010620294138789177, 0.006849570665508509, -0.03666941821575165, 0.013327257707715034, -0.004412870388478041, -0.010983528569340706, -0.014235344715416431, 0.05583437904715538, 0.04455680400133133, 0.024388622492551804, -0.046943772584199905, 0.0335213840007782, 0.027052344754338264, 0.006629034876823425, -0.029975518584251404, 0.030096597969532013, 0.025184279307723045, 0.017616888508200645, -0.01779850572347641, -0.017426621168851852, -0.040993642061948776, -0.03023497201502323, -0.030580909922719002, 0.03132467716932297, -0.014382367953658104, 0.05375875160098076, 0.018559569492936134, -0.08274834603071213, 0.048465900123119354, 0.0052755530923604965, 0.046113524585962296, 0.012825648300349712, 0.01639745756983757, 0.0416509248316288, -0.01733148843050003, -0.006642007734626532, -0.04746267944574356, 0.03255275636911392, 0.03127278760075569, -0.04573298990726471, 0.09527129679918289, -0.03478405624628067, 0.025080498307943344, 0.033469490706920624, 0.044280052185058594, -0.009677613154053688, -0.01239322591573, -0.03469757363200188, 0.03094414621591568, 0.03516458719968796, -0.021119508892297745, -0.03336571156978607, -0.01685582473874092, -0.03756885603070259, 0.026844780892133713, -0.03957529738545418, 0.045663803815841675, 0.04334602132439613, -0.051371779292821884, 0.0215346347540617, 0.027242610231041908, 0.02210543304681778, -0.0009702477254904807, -0.02848798595368862, -0.051129624247550964, 0.04178930073976517, -0.020790867507457733, 0.01111325528472662, -0.045214083045721054, -0.08385534584522247, 0.02407727763056755, 0.017988771200180054, -0.0621650405228138, -0.016587723046541214, -0.025616701692342758, -0.003115603234618902, 0.011251630261540413, -0.02431943453848362, -0.033088959753513336, 0.008596557192504406, -0.022416776046156883, -0.03701535612344742, -0.00913276057690382, 0.003364246105775237, -0.05666462704539299, 0.014347774907946587, -0.009608425199985504, -0.04943452775478363, -0.036807794123888016, -0.02001250721514225, 0.007398746907711029, 0.006611738353967667, 0.024751856923103333, -0.007403071038424969, -0.012341334484517574, -0.03184358403086662, -0.02267622947692871, 0.0869687870144844, -0.05109502747654915, -0.022970277816057205, 0.06572820246219635, -0.013733734376728535, 0.01443425938487053, -0.051371779292821884, 0.02188057266175747, -0.007031187880784273, 0.01723635569214821, 0.03324463218450546, -0.004959884565323591, -0.004747997969388962, -0.00837169773876667, 0.01964927278459072, 0.03194736689329147, 0.015065595507621765, -0.0326046459376812, -0.04109742492437363, -0.011372708715498447, 0.012842944823205471, -0.049953434616327286, 0.02722531370818615, 0.021845979616045952, 0.002786962315440178, 0.03978285938501358, 0.01204728800803423, -0.010395433753728867, -0.09707017987966537, 0.009452753700315952, -0.04033635929226875, 0.013595359399914742, 0.041339579969644547, -0.027398282662034035, -0.03843370079994202, -0.04421086609363556, -0.0009513292461633682, -0.03628888726234436, 0.02779611013829708, -0.021119508892297745, 0.02371404320001602, 0.021136805415153503, -0.021949760615825653, -0.044037897139787674, -0.05957050621509552, 0.005513385403901339, -0.06742329895496368, 0.12391495704650879, -0.01319753099232912, -0.0217421967536211, -0.01424399297684431, -0.041028235107660294, 0.0030593883711844683, 0.006789031438529491, 0.021015727892518044, -0.05320524796843529, 0.02127518132328987, -0.03071928583085537, -0.06780382990837097, -0.01871524006128311, 0.007658200338482857, -0.017288247123360634, 0.045214083045721054, -0.05074908956885338, -0.013275367207825184, -0.007104699499905109, 0.039160169661045074, 0.01987413316965103, -0.01448614988476038, -0.04140876606106758, 0.027882594615221024, 0.041720110923051834, 0.036012135446071625, 0.012133772484958172, -0.02767503261566162, 0.07762846350669861, 0.023195136338472366, 0.02999281696975231, 0.030529020354151726, -0.002008602023124695, -0.018075255677103996, -0.009937066584825516, 0.006836597807705402, -0.033555977046489716, 0.02767503261566162, 0.09388754516839981, -0.007489555515348911, 0.01859416253864765, 0.010853801853954792, 0.006581468507647514, 0.014736955054104328, -0.03912557661533356, 0.06389473378658295, -0.030978739261627197, 0.03940232843160629, -0.0061360737308859825, -0.020894650369882584, -0.02734639123082161, -0.022503260523080826, 0.03625429421663284, -0.014235344715416431, -0.03059820830821991, -0.01989142969250679, -0.045663803815841675, -0.027536656707525253, -0.010257058776915073, -0.024717263877391815, 0.0316014289855957, 0.03770723193883896, -0.07001782953739166, 0.019476303830742836, -0.06444822996854782, 0.007627930957823992, 0.07686740159988403, -0.047151338309049606, 0.07195508480072021, 0.02047952450811863, -0.025166982784867287, -0.05185609310865402, 0.05016099661588669, 0.008704662322998047, -0.012358631938695908, 0.03454190120100975, -0.007524149492383003, 0.028782034292817116, 0.01111325528472662, 0.011242982000112534, -0.001990224001929164, -0.04244657978415489, 0.04248117655515671, 0.02314324676990509, -0.037534262984991074, -0.03660023212432861, 0.007065781857818365, -0.011874319054186344, 0.05061071738600731, -0.07866627722978592, -0.002668046159669757, 0.058117568492889404, -0.04334602132439613, -0.01919955387711525, 0.029612284153699875, 0.05330903083086014, -0.08945954591035843, 0.05894782021641731, -0.007074430119246244, 0.030096597969532013, 0.059397537261247635, 0.01319753099232912, 0.044383835047483444, 0.007861439138650894, 0.02186327613890171, 0.007208480965346098, -0.07271614670753479, 0.044868145138025284, 0.03732670098543167, -0.026671811938285828, -0.022053541615605354, 0.011147849261760712, 0.009089518338441849, -0.02258974500000477, 0.03173980116844177, -0.05220203101634979, -0.0032237088307738304, -0.029767956584692, -0.004946912173181772, -0.032293304800987244, -0.02698315680027008, 0.017366083338856697, -0.06123100966215134, 0.04493733495473862, -0.02665451541543007, -0.04621730372309685, -0.006339312065392733, -0.029940925538539886, 0.08440884947776794, 0.058359723538160324, -0.03523377701640129, -0.023437293246388435, -0.02677559293806553, -0.04888102784752846, 0.07119402289390564, 0.004242063499987125, 0.021915165707468987, -0.02433673106133938, -0.006871191784739494, 0.022485964000225067, -0.03116900473833084, 0.06434445083141327, -0.05085287243127823, 0.03035605140030384, 0.02117140032351017, -0.007956571877002716, 0.03791479393839836, -0.004644216503947973, 0.019804945215582848, -0.015878550708293915, -0.029404722154140472, 0.005889592692255974, -0.011554325930774212, 0.059397537261247635, -0.03035605140030384, -0.007212805096060038, -0.021033024415373802, -0.018940100446343422, 0.025322655215859413, -0.04459139704704285, -0.03001011349260807, -0.007519825361669064, -0.064621202647686, 0.03224141150712967, 0.008051704615354538, 0.04884643107652664, 0.0120905302464962, -0.028211236000061035, -0.0006416066898964345, -0.011294872500002384, -0.02665451541543007, -0.006226882338523865, -0.03836451470851898, 0.02909337729215622, -0.040889859199523926, 0.04026717320084572, 0.005781487096101046, 0.013309961184859276, -0.0497804656624794, 0.01040408294647932, 0.0499880276620388, 0.019926022738218307, 0.044383835047483444, 0.02127518132328987, -0.024734560400247574, 0.009245190769433975, -0.08420128375291824, -0.00006999837205512449, -0.0013372661778703332, 0.050679903477430344, -0.0017123926663771272, -0.05894782021641731, 0.008185755461454391, -0.008285213261842728, 0.02781340666115284, 0.016734745353460312, -0.002300487132743001, -0.00044539503869600594, -0.02802097052335739, 0.039263952523469925, -0.05434684455394745, 0.008704662322998047, 0.0175736453384161, -0.006313366815447807, 0.054277658462524414, -0.02452699840068817, -0.028885815292596817, -0.0027566927019506693, 0.02468266896903515, 0.003991258796304464, 0.016241785138845444, 0.001558882649987936, 0.0034507305826991796, 0.008769526146352291, 0.07562202960252762, 0.00003547214873833582, 0.022157322615385056, 0.032310601323843, -0.008635475300252438, 0.0058982414193451405, -0.027848001569509506, -0.05538465827703476, 0.008808444254100323, -0.02805556356906891, -0.02374863810837269, -0.03440352529287338, -0.051475562155246735, 0.05330903083086014, 0.014269938692450523, 0.06586657464504242, 0.0249940138310194, 0.026135608553886414, -0.008510072715580463 ]
40,013
s3path.old_versions
_rglob
RGlob with new Algorithm that better fit S3 API
def _rglob(self, pattern): """ RGlob with new Algorithm that better fit S3 API """ sys.audit("pathlib.Path.rglob", self, pattern) if not pattern: raise ValueError(f'Unacceptable pattern: {pattern}') drv, root, pattern_parts = self._flavour.parse_parts((pattern,)) if drv or root: raise NotImplementedError("Non-relative patterns are unsupported") for part in pattern_parts: if part != '**' and '**' in part: raise ValueError("Invalid pattern: '**' can only be an entire path component") pattern = f'**{self._flavour.sep}{pattern}' selector = _Selector(self, pattern=pattern) yield from selector.select()
(self, pattern)
[ 0.05379299074411392, -0.049644432961940765, -0.05247928202152252, 0.020206943154335022, 0.0012013537343591452, -0.0439055897295475, 0.03744075074791908, 0.010552898980677128, 0.04006817191839218, -0.010889969766139984, 0.05279042199254036, 0.060396116226911545, -0.014537245035171509, 0.0319439098238945, -0.052375566214323044, 0.008348976261913776, 0.04483901709318161, 0.03126977011561394, -0.047120723873376846, 0.04262645170092583, -0.04449330270290375, 0.07384436577558517, 0.028089206665754318, 0.05714641138911247, -0.0020386280957609415, 0.03073391318321228, -0.014589102007448673, 0.008258226327598095, 0.03923846036195755, -0.02124408259987831, -0.008383547887206078, -0.023681361228227615, -0.00903176050633192, 0.003344776341691613, -0.08587519079446793, -0.022575078532099724, -0.008867546916007996, 0.08967803418636322, -0.031753767281770706, -0.009282402694225311, 0.0023097970988601446, 0.0232665054500103, 0.0044726659543812275, -0.026810066774487495, 0.04252273589372635, -0.006460517644882202, 0.003709936048835516, -0.005782055202871561, -0.043871019035577774, -0.015176814049482346, 0.043663591146469116, 0.09168317168951035, -0.08670490235090256, -0.04967900365591049, -0.0073680151253938675, 0.016827596351504326, -0.0295757744461298, 0.1091071218252182, 0.03999903053045273, 0.04196959733963013, 0.0025129036512225866, -0.03287733718752861, -0.03560847043991089, 0.029938772320747375, -0.014606387354433537, -0.05949725955724716, -0.06164068356156349, -0.042557310312986374, -0.011201111599802971, 0.026222355663776398, -0.07619521766901016, 0.030561057850718498, 0.0021358600351959467, -0.026516210287809372, -0.047328151762485504, 0.0023940647952258587, 0.011736966669559479, -0.00017204639152623713, 0.035366471856832504, 0.020155087113380432, -0.02414807491004467, -0.007264301180839539, 0.06399153172969818, -0.027536066249012947, 0.035366471856832504, -0.0005763689405284822, 0.002266582800075412, -0.052721280604600906, 0.044527873396873474, 0.0011473360937088728, -0.013716176152229309, 0.03868531808257103, -0.02243679389357567, 0.031425341963768005, -0.01579909771680832, -0.024960501119494438, -0.004956664517521858, 0.03477875888347626, 0.02492593042552471, -0.016767095774412155, -0.050577856600284576, -0.014640958979725838, -0.02722492255270481, -0.01718195155262947, 0.016551025211811066, 0.03215133771300316, 0.022160222753882408, -0.008102655410766602, 0.001130050397478044, 0.01558302715420723, -0.024355502799153328, 0.07294551283121109, 0.03754446655511856, 0.006270375102758408, -0.049091290682554245, 0.04155474156141281, -0.023577647283673286, -0.02278250828385353, 0.005674019921571016, -0.058321837335824966, 0.003809328656643629, 0.03578132763504982, -0.026810066774487495, 0.07868435233831406, 0.06475210189819336, 0.018789518624544144, 0.020898370072245598, 0.00020985878654755652, -0.02974862977862358, 0.05680069699883461, 0.002741938689723611, 0.07042180001735687, -0.028400348499417305, -0.014044603332877159, -0.021486083045601845, 0.041623882949352264, 0.01920437440276146, -0.0606035441160202, 0.022194795310497284, -0.0013850139221176505, 0.04967900365591049, -0.008409475907683372, 0.004072934854775667, -0.004727629479020834, 0.008374905213713646, -0.020811941474676132, 0.028400348499417305, -0.024182645604014397, 0.02079465612769127, 0.010284971445798874, 0.013318605720996857, 0.02952391654253006, 0.07508893311023712, 0.05524498596787453, 0.027155781164765358, -0.016283096745610237, -0.022471364587545395, 0.048814721405506134, -0.04895300418138504, -0.00602405471727252, 0.05016300082206726, 0.012290108017623425, -0.04345616325736046, 0.00869901105761528, 0.009999757632613182, 0.015384242869913578, -0.00414423830807209, -0.011486324481666088, -0.03830503672361374, 0.024113504216074944, 0.03612704202532768, 0.02298993617296219, -0.02563464269042015, -0.02086379937827587, 0.017415307462215424, 0.07820035517215729, -0.03958417475223541, 0.06883151829242706, 0.03830503672361374, -0.005056057125329971, 0.02722492255270481, -0.064544677734375, 0.03688761219382286, 0.040759600698947906, 0.007921156473457813, 0.036299899220466614, 0.010112114250659943, -0.0404830276966095, 0.03671475499868393, 0.0044424161314964294, -0.08760375529527664, 0.015332385897636414, -0.014969386160373688, -0.006814873777329922, 0.01286917831748724, -0.03972246125340462, -0.020448941737413406, 0.0066160885617136955, -0.05050871521234512, 0.09638487547636032, -0.06654981523752213, -0.009887401014566422, -0.03310205042362213, -0.02891891822218895, 0.028296634554862976, -0.037129610776901245, 0.02364679053425789, 0.026360640302300453, 0.013430962339043617, -0.0034679367672652006, -0.07329121977090836, 0.055452413856983185, 0.02891891822218895, -0.012307394295930862, 0.007938441820442677, -0.0035716507118195295, -0.0705946609377861, 0.037060465663671494, 0.007527907378971577, 0.016697952523827553, 0.01322353444993496, -0.018893232569098473, -0.040690455585718155, -0.01330996211618185, -0.01163325272500515, -0.018737660720944405, 0.021883653476834297, 0.030163487419486046, -0.03643818199634552, -0.04549587145447731, -0.0016054061707109213, -0.04345616325736046, 0.12203679978847504, -0.031753767281770706, -0.0226096510887146, -0.04027559980750084, 0.04622187092900276, 0.013612461276352406, 0.07021437585353851, 0.010146685875952244, -0.037959322333335876, 0.016983166337013245, -0.013768033124506474, 0.008910760283470154, -0.05026671662926674, 0.01083811279386282, 0.010864040814340115, 0.06558181345462799, 0.040310174226760864, 0.004122631158679724, -0.04203873872756958, 0.06157154217362404, -0.059289831668138504, 0.009939257986843586, 0.04120902717113495, -0.029057204723358154, -0.023940647020936012, 0.010466470383107662, 0.0011095236986875534, 0.028728775680065155, 0.01273089274764061, 0.005017164628952742, -0.02942020259797573, 0.0028154028113931417, -0.0056999484077095985, -0.019187089055776596, -0.0010835952125489712, -0.026222355663776398, -0.022091081365942955, 0.01558302715420723, 0.017769664525985718, 0.023197364062070847, -0.04131273925304413, 0.032687194645404816, -0.011857966892421246, -0.002553957048803568, -0.03961874544620514, 0.02139965444803238, 0.006101840175688267, -0.0373370386660099, -0.036956753581762314, 0.042833879590034485, 0.07301465421915054, 0.011970323510468006, -0.0013882550410926342, 0.03813217952847481, 0.002320600673556328, 0.050128430128097534, -0.029126346111297607, 0.026810066774487495, 0.006395696196705103, -0.016213953495025635, -0.022903507575392723, -0.00033085845643654466, 0.04743186756968498, 0.0295757744461298, 0.04691329598426819, -0.020673656836152077, 0.02777806483209133, 0.01525459997355938, -0.05220270901918411, 0.02684463933110237, 0.0486418642103672, 0.03578132763504982, -0.04812329262495041, -0.039757031947374344, 0.004775165114551783, -0.04559958726167679, -0.009195974096655846, 0.058632977306842804, 0.008569369092583656, -0.0189969465136528, 0.0014022996183484793, 0.0015027725603431463, -0.0023270826786756516, -0.015825027599930763, 0.044320445507764816, 0.038719892501831055, -0.03111419826745987, -0.02409621886909008, -0.05147671326994896, 0.007618657313287258, -0.012212323024868965, -0.014917529188096523, -0.04556501656770706, 0.0033901510760188103, -0.0558672696352005, 0.04483901709318161, -0.021140368655323982, 0.02349122054874897, -0.008197726681828499, 0.02419993281364441, -0.004602308385074139, 0.0511309988796711, 0.01904880441725254, 0.023335648700594902, 0.0269483532756567, -0.05420784652233124, 0.0015956830466166139, 0.01980937272310257, 0.06620410084724426, -0.008815689943730831, -0.014329817146062851, 0.027639780193567276, -0.016317669302225113, 0.01468417327851057, 0.07605692744255066, -0.004775165114551783, 0.0021801546681672335, -0.04857271909713745, 0.05569441616535187, -0.03111419826745987, -0.004680093843489885, 0.039964459836483, 0.06596209853887558, 0.030094344168901443, -0.015185457654297352, 0.02437278814613819, -0.023733219131827354, 0.04584158584475517, 0.0717700868844986, 0.036576468497514725, 0.01894509047269821, -0.05223728343844414, 0.00936018768697977, 0.0007205961737781763, -0.01894509047269821, 0.05773412436246872, -0.012212323024868965, -0.04829614982008934, -0.019463660195469856, 0.023785075172781944, 0.009005831554532051, -0.049367859959602356, 0.009221903048455715, -0.046671297401189804, -0.023836933076381683, -0.09292773902416229, 0.006767338141798973, 0.06205553933978081, -0.007722371257841587, 0.029489345848560333, 0.06800180673599243, -0.025427214801311493, -0.011875252239406109, -0.005578948650509119, 0.016283096745610237, 0.004012435209006071, -0.020569942891597748, -0.023180076852440834, 0.016257168725132942, 0.005790697876363993, 0.07156265527009964, -0.0295757744461298, -0.07356779277324677, -0.05382756143808365, 0.06565095484256744, -0.008720618672668934, -0.019878515973687172, 0.013759389519691467, 0.008128584362566471, -0.0025453143753111362, -0.09154488891363144, 0.0023811005521565676, 0.015997882932424545, -0.05137299746274948, 0.10267685353755951, 0.05970468744635582, -0.012290108017623425, -0.07792378216981888, -0.07239236682653427, -0.08442319184541702, -0.017363451421260834, 0.03858160600066185, 0.02535807155072689, -0.013318605720996857, 0.010656612925231457, -0.018806803971529007, -0.009757758118212223, 0.06485581398010254, -0.02101936936378479, -0.0644063875079155, -0.01581638492643833, 0.03495161607861519, 0.05341270565986633, 0.005842554848641157, 0.03078577108681202, -0.011944394558668137, 0.009861472062766552, 0.06492496281862259, -0.054518990218639374, 0.03681846708059311, -0.05821812152862549, -0.013526033610105515, 0.06371496617794037, -0.0329291932284832, -0.030094344168901443, 0.001318032038398087, -0.012307394295930862, -0.024182645604014397, 0.01391496043652296, 0.02442464604973793, 0.01394088938832283, -0.008219334296882153, 0.024960501119494438, -0.05230642482638359, 0.029109060764312744, 0.011918466538190842, 0.022142937406897545, -0.05019757151603699, -0.007065515965223312, 0.0029191167559474707, 0.03050919994711876, -0.019359946250915527, -0.01980937272310257, -0.01711280830204487, 0.04214245453476906, 0.025928499177098274, -0.04158931225538254, -0.12431851029396057, 0.013759389519691467, 0.0252370722591877, 0.10903798043727875, -0.007985977455973625, -0.00528077082708478, -0.06772524118423462, 0.04449330270290375, -0.007497657556086779, -0.013405033387243748, -0.07488150149583817, -0.022367650642991066, -0.04314502328634262, -0.0743975043296814, 0.006663624197244644, 0.04089788347482681, -0.027743494138121605, -0.022575078532099724, 0.024009790271520615, -0.025980355218052864, -0.05503755807876587, -0.03571218624711037, -0.04241902381181717, 0.0022104044910520315, 0.0007173551130108535, -0.02293807826936245, -0.04999014362692833, 0.001536263502202928, -0.0012942642206326127, -0.02452835999429226, -0.0889866054058075, 0.005207306705415249, 0.07999806106090546, -0.0558672696352005, 0.007065515965223312, -0.010630683973431587, 0.02684463933110237, -0.026861924678087234, 0.049575287848711014, 0.018478376790881157, -0.043387021869421005, -0.010025685653090477, -0.042177025228738785, -0.0329291932284832, 0.018806803971529007, -0.026412496343255043, 0.004930736031383276, 0.02788177877664566, -0.01738937944173813, 0.00048453881754539907, 0.002148824278265238, -0.030111629515886307, 0.028676919639110565, -0.03298104926943779, 0.04705158248543739, -0.0017274862620979548, -0.026101354509592056, 0.03464047238230705, 0.008539118804037571, -0.026654496788978577, 0.03368976339697838, -0.016283096745610237, -0.012583964504301548, -0.010475113056600094, -0.03035362809896469, 0.008590975776314735, -0.05296327918767929, 0.0019068249966949224, -0.037129610776901245, 0.016663381829857826, 0.0209675133228302, -0.0025755641981959343, 0.00000704762260284042, 0.027691636234521866, 0.02710392326116562, 0.03315390646457672, -0.010578827001154423, 0.057422980666160583, -0.006460517644882202, -0.05597098544239998, -0.0029320809990167618, -0.01778694987297058, 0.05019757151603699, 0.009887401014566422, -0.016162097454071045, -0.05804526433348656, 0.03123519755899906, 0.04725901037454605, -0.050958141684532166, 0.11505339294672012, -0.011365325190126896, 0.08103520423173904, -0.03744075074791908, -0.035815898329019547, 0.05465727671980858, 0.00008041886030696332, -0.03375890478491783, -0.03426019102334976, -0.03671475499868393, -0.03401818871498108, -0.039203889667987823, -0.013344533741474152, 0.04539215937256813, -0.03215133771300316, 0.025098785758018494, 0.023906076326966286, 0.026654496788978577, -0.00051451864419505, 0.059186119586229324, 0.03709504008293152, 0.015462027862668037, 0.036196183413267136, 0.014891601167619228, 0.06831295043230057, -0.010025685653090477, 0.009550330229103565, -0.04556501656770706, 0.001668066717684269, -0.0378556065261364, 0.00952440220862627, -0.02124408259987831, 0.03979160264134407, -0.03266990929841995, 0.03168462589383125, -0.03407004848122597, -0.03896189108490944, 0.024338217452168465, 0.019601944833993912, 0.04210788011550903, -0.03633446991443634, 0.029109060764312744, 0.030007915571331978, -0.021537939086556435, 0.019342659041285515, -0.030042486265301704, -0.03692218288779259, -0.0017166826874017715, 0.01603245548903942, -0.03068205714225769, -0.03068205714225769, 0.005946268793195486, 0.00246320734731853, 0.07778549194335938, 0.005436341743916273, 0.034329332411289215, -0.05607470124959946, -0.005820947699248791, 0.015444742515683174, -0.020725512877106667, 0.014839744195342064, 0.04746643826365471, -0.029679488390684128, 0.03585046902298927, 0.03431204706430435, 0.037406180053949356, -0.014528602361679077, 0.07709407061338425, -0.07591864466667175, 0.0174498800188303, -0.029160918667912483, -0.012056752108037472, -0.07743978500366211, 0.0016183704137802124, -0.0007022301433607936, 0.015894168987870216, -0.0617789700627327, -0.012212323024868965, -0.01755359396338463, -0.0339144766330719, -0.03462318703532219, 0.019947657361626625, -0.020448941737413406, -0.044424161314964294, 0.017596807330846786, -0.014485388062894344, 0.044700730592012405, -0.04231530800461769, -0.03057834319770336, -0.00917004607617855, -0.043871019035577774, -0.0021801546681672335, -0.026689067482948303, -0.06630781292915344, -0.02228122390806675, -0.009861472062766552, -0.0312870554625988, -0.027587922289967537, 0.006300624925643206, 0.016317669302225113, 0.0027138495352119207, -0.041796740144491196, 0.028901632875204086, 0.040310174226760864, 0.014286602847278118, 0.02485678717494011, -0.03636904060840607, 0.08539118617773056, -0.0050819856114685535, -0.05071614310145378, 0.05804526433348656, -0.010751684196293354, -0.005712912417948246, -0.015513884834945202, -0.03184019774198532, -0.004999878816306591, -0.06824380904436111, -0.025703784078359604, -0.010120756924152374, -0.02283436432480812, 0.007268622517585754, 0.01953280158340931, 0.004388398490846157, 0.019843943417072296, -0.026637211441993713, -0.0322723388671875, -0.022142937406897545, -0.011814752593636513, 0.00014017595094628632, -0.03078577108681202, 0.033897191286087036, 0.016153454780578613, -0.02112308330833912, 0.026810066774487495, 0.002722492441534996, 0.028573205694556236, 0.047328151762485504, 0.04559958726167679, -0.04183131083846092, 0.022160222753882408, 0.06153697147965431, -0.010362756438553333, 0.009221903048455715, 0.013102534227073193, -0.006451874505728483, 0.0014876476489007473, -0.07840777933597565, 0.07488150149583817, 0.029437487944960594, 0.011944394558668137, 0.043663591146469116, -0.025046929717063904, 0.025479070842266083, 0.03951503336429596, -0.008439726196229458, -0.029489345848560333, 0.012800035066902637, 0.002054833574220538, -0.01771780662238598, -0.01872037537395954, -0.02826206386089325, 0.017544951289892197, -0.06053440272808075, 0.031580910086631775, -0.0027743494138121605, -0.026637211441993713, 0.00695748021826148, -0.017078237608075142, 0.012532107532024384, -0.03040548600256443, 0.01773509383201599, -0.04224616661667824, -0.019342659041285515, -0.05752669647336006, 0.0042695594020187855, 0.019722944125533104, -0.007104408461600542, 0.047224439680576324, 0.004891843535006046, 0.01975751668214798, 0.03360333293676376, 0.018754947930574417, -0.03211676701903343, 0.017475808039307594, 0.01319760549813509, -0.017519021406769753, 0.03479604423046112, -0.034882474690675735, -0.01603245548903942, -0.020777370780706406, -0.011546825058758259, 0.01733752340078354, -0.055901844054460526, 0.010993683710694313, -0.045253872871398926, -0.010397328063845634, -0.014710101298987865, -0.013845818117260933, 0.04155474156141281, 0.028452206403017044, -0.017164666205644608, -0.020881084725260735, -0.002493457170203328, -0.06475210189819336, 0.03692218288779259, 0.017596807330846786, -0.05659326910972595, -0.02573835663497448, -0.023733219131827354, 0.01948094554245472, 0.005656734108924866, 0.036576468497514725, -0.032842766493558884, 0.007355050649493933, 0.03209948167204857, 0.02798549272119999, 0.0034290440380573273, 0.01755359396338463, -0.010846755467355251, -0.042661022394895554 ]
40,014
s3path.old_versions
_scandir
Override _scandir so _Selector will rely on an S3 compliant implementation
def _scandir(self): """ Override _scandir so _Selector will rely on an S3 compliant implementation """ return self._accessor.scandir(self)
(self)
[ -0.00516506377607584, -0.03900441527366638, -0.040347080677747726, 0.03287850692868233, 0.03361697122454643, 0.029421143233776093, -0.004951076582074165, 0.029454709962010384, 0.05474716052412987, 0.042696744203567505, 0.043569475412368774, 0.011454609222710133, 0.043233808130025864, 0.023798733949661255, -0.00637346226722002, -0.021331587806344032, 0.043233808130025864, 0.05357232689857483, 0.005504925735294819, 0.005521709099411964, -0.05236392840743065, 0.02962254360318184, 0.06928150355815887, -0.025258881971240044, -0.015675611793994904, 0.08156689256429672, 0.00039939035195857286, -0.011731534264981747, -0.02393300086259842, -0.04343520849943161, -0.03376802057027817, 0.042394641786813736, 0.013426648452877998, 0.0347750186920166, 0.01697631925344467, 0.018428074195981026, -0.0015954634873196483, 0.03742678463459015, -0.016951143741607666, -0.018125975504517555, -0.05474716052412987, -0.005127301439642906, 0.0406491793692112, -0.048033833503723145, 0.02547706477344036, 0.04229394346475601, -0.009935719892382622, -0.015323163010179996, 0.02487286552786827, -0.013661614619195461, 0.04769816994667053, 0.10499639064073563, -0.034573618322610855, -0.05864088609814644, -0.023479850962758064, 0.05061846598982811, 0.054948560893535614, 0.04226037487387657, 0.01735394261777401, 0.056156955659389496, 0.030075693503022194, 0.00014226477651391178, 0.03960861265659332, -0.008400047197937965, -0.005534296855330467, -0.008207038976252079, -0.03873588144779205, 0.0006278007058426738, -0.03840021416544914, 0.06518638134002686, -0.04172331094741821, -0.05629122257232666, 0.040884144604206085, -0.014014064334332943, -0.004111911170184612, -0.03351627290248871, -0.04293170943856239, -0.006587449461221695, 0.018948357552289963, -0.0120000671595335, -0.03863517940044403, -0.03558062016963959, 0.006625211797654629, 0.006780457682907581, 0.03715825080871582, -0.00016258831601589918, 0.02603091485798359, -0.017009885981678963, -0.01226020883768797, 0.016699394211173058, -0.02092878893017769, 0.07283956557512283, -0.024151183664798737, 0.011135726235806942, -0.0514240637421608, 0.009457395412027836, -0.03029387630522251, -0.021113405004143715, 0.020593121647834778, 0.001966794254258275, -0.04038064554333687, 0.06340734660625458, 0.044173672795295715, -0.02304348535835743, 0.024755382910370827, -0.010816844180226326, -0.060487050563097, -0.0070112282410264015, -0.018713392317295074, 0.00393358850851655, -0.02394978515803814, 0.06313881278038025, 0.023865867406129837, 0.0047748517245054245, -0.0013604970881715417, -0.07941862940788269, -0.010095161385834217, -0.04904083535075188, -0.01153852604329586, -0.06615980714559555, -0.04514710605144501, 0.08586341887712479, -0.018495207652449608, 0.0675024762749672, 0.004090932197868824, 0.02906869351863861, 0.007904939353466034, 0.005085343029350042, 0.001633225940167904, 0.042428210377693176, -0.0012828742619603872, 0.005903529468923807, -0.007560881320387125, -0.008219626732170582, 0.08136548846960068, 0.02425188384950161, 0.01737072691321373, -0.013015457428991795, -0.015289596281945705, 0.05666045844554901, 0.01317489892244339, 0.007317523472011089, 0.029119044542312622, 0.012159508652985096, -0.013099374249577522, 0.03324773907661438, 0.029119044542312622, -0.019871439784765244, 0.005890942178666592, -0.011169292964041233, 0.013325948268175125, 0.0305288415402174, 0.06800597161054611, 0.009835019707679749, -0.01409798115491867, 0.006172062363475561, -0.022976351901888847, -0.018713392317295074, -0.0034091100096702576, -0.05219609662890434, -0.013510565273463726, -0.03361697122454643, -0.055217090994119644, -0.028229529038071632, -0.00016599743685219437, -0.01950220763683319, -0.0021545575000345707, -0.011882583610713482, -0.010581877082586288, 0.025980565696954727, 0.05034993216395378, 0.024436499923467636, -0.05132336542010307, 0.00869375467300415, -0.06730107218027115, 0.03450648859143257, -0.032828155905008316, 0.07498782873153687, 0.01286440808326006, -0.022573553025722504, 0.004716110415756702, -0.03480858728289604, -0.01918332464993, 0.0617961511015892, 0.04699327051639557, 0.02604769729077816, -0.004573452286422253, 0.033079903572797775, 0.025997348129749298, 0.0869375467300415, -0.012528741732239723, 0.03437222167849541, -0.002853162819519639, -0.0032014164607971907, -0.006780457682907581, -0.08915294706821442, -0.010548310354351997, -0.010321736335754395, -0.032777804881334305, 0.08411795645952225, -0.011009851470589638, 0.024923216551542282, -0.002217494882643223, -0.012075591832399368, 0.033079903572797775, -0.002737777540460229, -0.009255995973944664, 0.029471494257450104, -0.05608982592821121, 0.057365354150533676, -0.03410368785262108, -0.011311951093375683, -0.007988856174051762, -0.014777705073356628, 0.051692597568035126, -0.004485339857637882, 0.004724502097815275, 0.018109193071722984, 0.025611331686377525, -0.043300941586494446, 0.036386217921972275, 0.07666616141796112, -0.04430793970823288, -0.0070364028215408325, -0.029521843418478966, -0.05384086072444916, 0.036151252686977386, -0.012486782856285572, 0.013451823964715004, -0.026484064757823944, -0.007086752913892269, -0.0642465129494667, 0.02008962258696556, 0.006986053194850683, 0.0071706692688167095, -0.03381837159395218, 0.05421009287238121, 0.006486749742180109, 0.016439253464341164, -0.025040699169039726, -0.043267376720905304, -0.02307705208659172, 0.06011781841516495, -0.005618213210254908, -0.04192471131682396, 0.008853196166455746, -0.007158081978559494, 0.0491415336728096, 0.05384086072444916, 0.011093768291175365, 0.07881442457437515, -0.03151905909180641, -0.06743533909320831, 0.0009015784598886967, 0.007254586089402437, -0.01586022786796093, -0.047765303403139114, 0.026198748499155045, -0.003809811547398567, -0.026534413918852806, -0.03571488335728645, -0.007342698518186808, 0.009432220831513405, -0.04917509853839874, -0.061259083449840546, -0.005387442652136087, 0.033667322248220444, 0.01972039043903351, -0.03167010843753815, 0.03212325647473335, 0.015172112733125687, 0.04158904403448105, -0.05068559944629669, 0.03304633870720863, -0.06206468120217323, -0.01770639233291149, -0.07116124033927917, -0.010204252786934376, -0.06934864073991776, -0.006146887317299843, 0.014341338537633419, 0.041790444403886795, -0.040246378630399704, -0.0006713324110023677, 0.022338585928082466, -0.024386150762438774, 0.015977712348103523, -0.016103586181998253, -0.03022674284875393, 0.000008522774805896915, -0.01662386953830719, 0.020525988191366196, -0.0007972072344273329, -0.08109695464372635, 0.032777804881334305, -0.006864374037832022, -0.08539348840713501, -0.050719164311885834, 0.036956850439310074, 0.02757497876882553, -0.08270815759897232, -0.008769280277192593, 0.006025208625942469, 0.061259083449840546, -0.002758756745606661, 0.03299598768353462, 0.0008187108905985951, 0.03380158916115761, 0.0006325209978967905, 0.041790444403886795, -0.0009477325947955251, -0.0007458083564415574, 0.0007526265690103173, 0.018092408776283264, 0.0067091286182403564, -0.004200023598968983, -0.035782016813755035, 0.020139973610639572, -0.008123122155666351, 0.06649547815322876, -0.049846433103084564, 0.03887014836072922, -0.06934864073991776, 0.0007054235320538282, 0.034607186913490295, 0.013904972933232784, -0.02034137211740017, 0.042327508330345154, -0.031300872564315796, 0.04074987769126892, -0.010061594657599926, 0.029152611270546913, -0.010976284742355347, 0.004351073410362005, 0.02334558591246605, -0.00018474753596819937, 0.020576339215040207, -0.018444858491420746, 0.009549703449010849, 0.038500916212797165, 0.011169292964041233, -0.011765100993216038, -0.043871574103832245, -0.003618901362642646, -0.027054697275161743, 0.005647583864629269, 0.07095983624458313, 0.023580551147460938, -0.01512176264077425, -0.07921722531318665, 0.06558917462825775, 0.020576339215040207, -0.01717771776020527, 0.07492069900035858, 0.056996122002601624, 0.020576339215040207, -0.0034888307563960552, 0.05679472163319588, -0.017739959061145782, -0.011236426420509815, 0.10123693197965622, -0.025359582155942917, 0.03504355251789093, -0.04524780437350273, 0.049812864512205124, -0.016439253464341164, -0.004716110415756702, -0.016674218699336052, -0.006583253387361765, -0.0896228775382042, -0.022623902186751366, -0.03863517940044403, 0.00726297777146101, -0.07827736437320709, 0.03897084668278694, 0.016565127298235893, -0.04165617749094963, -0.038198813796043396, -0.01678331010043621, 0.042998842895030975, 0.018478425219655037, 0.06374301761388779, 0.06448148190975189, 0.007888155989348888, 0.04732893779873848, 0.0197539571672678, -0.008194451220333576, 0.007531510666012764, 0.01288958266377449, -0.010976284742355347, 0.008169276639819145, -0.003950371872633696, 0.006965073756873608, 0.004105617292225361, -0.03829951584339142, -0.05756675451993942, -0.015465821139514446, 0.009532920084893703, 0.03114982508122921, 0.00168567372020334, 0.016858834773302078, -0.036117684096097946, -0.039407212287187576, 0.056761156767606735, 0.0008732566493563354, -0.017160935327410698, 0.05034993216395378, -0.013116157613694668, -0.028598761186003685, -0.0185287743806839, -0.028934428468346596, -0.07666616141796112, -0.016028061509132385, 0.01242804154753685, 0.03531208634376526, 0.00726297777146101, 0.011018243618309498, -0.017488209530711174, 0.040313512086868286, 0.044442206621170044, -0.021331587806344032, -0.04769816994667053, 0.01090915221720934, 0.05367302894592285, 0.10419078916311264, -0.03029387630522251, 0.02002248913049698, -0.017454642802476883, 0.012461608275771141, -0.004464360419660807, 0.0015891697257757187, 0.04333450645208359, -0.08022422343492508, -0.003937784116715193, 0.04739606752991676, -0.005156672094017267, -0.045046404004096985, -0.019602905958890915, -0.026484064757823944, 0.015239246189594269, -0.03380158916115761, -0.01740429364144802, -0.007619623094797134, 0.0067384992726147175, 0.031619757413864136, -0.057969555258750916, -0.013367907144129276, 0.07404796779155731, 0.0005465065478347242, -0.043300941586494446, -0.045079972594976425, 0.02071060612797737, 0.02608126401901245, -0.020760955289006233, -0.004078344441950321, 0.03234143927693367, 0.030025342479348183, 0.0022007115185260773, -0.01649799384176731, -0.029555410146713257, 0.0007463328656740487, 0.021163754165172577, 0.07377943396568298, -0.040917713195085526, 0.017891008406877518, 0.01649799384176731, -0.030730241909623146, 0.008479767479002476, 0.027071479707956314, -0.05894298851490021, 0.035513486713171005, -0.02576238103210926, -0.08217108994722366, -0.03259319067001343, 0.01481127180159092, -0.018092408776283264, -0.04293170943856239, 0.004569256212562323, -0.04283100739121437, -0.04672473669052124, -0.07122837007045746, -0.03165332227945328, 0.011320343241095543, 0.011068593710660934, -0.035782016813755035, -0.07921722531318665, 0.03386872261762619, 0.014366514049470425, 0.04434150829911232, -0.060050684958696365, 0.06045348569750786, 0.04904083535075188, -0.06444790959358215, -0.025510631501674652, 0.0009083966724574566, 0.01977073960006237, -0.030142825096845627, 0.053471628576517105, -0.03558062016963959, -0.043871574103832245, -0.021197320893406868, -0.04877230152487755, -0.050719164311885834, 0.06810667365789413, 0.02002248913049698, 0.018965141847729683, -0.030025342479348183, -0.00740563590079546, 0.03057919256389141, -0.055821292102336884, -0.019552556797862053, 0.018125975504517555, -0.05424366146326065, 0.014148331247270107, 0.027457496151328087, -0.025628115981817245, -0.07042276859283447, 0.06260174512863159, 0.01703505963087082, 0.04370374232530594, -0.00829515140503645, -0.06381014734506607, -0.012436432763934135, -0.05504925921559334, -0.03405333682894707, 0.01075810194015503, -0.02906869351863861, 0.019653256982564926, 0.004176946356892586, 0.05390799418091774, -0.015608479268848896, -0.021381936967372894, -0.01512176264077425, 0.04558347165584564, 0.00013754446990787983, 0.1047278568148613, 0.008752496913075447, 0.013829448260366917, 0.013711964711546898, 0.004577647894620895, 0.022002920508384705, 0.01945185661315918, 0.03568131849169731, 0.002716798335313797, -0.035177819430828094, 0.0023517613299191, -0.04105197638273239, -0.04608697071671486, 0.11130691319704056, 0.0370575487613678, 0.06908010691404343, -0.01544064562767744, 0.010456002317368984, -0.005643388256430626, 0.1070103868842125, -0.010095161385834217, -0.011311951093375683, -0.0568954236805439, -0.051994696259498596, -0.001872388063929975, -0.03437222167849541, -0.022607119753956795, 0.00568115059286356, -0.016397293657064438, 0.001975185936316848, -0.018696608021855354, 0.006037795916199684, -0.001240916084498167, 0.0032433748710900545, -0.05984928458929062, 0.030176391825079918, 0.024201534688472748, 0.04622123762965202, 0.026786163449287415, -0.02482251636683941, 0.05931222066283226, 0.02633301354944706, -0.027021130546927452, -0.001979381777346134, -0.03960861265659332, 0.024973565712571144, -0.015608479268848896, 0.045382071286439896, -0.016900794580578804, -0.07492069900035858, -0.06599197536706924, -0.020878437906503677, -0.0032748435623943806, -0.034875720739364624, 0.0016269321786239743, 0.03631908446550369, -0.0076489937491714954, -0.02577916532754898, -0.019619690254330635, -0.017907792702317238, -0.05441149324178696, -0.010607052594423294, -0.047496769577264786, 0.006025208625942469, -0.024016916751861572, 0.01048117782920599, 0.05092056468129158, 0.007363677490502596, 0.05209539458155632, 0.037258949130773544, -0.0029706459026783705, 0.009751103818416595, -0.0016531561268493533, -0.0051818471401929855, -0.0012839232804253697, -0.047429636120796204, 0.036386217921972275, 0.020727388560771942, 0.005765067413449287, 0.04437507316470146, 0.046825435012578964, -0.012486782856285572, -0.0058531793765723705, 0.009490962140262127, -0.017907792702317238, -0.04974573105573654, 0.0014653927646577358, -0.022875651717185974, -0.00791333056986332, -0.07196683436632156, -0.0610576830804348, 0.03618481755256653, 0.01409798115491867, 0.006524512078613043, 0.00258253188803792, 0.029572192579507828, -0.07982142269611359, 0.0733095034956932, -0.03944078087806702, -0.007418223191052675, -0.023781951516866684, -0.02213718742132187, -0.004737089388072491, -0.058238089084625244, -0.005412617698311806, 0.03594985231757164, -0.01582666113972664, -0.038232382386922836, 0.010867193341255188, -0.05756675451993942, -0.07941862940788269, -0.04061561077833176, 0.013527348637580872, -0.007581860758364201, -0.021415503695607185, -0.03450648859143257, 0.009633620269596577, -0.023748384788632393, 0.004716110415756702, -0.037930283695459366, -0.008198646828532219, 0.03923938050866127, -0.024923216551542282, 0.02248963713645935, -0.04427437484264374, 0.006214020773768425, 0.007661581505089998, -0.020593121647834778, 0.019938573241233826, 0.040548477321863174, -0.04283100739121437, 0.028833728283643723, 0.024386150762438774, -0.005446184426546097, 0.04041421040892601, 0.07196683436632156, 0.01705184392631054, -0.06699897348880768, -0.0305288415402174, -0.02153298817574978, -0.036990415304899216, 0.04544920474290848, -0.04702683538198471, 0.06703254580497742, -0.014223855920135975, -0.05880872160196304, -0.00470771873369813, -0.027121830731630325, 0.04155547544360161, -0.0008370676077902317, 0.014509172178804874, 0.015214070677757263, -0.036956850439310074, 0.03870231285691261, -0.07774029672145844, -0.03947434574365616, 0.009365087375044823, -0.0000050603975978447124, 0.06934864073991776, -0.04484500735998154, 0.04944363236427307, 0.030058909207582474, -0.03212325647473335, 0.034942854195833206, -0.021365154534578323, 0.061191949993371964, 0.03207290545105934, 0.00011630309745669365, -0.033667322248220444, 0.017152544111013412, -0.03177080675959587, -0.017605692148208618, -0.023463068529963493, 0.009633620269596577, 0.014853229746222496, -0.001204202533699572, 0.021935787051916122, -0.011907759122550488, 0.012939932756125927, 0.0302435252815485, -0.02487286552786827, 0.05541849136352539, -0.03836664929986, 0.03215682506561279, -0.0007893400616012514, 0.0070364028215408325, -0.07055703550577164, 0.00539583433419466, 0.054008692502975464, -0.0025573570746928453, 0.020156756043434143, -0.015851836651563644, 0.028078477829694748, 0.045717738568782806, 0.04128694534301758, -0.038467347621917725, 0.023765167221426964, 0.03269388899207115, -0.0016101488145068288, -0.007476964965462685, -0.03029387630522251, 0.04189114272594452, -0.03558062016963959, -0.01822667568922043, 0.04665760323405266, -0.016028061509132385, -0.01409798115491867, -0.013367907144129276, 0.014509172178804874, -0.027910646051168442, -0.03331487253308296, 0.028984777629375458, 0.012386083602905273, 0.048671599477529526, 0.046892568469047546, 0.027658896520733833, -0.028095262125134468, 0.015096588060259819, 0.002435677917674184, -0.04078344628214836, -0.02608126401901245, 0.019367940723896027, -0.02668546326458454, 0.0034909285604953766, 0.024772167205810547, -0.01735394261777401, -0.03803098201751709, 0.006608428433537483, 0.028682677075266838, 0.07834449410438538, 0.01168118417263031, 0.02240571938455105, -0.03324773907661438 ]
40,015
s3path.old_versions
absolute
Handle absolute method only if the path is already an absolute one since we have no way to compute an absolute path from a relative one in S3.
def absolute(self) -> S3Path: """ Handle absolute method only if the path is already an absolute one since we have no way to compute an absolute path from a relative one in S3. """ if self.is_absolute(): return self # We can't compute the absolute path from a relative one raise ValueError("Absolute path can't be determined for relative S3Path objects")
(self) -> s3path.old_versions.S3Path
[ 0.037454016506671906, -0.014568356797099113, -0.05914526432752609, 0.052170585840940475, -0.003382718423381448, -0.0658060759305954, 0.008156012743711472, 0.04544002190232277, 0.05182185024023056, 0.028631050139665604, 0.056076403707265854, 0.02087172120809555, 0.04700932279229164, 0.00346118351444602, -0.03710528463125229, 0.08271966874599457, 0.02549244463443756, 0.007863948121666908, 0.012528263963758945, 0.03199633210897446, -0.0003065043711103499, -0.012598010711371899, -0.005196134559810162, -0.02810794860124588, 0.007593679707497358, 0.04366147890686989, 0.03717502951622009, 0.021412258967757225, 0.009485561400651932, -0.028439246118068695, 0.005283317994326353, 0.012458517216145992, 0.03565803915262222, 0.06252798438072205, 0.044951796531677246, -0.004864837508648634, -0.0059982226230204105, 0.021447133272886276, -0.04781141132116318, -0.029084404930472374, -0.029066966846585274, 0.026050418615341187, 0.038290977478027344, -0.034838512539863586, 0.0768609419465065, 0.05332140624523163, -0.034803640097379684, 0.03867458552122116, -0.024080073460936546, -0.02326054871082306, 0.05028742179274559, 0.05516969785094261, -0.0039036397356539965, -0.013016491197049618, -0.03783762454986572, 0.009380941279232502, 0.058273427188396454, 0.05311216786503792, -0.04003464803099632, -0.005784622859209776, 0.02172612026333809, -0.018151598051190376, 0.043800972402095795, -0.06699177622795105, 0.020941467955708504, -0.013042646460235119, -0.031229117885231972, -0.04788115993142128, -0.017314637079834938, 0.09708750993013382, -0.0351872481405735, 0.018169034272432327, -0.04920634627342224, -0.010793313384056091, 0.023452352732419968, -0.047358058393001556, 0.004241475369781256, 0.028282316401600838, 0.021586626768112183, -0.012397488579154015, -0.09813370555639267, -0.05199621990323067, 0.0006903840694576502, -0.06019146367907524, -0.02896234765648842, 0.004457254894077778, 0.017689524218440056, -0.04805552586913109, 0.024045199155807495, 0.06870057433843613, -0.012781095691025257, 0.025422697886824608, -0.030915256589651108, -0.027079183608293533, 0.05844779685139656, -0.00554050924256444, -0.025091402232646942, -0.08509106189012527, -0.014141158200800419, -0.03672167658805847, -0.019668590277433395, 0.06123766675591469, 0.024481117725372314, -0.001700077555142343, 0.03555341809988022, 0.0030601397156715393, 0.014254496432840824, -0.06775899231433868, 0.04153420403599739, -0.03049677610397339, -0.03909306600689888, 0.036756549030542374, -0.03529186546802521, 0.03469901904463768, -0.03187427669763565, -0.05736672133207321, -0.013853452168405056, -0.021865613758563995, -0.017192579805850983, -0.026887381449341774, 0.02191792242228985, 0.019267546012997627, -0.032606616616249084, -0.0021752275060862303, 0.03797711804509163, 0.006190026178956032, -0.001017867005430162, -0.01063638273626566, -0.011124609969556332, -0.03822123259305954, -0.003001290839165449, -0.006682612467557192, -0.06235361471772194, -0.010339958593249321, -0.004572772886604071, 0.033304084092378616, 0.05593691021203995, 0.05025254935026169, -0.050147928297519684, 0.08369612693786621, 0.07047910988330841, 0.0028530790004879236, 0.051507990807294846, -0.00858321227133274, 0.0015300698578357697, 0.044254325330257416, 0.004960739053785801, 0.003550546709448099, -0.03752376511693001, -0.001393845654092729, 0.021656373515725136, 0.00039641233161091805, 0.07595423609018326, 0.045788757503032684, 0.002138174371793866, -0.08306840807199478, -0.035030316561460495, 0.0018995098071172833, 0.020993778482079506, -0.011804641224443913, -0.01687871851027012, -0.012432361952960491, 0.01504786591976881, -0.028491556644439697, -0.0015464166644960642, 0.0028530790004879236, -0.004882274195551872, 0.010950243100523949, -0.013452408835291862, 0.01340009830892086, -0.013356506824493408, 0.02568424865603447, -0.05513482168316841, 0.013103675097227097, -0.007964209653437138, 0.019145488739013672, 0.0026743528433144093, 0.0504617914557457, 0.019215235486626625, -0.014446300454437733, 0.01667819730937481, -0.049066852778196335, 0.03661705553531647, -0.010235338471829891, 0.03773300349712372, 0.035692911595106125, -0.024707794189453125, 0.053460899740457535, 0.03428053855895996, 0.034123606979846954, -0.055483557283878326, 0.06033095717430115, 0.020697355270385742, -0.004082365892827511, 0.025579629465937614, -0.057192351669073105, 0.05255419388413429, 0.014699132181704044, -0.01537044532597065, 0.0966690257191658, -0.038290977478027344, -0.006381829734891653, 0.00846551451832056, -0.010985116474330425, 0.0175325945019722, 0.046451348811388016, -0.00625541340559721, 0.009380941279232502, -0.06971190124750137, 0.09157751500606537, -0.0636439323425293, 0.021638935431838036, -0.06273721903562546, -0.043626606464385986, 0.003962488379329443, 0.014115002937614918, -0.03422822803258896, 0.01935472898185253, 0.010305085219442844, 0.050182804465293884, 0.07630296796560287, -0.056320518255233765, 0.03860483691096306, 0.018325963988900185, 0.043173253536224365, -0.0037990196142345667, 0.01737566478550434, -0.021028650924563408, -0.029746998101472855, -0.03417591750621796, -0.0032323270570486784, -0.04519590735435486, 0.02416725642979145, -0.0003288451407570392, 0.05952886864542961, -0.004908428993076086, 0.025352951139211655, 0.014786316081881523, -0.0037924807984381914, -0.009485561400651932, -0.04550977051258087, 0.0038535092025995255, -0.0006576902815140784, 0.0395115464925766, -0.06842157989740372, -0.022022543475031853, 0.011813359335064888, 0.044463567435741425, 0.0020106686279177666, -0.04920634627342224, 0.04282451793551445, 0.09924965351819992, -0.06406240910291672, 0.00608976511284709, 0.032345063984394073, -0.025196021422743797, -0.03672167658805847, -0.04854375496506691, 0.010575354099273682, 0.024289313703775406, 0.001039117923937738, -0.044707681983709335, 0.04892735928297043, -0.0126241659745574, -0.05736672133207321, -0.007606757339090109, -0.0011312054703012109, -0.028805416077375412, -0.03843047097325325, 0.08202220499515533, 0.006211821921169758, 0.006251054350286722, -0.036547306925058365, -0.013051364570856094, 0.010793313384056091, 0.037209901958703995, -0.04003464803099632, -0.008051392622292042, -0.04763704538345337, -0.013469845056533813, -0.005361783318221569, 0.009973788633942604, 0.0197906456887722, -0.0027048669289797544, 0.02877054363489151, -0.025108838453888893, -0.010122000239789486, -0.027305861935019493, -0.013539591804146767, 0.028631050139665604, 0.01647767424583435, 0.012057472951710224, -0.07197866588830948, -0.05007818341255188, 0.041848063468933105, -0.003328228835016489, 0.002089133718982339, -0.058343175798654556, 0.04739293083548546, 0.0028487197123467922, -0.06465525925159454, 0.03429797664284706, 0.014899654313921928, 0.047079071402549744, 0.029642378911376, 0.024254439398646355, 0.009250165894627571, -0.0007508675917051733, 0.05227520689368248, 0.060540199279785156, -0.034803640097379684, 0.019407039508223534, -0.026381716132164, 0.03888382390141487, 0.022772321477532387, 0.06451576203107834, 0.02371390163898468, 0.004712266381829977, 0.001060368842445314, 0.03651243448257446, -0.06706152111291885, 0.02943313866853714, -0.018953684717416763, -0.026486337184906006, -0.018395710736513138, -0.022720010951161385, -0.058517541736364365, 0.0373493954539299, 0.008408845402300358, 0.06664304435253143, -0.014280651696026325, 0.035030316561460495, 0.001853738445788622, 0.010034817270934582, 0.0008053572382777929, -0.007824716158211231, 0.014298087917268276, 0.004938943311572075, 0.06744512915611267, -0.00855705700814724, 0.043382491916418076, 0.003955949563533068, 0.025998109951615334, 0.010610227473080158, -0.028038201853632927, 0.016826407983899117, 0.020052196457982063, 0.006412344053387642, 0.020069634541869164, -0.04739293083548546, -0.04352198541164398, -0.021900486201047897, -0.03032240830361843, 0.017715679481625557, -0.01797723025083542, 0.0395115464925766, -0.017462847754359245, 0.01973833702504635, 0.03475132957100868, 0.012292868457734585, 0.08188270777463913, -0.11033939570188522, -0.04038337990641594, -0.03199633210897446, 0.008251914754509926, 0.015614558942615986, 0.0020520808175206184, -0.02064504474401474, -0.008657318539917469, -0.029642378911376, -0.03159528598189354, -0.023679029196500778, 0.03783762454986572, -0.0966690257191658, 0.03157785162329674, 0.06535272300243378, 0.013330351561307907, -0.011290258727967739, 0.00455969525501132, -0.001698987791314721, 0.04244090989232063, 0.021359948441386223, -0.02988649159669876, 0.01340009830892086, 0.023452352732419968, 0.026451462879776955, 0.03888382390141487, -0.026329405605793, -0.014873499050736427, 0.010191746987402439, 0.0351349376142025, -0.032432250678539276, 0.02943313866853714, -0.08020878583192825, -0.03011316806077957, -0.038360726088285446, 0.010392269119620323, 0.015727896243333817, 0.0012706989655271173, -0.015518656931817532, 0.01557096652686596, 0.006891852710396051, -0.04003464803099632, -0.0007301614969037473, -0.006137716118246317, -0.023225674405694008, 0.02566681243479252, 0.057610832154750824, -0.023644154891371727, -0.008151654154062271, -0.023853396996855736, -0.08739270269870758, -0.05837804824113846, 0.010174310766160488, 0.0231036189943552, 0.021394822746515274, 0.017053086310625076, -0.036791421473026276, 0.00977326650172472, 0.01076715812087059, -0.02526576817035675, 0.00019534544844646007, -0.04122034087777138, -0.007815998047590256, 0.02193536050617695, -0.044045086950063705, -0.033931802958250046, -0.019040869548916817, -0.007541369646787643, 0.011891825124621391, 0.023609282448887825, -0.011508217081427574, -0.06259772926568985, -0.01361805759370327, 0.019668590277433395, 0.03225788101553917, 0.014672976918518543, 0.008696550503373146, -0.00977326650172472, 0.02986905537545681, -0.0074672638438642025, -0.029572632163763046, -0.06674765795469284, 0.04676521196961403, 0.03140348568558693, -0.030601397156715393, -0.04027876257896423, 0.029066966846585274, 0.03485595062375069, -0.006011299788951874, -0.00274845864623785, 0.01782901957631111, 0.013469845056533813, -0.04432407394051552, -0.05782007426023483, -0.04770679399371147, 0.01777670904994011, -0.04223167151212692, -0.005902320612221956, -0.006002581678330898, -0.00018921536684501916, 0.033687692135572433, 0.060470450669527054, -0.0593196302652359, -0.03387949615716934, 0.007196994964033365, 0.012502108700573444, -0.004058390390127897, -0.01888393796980381, -0.04725343734025955, 0.04289426654577255, -0.08941536396741867, -0.07006063312292099, 0.006185666657984257, 0.029345953837037086, -0.023138491436839104, 0.06388804316520691, 0.03839559853076935, -0.027794089168310165, -0.04924122244119644, -0.06978164613246918, -0.061377160251140594, -0.04240603744983673, 0.01848289556801319, 0.042929138988256454, -0.008587571792304516, -0.03818635642528534, -0.010575354099273682, 0.06618968397378922, -0.002881413558498025, 0.027602285146713257, 0.045370277017354965, -0.05816880986094475, 0.035256993025541306, -0.05074077844619751, -0.004182626958936453, -0.001354613108560443, 0.011726176366209984, -0.03972078859806061, -0.05255419388413429, 0.013112393207848072, -0.005156902130693197, 0.021638935431838036, 0.033705126494169235, 0.0017894406337291002, 0.020679917186498642, -0.05628564581274986, -0.04564926400780678, -0.010392269119620323, -0.056983113288879395, -0.026625830680131912, 0.021621499210596085, 0.014420145191252232, 0.06343469023704529, -0.008639881387352943, 0.03560572862625122, -0.04348711296916008, 0.00911939051002264, 0.07128120213747025, -0.004494307562708855, -0.0013567926362156868, -0.053879380226135254, -0.004594568628817797, -0.05185672640800476, -0.05687849223613739, -0.04969457536935806, 0.0034045143984258175, 0.012380052357912064, -0.004293785896152258, -0.01907574199140072, -0.02263282798230648, -0.025998109951615334, -0.013783705420792103, 0.04505641385912895, 0.013792424462735653, 0.14800265431404114, -0.047567300498485565, -0.0153878815472126, -0.09778497368097305, 0.021673809736967087, 0.02720124088227749, 0.0028683359269052744, -0.012013881467282772, -0.03475132957100868, -0.01823878102004528, -0.01076715812087059, -0.03530930355191231, -0.0054228114895522594, 0.06946778297424316, -0.004638160578906536, 0.030828073620796204, 0.007414953783154488, 0.045997995883226395, 0.042057301849126816, 0.08278942108154297, 0.004812527447938919, -0.0050958734937012196, -0.013286760076880455, -0.05558817833662033, 0.0028639768715947866, -0.012929308228194714, 0.005130746867507696, -0.006490808911621571, 0.024498553946614265, -0.02680019661784172, 0.02221434749662876, -0.008282429538667202, 0.05869190767407417, 0.04627698287367821, -0.03187427669763565, -0.038988444954156876, 0.05311216786503792, 0.0063120829872787, -0.030444465577602386, 0.014420145191252232, 0.01996501348912716, -0.0061943852342665195, -0.022109726443886757, -0.010854341089725494, 0.030845509842038155, 0.079092837870121, -0.03773300349712372, -0.012903152965009212, 0.0046250829473137856, -0.02941570058465004, -0.03553598001599312, 0.006769795902073383, 0.04784628748893738, -0.04550977051258087, -0.04673033580183983, -0.0063905478455126286, -0.009250165894627571, -0.020697355270385742, -0.002329978160560131, 0.025963235646486282, -0.020522987470030785, 0.038290977478027344, -0.05572767183184624, -0.011351287364959717, -0.011142047122120857, 0.009006052277982235, 0.03180452808737755, 0.024080073460936546, 0.07846511900424957, 0.00690928939729929, 0.0010107832495123148, -0.015710460022091866, -0.00019970462017226964, -0.06008684262633324, 0.0018068773206323385, 0.004248014185577631, 0.03028753586113453, 0.016573576256632805, -0.004612005315721035, -0.009703519754111767, -0.002445496153086424, -0.0679682269692421, 0.006377470679581165, -0.05067102983593941, 0.014202186837792397, -0.015161204151809216, -0.04289426654577255, -0.030148042365908623, 0.06434139609336853, -0.09618079662322998, -0.0031930943951010704, 0.07204841822385788, -0.015143767930567265, 0.0022754883393645287, -0.002084774663671851, 0.051089510321617126, -0.05593691021203995, 0.035431358963251114, -0.025073964148759842, 0.024237003177404404, 0.016338180750608444, 0.012667757458984852, 0.05663437768816948, 0.021604062989354134, 0.03815148398280144, -0.030427029356360435, -0.033025097101926804, -0.0833473950624466, 0.04244090989232063, -0.02899722009897232, -0.0022035620640963316, -0.0004765121266245842, -0.022127162665128708, 0.0013829476665705442, -0.04781141132116318, -0.008156012743711472, 0.014097566716372967, -0.010924087837338448, -0.018360838294029236, 0.023243112489581108, 0.0063469563610851765, 0.032432250678539276, -0.06685227900743484, 0.0005737761966884136, -0.024271877482533455, 0.0023495943751186132, -0.07386182993650436, -0.03843047097325325, 0.057610832154750824, 0.010958961211144924, -0.0031298864632844925, 0.001138834049925208, 0.02061017043888569, 0.0012706989655271173, 0.014516047202050686, 0.005187415983527899, -0.017942357808351517, -0.059424251317977905, -0.01063638273626566, -0.026678141206502914, 0.002340876031666994, 0.05011305585503578, -0.04627698287367821, 0.018587514758110046, -0.013792424462735653, 0.004965098574757576, 0.021133271977305412, -0.0726063922047615, 0.050392042845487595, 0.03623344749212265, -0.0066215842962265015, 0.06280697137117386, 0.015684304758906364, 0.023417478427290916, -0.07853486388921738, 0.020522987470030785, -0.04965970292687416, -0.008212682791054249, 0.039232559502124786, 0.018971122801303864, 0.013766269199550152, -0.013530873693525791, 0.01351343747228384, 0.038953572511672974, 0.020034760236740112, 0.05447223037481308, -0.0036464484874159098, 0.003389257239177823, -0.0005857638898305595, 0.004681752063333988, -0.008182168006896973, 0.005427170544862747, 0.008683472871780396, -0.006900571286678314, 0.01601560227572918, -0.030235225334763527, 0.02221434749662876, -0.003500416176393628, -0.07832562178373337, 0.04244090989232063, -0.015300698578357697, 0.028718233108520508, -0.024655483663082123, 0.0005130202043801546, -0.01296418160200119, -0.045126162469387054, -0.060051970183849335, 0.01935472898185253, -0.023347731679677963, 0.03783762454986572, -0.018308527767658234, -0.042510658502578735, -0.015562248416244984, -0.01393191795796156, 0.051926471292972565, -0.015762770548462868, 0.02814282290637493, 0.01912805251777172, 0.022109726443886757, 0.038535092025995255, -0.023365167900919914, 0.023190801963210106, 0.00901477038860321, -0.03574522212147713, 0.03225788101553917, 0.04240603744983673, -0.007253664080053568, -0.0024978062137961388, -0.05398400127887726, 0.02369646541774273, -0.050845395773649216, -0.03602420911192894, 0.05154286324977875, -0.013496000319719315, 0.007654708344489336, 0.04369635134935379, 0.009363504126667976, 0.06877031922340393, 0.036582183092832565, 0.015928419306874275, -0.0439753383398056, -0.06057507172226906, 0.035919588059186935, 0.014934527687728405, -0.0038338929880410433, -0.05440248176455498, 0.01054919883608818, 0.007428031414747238, 0.054367609322071075, 0.029171587899327278, 0.02877054363489151, -0.021447133272886276, 0.0395464189350605 ]
40,018
s3path.old_versions
chmod
chmod method is unsupported on S3 service AWS S3 don't have this file system action concept
def chmod(self, mode, *, follow_symlinks=True): """ chmod method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.chmod.__qualname__) raise NotImplementedError(message)
(self, mode, *, follow_symlinks=True)
[ -0.010539916343986988, -0.004181088414043188, 0.0017013585893437266, 0.026592234149575233, 0.027647076174616814, -0.006741633173078299, 0.011407609097659588, 0.04937342554330826, 0.0342823751270771, 0.0456644631922245, 0.019565623253583908, 0.01014009676873684, 0.09377888590097427, -0.011016296222805977, -0.016554217785596848, 0.03644309937953949, -0.0003325624275021255, -0.025724541395902634, -0.008175027556717396, 0.060466282069683075, 0.008957652375102043, -0.025707527995109558, 0.024975944310426712, -0.07839860022068024, 0.024669699370861053, 0.08935534954071045, -0.0019799559377133846, 0.0612829364836216, 0.02894010953605175, -0.017609061673283577, -0.05042826756834984, 0.04600473493337631, -0.005248690955340862, 0.06264401972293854, 0.035252150148153305, 0.013313130475580692, -0.015295213088393211, 0.048182472586631775, -0.06397107988595963, -0.0032006807159632444, -0.08186937123537064, 0.04583460092544556, 0.014172316528856754, -0.07458756119012833, 0.0403902530670166, 0.03855278342962265, -0.010676024481654167, 0.07744584232568741, 0.033295586705207825, -0.07588059455156326, 0.0012356116203591228, 0.04835261031985283, 0.019769785925745964, -0.059071168303489685, 0.008702448569238186, 0.013772496953606606, 0.025860650464892387, 0.016724353656172752, -0.03637504577636719, 0.004093893803656101, 0.048863016068935394, 0.03098173812031746, 0.013993673957884312, -0.03753196820616722, -0.007039370946586132, -0.07907914370298386, -0.03756599500775337, -0.025945717468857765, 0.004351224284619093, 0.03440146893262863, -0.0254012830555439, -0.03974373638629913, 0.014674217440187931, 0.0019363586325198412, -0.034129250794649124, -0.01530371978878975, 0.009374485351145267, -0.017438925802707672, 0.03048834577202797, 0.040798578411340714, -0.03569450229406357, -0.05716564878821373, 0.011935030110180378, 0.008136747404932976, 0.0029476035851985216, 0.029348434880375862, -0.0026732597034424543, -0.0454602986574173, -0.04355477914214134, -0.017694128677248955, -0.03259802982211113, 0.011024802923202515, -0.027340831235051155, -0.05127894505858421, -0.006431135348975658, 0.03896110877394676, -0.03719169646501541, -0.07404312491416931, 0.012743175029754639, 0.006401361431926489, 0.00608661025762558, -0.024057209491729736, 0.06257596611976624, -0.0386548675596714, 0.04770609363913536, -0.04508600011467934, -0.05685940384864807, -0.0012813356006518006, -0.041513148695230484, -0.03756599500775337, 0.04767206683754921, 0.07520005106925964, 0.03217269107699394, -0.020059017464518547, 0.012972858734428883, -0.006358827464282513, 0.04947550594806671, -0.08568041771650314, -0.02220272831618786, -0.022781191393733025, 0.022406892850995064, -0.02943350188434124, 0.030063005164265633, -0.044371429830789566, 0.057335782796144485, 0.019837841391563416, -0.0025371508672833443, 0.013100461103022099, 0.0029157032258808613, 0.0056187366135418415, -0.05076853930950165, -0.028242552652955055, -0.03719169646501541, 0.03443549573421478, 0.0007773081888444722, -0.016707340255379677, 0.030165087431669235, -0.0029539838433265686, -0.03045431710779667, 0.0019363586325198412, 0.03644309937953949, -0.00507004838436842, 0.025503365322947502, 0.015567430295050144, -0.055566370487213135, 0.008230322040617466, -0.004576654639095068, -0.006950049661099911, 0.028157483786344528, -0.0014631683006882668, 0.03613685443997383, 0.02363187074661255, 0.0055549354292452335, 0.023529788479208946, -0.004555387422442436, 0.019735759124159813, 0.01944652758538723, 0.023461734876036644, -0.0298418290913105, 0.027408886700868607, -0.032393865287303925, 0.008145254105329514, -0.041547175496816635, 0.0027710876893252134, 0.02242390625178814, -0.029263366013765335, 0.024329427629709244, 0.04181939363479614, 0.005461360793560743, 0.01951458305120468, 0.046072788536548615, 0.04144509509205818, 0.087722048163414, 0.00042560548172332346, 0.11004386842250824, 0.05757397413253784, -0.00026012177113443613, -0.021913498640060425, 0.04760401323437691, -0.08146104961633682, 0.012292315252125263, -0.03213866427540779, 0.032734137028455734, -0.027306804433465004, 0.004997740499675274, 0.05862881615757942, -0.018851052969694138, 0.056280940771102905, -0.010174124501645565, 0.002945476910099387, 0.025860650464892387, -0.006660818587988615, 0.005941994488239288, 0.010735572315752506, 0.01034426037222147, -0.05655315890908241, 0.04229577258229256, -0.03263205662369728, -0.014997475780546665, 0.10194540023803711, -0.011220459826290607, 0.05366084724664688, 0.01888507977128029, 0.024958929046988487, 0.08499987423419952, 0.0049211797304451466, 0.04651514068245888, 0.01076109241694212, -0.04770609363913536, 0.018306618556380272, 0.029858842492103577, 0.009442539885640144, 0.011688333004713058, 0.01805141381919384, 0.03610282763838768, 0.07581253349781036, -0.040186088532209396, 0.014555122703313828, 0.029076216742396355, 0.036272965371608734, -0.002515883883461356, 0.025129064917564392, -0.010693038813769817, 0.02735784463584423, 0.06887099146842957, -0.02114788629114628, 0.042227718979120255, -0.03794029727578163, -0.020960737019777298, 0.005423080176115036, -0.010939734987914562, 0.013202542439103127, 0.007149959448724985, 0.05195948854088783, 0.022781191393733025, -0.0544775016605854, 0.058356598019599915, 0.0008155887480825186, -0.035252150148153305, -0.012930325232446194, -0.02664327435195446, -0.011169418692588806, 0.021913498640060425, 0.058050353080034256, -0.0342823751270771, 0.021726349368691444, 0.0349799320101738, 0.028616851195693016, -0.014470054768025875, -0.05148310959339142, 0.06546827405691147, 0.057710081338882446, -0.08186937123537064, -0.01492091454565525, -0.0005250286194495857, -0.05287822335958481, 0.031679295003414154, -0.02422734536230564, -0.02928038127720356, 0.02034824900329113, -0.0666252002120018, -0.04481378570199013, 0.04522211104631424, -0.07240981608629227, 0.0192253515124321, -0.011722360737621784, 0.008949145674705505, 0.025673501193523407, -0.05461360886693001, 0.06737379729747772, 0.04249993711709976, -0.04004998132586479, -0.011815935373306274, 0.03235983848571777, -0.005691044498234987, -0.03406119719147682, -0.026898479089140892, 0.01526118628680706, -0.01823856309056282, -0.0384507030248642, 0.0386548675596714, 0.03179839253425598, -0.0063758413307368755, 0.0384507030248642, -0.03222373127937317, 0.007498737890273333, 0.02099476382136345, 0.039403464645147324, 0.020484356209635735, 0.020365262404084206, -0.020229153335094452, 0.049985915422439575, -0.055566370487213135, -0.017345350235700607, 0.06172528862953186, 0.04035622626543045, -0.05049632117152214, -0.02751096710562706, 0.05825451761484146, -0.025418296456336975, -0.07608475536108017, 0.0006943669286556542, 0.0092128561809659, 0.010157110169529915, -0.017081640660762787, -0.004219369031488895, 0.06022809073328972, -0.016145892441272736, -0.02087567001581192, 0.06427732855081558, 0.03828056901693344, -0.017387883737683296, -0.07982774078845978, 0.05753994733095169, 0.004793577827513218, 0.04882898926734924, 0.013100461103022099, 0.05216365307569504, -0.013993673957884312, 0.022440919652581215, -0.03002897836267948, -0.021505171433091164, -0.008149507455527782, -0.024261372163891792, 0.016673313453793526, -0.0473998486995697, -0.020943723618984222, 0.0008432358154095709, -0.0030135312117636204, 0.0298418290913105, -0.01019113790243864, 0.06540022045373917, 0.021692320704460144, 0.0022968340199440718, -0.08983173221349716, -0.00846000574529171, -0.009544621221721172, -0.0350479856133461, 0.026285989210009575, 0.06434538215398788, -0.002862535649910569, 0.023733951151371002, 0.01805141381919384, 0.01888507977128029, -0.0419895276427269, 0.043963104486465454, 0.06414121389389038, 0.002552037825807929, 0.0307095218449831, -0.017626075074076653, 0.047093603760004044, 0.025707527995109558, -0.023461734876036644, 0.01111837849020958, -0.053116414695978165, -0.020756574347615242, 0.005346519406884909, -0.013160008005797863, 0.009842359460890293, -0.044711701571941376, 0.04498391970992088, -0.05604274943470955, 0.026371058076620102, -0.012139192782342434, 0.01507403701543808, 0.02090969681739807, -0.010548423044383526, 0.009527607820928097, 0.005678283981978893, -0.05144908279180527, 0.03654517978429794, -0.03824653849005699, -0.014759285375475883, -0.021045805886387825, -0.022696122527122498, 0.0508025661110878, 0.03014807403087616, -0.015005982480943203, -0.010012495331466198, 0.023802006617188454, -0.001386607182212174, -0.00654597720131278, -0.0011197065468877554, -0.010276205837726593, 0.014223357662558556, 0.049543559551239014, 0.005116835702210665, -0.035558395087718964, 0.03458862006664276, 0.007987878285348415, -0.0014982589054852724, -0.019548609852790833, 0.011254486627876759, -0.051381029188632965, -0.02359784208238125, 0.008298376575112343, 0.000986256287433207, 0.03749794140458107, -0.023461734876036644, 0.023989155888557434, -0.014308425597846508, -0.015482362359762192, -0.026200922206044197, 0.02332562580704689, -0.012241275049746037, 0.04481378570199013, -0.01429991889744997, 0.05617886036634445, -0.0016460643382743, -0.013678922317922115, 0.014648697338998318, 0.02351277507841587, -0.06240583211183548, 0.025537392124533653, 0.017404897138476372, 0.016894489526748657, -0.030624452978372574, -0.07295425236225128, -0.04127495735883713, 0.027630062773823738, 0.010812133550643921, -0.060772527009248734, -0.006218465510755777, 0.017881277948617935, 0.038416676223278046, -0.04059441387653351, -0.006690592505037785, 0.002868915908038616, 0.05845867842435837, 0.028548795729875565, 0.03353377804160118, 0.06733977049589157, -0.003047558479011059, -0.00038759075687266886, -0.016630779951810837, 0.0201951265335083, 0.002581811510026455, 0.031373050063848495, -0.020960737019777298, 0.01409575529396534, -0.005465614143759012, -0.04763804003596306, -0.05890103429555893, -0.037327807396650314, 0.006082356907427311, 0.004763803910464048, 0.00887258443981409, 0.01854480803012848, 0.03266608342528343, 0.04529016464948654, -0.007052130997180939, 0.0667613074183464, -0.021641280502080917, -0.022406892850995064, -0.02031422033905983, -0.024244358763098717, 0.02369992434978485, -0.037668079137802124, -0.016111865639686584, -0.0771736204624176, 0.014138289727270603, 0.012224260717630386, 0.038042377680540085, -0.045732516795396805, -0.03933541104197502, 0.034350428730249405, -0.0015237792395055294, -0.0061504109762609005, 0.001418507657945156, -0.035626448690891266, 0.04842066392302513, -0.05236781761050224, -0.002696653362363577, -0.006380094680935144, 0.0508706197142601, 0.02825956605374813, -0.01507403701543808, -0.006252492778003216, -0.021658293902873993, 0.0017353857401758432, -0.018187522888183594, -0.08527208864688873, 0.03729378059506416, -0.004640455357730389, -0.013670415617525578, -0.06271207332611084, -0.012845257297158241, -0.014776298776268959, 0.04273812472820282, -0.007396656088531017, 0.051381029188632965, -0.028650877997279167, -0.009502087719738483, 0.014112768694758415, 0.0013440732145681977, 0.024142278358340263, -0.054171256721019745, -0.010727065615355968, -0.05913922190666199, -0.010114576667547226, 0.005903714336454868, -0.009059734642505646, -0.05740383639931679, -0.013644895516335964, 0.015422815456986427, 0.02868490479886532, -0.02329159900546074, -0.0650259256362915, 0.017949333414435387, -0.028957122936844826, -0.02596273086965084, 0.04314645379781723, 0.001547172898426652, 0.0562128871679306, -0.0005114708910696208, -0.01873195730149746, -0.010208151303231716, 0.05250392481684685, 0.011654306203126907, -0.014197836630046368, 0.06019406393170357, -0.101469025015831, -0.0022372864186763763, 0.00729032140225172, -0.011764894239604473, -0.004234256222844124, -0.0034048438537865877, -0.056314967572689056, 0.013006886467337608, -0.011849962174892426, -0.023274585604667664, 0.002199005801230669, -0.05495388060808182, -0.007409416604787111, -0.006648058537393808, 0.054885827004909515, -0.013023899868130684, 0.025520378723740578, 0.04498391970992088, 0.011696839705109596, -0.02220272831618786, -0.009093761444091797, -0.039063192903995514, 0.02087567001581192, -0.04627695307135582, -0.017438925802707672, -0.030947711318731308, -0.11698541045188904, 0.09044422209262848, -0.032734137028455734, -0.011722360737621784, 0.02841268852353096, 0.01612887904047966, 0.08261796832084656, 0.08806231617927551, -0.02894010953605175, 0.040458306670188904, -0.11079246550798416, -0.03613685443997383, 0.02245793305337429, -0.0769014060497284, 0.005920727737247944, 0.008149507455527782, -0.034877851605415344, 0.001971449237316847, -0.0000778903195168823, 0.04447351396083832, 0.02230481058359146, 0.003540952457115054, -0.07043624669313431, -0.0009681793162599206, 0.08112077414989471, 0.03353377804160118, -0.008617380633950233, 0.0092128561809659, -0.04447351396083832, 0.0153207341209054, -0.03266608342528343, 0.006962809711694717, -0.003064572112634778, -0.0508025661110878, -0.05264003202319145, -0.005878193769603968, 0.005563442595303059, -0.012564532458782196, -0.017949333414435387, 0.017387883737683296, 0.018408698961138725, -0.05563442409038544, -0.0031581467483192682, -0.02909323014318943, -0.0272387508302927, -0.007941091433167458, -0.08139299601316452, 0.013917112722992897, -0.005223170854151249, 0.024057209491729736, -0.06305234879255295, 0.008136747404932976, 0.02992689609527588, 0.0031560200732201338, -0.021352048963308334, 0.014657204039394855, 0.04512002691626549, -0.010029508732259274, 0.039097219705581665, -0.03356780484318733, 0.012862270697951317, -0.002617965452373028, -0.002847648924216628, -0.06533216685056686, 0.05988781899213791, 0.02347874827682972, -0.012853763997554779, 0.017694128677248955, 0.0162394680082798, -0.05849270522594452, 0.01220724731683731, 0.04620889946818352, -0.04409921169281006, -0.05012202262878418, -0.09330250322818756, -0.048556771129369736, 0.019191324710845947, -0.09071643650531769, -0.01211367268115282, -0.03278518095612526, 0.006346067413687706, -0.0403902530670166, -0.04794428497552872, -0.014350959099829197, -0.03821251168847084, 0.09656911343336105, -0.020552411675453186, 0.025639472529292107, -0.02890608087182045, -0.04447351396083832, 0.030590426176786423, -0.010880188085138798, -0.007222266867756844, 0.03195151314139366, -0.019616663455963135, -0.005150862969458103, 0.02099476382136345, -0.04028816893696785, 0.019871868193149567, 0.03501395881175995, -0.03790626674890518, -0.00494669983163476, -0.05083659291267395, -0.04882898926734924, -0.00763059314340353, -0.005316745489835739, 0.029110245406627655, 0.03834862262010574, -0.011203446425497532, 0.0046574692241847515, -0.0773097351193428, 0.012258288450539112, -0.08595263212919235, 0.012751682661473751, -0.01951458305120468, 0.002743440680205822, 0.06318845599889755, 0.029671693220734596, -0.02456761710345745, 0.0005175851401872933, -0.013653402216732502, -0.025384269654750824, 0.038042377680540085, 0.045358218252658844, 0.010038015432655811, -0.006728873122483492, 0.015848154202103615, 0.013789511285722256, 0.055940669029951096, 0.041206903755664825, -0.042636044323444366, 0.01907222904264927, -0.006818194407969713, -0.02062046527862549, -0.02698354609310627, 0.002209639409556985, 0.007787968497723341, -0.0011707473313435912, 0.01805141381919384, 0.010242178104817867, -0.005299732089042664, -0.04984980449080467, -0.056587185710668564, 0.026558207347989082, 0.0011207698844373226, -0.023002367466688156, -0.008940638974308968, -0.042976316064596176, -0.014657204039394855, 0.006869235076010227, 0.04845469072461128, 0.03606880083680153, -0.008268602192401886, 0.04335061460733414, 0.04614084213972092, 0.005108329001814127, -0.059411440044641495, 0.0014089375035837293, -0.03902916610240936, -0.026558207347989082, -0.03960762545466423, 0.04229577258229256, -0.03281920775771141, -0.034945905208587646, 0.012300821952521801, -0.002360634971410036, -0.02996092475950718, 0.018187522888183594, -0.00009151447738986462, -0.001723688910715282, -0.0306074395775795, 0.00018103518232237548, 0.014350959099829197, -0.01264109369367361, -0.028140470385551453, -0.01516761165112257, 0.008183534257113934, -0.022508973255753517, -0.08962757140398026, -0.06271207332611084, 0.06335859000682831, -0.03322753310203552, -0.00103836040943861, 0.033261559903621674, 0.02732381783425808, -0.017660101875662804, 0.03610282763838768, 0.003324029268696904, 0.025605445727705956, 0.006371587514877319, 0.01657973974943161, 0.000429593026638031, 0.053490713238716125, -0.0298418290913105, 0.030097031965851784, -0.05189143493771553, -0.03998192399740219, 0.05702953785657883, -0.03278518095612526, -0.05212962627410889, 0.07159316539764404, 0.01043783500790596, 0.01124597992748022, 0.013338650576770306, -0.006682085804641247, -0.011092857457697392, 0.010114576667547226, 0.025180106982588768, -0.06192944943904877, -0.04692346975207329, 0.04008400812745094, -0.000740090967155993, 0.015558923594653606, -0.06550230085849762, 0.02136906236410141, 0.015567430295050144, 0.012675121426582336, 0.03814445808529854, 0.018340645357966423, 0.019803812727332115, -0.008787516504526138 ]
40,019
s3path.old_versions
exists
Whether the path points to an existing Bucket, key or key prefix.
def exists(self) -> bool: """ Whether the path points to an existing Bucket, key or key prefix. """ self._absolute_path_validation() if not self.bucket: return True return self._accessor.exists(self)
(self) -> bool
[ 0.024316366761922836, -0.006019617430865765, -0.083467498421669, 0.014384209178388119, 0.06307641416788101, 0.020883867517113686, 0.01637233980000019, 0.01706053875386715, 0.026151563972234726, 0.02139364369213581, 0.009125009179115295, 0.01525083091109991, 0.07340789586305618, -0.05016206204891205, -0.027001192793250084, -0.017706256359815598, 0.06453777849674225, 0.00977922324091196, 0.016958583146333694, -0.004621978849172592, -0.018963707610964775, 0.012268634513020515, 0.06936366856098175, -0.02645742893218994, 0.018148062750697136, 0.03396814689040184, 0.043942783027887344, -0.0022600116208195686, 0.04122397303581238, 0.04683151841163635, -0.04319510981440544, 0.011138629168272018, 0.048598747700452805, 0.04642369970679283, 0.06450378894805908, -0.002463922370225191, 0.012302619405090809, -0.02203936129808426, -0.02739202044904232, -0.05903218314051628, 0.026117578148841858, 0.04863273352384567, -0.027409013360738754, -0.03717974200844765, 0.06854802370071411, 0.02098582312464714, -0.017774226143956184, 0.043942783027887344, -0.018097085878252983, -0.023687640205025673, 0.026746302843093872, 0.009218468330800533, -0.0011374400928616524, -0.027850819751620293, -0.04832686483860016, -0.01874280348420143, 0.060153692960739136, 0.0547160729765892, -0.031776104122400284, 0.018114078789949417, -0.000929812144022435, 0.009719748981297016, 0.020951837301254272, -0.030348727479577065, 0.0006319111562334001, -0.022345228120684624, -0.012803900986909866, -0.07191254943609238, 0.007574437651783228, 0.0395926870405674, -0.008011995814740658, 0.005365403834730387, -0.0034601117949932814, 0.017035050317645073, -0.05209921672940254, -0.006525146309286356, 0.019524462521076202, 0.018640847876667976, 0.03881102800369263, -0.013585559092462063, -0.04815693944692612, -0.09583808481693268, -0.005093522369861603, -0.0654553771018982, 0.00785906333476305, 0.07245631515979767, 0.0484967902302742, -0.015522711910307407, 0.014893986284732819, 0.07952522486448288, -0.03303355351090431, 0.0355144701898098, 0.018708817660808563, -0.04360293224453926, 0.049414388835430145, -0.04829287901520729, 0.010339978151023388, -0.05481802672147751, 0.0225321464240551, -0.020645970478653908, -0.011707879602909088, 0.003644905984401703, 0.07836972922086716, 0.04649166762828827, 0.036228157579898834, 0.05947399139404297, -0.025709757581353188, -0.04139389842748642, 0.006678079720586538, -0.02608359232544899, 0.005650029052048922, 0.0053738998249173164, 0.06589718163013458, -0.010458925738930702, 0.005637284833937883, -0.07164067029953003, 0.02122371830046177, -0.0017024429980665445, -0.057502854615449905, -0.04866671562194824, 0.06311040371656418, 0.013016307726502419, 0.01564165949821472, -0.0389469675719738, 0.09400288760662079, -0.02351771481335163, -0.00137002591509372, 0.049618300050497055, -0.00097760371863842, -0.0006196977337822318, -0.005000063218176365, 0.026882244274020195, -0.02073093317449093, -0.0164148211479187, -0.022311242297291756, 0.022260265424847603, 0.07347586750984192, 0.01186081301420927, -0.0832635909318924, 0.07272819429636002, 0.0477491170167923, -0.039252832531929016, 0.0035089654847979546, -0.016754673793911934, 0.019575439393520355, 0.06763042509555817, -0.01950746960937977, 0.01612594723701477, 0.058930229395627975, -0.005348410923033953, 0.010339978151023388, -0.00892109889537096, 0.03847117722034454, 0.028445560485124588, -0.03707778453826904, -0.04142788425087929, -0.012396078556776047, 0.00629574665799737, 0.0007067846599966288, -0.026797281578183174, 0.024401329457759857, 0.015327297151088715, -0.03228588029742241, -0.04642369970679283, -0.0389469675719738, 0.026712318882346153, -0.039456743746995926, 0.02171650342643261, -0.0005312832654453814, 0.04703542962670326, 0.03130031004548073, 0.014401202090084553, -0.05498795211315155, 0.006856501568108797, 0.004322484601289034, -0.002638096222653985, -0.01955844648182392, 0.037009816616773605, -0.0001315596600761637, -0.04285525903105736, 0.013602551072835922, -0.05301681533455849, 0.019133633002638817, -0.016516776755452156, 0.008742677047848701, 0.025522839277982712, -0.015165867283940315, -0.011546450667083263, 0.03466483950614929, 0.07653453201055527, -0.04842882230877876, 0.015293312259018421, 0.04000050574541092, 0.03265971690416336, 0.021784473210573196, -0.04927844926714897, 0.04360293224453926, 0.009082527831196785, -0.05046793073415756, 0.05967790260910988, 0.01596451923251152, -0.010968702845275402, 0.0012510778615251184, 0.0034409952349960804, 0.033169493079185486, 0.0017682892503216863, 0.01542925275862217, 0.016312865540385246, -0.011546450667083263, 0.04380684345960617, -0.06582920998334885, -0.06409596651792526, 0.015607674606144428, 0.023279819637537003, 0.028955336660146713, 0.04285525903105736, -0.012455552816390991, 0.007383271120488644, -0.0009765417198650539, 0.02616855688393116, 0.11459788680076599, -0.0025425131898373365, 0.06783433258533478, -0.011325547471642494, -0.004987319000065327, -0.02110476978123188, 0.038878995925188065, 0.03524258732795715, -0.02771488018333912, -0.04265134781599045, -0.014035861939191818, 0.02796976827085018, -0.019439497962594032, 0.01717948727309704, -0.0014273758279159665, -0.032234903424978256, 0.03962666913866997, 0.0600857250392437, 0.06633898615837097, 0.009311927482485771, 0.010781784541904926, 0.019541453570127487, -0.005879428703337908, 0.0005719061591662467, -0.03364528715610504, -0.027409013360738754, 0.026270510628819466, 0.02282102033495903, 0.01955844648182392, -0.03717974200844765, 0.0033496601972728968, 0.02180146612226963, -0.07014532387256622, -0.0273070577532053, 0.01763828657567501, -0.0806807205080986, -0.053492605686187744, -0.027205102145671844, 0.0016089838463813066, 0.017366405576467514, -0.08278779685497284, -0.016644220799207687, 0.06861599534749985, 0.04520023241639137, -0.028632478788495064, -0.021138755604624748, 0.06956757605075836, 0.01604948192834854, -0.047103401273489, 0.02171650342643261, 0.03911689296364784, 0.0026742054615169764, -0.01784219779074192, -0.009252454154193401, 0.03918486461043358, -0.004018742591142654, 0.025539830327033997, -0.009685764089226723, -0.019031677395105362, 0.02061198651790619, 0.0045115272514522076, -0.01686512492597103, 0.02640645205974579, -0.044350605458021164, -0.023704633116722107, 0.007085901219397783, -0.0012298371875658631, 0.014486164785921574, -0.008118200115859509, 0.015599178150296211, -0.03238783776760101, -0.008955083787441254, -0.054478175938129425, 0.012455552816390991, 0.036194171756505966, 0.028802404180169106, -0.002517024287953973, -0.02960105426609516, -0.004974574316293001, -0.01808009296655655, -0.030076846480369568, 0.023976514115929604, -0.07802987843751907, -0.000033437525416957214, 0.029567070305347443, 0.020442061126232147, 0.010586370714008808, 0.04074817895889282, 0.004983070772141218, 0.04812295362353325, -0.054682087153196335, 0.014511654153466225, -0.01385744009166956, 0.019745364785194397, 0.06467371433973312, -0.011486976407468319, -0.03976261243224144, -0.011996753513813019, -0.07592279464006424, 0.039286818355321884, -0.041122015565633774, 0.055531714111566544, -0.04689949005842209, -0.006780034862458706, -0.0553617887198925, -0.0478510744869709, -0.018114078789949417, 0.02853052318096161, -0.04135991260409355, 0.0361601859331131, -0.0016684578731656075, -0.02025514282286167, 0.06365416198968887, -0.01177585031837225, -0.0361601859331131, -0.03429100289940834, -0.019541453570127487, -0.01955844648182392, 0.059779856353998184, 0.06932967901229858, 0.028241649270057678, -0.01202224288135767, 0.013449618592858315, -0.007961018942296505, -0.014231276698410511, -0.030586624518036842, 0.009031550027430058, 0.017910167574882507, 0.01857287809252739, -0.03915087878704071, -0.032676711678504944, 0.009464860893785954, 0.025132009759545326, 0.031198356300592422, 0.04479240998625755, -0.022430190816521645, 0.0136790182441473, 0.017289938405156136, 0.009668772108852863, 0.021036799997091293, 0.08924496918916702, -0.06593116372823715, -0.04234548285603523, -0.013254203833639622, -0.024282380938529968, -0.006117324810475111, -0.001732180011458695, -0.013245707377791405, -0.05097770690917969, -0.0331525020301342, 0.00416317954659462, -0.0553617887198925, -0.0314362533390522, -0.05515787750482559, 0.02791879139840603, -0.0026147314347326756, 0.015820082277059555, -0.01548872608691454, 0.0255908090621233, -0.003808459499850869, 0.036398082971572876, 0.058930229395627975, -0.020544014871120453, 0.010399452410638332, 0.028445560485124588, 0.021461615338921547, 0.02503005415201187, 0.008139440789818764, 0.014944964088499546, -0.01959243230521679, 0.015369778499007225, -0.000983975944109261, -0.023823581635951996, -0.07633061707019806, -0.04017043113708496, -0.04781708866357803, 0.02878541126847267, -0.02453726902604103, 0.02649141475558281, 0.0464576818048954, 0.06062948703765869, -0.017774226143956184, 0.0262875035405159, 0.048972584307193756, 0.007888800464570522, -0.014707067981362343, 0.013967891223728657, 0.0255908090621233, 0.013806462287902832, -0.015131882391870022, -0.04934642091393471, -0.08469096571207047, 0.002544637303799391, 0.012379086576402187, -0.04703542962670326, -0.007978010922670364, 0.0005246455548331141, -0.03656800836324692, -0.030467675998806953, 0.05216718465089798, -0.018759796395897865, -0.012379086576402187, -0.014511654153466225, 0.05026401951909065, -0.01151246577501297, -0.022073347121477127, -0.06514950841665268, -0.04788506031036377, 0.04156382381916046, -0.01322871446609497, -0.017740242183208466, -0.06525146216154099, 0.020357098430395126, 0.009770726785063744, -0.0402384027838707, 0.010688325390219688, -0.024112455546855927, -0.019813334569334984, -0.020917851477861404, 0.016304370015859604, -0.007026427425444126, -0.023602677509188652, -0.04907453805208206, 0.010730807669460773, 0.010824266821146011, 0.025369904935359955, -0.001759792910888791, 0.019643409177660942, 0.11874406784772873, -0.01232810877263546, -0.0417337492108345, 0.03775748983025551, -0.012599989771842957, -0.010747799649834633, -0.06667883694171906, -0.03138527646660805, -0.014944964088499546, -0.017859190702438354, -0.0052889371290802956, -0.01373849157243967, -0.044928353279829025, 0.05515787750482559, -0.008487788029015064, -0.011410510167479515, 0.020357098430395126, -0.008810646831989288, 0.005701006855815649, 0.04387481138110161, 0.027375027537345886, -0.002842007204890251, -0.021495599299669266, -0.02960105426609516, -0.07857363671064377, -0.004022990819066763, 0.021342666819691658, -0.024146439507603645, 0.053050801157951355, 0.05784270539879799, -0.030688580125570297, 0.012362093664705753, -0.021036799997091293, -0.04679753631353378, -0.027205102145671844, 0.008118200115859509, 0.036024246364831924, -0.05277891829609871, -0.058318495750427246, 0.04999213665723801, 0.056891120970249176, -0.05216718465089798, 0.03717974200844765, -0.027375027537345886, -0.02555682323873043, 0.03318648785352707, 0.017094524577260017, -0.023891551420092583, -0.001893609412945807, 0.04547211527824402, -0.03281265124678612, -0.027697887271642685, -0.02209034003317356, 0.0381992943584919, 0.006852253340184689, 0.05787669122219086, -0.025047047063708305, -0.05763879418373108, -0.033866189420223236, -0.017417382448911667, 0.017281442880630493, -0.04632174223661423, -0.000947335734963417, 0.04081615060567856, -0.006516650319099426, 0.04217555746436119, 0.009439372457563877, 0.06960156559944153, -0.05644931271672249, -0.054885998368263245, -0.00871718768030405, 0.013959395699203014, 0.017238961532711983, -0.0478510744869709, 0.05444419011473656, -0.0553617887198925, -0.05029800534248352, 0.009023054502904415, 0.0003451615630183369, -0.03585432097315788, -0.023449745029211044, 0.002725183265283704, -0.017519338056445122, -0.020136194303631783, -0.0197963435202837, 0.00604085810482502, 0.003791466820985079, 0.1183362528681755, 0.027612924575805664, -0.0252679493278265, 0.00018532520334701985, 0.008249891921877861, 0.04931243509054184, -0.023976514115929604, 0.007017930969595909, -0.022464176639914513, -0.007294060196727514, 0.047375280410051346, -0.025981638580560684, -0.0745633915066719, 0.09332318603992462, -0.011801338754594326, 0.06848005205392838, 0.0464576818048954, 0.04805498570203781, -0.028666464611887932, 0.10399451851844788, 0.027867812663316727, 0.0027825331781059504, -0.055463746190071106, -0.020764918997883797, 0.036907859146595, -0.010671333409845829, -0.03921885043382645, 0.014826016500592232, 0.01926957257091999, -0.012379086576402187, -0.03381521254777908, -0.034070100635290146, -0.028836390003561974, 0.09876081347465515, -0.010297496803104877, -0.0047026933170855045, 0.018029116094112396, 0.01339014433324337, -0.04652565345168114, -0.009804712608456612, -0.007421504240483046, -0.026474421843886375, -0.026933221146464348, -0.01828400418162346, -0.06667883694171906, 0.02011920139193535, -0.04350097477436066, 0.00926944613456726, 0.015301808714866638, -0.012846382334828377, -0.030348727479577065, -0.027765857055783272, 0.028479546308517456, -0.021495599299669266, -0.030348727479577065, -0.0389469675719738, 0.03938877582550049, 0.02139364369213581, -0.05736691132187843, 0.06932967901229858, -0.0002750671992544085, 0.04071419686079025, -0.0969935804605484, 0.00748097850009799, -0.020306119695305824, 0.003538702381774783, 0.0019520213827490807, -0.021155748516321182, -0.0001534641342004761, -0.013509091921150684, -0.0009112264961004257, 0.014282254502177238, 0.02244718372821808, -0.017094524577260017, -0.0688878744840622, -0.008623728528618813, -0.030518652871251106, -0.016023991629481316, -0.007871807552874088, 0.024231404066085815, 0.018148062750697136, -0.009966141544282436, -0.022073347121477127, -0.023075908422470093, 0.005616044159978628, 0.006346724461764097, -0.05444419011473656, 0.011563443578779697, 0.03281265124678612, -0.07809785008430481, -0.02555682323873043, 0.07259225100278854, -0.0015473858220502734, -0.01886175200343132, -0.0416317954659462, 0.03738365322351456, -0.030705571174621582, 0.01621090993285179, -0.036024246364831924, 0.023687640205025673, 0.017009561881422997, -0.004318236373364925, 0.006435935385525227, 0.02567577175796032, 0.05009409412741661, -0.0827198252081871, -0.04064622521400452, -0.046967461705207825, 0.047409266233444214, -0.017774226143956184, 0.0204930379986763, 0.03748560696840286, -0.027171118184924126, 0.03135129064321518, -0.022668085992336273, -0.011249080300331116, 0.012829389423131943, -0.015148875303566456, -0.00953283067792654, 0.03565040975809097, -0.01365352887660265, 0.008602487854659557, -0.025403890758752823, -0.05519186332821846, -0.0344439372420311, 0.0348687507212162, -0.06980547308921814, -0.055327802896499634, 0.04037434235215187, 0.008109703660011292, -0.009260949678719044, 0.025081031024456024, -0.018199041485786438, -0.01702655479311943, 0.06406198441982269, -0.00380208739079535, 0.003404885996133089, -0.061377160251140594, -0.050603870302438736, -0.010781784541904926, 0.0070604123175144196, 0.005921910051256418, -0.02538689784705639, 0.015344290062785149, 0.0024150689132511616, -0.030110832303762436, 0.004324608948081732, -0.006618605460971594, 0.07551497966051102, 0.05444419011473656, 0.023092901334166527, 0.055327802896499634, -0.05352659150958061, 0.03490273654460907, -0.06504755467176437, -0.012905855663120747, -0.06878592073917389, 0.007986507378518581, 0.08190418034791946, -0.027544954791665077, -0.00134984718170017, 0.009872682392597198, 0.04526820406317711, -0.0007067846599966288, -0.04958431422710419, 0.033662278205156326, 0.03466483950614929, 0.02654239349067211, -0.010773289017379284, -0.02270207181572914, 0.025369904935359955, -0.005386644508689642, -0.02392553724348545, 0.0034431193489581347, 0.04305917024612427, -0.04727332666516304, 0.03085850551724434, 0.02142762951552868, -0.0704851746559143, 0.042719319462776184, -0.021699510514736176, 0.010875243693590164, -0.003466484136879444, 0.0375535786151886, -0.046763550490140915, 0.0273070577532053, -0.03364528715610504, -0.05838646739721298, -0.004953333642333746, -0.008513277396559715, -0.04608384519815445, -0.027493976056575775, -0.038437191396951675, -0.027935782447457314, 0.044724442064762115, 0.01701805740594864, 0.01181833166629076, -0.03544649854302406, 0.06576123833656311, 0.05825052782893181, -0.03585432097315788, 0.014282254502177238, 0.012956833466887474, 0.01365352887660265, 0.01833498105406761, 0.03595627471804619, -0.013517588376998901, 0.042923230677843094, -0.060187678784132004, 0.02914225496351719, 0.006767290644347668, -0.00048588126082904637, -0.00889560952782631, -0.022345228120684624, 0.00025820740847848356, 0.06246468424797058, 0.007170863915234804, 0.028445560485124588, -0.0023810837883502245, -0.03327145054936409, -0.026270510628819466, -0.05376448854804039, 0.04611783102154732, 0.00429487181827426, 0.028955336660146713, -0.06120723485946655, -0.03728169575333595, -0.013109766878187656, 0.015140378847718239, 0.05175936594605446, 0.01104517001658678, 0.010807273909449577, 0.010577874258160591 ]
40,020
s3path.old_versions
expanduser
expanduser method is unsupported on S3 service AWS S3 don't have this file system action concept
def expanduser(self): """ expanduser method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.expanduser.__qualname__) raise NotImplementedError(message)
(self)
[ -0.017066147178411484, -0.034183111041784286, 0.0013498348416760564, 0.05864317715167999, 0.04061996936798096, -0.038282375782728195, 0.04082323983311653, 0.01765054650604725, 0.025103751569986343, 0.03516557812690735, 0.072228342294693, -0.0035063945688307285, 0.046480901539325714, 0.0004597378720063716, -0.04610824212431908, 0.05640721693634987, 0.010629287920892239, 0.02750910446047783, 0.03496231138706207, 0.040484458208084106, -0.036622341722249985, -0.030642839148640633, 0.03303125128149986, -0.032980434596538544, -0.0005081731360405684, 0.0665367990732193, 0.0450918935239315, 0.019598543643951416, 0.01026509702205658, -0.0491572804749012, -0.04241551458835602, -0.004514271393418312, 0.02124163694679737, 0.07026340067386627, 0.0502413809299469, 0.003603794379159808, 0.02224104292690754, 0.03980689495801926, -0.01125603448599577, -0.02669602818787098, -0.10678411275148392, 0.07405776530504227, 0.014804776757955551, -0.0899127647280693, 0.05810112506151199, 0.07256712019443512, 0.025323960930109024, 0.07995256781578064, 0.009308037348091602, 0.004764122888445854, 0.03984077274799347, 0.03533497080206871, -0.0013815956190228462, -0.03308207169175148, -0.02381638064980507, 0.0033687641844153404, 0.04255102947354317, -0.033014312386512756, -0.04549843445420265, 0.0453629195690155, 0.02264758199453354, 0.0334039144217968, 0.09458795934915543, -0.02849157340824604, 0.002060218481346965, -0.005162192042917013, -0.008096891455352306, -0.03790971636772156, -0.05596679821610451, 0.058948080986738205, -0.016413992270827293, -0.044041670858860016, -0.015651732683181763, -0.007110188715159893, 0.00785127468407154, 0.004143728408962488, -0.06694334000349045, -0.003301007905974984, -0.009324976243078709, 0.001220674137584865, -0.010019480250775814, -0.05725417286157608, -0.016642669215798378, 0.002399000572040677, -0.005225713364779949, 0.02566274255514145, 0.012797492556273937, -0.06230202317237854, -0.00244134827516973, 0.06104853004217148, -0.03563987463712692, 0.0021745574194937944, -0.025425594300031662, -0.011349199339747429, 0.023731684312224388, 0.0045396797358989716, -0.015795715153217316, -0.06331837177276611, -0.03223511576652527, 0.010722452774643898, 0.020089777186512947, -0.0038578808307647705, 0.04515965282917023, -0.0007098542992025614, 0.02322351187467575, -0.01705767773091793, -0.037469297647476196, -0.011289913207292557, 0.002676378469914198, 0.0046836622059345245, 0.03682561218738556, 0.03142203763127327, -0.03381045162677765, 0.005594138987362385, -0.006775641348212957, -0.05959176644682884, 0.07412552088499069, 0.0020559837576001883, -0.00506479199975729, -0.03618192672729492, 0.015439992770552635, -0.019327517598867416, -0.014415177516639233, -0.01006182748824358, 0.0355721190571785, -0.02237655594944954, -0.030185483396053314, 0.03245532140135765, 0.009646819904446602, -0.011306852102279663, -0.05118997022509575, -0.03574150800704956, -0.08320488035678864, -0.04858135059475899, 0.017904633656144142, 0.0019289404153823853, 0.039501991122961044, 0.01958160474896431, 0.02732277475297451, 0.06135343387722969, 0.019073430448770523, -0.008876090869307518, -0.013779961504042149, -0.010730922222137451, -0.029728127643465996, 0.0016102736117318273, 0.0328618623316288, 0.011747268959879875, -0.002498517744243145, -0.01514355931431055, 0.008473786525428295, 0.062098756432533264, 0.04295756667852402, -0.016312357038259506, 0.01307698804885149, -0.0027907174080610275, 0.017116963863372803, -0.058406028896570206, -0.04326247051358223, -0.0023079528473317623, 0.014720081351697445, -0.03321758285164833, -0.04739561304450035, 0.04610824212431908, 0.003265012288466096, -0.030049970373511314, -0.000010694463526306208, 0.02544253319501877, -0.028830355033278465, 0.027339713647961617, 0.007161006331443787, 0.023833319544792175, 0.00520030502229929, 0.00900313351303339, 0.05556026101112366, 0.06992462277412415, -0.01106970477849245, -0.004302532412111759, 0.004798001144081354, -0.07595494389533997, -0.0014694673009216785, -0.02574743703007698, 0.049394428730010986, -0.0015943931648507714, 0.02268145978450775, 0.027068687602877617, 0.0009628821862861514, 0.01898873597383499, -0.0020517490338534117, 0.04302532225847244, -0.030016092583537102, 0.0001519225916126743, 0.0033052426297217607, 0.009875497780740261, 0.01980181224644184, -0.057999491691589355, -0.012433302588760853, 0.006551198661327362, -0.026137037202715874, 0.06619802117347717, -0.055932920426130295, 0.03767256811261177, 0.006741763558238745, 0.01317015290260315, 0.048276446759700775, 0.026492757722735405, 0.03560599684715271, -0.016278479248285294, -0.05508596450090408, -0.0013064283411949873, -0.03845176473259926, 0.02205471321940422, -0.03973913937807083, 0.02881341613829136, 0.0033285338431596756, 0.04207673296332359, 0.026306428015232086, 0.010857965797185898, 0.02593376860022545, 0.03281104564666748, 0.06755314767360687, 0.02691623568534851, -0.018378928303718567, 0.002061277162283659, 0.053087152540683746, -0.011831964366137981, 0.045125771313905716, -0.0505124069750309, -0.014499872922897339, -0.046209875494241714, -0.0001758755388436839, -0.00048620521556586027, 0.006085372995585203, 0.06596086919307709, 0.017337173223495483, 0.0320487841963768, 0.033657997846603394, -0.0057508256286382675, 0.023071059957146645, -0.015948167070746422, -0.0266113318502903, -0.00893537700176239, 0.003502159845083952, 0.0510544590651989, -0.05864317715167999, -0.0183281097561121, 0.019276700913906097, 0.0654526948928833, 0.001751079922541976, -0.05013974756002426, 0.07466757297515869, 0.06453798711299896, -0.05833827331662178, -0.03807910531759262, -0.01033285353332758, -0.004224189091473818, 0.014593037776648998, -0.031201830133795738, 0.0023693572729825974, -0.030541203916072845, -0.04268654063344002, -0.046887438744306564, 0.038282375782728195, -0.01751503348350525, -0.0363851934671402, 0.002399000572040677, 0.04461760073900223, 0.0012979588937014341, -0.051020581275224686, 0.06501228362321854, 0.009426611475646496, 0.06992462277412415, -0.01610908843576908, -0.00520030502229929, -0.006970441434532404, -0.04207673296332359, -0.035538241267204285, 0.024053527042269707, -0.04570170119404793, -0.008156178519129753, -0.007584483828395605, 0.014804776757955551, 0.03672397881746292, 0.10366731882095337, -0.008643177337944508, -0.03359024226665497, 0.01746421679854393, 0.027763191610574722, -0.0010115820914506912, -0.005835521500557661, -0.03641907498240471, 0.04451596364378929, -0.04560006782412529, -0.03940035402774811, 0.03838400915265083, 0.017311764881014824, -0.09628186374902725, -0.022529007866978645, 0.049394428730010986, 0.028864232823252678, -0.06277631968259811, 0.06701109558343887, -0.06392817944288254, -0.012594223953783512, 0.014169560745358467, -0.008198526687920094, 0.0616583377122879, -0.014677733182907104, -0.04275429993867874, 0.04038282483816147, 0.013432709500193596, 0.010476836003363132, -0.06389430165290833, 0.0031104430090636015, 0.022715337574481964, 0.019784873351454735, 0.03702888265252113, 0.03509782254695892, -0.007804692257195711, 0.018311170861124992, -0.05691538751125336, -0.002818243345245719, -0.024968238547444344, -0.035267215222120285, 0.006703650578856468, -0.04583721607923508, -0.05190141499042511, 0.024426188319921494, -0.055390868335962296, 0.03770644590258598, -0.024883544072508812, 0.029914457350969315, 0.013983230106532574, 0.00810536090284586, -0.11742186546325684, -0.033099010586738586, 0.018870161846280098, -0.005729652009904385, 0.003334886161610484, 0.06697721779346466, -0.03065977804362774, -0.0001634358923183754, -0.0007114423788152635, 0.04556619003415108, -0.05332430079579353, -0.022850850597023964, 0.049225036054849625, -0.03406453877687454, 0.03807910531759262, -0.03926484286785126, 0.008634707890450954, -0.012534936890006065, 0.020360803231596947, -0.011340729892253876, 0.030354874208569527, -0.005848225671797991, -0.007097484543919563, -0.004798001144081354, -0.004357584286481142, -0.019429152831435204, 0.06819683313369751, -0.08015584200620651, -0.00351698137819767, 0.007076310459524393, -0.010290505364537239, 0.007728466298431158, 0.019954264163970947, -0.012467180378735065, 0.043330226093530655, -0.04488862678408623, -0.0014631150988861918, -0.07019564509391785, -0.02183450572192669, -0.008143474347889423, -0.008393325842916965, 0.07073769718408585, -0.0011677395086735487, -0.04217837005853653, -0.07161853462457657, 0.02957567572593689, 0.03345473110675812, 0.04885237663984299, -0.01300923153758049, -0.004980096593499184, 0.027255017310380936, 0.036351315677165985, -0.005522147752344608, 0.019835690036416054, 0.03282798454165459, 0.008600830100476742, 0.017616668716073036, -0.02129245363175869, 0.016312357038259506, -0.015871940180659294, -0.009951723739504814, -0.024477005004882812, -0.04912340268492699, -0.017345642670989037, -0.007110188715159893, 0.018175657838582993, 0.0009713517501950264, -0.021258575841784477, -0.020716523751616478, -0.0076903533190488815, -0.018649952486157417, -0.013957821764051914, -0.013390361331403255, 0.0022698398679494858, -0.004709071014076471, 0.019954264163970947, 0.03658846393227577, -0.0651816725730896, -0.0657237246632576, 0.039366476237773895, 0.02569662034511566, 0.012001355178654194, -0.021953077986836433, -0.03956974670290947, -0.044177182018756866, 0.044312696903944016, 0.00021134178678039461, 0.004759888164699078, -0.034725163131952286, 0.045125771313905716, 0.014432116411626339, -0.047327857464551926, -0.05491657555103302, -0.02134327031672001, 0.09011603146791458, -0.03047344833612442, 0.02335902489721775, 0.06701109558343887, -0.007419327739626169, 0.017447277903556824, -0.010011010803282261, -0.033285338431596756, -0.023833319544792175, -0.00907089002430439, -0.027017870917916298, 0.0499703548848629, -0.01586347073316574, -0.04106038808822632, -0.061827730387449265, -0.010527652688324451, 0.071686290204525, -0.02246125228703022, -0.02615397609770298, 0.08740577846765518, 0.027017870917916298, -0.003976454492658377, 0.022935546934604645, 0.022986363619565964, -0.001077221124432981, -0.015473871491849422, -0.03303125128149986, -0.03492843359708786, 0.08279833942651749, -0.023443719372153282, 0.014779368415474892, -0.05434064567089081, -0.0055433218367397785, 0.014567629434168339, -0.029643431305885315, -0.019344456493854523, 0.03274328634142876, 0.04864910617470741, -0.028745658695697784, -0.008486490696668625, 0.034860674291849136, -0.038688912987709045, 0.0475311242043972, -0.030033031478524208, -0.032201237976551056, -0.013195562176406384, 0.04959769546985626, 0.016668077558279037, 0.01809096336364746, 0.05925298482179642, -0.001288430648855865, -0.00705513684079051, -0.015922756865620613, -0.08489879220724106, -0.0017733124550431967, 0.03536884859204292, 0.008918438106775284, -0.01700686104595661, -0.005331582855433226, -0.027983399108052254, 0.09736596792936325, -0.046887438744306564, 0.053595323115587234, 0.0038451766595244408, -0.05454391613602638, 0.06900990754365921, -0.014347421005368233, -0.0032798340544104576, -0.02151266112923622, 0.00727111054584384, -0.018158718943595886, 0.00969763658940792, 0.023392902687191963, 0.017413398250937462, -0.010654696263372898, 0.0239010751247406, 0.04685356095433235, 0.0124248331412673, 0.0029643431771546602, -0.021715931594371796, 0.02723807841539383, -0.06284407526254654, -0.043330226093530655, 0.034860674291849136, 0.027305835857987404, 0.037740323692560196, 0.003502159845083952, -0.030185483396053314, -0.0461759977042675, 0.07459980994462967, 0.062234267592430115, 0.04766663908958435, 0.039637502282857895, -0.044854748994112015, 0.012763614766299725, -0.013127805665135384, -0.000273407727945596, -0.0371982716023922, -0.024375369772315025, -0.005141017958521843, 0.010273566469550133, 0.03618192672729492, -0.029186075553297997, -0.005242652725428343, -0.007813161239027977, 0.008850681595504284, -0.023918014019727707, 0.11769289523363113, -0.045261286199092865, 0.03452189266681671, 0.044041670858860016, -0.017718302085995674, 0.04627763107419014, -0.002549335127696395, -0.041839588433504105, -0.021275514736771584, -0.04844583570957184, 0.008444143459200859, -0.0162954181432724, -0.07182180136442184, 0.07697128504514694, -0.04194122180342674, 0.01976793445646763, 0.003171847201883793, 0.020902853459119797, 0.06704497337341309, 0.12724654376506805, -0.02340984158217907, 0.013966291211545467, -0.051291607320308685, -0.049089524894952774, -0.0025218091905117035, -0.03519945964217186, 0.014787837862968445, -0.009621410630643368, 0.0038684678729623556, -0.002636148128658533, -0.007364275399595499, -0.008406030014157295, 0.04217837005853653, -0.003080799477174878, -0.06589311361312866, -0.018480561673641205, 0.007885152474045753, 0.037604812532663345, 0.04946218430995941, -0.04515965282917023, -0.028186669573187828, 0.03750317543745041, -0.004215719643980265, 0.00509867025539279, -0.03519945964217186, 0.006707885302603245, -0.04654865711927414, -0.01040061004459858, -0.029558736830949783, -0.06674006581306458, -0.05769458785653114, 0.016583383083343506, 0.0024307614658027887, -0.02898280695080757, -0.0014101803535595536, -0.006991615053266287, -0.048682983964681625, -0.017125433310866356, -0.04366901144385338, 0.010680104605853558, -0.02102142758667469, 0.018616074696183205, -0.05884644761681557, 0.01417803019285202, 0.0001795809657778591, 0.013102397322654724, 0.02134327031672001, 0.04522740840911865, 0.03536884859204292, 0.04326247051358223, 0.04061996936798096, -0.0665367990732193, 0.026526637375354767, -0.04353349655866623, -0.007419327739626169, -0.00024270560243166983, 0.026797661557793617, 0.00045126830809749663, 0.054848819971084595, -0.055526383221149445, 0.043330226093530655, -0.03641907498240471, -0.014423646964132786, 0.026679089292883873, -0.009265690110623837, -0.0708732083439827, -0.034047599881887436, -0.03845176473259926, 0.030676716938614845, -0.09513000398874283, -0.04597272723913193, 0.01849750056862831, 0.04597272723913193, -0.011103582568466663, -0.031710002571344376, -0.03943423554301262, -0.023426780477166176, 0.10576776415109634, -0.02462945692241192, 0.03699500113725662, -0.016939103603363037, -0.03235368803143501, 0.025899890810251236, -0.03492843359708786, -0.040857117623090744, 0.006555433385074139, -0.005954095162451267, -0.06568984687328339, 0.022359617054462433, -0.04285593330860138, 0.01805708557367325, -0.013754552230238914, -0.03223511576652527, -0.0008548953919671476, -0.03392902389168739, -0.014559159986674786, 0.019327517598867416, 0.01192512921988964, 0.006745998281985521, 0.01958160474896431, 0.012102989479899406, -0.014034047722816467, -0.04394003376364708, -0.010942661203444004, -0.0358431451022625, 0.011577877216041088, -0.07859744131565094, 0.017040738835930824, 0.07548064738512039, 0.03875666856765747, -0.006635894067585468, -0.014084865339100361, -0.01931057870388031, -0.0030257473699748516, 0.03254001960158348, 0.04695519432425499, 0.017023799940943718, 0.03970525786280632, -0.008757516741752625, -0.03074447438120842, -0.0339459627866745, 0.0727703869342804, -0.05152875557541847, 0.0053993393667042255, -0.0027483697049319744, -0.031574491411447525, -0.04973321035504341, -0.012729736976325512, -0.0020485729910433292, 0.0006876217667013407, 0.0016430930700153112, 0.004075971897691488, -0.015558566898107529, -0.040077921003103256, -0.08462776243686676, 0.0021914965473115444, -0.03123570792376995, -0.024510882794857025, 0.04851359501481056, -0.012433302588760853, 0.01976793445646763, 0.017447277903556824, 0.019920386373996735, 0.03033793531358242, 0.023934952914714813, 0.04905564337968826, 0.03237062692642212, 0.006309816148132086, -0.004899635910987854, 0.0002608357463032007, 0.005293469876050949, -0.047429490834474564, -0.03082916885614395, 0.004349114838987589, -0.032031845301389694, -0.006254764273762703, -0.032201237976551056, -0.014491403475403786, -0.00608960771933198, 0.04234775900840759, -0.008952316828072071, 0.01431354321539402, -0.007177945226430893, 0.032929617911577225, 0.0040738545358181, 0.004857288207858801, -0.013983230106532574, -0.019276700913906097, 0.011213687248528004, -0.016363173723220825, -0.0317777581512928, -0.08943846821784973, 0.006741763558238745, 0.0181925967335701, 0.040755484253168106, 0.024002710357308388, 0.034589651972055435, -0.02327432855963707, 0.06406369060277939, 0.03509782254695892, -0.029694249853491783, -0.015389176085591316, 0.02512069046497345, 0.001254552393220365, 0.0526806116104126, -0.018920978531241417, 0.009960193186998367, -0.01667654700577259, -0.037469297647476196, 0.018785465508699417, -0.04295756667852402, 0.011510120704770088, 0.055119846016168594, -0.017531972378492355, 0.0733124390244484, 0.03348860889673233, -0.026628270745277405, 0.02030998468399048, 0.050614044070243835, 0.03763869032263756, -0.0603032112121582, -0.025781316682696342, 0.015871940180659294, 0.020106716081500053, -0.03560599684715271, -0.06477513164281845, -0.013602100312709808, 0.009689167141914368, 0.011755738407373428, 0.04343186318874359, 0.007266875356435776, 0.0015372236957773566, -0.00934191606938839 ]
40,021
s3path.old_versions
get_presigned_url
Returns a pre-signed url. Anyone with the url can make a GET request to get the file. You can set an expiration date with the expire_in argument (integer or timedelta object). Note that generating a presigned url may require more information or setup than to use other S3Path functions. It's because it needs to know the exact aws region and use s3v4 as signature version. Meaning you may have to do this: ```python import boto3 from botocore.config import Config from s3path import S3Path, register_configuration_parameter resource = boto3.resource( "s3", config=Config(signature_version="s3v4"), region_name="the aws region name" ) register_configuration_parameter(S3Path("/"), resource=resource) ``` A simple example: ```python from s3path import S3Path import requests file = S3Path("/my-bucket/toto.txt") file.write_text("hello world") presigned_url = file.get_presigned_url() print(requests.get(presigned_url).content) b"hello world"
def get_presigned_url(self, expire_in: Union[timedelta, int] = 3600) -> str: """ Returns a pre-signed url. Anyone with the url can make a GET request to get the file. You can set an expiration date with the expire_in argument (integer or timedelta object). Note that generating a presigned url may require more information or setup than to use other S3Path functions. It's because it needs to know the exact aws region and use s3v4 as signature version. Meaning you may have to do this: ```python import boto3 from botocore.config import Config from s3path import S3Path, register_configuration_parameter resource = boto3.resource( "s3", config=Config(signature_version="s3v4"), region_name="the aws region name" ) register_configuration_parameter(S3Path("/"), resource=resource) ``` A simple example: ```python from s3path import S3Path import requests file = S3Path("/my-bucket/toto.txt") file.write_text("hello world") presigned_url = file.get_presigned_url() print(requests.get(presigned_url).content) b"hello world" """ self._absolute_path_validation() if isinstance(expire_in, timedelta): expire_in = int(expire_in.total_seconds()) if expire_in <= 0: raise ValueError( f"The expire_in argument can't represent a negative or null time delta. " f"You provided expire_in = {expire_in} seconds which is below or equal to 0 seconds.") return self._accessor.get_presigned_url(self, expire_in)
(self, expire_in: Union[datetime.timedelta, int] = 3600) -> str
[ -0.04021675884723663, -0.0219869501888752, -0.036651305854320526, 0.03617207705974579, 0.03249161317944527, 0.034044310450553894, -0.00355586688965559, -0.00044687947956845164, 0.05026136338710785, 0.010600508190691471, 0.037513915449380875, 0.025552401319146156, 0.02373133786022663, -0.030306335538625717, -0.007504700217396021, 0.011530209332704544, 0.06732185184955597, -0.014817709103226662, 0.01709883101284504, 0.004849780350923538, 0.03703468665480614, 0.003507944056764245, 0.010753861628472805, -0.01613079197704792, -0.018795296549797058, 0.01866111159324646, 0.003495963290333748, 0.012114866636693478, -0.006737936288118362, -0.0335075743496418, 0.025859106332063675, 0.033526744693517685, 0.023980535566806793, 0.07644634693861008, 0.03778228163719177, 0.01953330636024475, -0.0006062225438654423, 0.011041397228837013, -0.05344343185424805, 0.03653629124164581, -0.056625500321388245, 0.04696427658200264, 0.052638329565525055, -0.05892579257488251, 0.038414862006902695, 0.07652302086353302, -0.020070040598511696, 0.04332214966416359, -0.02168024517595768, -0.017146753147244453, 0.10972388833761215, 0.06183949485421181, 0.020031701773405075, -0.07625465095043182, -0.035117778927087784, -0.013226673938333988, 0.05187156796455383, 0.03887492045760155, 0.011031812988221645, 0.04872783645987511, 0.05455524101853371, 0.0098337447270751, 0.04228701815009117, -0.038453202694654465, 0.0031796733383089304, 0.04163527116179466, 0.020875142887234688, -0.062146201729774475, -0.03385261818766594, 0.009258671663701534, 0.05029970034956932, -0.06954547017812729, -0.04477900266647339, -0.0033330260775983334, 0.01293913833796978, -0.05635713413357735, -0.013495041988790035, 0.024402255192399025, 0.003222803818061948, 0.030095476657152176, -0.02986544743180275, -0.09653555601835251, -0.0004732369852717966, -0.033910125494003296, 0.06283628940582275, 0.006023887544870377, 0.012201127596199512, -0.08327054232358932, 0.017980609089136124, 0.07690640538930893, -0.03389095515012741, 0.04044678807258606, -0.025399047881364822, -0.02883031591773033, 0.03254912048578262, -0.017424706369638443, -0.0018869575578719378, -0.057775646448135376, 0.020894311368465424, -0.0071596563793718815, 0.024574777111411095, 0.0009225126123055816, -0.02116267941892147, -0.001643749768845737, 0.05233162268996239, -0.03339255973696709, -0.011683561839163303, -0.008094149641692638, 0.026855899021029472, -0.02729678899049759, 0.025744091719388962, -0.025341540575027466, -0.02261953055858612, -0.009143657051026821, 0.035884544253349304, -0.04872783645987511, 0.004960002843290567, -0.017261767759919167, -0.026510855183005333, -0.026894237846136093, 0.0023182621225714684, -0.009843328967690468, -0.026031628251075745, -0.0034767943434417248, 0.03714970126748085, -0.0049743796698749065, 0.0019169093575328588, 0.006503114942461252, 0.03895159810781479, -0.03749474510550499, 0.027315957471728325, 0.034945257008075714, -0.06751354783773422, -0.01082095317542553, -0.04470232501626015, 0.005084602162241936, 0.08143030852079391, 0.06413978338241577, -0.016801709309220314, 0.10911048203706741, 0.02035757713019848, 0.02344380132853985, 0.014539756812155247, 0.011578132398426533, -0.005367346107959747, -0.0007416043081320822, 0.038664061576128006, -0.01623622141778469, -0.010514247231185436, 0.011108489707112312, 0.06444649398326874, 0.0009099328890442848, 0.051948241889476776, 0.029539572075009346, 0.028255242854356766, -0.07897666096687317, 0.011827330105006695, -0.02348213829100132, -0.03598038852214813, -0.01030338741838932, -0.0033665720839053392, 0.02244700863957405, -0.005693220533430576, -0.053328417241573334, -0.018756957724690437, 0.015344859100878239, 0.0349644273519516, 0.07130903005599976, 0.02421056479215622, 0.05969255790114403, 0.02001253329217434, 0.007619714364409447, -0.035539500415325165, 0.028887823224067688, 0.03312419354915619, 0.05110480263829231, 0.004066243767738342, 0.008108526468276978, -0.0038050650618970394, -0.05290669575333595, 0.055552031844854355, -0.058044012635946274, 0.017012570053339005, 0.03929664194583893, 0.022772882133722305, 0.04454897344112396, -0.04435728117823601, 0.02785269170999527, -0.017146753147244453, -0.0009135270956903696, -0.0008871696190908551, 0.013408781029284, -0.004037490114569664, 0.048267778009176254, 0.00009165222581941634, -0.019514136016368866, -0.0098337447270751, 0.00532421562820673, -0.032587457448244095, 0.05213993415236473, 0.017980609089136124, 0.008985512889921665, -0.006560622248798609, -0.07349430024623871, 0.03964168578386307, -0.015804916620254517, -0.00804622657597065, -0.01222988124936819, -0.05382681265473366, 0.07176908850669861, -0.019159508869051933, -0.0014101264532655478, -0.04144357889890671, -0.0225811917334795, -0.034082647413015366, 0.03475356474518776, -0.0507214218378067, 0.0425170473754406, -0.017836840823292732, -0.004969587549567223, 0.0946953222155571, -0.003896118141710758, 0.03329671546816826, 0.03902827203273773, 0.07100231945514679, -0.003778707468882203, 0.052216608077287674, -0.03979503735899925, -0.054440226405858994, -0.03360341861844063, -0.0032467651180922985, 0.0030143398325890303, 0.0393349789083004, 0.026530025526881218, 0.08971135318279266, -0.027526818215847015, 0.03392929583787918, -0.000055972253903746605, 0.028159398585557938, 0.012565340846776962, 0.014760201796889305, 0.023386294022202492, 0.016955062747001648, 0.017424706369638443, -0.03908577933907509, 0.058465734124183655, 0.0074615697376430035, 0.04784605652093887, -0.025437386706471443, -0.0345618762075901, 0.06920042634010315, 0.04596748575568199, -0.027220113202929497, 0.017405536025762558, 0.033105023205280304, 0.061801157891750336, 0.0031940501648932695, -0.05574372410774231, 0.0003555267758201808, 0.04554576426744461, -0.01643749698996544, -0.05551369488239288, 0.014712278731167316, -0.02373133786022663, -0.018402328714728355, -0.018814465031027794, 0.0016653150087222457, -0.013303350657224655, -0.023980535566806793, 0.032453276216983795, 0.09477199614048004, -0.005817819852381945, -0.04006340354681015, -0.03975670039653778, 0.018162716180086136, -0.04888118803501129, -0.029156191274523735, -0.0011297784512862563, -0.06433147937059402, 0.0047036162577569485, -0.004473587032407522, 0.012038190849125385, 0.0825037807226181, -0.01723301410675049, -0.003122166031971574, 0.01851734332740307, -0.0030958084389567375, 0.03381428122520447, 0.027239281684160233, 0.02407638169825077, -0.023501308634877205, 0.03693884238600731, -0.022389501333236694, -0.07146237790584564, 0.008750691078603268, -0.018479006364941597, -0.039565008133649826, -0.060957714915275574, 0.03304751589894295, 0.010265049524605274, -0.025034835562109947, 0.020970987156033516, -0.006948796100914478, 0.0009967928053811193, 0.017923101782798767, 0.023252110928297043, 0.017788918688893318, -0.03063221089541912, -0.010926383547484875, 0.0025662623811513186, -0.004334611352533102, 0.010878460481762886, -0.03500276431441307, -0.008745898492634296, 0.0173480287194252, 0.016034945845603943, 0.005290669854730368, -0.014712278731167316, 0.002066667890176177, 0.011041397228837013, -0.012872045859694481, 0.049034539610147476, -0.032453276216983795, 0.01082095317542553, 0.03216573968529701, -0.05505363643169403, -0.07107900083065033, 0.08028016239404678, -0.04493235424160957, 0.043935563415288925, -0.03003796935081482, 0.010447155684232712, -0.0068577430211007595, -0.005146901588886976, -0.02643417939543724, -0.013514210470020771, 0.021028494462370872, 0.017635565251111984, 0.026146642863750458, 0.04957127571105957, 0.03829984739422798, -0.08580086380243301, -0.029156191274523735, 0.040676817297935486, -0.08994138240814209, 0.01591993123292923, 0.06168614327907562, -0.011750654317438602, 0.030018800869584084, -0.017261767759919167, -0.03718804195523262, 0.026108304038643837, 0.03084307163953781, 0.00903822761029005, 0.01765473559498787, -0.024958159774541855, -0.005458399187773466, -0.023386294022202492, -0.008765067905187607, -0.011376856826245785, 0.06260626018047333, -0.07518118619918823, -0.008774652145802975, -0.030498027801513672, 0.01467394083738327, 0.032932501286268234, 0.03093891590833664, 0.007432816084474325, -0.014127621427178383, 0.02917535975575447, -0.020932650193572044, -0.05635713413357735, -0.020280901342630386, -0.020146716386079788, 0.04604416340589523, 0.0034360599238425493, -0.014280974864959717, -0.0075861685909330845, -0.007303424645215273, 0.022657867521047592, -0.04048512503504753, 0.030785564333200455, 0.011865668930113316, 0.03693884238600731, 0.030133813619613647, 0.0072602941654622555, 0.03596121817827225, -0.023424630984663963, 0.015594057738780975, -0.0025854313280433416, 0.012929553166031837, 0.004066243767738342, 0.04263206198811531, -0.01130976527929306, -0.025571569800376892, -0.06732185184955597, -0.028082720935344696, 0.032069891691207886, 0.02712426707148552, 0.03975670039653778, 0.050146348774433136, -0.0002086136519210413, -0.022677037864923477, -0.013955099508166313, 0.006483945995569229, -0.012038190849125385, 0.0361529104411602, 0.015603641979396343, 0.005396099761128426, 0.010207542218267918, -0.026855899021029472, -0.06835698336362839, -0.026242488995194435, -0.0038218379486352205, 0.06448482722043991, -0.014443911612033844, -0.050491392612457275, -0.033009178936481476, -0.06080436334013939, -0.015210675075650215, 0.005774689372628927, -0.0196674894541502, -0.0249006524682045, 0.04619751498103142, 0.027584325522184372, -0.019859179854393005, -0.013974268920719624, -0.0006852950900793076, 0.028312750160694122, 0.04872783645987511, 0.040945183485746384, 0.001799498568288982, -0.034044310450553894, 0.004217200446873903, 0.02664504013955593, 0.035501159727573395, 0.02185276709496975, 0.03724554926156998, -0.014635602943599224, 0.017606811597943306, -0.02493898943066597, -0.007629299070686102, -0.05183322727680206, 0.025341540575027466, 0.061417773365974426, 0.0010237493552267551, -0.02819773554801941, 0.020664282143115997, 0.05980757251381874, -0.004339403472840786, -0.01291996892541647, -0.004559847991913557, 0.02129686251282692, -0.035290300846099854, -0.03141814470291138, -0.018747372552752495, 0.00718841003254056, 0.004066243767738342, -0.06107272952795029, -0.02210196480154991, 0.017990194261074066, 0.04006340354681015, 0.06045931950211525, -0.05754561722278595, -0.002846610266715288, 0.01467394083738327, -0.045660778880119324, 0.00532421562820673, -0.08334721624851227, -0.048306114971637726, 0.009579754434525967, -0.03011464513838291, -0.09791573137044907, 0.011731484904885292, 0.010265049524605274, -0.017980609089136124, 0.02296457439661026, 0.04585247114300728, -0.02955874241888523, -0.015258598141372204, -0.034178491681814194, -0.046504221856594086, -0.007552622817456722, 0.05934751406311989, 0.0017419913783669472, -0.03256829082965851, -0.040676817297935486, 0.04922623187303543, 0.01709883101284504, -0.014788955450057983, 0.021066833287477493, 0.030536364763975143, -0.025744091719388962, 0.029117852449417114, -0.05474692955613136, -0.00749990763142705, -0.0010572952451184392, 0.01908283308148384, -0.02022339403629303, -0.018498174846172333, 0.022657867521047592, -0.0015023776795715094, 0.025820769369602203, 0.06590334326028824, 0.034216832369565964, 0.023156264796853065, -0.09362185001373291, 0.009229918010532856, -0.004641316831111908, -0.04845946654677391, -0.009699560701847076, 0.03233826160430908, -0.005257123615592718, 0.07847826927900314, -0.035750359296798706, -0.0021002136636525393, -0.010485493578016758, 0.04301544651389122, 0.004313046112656593, -0.03753308579325676, 0.03452353551983833, 0.01962915062904358, -0.0012771408073604107, -0.024095550179481506, -0.0034648135770112276, 0.015172337181866169, 0.009320971556007862, -0.04159693047404289, -0.012785784900188446, 0.04405057430267334, 0.006651675328612328, -0.008472738787531853, -0.03166734054684639, 0.04113687574863434, -0.05029970034956932, 0.10742359608411789, -0.06302797794342041, -0.03354591131210327, 0.008328971453011036, -0.013380027376115322, 0.019744165241718292, 0.02695174515247345, -0.04336049035191536, -0.0004112369497306645, -0.019437460228800774, 0.00596638023853302, -0.009967928752303123, 0.006905665621161461, 0.05942418798804283, -0.018498174846172333, -0.006220370531082153, -0.0439739003777504, 0.09898919612169266, -0.01113724336028099, 0.0883311778306961, 0.013830500654876232, 0.043590519577264786, -0.044318944215774536, -0.029041176661849022, 0.009685183875262737, -0.02271537482738495, 0.008937589824199677, -0.003287499537691474, -0.0006822998984716833, -0.08388394862413406, 0.014971061609685421, 0.0036397315561771393, 0.013303350657224655, -0.01730969175696373, -0.05259999260306358, 0.019130755215883255, 0.048229437321424484, 0.014731448143720627, 0.0006595366285182536, -0.04619751498103142, 0.01970582827925682, 0.003292291657999158, -0.02344380132853985, 0.02206362597644329, 0.012210712768137455, 0.046810925006866455, -0.02789103053510189, 0.030325505882501602, -0.0582740418612957, -0.058082353323698044, -0.021354369819164276, -0.019993364810943604, 0.025169018656015396, -0.04443395882844925, 0.010188372805714607, -0.04669591039419174, -0.03839569538831711, -0.06080436334013939, 0.01786559447646141, 0.027699340134859085, -0.02733512781560421, 0.04738599807024002, -0.02018505521118641, 0.04658089578151703, -0.01745346002280712, 0.005937626585364342, 0.030344674363732338, -0.016523757949471474, 0.06624838709831238, -0.0225811917334795, 0.014741032384335995, 0.010600508190691471, 0.009397648274898529, -0.012134036049246788, -0.05643381178379059, -0.003287499537691474, 0.01599660888314247, -0.023022081702947617, -0.01685921661555767, -0.02438308671116829, 0.008276255801320076, -0.07598628848791122, 0.01956206001341343, -0.03839569538831711, -0.01127142645418644, -0.00759575329720974, -0.03216573968529701, -0.026204150170087814, 0.03229992091655731, -0.060612671077251434, -0.08150698244571686, 0.011798576451838017, -0.0013106866972520947, -0.008233125321567059, -0.05873410031199455, 0.05578206107020378, -0.024862313643097878, 0.0641014501452446, -0.04819110035896301, 0.0495329350233078, 0.031168945133686066, -0.00886091310530901, 0.04259372502565384, -0.026453347876667976, -0.016571681946516037, -0.0018905517645180225, -0.04995465651154518, -0.099602609872818, 0.009718730114400387, -0.011961514130234718, -0.0332392081618309, -0.012862461619079113, -0.044280603528022766, 0.03540531545877457, -0.053788475692272186, 0.029961293563246727, -0.006584583315998316, 0.055552031844854355, -0.03160983324050903, -0.059232499450445175, -0.03159066662192345, 0.058082353323698044, -0.02952040359377861, 0.01634165272116661, -0.04922623187303543, -0.005956795532256365, -0.040945183485746384, -0.054823607206344604, 0.014951893128454685, 0.006651675328612328, -0.05359678342938423, -0.018948648124933243, -0.0054823607206344604, -0.024651454761624336, 0.04286209121346474, 0.009431193582713604, -0.017252184450626373, -0.024498101323843002, -0.0027891029603779316, 0.04888118803501129, -0.06544328480958939, 0.03084307163953781, -0.04884285107254982, -0.0017228221986442804, 0.01257492508739233, 0.0004870147677138448, -0.0422486811876297, 0.0028873446863144636, 0.03504110127687454, -0.012546171434223652, -0.00018824648577719927, 0.05463191494345665, -0.05286835879087448, -0.05129649490118027, -0.0001639856054680422, 0.01754930429160595, -0.062452904880046844, 0.004641316831111908, -0.02206362597644329, -0.04255538806319237, 0.0035366977099329233, -0.022466177120804787, 0.060996055603027344, -0.02129686251282692, -0.023501308634877205, 0.016763372346758842, 0.019935857504606247, 0.05835071951150894, -0.0231754332780838, -0.03791646659374237, -0.01862277463078499, 0.02053009904921055, -0.05352010950446129, -0.034216832369565964, -0.033009178936481476, -0.01017878856509924, 0.01602536253631115, 0.010389648377895355, -0.07291922718286514, 0.0350986085832119, 0.032970841974020004, -0.021201016381382942, -0.0038889297284185886, -0.010217126458883286, -0.005252331495285034, -0.010744276456534863, -0.04949459806084633, -0.04727098345756531, -0.026127474382519722, -0.03925830125808716, 0.004588601645082235, -0.037341393530368805, -0.001142358174547553, -0.014971061609685421, 0.011041397228837013, -0.015517381019890308, 0.07295756787061691, 0.04420392960309982, -0.054095182567834854, 0.018756957724690437, -0.036402106285095215, -0.009613300673663616, -0.03354591131210327, 0.016744202002882957, -0.0029256828129291534, -0.005448814947158098, 0.05325173959136009, -0.005865742452442646, -0.034005969762802124, 0.09392855316400528, -0.0190061554312706, -0.020242562517523766, 0.001625778735615313, 0.002511151134967804, 0.048267778009176254, 0.045162383466959, 0.04113687574863434, -0.024057211354374886, -0.06759022176265717, 0.02403804287314415, -0.0570855587720871, -0.08672098070383072, 0.02921369858086109, -0.022121133282780647, 0.006114940624684095, -0.0908614993095398, 0.0016221845289692283, 0.024747299030423164, 0.007389685604721308, 0.05421019718050957, 0.06486821174621582, -0.02081763558089733, 0.001169314724393189 ]
40,022
s3path.old_versions
glob
Glob the given relative pattern in the Bucket / key prefix represented by this path, yielding all matching files (of any kind)
def glob(self, pattern: str) -> Generator[S3Path, None, None]: """ Glob the given relative pattern in the Bucket / key prefix represented by this path, yielding all matching files (of any kind) """ self._absolute_path_validation() general_options = self._accessor.configuration_map.get_general_options(self) glob_new_algorithm = general_options['glob_new_algorithm'] if not glob_new_algorithm: yield from super().glob(pattern) return yield from self._glob(pattern)
(self, pattern: str) -> Generator[s3path.old_versions.S3Path, NoneType, NoneType]
[ 0.04184740409255028, -0.04889242351055145, -0.03881804645061493, 0.0027673710137605667, -0.0147769246250391, -0.010726039297878742, 0.03376324847340584, -0.008828287944197655, 0.04033272713422775, 0.008502455428242683, 0.019955012947320938, 0.046039190143346786, 0.019215285778045654, 0.02004307508468628, -0.038465797901153564, 0.030099837109446526, 0.05234448239207268, 0.04568693786859512, -0.024551887065172195, 0.005398244597017765, -0.0626654326915741, 0.05748734250664711, 0.034960899502038956, 0.005112040787935257, 0.021046990528702736, 0.028426645323634148, -0.02751079387962818, 0.0033309722784906626, 0.0579804964363575, -0.03471432253718376, -0.02206851728260517, 0.020659513771533966, 0.002974318340420723, 0.015622326172888279, -0.05882589519023895, -0.07791789621114731, -0.020694738253951073, 0.039910025894641876, -0.055690862238407135, 0.027968719601631165, 0.07481808960437775, 0.050160523504018784, 0.028162457048892975, -0.017674187198281288, 0.0593542717397213, 0.05886112153530121, -0.008929559960961342, 0.015085143968462944, -0.02918398566544056, -0.011492185294628143, 0.001923069590702653, 0.07967914640903473, -0.0361761637032032, -0.042270105332136154, -0.0071639022789895535, 0.014363029971718788, 0.015137981623411179, 0.027088092640042305, 0.023776933550834656, 0.045863065868616104, 0.018158532679080963, -0.005244134925305843, -0.007318011950701475, -0.0006301988614723086, -0.017515674233436584, -0.07249323278665543, -0.040896326303482056, -0.057910043746232986, -0.005539144854992628, 0.043221183121204376, -0.06386308372020721, 0.006234840489923954, 0.022015679627656937, -0.006908520590513945, -0.0654129907488823, 0.01634444110095501, 0.017110586166381836, 0.005090025253593922, 0.05195700377225876, 0.0035599353723227978, -0.04600396379828453, -0.01589532010257244, 0.004381120204925537, -0.030786726623773575, 0.011729954741895199, 0.039733897894620895, -0.009704511612653732, -0.0527319572865963, 0.06277110427618027, 0.0367397665977478, -0.01785031333565712, 0.03503134846687317, 0.0071198707446455956, 0.010690813884139061, 0.011976529844105244, -0.0006412066868506372, -0.002714533358812332, -0.020958926528692245, 0.04406658560037613, 0.019919786602258682, -0.0256790891289711, -0.01750686950981617, 0.05924859642982483, -0.03927597403526306, 0.043820008635520935, -0.024816075339913368, -0.003348584985360503, -0.032724108546972275, 0.010329756885766983, 0.03832489624619484, -0.014318997971713543, 0.06699811667203903, 0.043221183121204376, 0.005090025253593922, -0.03323487192392349, -0.006987776607275009, 0.005728479940444231, 0.0031702578999102116, -0.015833677724003792, -0.019285734742879868, -0.0038835660088807344, 0.03112136572599411, 0.0209941528737545, 0.06580046564340591, 0.09313513338565826, -0.03783174604177475, 0.023178108036518097, -0.01598338410258293, -0.004799418151378632, 0.04628576710820198, 0.002322654239833355, 0.05526816472411156, -0.042833708226680756, -0.026788679882884026, -0.03231901675462723, 0.028655609115958214, 0.055585190653800964, -0.04920944944024086, 0.009220167063176632, 0.03353428468108177, 0.054211411625146866, 0.013552852906286716, 0.04452450945973396, 0.0038835660088807344, 0.0037602782249450684, -0.020395325496792793, 0.01643250323832035, 0.013825846835970879, 0.004649711772799492, -0.01746283657848835, 0.013491208665072918, 0.07277502864599228, 0.06882981956005096, 0.0541057363152504, -0.017815088853240013, -0.01123680267482996, -0.0032517160288989544, 0.05833274498581886, -0.03762039542198181, 0.015111562795937061, 0.04241100698709488, 0.008123786188662052, -0.023583196103572845, 0.007657053414732218, 0.004119133576750755, 0.02987087517976761, -0.007229949347674847, 0.04269280657172203, -0.014125260524451733, -0.0010837218724191189, 0.02995893731713295, -0.0013209407916292548, 0.0001828677486628294, -0.029025472700595856, 0.045863065868616104, 0.06421533226966858, -0.029624298214912415, 0.05368303507566452, 0.060939401388168335, -0.0018295029876753688, 0.03122704103589058, -0.05347168445587158, 0.04054407775402069, -0.016740722581744194, 0.0014200113946571946, 0.023970672860741615, -0.0007204631110653281, 0.006670751143246889, 0.026524491608142853, 0.01078768353909254, -0.058684997260570526, 0.03538360074162483, -0.007886016741394997, -0.006626719608902931, 0.01474169921129942, -0.020976539701223373, -0.0367397665977478, 0.020465776324272156, -0.06009399890899658, 0.08954217284917831, -0.0709785521030426, -0.004293057601898909, -0.00016043927462305874, -0.03122704103589058, 0.026788679882884026, -0.025432514026761055, 0.03120942786335945, 0.020078299567103386, -0.013024476356804371, -0.0019450853578746319, -0.06375741213560104, 0.004927108995616436, 0.017383581027388573, -0.03716246783733368, 0.0064770132303237915, -0.0030073418747633696, -0.02238554321229458, -0.006010280456393957, -0.01956753619015217, 0.021663429215550423, 0.027546018362045288, -0.022913919761776924, -0.06682199239730835, -0.02810961939394474, 0.047906119376420975, 0.007071436382830143, 0.03494328632950783, 0.014495124109089375, -0.0662936121225357, -0.05551473796367645, -0.00603229645639658, -0.023495133966207504, 0.09834844619035721, -0.008766643702983856, 0.017092974856495857, -0.032354243099689484, 0.05583176389336586, 0.0001422763307346031, 0.019690824672579765, 0.012857156805694103, -0.004971140529960394, 0.019039159640669823, -0.026577329263091087, -0.011897273361682892, -0.06386308372020721, 0.006221631076186895, 0.007533765863627195, 0.07664979249238968, 0.05621923878788948, 0.017189843580126762, -0.011316059157252312, 0.07502944022417068, -0.06167912855744362, 0.000369037821656093, 0.02948339842259884, -0.06699811667203903, -0.01634444110095501, 0.014653636142611504, 0.012513712048530579, 0.040227051824331284, -0.02226225472986698, 0.05562041327357292, 0.0005988265038467944, -0.0029060698579996824, -0.01858123391866684, 0.003196676727384329, -0.003403624054044485, -0.016996104270219803, -0.04357343539595604, 0.02520355023443699, 0.0028466274961829185, 0.0012361804256215692, -0.03776129335165024, 0.03485522419214249, -0.013341502286493778, 0.013975553214550018, -0.04269280657172203, 0.02120550349354744, -0.01445109210908413, -0.03013506345450878, 0.016353247687220573, 0.01895109750330448, 0.03323487192392349, -0.01342075876891613, 0.019039159640669823, 0.032636042684316635, -0.004427353385835886, -0.0012835141969844699, 0.008973591029644012, 0.0008140297723002732, -0.017233874648809433, -0.03133271634578705, -0.038289669901132584, -0.04251668229699135, -0.005323391407728195, -0.02217419259250164, 0.05009007453918457, -0.04540513828396797, 0.019409023225307465, 0.010100794024765491, -0.061538226902484894, 0.033023521304130554, 0.03909984603524208, 0.044700637459754944, -0.03221334144473076, 0.01896871067583561, 0.0004620540712494403, -0.015419782139360905, -0.02264973148703575, 0.04871629551053047, -0.004803821444511414, -0.014318997971713543, 0.025696702301502228, -0.0280215572565794, -0.0013682745629921556, -0.009695705026388168, 0.057522568851709366, 0.07573393732309341, -0.02965952455997467, -0.0007865101797506213, -0.03976912423968315, 0.05554996430873871, -0.04776521772146225, -0.0021707459818571806, -0.03353428468108177, 0.008136995136737823, -0.058684997260570526, 0.026594940572977066, -0.027352280914783478, -0.01703133061528206, 0.008084157481789589, -0.014292579144239426, -0.03552450239658356, 0.02733466774225235, -0.007318011950701475, 0.04815269634127617, 0.009704511612653732, -0.01905677281320095, 0.043045058846473694, 0.033111583441495895, 0.0343620739877224, 0.022808244451880455, -0.022913919761776924, 0.03772607073187828, -0.06682199239730835, 0.004825836978852749, 0.049561697989702225, -0.025696702301502228, 0.002300638472661376, -0.059671297669410706, 0.06682199239730835, -0.011994142085313797, 0.030311187729239464, 0.028039170429110527, 0.08749911934137344, 0.025661475956439972, -0.019866948947310448, -0.004127940163016319, -0.03980435058474541, 0.04174172878265381, 0.08756957203149796, -0.007115467917174101, 0.000612035917583853, -0.05769869312644005, -0.0007149592274799943, 0.0028818524442613125, 0.011219190433621407, 0.01694326661527157, -0.010972615331411362, -0.031949155032634735, -0.020659513771533966, 0.0269295796751976, -0.018722133710980415, -0.05213313177227974, -0.0041543589904904366, -0.044982437044382095, -0.017815088853240013, -0.03245991840958595, 0.006631122902035713, 0.08270850777626038, 0.03459103778004646, 0.04033272713422775, 0.020536227151751518, 0.013500015251338482, 0.02712331712245941, -0.012082205154001713, 0.07524079084396362, -0.02499219961464405, -0.0025824392214417458, -0.03527792543172836, 0.03469671308994293, -0.021962841972708702, 0.04434838518500328, -0.044594962149858475, -0.031861092895269394, -0.07002747803926468, 0.0343620739877224, -0.01518201269209385, -0.07002747803926468, -0.0010248299222439528, 0.021610591560602188, -0.030099837109446526, -0.07270458340644836, 0.005869380198419094, 0.02957146055996418, -0.0690411701798439, 0.07249323278665543, 0.031244652345776558, 0.0005586478509940207, -0.018915873020887375, -0.05738166719675064, -0.11497468501329422, -0.025538189336657524, 0.024446211755275726, -0.002238994697108865, -0.0269295796751976, -0.028937410563230515, -0.06157345324754715, -0.016318021342158318, 0.0579804964363575, 0.0071242740377783775, -0.06682199239730835, -0.004317274782806635, -0.00030684354715049267, 0.08658326417207718, -0.01151860412210226, 0.019919786602258682, -0.033798471093177795, -0.019884562119841576, 0.035348374396562576, -0.06745604425668716, 0.02634836547076702, -0.05953039973974228, 0.027000030502676964, 0.05847364664077759, -0.014292579144239426, -0.004891884047538042, -0.01877497136592865, -0.021275952458381653, -0.027774982154369354, -0.021962841972708702, -0.01492663100361824, -0.00015287137648556381, 0.003907783422619104, -0.017260292544960976, 0.010338563472032547, 0.0324246920645237, 0.0433620847761631, 0.05068890005350113, -0.03337576985359192, -0.0488571971654892, 0.02918398566544056, 0.009590030647814274, -0.04082587733864784, 0.022103743627667427, 0.000804673123639077, 0.07862239331007004, -0.007608619052916765, -0.047694768756628036, -0.12180835753679276, 0.030769113451242447, -0.0010892257560044527, 0.07918599992990494, -0.021663429215550423, 0.008638952858746052, -0.059847425669431686, 0.04505288600921631, -0.0017491457983851433, -0.012584162876009941, -0.0649198368191719, 0.019743662327528, -0.02294914424419403, -0.08327210694551468, -0.007141886744648218, -0.0174011941999197, -0.043925683945417404, -0.026277916505932808, 0.03881804645061493, -0.014539155177772045, -0.03917029872536659, -0.006036699283868074, -0.04424270987510681, 0.017779862508177757, 0.017929568886756897, -0.008432005532085896, -0.06217227876186371, 0.020360101014375687, -0.03453819826245308, -0.01993739977478981, -0.07982005178928375, 0.026383591815829277, 0.041283804923295975, -0.014142872765660286, 0.03443252295255661, -0.025819988921284676, 0.01776225119829178, -0.02013113722205162, 0.05019574984908104, -0.005944233387708664, 0.0013286463217809796, 0.0017216261476278305, -0.012082205154001713, -0.07770654559135437, 0.048187918961048126, -0.001587330480106175, 0.004825836978852749, -0.005622804630547762, -0.04241100698709488, -0.02111743949353695, 0.013852265663444996, 0.02529161237180233, 0.032142892479896545, -0.059565622359514236, 0.04794134572148323, 0.03193154186010361, -0.056360140442848206, 0.02840903401374817, -0.009810186922550201, -0.010047956369817257, 0.03140316531062126, -0.005547951441258192, -0.05340123176574707, -0.032812170684337616, -0.010276919230818748, -0.00900000985711813, -0.03987479954957962, 0.023178108036518097, -0.06555388867855072, 0.008493649773299694, -0.020659513771533966, -0.02404112182557583, -0.013288664631545544, -0.01744522526860237, 0.03062821365892887, 0.023688871413469315, -0.009554805234074593, 0.07076720148324966, 0.018634071573615074, -0.055585190653800964, 0.04174172878265381, -0.026894355192780495, 0.06537776440382004, 0.014336611144244671, -0.0341154970228672, -0.009343454614281654, 0.014336611144244671, -0.002366685541346669, -0.060164451599121094, 0.08764001727104187, -0.015789644792675972, 0.07249323278665543, -0.053048983216285706, -0.032917845994234085, 0.06326425820589066, 0.0657300129532814, -0.012584162876009941, -0.0004265538009349257, -0.036317065358161926, -0.05075935274362564, 0.003485082183033228, -0.0027651693671941757, 0.06988657265901566, -0.026612553745508194, -0.020641902461647987, 0.0003442702000029385, -0.007234352640807629, -0.027863044291734695, 0.07552258670330048, 0.021716266870498657, 0.021416854113340378, 0.03705679252743721, 0.012522518634796143, 0.03987479954957962, 0.005737286061048508, -0.030117450281977654, -0.026401203125715256, -0.025890439748764038, -0.0566067174077034, -0.006353725213557482, -0.04131902754306793, 0.03733859211206436, -0.041565604507923126, 0.03959299996495247, -0.008991203270852566, -0.026277916505932808, -0.007331221364438534, -0.0034586633555591106, 0.038677144795656204, -0.032142892479896545, 0.04350298270583153, 0.03219573199748993, -0.03219573199748993, -0.011263221502304077, -0.008810674771666527, -0.04248145595192909, -0.0003046419587917626, 0.027933495119214058, -0.073972687125206, 0.009255391545593739, 0.0032869409769773483, 0.0033948179334402084, 0.10884552448987961, 0.007419283967465162, 0.014935437589883804, -0.02150491625070572, 0.001668788492679596, 0.029342498630285263, -0.01776225119829178, 0.00973093044012785, 0.03938164934515953, -0.04290415719151497, 0.05544428899884224, 0.042939383536577225, 0.011007839813828468, 0.007362043485045433, 0.07140125334262848, -0.07192962616682053, 0.0009763953858055174, -0.01463602390140295, -0.03430923447012901, -0.05554996430873871, 0.014917824417352676, -0.019602760672569275, 0.026683004572987556, -0.035859137773513794, -0.01386107224971056, -0.008845900185406208, -0.020958926528692245, -0.02527400106191635, 0.017691800370812416, -0.003033760702237487, -0.0527319572865963, 0.020483389496803284, -0.02832097001373768, 0.042833708226680756, -0.019479474052786827, -0.06196092814207077, -0.002302840119227767, -0.06009399890899658, -0.045088112354278564, -0.02277301996946335, -0.07411358505487442, -0.006248049903661013, 0.011562635190784931, -0.040121376514434814, -0.04477108642458916, -0.008247073739767075, 0.0014189105713739991, 0.012302362360060215, -0.07055585086345673, 0.046144865453243256, 0.034185949712991714, -0.021927617490291595, 0.02666539140045643, -0.050829801708459854, 0.0538591593503952, -0.051992230117321014, -0.05551473796367645, 0.06086895242333412, -0.03899417072534561, 0.016423696652054787, 0.019144834950566292, -0.07126035541296005, 0.023107657209038734, -0.03659886494278908, -0.027299443259835243, -0.005032784305512905, -0.0354892760515213, -0.008092964068055153, 0.056571491062641144, -0.007762728724628687, 0.02451666072010994, -0.02217419259250164, -0.038571469485759735, -0.015604713931679726, 0.0014772521099075675, 0.029060697183012962, 0.007467718794941902, 0.023213332518935204, -0.009466742165386677, -0.050618451088666916, 0.0034102287609130144, 0.03628183901309967, 0.07672024518251419, 0.019866948947310448, 0.01776225119829178, -0.03804309666156769, -0.035559725016355515, 0.037690844386816025, -0.012020560912787914, 0.025238774716854095, 0.028831735253334045, 0.0024899733252823353, -0.03455581143498421, -0.05357735976576805, 0.08679461479187012, 0.034080274403095245, -0.00228522764518857, 0.022878695279359818, -0.03006461262702942, 0.000481317809317261, 0.030205512419342995, -0.002630873816087842, -0.023776933550834656, -0.0011536215897649527, 0.01761254481971264, -0.024076348170638084, 0.012381618842482567, -0.038853272795677185, 0.028056781738996506, -0.03656364232301712, 0.007318011950701475, -0.045651715248823166, -0.016335634514689445, -0.003846139181405306, -0.00291707762517035, 0.03645796701312065, -0.03571823984384537, 0.06336992979049683, -0.03527792543172836, -0.009510774165391922, -0.07411358505487442, -0.03733859211206436, 0.03656364232301712, -0.0014233137480914593, 0.029113534837961197, -0.019409023225307465, -0.0001773638214217499, 0.00888112559914589, 0.04315073415637016, 0.016080252826213837, 0.03238946944475174, 0.0068336669355630875, 0.01965559832751751, 0.043608658015728, -0.010144825093448162, -0.012725062668323517, -0.005244134925305843, -0.036634091287851334, -0.004605680238455534, -0.043221183121204376, -0.0011811412405222654, -0.05001962557435036, -0.016097865998744965, 0.025362063199281693, -0.009907055646181107, 0.020941315218806267, 0.045863065868616104, -0.024816075339913368, 0.005644820164889097, -0.03878282010555267, -0.04920944944024086, 0.028144845739006996, 0.011492185294628143, -0.05998832359910011, 0.005702061112970114, -0.019919786602258682, 0.014477510936558247, 0.03998047485947609, 0.01503230631351471, -0.07819969207048416, -0.009801380336284637, 0.04357343539595604, 0.03443252295255661, 0.045863065868616104, 0.02316049486398697, 0.022332705557346344, -0.021328790113329887 ]
40,023
s3path.old_versions
group
group method is unsupported on S3 service AWS S3 don't have this file system action concept
def group(self): """ group method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.group.__qualname__) raise NotImplementedError(message)
(self)
[ -0.017035869881510735, -0.019769171252846718, -0.05005898326635361, 0.06597746163606644, 0.01256631687283516, -0.06137038767337799, -0.0030749656725674868, 0.04985269531607628, 0.028381654992699623, 0.035962700843811035, 0.05793226882815361, -0.024599725380539894, 0.06116409972310066, -0.02786593697965145, -0.012334244325757027, 0.02906927838921547, 0.012454578652977943, 0.0026774334255605936, 0.03957272693514824, -0.006708625704050064, -0.029103659093379974, 0.017757873982191086, 0.03391702473163605, -0.06260810792446136, 0.03250739350914955, 0.1164146363735199, 0.03133843466639519, -0.00027961560408584774, 0.004157972522079945, -0.022175854071974754, -0.06979377567768097, -0.0024539558216929436, -0.0005511731142178178, 0.07907668501138687, 0.03809433430433273, 0.01479249820113182, -0.008818769827485085, 0.014079088345170021, -0.0593075156211853, 0.012411601841449738, -0.06862480938434601, 0.05270633101463318, -0.0026559452526271343, -0.08437138795852661, 0.051262322813272476, 0.057829126715660095, 0.022829096764326096, 0.10740677267313004, 0.031682245433330536, -0.007310295943170786, 0.02100689336657524, 0.027986271306872368, -0.016313863918185234, -0.03964148834347725, -0.029533423483371735, 0.03238706290721893, 0.05329081043601036, 0.0050153532065451145, -0.021694516763091087, 0.06229867786169052, 0.03977901116013527, 0.04751477390527725, 0.06986253708600998, -0.024204343557357788, -0.04493618756532669, -0.03922891244292259, -0.027247076854109764, -0.03085709922015667, -0.0493025965988636, 0.07440084964036942, 0.0008219248265959322, -0.016313863918185234, 0.0055654519237577915, 0.022536857053637505, -0.015523097477853298, 0.0024453606456518173, -0.01756877638399601, 0.013967350125312805, 0.03219796344637871, 0.011500501073896885, -0.023843340575695038, -0.02499510906636715, 0.010692543350160122, -0.00188344344496727, 0.025528017431497574, -0.002094028051942587, 0.005767440889030695, -0.04864935576915741, -0.042976461350917816, -0.026473499834537506, -0.05078098550438881, 0.014061897993087769, -0.0185830220580101, 0.0009256055345758796, 0.012454578652977943, 0.005445117596536875, -0.030100712552666664, -0.056041304022073746, -0.031441580504179, -0.022536857053637505, 0.0021960970479995012, -0.01432835217565298, 0.04830554127693176, -0.030478905886411667, 0.03795681148767471, -0.04448923096060753, -0.03737233206629753, -0.019184691831469536, -0.07309436798095703, 0.014534639194607735, 0.055903781205415726, 0.03843814507126808, -0.0342780239880085, 0.006811769213527441, 0.0030577750876545906, -0.04627705365419388, 0.02793470025062561, -0.054115958511829376, -0.025338921695947647, -0.045898862183094025, 0.0018662528600543737, 0.00014370253484230489, -0.005896370392292738, 0.002720410004258156, 0.02492634765803814, -0.007538071367889643, 0.001199043239466846, 0.027161123231053352, 0.026439119130373, -0.007477904204279184, -0.04435170814394951, -0.014543234370648861, -0.06597746163606644, -0.06680261343717575, 0.005531070753931999, 0.011268428526818752, 0.06755899637937546, -0.011827122420072556, 0.002101548947393894, 0.03692537546157837, 0.029172422364354134, -0.0078560970723629, 0.005256021395325661, 0.027694031596183777, 0.005685785785317421, 0.009953347966074944, 0.02243371307849884, -0.010821472853422165, 0.007327486760914326, -0.028914563357830048, 0.015170690603554249, 0.0335560217499733, 0.04668962582945824, -0.015454335138201714, 0.026198450475931168, 0.02085217833518982, 0.016485771164298058, -0.020181745290756226, -0.04101673513650894, -0.03792243078351021, -0.012798390351235867, -0.025304540991783142, -0.028055034577846527, 0.01346022728830576, 0.027745602652430534, -0.0335732102394104, 0.016391221433877945, 0.029378708451986313, -0.023946484550833702, 0.02172889932990074, -0.016374031081795692, 0.039400819689035416, 0.011328594759106636, 0.008947699330747128, 0.02857075072824955, 0.09090381115674973, -0.003940941300243139, 0.037819284945726395, 0.006313242018222809, -0.07048139721155167, 0.051606133580207825, -0.01565202698111534, 0.018445497378706932, 0.023757386952638626, -0.013185177929699421, 0.037544235587120056, -0.008272969163954258, 0.025407683104276657, -0.01901278644800186, 0.014620591886341572, 0.015454335138201714, -0.0006075797136873007, -0.002352961339056492, 0.005505284760147333, 0.023980865254998207, -0.0679028108716011, -0.0009906074265018106, 0.006296051666140556, 0.014723735861480236, 0.07880163937807083, 0.00978144258260727, 0.035051602870225906, 0.001565417624078691, 0.0407416857779026, 0.04916507005691528, 0.012222505174577236, 0.028416035696864128, 0.002267008414492011, -0.07192540168762207, 0.029894426465034485, -0.023533910512924194, 0.0105378283187747, -0.04256388545036316, 0.04452361539006233, 0.031682245433330536, 0.012205314822494984, 0.0471365824341774, -0.000014429010661842767, 0.002804214134812355, 0.02707516960799694, 0.03651279956102371, 0.03530946001410484, 0.03329816088080406, 0.013021867722272873, 0.01727653667330742, -0.007662702817469835, 0.057760365307331085, -0.03271368145942688, -0.03278244286775589, -0.03864443302154541, 0.005827608052641153, -0.02478882297873497, 0.01863459311425686, 0.05494110658764839, 0.00458988593891263, -0.015729384496808052, 0.03524069860577583, -0.018462687730789185, 0.013580561615526676, -0.027969080954790115, -0.016520151868462563, -0.02129913493990898, 0.014147850684821606, 0.10610028356313705, -0.05373776704072952, -0.02587183006107807, 0.0011797038605436683, 0.023980865254998207, 0.05985761433839798, 0.0017781510250642896, 0.05793226882815361, 0.028037842363119125, -0.0906975269317627, -0.03843814507126808, -0.009841609746217728, -0.05652264133095741, -0.006476552691310644, -0.016124768182635307, 0.04328589141368866, -0.019597265869379044, -0.04094797372817993, -0.018961215391755104, 0.02028488926589489, -0.0350172221660614, 0.006682839710265398, 0.024668488651514053, 0.053978435695171356, 0.02092094160616398, -0.01865178346633911, 0.07419456541538239, 0.06044209375977516, 0.016838178038597107, -0.013554776087403297, -0.009798632934689522, -0.021453849971294403, -0.04844306781888008, -0.029619377106428146, 0.026198450475931168, -0.036100227385759354, -0.04242636263370514, 0.062333058565855026, 0.02315571717917919, -0.005380652844905853, 0.05628197267651558, -0.01224829163402319, 0.01822201907634735, 0.020456794649362564, -0.009411845356225967, -0.0164170078933239, 0.009729870595037937, -0.04944011941552162, 0.02508106268942356, -0.07550104707479477, -0.03207762911915779, -0.00526891415938735, 0.008440576493740082, -0.07790772616863251, -0.015763765200972557, 0.07275055348873138, 0.013752467930316925, -0.04748039320111275, 0.054253485053777695, 0.021814851090312004, 0.026112496852874756, -0.010512042790651321, 0.011990432627499104, 0.07811401784420013, -0.007434927858412266, -0.0528438575565815, 0.01032294612377882, 0.022330569103360176, 0.025184206664562225, -0.04362970218062401, -0.03812871500849724, 0.02456534467637539, 0.07233797758817673, 0.009678298607468605, 0.0556974932551384, -0.020800607278943062, 0.04778982326388359, -0.05652264133095741, 0.00885315053164959, -0.03726918622851372, -0.013443036936223507, 0.04734287038445473, -0.02549363672733307, -0.02315571717917919, 0.004736005794256926, -0.02521858736872673, 0.05009336397051811, -0.03530946001410484, 0.017164798453450203, 0.007903371006250381, 0.006588291376829147, -0.09654232114553452, -0.019322216510772705, -0.002271306002512574, -0.07825154066085815, 0.030977433547377586, 0.05731340870261192, -0.02721269428730011, -0.03300592303276062, -0.0074005466885864735, 0.033538829535245895, -0.06721518188714981, -0.0012699543731287122, 0.05635073408484459, -0.020095793530344963, 0.03830062225461006, -0.03364197537302971, 0.027951890602707863, 0.028880182653665543, 0.0008219248265959322, 0.04105111584067345, 0.013210964389145374, -0.006897721905261278, 0.00035643603769131005, 0.01585831493139267, 0.0012957402504980564, -0.024187153205275536, 0.08065821975469589, -0.06295192241668701, 0.02621564082801342, 0.01446587685495615, 0.02442781999707222, -0.003014798741787672, 0.008341731503605843, -0.017912589013576508, 0.016906939446926117, -0.06339887529611588, -0.015376977622509003, -0.055972542613744736, -0.04548628628253937, -0.012635079212486744, -0.007714274805039167, 0.042254455387592316, 0.04679277166724205, -0.014758116565644741, -0.04063853994011879, 0.02221023477613926, -0.004503933247178793, 0.029086468741297722, -0.01167240645736456, 0.021247562021017075, -0.0038034168537706137, 0.05102165415883064, 0.03169943764805794, 0.013279726728796959, 0.010254183784127235, -0.012067790143191814, 0.04913068935275078, -0.03199167922139168, -0.0010679650586098433, -0.03891948238015175, -0.05621321126818657, -0.061679817736148834, -0.06460221856832504, -0.027178313583135605, -0.019614456221461296, 0.010305755771696568, 0.012987486086785793, -0.012815580703318119, -0.04414542019367218, -0.019597265869379044, 0.015093333087861538, -0.008307349868118763, 0.004740303847938776, -0.0182048287242651, -0.008711328729987144, -0.05335957556962967, 0.024754442274570465, -0.05494110658764839, -0.07247550040483475, -0.000041465569665888324, 0.047617919743061066, 0.026198450475931168, 0.016331054270267487, -0.016098981723189354, -0.027057979255914688, 0.03850691020488739, 0.012403006665408611, -0.01493002288043499, 0.01951131410896778, 0.027814365923404694, 0.02320728823542595, -0.07130654156208038, -0.028828609734773636, -0.017809445038437843, 0.044386088848114014, -0.006180014926940203, 0.02513263374567032, 0.06879671663045883, -0.06831537932157516, 0.047824207693338394, 0.0017684813356027007, -0.04084482789039612, -0.04469551891088486, 0.004684434272348881, 0.005625618621706963, 0.050024598836898804, -0.040535397827625275, -0.03850691020488739, -0.05972009152173996, -0.0015783105045557022, 0.05177804082632065, -0.03402016684412956, -0.004368557129055262, 0.045830097049474716, 0.03977901116013527, -0.009592345915734768, 0.015136309899389744, 0.051262322813272476, 0.009549370035529137, -0.003158769803121686, -0.01292731985449791, -0.032249536365270615, 0.07275055348873138, -0.05387528985738754, 0.010408898815512657, -0.08444014936685562, 0.019373789429664612, 0.034037355333566666, -0.04063853994011879, -0.003167365211993456, -0.003807714441791177, 0.02750493586063385, -0.001288219471462071, -0.021161610260605812, 0.035034410655498505, -0.029550613835453987, 0.03891948238015175, -0.036753468215465546, -0.03290277719497681, -0.018668973818421364, -0.007628321647644043, 0.03891948238015175, 0.019098740071058273, 0.04627705365419388, -0.01050344668328762, -0.0021391534246504307, -0.009308701381087303, -0.07722010463476181, 0.010039301589131355, 0.02135070599615574, -0.024960728362202644, -0.04878687858581543, -0.018514258787035942, -0.0009718052460812032, 0.054391007870435715, -0.05521615594625473, 0.04799611121416092, -0.046105146408081055, -0.043251510709524155, 0.04400789737701416, 0.025682732462882996, 0.0199926495552063, -0.044386088848114014, 0.0045683979988098145, -0.03706289827823639, -0.012360029853880405, 0.008947699330747128, 0.008904722519218922, -0.024410629644989967, -0.0015417805407196283, 0.052878238260746, -0.04259826987981796, 0.004218139685690403, -0.02365424484014511, 0.054115958511829376, -0.0550098717212677, -0.03281682729721069, 0.062195535749197006, -0.007490796968340874, 0.05779474601149559, 0.01549731194972992, -0.02671416848897934, -0.07017196714878082, 0.056694548577070236, 0.052671950310468674, 0.04655210301280022, 0.0713753029704094, -0.07130654156208038, 0.02306976355612278, 0.011466119438409805, -0.008870341815054417, -0.05831046402454376, -0.026404738426208496, -0.03551574796438217, -0.003842095611616969, 0.020095793530344963, -0.021402277052402496, 0.03579079732298851, -0.016683463007211685, 0.0012903682654723525, -0.025889020413160324, 0.08162089437246323, -0.04527999833226204, 0.03795681148767471, -0.009231343865394592, -0.0055396659299731255, 0.003977471496909857, -0.0018372436752542853, -0.014070493169128895, -0.008229992352426052, -0.05023088678717613, 0.025751495733857155, -0.006257372908294201, -0.09482326358556747, 0.08189594745635986, -0.023980865254998207, 0.03898824378848076, 0.046105146408081055, 0.0016159149818122387, 0.012961700558662415, 0.12617889046669006, 0.008835960179567337, 0.026748549193143845, -0.03964148834347725, -0.023963674902915955, -0.026662595570087433, -0.07845782488584518, 0.02143665961921215, 0.00583620322868228, -0.016485771164298058, -0.020869368687272072, 0.0035305162891745567, 0.02649069018661976, -0.004933697637170553, -0.005561153870075941, -0.03159629553556442, -0.030805528163909912, -0.004748899023979902, 0.05384090915322304, 0.004907911643385887, -0.005432224832475185, 0.02743617258965969, 0.027900317683815956, 0.02343076653778553, -0.04971516877412796, -0.053462717682123184, -0.00582331046462059, -0.0578635074198246, 0.05813855677843094, -0.047170963138341904, -0.06804033368825912, -0.022261807695031166, -0.018944023177027702, -0.02014736458659172, -0.010133849456906319, 0.036547183990478516, -0.012660865671932697, -0.03448431193828583, 0.033177826553583145, -0.0621267706155777, 0.00469732703641057, 0.01692412979900837, -0.001726579270325601, -0.06742147356271744, 0.003072816878557205, 0.01786101795732975, 0.057760365307331085, 0.034398358315229416, 0.051331084221601486, 0.03448431193828583, 0.06257373094558716, 0.03916015103459358, -0.06388021260499954, 0.021969566121697426, -0.015342596918344498, -0.004525421187281609, -0.03408892825245857, 0.030255429446697235, -0.009171176701784134, -0.009033652022480965, 0.014629187062382698, -0.01324534509330988, -0.04476428031921387, 0.0321292020380497, 0.04534876346588135, -0.033538829535245895, -0.025270158424973488, -0.02243371307849884, -0.04081044718623161, 0.02556239813566208, -0.06817785650491714, -0.02664540521800518, -0.007022353820502758, 0.01289293821901083, -0.034037355333566666, -0.0692780539393425, -0.02721269428730011, -0.03805995360016823, 0.07598238438367844, -0.07832030206918716, 0.017981350421905518, -0.018307972699403763, -0.002984715159982443, 0.01135438121855259, -0.04376722872257233, -0.022829096764326096, 0.0400196798145771, -0.018445497378706932, -0.020112983882427216, 0.017560182139277458, -0.05586940050125122, 0.00421384209766984, -0.011706788092851639, -0.04149807244539261, 0.027883127331733704, -0.05566311255097389, -0.036822233349084854, 0.012953105382621288, -0.03316063806414604, -0.03493126854300499, 0.010907425545156002, 0.006936400663107634, 0.005157175473868847, -0.04885563999414444, -0.030530478805303574, -0.062883161008358, -0.012978890910744667, -0.04393913224339485, 0.000007378185273410054, 0.08024565130472183, 0.02514982409775257, -0.026164069771766663, 0.00650233868509531, -0.043251510709524155, -0.023190097883343697, 0.03441555052995682, 0.028158176690340042, 0.026164069771766663, 0.020319269970059395, 0.039400819689035416, -0.025974972173571587, 0.00449963565915823, 0.06690575182437897, -0.05566311255097389, 0.004564099945127964, 0.01199902780354023, 0.002327175345271826, -0.026026545092463493, -0.03706289827823639, 0.015041761100292206, 0.027453362941741943, 0.03922891244292259, -0.014242399483919144, -0.04129178449511528, -0.018909642472863197, -0.08732816576957703, 0.0246512982994318, -0.0013140053488314152, -0.01951131410896778, 0.03329816088080406, -0.019528504461050034, 0.014311161823570728, 0.01199902780354023, 0.028811419382691383, 0.023379195481538773, 0.017603158950805664, 0.023396385833621025, 0.0007499392377212644, 0.000011121837815153413, -0.0010910648852586746, -0.005642809439450502, 0.013829825446009636, -0.034037355333566666, -0.038678813725709915, 0.04345779865980148, -0.03902262821793556, -0.004056978039443493, -0.010486256331205368, -0.027401791885495186, -0.0083933025598526, 0.034621838480234146, -0.0043900455348193645, 0.030100712552666664, -0.032404251396656036, 0.024307485669851303, 0.0026602428406476974, -0.029120849445462227, -0.022760333493351936, -0.030307000502943993, -0.009360273368656635, 0.009360273368656635, -0.03336692601442337, -0.041394926607608795, 0.019872315227985382, -0.012910128571093082, 0.06412088125944138, 0.02315571717917919, 0.05920437350869179, -0.03157910332083702, 0.0228634774684906, 0.05463167652487755, -0.03273087367415428, -0.015617646276950836, 0.010090872645378113, 0.015291024930775166, 0.0493025965988636, -0.019614456221461296, -0.014998785220086575, 0.00024886056780815125, -0.06938119977712631, 0.032404251396656036, -0.01815325766801834, -0.0022304782178252935, 0.05865427479147911, -0.008371814154088497, 0.034759361296892166, 0.03223234415054321, -0.020388033241033554, 0.018531449139118195, 0.033607590943574905, -0.004551207181066275, -0.07343817502260208, 0.012609293684363365, 0.018118875101208687, 0.0550098717212677, 0.004654350690543652, -0.06222991645336151, 0.004864935297518969, 0.044901806861162186, 0.015823932364583015, 0.03133843466639519, 0.028330083936452866, 0.012712436728179455, -0.004727410618215799 ]
40,024
s3path.old_versions
hardlink_to
hardlink_to method is unsupported on S3 service AWS S3 don't have this file system action concept
def hardlink_to(self, *args, **kwargs): """ hardlink_to method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.hardlink_to.__qualname__) raise NotImplementedError(message)
(self, *args, **kwargs)
[ -0.03571221977472305, -0.02065572887659073, -0.034619685262441635, 0.041004180908203125, -0.01882914826273918, -0.019853398203849792, -0.01334940455853939, 0.05367075279355049, 0.034995242953300476, 0.029037516564130783, 0.04042377322912216, -0.007413016632199287, 0.06381084024906158, -0.04288197681307793, -0.024428386241197586, 0.058348167687654495, -0.0071356152184307575, 0.03125672787427902, 0.04557916894555092, 0.03540494292974472, -0.004553649108856916, -0.006401568651199341, 0.012675106525421143, -0.06824925541877747, 0.03084702603518963, 0.09771354496479034, 0.011104588396847248, 0.01649044081568718, -0.0127433892339468, 0.00034221718669869006, -0.02475273236632347, -0.01630266197025776, 0.0338173545897007, 0.09313856065273285, 0.06589347869157791, 0.03450018912553787, 0.023745551705360413, 0.03557565063238144, -0.05298791825771332, -0.02178240567445755, -0.06087465211749077, 0.05141739919781685, 0.036087777465581894, -0.07258525490760803, 0.057494621723890305, 0.04670584574341774, -0.0213044211268425, 0.08815386891365051, 0.006222324911504984, -0.04219914227724075, -0.02092886157333851, 0.004178090486675501, 0.0227042306214571, -0.020365525037050247, -0.029327720403671265, -0.0010898670880123973, 0.02029724046587944, 0.004929208196699619, -0.03690717741847038, 0.04957374930381775, 0.04308682680130005, 0.013588396832346916, 0.07763822376728058, -0.020706940442323685, 0.01947784051299095, -0.018112171441316605, -0.003926295321434736, -0.04196015000343323, -0.027774272486567497, 0.06544964015483856, 0.018743792548775673, -0.03772657737135887, -0.0022533521987497807, 0.0036424926947802305, 0.026289109140634537, -0.00535171153023839, 0.03420998528599739, -0.01464678905904293, -0.004129012115299702, -0.0013955420581623912, -0.03253703936934471, -0.07115130126476288, -0.040628623217344284, -0.035234235227108, -0.009627959690988064, 0.013494507409632206, 0.008450070396065712, -0.02845710702240467, -0.015645435079932213, -0.008646385744214058, -0.017634188756346703, 0.016985496506094933, -0.03509766608476639, -0.047491103410720825, 0.01611488312482834, -0.012205657549202442, -0.02077522501349449, -0.06705430150032043, 0.016328267753124237, -0.005548026412725449, 0.031171372160315514, -0.030710458755493164, 0.0199216827750206, 0.018368234857916832, 0.054251160472631454, -0.06606419384479523, -0.045271895825862885, -0.02845710702240467, -0.04643271118402481, -0.01084852498024702, 0.007587993051856756, 0.05124669149518013, -0.0024411315098404884, -0.03690717741847038, 0.0007361804018728435, -0.026835376396775246, 0.06606419384479523, -0.02890094928443432, -0.022738372907042503, -0.05479742959141731, -0.002983130980283022, -0.03222976624965668, -0.006896623410284519, -0.05575339496135712, 0.01845358870923519, -0.009815738536417484, -0.02253352291882038, 0.0003323481068946421, -0.015662504360079765, -0.032195623964071274, -0.046193718910217285, -0.011343579739332199, -0.07436062395572662, -0.0037833270616829395, -0.0026993281207978725, 0.009832809679210186, 0.007293520960956812, 0.03871668875217438, 0.02465030737221241, -0.009056085720658302, 0.02695487253367901, -0.033390581607818604, -0.026920730248093605, -0.013050665147602558, -0.012188587337732315, 0.018948644399642944, 0.030915308743715286, -0.02649395912885666, 0.027023155242204666, -0.011539895087480545, 0.042608842253685, 0.027006084099411964, 0.027313360944390297, 0.021065428853034973, -0.04503290355205536, 0.036838892847299576, -0.009440179914236069, -0.03560979291796684, -0.03496110066771507, 0.034995242953300476, 0.009295077994465828, -0.046193718910217285, 0.0031026271171867847, 0.029720349237322807, 0.007822717539966106, -0.040457915514707565, 0.02195311337709427, 0.015252804383635521, 0.024086968973279, 0.015585686080157757, 0.004779838025569916, 0.03373200073838234, 0.015978315845131874, -0.0008684794884175062, 0.06794198602437973, 0.0454084612429142, 0.013554255478084087, -0.017378125339746475, 0.018419446423649788, -0.09163632243871689, 0.001629199250601232, -0.03595121204853058, 0.023421205580234528, 0.003922028001397848, -0.015543009154498577, 0.0389556810259819, -0.031171372160315514, 0.027910839766263962, -0.01270071230828762, 0.03974093869328499, 0.018402377143502235, 0.011667925864458084, 0.013434759341180325, 0.010669281706213951, 0.005441333632916212, -0.11737916618585587, 0.03919467329978943, 0.008680527098476887, -0.0014414199395105243, 0.1214078888297081, 0.007758701220154762, 0.03281017392873764, -0.021936042234301567, 0.041482165455818176, 0.0574604831635952, 0.008164133876562119, 0.06125020980834961, -0.01246172096580267, -0.03636091202497482, 0.039706796407699585, -0.046023011207580566, 0.007387410383671522, -0.047764237970113754, 0.007822717539966106, 0.014279766008257866, 0.058894433081150055, -0.038682546466588974, 0.01659286580979824, 0.013187231495976448, 0.03391977772116661, 0.023387065157294273, -0.041004180908203125, -0.03782900422811508, 0.01399809680879116, 0.04994930699467659, 0.007711756508797407, 0.08139381557703018, -0.019068140536546707, 0.023301711305975914, -0.03653161972761154, 0.009849880822002888, 0.023557772859930992, 0.02364312671124935, 0.049710314720869064, 0.09436766058206558, -0.003951902035623789, 0.017941463738679886, -0.034517258405685425, -0.021253207698464394, -0.020997146144509315, -0.01751469261944294, -0.019716832786798477, 0.007165489252656698, 0.0490957647562027, -0.013392082415521145, 0.0023195017129182816, -0.011343579739332199, 0.05291963368654251, -0.005176735110580921, -0.07292667031288147, 0.055650971829891205, 0.05848473310470581, -0.053226910531520844, -0.01753176376223564, -0.0049676173366606236, -0.05162224918603897, 0.017335448414087296, -0.07074160128831863, 0.005377317778766155, 0.02722800523042679, -0.06623490154743195, -0.010899737477302551, 0.017480550333857536, -0.04701312258839607, -0.00438294094055891, -0.018573084846138954, -0.02567455917596817, 0.01870965212583542, -0.04206257313489914, 0.08016471564769745, 0.025367284193634987, -0.031120160594582558, -0.006102828774601221, 0.02289200946688652, -0.0076690795831382275, -0.05291963368654251, -0.034056346863508224, 0.007361804135143757, -0.044350069016218185, -0.008701865561306477, 0.0019012659322470427, 0.005940655712038279, 0.0024027221370488405, 0.03670232743024826, -0.02243109792470932, -0.020331382751464844, 0.009892557747662067, -0.007925142534077168, 0.018385306000709534, -0.008304968476295471, -0.005599238909780979, 0.06107950210571289, -0.04223328456282616, 0.006307679228484631, 0.012120303697884083, 0.05455843731760979, -0.07012705504894257, -0.0002926050510723144, 0.08173523098230362, -0.007169757038354874, -0.046466853469610214, 0.028747310861945152, -0.013682286255061626, 0.011676461435854435, -0.02743285708129406, -0.011104588396847248, 0.07429233938455582, -0.0030514143873006105, 0.007707488723099232, 0.027842557057738304, 0.014740679413080215, -0.028405895456671715, -0.04066276550292969, 0.019409555941820145, 0.030915308743715286, 0.052578218281269073, -0.006960639264434576, 0.03420998528599739, -0.0189827848225832, 0.03765829652547836, -0.0426429845392704, 0.034807462245225906, -0.04131145775318146, -0.021833617240190506, 0.0648692324757576, -0.05206609144806862, -0.031939562410116196, -0.00479690870270133, -0.0020698406733572483, 0.04639856889843941, 0.041277315467596054, 0.05039314925670624, 0.040799330919981, -0.02306271903216839, -0.10269823670387268, -0.023591915145516396, -0.0031303672585636377, -0.015167450532317162, 0.012086162343621254, 0.03844355419278145, -0.008910983800888062, 0.01636241003870964, 0.039433665573596954, 0.03864840418100357, -0.04206257313489914, 0.04626200348138809, -0.021543413400650024, -0.04223328456282616, -0.009081692434847355, -0.03311745077371597, -0.013409152626991272, 0.04595473036170006, 0.0022981632500886917, 0.04284783452749252, -0.0015225064707919955, 0.012717783451080322, 0.006568009499460459, 0.014527293853461742, -0.012393437325954437, -0.04578401893377304, 0.07763822376728058, -0.03929709643125534, -0.033680789172649384, -0.012811672873795033, 0.05455843731760979, 0.04496461898088455, 0.011335044167935848, -0.004506704397499561, 0.005061507225036621, -0.04677413031458855, -0.024138182401657104, -0.08084754645824432, 0.00876588188111782, -0.014476081356406212, 0.00890244822949171, 0.017856109887361526, 0.007413016632199287, -0.012060555629432201, 0.003049280494451523, 0.04882263019680977, 0.001981285633519292, 0.0021690649446099997, 0.013409152626991272, -0.011941059492528439, 0.03417584300041199, 0.03506352752447128, -0.003072753082960844, -0.025162432342767715, 0.10064972937107086, 0.015978315845131874, 0.03067631833255291, -0.04114075005054474, 0.0013197901425883174, -0.008637850172817707, 0.0032541307155042887, -0.04697898030281067, -0.0003926295612473041, 0.009184117428958416, -0.008492748253047466, 0.012316618114709854, -0.017668329179286957, -0.015440584160387516, -0.04643271118402481, 0.023608986288309097, -0.008522622287273407, -0.00181377783883363, -0.006512529216706753, 0.039058104157447815, -0.004758499562740326, 0.03881911188364029, 0.020160673186182976, -0.0034611148294061422, -0.10822919011116028, 0.02159462496638298, 0.05691421404480934, 0.04325753450393677, -0.007353268563747406, -0.047695957124233246, -0.06265001744031906, 0.008091582916676998, -0.0014680931344628334, -0.029174083843827248, 0.018590155988931656, 0.02084350772202015, 0.03084702603518963, -0.041926007717847824, -0.04960789158940315, 0.024684449657797813, 0.051007699221372604, -0.0101912971585989, 0.0648692324757576, 0.02157755382359028, 0.006341821048408747, 0.018521873280405998, 0.004749963991343975, 0.04858363792300224, 0.012939704582095146, -0.002424060832709074, 0.03132500872015953, 0.009295077994465828, 0.005936387926340103, -0.02605011686682701, -0.06753228604793549, -0.01688307151198387, 0.03231512010097504, -0.036565762013196945, -0.021526342257857323, 0.020416736602783203, -0.0012941837776452303, 0.02215796336531639, 0.0056717898696660995, 0.019614405930042267, 0.0030471468344330788, -0.023096859455108643, -0.051656391471624374, -0.0677029937505722, 0.028849735856056213, -0.046193718910217285, -0.0038644135929644108, -0.007865394465625286, 0.0016078606713563204, 0.028849735856056213, -0.022550592198967934, -0.0593382753431797, 0.027654776349663734, 0.012222728691995144, -0.04233570769429207, -0.02354070171713829, 0.021338563412427902, -0.03231512010097504, 0.05428530275821686, -0.02688658982515335, -0.016038063913583755, 0.01455289963632822, 0.04677413031458855, 0.031171372160315514, 0.004664609674364328, 0.007873930037021637, -0.01956319436430931, 0.011377722024917603, -0.017087921500205994, -0.12646086513996124, 0.005846766289323568, 0.03455140069127083, 0.011428934521973133, -0.012427578680217266, -0.006913694087415934, 0.030795814469456673, 0.056299664080142975, -0.024974653497338295, 0.03260532394051552, -0.015688112005591393, -0.030266616493463516, 0.05479742959141731, -0.016311196610331535, 0.03625848516821861, -0.059713833034038544, 0.011428934521973133, -0.0593041330575943, -0.020263100042939186, 0.012419043108820915, -0.02632325142621994, -0.039228811860084534, 0.02594769187271595, 0.025094149634242058, 0.02241402678191662, -0.03204198554158211, 0.0030599499586969614, -0.0011992271756753325, -0.020826436579227448, -0.014330978505313396, 0.025708699598908424, 0.07606770843267441, 0.06968320906162262, -0.0056717898696660995, -0.03782900422811508, -0.06183061748743057, 0.036463335156440735, 0.029447216540575027, 0.040457915514707565, 0.05134911835193634, -0.04933475703001022, -0.005087113473564386, -0.048412930220365524, 0.00015150380204431713, -0.058416448533535004, -0.023472419008612633, -0.002675855765119195, 0.018214596435427666, 0.02837175317108631, -0.02818397432565689, 0.0152954813092947, -0.015218663029372692, -0.014629718847572803, -0.00607295474037528, 0.10672695189714432, -0.028235185891389847, 0.02157755382359028, 0.03455140069127083, -0.03306623548269272, 0.01806095987558365, -0.005227948073297739, -0.05530955269932747, -0.03134208172559738, -0.047593530267477036, -0.017958534881472588, -0.022926151752471924, -0.04482805356383324, 0.056299664080142975, -0.04349652677774429, 0.026186684146523476, 0.01264949981123209, 0.0593041330575943, 0.07087817043066025, 0.08951953798532486, 0.0056717898696660995, 0.02029724046587944, -0.057597048580646515, -0.004506704397499561, -0.0073447334580123425, -0.049266472458839417, 0.032571181654930115, 0.006819804664701223, 0.003260532394051552, -0.0049676173366606236, -0.0034504455979913473, 0.05326105281710625, -0.01135211531072855, -0.012845815159380436, -0.06439124792814255, -0.014424867928028107, 0.05476328730583191, 0.004143948666751385, 0.026425676420331, 0.014826033264398575, -0.01634533889591694, 0.03417584300041199, -0.053602468222379684, -0.023779693990945816, -0.018197527155280113, -0.028149832040071487, -0.013443294912576675, -0.013673750683665276, 0.018026817589998245, -0.0277913436293602, -0.04141388088464737, -0.013042129576206207, -0.00005634714034385979, -0.03700960427522659, -0.039058104157447815, -0.038341131061315536, -0.031376224011182785, -0.021389774978160858, -0.05909928306937218, -0.0015491796657443047, 0.0010978690115734935, 0.02948135882616043, -0.04892505705356598, 0.010541249997913837, 0.014877245761454105, 0.03262239322066307, 0.002138124080374837, 0.0379655696451664, 0.0407651886343956, 0.06722500920295715, 0.05773361399769783, -0.04984688386321068, -0.009039015509188175, -0.04520361125469208, 0.007750166114419699, -0.01824873872101307, 0.08173523098230362, 0.006550938822329044, -0.0020122264977544546, -0.035746362060308456, 0.012905562296509743, -0.04479391127824783, 0.008701865561306477, 0.027944982051849365, 0.021475128829479218, -0.012948240153491497, -0.0815303772687912, -0.03974093869328499, 0.08733446896076202, -0.08200836181640625, -0.020911792293190956, 0.003917760215699673, 0.010379076935350895, -0.031171372160315514, 0.014971135184168816, -0.027023155242204666, -0.020502090454101562, 0.11498924344778061, 0.0027996194548904896, 0.0033010756596922874, -0.035643935203552246, 0.005159664433449507, 0.03021540492773056, -0.0305909626185894, 0.012751924805343151, -0.0021050493232905865, 0.0008380720391869545, -0.08590051531791687, -0.0010754636023193598, -0.014808962121605873, -0.003388563869521022, 0.005646183621138334, -0.04496461898088455, -0.0033928314223885536, -0.030829954892396927, -0.0018468525959178805, 0.005006026942282915, 0.011693532578647137, 0.009576747193932533, 0.05411459505558014, 0.018317021429538727, 0.03441483527421951, -0.07285838574171066, -0.010251045227050781, -0.03446604683995247, 0.03765829652547836, -0.07606770843267441, 0.006026010029017925, 0.05199781060218811, 0.009508463554084301, -0.04677413031458855, 0.02825225703418255, -0.03567807748913765, -0.07169757038354874, 0.06589347869157791, 0.0203825943171978, -0.022653019055724144, -0.022004324942827225, -0.007908071391284466, -0.021987255662679672, -0.0519295260310173, 0.06835168600082397, -0.04325753450393677, -0.0032562646083533764, -0.029139941558241844, -0.02789376862347126, -0.04568159580230713, -0.03376614302396774, 0.03960437327623367, -0.0013560656225308776, 0.021065428853034973, 0.017173275351524353, -0.006188183091580868, -0.0454426035284996, -0.036463335156440735, 0.004647538997232914, -0.00034195047919638455, -0.0026459817308932543, 0.029856916517019272, -0.04363309219479561, 0.00015737190551590174, 0.001489431713707745, -0.016055135056376457, 0.03875083103775978, 0.0013571325689554214, 0.07429233938455582, 0.0329296700656414, 0.030420254915952682, -0.018760863691568375, 0.003222123021259904, -0.023762622848153114, -0.011061910539865494, -0.06841997057199478, -0.015645435079932213, -0.03735101968050003, -0.015440584160387516, -0.04738868027925491, 0.022362813353538513, 0.010285187512636185, 0.0444866344332695, -0.08125724643468857, -0.020143603906035423, -0.01715620420873165, 0.007485567592084408, 0.028866806998848915, -0.004064996261149645, -0.061864759773015976, 0.01611488312482834, -0.00023739150492474437, 0.00931214913725853, -0.04025306552648544, -0.06893209367990494, 0.009141440503299236, 0.028047407045960426, 0.02086057886481285, 0.04219914227724075, 0.04291611909866333, -0.019392486661672592, 0.03132500872015953, 0.020911792293190956, -0.01676357537508011, 0.029174083843827248, 0.02577698417007923, 0.02111664228141308, 0.04417936131358147, -0.00828789733350277, 0.0001286982005694881, -0.027569422498345375, -0.06422054022550583, 0.10686352103948593, -0.05015415698289871, -0.019324202090501785, 0.08453485369682312, -0.021287349984049797, 0.02538435347378254, 0.034790392965078354, -0.008403126150369644, 0.010353470221161842, -0.0011512154014781117, 0.04578401893377304, -0.025503849610686302, -0.025606274604797363, 0.019409555941820145, -0.010635139420628548, -0.042028434574604034, -0.042028434574604034, 0.017352519556879997, 0.035268377512693405, 0.006119899917393923, 0.04858363792300224, 0.01070342306047678, -0.024428386241197586, -0.002714265137910843 ]
40,026
s3path.old_versions
is_block_device
is_block_device method is unsupported on S3 service AWS S3 don't have this file system action concept
def is_block_device(self): """ is_block_device method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.is_block_device.__qualname__) raise NotImplementedError(message)
(self)
[ 0.029312122613191605, -0.05626560375094414, -0.014527874067425728, 0.04488258808851242, -0.00464037386700511, -0.05988902598619461, -0.019706634804606438, 0.060743607580661774, -0.028748100623488426, 0.010203694924712181, 0.029927421361207962, 0.005435134284198284, 0.0064777228981256485, -0.03488399088382721, -0.019997192546725273, 0.010588256642222404, -0.019022969529032707, -0.025483600795269012, 0.044164739549160004, -0.010742081329226494, -0.03230315446853638, 0.01825384609401226, 0.031243475154042244, -0.04320760816335678, 0.016074664890766144, 0.10931798070669174, 0.033602118492126465, 0.014972256496548653, 0.0006927446229383349, -0.010682260617613792, -0.027056029066443443, 0.008862003684043884, 0.04153262823820114, 0.0632048025727272, 0.06252113729715347, 0.03278172016143799, 0.051548317074775696, 0.012408513575792313, -0.05616305395960808, -0.017501816153526306, -0.0860733836889267, 0.013844209723174572, 0.012887079268693924, -0.028628459200263023, 0.014621878042817116, 0.05923954397439957, 0.012152140028774738, 0.0769122764468193, 0.006033340934664011, 0.022082369774580002, 0.04125916212797165, 0.05291564762592316, 0.001408990123309195, -0.014365504495799541, -0.029363397508859634, -0.00787068996578455, 0.011383016593754292, -0.0297052301466465, -0.05841914564371109, 0.08203975856304169, 0.026645831763744354, 0.03879797086119652, 0.09434572607278824, -0.06539252400398254, -0.0034503701608628035, -0.057769663631916046, -0.010494252666831017, -0.011553932912647724, -0.0015713605098426342, 0.09270492941141129, 0.013852755539119244, -0.04255812615156174, -0.010887360200285912, 0.05151413381099701, -0.010383157059550285, -0.04795907810330391, -0.010220786556601524, 0.04279740899801254, 0.004136171191930771, -0.003371321363374591, -0.010135329328477383, -0.02985905483365059, 0.007195570971816778, -0.0066400934010744095, 0.020356114953756332, 0.016912154853343964, 0.008691087365150452, 0.006182892248034477, -0.04419892281293869, 0.008020241744816303, -0.03818267211318016, 0.032337337732315063, -0.0022582300007343292, 0.012545246630907059, 0.03739645704627037, 0.029260847717523575, -0.025876708328723907, -0.08210812509059906, -0.016228489577770233, -0.0030893096700310707, 0.011314650066196918, 0.004317769780755043, 0.039994385093450546, -0.04279740899801254, 0.03372175991535187, -0.04310505837202072, -0.04177191108465195, -0.0005346471443772316, -0.01458769477903843, -0.008870549499988556, 0.07028073072433472, 0.016031937673687935, -0.04611318185925484, 0.024765752255916595, 0.008537262678146362, -0.0393449030816555, 0.0736306831240654, -0.018270937725901604, -0.03753319010138512, -0.020219383761286736, -0.0026897932402789593, -0.01794619858264923, -0.013109270483255386, -0.059342093765735626, 0.024970851838588715, -0.004326315596699715, -0.0038092941977083683, 0.003751609940081835, 0.002670565154403448, 0.02139870449900627, -0.03749900683760643, -0.04016530141234398, -0.048882026225328445, -0.010947180911898613, -0.029568497091531754, 0.010844631120562553, 0.02327878214418888, -0.0021076099947094917, 0.03285008668899536, 0.009554213844239712, 0.02950013056397438, -0.035277098417282104, -0.0016130213625729084, -0.025398142635822296, -0.029107023030519485, 0.028782283887267113, -0.009742221795022488, -0.034644708037376404, 0.030987102538347244, -0.01537390984594822, 0.02049284800887108, 0.04156681150197983, 0.030269253998994827, 0.017553091049194336, -0.0290728397667408, 0.018817869946360588, -0.003935344982892275, -0.018544403836131096, -0.024235913529992104, -0.01302381232380867, -0.020304841920733452, -0.03520873188972473, -0.04078059643507004, 0.018646953627467155, -0.019125519320368767, -0.04655756428837776, -0.05035190284252167, 0.028372084721922874, -0.019586993381381035, -0.007545948959887028, -0.017929106950759888, 0.05476154014468193, 0.00821252167224884, 0.018698228523135185, 0.07841634005308151, 0.08306525647640228, -0.020749222487211227, -0.038251038640737534, -0.00823388621211052, -0.11731685698032379, 0.04915549233555794, 0.011101005598902702, 0.008362073451280594, 0.045156050473451614, 0.00329440925270319, 0.028047343716025352, -0.029995787888765335, -0.006148709449917078, 0.010237878188490868, 0.04532696679234505, -0.004939477425068617, 0.0316024012863636, 0.0024953761603683233, 0.009904592297971249, 0.03206387534737587, -0.03351666033267975, 0.0718531608581543, 0.01184449065476656, -0.021791812032461166, 0.07602351158857346, 0.01820257119834423, 0.0025680153630673885, -0.011041184887290001, 0.03702044114470482, 0.034542158246040344, -0.007947602309286594, 0.038421954959630966, 0.01056261919438839, -0.051274850964546204, 0.029995787888765335, -0.07998877018690109, 0.010075508616864681, -0.016484864056110382, 0.06330735236406326, 0.05414624139666557, 0.01357074361294508, 0.03488399088382721, 0.04231884330511093, -0.02473156899213791, 0.008144155144691467, 0.05288146436214447, -0.0020168107002973557, 0.00010054677841253579, 0.011049730703234673, -0.004170354455709457, 0.03589239716529846, 0.026218540966510773, -0.03544801473617554, -0.029209572821855545, 0.005020662676542997, -0.004713013302534819, 0.036576058715581894, 0.002914120675995946, 0.09680692106485367, 0.03650769218802452, 0.010554073378443718, 0.03749900683760643, -0.018544403836131096, -0.004760015290230513, -0.04566879943013191, 0.00829370692372322, -0.03729390725493431, 0.019022969529032707, 0.037943389266729355, -0.048403460532426834, -0.04447238892316818, 0.03091873601078987, 0.04936058819293976, -0.008853457868099213, -0.0428999587893486, 0.03602913022041321, 0.04348107427358627, -0.03797757253050804, -0.0693235993385315, 0.0011835944605991244, -0.0642302930355072, 0.05202688276767731, -0.02724403701722622, 0.032969728112220764, 0.014450961723923683, -0.07151132822036743, -0.019176794216036797, 0.030782002955675125, -0.01067371480166912, 0.000503134448081255, 0.02239001914858818, 0.025227226316928864, 0.05288146436214447, -0.03674697503447533, 0.09051720052957535, 0.037259723991155624, 0.01757018268108368, -0.001958058448508382, -0.0024206002708524466, 0.020988505333662033, -0.07431434839963913, -0.006443539634346962, 0.03235442936420441, -0.03327737748622894, -0.020202292129397392, 0.01962117664515972, 0.024697385728359222, 0.004896748345345259, 0.05715436860918999, -0.011280466802418232, -0.03913980349898338, 0.017459087073802948, -0.024594837799668312, -0.014476599171757698, -0.003416186897084117, -0.08415912091732025, 0.03811430558562279, -0.05469317361712456, -0.019945917651057243, 0.01569010503590107, 0.04324179142713547, -0.06156400591135025, -0.0016044755466282368, 0.055513571947813034, -0.01851022057235241, -0.05790639668703079, 0.07062256336212158, 0.003956709522753954, 0.038832154124975204, -0.004627555143088102, -0.014280046336352825, 0.05476154014468193, -0.006366627290844917, -0.04269485920667648, 0.0024505106266587973, 0.029619771987199783, 0.027705511078238487, 0.014331321232020855, -0.023142049089074135, 0.05773548409342766, 0.08709888160228729, 0.01636522263288498, 0.052539631724357605, -0.02756877802312374, 0.0743827149271965, -0.023808622732758522, 0.03541383147239685, -0.012169231660664082, 0.06313643604516983, 0.013365644961595535, -0.04624991491436958, 0.013801480643451214, -0.0024932397063821554, -0.06624710559844971, 0.0451902337372303, -0.039823468774557114, 0.025124676525592804, 0.028543001040816307, -0.019210977479815483, -0.06928941607475281, -0.00013793469406664371, -0.02066376432776451, -0.040404584258794785, -0.0065460894256830215, 0.04122497886419296, 0.004396818578243256, -0.01051134429872036, 0.03384140133857727, 0.038832154124975204, -0.07096439599990845, 0.023620614781975746, 0.04905294254422188, -0.016912154853343964, 0.01334000751376152, 0.02170635387301445, -0.0006986198714002967, 0.016510501503944397, -0.011596661992371082, 0.04447238892316818, 0.006174346432089806, -0.0540778748691082, 0.0003367582685314119, -0.0018501675222069025, -0.02657746523618698, 0.0017679141601547599, 0.07903163880109787, -0.0326278954744339, 0.005080483388155699, 0.025722883641719818, 0.004189582541584969, 0.022475475445389748, 0.012152140028774738, 0.001837348798289895, 0.020219383761286736, -0.05236871540546417, -0.04143007844686508, -0.05893189460039139, -0.03247407078742981, -0.024287188425660133, 0.017288170754909515, 0.007618588395416737, -0.005080483388155699, -0.032815903425216675, -0.0003981812624260783, 0.08484278619289398, -0.013980942778289318, 0.015023531392216682, 0.002561606001108885, -0.030901644378900528, 0.007058837916702032, 0.03379012644290924, -0.03845613822340965, -0.020680855959653854, 0.017860740423202515, -0.00753313023597002, 0.049087125808000565, -0.014015126042068005, -0.051445767283439636, -0.0047172862105071545, -0.03086746111512184, -0.020048467442393303, -0.02254384197294712, -0.00006342591950669885, 0.007708319462835789, -0.030166704207658768, -0.02379153110086918, -0.012425605207681656, -0.05346257984638214, 0.016331039369106293, -0.02944885566830635, -0.004431001842021942, 0.008485987782478333, 0.011152280494570732, -0.004653192590922117, -0.03917398676276207, 0.033909767866134644, -0.025090493261814117, -0.05414624139666557, 0.01564737595617771, 0.029688138514757156, 0.033294469118118286, 0.008088607341051102, -0.01815129816532135, -0.03541383147239685, 0.045532066375017166, 0.034525066614151, -0.011545387096703053, 0.04966823756694794, -0.02645782381296158, 0.033021003007888794, -0.04098569601774216, -0.023928264155983925, -0.004166081547737122, 0.06252113729715347, -0.017912015318870544, 0.017194166779518127, 0.07383578270673752, -0.03989183530211449, 0.014809885993599892, -0.013895484618842602, -0.019535718485713005, 0.009819134138524532, -0.010989909991621971, 0.001453855657018721, 0.03599494695663452, 0.008203975856304169, -0.023210415616631508, -0.11075367778539658, 0.03273044526576996, 0.020527031272649765, -0.023261690512299538, -0.03399522602558136, 0.011656482703983784, 0.0654950737953186, 0.03138021007180214, -0.024543562904000282, 0.0018213253933936357, 0.005764147732406855, -0.025193043053150177, -0.026115991175174713, -0.034183233976364136, 0.052744731307029724, -0.037157174199819565, 0.004112670198082924, -0.05937627702951431, -0.003418323351070285, 0.05100138485431671, -0.04539533331990242, -0.041703544557094574, 0.04860856011509895, 0.03379012644290924, -0.02850881777703762, -0.005046300124377012, 0.054419707506895065, 0.010434431955218315, 0.052847281098365784, -0.0290728397667408, -0.008195430040359497, -0.021432887762784958, 0.030901644378900528, 0.00439254567027092, -0.009947321377694607, 0.034525066614151, -0.01297253742814064, -0.0047856527380645275, -0.062110934406518936, -0.07335721701383591, -0.04043876752257347, 0.00787068996578455, 0.015408093109726906, -0.06696495413780212, -0.020988505333662033, 0.0002483625721652061, 0.08409075438976288, -0.03592658042907715, -0.020885955542325974, -0.04016530141234398, -0.011058276519179344, 0.04078059643507004, -0.0033243196085095406, 0.020219383761286736, -0.02886774204671383, -0.0034311420749872923, -0.00490529416128993, 0.005546229891479015, -0.002788070123642683, 0.044540755450725555, 0.0014196723932400346, -0.026389457285404205, 0.031055467203259468, -0.01856149546802044, -0.019706634804606438, -0.024817027151584625, 0.04409637302160263, -0.009784950874745846, -0.01260506734251976, 0.04703612998127937, 0.023347148671746254, 0.053736042231321335, -0.03473016619682312, -0.02160380408167839, -0.03117510862648487, 0.02960268035531044, 0.05643652006983757, 0.03702044114470482, 0.08101426810026169, -0.05602632090449333, 0.02698766253888607, -0.03541383147239685, 0.018390579149127007, -0.008853457868099213, -0.0031234929338097572, -0.08005713671445847, -0.0036341049708426, -0.0157413799315691, -0.03247407078742981, 0.03510618209838867, -0.0055205924436450005, 0.007981785573065281, -0.028098618611693382, 0.06047014147043228, -0.01584392972290516, 0.01599775440990925, -0.03838777169585228, -0.04078059643507004, 0.024543562904000282, -0.02191145345568657, -0.008409075438976288, -0.007058837916702032, -0.044335655868053436, 0.011314650066196918, -0.013510922901332378, -0.0769122764468193, 0.04689939692616463, -0.04826672747731209, 0.06713587045669556, 0.01721125841140747, 0.038832154124975204, -0.018441854044795036, 0.12825550138950348, -0.02122778818011284, 0.05479572340846062, -0.03787502273917198, -0.014339867047965527, 0.005759874824434519, -0.03397813439369202, 0.02218491956591606, -0.009032920002937317, -0.025637425482273102, 0.009673855267465115, -0.015493551269173622, 0.01704888790845871, 0.009579851292073727, -0.0037751109339296818, -0.054829906672239304, 0.009220927022397518, 0.03514036536216736, 0.05024935305118561, 0.030559811741113663, 0.011861582286655903, 0.004960841964930296, 0.03269626200199127, 0.029260847717523575, -0.05882934480905533, -0.08662031590938568, 0.0009849044727161527, -0.0462157316505909, -0.00500784395262599, -0.023825714364647865, -0.030987102538347244, -0.06928941607475281, -0.04225047677755356, -0.03541383147239685, -0.0368153415620327, 0.01893751136958599, 0.006358081474900246, -0.016775421798229218, 0.0072511183097958565, -0.06672567129135132, -0.000101548241218552, 0.06788790225982666, 0.024150455370545387, -0.031927142292261124, -0.003672561142593622, 0.043173424899578094, 0.010998455807566643, 0.02468029409646988, 0.04966823756694794, 0.015980662778019905, 0.07903163880109787, 0.04361780732870102, -0.08012550324201584, 0.016912154853343964, -0.02317623235285282, -0.023500973358750343, -0.0031662220135331154, 0.061119623482227325, -0.015083352103829384, 0.014245863072574139, -0.012476880103349686, -0.008058696985244751, -0.04778816178441048, 0.04098569601774216, 0.06002575904130936, 0.010554073378443718, -0.013818572275340557, -0.025654517114162445, 0.0019196022767573595, 0.01742490381002426, -0.08901314437389374, -0.031209291890263557, -0.01751890778541565, 0.00975076761096716, -0.025483600795269012, -0.03544801473617554, 0.0033072279766201973, -0.04043876752257347, 0.10877104848623276, -0.038627054542303085, 0.005020662676542997, -0.041395895183086395, -0.020851772278547287, 0.003657605964690447, -0.026902204379439354, 0.02180890366435051, 0.04177191108465195, 0.004413910210132599, -0.031722042709589005, -0.005695781204849482, -0.030303437262773514, -0.04204537719488144, 0.01072498969733715, -0.014613332226872444, 0.001525426865555346, -0.022048186510801315, -0.05428297445178032, -0.006657185032963753, 0.011972677893936634, -0.02432137168943882, 0.018578587099909782, -0.009716584347188473, -0.0006863352609798312, -0.035960763692855835, -0.009896046482026577, -0.09345696121454239, 0.006687094923108816, -0.06501650810241699, -0.03202969208359718, 0.06344408541917801, 0.027756785973906517, -0.04765142872929573, 0.0034952356945723295, -0.02772260271012783, -0.05161668360233307, 0.01663868874311447, 0.036370959132909775, 0.025022126734256744, 0.0025744247250258923, -0.007733956910669804, -0.032662078738212585, -0.029688138514757156, 0.015681559219956398, -0.06884503364562988, -0.008938916027545929, 0.007768139708787203, 0.002582970540970564, -0.026594556868076324, -0.04785652831196785, 0.023620614781975746, 0.01610030233860016, 0.04587389901280403, -0.03671279177069664, -0.0303376205265522, -0.026030533015727997, -0.09981504082679749, -0.0010367133654654026, -0.034918174147605896, -0.0062939878553152084, 0.08470605313777924, -0.0350378155708313, -0.013502377085387707, 0.031243475154042244, 0.06515324115753174, -0.00007270613423315808, 0.04047295078635216, 0.03900307044386864, 0.007037473376840353, -0.02652619034051895, 0.026919296011328697, -0.005050573032349348, -0.005482136271893978, -0.04187446087598801, -0.03654187545180321, 0.01270761713385582, -0.028389176353812218, 0.029329214245080948, -0.05701763555407524, 0.016168668866157532, -0.028047343716025352, 0.01537390984594822, 0.002029629424214363, -0.04936058819293976, -0.041703544557094574, 0.0657685399055481, 0.019313527271151543, -0.04707031324505806, -0.021056871861219406, -0.030884552747011185, 0.009255110286176205, -0.03191005066037178, -0.011357379145920277, -0.06108544021844864, 0.022714758291840553, 0.005486409179866314, 0.054829906672239304, 0.018031656742095947, 0.03315773606300354, -0.03760155662894249, 0.04272904247045517, 0.048882026225328445, -0.026509098708629608, -0.00617007352411747, 0.0017999609699472785, -0.013502377085387707, 0.054214607924222946, 0.02797897718846798, -0.004896748345345259, 0.0016589551232755184, -0.024235913529992104, 0.03214932978153229, -0.013912576250731945, -0.019809184595942497, 0.05893189460039139, 0.02300531603395939, 0.021261971443891525, 0.047993261367082596, -0.038934703916311264, -0.0033307289704680443, 0.03372175991535187, 0.04936058819293976, -0.03890052065253258, -0.03220060467720032, 0.0011568887857720256, -0.010323336347937584, -0.028782283887267113, -0.03978928551077843, 0.00933202262967825, 0.04279740899801254, 0.039208170026540756, -0.006494814530014992, 0.012100865133106709, -0.025278501212596893, -0.002741068135946989 ]
40,027
s3path.old_versions
is_char_device
is_char_device method is unsupported on S3 service AWS S3 don't have this file system action concept
def is_char_device(self): """ is_char_device method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.is_char_device.__qualname__) raise NotImplementedError(message)
(self)
[ 0.0006065394263714552, -0.034851912409067154, -0.02757979743182659, 0.04207317531108856, 0.03025810606777668, -0.04298854619264603, -0.010119938291609287, 0.0681782066822052, 0.022392693907022476, -0.007479769643396139, 0.0724160373210907, 0.017968399450182915, 0.028037482872605324, -0.014561183750629425, -0.003763193031772971, 0.01356105599552393, -0.00717040803283453, -0.006988181732594967, 0.044242944568395615, 0.007335683796554804, -0.04203927144408226, 0.009865667670965195, 0.05041322484612465, -0.04092048481106758, -0.004903169348835945, 0.1179133802652359, 0.02966480888426304, 0.008212914690375328, 0.0045175268314778805, -0.03441118076443672, -0.04881979897618294, 0.007539099548012018, 0.03647923842072487, 0.0794677883386612, 0.03536045178771019, 0.031461648643016815, 0.04556514695286751, -0.0056956433691084385, -0.02800358086824417, -0.032614339143037796, -0.12306658178567886, 0.03878461942076683, 0.0006430906942114234, -0.055498622357845306, 0.00873840507119894, 0.043564893305301666, 0.003212274983525276, 0.06468623876571655, 0.00389032787643373, 0.0007956525660119951, 0.04047975316643715, 0.02800358086824417, 0.014874783344566822, -0.022528303787112236, -0.0034834961406886578, -0.02430819161236286, 0.03525874391198158, -0.033326294273138046, -0.08143413811922073, 0.042547810822725296, 0.008857064880430698, 0.0212908573448658, 0.058007415384054184, -0.053905196487903595, 0.010204694233834743, -0.03953047841787338, 0.008975723758339882, -0.04288683831691742, -0.00045397752546705306, 0.0909946858882904, 0.0177310798317194, -0.036140214651823044, -0.020375486463308334, 0.012747392058372498, -0.020917927846312523, -0.022494401782751083, -0.027189915999770164, 0.04302245005965233, 0.01512905303388834, -0.010272500105202198, 0.0025723627768456936, -0.015332468785345554, 0.006916138343513012, 0.012713490054011345, 0.050074197351932526, -0.002970718778669834, -0.03308897465467453, -0.0012713490286841989, -0.0724838450551033, 0.04712466895580292, -0.01604442484676838, 0.01328983437269926, -0.002294784877449274, 0.015061247162520885, 0.05495617911219597, 0.015112101100385189, 0.006017718464136124, -0.061567194759845734, -0.007174646016210318, -0.02229098603129387, 0.009458836168050766, 0.04007292166352272, 0.0355299673974514, -0.027359429746866226, 0.020951831713318825, -0.05285421386361122, -0.036987777799367905, 0.014408621937036514, -0.04044584929943085, -0.008560416288673878, 0.026240643113851547, 0.02329111285507679, -0.003294912865385413, -0.013493250124156475, 0.025681249797344208, -0.07268726080656052, 0.03624192252755165, -0.035563867539167404, -0.03176677227020264, -0.026664426550269127, 0.002640167949721217, -0.02259610965847969, -0.005021828692406416, -0.04732808470726013, 0.034173861145973206, -0.010060608386993408, 0.01356953103095293, 0.01847693882882595, -0.04885370284318924, 0.04420904070138931, -0.04570075869560242, -0.004725180566310883, -0.032343119382858276, -0.020273778587579727, 0.017298821359872818, -0.0017756507731974125, 0.03651314228773117, 0.0022863091435283422, 0.0013158462243154645, 0.014111973345279694, 0.06231305003166199, 0.0011940086260437965, -0.004246305674314499, -0.03098701313138008, -0.03892023116350174, 0.05000639334321022, 0.026054179295897484, -0.047497596591711044, 0.005835491698235273, -0.025901615619659424, -0.006293177604675293, 0.042242687195539474, 0.008221389725804329, -0.018697306513786316, -0.0013656406663358212, 0.022494401782751083, 0.005644789431244135, -0.03293641284108162, -0.028783340007066727, 0.012349036522209644, -0.013730568811297417, -0.04017462953925133, -0.07282286882400513, 0.008848588913679123, 0.009035053662955761, -0.007051749154925346, -0.07133115082979202, 0.01687503792345524, 0.01343392115086317, -0.02346062660217285, 0.013603433966636658, 0.06502526253461838, 0.04946395009756088, 0.006700009107589722, 0.07784046232700348, 0.08468879014253616, -0.023765750229358673, -0.014535756781697273, 0.0057168323546648026, -0.10740356147289276, 0.061160363256931305, -0.024189533665776253, 0.013383067212998867, 0.08448537439107895, 0.026647474616765976, 0.044954899698495865, 0.00931475032120943, 0.020409388467669487, 0.007051749154925346, 0.024918440729379654, 0.015290090814232826, 0.03320763632655144, -0.01774803176522255, 0.014044168405234814, 0.029647858813405037, -0.06305891275405884, 0.08326487988233566, -0.008581605739891529, -0.021409517154097557, 0.05810912325978279, -0.02032463252544403, 0.02386745810508728, -0.022901233285665512, 0.024528559297323227, 0.019409261643886566, 0.008077303878962994, 0.04559905081987381, 0.006526258308440447, -0.08936735987663269, 0.011187870986759663, -0.0469212532043457, -0.03336019814014435, -0.008212914690375328, 0.053769584745168686, 0.05739716812968254, 0.0062635126523673534, 0.00778065575286746, 0.03678436204791069, -0.010247073136270046, -0.009416458196938038, 0.06360135227441788, 0.049633465707302094, 0.017069978639483452, 0.008009498938918114, 0.046073686331510544, -0.01023859716951847, 0.011925253085792065, 0.009068955667316914, -0.03227531164884567, 0.0040979813784360886, -0.0024854871444404125, -0.010136889293789864, 0.030715791508555412, 0.07634874433279037, 0.029139319434762, -0.0007665174780413508, 0.06611014902591705, -0.013255932368338108, 0.009119809605181217, -0.07655216008424759, -0.013594957999885082, -0.03293641284108162, 0.008484135381877422, 0.023833556100726128, -0.05237957835197449, -0.029749566689133644, 0.039564378559589386, 0.07580630481243134, -0.007848461158573627, -0.059566937386989594, 0.06522867828607559, 0.03892023116350174, -0.045226119458675385, -0.07845070958137512, -0.013679714873433113, -0.07031407207250595, 0.0019705910235643387, -0.02415562979876995, 0.036275822669267654, 0.003191085997968912, -0.09323225915431976, 0.039971210062503815, 0.045260023325681686, 0.013611909933388233, 0.005543081555515528, 0.00532271433621645, 0.02644405886530876, 0.06970382481813431, -0.02018902264535427, 0.0681782066822052, -0.024172581732273102, 0.033173732459545135, -0.04064926505088806, -0.012611782178282738, 0.014645940624177456, -0.05739716812968254, -0.0092299934476614, 0.015188382007181644, -0.01298471074551344, -0.013196602463722229, 0.009102858603000641, 0.004263256676495075, -0.0008841172675602138, 0.06285549700260162, -0.0106454286724329, -0.049497853964567184, 0.017010649666190147, -0.03251263126730919, 0.0184599868953228, 0.0142052061855793, -0.08421415835618973, 0.041530732065439224, -0.03668265417218208, 0.011153968051075935, 0.0383777879178524, 0.02856297418475151, -0.029902128502726555, -0.03864900767803192, 0.07112773507833481, -0.03566557541489601, -0.04234439507126808, 0.08353610336780548, -0.008780783973634243, 0.03305507451295853, -0.04661612957715988, 0.029224075376987457, 0.02668137662112713, -0.034326422959566116, -0.04902321845293045, 0.020222924649715424, 0.025613443925976753, 0.024342095479369164, -0.01577320322394371, 0.023782702162861824, 0.02998688444495201, 0.09289323538541794, 0.014442523941397667, 0.053498364984989166, -0.038140468299388885, 0.07770484685897827, -0.008619746193289757, 0.02301989309489727, -0.018527792766690254, 0.0206128042191267, 0.02246049791574478, -0.04895541071891785, 0.020239876583218575, -0.03193628787994385, -0.007064462639391422, 0.049226634204387665, -0.04492099583148956, 0.018358279019594193, 0.01678180694580078, -0.028020530939102173, -0.029630906879901886, -0.032902512699365616, -0.02998688444495201, -0.02573210373520851, -0.02895285375416279, 0.05441373586654663, -0.0060304319486021996, -0.02968176081776619, 0.030037738382816315, 0.02671528048813343, -0.04285293444991112, -0.012747392058372498, 0.04603978618979454, -0.033868737518787384, 0.0142052061855793, 0.020680610090494156, 0.03154640644788742, 0.017951447516679764, 0.02741028368473053, 0.03868291154503822, 0.008857064880430698, -0.04702296108007431, -0.02896980568766594, 0.030597131699323654, 0.010221646167337894, -0.00031916156876832247, 0.09167273342609406, -0.043836113065481186, 0.009458836168050766, 0.009416458196938038, -0.01745986007153988, 0.002640167949721217, 0.021951958537101746, 0.00839090347290039, -0.01000127848237753, -0.020273778587579727, -0.028664682060480118, -0.020934879779815674, -0.029461393132805824, -0.046073686331510544, 0.002210028236731887, 0.02090097777545452, 0.016561439260840416, -0.024969294667243958, -0.033597514033317566, 0.0497351735830307, -0.010331829078495502, 0.027189915999770164, -0.013959411531686783, 0.006293177604675293, 0.00839090347290039, 0.025596491992473602, -0.04759930446743965, -0.034851912409067154, 0.03220750764012337, -0.0012883002636954188, 0.002392255002632737, 0.04441245645284653, -0.014518805779516697, 0.011298054829239845, -0.03242787346243858, 0.010747136548161507, -0.048921506851911545, -0.01073018554598093, -0.0030681889038532972, 0.060719627887010574, -0.04570075869560242, -0.01574777625501156, -0.015222284942865372, 0.02985127456486225, -0.02881724387407303, 0.04285293444991112, -0.00670848460868001, -0.012781294994056225, -0.035597771406173706, 0.00830190908163786, 0.0004587450821418315, -0.02985127456486225, -0.055464718490839005, 0.011145493015646935, 0.01946011558175087, 0.029732614755630493, -0.015078199096024036, -0.028885047882795334, -0.0276815053075552, 0.05041322484612465, -0.0440734326839447, -0.018680354580283165, 0.010933601297438145, 0.05990596488118172, 0.02769845724105835, -0.032156653702259064, 0.01015384029597044, -0.0037589550483971834, 0.09404592216014862, -0.029580052942037582, -0.0015605809167027473, 0.05654960125684738, -0.03452983871102333, -0.02244354784488678, -0.023528432473540306, 0.018070107325911522, 0.010340305045247078, 0.0030236917082220316, 0.0029198648408055305, 0.03617411479353905, -0.037835344672203064, -0.006110950838774443, -0.07838290184736252, 0.03327544033527374, 0.045361731201410294, -0.01528161484748125, -0.007225499954074621, 0.03212274983525276, 0.020138168707489967, 0.02188415452837944, 0.00041053976747207344, 0.012382939457893372, -0.03371617570519447, -0.05173542723059654, 0.03512313589453697, -0.03247872740030289, 0.07207701355218887, -0.02727467380464077, -0.022189278155565262, -0.060584016144275665, -0.022223180159926414, 0.1107938289642334, -0.0113743357360363, -0.04875199496746063, 0.009992802515625954, 0.056753017008304596, -0.03905583918094635, 0.028223946690559387, 0.04776882007718086, 0.017578518018126488, 0.049091022461652756, 0.015112101100385189, 0.005301525350660086, -0.011645556427538395, 0.02812223881483078, -0.01036573201417923, -0.018087057396769524, 0.05580374598503113, -0.028901999816298485, 0.0048862178809940815, -0.04217488318681717, -0.05814302712678909, -0.01944316364824772, -0.009865667670965195, 0.01563759334385395, -0.048785898834466934, -0.014078071340918541, -0.005216768477112055, 0.04488709568977356, -0.022189278155565262, -0.008289195597171783, 0.00001383088601869531, -0.040818776935338974, 0.010475915856659412, 0.005712594836950302, 0.02173159271478653, -0.019205845892429352, 0.010484390892088413, -0.04488709568977356, 0.009501215070486069, 0.00738229975104332, 0.0059371995739638805, -0.013849228620529175, -0.01650211028754711, 0.026071129366755486, -0.023104649037122726, -0.0033860260155051947, -0.010984455235302448, 0.04220878705382347, -0.0355299673974514, -0.03810656815767288, 0.028054434806108475, 0.03566557541489601, 0.01687503792345524, -0.00525914691388607, -0.016544487327337265, -0.05075225234031677, -0.003559777047485113, 0.017832787707448006, 0.05356616899371147, 0.025766005739569664, -0.04061536118388176, 0.002532103331759572, -0.04705686494708061, 0.01556131150573492, -0.007560288533568382, -0.0113743357360363, -0.04570075869560242, -0.0007967120036482811, 0.01801925338804722, -0.05983815714716911, 0.04366660118103027, 0.00013196867075748742, 0.0227147676050663, -0.024121727794408798, 0.06305891275405884, -0.04176805168390274, 0.0440395288169384, 0.004458196926862001, -0.03593679890036583, 0.02330806478857994, -0.0326990969479084, -0.005369330290704966, -0.06065182015299797, -0.03281775489449501, -0.013586482964456081, 0.02315550297498703, -0.08475659787654877, 0.021901104599237442, -0.0198669470846653, -0.01549350656569004, 0.008560416288673878, 0.027495041489601135, 0.015112101100385189, 0.11587922275066376, 0.0030533564276993275, 0.051904939115047455, -0.06004157289862633, -0.035157036036252975, 0.009696154855191708, -0.042412202805280685, 0.0044115809723734856, 0.008357000537216663, -0.007636569440364838, -0.029291881248354912, -0.010060608386993408, -0.010009754449129105, 0.023036843165755272, -0.020646708086133003, -0.046378809958696365, -0.003532231319695711, 0.03678436204791069, 0.02744418755173683, 0.02171464078128338, -0.02871553599834442, -0.02413867972791195, 0.025206612423062325, 0.04505660757422447, -0.04614149406552315, -0.06285549700260162, -0.019680481404066086, -0.0023541145492345095, -0.02856297418475151, -0.012883002869784832, -0.012959283776581287, -0.05882107838988304, -0.0029135080985724926, -0.03142774850130081, -0.06461843103170395, -0.05468495562672615, -0.01491716131567955, -0.028512120246887207, -0.0005024477140977979, -0.08780783414840698, -0.0008067768649198115, 0.010357256047427654, 0.02203671634197235, -0.024053921923041344, -0.0001518997160019353, -0.003883971134200692, 0.018239619210362434, 0.01646820642054081, 0.04644661769270897, -0.0024388711899518967, 0.12042217701673508, 0.04319196194410324, -0.08651953935623169, 0.032309215515851974, -0.008445994928479195, -0.022392693907022476, -0.02800358086824417, 0.059736449271440506, -0.03471630439162254, 0.010908174328505993, 0.012272755615413189, 0.01547655463218689, -0.04739588871598244, -0.0062296101823449135, 0.07614532858133316, 0.02115524746477604, -0.014840880408883095, 0.003903041360899806, 0.008183249272406101, 0.022833427414298058, -0.06889016181230545, -0.015501981601119041, -0.00860279519110918, 0.013578006997704506, -0.015298565849661827, -0.04814174771308899, 0.022646963596343994, -0.026511864736676216, 0.10957332700490952, -0.023545382544398308, -0.02530832029879093, -0.035326551645994186, -0.04464977607131004, -0.003756836289539933, -0.0047378940507769585, 0.023816604167222977, 0.04502270370721817, 0.028800291940569878, -0.02756284549832344, 0.02798662893474102, -0.02827480062842369, -0.00867060013115406, 0.00944188516587019, -0.023087697103619576, -0.0020553474314510822, -0.052210066467523575, -0.0397677943110466, 0.005229481961578131, 0.0284273624420166, -0.017086930572986603, 0.010865796357393265, -0.040547557175159454, -0.0031614210456609726, -0.04597197845578194, -0.017442908138036728, -0.06766966730356216, 0.018782062456011772, -0.037157293409109116, -0.012137144804000854, 0.042954642325639725, 0.0326990969479084, -0.059465229511260986, 0.009128285571932793, -0.053328853100538254, -0.049497853964567184, 0.010442012920975685, 0.031342990696430206, 0.012306658551096916, 0.002985551254823804, -0.032902512699365616, -0.013705141842365265, -0.009204566478729248, 0.055193498730659485, -0.049226634204387665, 0.003432642202824354, 0.013891606591641903, 0.03041066788136959, -0.018544744700193405, -0.020409388467669487, 0.008721454069018364, 0.0025808385107666254, 0.007089889608323574, -0.00037690199678763747, -0.010204694233834743, -0.013832276687026024, -0.09350348263978958, -0.0006113069830462337, -0.016680099070072174, 0.0044242944568395615, 0.04987078160047531, -0.04244610294699669, -0.03463154658675194, 0.009535117074847221, 0.0838751271367073, 0.012442268431186676, 0.0017957803793251514, 0.037835344672203064, 0.03702168166637421, -0.012281231582164764, 0.017264919355511665, 0.01946011558175087, -0.012171047739684582, -0.06895796954631805, -0.05851595476269722, 0.058312539011240005, -0.03522484377026558, 0.014222157187759876, -0.03354666009545326, -0.017697177827358246, -0.05926181375980377, -0.005928724072873592, -0.012764343991875648, -0.018782062456011772, -0.019951703026890755, 0.06990724056959152, 0.026935646310448647, -0.006729674059897661, -0.02839346043765545, 0.005776162259280682, 0.030308960005640984, -0.0454295352101326, -0.03583509102463722, -0.0795355886220932, 0.027308575809001923, -0.005644789431244135, 0.05458324775099754, -0.016510585322976112, 0.027037354186177254, -0.04248000681400299, 0.0639403760433197, -0.021477321162819862, -0.04248000681400299, -0.003763193031772971, -0.024375997483730316, -0.00230749836191535, 0.05302372947335243, -0.007992547005414963, 0.006831381935626268, 0.005119298584759235, -0.044242944568395615, 0.05709204450249672, 0.01292538084089756, -0.00033531829831190407, 0.06268598139286041, 0.03300422057509422, 0.032309215515851974, 0.06346574425697327, -0.036275822669267654, -0.0002472508931532502, 0.0019154991023242474, 0.047531500458717346, -0.015103626064956188, -0.07682338356971741, 0.011391286738216877, -0.0034834961406886578, 0.005530368071049452, -0.06299110502004623, 0.034139957278966904, 0.015595214441418648, 0.023765750229358673, 0.00001389710268995259, 0.028444314375519753, -0.008128157816827297, 0.009975851513445377 ]
40,028
s3path.old_versions
is_dir
Returns True if the path points to a Bucket or a key prefix, False if it points to a full key path. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated.
def is_dir(self) -> bool: """ Returns True if the path points to a Bucket or a key prefix, False if it points to a full key path. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated. """ self._absolute_path_validation() if self.bucket and not self.key: return True return self._accessor.is_dir(self)
(self) -> bool
[ 0.025928959250450134, 0.030582411214709282, -0.046389661729335785, 0.017608877271413803, 0.06543803215026855, -0.00395860243588686, 0.03599634766578674, 0.025603037327528, -0.002405943116173148, 0.0017110940534621477, 0.013734019361436367, 0.017092833295464516, 0.038169167935848236, -0.0016058481996878982, -0.04595509544014931, -0.02067798189818859, 0.02415449172258377, 0.010511006228625774, 0.029242506250739098, 0.005558792036026716, -0.029840031638741493, 0.031433429569005966, 0.06605365872383118, -0.027866387739777565, -0.009895374067127705, 0.05935414135456085, 0.02911575883626938, 0.008238600566983223, 0.039436642080545425, 0.020442593842744827, -0.0439995601773262, 0.05033694580197334, 0.06391705572605133, 0.03545314446091652, 0.004820939619094133, -0.01484758872538805, 0.025313327088952065, -0.0204607006162405, -0.06192530691623688, -0.060114625841379166, -0.037064649164676666, 0.04689665138721466, -0.021836819127202034, -0.004689665045589209, 0.070725217461586, 0.0074871680699288845, -0.032266344875097275, 0.01883108727633953, -0.008347242139279842, -0.04117489606142044, 0.016694484278559685, 0.005260029807686806, 0.009587558917701244, -0.039038293063640594, 0.01106326375156641, -0.0260919202119112, 0.056203555315732956, 0.0040627168491482735, -0.03744489327073097, 0.026327308267354965, -0.02138414792716503, 0.008732011541724205, 0.003094002138823271, -0.040233343839645386, -0.009451757185161114, -0.03400459885597229, -0.06934910267591476, -0.0491056814789772, -0.01737348921597004, 0.05384966731071472, -0.07402066141366959, 0.018152082338929176, 0.010447632521390915, 0.032537948340177536, -0.06047676131129265, -0.0138154998421669, -0.0031867993529886007, 0.011733216233551502, 0.008283867500722408, -0.009822946973145008, -0.07488978654146194, -0.08923038840293884, -0.015580913983285427, -0.04943160340189934, 0.02714211493730545, 0.05182170495390892, 0.015227831900119781, -0.012077245861291885, 0.003137005725875497, 0.04218887910246849, -0.02049691416323185, -0.005436571314930916, 0.015553753823041916, -0.05301675572991371, -0.005816814489662647, 0.014331543818116188, -0.01569860801100731, -0.04200781136751175, -0.03302682936191559, -0.030763478949666023, -0.01610601134598255, 0.03074537217617035, 0.10958244651556015, 0.03413134813308716, -0.0015470010694116354, 0.01471178699284792, -0.05200277268886566, -0.050518013536930084, -0.006853429600596428, -0.040885187685489655, -0.020696090534329414, -0.011045156978070736, 0.033370859920978546, 0.02705158106982708, 0.007890044711530209, -0.018885407596826553, 0.0073196799494326115, -0.044578976929187775, -0.05652947723865509, -0.016966085880994797, 0.07561405748128891, 0.02824663184583187, 0.03835023567080498, -0.06279443204402924, 0.08169794827699661, -0.01541795302182436, 0.0034470849204808474, 0.026327308267354965, -0.05710889399051666, 0.052147626876831055, -0.023394005373120308, 0.03040134161710739, -0.03856751695275307, -0.007342313416302204, 0.012656663544476032, 0.049648888409137726, 0.07670047134160995, 0.018450845032930374, -0.054573941975831985, 0.07959756255149841, 0.10067389160394669, -0.008994560688734055, 0.019645893946290016, -0.013009746558964252, 0.014539772644639015, 0.07061658054590225, -0.022470558062195778, 0.0471501462161541, 0.04997481033205986, -0.010891249403357506, -0.003091738559305668, -0.010918409563601017, 0.06989230960607529, 0.03668440878391266, -0.006649727933108807, -0.02221706137061119, -0.04718635976314545, -0.013896980322897434, -0.01895783469080925, -0.006133683491498232, -0.005187602713704109, -0.03268280252814293, -0.022072207182645798, -0.03874858468770981, -0.011235279031097889, 0.026073813438415527, -0.008397035300731659, -0.0015492644160985947, -0.022325703874230385, 0.04530325159430504, 0.028644980862736702, 0.019555360078811646, -0.007120504975318909, 0.01874055340886116, -0.010529113002121449, 0.025096045807003975, -0.014729893766343594, 0.027033474296331406, -0.008053005672991276, -0.06167181208729744, 0.029713284224271774, -0.004282261710613966, 0.02230759710073471, 0.026182454079389572, -0.010166976600885391, 0.024263132363557816, -0.029333040118217468, 0.0003796772798523307, 0.032393090426921844, 0.07278939336538315, -0.10357098281383514, 0.036449018865823746, -0.013317562639713287, -0.017409702762961388, -0.001936297514475882, -0.0138154998421669, 0.052582189440727234, -0.0008283868082799017, -0.023864781484007835, 0.041862957179546356, 0.006287591531872749, 0.007871937938034534, 0.012882999144494534, -0.013190815225243568, 0.028608767315745354, 0.02757667936384678, -0.04059547930955887, 0.020442593842744827, 0.008021319285035133, 0.031831782311201096, -0.0322844497859478, -0.08061154186725616, 0.012258313596248627, 0.04182674363255501, 0.003662103321403265, 0.030202167108654976, 0.026725659146904945, 0.032447412610054016, -0.01662205532193184, 0.0419715978205204, 0.09248961508274078, 0.02107633277773857, 0.042080238461494446, -0.05135092884302139, 0.0035285656340420246, -0.03637659177184105, 0.04758470878005028, 0.029043331742286682, -0.031107507646083832, -0.051278501749038696, -0.020026138052344322, -0.004105720203369856, -0.022506771609187126, 0.040885187685489655, 0.017907639965415, -0.03139721602201462, 0.06312035769224167, 0.016124118119478226, 0.01785331964492798, -0.015436059795320034, 0.005495418328791857, -0.02714211493730545, -0.02181871235370636, -0.008075639605522156, -0.06942152976989746, -0.04403577372431755, 0.05442908778786659, 0.028355272486805916, 0.015553753823041916, -0.011217172257602215, -0.012104406021535397, 0.00566290644928813, -0.08321892470121384, -0.05033694580197334, 0.00506990822032094, -0.05352374538779259, -0.048453837633132935, 0.020515020936727524, 0.0010615120409056544, 0.016024531796574593, -0.04903325438499451, -0.020877158269286156, 0.009732413105666637, 0.026381630450487137, 0.014865695498883724, -0.02705158106982708, 0.08857853710651398, -0.016431935131549835, 0.024444200098514557, 0.048453837633132935, 0.11943255364894867, -0.001844631740823388, -0.00844682939350605, -0.008704851381480694, 0.02194545976817608, 0.016196545213460922, 0.017907639965415, -0.030021099373698235, -0.012412222102284431, 0.02520468644797802, 0.0120319789275527, -0.009732413105666637, -0.02071419730782509, -0.01653152145445347, -0.01865001954138279, -0.017545504495501518, -0.021529003977775574, 0.003576095914468169, -0.013082173652946949, 0.04349257051944733, 0.014512612484395504, -0.026779979467391968, -0.03659387305378914, -0.0047394586727023125, 0.0460999496281147, 0.006500346586108208, 0.015680501237511635, -0.07192026823759079, -0.015101083554327488, -0.03630416467785835, -0.04428926855325699, 0.04591888189315796, -0.021040119230747223, 0.026182454079389572, 0.01260234322398901, 0.022542985156178474, 0.005825867876410484, 0.009397436864674091, 0.02744993194937706, 0.026182454079389572, -0.00912583526223898, -0.004216624423861504, 0.013552950695157051, 0.008790859021246433, 0.05341510474681854, 0.01075544860213995, -0.006174423731863499, -0.021184973418712616, -0.10081874579191208, 0.06261336803436279, -0.05515335872769356, 0.0820600837469101, -0.02551250159740448, -0.010004015639424324, -0.062215015292167664, -0.013516737148165703, 0.008704851381480694, 0.02683429978787899, -0.005803234409540892, 0.02486065775156021, -0.016196545213460922, -0.017527397722005844, 0.039436642080545425, -0.008505675941705704, -0.04030577093362808, -0.028518233448266983, -0.02480633743107319, -0.059680063277482986, 0.04037819802761078, 0.04903325438499451, 0.04961267486214638, -0.02286890707910061, 0.03835023567080498, -0.02326725795865059, -0.008397035300731659, -0.0120319789275527, 0.03871237114071846, 0.030817799270153046, 0.060114625841379166, 0.02489687129855156, -0.0028450333047658205, 0.03918314725160599, 0.02480633743107319, -0.005825867876410484, -0.00002671816218935419, -0.021547110751271248, 0.016613002866506577, 0.019283758476376534, 0.0012833204818889499, 0.05250976234674454, 0.10277428478002548, -0.04074033349752426, -0.031777460128068924, 0.011624575592577457, -0.026798086240887642, -0.010719234123826027, 0.015399846248328686, -0.07764202356338501, 0.046570729464292526, -0.0018887671176344156, 0.03161449730396271, -0.05011966452002525, -0.021981673315167427, -0.05609491467475891, 0.027612892910838127, 0.02178249880671501, 0.04776577651500702, -0.02726886421442032, 0.03224823623895645, 0.03744489327073097, 0.03585149347782135, 0.04142839461565018, 0.03284576162695885, 0.04276829585433006, 0.021583324298262596, 0.01526404544711113, 0.03262848034501076, -0.012873945757746696, 0.00943365041166544, -0.048019275069236755, -0.00956945214420557, 0.0032116963993757963, -0.008822545409202576, -0.05301675572991371, -0.07814901322126389, -0.042333733290433884, 0.025259006768465042, -0.03264658898115158, -0.0033837109804153442, -0.0013727229088544846, 0.07923541963100433, 0.009085094556212425, -0.01780805177986622, 0.05837637186050415, 0.004499543458223343, -0.002428576583042741, 0.029840031638741493, 0.020659875124692917, -0.009551345370709896, -0.023719927296042442, -0.0027748693246394396, -0.0624685138463974, 0.0006614645826630294, 0.02907954528927803, -0.021565217524766922, -0.0040627168491482735, -0.005540685262531042, -0.057869382202625275, 0.030021099373698235, 0.043347716331481934, -0.016178438439965248, -0.04461519420146942, -0.000690322311129421, 0.010655860416591167, 0.01266571693122387, -0.02542196772992611, -0.05207519978284836, -0.07488978654146194, 0.04827276989817619, -0.014458292163908482, -0.01785331964492798, -0.0068670096807181835, -0.011796589940786362, -0.0215108972042799, -0.03554367646574974, 0.01084598246961832, -0.04939538985490799, 0.029151972383260727, -0.04037819802761078, 0.01583440974354744, -0.052944328635931015, -0.023701820522546768, -0.03961770981550217, 0.03237498551607132, 0.01851421780884266, 0.031650714576244354, 0.021094439551234245, 0.05182170495390892, 0.08865096420049667, 0.00009018042328534648, -0.04428926855325699, 0.04758470878005028, -0.0031234256457537413, -0.008021319285035133, -0.05250976234674454, -0.0038341181352734566, -0.003768480848520994, 0.008732011541724205, -0.008428722620010376, -0.019066477194428444, -0.01886730082333088, 0.0291700791567564, 0.026417843997478485, -0.012529916130006313, 0.017427809536457062, 0.0021762128453701735, 0.0020053298212587833, 0.029930565506219864, 0.017409702762961388, -0.006482239812612534, 0.0006388310575857759, -0.012348847463726997, -0.030582411214709282, 0.037807028740644455, 0.007269886322319508, 0.007573175244033337, 0.04338392987847328, 0.0266170185059309, -0.04160946235060692, -0.013389989733695984, -0.028210418298840523, -0.05996977165341377, -0.020225312560796738, -0.01566239446401596, 0.016957031562924385, -0.06529317796230316, -0.08162552118301392, 0.06630715727806091, 0.052545975893735886, -0.042514801025390625, 0.04628102108836174, 0.015952104702591896, -0.014684626832604408, 0.018278829753398895, -0.004076296929270029, -0.018360311165452003, -0.028644980862736702, 0.058050449937582016, -0.020931478589773178, -0.00020271145331207663, 0.0019306391477584839, 0.007804037071764469, -0.030238380655646324, 0.011986711993813515, -0.02181871235370636, -0.005124228540807962, -0.02415449172258377, -0.03105318732559681, 0.02471580170094967, -0.04055926576256752, -0.00412382697686553, 0.030564304441213608, -0.010873142629861832, 0.018686233088374138, 0.007315153256058693, 0.0398712083697319, -0.014340597204864025, -0.007075238041579723, 0.008944766595959663, 0.0017450442537665367, 0.01935618557035923, -0.07858357578516006, 0.032393090426921844, -0.019501039758324623, -0.05222005397081375, 0.05551549419760704, 0.018812980502843857, -0.03422188013792038, -0.013000693172216415, 0.014213849790394306, -0.01979074813425541, -0.0054003577679395676, 0.008202387019991875, 0.02895279787480831, 0.0022893804125487804, 0.10530923306941986, 0.016603948548436165, 0.0025032672565430403, -0.05768831446766853, 0.018595699220895767, 0.03997984901070595, -0.04019713029265404, 0.03590581566095352, -0.05551549419760704, 0.02714211493730545, 0.03954528272151947, 0.00318906269967556, -0.041500821709632874, 0.07423794269561768, 0.0034335048403590918, 0.04838141053915024, 0.03835023567080498, 0.023919101804494858, 0.01578914187848568, 0.10827875137329102, 0.014241009950637817, 0.021800605580210686, -0.04265965521335602, -0.020478807389736176, -0.0013659328687936068, -0.05240112170577049, -0.02018909901380539, -0.017518343403935432, -0.0023448325227946043, 0.010637753643095493, -0.028047457337379456, 0.0012787937885150313, -0.01154309418052435, 0.051206074655056, 0.002446683356538415, -0.004621764644980431, 0.004227941390126944, -0.026888620108366013, -0.06366356462240219, 0.020967692136764526, 0.02898901142179966, -0.05551549419760704, 0.011226225644350052, -0.02942357398569584, -0.05700025334954262, 0.03031080774962902, -0.08177037537097931, 0.020225312560796738, 0.01506487000733614, -0.04544810578227043, -0.05957142263650894, -0.028826050460338593, 0.012457489036023617, -0.02080473117530346, 0.0016794070834293962, -0.029151972383260727, 0.018794873729348183, 0.0161422248929739, -0.05986113101243973, 0.07909056544303894, -0.017699411138892174, 0.009967802092432976, -0.08336377888917923, 0.04653451591730118, 0.006975650321692228, -0.0007265359745360911, 0.011787536554038525, -0.008772752247750759, 0.009777680039405823, -0.009705252945423126, 0.0034629283472895622, 0.036141201853752136, 0.05508093163371086, -0.02701536752283573, -0.03299061581492424, -0.030763478949666023, -0.00040146204992197454, 0.009714306332170963, -0.010013069026172161, 0.04287693649530411, 0.02132982760667801, -0.009940641932189465, -0.044723834842443466, -0.004117037169635296, -0.012022925540804863, -0.019718321040272713, -0.05374102666974068, 0.009211841970682144, 0.00873653870075941, -0.06746599078178406, -0.05203898623585701, 0.059897344559431076, 0.024951191619038582, -0.02225327491760254, -0.05855743959546089, 0.014920015819370747, -0.02040638029575348, 0.032393090426921844, -0.06210637465119362, 0.0016103748930618167, -0.000319132610457018, -0.03726382553577423, -0.01183280348777771, 0.018668126314878464, -0.006717628333717585, -0.036793049424886703, -0.025313327088952065, -0.017925746738910675, 0.02652648463845253, -0.030419450253248215, -0.01948293298482895, 0.037372466176748276, -0.0075550684705376625, 0.026598911732435226, -0.04425305500626564, -0.01289205253124237, 0.01301879994571209, 0.006636147852987051, -0.05660190433263779, -0.016440987586975098, -0.004974847659468651, 0.0409938283264637, -0.04566538706421852, -0.019283758476376534, -0.06493104249238968, 0.03748110681772232, -0.0644964724779129, -0.06594502180814743, -0.0010241667041555047, 0.02111254632472992, 0.0004724746977444738, -0.008152593858540058, 0.003444821573793888, 0.03127047047019005, 0.017581718042492867, 0.011298652738332748, 0.022687839344143867, -0.05178549140691757, -0.07916299253702164, 0.009714306332170963, 0.009297849610447884, 0.029043331742286682, -0.057289961725473404, 0.04381849244236946, -0.020388273522257805, -0.061526957899332047, 0.051713064312934875, -0.03159639239311218, 0.07510706782341003, 0.05366859957575798, 0.021402254700660706, 0.025222793221473694, -0.02797502838075161, 0.02726886421442032, -0.06438783556222916, -0.011733216233551502, -0.03809673711657524, 0.026110026985406876, 0.025494394823908806, -0.02015288546681404, -0.023339685052633286, 0.03585149347782135, 0.0778593048453331, -0.004239257890731096, -0.03610498830676079, 0.045810241252183914, 0.009334063157439232, 0.020786624401807785, -0.0312342569231987, 0.025059832260012627, -0.026798086240887642, 0.009822946973145008, 0.01099989004433155, 0.008541890420019627, 0.01883108727633953, -0.002833716571331024, 0.02397342398762703, -0.025059832260012627, -0.10313642024993896, 0.030111633241176605, -0.026508377864956856, -0.008215967565774918, -0.023031868040561676, 0.08473989367485046, -0.08691271394491196, 0.01541795302182436, -0.0777144506573677, -0.07318774610757828, 0.025657357648015022, -0.012738144025206566, -0.07742474228143692, -0.03519964963197708, -0.01295542623847723, -0.0322120226919651, 0.03929178789258003, 0.012484649196267128, 0.008704851381480694, -0.008469462394714355, 0.07195648550987244, 0.0051423353143036366, -0.014621253125369549, -0.009705252945423126, 0.05301675572991371, 0.019718321040272713, 0.049286749213933945, 0.04276829585433006, 0.013607271946966648, 0.044760048389434814, -0.09647311270236969, 0.022850800305604935, 0.009822946973145008, 0.014150476083159447, 0.026598911732435226, -0.007310626562684774, 0.0009059066069312394, 0.0553344264626503, -0.018496111035346985, -0.0007140875095501542, 0.005169495474547148, -0.02603759989142418, -0.007043551187962294, -0.0654742419719696, 0.010664913803339005, 0.01394224725663662, -0.018016280606389046, -0.04428926855325699, -0.043311502784490585, -0.008691270835697651, 0.022144634276628494, 0.040450625121593475, 0.023683713749051094, -0.014449238777160645, -0.003442558227106929 ]
40,029
s3path.old_versions
is_fifo
AWS S3 Service doesn't have fifo feature, There for this method will always return False
def is_fifo(self) -> Literal[False]: """ AWS S3 Service doesn't have fifo feature, There for this method will always return False """ return False
(self) -> Literal[False]
[ 0.0030020922422409058, -0.032909929752349854, -0.06619539111852646, -0.021336833015084267, 0.031715068966150284, -0.014014031738042831, -0.04786278307437897, 0.014935783110558987, 0.006119403522461653, -0.053290873765945435, 0.05827515572309494, 0.009567435830831528, -0.01845209300518036, -0.0261674914509058, -0.030008120462298393, 0.018571579828858376, 0.018435023725032806, 0.0261674914509058, 0.02625283971428871, -0.02094423398375511, -0.034770503640174866, 0.06182560697197914, 0.021746499463915825, -0.04519994556903839, 0.05291534587740898, 0.04045463353395462, 0.01995420642197132, 0.0015426529571413994, -0.017718106508255005, 0.02780616097152233, -0.028045132756233215, -0.014978456310927868, 0.016480568796396255, 0.00721611687913537, 0.04718000441789627, 0.04571203142404556, 0.015115012414753437, 0.042537108063697815, -0.09292617440223694, -0.022326862439513206, -0.01572951301932335, -0.01135119516402483, -0.030946942046284676, -0.020210247486829758, 0.01492724847048521, 0.02729407697916031, 0.0014914446510374546, 0.08049960434436798, 0.020193178206682205, -0.00087747722864151, 0.06619539111852646, 0.04605342075228691, 0.02935948222875595, 0.015652701258659363, -0.03697246313095093, 0.00005547576438402757, 0.05854826793074608, 0.06517121940851212, -0.048545561730861664, 0.053427428007125854, 0.007292929571121931, 0.0467020608484745, 0.05636337772011757, -0.0785195454955101, 0.012810634449124336, -0.012469245120882988, -0.043527137488126755, -0.04267366603016853, -0.033490292727947235, 0.055066097527742386, -0.026116283610463142, -0.0034821711014956236, -0.03543621301651001, 0.04007910564541817, -0.05083287134766579, -0.0692678913474083, 0.01251191832125187, 0.036733489483594894, -0.025433504953980446, -0.02567247673869133, 0.013194696977734566, -0.02447761408984661, 0.011641375720500946, 0.011598702520132065, 0.021831847727298737, 0.023999668657779694, 0.013467809185385704, -0.007762339897453785, -0.0321759432554245, 0.07223798334598541, -0.035675182938575745, 0.05933346226811409, -0.014244469814002514, -0.004045463632792234, 0.0650688037276268, -0.016864633187651634, -0.002615895587950945, -0.06025521457195282, 0.01629280485212803, -0.04499511420726776, -0.026116283610463142, 0.06984825432300568, -0.0020376674365252256, -0.04216158017516136, 0.04786278307437897, -0.032005250453948975, -0.02632111683487892, -0.00864995177835226, -0.00382782774977386, -0.056260958313941956, 0.05035492405295372, 0.013715315610170364, 0.01622452773153782, 0.012494849041104317, 0.0024259977508336306, -0.004578884225338697, 0.001834967639297247, -0.01354462094604969, -0.03676762804389, -0.038303881883621216, 0.02567247673869133, 0.010403839871287346, 0.01386040635406971, -0.04461958259344101, 0.05411020666360855, 0.038645271211862564, 0.035333793610334396, 0.023385168984532356, -0.01606236770749092, 0.04130810871720314, -0.004083869978785515, 0.02043214999139309, -0.03577760234475136, 0.018093634396791458, -0.020039552822709084, -0.019698163494467735, 0.06708300113677979, 0.031083498150110245, -0.05346156656742096, -0.010634277015924454, 0.018793482333421707, 0.006930203177034855, -0.00019123136007692665, 0.0069174012169241905, 0.0036464647855609655, 0.04199088737368584, -0.016711007803678513, -0.061279382556676865, 0.0027524514589458704, -0.005594517569988966, 0.04977456480264664, 0.004843460861593485, -0.06817544996738434, 0.03946460410952568, -0.007066758815199137, 0.03953288495540619, -0.038440436124801636, -0.02632111683487892, -0.03308062627911568, -0.014201795682311058, -0.03775765746831894, 0.009712526574730873, -0.05267637223005295, -0.007544703781604767, -0.02256583422422409, -0.04188846796751022, -0.014696810394525528, 0.03564104437828064, -0.0039665172807872295, 0.07674431800842285, 0.02679906226694584, 0.06581985950469971, -0.02495555952191353, 0.020380942150950432, 0.03529965505003929, 0.07551531493663788, -0.022241514176130295, 0.029120508581399918, -0.024562962353229523, -0.06069901958107948, -0.01251191832125187, -0.04349299892783165, 0.0007627917802892625, -0.008090927265584469, 0.02850600890815258, 0.02234393171966076, 0.0028228629380464554, 0.013706780970096588, 0.05974313244223595, 0.039362188428640366, -0.03403651714324951, 0.014705345034599304, 0.0009846948087215424, -0.009780803695321083, 0.0057481424883008, -0.07333042472600937, 0.03953288495540619, 0.03463394567370415, 0.023572932928800583, 0.028045132756233215, -0.025092115625739098, 0.020329734310507774, 0.02283894643187523, -0.03424134850502014, 0.00008661420724820346, 0.02242927812039852, 0.010864715091884136, -0.006145007908344269, -0.06882409006357193, 0.02099544368684292, -0.07442287355661392, -0.0111378263682127, -0.010412374511361122, 0.040761884301900864, 0.019902996718883514, 0.05271051079034805, 0.0010913789737969637, 0.023726558312773705, -0.00397718558087945, 0.02326568216085434, 0.09313100576400757, -0.04321988672018051, 0.0006438388954848051, 0.0053854165598750114, 0.05609026551246643, 0.01945919170975685, 0.04001082852482796, -0.0033050754573196173, -0.04209330305457115, -0.036255545914173126, 0.006226087920367718, 0.049672145396471024, 0.060084521770477295, 0.031868692487478256, 0.05933346226811409, 0.00920044258236885, 0.03502654284238815, 0.0020942101255059242, -0.05107184126973152, -0.020244386047124863, -0.00749776279553771, -0.02106372080743313, 0.02439226768910885, 0.03028123266994953, -0.03203938901424408, -0.011462146416306496, 0.01739378646016121, 0.10828869044780731, -0.022292722016572952, -0.00046674322220496833, 0.018998315557837486, 0.038781825453042984, -0.10098296403884888, -0.05807032436132431, 0.012648474425077438, -0.05110597983002663, 0.007749537471681833, -0.061928022652864456, 0.023248612880706787, 0.027055103331804276, -0.04291263595223427, -0.05257395654916763, 0.014107913710176945, 0.05687545984983444, -0.0014103646390140057, 0.010352631099522114, 0.019203148782253265, -0.005846292246133089, -0.040761884301900864, 0.07039447873830795, 0.06373738497495651, -0.037586964666843414, 0.007113699801266193, -0.055066097527742386, -0.011154895648360252, -0.08575699478387833, 0.023282751441001892, 0.006887529511004686, 0.012989863753318787, -0.003356283763423562, 0.04308333247900009, -0.0054707638919353485, 0.011701119132339954, 0.001435968792065978, -0.019834719598293304, -0.0019437854643911123, 0.004711172543466091, 0.0007649254403077066, -0.0226341113448143, -0.006797914858907461, -0.05510023608803749, 0.06090385466814041, -0.006392515264451504, -0.03885010629892349, 0.043458860367536545, 0.052096009254455566, -0.026833200827240944, -0.0700530856847763, 0.09463311731815338, -0.010881784372031689, -0.03707487881183624, 0.012349758297204971, -0.031168844550848007, -0.004175618290901184, -0.01608797162771225, 0.008338434621691704, 0.006494931876659393, 0.008556069806218147, -0.05663648992776871, 0.03268802911043167, 0.0005878297379240394, 0.024375198408961296, -0.03190283104777336, -0.013706780970096588, 0.03403651714324951, 0.07264764606952667, 0.014048170298337936, 0.035265516489744186, -0.004980016499757767, 0.06189388409256935, -0.042400553822517395, 0.005799351260066032, -0.03301234915852547, -0.015430796891450882, -0.013331253081560135, -0.02256583422422409, -0.015294241718947887, -0.018861759454011917, -0.025006767362356186, 0.05141323059797287, -0.030895734205842018, 0.0389183834195137, 0.01145361177623272, 0.0130837457254529, -0.05226670578122139, -0.006324237212538719, 0.005112305283546448, -0.029803287237882614, 0.027396492660045624, -0.024733657017350197, -0.01613064482808113, -0.014696810394525528, 0.03294406831264496, 0.0467020608484745, -0.04212744161486626, -0.010207540355622768, 0.03741626814007759, 0.009627179242670536, 0.10344096273183823, 0.008453653194010258, 0.021609943360090256, 0.038440436124801636, 0.0219171941280365, 0.10132434964179993, 0.032858721911907196, -0.03577760234475136, -0.009951498359441757, 0.01294718962162733, 0.032278358936309814, 0.0079543711617589, 0.06117696687579155, -0.05370054021477699, -0.020739400759339333, 0.03588001802563667, -0.0003597923496272415, -0.0015810593031346798, 0.027703743427991867, 0.009960032999515533, -0.028454799205064774, -0.03340494632720947, -0.049125924706459045, -0.03741626814007759, -0.025365225970745087, -0.08958055824041367, -0.02999105118215084, 0.007211849559098482, -0.010309957899153233, -0.03867940977215767, -0.022258583456277847, 0.05906035378575325, -0.020193178206682205, 0.028096340596675873, -0.00926871970295906, -0.014107913710176945, -0.00813360046595335, 0.06288391351699829, -0.04659964144229889, -0.033968236297369, 0.038303881883621216, 0.005300069227814674, 0.03833802044391632, -0.012068112380802631, -0.032722167670726776, -0.03908907622098923, -0.0721696987748146, -0.03594829514622688, 0.010787902399897575, 0.006695498246699572, 0.0011841942323371768, 0.007237453479319811, 0.03529965505003929, 0.007156373467296362, 0.002784456592053175, 0.010053915902972221, 0.007566040847450495, -0.030400719493627548, 0.052232567220926285, -0.005991382524371147, -0.013501947745680809, 0.017786383628845215, 0.031578510999679565, -0.06991653144359589, -0.09859323501586914, -0.016770750284194946, -0.004175618290901184, 0.018827620893716812, 0.010548929683864117, -0.029120508581399918, 0.004502071533352137, 0.052949484437704086, 0.050457343459129333, -0.004706905223429203, 0.028727911412715912, 0.0360848493874073, -0.0037659509107470512, -0.02164408378303051, 0.018127772957086563, 0.011923021636903286, 0.027686674147844315, -0.01584046520292759, 0.009063886478543282, 0.024836072698235512, -0.03012760728597641, -0.01613064482808113, 0.02382897399365902, -0.014227399602532387, -0.017291368916630745, -0.0558854304254055, -0.0038022235967218876, 0.08923916518688202, 0.03707487881183624, 0.0018883097218349576, -0.034326694905757904, 0.0027524514589458704, 0.0007937301998026669, 0.020824749022722244, -0.02871084213256836, 0.038781825453042984, 0.07046275585889816, -0.003102375427260995, 0.010258749127388, 0.02850600890815258, -0.02241220884025097, -0.006435188930481672, -0.014858970418572426, -0.060016240924596786, 0.0314590260386467, -0.031134705990552902, -0.04588272422552109, -0.07578843086957932, -0.009627179242670536, 0.0643860250711441, -0.01039530523121357, -0.003680603578686714, 0.013484878465533257, -0.007762339897453785, 0.009968568570911884, -0.011726723052561283, 0.008159204386174679, 0.0006465060287155211, 0.0382014662027359, -0.045438919216394424, -0.038440436124801636, -0.05260809510946274, 0.03055434487760067, 0.004736776929348707, 0.014858970418572426, 0.057524099946022034, 0.015243032947182655, 0.0030084934551268816, -0.053939513862133026, -0.08732739090919495, -0.038576994091272354, 0.05141323059797287, 0.00012782096746377647, -0.05462229251861572, -0.023316890001296997, 0.010224610567092896, 0.08971711248159409, -0.028642563149333, -0.024699516594409943, -0.05168634280562401, -0.020773539319634438, 0.03973771631717682, 0.01559295691549778, 0.006183414254337549, -0.009806408546864986, 0.02085888758301735, -0.019186079502105713, -0.0006129005341790617, -0.01790587045252323, 0.028642563149333, -0.020261455327272415, -0.008180541917681694, 0.03205645829439163, -0.07333042472600937, -0.011078083887696266, -0.07892920821905136, -0.030230024829506874, -0.037177298218011856, 0.0009329530294053257, 0.019083663821220398, 0.009635713882744312, 0.050901148468256, 0.005321405827999115, 0.011658445000648499, -0.004510606173425913, 0.026150422170758247, 0.02454589307308197, -0.024631239473819733, 0.053086038678884506, -0.060152798891067505, 0.026013866066932678, -0.018622787669301033, -0.018144842237234116, -0.07537876069545746, 0.016711007803678513, -0.07674431800842285, -0.006618685554713011, 0.010839111171662807, -0.018981246277689934, -0.005095235537737608, -0.013126419857144356, -0.026133352890610695, -0.018059495836496353, 0.04492683336138725, -0.046292390674352646, 0.001031102379783988, -0.06889236718416214, -0.056602347642183304, 0.010088054463267326, 0.004463665187358856, 0.038303881883621216, -0.0157465822994709, -0.04499511420726776, 0.01881055161356926, -0.0013207499869167805, -0.005201919935643673, 0.049262478947639465, -0.033780474215745926, -0.01368117704987526, -0.02285601571202278, 0.002957284916192293, -0.047145865857601166, 0.09893462806940079, 0.0033093427773565054, 0.042332276701927185, -0.0012983462074771523, -0.03953288495540619, 0.031868692487478256, -0.021473389118909836, 0.05755823850631714, -0.005880431272089481, -0.025638338178396225, -0.0018573713023215532, -0.030093468725681305, 0.030776247382164, -0.0015213161241263151, 0.038508716970682144, -0.01853743940591812, 0.041547078639268875, -0.008043985813856125, 0.03635796159505844, 0.014585859142243862, 0.03529965505003929, -0.008927330374717712, 0.010088054463267326, 0.021678222343325615, -0.07879265397787094, -0.03584587946534157, 0.004463665187358856, -0.04898936673998833, -0.047214142978191376, -0.06766336411237717, -0.029820356518030167, -0.0007446554373018444, -0.01894710771739483, 0.024289850145578384, -0.02673078328371048, 0.014833365567028522, -0.03557276725769043, 0.012435105629265308, 0.033968236297369, -0.0417177751660347, 0.003285872284322977, 0.05127667635679245, 0.06336186081171036, -0.03372926637530327, -0.020176108926534653, 0.04588272422552109, 0.004339911974966526, 0.0651029422879219, 0.03294406831264496, -0.011726723052561283, 0.033558569848537445, 0.0018435022793710232, -0.07408148050308228, -0.013749455101788044, -0.01251191832125187, -0.023538794368505478, 0.02589437924325466, 0.06482983380556107, -0.02106372080743313, -0.009456484578549862, 0.009985637851059437, 0.026781992986798286, -0.06602469831705093, -0.004124409519135952, 0.05714857205748558, 0.002566820941865444, 0.02137097157537937, -0.013271509669721127, -0.024085016921162605, -0.017154812812805176, -0.07367181777954102, -0.04803347587585449, 0.029393620789051056, -0.08930744975805283, -0.035470351576805115, -0.035675182938575745, 0.022890154272317886, -0.034548599272966385, 0.11149775236845016, -0.027072172611951828, 0.004958679899573326, -0.0015586556401103735, -0.028898606076836586, 0.04079602286219597, -0.011274382472038269, -0.006836321204900742, -0.0079543711617589, -0.03323424980044365, -0.02452882193028927, -0.03980599343776703, 0.007536169141530991, -0.047145865857601166, 0.019612817093729973, -0.025791963562369347, 0.05919690802693367, -0.048272449523210526, -0.01595141552388668, 0.03905493766069412, 0.006921668536961079, 0.01230708509683609, 0.011649910360574722, 0.002393992617726326, 0.021985473111271858, 0.0032133269123733044, 0.008206145837903023, -0.09299445152282715, 0.00749776279553771, -0.07606153935194016, -0.0011927289888262749, 0.07940715551376343, 0.02186598628759384, -0.034548599272966385, 0.003418160602450371, -0.03203938901424408, -0.04407336190342903, 0.03707487881183624, 0.022019611671566963, 0.052369121462106705, 0.00976373441517353, -0.026747852563858032, 0.0010625742143020034, -0.02079061046242714, 0.011905952356755733, -0.0014114314690232277, 0.004843460861593485, 0.023931391537189484, -0.027003895491361618, -0.006601615808904171, -0.005180582869797945, 0.02625283971428871, 0.03436083346605301, -0.00022323660959955305, 0.004056131932884455, -0.03885010629892349, -0.013911615125834942, -0.04745311662554741, 0.006836321204900742, -0.007416682783514261, 0.0014914446510374546, 0.03847457468509674, -0.021968401968479156, -0.019203148782253265, -0.014270073734223843, 0.04335644468665123, 0.002566820941865444, -0.00045154071995057166, 0.02575782500207424, 0.031168844550848007, 0.007933034561574459, 0.008756635710597038, -0.02510918490588665, 0.03268802911043167, -0.018144842237234116, -0.06138179823756218, 0.02551885135471821, -0.050320785492658615, -0.0353679321706295, 0.040625330060720444, 0.011223173700273037, -0.011999834328889847, -0.022890154272317886, 0.004378317855298519, -0.02418743260204792, -0.004809321835637093, 0.062064576894044876, 0.020705262199044228, -0.04724828153848648, 0.00045874190982431173, -0.019356774166226387, 0.006490664556622505, 0.0032474659383296967, -0.07278420031070709, -0.06564916670322418, 0.013715315610170364, -0.02681613154709339, 0.04257124662399292, 0.06261080503463745, 0.05523679032921791, -0.0615183562040329, 0.030895734205842018, 0.06418119370937347, -0.04677033796906471, 0.012930120341479778, 0.021097859367728233, -0.019356774166226387, 0.02236100099980831, 0.042263999581336975, -0.04182019084692001, 0.010967131704092026, -0.05882138013839722, 0.02666250616312027, -0.04011324420571327, 0.0033882888965308666, 0.03966943919658661, -0.01640375703573227, -0.006622952874749899, 0.01754741184413433, -0.008637149818241596, -0.01064281165599823, -0.009080955758690834, 0.040283940732479095, -0.007352672517299652, -0.06145007908344269, 0.06957514584064484, -0.036665212363004684, -0.00434204563498497, -0.07770021259784698, 0.027328215539455414, 0.0580020472407341, 0.05312017723917961, 0.022958431392908096, 0.023726558312773705, -0.02213909663259983, 0.029581384733319283 ]
40,030
s3path.old_versions
is_file
Returns True if the path points to a Bucket key, False if it points to Bucket or a key prefix. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated.
def is_file(self) -> bool: """ Returns True if the path points to a Bucket key, False if it points to Bucket or a key prefix. False is also returned if the path doesn’t exist. Other errors (such as permission errors) are propagated. """ self._absolute_path_validation() if not self.bucket or not self.key: return False try: return bool(self.stat()) except ClientError: return False
(self) -> bool
[ 0.053455792367458344, -0.022658659145236015, -0.07227825373411179, 0.06059040129184723, 0.04829305782914162, -0.02371630258858204, 0.05187828838825226, 0.00280544301494956, 0.015864646062254906, -0.015353751368820667, 0.02247939631342888, 0.03800344839692116, 0.020633002743124962, -0.05008567497134209, -0.019378172233700752, 0.02036411128938198, 0.030832985416054726, -0.004273146856576204, 0.031675513833761215, 0.01200156006962061, -0.031388696283102036, 0.001766846515238285, 0.04549657925963402, -0.02396726794540882, 0.04244913160800934, 0.060124319046735764, 0.01130244042724371, -0.01038820669054985, 0.06342273205518723, -0.0022945476230233908, -0.04768357053399086, 0.015622642822563648, 0.05915630981326103, 0.03355776146054268, -0.00908856000751257, -0.024720165878534317, 0.031388696283102036, -0.004584613721817732, -0.0554993711411953, -0.04739675298333168, -0.03352190926671028, 0.06166597083210945, -0.009608418680727482, 0.007564837113022804, 0.042234018445014954, 0.03717884421348572, -0.019915957003831863, 0.040011174976825714, -0.01322950143367052, -0.042090609669685364, 0.022640733048319817, -0.0022508527617901564, -0.01107836328446865, -0.016536876559257507, -0.01607079617679119, -0.048328910022974014, 0.03965265303850174, 0.02964985929429531, -0.07930530607700348, 0.02968571148812771, -0.013130907900631428, 0.005978372413665056, 0.04463612288236618, -0.08991758525371552, 0.002856980776414275, -0.01677888073027134, -0.038039300590753555, -0.07105927169322968, -0.028323322534561157, 0.04051310941576958, -0.007757543120533228, 0.041266005486249924, 0.0009058309951797128, 0.030599944293498993, -0.05990920588374138, -0.03287656605243683, 0.00943811982870102, 0.034023839980363846, -0.01885831356048584, 0.004642874002456665, -0.04793453589081764, -0.08812497556209564, 0.021654793992638588, -0.04323788359761238, 0.0214934591203928, 0.007923359982669353, 0.06711552292108536, -0.024648461490869522, -0.004853506106883287, 0.08030916750431061, -0.01995180919766426, 0.026261815801262856, 0.0013074888847768307, -0.07159706205129623, 0.03753736615180969, -0.031550031155347824, -0.00446361256763339, -0.051376357674598694, -0.042484983801841736, -0.03371909633278847, -0.023339852690696716, 0.024899428710341454, 0.11401034146547318, 0.014950412325561047, 0.024289939552545547, 0.019790474325418472, -0.019915957003831863, -0.04004702717065811, -0.015165526419878006, -0.03551170974969864, -0.026530707255005836, -0.03807515278458595, 0.030832985416054726, 0.0526311881840229, 0.03915071859955788, -0.0512688010931015, -0.00017211909289471805, -0.03230293095111847, -0.02645900286734104, -0.017352517694234848, 0.05879778414964676, 0.01276342198252678, 0.026441076770424843, -0.025437213480472565, 0.060948923230171204, -0.03656935319304466, 0.017962006852030754, -0.01400032639503479, -0.011768519878387451, 0.03176514431834221, -0.022533176466822624, 0.014600852504372597, -0.028377102687954903, 0.015515086241066456, -0.04101504012942314, 0.044851236045360565, 0.06417562812566757, 0.03843367472290993, -0.0526670403778553, 0.06858546286821365, 0.08647576719522476, -0.013731434009969234, -0.0008274040301330388, -0.028502585366368294, 0.007528984919190407, 0.03242841362953186, -0.02536550723016262, -0.017639335244894028, 0.045245613902807236, 0.006287598516792059, 0.034167248755693436, -0.030062159523367882, 0.019306467846035957, 0.012512455694377422, 0.008026435039937496, -0.05424454063177109, -0.005238918587565422, -0.015425455756485462, -0.047468457370996475, -0.010235833935439587, -0.0015797422965988517, 0.016321763396263123, -0.0025096614845097065, -0.03481259196996689, -0.00706738606095314, 0.01419751439243555, -0.05876193195581436, 0.022407691925764084, -0.00008171805529855192, 0.035278670489788055, 0.008196733891963959, 0.03205196186900139, -0.018239861354231834, 0.03253597021102905, 0.03379080072045326, 0.006153152324259281, -0.0058439262211322784, 0.02231806144118309, 0.02066885493695736, -0.03364739194512367, 0.00036356481723487377, -0.037071287631988525, 0.012449714355170727, 0.05033664032816887, 0.003717436222359538, 0.033880431205034256, -0.0159363504499197, -0.008909298107028008, 0.07148950546979904, 0.053025562316179276, -0.07557666301727295, 0.021690646186470985, -0.008465626277029514, -0.0018217454198747873, 0.0043874261900782585, -0.05919216200709343, 0.06033943593502045, 0.01414373517036438, -0.04768357053399086, 0.03452577441930771, -0.010692951269447803, -0.03248219192028046, 0.00031762904836796224, 0.0028009614907205105, 0.005229955539107323, 0.046787261962890625, 0.00341493240557611, -0.016151465475559235, -0.015013153664767742, 0.08210178464651108, -0.05395772308111191, -0.09823532402515411, -0.05187828838825226, 0.07557666301727295, 0.02645900286734104, 0.026118407025933266, -0.009886274114251137, 0.04417004436254501, -0.05668249726295471, 0.056216418743133545, 0.12548308074474335, 0.03504563122987747, 0.029058296233415604, -0.026243889704346657, 0.03561926633119583, 0.012655864469707012, 0.06955347955226898, 0.0457116924226284, -0.042771805077791214, -0.029416818171739578, -0.021152861416339874, 0.009877311065793037, -0.004790764767676592, 0.02927340939640999, -0.008438737131655216, -0.022407691925764084, 0.06539461016654968, 0.016402430832386017, 0.038612935692071915, -0.012324230745434761, 0.03133491799235344, -0.008806223049759865, -0.017504889518022537, -0.007291463203728199, -0.0970163494348526, -0.09041952341794968, 0.03796759247779846, 0.04119430109858513, -0.03617497906088829, -0.013874842785298824, 0.04460027068853378, 0.010289612226188183, -0.06804767996072769, -0.05610886216163635, 0.009106486104428768, -0.04341714456677437, -0.049153514206409454, -0.040262140333652496, 0.02645900286734104, 0.02787517011165619, -0.03936583548784256, -0.0050596571527421474, 0.05750710144639015, 0.020077291876077652, 0.013417726382613182, -0.033772874623537064, 0.052200961858034134, 0.012279415503144264, -0.008613516576588154, 0.027624202892184258, 0.09579736739397049, 0.01289786770939827, -0.015748126432299614, -0.026512781158089638, -0.030169717967510223, -0.030331052839756012, 0.005955964792519808, 0.013713507913053036, 0.0021914723329246044, 0.015362714417278767, -0.01831156574189663, 0.0014497777447104454, 0.023196443915367126, -0.000526020594406873, -0.0017231515375897288, -0.006713344715535641, -0.02742701582610607, -0.00887344591319561, -0.015837756916880608, 0.02552684396505356, -0.01763037219643593, -0.0145650003105402, -0.04671555757522583, -0.03224915266036987, 0.00874348171055317, 0.01491456013172865, 0.024648461490869522, -0.07338967174291611, 0.014824929647147655, -0.03285863995552063, -0.027534572407603264, 0.04603436216711998, -0.0064668599516153336, -0.0010369159281253815, 0.001966275041922927, 0.03594193980097771, 0.0008565340540371835, -0.0373939573764801, -0.027337385341525078, 0.03907901421189308, -0.010128277353942394, -0.014484332874417305, -0.002372974529862404, -0.017522815614938736, 0.06274154037237167, 0.029900824651122093, -0.0041387006640434265, -0.019324393942952156, -0.06840620189905167, 0.036676909774541855, -0.04624947905540466, 0.058726079761981964, -0.011159030720591545, -0.021242491900920868, -0.011876077391207218, -0.032105740159749985, 0.012575197033584118, -0.0033858022652566433, -0.02371630258858204, 0.0360136441886425, 0.012602086178958416, 0.021923687309026718, 0.041803792119026184, 0.003892216132953763, -0.05987335368990898, -0.02493528090417385, -0.028108209371566772, -0.041409414261579514, 0.04105089232325554, 0.02645900286734104, 0.024791870266199112, -0.043452996760606766, 0.03682032227516174, -0.015613679774105549, -0.030815059319138527, -0.018132304772734642, 0.010827396996319294, -0.001621196512132883, 0.04366810992360115, -0.007286981679499149, -0.015066932886838913, 0.014161661267280579, -0.010343390516936779, 0.006901569198817015, -0.02341155707836151, -0.0027202938217669725, 0.0008940669358707964, 0.00492521096020937, 0.014098919928073883, 0.08669088035821915, 0.12232807278633118, -0.051340505480766296, -0.03789588809013367, -0.00707634910941124, -0.02258695475757122, -0.0012122561456635594, 0.05700517073273659, -0.02135005034506321, 0.009384341537952423, -0.013507356867194176, 0.01968291774392128, -0.04477953165769577, -0.034991852939128876, -0.05252363160252571, 0.016025980934500694, -0.006229338701814413, 0.02882525511085987, -0.03275108337402344, 0.0008503719582222402, 0.03649764880537987, 0.03717884421348572, 0.031155655160546303, 0.005866333842277527, 0.03477673977613449, -0.006538564804941416, 0.02482772246003151, 0.0052613262087106705, -0.03561926633119583, 0.01748696342110634, -0.045532431453466415, 0.034722961485385895, -0.008860001340508461, 0.00942915678024292, -0.043847374618053436, -0.03518904000520706, -0.0012391454074531794, 0.030169717967510223, -0.03409554436802864, 0.00950086209923029, 0.042234018445014954, 0.049691300839185715, 0.0031191508751362562, -0.04628533124923706, 0.03843367472290993, 0.0007467363611795008, 0.0030608908273279667, 0.014018252491950989, 0.018535643815994263, -0.0031281139235943556, -0.011732667684555054, 0.0045330761931836605, -0.08540020138025284, -0.030850911512970924, -0.0006010863580740988, -0.030528239905834198, 0.02757042460143566, -0.03371909633278847, -0.06252642720937729, 0.0145650003105402, 0.0360136441886425, -0.004566687624901533, -0.004389666952192783, 0.003399247070774436, 0.0039079017005860806, -0.010755692608654499, -0.033073753118515015, -0.029165852814912796, -0.05922801420092583, 0.04187549650669098, 0.007887507788836956, -0.013892769813537598, 0.01621420681476593, 0.007425909396260977, -0.010585393756628036, -0.01421544048935175, -0.006749196909368038, -0.0498705618083477, 0.00019564716785680503, -0.0062383017502725124, 0.015470270998775959, -0.050408344715833664, 0.005763258319348097, -0.032930344343185425, 0.010235833935439587, 0.04807794466614723, 0.013614914380013943, 0.00015153201820794493, 0.05456721410155296, 0.10519067198038101, -0.017280813306570053, -0.05306141451001167, 0.057865627110004425, -0.0053644017316401005, -0.0166265070438385, -0.03615705296397209, 0.028197839856147766, -0.0007181665278039873, 0.00022211625764612108, 0.01288890466094017, -0.018230898305773735, -0.04198305308818817, 0.0651077926158905, 0.01413477212190628, -0.08246030658483505, 0.04406248778104782, -0.03339642658829689, -0.005678109358996153, 0.03407761827111244, 0.04589095339179039, 0.018643200397491455, -0.017791707068681717, -0.0032379115000367165, -0.06869301944971085, 0.01995180919766426, 0.032374635338783264, 0.02552684396505356, 0.07012711465358734, 0.06288494914770126, -0.041911348700523376, 0.000557111285161227, -0.013390837237238884, -0.07335381954908371, -0.06600409746170044, -0.00582151859998703, 0.04327373579144478, -0.046500444412231445, -0.07023467123508453, 0.03443614020943642, 0.041122596710920334, -0.050408344715833664, 0.03275108337402344, -0.001841912278905511, -0.01087221223860979, 0.030420683324337006, 0.009205080568790436, 0.033073753118515015, -0.020184850320219994, 0.0749313235282898, -0.018750756978988647, 0.010809470899403095, 0.011965707875788212, 0.007493132259696722, -0.022551102563738823, 0.05062345787882805, -0.015201378613710403, -0.009249895811080933, 0.01185815129429102, -0.05119709670543671, 0.020059365779161453, -0.05492573603987694, -0.011257625184953213, 0.04922521859407425, -0.0006565453950315714, 0.05184243619441986, -0.004840061534196138, 0.016572728753089905, -0.01345357857644558, -0.01898379623889923, 0.005413698498159647, 0.006798494141548872, 0.014484332874417305, -0.0873362198472023, 0.03850537911057472, -0.01831156574189663, -0.050838571041822433, -0.0022990291472524405, -0.004358296282589436, -0.04728919267654419, -0.027409089729189873, -0.0029735008720308542, -0.0039908098988235, -0.008479070849716663, 0.015506123192608356, -0.02466638758778572, -0.003054168540984392, 0.07152535766363144, 0.010038645938038826, -0.009796643629670143, -0.05904875323176384, -0.022246357053518295, 0.02939889207482338, 0.004759394098073244, 0.02178027667105198, -0.06560972332954407, 0.006883643101900816, 0.025257950648665428, -0.008653851225972176, -0.08052428066730499, 0.06564557552337646, -0.041911348700523376, 0.05653908848762512, 0.015748126432299614, 0.049583740532398224, -0.0235908180475235, 0.10110350698232651, 0.054387953132390976, 0.03522489219903946, -0.060124319046735764, -0.0373939573764801, -0.014305070973932743, -0.02633352018892765, -0.0040266625583171844, -0.03843367472290993, 0.016707176342606544, -0.044994644820690155, -0.0221925787627697, -0.00804884359240532, 0.02414652891457081, 0.06249057129025459, -0.011974670924246311, 0.011257625184953213, 0.03395213559269905, 0.011401033960282803, -0.05442380532622337, 0.03800344839692116, 0.006811938714236021, -0.042234018445014954, 0.027337385341525078, -0.02396726794540882, -0.041122596710920334, 0.01804267428815365, -0.08769474923610687, 0.02470223978161812, 0.03631838783621788, -0.03864878788590431, 0.0021601016633212566, -0.03422102704644203, 0.013363948091864586, -0.016940215602517128, 0.006910532247275114, -0.012655864469707012, 0.006968792527914047, 0.02688923105597496, -0.04911766201257706, 0.055104997009038925, 0.012091190554201603, 0.051519766449928284, -0.07729757577180862, 0.018786609172821045, 0.01109628938138485, 0.00978767964988947, -0.0013803138863295317, -0.01546130795031786, -0.00492072943598032, -0.03488429635763168, 0.020077291876077652, -0.011042511090636253, 0.06331517547369003, 0.011365181766450405, -0.019647065550088882, -0.023519113659858704, -0.014376775361597538, -0.01800682209432125, -0.011625111103057861, 0.05987335368990898, 0.07001955807209015, -0.0214934591203928, -0.0006246144184842706, -0.006879161577671766, -0.009742864407598972, 0.01832052879035473, -0.018517717719078064, 0.04822135344147682, 0.05575034022331238, -0.03522489219903946, -0.02871769852936268, 0.04771942272782326, -0.0228558462113142, -0.04420589655637741, -0.044707827270030975, 0.013928622007369995, -0.03314545750617981, 0.03997532278299332, -0.03104809857904911, 0.026028776541352272, -0.01322950143367052, -0.01637554168701172, 0.020866043865680695, 0.009733901359140873, 0.030456535518169403, -0.027409089729189873, -0.07181217521429062, -0.01469048298895359, 0.010961843654513359, -0.02412860281765461, 0.007779950741678476, 0.041122596710920334, -0.026727896183729172, 0.05725613608956337, -0.04739675298333168, 0.008281882852315903, 0.031137729063630104, 0.0033566723577678204, -0.04936862736940384, 0.007641023024916649, -0.04105089232325554, 0.0650719404220581, -0.04495879262685776, -0.03656935319304466, -0.04879499226808548, 0.05722028389573097, -0.05252363160252571, -0.03386250510811806, 0.022802067920565605, 0.019915957003831863, -0.01744214817881584, 0.019647065550088882, -0.03662313148379326, 0.008156400173902512, 0.05600130558013916, -0.0008369273273274302, 0.03854123130440712, -0.042628392577171326, -0.04918936640024185, 0.01415269821882248, 0.0283950287848711, 0.01928854174911976, -0.00886896438896656, 0.030958468094468117, -0.02411067672073841, -0.008160881698131561, 0.033611539751291275, -0.013274316675961018, 0.07238581031560898, 0.05284630134701729, 0.01761244609951973, 0.013014388270676136, -0.022102948278188705, -0.011051474139094353, -0.05696931853890419, -0.03285863995552063, -0.03176514431834221, -0.007260092534124851, 0.011544443666934967, -0.03441821411252022, -0.0051716952584683895, 0.018347417935729027, 0.10562089830636978, -0.008107103407382965, -0.008416329510509968, 0.0059738908894360065, -0.000014871355233481154, 0.04546072706580162, -0.008595590479671955, -0.020077291876077652, -0.02538343332707882, -0.023070959374308586, -0.016178354620933533, 0.023931415751576424, 0.008075732737779617, -0.02301718108355999, -0.00852836761623621, -0.01760348305106163, -0.052451927214860916, 0.021834054961800575, -0.01033442746847868, -0.024218233302235603, -0.036694835871458054, 0.07399916648864746, -0.06854961067438126, -0.0064534153789281845, -0.0443851575255394, -0.06209619715809822, 0.04270010069012642, -0.013068166561424732, -0.06553801894187927, -0.03760907053947449, -0.006184522993862629, -0.038899753242731094, 0.025311728939414024, 0.03395213559269905, -0.0035404153168201447, -0.04270010069012642, 0.05420868843793869, 0.015882572159171104, -0.023250222206115723, -0.009456045925617218, 0.013175723142921925, 0.006838827859610319, 0.06482097506523132, 0.02592121809720993, -0.010692951269447803, -0.02645900286734104, -0.088698610663414, 0.012369045987725258, -0.019629139453172684, 0.033468130975961685, 0.02785724401473999, -0.014224403537809849, 0.021995391696691513, 0.010558504611253738, -0.0166175439953804, 0.017406295984983444, 0.017119476571679115, -0.00782028492540121, 0.017693113535642624, -0.06707967072725296, 0.020830191671848297, 0.04079992696642876, -0.009240932762622833, -0.05112539231777191, -0.015694348141551018, -0.00963530782610178, 0.012826163321733475, 0.03413139656186104, 0.009456045925617218, -0.031532105058431625, 0.015766052529215813 ]
40,031
s3path.old_versions
is_mount
AWS S3 Service doesn't have mounting feature, There for this method will always return False
def is_mount(self) -> Literal[False]: """ AWS S3 Service doesn't have mounting feature, There for this method will always return False """ return False
(self) -> Literal[False]
[ 0.04141094163060188, -0.031965140253305435, 0.027704263105988503, 0.01760820671916008, 0.0657099261879921, -0.0053260973654687405, -0.00519347982481122, 0.028987659141421318, -0.030459288507699966, -0.0017967558233067393, 0.04264300316572189, 0.022023092955350876, 0.01911405846476555, -0.039768192917108536, -0.009736704640090466, -0.006985957734286785, -0.013997582718729973, 0.0016374005936086178, 0.02491501346230507, -0.014904516749083996, -0.03018549643456936, 0.0728285014629364, 0.06981679797172546, -0.037064503878355026, -0.000046055236452957615, 0.042608778923749924, 0.05061717703938484, -0.013920579105615616, 0.020465902984142303, 0.00754637410864234, -0.025719275698065758, 0.002938979072496295, 0.04609961807727814, 0.040863361209630966, 0.05753040686249733, 0.005972073879092932, 0.05082251876592636, 0.03555865213274956, -0.05342353880405426, -0.020157888531684875, -0.06293778866529465, 0.0323416031897068, -0.010284287855029106, -0.021663740277290344, 0.012397615239024162, 0.05006959289312363, 0.0021571763791143894, 0.05458715185523033, 0.0006962428451515734, -0.011353785172104836, 0.06218486279249191, 0.06150038167834282, -0.0017005009576678276, 0.005715394392609596, -0.0248807892203331, -0.007606266066431999, 0.06139771267771721, 0.05876246839761734, -0.06790025532245636, 0.0430879145860672, 0.024555662646889687, 0.032991860061883926, 0.03932328522205353, -0.071254201233387, 0.013492779806256294, -0.007811609655618668, -0.06150038167834282, -0.024555662646889687, -0.027721375226974487, 0.06639440357685089, -0.030031489208340645, -0.008573091588914394, -0.020756807178258896, 0.03288918733596802, 0.007939949631690979, -0.0482899509370327, 0.008607315830886364, 0.007559208199381828, 0.02010655216872692, -0.02424764633178711, -0.05859135091304779, -0.046407636255025864, -0.0080854007974267, -0.0031421836465597153, 0.0034929788671433926, 0.04158206284046173, 0.006673664320260286, -0.02097926288843155, -0.048974428325891495, 0.02460699900984764, -0.03552442789077759, 0.06478588283061981, -0.0055442750453948975, 0.006412706803530455, 0.03826234117150307, 0.018583588302135468, -0.013407220132648945, -0.06618905812501907, -0.009685369208455086, -0.022793130949139595, 0.007606266066431999, 0.03535331040620804, 0.060679011046886444, -0.01358689647167921, 0.05051450431346893, -0.020363232120871544, -0.042300764471292496, -0.0202434491366148, -0.009950604289770126, -0.0030138439033180475, 0.02861119620501995, -0.030989758670330048, -0.01781355030834675, 0.027806933969259262, -0.026694657281041145, -0.04674987494945526, 0.04852951690554619, -0.04726323112845421, -0.04572315514087677, -0.047468576580286026, 0.04171895608305931, -0.026437977328896523, -0.0031293495558202267, -0.06694198399782181, 0.07919415086507797, 0.018463805317878723, 0.01827557384967804, 0.02624974586069584, -0.03365922346711159, 0.030236832797527313, 0.002165732439607382, 0.043772391974925995, -0.051678117364645004, 0.0016641380498185754, -0.04264300316572189, -0.006395595148205757, 0.06160305440425873, -0.006519656628370285, -0.0029967320151627064, 0.07043282687664032, 0.00948858167976141, -0.00393575057387352, -0.012397615239024162, -0.00519347982481122, -0.009291794151067734, 0.0456889308989048, -0.041205599904060364, -0.02404230274260044, -0.0004138955264352262, 0.005736784543842077, 0.049966923892498016, -0.012620070017874241, 0.02558238059282303, -0.0024748172145336866, -0.05513473600149155, 0.018754707649350166, -0.024983461946249008, -0.03285496309399605, -0.009163454174995422, -0.03908371552824974, -0.019336514174938202, -0.023836959153413773, -0.0456889308989048, -0.0019411379471421242, -0.022262658923864365, -0.02604440227150917, -0.03448059782385826, 0.02737913466989994, -0.0044619436375796795, 0.05855712667107582, -0.0028170563746243715, 0.07276005297899246, -0.013740903697907925, 0.029329899698495865, 0.08597048372030258, 0.07358142733573914, 0.008401972241699696, 0.011636132374405861, -0.03324853628873825, -0.08316412568092346, 0.0280465018004179, -0.04917977377772331, 0.008226574398577213, 0.040863361209630966, 0.009779484942555428, 0.046168066561222076, -0.016333365812897682, 0.004474777262657881, 0.0338132306933403, 0.06331425160169601, 0.0043271868489682674, 0.018652036786079407, -0.03167423605918884, 0.0018598560709506273, 0.016196470707654953, -0.059344276785850525, 0.04986425116658211, 0.0055228848941624165, -0.024350319057703018, 0.05178079009056091, -0.05571654066443443, -0.03191380575299263, -0.007678992114961147, -0.01613657735288143, 0.04945356398820877, 0.01890871487557888, -0.02234821952879429, 0.010934541933238506, -0.05335509032011032, 0.018463805317878723, -0.07631933689117432, -0.006857617758214474, -0.016898060217499733, 0.10499898344278336, 0.03424103185534477, -0.016923727467656136, 0.016761165112257004, 0.03501106798648834, -0.019764313474297523, -0.00027539560687728226, 0.06844783574342728, -0.00245984410867095, 0.028799427673220634, 0.02713956870138645, -0.007058683317154646, 0.038570355623960495, 0.027036895975470543, 0.0011582657461985946, -0.041068702936172485, -0.02534281276166439, -0.029090331867337227, -0.013792239129543304, 0.05992608144879341, 0.07221247255802155, 0.03829656541347504, -0.022827355191111565, 0.06225331127643585, 0.04935089126229286, 0.017950445413589478, -0.03511374071240425, -0.01717185229063034, -0.013552672229707241, -0.007383810821920633, 0.008949554525315762, -0.0560930036008358, -0.028337405994534492, -0.020602799952030182, 0.061876844614744186, -0.017419975250959396, -0.02724223956465721, 0.015049968846142292, 0.04722901061177254, -0.02087659016251564, -0.03768053650856018, 0.019866984337568283, -0.05753040686249733, 0.004087619483470917, -0.02038034424185753, 0.017334414646029472, 0.02007232792675495, -0.0213728379458189, -0.05225992575287819, 0.03384745493531227, 0.039597075432538986, -0.010267175734043121, -0.0029325620271265507, 0.022553563117980957, 0.026763105764985085, -0.03631157800555229, 0.07050127536058426, 0.050103817135095596, -0.003980669658631086, -0.017864886671304703, -0.046168066561222076, 0.0015058524440973997, -0.03870725259184837, 0.008055455051362514, -0.007080073468387127, -0.01884026825428009, 0.017830662429332733, 0.013321660459041595, -0.004087619483470917, 0.015477767214179039, 0.03429236635565758, -0.039768192917108536, -0.031195102259516716, 0.010078944265842438, 0.009411578066647053, -0.021954644471406937, -0.004126121290028095, -0.047605473548173904, 0.032666731625795364, -0.0037860211450606585, -0.058351781219244, 0.04979580268263817, 0.00975381676107645, -0.05513473600149155, -0.05352621152997017, 0.03448059782385826, -0.02484656497836113, -0.04849529266357422, -0.0020769641268998384, -0.002215998712927103, 0.021800637245178223, -0.0024213423021137714, 0.023785624653100967, 0.01714618317782879, -0.008688597939908504, -0.02678021788597107, 0.03555865213274956, -0.0038822758942842484, 0.04736590385437012, -0.04818727821111679, -0.01047251932322979, 0.043806616216897964, 0.0709119588136673, -0.007691825740039349, 0.018121564760804176, -0.01714618317782879, 0.043875064700841904, -0.04959046095609665, 0.03427525609731674, -0.007751717697829008, 0.026591984555125237, 0.016590045765042305, -0.0442173033952713, 0.029774809256196022, -0.007965616881847382, -0.021458396688103676, 0.0709119588136673, -0.05458715185523033, 0.019387850537896156, 0.015434987843036652, -0.005390267353504896, -0.06612060964107513, -0.046168066561222076, -0.0006604146910831332, -0.08665496110916138, -0.009582697413861752, 0.02038034424185753, 0.04035000130534172, -0.012123823165893555, 0.03285496309399605, 0.027806933969259262, -0.04801616072654724, 0.005706838797777891, 0.055511198937892914, -0.019730089232325554, 0.04411463066935539, 0.004226653836667538, -0.02530858851969242, 0.04219809174537659, 0.009813709184527397, 0.056743256747722626, 0.03764631226658821, -0.04298524186015129, -0.023272264748811722, 0.03295763581991196, 0.00943724624812603, 0.011884256266057491, 0.06410139799118042, -0.06369071453809738, -0.01807023026049137, 0.013501335866749287, 0.006913231685757637, -0.021920420229434967, 0.02063702419400215, -0.04202697426080704, -0.019764313474297523, -0.02850852534174919, -0.03227315470576286, -0.06885852664709091, -0.08049465715885162, -0.06372493505477905, 0.03525063768029213, 0.002611712785437703, 0.012243607081472874, -0.05646946653723717, -0.04917977377772331, 0.07262315601110458, -0.03075019083917141, 0.059070486575365067, -0.002215998712927103, 0.015982570126652718, -0.0008165613398887217, 0.024658333510160446, -0.025462595745921135, -0.020431680604815483, -0.011927035637199879, -0.004949634429067373, 0.03672226518392563, -0.00364698632620275, -0.011850032024085522, 0.00021296368504408747, -0.06362226605415344, -0.028987659141421318, -0.010155947878956795, -0.02731068804860115, 0.014382601715624332, 0.02607862651348114, 0.048769086599349976, -0.005848012398928404, -0.0032448554411530495, 0.03887837380170822, -0.019319402053952217, -0.02351183257997036, 0.007751717697829008, -0.03631157800555229, -0.04182162880897522, -0.013732347637414932, 0.004983858205378056, -0.07310229539871216, -0.07440280169248581, -0.00039785305853001773, 0.0033967241179198027, 0.042608778923749924, 0.03004860132932663, 0.008346358314156532, -0.04524402320384979, 0.056845929473638535, 0.04147939011454582, -0.03395012766122818, 0.04069223999977112, 0.03458327054977417, 0.024162087589502335, -0.0338132306933403, 0.012277831323444843, -0.02941545844078064, 0.044867560267448425, -0.0180360060185194, 0.004530391190201044, 0.08200050890445709, -0.04965890571475029, 0.006143193691968918, 0.0213728379458189, -0.03384745493531227, -0.02407652698457241, -0.02590750716626644, -0.023768512532114983, 0.027464695274829865, 0.002577489009127021, -0.0013604008127003908, -0.06351959705352783, 0.0074437023140490055, 0.060644786804914474, -0.00021229525736998767, -0.04705788940191269, 0.034138359129428864, 0.10328778624534607, -0.012329166755080223, -0.006318591069430113, -0.007858667522668839, 0.02144128642976284, -0.002513319021090865, -0.03374478593468666, -0.0316057913005352, 0.025069020688533783, -0.04558626189827919, -0.0430879145860672, -0.058077991008758545, -0.03894681856036186, 0.05506628751754761, -0.03518218919634819, -0.009308906272053719, 0.021903308108448982, -0.00508652999997139, -0.0057196724228560925, 0.03018549643456936, 0.012423282489180565, -0.0001193826537928544, 0.032991860061883926, -0.0657099261879921, 0.011636132374405861, -0.017052067443728447, 0.08090534806251526, 0.010155947878956795, -0.006660830229520798, 0.043875064700841904, -0.018480917438864708, -0.031862467527389526, -0.07631933689117432, -0.05359465628862381, -0.03290629759430885, 0.03047640062868595, 0.020431680604815483, -0.03184535726904869, -0.02077391929924488, 0.016333365812897682, 0.08802392333745956, -0.05102786421775818, -0.011379453353583813, 0.014040363021194935, 0.01072064321488142, -0.004859796725213528, 0.007216969039291143, 0.030373727902770042, -0.010309956036508083, 0.008282188326120377, 0.007430868688970804, 0.02084236778318882, 0.007512150332331657, 0.006930343806743622, 0.013877799734473228, 0.02650642581284046, 0.02801227755844593, -0.012602957896888256, -0.02270757034420967, -0.05068562552332878, 0.016615713015198708, -0.020500127226114273, -0.021424174308776855, 0.044799111783504486, 0.038399238139390945, 0.07686692476272583, 0.016145134344697, 0.042369212955236435, -0.016187913715839386, 0.02534281276166439, 0.03798855096101761, -0.016521597281098366, 0.03648269921541214, -0.06393028050661087, 0.013929135166108608, -0.07885190844535828, -0.015357984229922295, -0.029603689908981323, 0.011430788785219193, -0.05759885534644127, -0.00647687679156661, 0.02003810554742813, -0.001100512919947505, -0.002547543030232191, -0.02938123419880867, -0.021167494356632233, -0.0348912850022316, 0.10390382260084152, -0.05821488797664642, 0.009711037389934063, -0.06933765858411789, -0.06416984647512436, 0.03205069899559021, -0.04325903579592705, 0.03422391787171364, -0.002316531492397189, -0.020551463589072227, 0.038399238139390945, -0.020500127226114273, -0.07946793735027313, 0.0616372786462307, -0.04093180596828461, 0.035729773342609406, 0.012063931673765182, 0.004688676912337542, -0.03915216401219368, 0.10130280256271362, 0.004906854592263699, 0.04312213882803917, -0.05725661665201187, -0.049008652567863464, 0.021167494356632233, -0.0028790871147066355, -0.0001790071401046589, 0.03124643862247467, -0.006455486640334129, -0.0007839416502974927, -0.026865776628255844, 0.020329007878899574, 0.0023186705075204372, 0.010840426199138165, -0.046270739287137985, 0.011730248108506203, 0.020893702283501625, 0.058077991008758545, 0.030390840023756027, 0.0027314964681863785, 0.023922519758343697, 0.026865776628255844, 0.0183782447129488, -0.044901780784130096, -0.08090534806251526, 0.014339822344481945, -0.05232837423682213, -0.00910356268286705, -0.01005327608436346, -0.045141350477933884, -0.042608778923749924, -0.0390152670443058, 0.02594173140823841, -0.043669722974300385, -0.03531908616423607, -0.031331997364759445, -0.008662929758429527, 0.043532826006412506, -0.039665523916482925, 0.009599809534847736, 0.019319402053952217, 0.05099363997578621, -0.021526845172047615, 0.02867964468896389, 0.023357825353741646, 0.02077391929924488, 0.04414885491132736, 0.02801227755844593, 0.015186863951385021, 0.029569465667009354, 0.02234821952879429, -0.046407636255025864, 0.013646787963807583, -0.042540330439805984, -0.0679687038064003, 0.010908874683082104, 0.028320293873548508, -0.018361132591962814, -0.012500287033617496, 0.03514796495437622, 0.012996533885598183, -0.0316057913005352, 0.021886195987462997, 0.05616145208477974, -0.002656631637364626, -0.004615951329469681, -0.030236832797527313, -0.0026395197492092848, -0.0003350201004650444, -0.05972073972225189, -0.051472775638103485, 0.03887837380170822, 0.0008973084040917456, -0.027190903201699257, -0.06447786092758179, 0.010635082609951496, -0.05133587867021561, 0.1040407121181488, -0.042334988713264465, 0.019199619069695473, -0.007084351498633623, -0.002481234259903431, 0.0037026002537459135, 0.01570877991616726, 0.014545165933668613, 0.013407220132648945, -0.04558626189827919, -0.018532251939177513, 0.0062629771418869495, -0.0020288366358727217, -0.05373155325651169, 0.02108193375170231, -0.03432659059762955, 0.04558626189827919, -0.015999682247638702, -0.028097838163375854, 0.05335509032011032, 0.026129962876439095, -0.027054008096456528, 0.011328116990625858, -0.003578538540750742, 0.008688597939908504, -0.04849529266357422, -0.020226337015628815, -0.0698852464556694, -0.03504529222846031, -0.060850128531455994, -0.038501910865306854, 0.07761985063552856, 0.052978627383708954, -0.0549636147916317, -0.009805153124034405, -0.04277990013360977, -0.048769086599349976, 0.030664632096886635, 0.013783684000372887, 0.05380000174045563, -0.009060782380402088, -0.0015283118700608611, -0.029004771262407303, -0.024059414863586426, 0.005929294042289257, -0.06297200918197632, 0.01747986674308777, 0.0234091617166996, -0.004141094163060188, -0.007948505692183971, -0.008059732615947723, 0.04435420036315918, -0.018190013244748116, 0.00007199055107776076, 0.008752766996622086, -0.03222182020545006, 0.0037496581207960844, -0.04729745537042618, -0.009206234477460384, -0.058112215250730515, -0.006335703190416098, 0.08822926133871078, -0.05075407400727272, -0.010968766175210476, 0.005681170616298914, 0.049008652567863464, 0.028268957510590553, 0.013732347637414932, 0.05592188611626625, 0.0430879145860672, -0.027652926743030548, 0.013450000435113907, -0.016855280846357346, -0.006207363214343786, -0.03826234117150307, -0.056880153715610504, 0.03141755983233452, -0.01943918690085411, 0.02537703700363636, 0.028268957510590553, 0.03781742975115776, -0.030630407854914665, 0.02414497546851635, -0.033231426030397415, -0.016196470707654953, -0.01911405846476555, 0.08302722871303558, -0.010395515710115433, -0.027533143758773804, -0.051404327154159546, 0.014006138779222965, 0.02084236778318882, 0.010977322235703468, -0.0360720120370388, -0.060644786804914474, 0.009317462332546711, -0.00013442245835904032, 0.05773575231432915, 0.003565704682841897, 0.05215725302696228, -0.043635498732328415, 0.030425064265727997, 0.013099204748868942, -0.020448792725801468, -0.014194370247423649, 0.028320293873548508, -0.02790960669517517, 0.03521641343832016, 0.05130165442824364, -0.007858667522668839, 0.009976272471249104, -0.07234936207532883, -0.012123823165893555, 0.0027208016254007816, -0.0033475272357463837, 0.05780420079827309, 0.006746389903128147, 0.0235802810639143, 0.04322481155395508, -0.02000388130545616, -0.01017305999994278, 0.004316492006182671, 0.06143193691968918, 0.0008780574426054955, -0.06351959705352783, 0.027105344459414482, -0.009351685643196106, -0.025257252156734467, -0.04849529266357422, -0.0300828255712986, -0.0076404898427426815, 0.05859135091304779, -0.013792239129543304, 0.029997264966368675, -0.022793130949139595, 0.029757697135210037 ]
40,034
s3path.old_versions
is_socket
AWS S3 Service doesn't have sockets feature, There for this method will always return False
def is_socket(self) -> Literal[False]: """ AWS S3 Service doesn't have sockets feature, There for this method will always return False """ return False
(self) -> Literal[False]
[ -0.0032416272442787886, -0.05520224571228027, -0.024522867053747177, 0.018469536677002907, 0.020808322355151176, -0.014978553168475628, -0.03480665013194084, 0.05454875901341438, 0.02744635008275509, -0.023284684866666794, 0.03513339161872864, -0.0015584746142849326, -0.004462611395865679, -0.033018164336681366, 0.0016100654611364007, 0.027068017050623894, -0.0011027550790458918, -0.016165142878890038, 0.024815214797854424, -0.049871187657117844, -0.05853845551609993, 0.055752549320459366, 0.05251951888203621, -0.04784194752573967, 0.027635516598820686, 0.08708541095256805, 0.0025472999550402164, 0.016973400488495827, 0.012433403171598911, 0.008564086630940437, -0.0763545110821724, -0.020928701385855675, 0.049871187657117844, 0.03503020852804184, 0.06005178764462471, 0.029475592076778412, 0.016302719712257385, 0.010404161177575588, -0.041547857224941254, -0.055890124291181564, -0.04804830998182297, -0.002775159664452076, -0.027583925053477287, -0.020395595580339432, 0.024522867053747177, 0.03941543400287628, -0.021822944283485413, 0.09300116449594498, 0.0055030276998877525, -0.03707664832472801, 0.027050819247961044, 0.07360299676656723, 0.026139380410313606, 0.012846129946410656, -0.0377645269036293, -0.013078289106488228, 0.04127270728349686, 0.0683407261967659, -0.07050754129886627, 0.05262270197272301, -0.007523670326918364, 0.034497104585170746, 0.03958740457892418, -0.05950148403644562, -0.016122151166200638, -0.04127270728349686, -0.055890124291181564, -0.034583088010549545, -0.010851282626390457, 0.05788497254252434, 0.010928669013082981, 0.002555898390710354, -0.03329331800341606, 0.03972497954964638, -0.015589045360684395, -0.06273451447486877, -0.010644919238984585, 0.055064670741558075, -0.02598460763692856, 0.0006373623618856072, -0.006504750344902277, -0.025554684922099113, 0.0071066441014409065, 0.007291511632502079, 0.02423051744699478, -0.012734349817037582, 0.0008748954278416932, 0.019965671002864838, -0.06294088065624237, 0.046741340309381485, -0.030507409945130348, 0.07057632505893707, -0.023026730865240097, -0.0035296762362122536, 0.03652634471654892, -0.010017230175435543, 0.0022764478344470263, -0.0688910260796547, 0.039209071546792984, -0.06273451447486877, -0.029355213046073914, 0.048254672437906265, -0.009785071015357971, -0.04113513231277466, 0.039759375154972076, -0.017626885324716568, -0.015821203589439392, -0.028667334467172623, -0.025417108088731766, -0.03219271078705788, 0.09286358952522278, -0.006083425134420395, 0.0023753303103148937, 0.04000013321638107, 0.009922646917402744, -0.04852982610464096, 0.024884002283215523, -0.03425634652376175, -0.05179724842309952, -0.014153098687529564, -0.005851265974342823, 0.012476394884288311, 0.015683628618717194, -0.0455719456076622, 0.040688011795282364, 0.03417036309838295, 0.02739475853741169, -0.004069230984896421, 0.004303539637476206, -0.00010351764649385586, -0.006122118327766657, 0.002878341358155012, -0.005296663846820593, 0.027687108144164085, -0.019277794286608696, -0.00017210395890288055, 0.011367191560566425, 0.023095518350601196, -0.015520257875323296, 0.005589012522250414, 0.016457492485642433, 0.027962258085608482, -0.014419651590287685, -0.000022067193640396, -0.0020442886743694544, 0.053516943007707596, -0.03415316343307495, -0.05472072958946228, -0.00440242188051343, -0.04158225283026695, 0.0453311912715435, -0.0025838434230536222, -0.0030395628418773413, 0.02046438306570053, -0.061186786741018295, 0.04051604121923447, -0.009114389307796955, -0.06951011717319489, -0.014531431719660759, -0.03638876974582672, -0.05086861178278923, 0.0018089053919538856, -0.03475505858659744, -0.04037846624851227, -0.016896015033125877, -0.036939073354005814, -0.026276957243680954, -0.012519387528300285, 0.020051656290888786, 0.04739482328295708, -0.03704225271940231, 0.07023239135742188, -0.0025666465517133474, 0.02426491305232048, 0.09754116088151932, 0.08515935391187668, -0.00453569833189249, 0.03126407414674759, -0.0454687662422657, -0.05540860816836357, 0.047635581344366074, -0.038452405482530594, 0.0014628164935857058, 0.015735220164060593, 0.00438092602416873, 0.05145330727100372, -0.0028181520756334066, 0.001670254860073328, 0.04921770468354225, 0.04110073670744896, -0.005864163860678673, 0.0377645269036293, 0.0023172905202955008, 0.006990564521402121, 0.04423058405518532, -0.06307845562696457, 0.04423058405518532, 0.033155739307403564, -0.0050473082810640335, 0.07291511446237564, -0.004226153250783682, 0.018074005842208862, -0.04089437425136566, 0.0005814722389914095, 0.002060410799458623, -0.014806583523750305, -0.016233932226896286, -0.0066466256976127625, -0.06228739395737648, 0.03026665188372135, -0.04478088766336441, -0.03583846613764763, -0.018503930419683456, 0.07112663239240646, 0.055786941200494766, 0.0531730055809021, -0.012459198012948036, 0.01819438487291336, -0.02646612375974655, -0.0055804140865802765, 0.10552055388689041, -0.017102377489209175, 0.01737752929329872, -0.008370621129870415, 0.015296696685254574, 0.033052559942007065, 0.011650941334664822, -0.024660442024469376, -0.013585599139332771, -0.020756732672452927, 0.009475525468587875, 0.038486797362565994, 0.05165966972708702, 0.07167693227529526, 0.04877058044075966, -0.011281206272542477, 0.040653616189956665, 0.03707664832472801, 0.020258020609617233, -0.04956164211034775, -0.031642407178878784, -0.022390443831682205, 0.006956170778721571, 0.008061075583100319, -0.03475505858659744, -0.01893385499715805, 0.013602796010673046, 0.08598480373620987, -0.007747231051325798, 0.0018465237226337194, 0.02574385143816471, 0.008263139985501766, -0.07958753407001495, -0.06576117873191833, -0.00342864403501153, -0.0682375431060791, -0.0034221953246742487, -0.016285521909594536, 0.003927356097847223, 0.02058476209640503, -0.06730890274047852, 0.009320752695202827, 0.018641505390405655, 0.04158225283026695, -0.030369833111763, -0.015012946911156178, -0.008899427019059658, 0.020275216549634933, -0.03031824342906475, 0.08282056450843811, 0.04629421979188919, -0.029441198334097862, 0.0025064570363610983, -0.04024088755249977, -0.009965638630092144, -0.09265722334384918, -0.00907139666378498, 0.005253671668469906, -0.005932951811701059, -0.02804824337363243, 0.03865876793861389, 0.0380396768450737, 0.018761884421110153, 0.009991434402763844, -0.0458127036690712, -0.032364681363105774, -0.001028593280352652, 0.01481518242508173, -0.01680143177509308, -0.03296657279133797, -0.07033557444810867, 0.029114454984664917, 0.00804817769676447, -0.021461807191371918, 0.01671544648706913, 0.04003452509641647, -0.01737752929329872, -0.006599334068596363, 0.075804203748703, -0.020945899188518524, -0.03886513039469719, 0.04161664471030235, -0.016509082168340683, 0.03876195102930069, 0.042098160833120346, 0.006263993214815855, 0.009355146437883377, -0.006208103150129318, -0.06417905539274216, 0.046019069850444794, -0.008069674484431744, 0.005339656490832567, -0.017351733520627022, -0.017712870612740517, 0.05991421267390251, 0.09602782875299454, -0.011642342433333397, 0.02417892776429653, -0.0265177134424448, 0.07250238955020905, -0.05530542880296707, -0.006775602698326111, -0.010197797790169716, -0.007760128937661648, 0.005339656490832567, -0.027910668402910233, 0.01669824868440628, -0.02273438312113285, -0.022270064800977707, 0.05833209306001663, -0.04478088766336441, 0.023800594732165337, 0.006147913634777069, -0.010146207176148891, -0.018005218356847763, -0.038418009877204895, -0.02134142816066742, -0.029252031818032265, -0.0020260170567780733, -0.008933821693062782, -0.018022416159510612, -0.013035296462476254, 0.04092876613140106, 0.033121347427368164, -0.03257104381918907, -0.008379219099879265, -0.010369767434895039, 0.0009275610791519284, 0.041547857224941254, -0.01289772056043148, -0.01812559738755226, 0.0378677099943161, -0.0025601976085454226, 0.09974237531423569, -0.005528823006898165, 0.011496168561279774, -0.00907139666378498, 0.025485895574092865, 0.044436946511268616, 0.01557184848934412, 0.045159220695495605, -0.04928649216890335, 0.017626885324716568, 0.0038048275746405125, -0.0041681136935949326, 0.03126407414674759, 0.05922633409500122, -0.017317339777946472, -0.01591578684747219, -0.02514195814728737, -0.04849543049931526, -0.05805693939328194, -0.0606364868581295, -0.059707850217819214, -0.018452338874340057, -0.00796649232506752, -0.02880490943789482, -0.039965737611055374, -0.029200440272688866, 0.019982868805527687, -0.0020260170567780733, 0.03903710097074509, 0.02046438306570053, -0.015700826421380043, 0.018796278163790703, 0.025967411696910858, -0.04398982599377632, -0.017678476870059967, -0.007863310165703297, 0.007059352472424507, 0.006732610519975424, 0.009750677272677422, -0.013877947814762592, -0.025434305891394615, -0.07057632505893707, -0.036801498383283615, -0.02421332150697708, 0.020361201837658882, 0.008297533728182316, 0.017351733520627022, 0.006586436182260513, 0.020756732672452927, 0.009303555823862553, 0.016302719712257385, -0.037558164447546005, 0.025967411696910858, 0.006917477585375309, -0.010515941306948662, -0.010885676369071007, -0.005902857054024935, 0.0025236541405320168, -0.07828056812286377, -0.10008631646633148, -0.02113506570458412, 0.012390410527586937, 0.04722285643219948, 0.03243346884846687, 0.005425641313195229, 0.014909765683114529, 0.059811029583215714, 0.033052559942007065, -0.03499581664800644, 0.05196921527385712, 0.06239057332277298, -0.012674160301685333, -0.038383617997169495, -0.00871026050299406, -0.029406802728772163, 0.04952724650502205, -0.014883969910442829, 0.0009684038814157248, 0.038349222391843796, -0.018761884421110153, -0.010103214532136917, 0.03351687639951706, -0.0019626033026725054, -0.026019001379609108, -0.009208972565829754, -0.012313024140894413, 0.05028391629457474, 0.009346548467874527, -0.005472932942211628, -0.07504753768444061, 0.028426576405763626, 0.0453311912715435, -0.0013736073160544038, -0.01889945939183235, 0.03114369697868824, 0.06245936453342438, 0.0029449795838445425, -0.017695672810077667, -0.02417892776429653, -0.016165142878890038, -0.024901200085878372, -0.03257104381918907, -0.03277740627527237, 0.03556331619620323, -0.016079159453511238, -0.025537487119436264, -0.0682375431060791, -0.02975074201822281, 0.026001805439591408, 0.008624276146292686, -0.007368898019194603, -0.008263139985501766, -0.007863310165703297, -0.0025924418587237597, -0.015090333297848701, 0.01981090009212494, 0.007179731503129005, 0.060326941311359406, -0.02053317241370678, -0.007476378697901964, -0.05148770287632942, 0.05785057693719864, -0.007691340986639261, 0.0011640193406492472, 0.06548602879047394, -0.009647495113313198, -0.007691340986639261, -0.09423934668302536, -0.05826330557465553, -0.015296696685254574, 0.007970791310071945, 0.008813442662358284, -0.05778178945183754, -0.025640668347477913, -0.028289001435041428, 0.10359449684619904, -0.01826317235827446, 0.006891682278364897, 0.028306197375059128, -0.016577869653701782, -0.027154002338647842, 0.03334490954875946, 0.010507343336939812, -0.037695739418268204, -0.0030223659705370665, -0.01760968752205372, 0.005171986296772957, -0.029905514791607857, 0.007128140423446894, -0.003230879083275795, 0.012037873268127441, 0.06510769575834274, -0.04863300547003746, -0.02197771705687046, -0.04175422340631485, 0.026087790727615356, -0.023078322410583496, -0.014832379296422005, 0.06321603059768677, 0.008959616534411907, 0.058779213577508926, 0.025554684922099113, 0.009372344240546227, -0.015614841133356094, 0.03549452871084213, 0.012424804270267487, -0.036835890263319016, 0.07408450543880463, -0.055167850106954575, 0.029303621500730515, -0.028374986723065376, -0.014626015909016132, -0.05258830636739731, 0.022493625059723854, -0.038314830511808395, -0.020980292931199074, 0.026311350986361504, 0.006199504714459181, 0.02729157730937004, -0.017351733520627022, -0.00831473059952259, -0.01901983842253685, 0.07449723780155182, -0.03886513039469719, 0.0034952822607010603, -0.09293238073587418, -0.03618240728974342, 0.016870219260454178, -0.015081735327839851, 0.007725734729319811, -0.022614004090428352, -0.07855571806430817, 0.026810063049197197, -0.017850445583462715, -0.006556341424584389, 0.029475592076778412, -0.050559066236019135, 0.030868545174598694, 0.035288162529468536, 0.0303010456264019, -0.021564988419413567, 0.10029267519712448, 0.003256674623116851, 0.04426497966051102, -0.06373193860054016, -0.055958911776542664, 0.014952757395803928, -0.024763623252511024, 0.00007429624383803457, -0.006216701585799456, -0.0013822057517245412, -0.030644984915852547, -0.0008001960813999176, 0.01478938665241003, -0.004445414524525404, -0.005902857054024935, -0.02206370048224926, 0.020997488871216774, 0.0002669559617061168, 0.05379209294915199, 0.012063668109476566, 0.025313926860690117, 0.02354264073073864, 0.005554618313908577, 0.04037846624851227, -0.038314830511808395, -0.012966508977115154, 0.0132588567212224, -0.03045581839978695, -0.04350831359624863, -0.03738619387149811, -0.011246812529861927, -0.02883930318057537, -0.039896950125694275, 0.0034608885180205107, -0.029802333563566208, -0.01685302145779133, -0.017850445583462715, -0.005184883717447519, 0.008693063631653786, -0.06362875550985336, 0.01134999468922615, 0.042166948318481445, 0.042923614382743835, -0.007463481277227402, 0.029303621500730515, 0.020223626866936684, 0.03188316524028778, 0.07449723780155182, 0.023989761248230934, -0.02500438131392002, 0.0458814911544323, 0.008847836405038834, -0.08852995932102203, 0.014772189781069756, 0.0047549596056342125, -0.02674127370119095, -0.014084311202168465, 0.0531730055809021, -0.03429074212908745, -0.038383617997169495, 0.02046438306570053, 0.03325892239809036, -0.05544300377368927, 0.06940693408250809, 0.04474649205803871, -0.004638880491256714, 0.044402554631233215, -0.024832412600517273, 0.016388703137636185, -0.02202930673956871, -0.0682375431060791, -0.018469536677002907, 0.01833195984363556, -0.03714543581008911, -0.059707850217819214, -0.021702565252780914, 0.031556423753499985, -0.026225365698337555, 0.13193508982658386, -0.055855728685855865, 0.011969084851443768, -0.011126433499157429, -0.010438555851578712, 0.02433370053768158, 0.009630298241972923, 0.03965619206428528, 0.0531730055809021, -0.014694803394377232, -0.02061915583908558, -0.03186596930027008, -0.007682742550969124, 0.0066552241332829, 0.04883936792612076, -0.035288162529468536, 0.023301882669329643, -0.03972497954964638, -0.01681002974510193, 0.004054183606058359, 0.034703467041254044, -0.0013994027394801378, 0.016251128166913986, -0.021771352738142014, -0.009260563179850578, -0.015391279943287373, 0.020154839381575584, -0.08914904296398163, 0.0066509246826171875, -0.052863460034132004, 0.0029772238340228796, 0.08598480373620987, 0.014909765683114529, -0.0033706044778227806, 0.0023430860601365566, -0.03704225271940231, -0.01591578684747219, 0.02894248627126217, 0.0534825474023819, 0.05685315281152725, -0.016904613003134727, 0.0077171362936496735, 0.0020292415283620358, -0.0007523670792579651, -0.0005403607501648366, -0.05950148403644562, -0.02742915228009224, -0.001079109264537692, 0.006044731941074133, -0.0047549596056342125, -0.04178861528635025, 0.031539227813482285, -0.008448007516562939, -0.01676703803241253, 0.049768004566431046, -0.011659539304673672, 0.009982835501432419, -0.06693056970834732, 0.002480661729350686, 0.0032867691479623318, -0.008508196100592613, 0.09389540553092957, -0.015116129070520401, -0.03549452871084213, -0.01588999293744564, 0.024591654539108276, 0.018469536677002907, 0.00042213164852000773, 0.06548602879047394, 0.033069755882024765, -0.024815214797854424, 0.011573554947972298, -0.019535748288035393, 0.027068017050623894, -0.030232258141040802, -0.05496148765087128, 0.08632874488830566, 0.009303555823862553, -0.030593393370509148, 0.004492706153541803, 0.019931277260184288, -0.051384519785642624, -0.01982809603214264, 0.02357703447341919, -0.005640603136271238, -0.009578707627952099, 0.04392103850841522, 0.027841880917549133, -0.05623406171798706, -0.011040449142456055, -0.012794539332389832, -0.01760968752205372, 0.015391279943287373, -0.04092876613140106, -0.07133299857378006, 0.020722338929772377, -0.026311350986361504, 0.0686846598982811, 0.04312997683882713, 0.020825520157814026, -0.04766997694969177, 0.04835785552859306, -0.00021899255807511508, -0.017033590003848076, 0.020808322355151176, 0.03435952961444855, -0.019982868805527687, 0.015047340653836727, 0.02727437950670719, -0.03167680278420448, 0.015382681973278522, -0.04354270547628403, 0.026448925957083702, -0.06239057332277298, -0.00436802813783288, 0.052760276943445206, 0.010257987305521965, 0.020051656290888786, 0.05073103681206703, -0.0006051180534996092, -0.0012156101875007153, -0.030816953629255295, 0.021152261644601822, -0.029389606788754463, -0.09733480215072632, 0.02431650273501873, -0.008693063631653786, 0.000629838730674237, -0.052106793969869614, 0.06724011898040771, 0.031556423753499985, 0.03717983141541481, -0.037489376962184906, 0.017282946035265923, -0.025296729058027267, 0.035460133105516434 ]
40,035
s3path.old_versions
is_symlink
AWS S3 Service doesn't have symlink feature, There for this method will always return False
def is_symlink(self) -> Literal[False]: """ AWS S3 Service doesn't have symlink feature, There for this method will always return False """ return False
(self) -> Literal[False]
[ 0.0016004529315978289, -0.039143502712249756, 0.001456543104723096, 0.013169940561056137, 0.02133355848491192, -0.01786227710545063, -0.011940164491534233, 0.05302863195538521, 0.02855522185564041, 0.031572967767715454, 0.022031303495168686, -0.010169635526835918, 0.07793813943862915, -0.01483580656349659, -0.044446367770433426, -0.002505341311916709, 0.0019122578669339418, 0.026148000732064247, 0.022048747166991234, 0.02006017416715622, -0.027962137013673782, 0.04772577062249184, 0.043364863842725754, -0.04936547204852104, -0.005198201630264521, 0.08324100077152252, 0.023147696629166603, 0.014443324878811836, -0.00867820531129837, 0.026863189414143562, -0.03251492604613304, -0.027264392003417015, 0.056761570274829865, 0.04036455973982811, 0.06876278668642044, 0.0004074722819495946, 0.010378959588706493, 0.04643494263291359, -0.08568310737609863, -0.03886440768837929, -0.023391906172037125, 0.06045961752533913, -0.0240024346858263, -0.033997632563114166, 0.03816666081547737, 0.012559412978589535, -0.0809384435415268, 0.016048138961195946, -0.043957944959402084, -0.06077360361814499, 0.04542320966720581, 0.03725959360599518, 0.027159729972481728, -0.011957608163356781, -0.02351401187479496, -0.019536864012479782, 0.04472546651959419, 0.051633141934871674, -0.06077360361814499, 0.05888969078660011, 0.03572455421090126, 0.006794293411076069, 0.031642742455005646, -0.04406260699033737, 0.033160340040922165, -0.04713268578052521, -0.03209627792239189, -0.04793509468436241, -0.011303471401333809, 0.05679645761847496, -0.05470322072505951, 0.012803623452782631, -0.018751900643110275, -0.007430986035615206, -0.013667083345353603, -0.06018052250146866, 0.04947013407945633, -0.0032052667811512947, 0.00011679055023705587, -0.02738649770617485, -0.0640878975391388, -0.07856610417366028, -0.0017072951886802912, -0.01718197576701641, 0.003907373175024986, 0.01997295580804348, 0.06440187990665436, -0.033596429973840714, -0.025938676670193672, 0.04123673960566521, -0.036526959389448166, 0.009907981380820274, -0.012629187665879726, -0.04510922357439995, 0.0033055676613003016, 0.007605422288179398, -0.0021303032990545034, -0.07221662253141403, 0.04531854763627052, -0.039562150835990906, 0.03520124405622482, 0.000986655242741108, 0.03150319308042526, 0.025432812049984932, 0.0463651679456234, -0.022205740213394165, -0.05990142375230789, -0.022973259910941124, -0.019030999392271042, -0.04050410911440849, -0.005102261435240507, -0.004036019556224346, 0.017147088423371315, -0.015812650322914124, 0.01769656129181385, -0.028450559824705124, 0.05267976224422455, -0.06045961752533913, -0.032410264015197754, -0.022746492177248, 0.029270410537719727, 0.008573544211685658, -0.002620905404910445, -0.07068158686161041, 0.0817757323384285, 0.013832798227667809, 0.021385889500379562, 0.022641830146312714, -0.011879111640155315, 0.021438220515847206, 0.006009330507367849, 0.03631763532757759, -0.054493896663188934, 0.035445455461740494, -0.03270680457353592, -0.0007031963323242962, 0.026339881122112274, 0.041411176323890686, 0.0044372230768203735, 0.022118521854281425, 0.012690240517258644, -0.007256549783051014, -0.024665292352437973, 0.00020605286408681422, -0.04305087774991989, 0.03335221856832504, -0.02476995438337326, 0.021856866776943207, 0.01920543611049652, -0.0030569960363209248, 0.08610175549983978, -0.027805145829916, 0.010527229867875576, 0.05037720128893852, -0.05909901484847069, 0.03488725796341896, -0.044655691832304, -0.03607342392206192, -0.01238497719168663, -0.0002897277881857008, 0.010972042568027973, -0.029636725783348083, -0.04570230841636658, -0.021455664187669754, -0.027944693341851234, -0.03303823247551918, 0.016492951661348343, -0.018734456971287727, 0.0020256415009498596, 0.042841553688049316, 0.0124373072758317, 0.04776065796613693, 0.022223183885216713, 0.044446367770433426, 0.09112551808357239, 0.08198505640029907, 0.03596876189112663, 0.029723944142460823, -0.0022698522079735994, -0.07298414409160614, -0.003022108692675829, -0.030456576496362686, 0.01709475740790367, 0.019327541813254356, 0.004539704415947199, 0.05623826012015343, -0.044376593083143234, 0.006458503659814596, 0.03910861536860466, 0.05934322625398636, -0.03401507809758186, 0.011443020775914192, 0.002812785329297185, 0.01377174537628889, -0.01762678660452366, -0.08610175549983978, 0.006502112839370966, 0.02133355848491192, -0.04919103533029556, 0.07228639721870422, -0.012786180712282658, 0.006541361100971699, -0.03548034280538559, 0.021944085136055946, 0.05679645761847496, -0.019990399479866028, -0.010178357362747192, 0.016301071271300316, -0.04095764085650444, 0.029444845393300056, -0.031154321506619453, -0.01635340228676796, 0.004526621662080288, 0.05766863748431206, 0.003861583536490798, 0.04423704370856285, -0.021351002156734467, 0.05281930789351463, -0.05030742660164833, 0.026095669716596603, 0.07256549596786499, -0.029479732736945152, 0.02520604431629181, 0.01677205041050911, 0.03579432889819145, -0.004871133714914322, 0.07444941252470016, 0.0020212805829942226, 0.004530982580035925, -0.04476035386323929, -0.023112809285521507, -0.0010493433801457286, 0.02789236418902874, 0.036457184702157974, 0.08456671237945557, -0.04291132837533951, 0.028084242716431618, 0.03471282124519348, -0.0021782731637358665, 0.002978499745950103, -0.053970590233802795, 0.0015110543463379145, 0.026828302070498466, 0.05107494816184044, -0.015533551573753357, 0.001785791595466435, 0.009114296175539494, 0.050516750663518906, -0.04496967792510986, -0.06771616637706757, 0.020007843151688576, 0.017042426392436028, -0.042597342282533646, -0.03092755563557148, 0.003959703724831343, -0.03507914021611214, 0.007701362483203411, -0.019257767125964165, 0.009367228485643864, 0.03310800716280937, -0.03033447079360485, -0.051179610192775726, 0.02081025019288063, -0.03066590055823326, -0.012855954468250275, -0.03698049485683441, 0.018594909459352493, 0.03722470626235008, -0.03438139334321022, 0.07556580007076263, 0.12182630598545074, -0.023391906172037125, -0.05065630003809929, -0.004997599869966507, -0.003299026284366846, -0.038480646908283234, 0.006100909318774939, -0.005342111457139254, 0.00926256738603115, -0.029863493517041206, 0.01669355295598507, 0.01053595170378685, 0.018089042976498604, 0.0046138400211930275, -0.011451742611825466, -0.03980636224150658, -0.013928738422691822, 0.02335701882839203, -0.013300767168402672, 0.0008062227279879153, 0.014739866368472576, 0.042108919471502304, 0.00670271459966898, -0.008399107493460178, 0.07015828043222427, 0.06960008293390274, -0.029950711876153946, -0.010056252591311932, 0.024735067039728165, -0.02358378656208515, -0.06593691557645798, 0.015114904381334782, 0.019240323454141617, 0.02747371606528759, -0.06789060682058334, 0.005695344880223274, 0.029950711876153946, -0.011024373583495617, 0.02114167809486389, 0.040225010365247726, 0.006327676586806774, 0.01268151868134737, -0.033596429973840714, 0.030526351183652878, 0.016327237710356712, 0.019153105095028877, -0.0034320340491831303, 0.01735641062259674, -0.019920624792575836, 0.05568006634712219, -0.06865812838077545, 0.04036455973982811, -0.009009634144604206, -0.008072039112448692, -0.01634468138217926, -0.05501720681786537, 0.02771792747080326, -0.004022936802357435, -0.024804841727018356, 0.05571495369076729, 0.014469490386545658, 0.012803623452782631, 0.02443852461874485, 0.01229775883257389, -0.09852162003517151, -0.022973259910941124, -0.019344985485076904, -0.06876278668642044, -0.0010787794599309564, 0.0006279706722125411, 0.012166931293904781, -0.0044742911122739315, 0.02958439476788044, -0.003342635463923216, -0.025014163926243782, 0.020374158397316933, -0.003988049924373627, 0.021211452782154083, 0.01651911623775959, -0.013370541855692863, 0.002764815231785178, 0.08582265675067902, -0.024473411962389946, 0.047900207340717316, 0.000060712005506502464, -0.010684222914278507, -0.03195672854781151, -0.01125114131718874, 0.027595821768045425, 0.001552482950501144, 0.06558804959058762, -0.020670700818300247, -0.027421385049819946, -0.002974138827994466, 0.04894682392477989, 0.0022327846381813288, 0.012376255355775356, 0.0024987999349832535, 0.0006437789415940642, -0.0328812412917614, -0.026339881122112274, -0.04737689718604088, -0.014356106519699097, -0.09545154124498367, 0.03952726349234581, -0.02006017416715622, 0.028886649757623672, -0.05714533105492592, -0.011617457494139671, 0.04493479058146477, -0.0033622595947235823, 0.024804841727018356, 0.0010945877293124795, 0.03000304289162159, 0.008665123023092747, 0.034834928810596466, -0.004836246371269226, -0.004731584340333939, 0.019379872828722, 0.00817234069108963, 0.022432507947087288, -0.01395490299910307, 0.00930617656558752, -0.026479428634047508, -0.0265492033213377, -0.06007586047053337, 0.0044415839947760105, 0.014600317925214767, -0.012018661014735699, 0.021525438874959946, 0.04981900379061699, 0.035271018743515015, -0.031171765178442, 0.025921232998371124, -0.03820154815912247, -0.0026470706798136234, 0.007997903972864151, 0.038375984877347946, -0.03677117079496384, 0.0025336870457977057, -0.01904844306409359, -0.044795241206884384, -0.08777634054422379, -0.018594909459352493, 0.02225807122886181, 0.0514238178730011, 0.030229808762669563, -0.007932490669190884, -0.03677117079496384, 0.036038536578416824, 0.03033447079360485, -0.05526141822338104, 0.02426408790051937, 0.061471350491046906, 0.019379872828722, -0.03549778461456299, 0.022554611787199974, 0.008032791316509247, 0.026339881122112274, 0.010204522870481014, 0.050516750663518906, 0.009000912308692932, 0.03750380128622055, -0.024979276582598686, 0.006061661057174206, -0.01583881489932537, 0.00906196516007185, -0.0362478606402874, -0.03254981338977814, 0.028101686388254166, 0.023374462500214577, -0.02435130625963211, -0.06426233053207397, 0.01854257844388485, 0.020269496366381645, -0.001742182532325387, -0.009000912308692932, -0.0035388763062655926, 0.08184550702571869, 0.01753084734082222, -0.045981407165527344, 0.03303823247551918, 0.017461072653532028, -0.011190088465809822, -0.08107798546552658, -0.05267976224422455, -0.0032030863221734762, -0.03656184673309326, -0.061052702367305756, -0.010064974427223206, -0.031154321506619453, 0.035689666867256165, 0.006811737082898617, -0.03558500483632088, 0.02234528958797455, -0.028607552871108055, -0.003146394621580839, 0.005926473066210747, -0.018996112048625946, -0.012402420863509178, 0.02916574850678444, -0.047830432653427124, 0.0067419628612697124, 0.035689666867256165, 0.05822683498263359, 0.000032400177587987855, -0.028363341465592384, -0.0015579340979456902, -0.04653960466384888, -0.01618768833577633, -0.08526445925235748, -0.09300943464040756, -0.006009330507367849, 0.012219262309372425, 0.02164754457771778, -0.03952726349234581, -0.01712092198431492, 0.016301071271300316, 0.06018052250146866, -0.031398531049489975, 0.027927249670028687, 0.031154321506619453, 0.0000836067702039145, -0.009934146888554096, -0.007779858540743589, 0.005451133940368891, -0.01315249688923359, 0.049260810017585754, -0.004940907936543226, -0.002961056074127555, 0.0026034617330878973, -0.004343463573604822, -0.013030391186475754, 0.011259863153100014, 0.038899295032024384, 0.03171251714229584, -0.027526047080755234, -0.0581570602953434, -0.039317939430475235, -0.01964152604341507, -0.027002738788723946, 0.050028327852487564, 0.051214493811130524, 0.08024069666862488, 0.012925729155540466, 0.016492951661348343, -0.007256549783051014, 0.042771779000759125, 0.06799526512622833, -0.01600453071296215, 0.03331733122467995, -0.09482356905937195, -0.005254893098026514, -0.08910205960273743, -0.026915520429611206, -0.04005057364702225, -0.014077008701860905, -0.03767823800444603, -0.009227680042386055, 0.011347080580890179, -0.003966245334595442, -0.006986173335462809, -0.054493896663188934, -0.027177173644304276, -0.029776275157928467, 0.13264136016368866, -0.033177781850099564, 0.03691072016954422, -0.011600013822317123, -0.010457456111907959, 0.019397316500544548, -0.028084242716431618, -0.03329988941550255, 0.01146046444773674, -0.02906108647584915, 0.038306210190057755, -0.019990399479866028, -0.02082769386470318, 0.060564279556274414, -0.023897772654891014, 0.031904399394989014, 0.03774801269173622, 0.027107400819659233, 0.026270106434822083, 0.07577512413263321, 0.020880024880170822, 0.04123673960566521, -0.062413305044174194, -0.012733849696815014, 0.023827997967600822, -0.04500456526875496, -0.032148607075214386, -0.011006929911673069, -0.033073119819164276, 0.03757357597351074, 0.005346472375094891, 0.03638741001486778, -0.010937155224382877, 0.04263222962617874, -0.015210844576358795, 0.016414456069469452, 0.011477908119559288, 0.03382319584488869, -0.00842963345348835, 0.011975051835179329, -0.004094892181456089, 0.028119130060076714, -0.019344985485076904, -0.020269496366381645, -0.04186471179127693, -0.010806328617036343, -0.023740779608488083, -0.006441059987992048, 0.018978668376803398, -0.015742875635623932, -0.04483012855052948, -0.029305297881364822, 0.048493288457393646, -0.026060782372951508, -0.034939590841531754, -0.0826130285859108, 0.014373550191521645, -0.014234001748263836, -0.060634054243564606, 0.013972346670925617, -0.01642317697405815, 0.044446367770433426, -0.04674892500042915, 0.029532063752412796, 0.045492984354496, 0.024647848680615425, 0.0033317331690341234, 0.01163490116596222, 0.013466482050716877, 0.006183766759932041, 0.022223183885216713, -0.016231296584010124, -0.039143502712249756, -0.05156336724758148, -0.03066590055823326, -0.02729927934706211, 0.0480048693716526, -0.008093844167888165, -0.057598862797021866, 0.013344376347959042, 0.004544065333902836, -0.0370502695441246, 0.015725431963801384, 0.017679117619991302, 0.0124373072758317, 0.002531506819650531, -0.05529630556702614, 0.009393393993377686, 0.02991582453250885, -0.10312673449516296, -0.019589195027947426, 0.04245779290795326, 0.016702275723218918, -0.0164493415504694, -0.038306210190057755, 0.007697001565247774, -0.01107670459896326, 0.09419559687376022, -0.030526351183652878, 0.05445900931954384, -0.03159041330218315, 0.0035868461709469557, 0.0013060917844995856, 0.05184246599674225, 0.02173476293683052, -0.03302079066634178, -0.03774801269173622, -0.04981900379061699, 0.004587674513459206, -0.014652648940682411, 0.00337970326654613, 0.04113207757472992, -0.05435434728860855, 0.03607342392206192, -0.02571190893650055, -0.029130861163139343, 0.038306210190057755, 0.03525357320904732, 0.0048929378390312195, 0.03966681286692619, 0.005930833984166384, -0.014373550191521645, -0.04570230841636658, -0.0026557925157248974, -0.06708820164203644, 0.01711220107972622, -0.0792638510465622, -0.052296001464128494, 0.05526141822338104, 0.012690240517258644, -0.012637909501791, 0.03549778461456299, -0.03186951205134392, -0.026514315977692604, 0.025415368378162384, -0.005595044232904911, 0.0581221729516983, -0.038306210190057755, -0.030561238527297974, 0.026182888075709343, -0.03488725796341896, 0.01449565589427948, -0.04566742107272148, 0.021525438874959946, -0.02892153710126877, -0.06419255584478378, -0.01377174537628889, -0.027246948331594467, 0.04291132837533951, -0.03600364923477173, 0.004517899826169014, 0.04709779843688011, -0.0013431594707071781, 0.015394003130495548, -0.04266711696982384, -0.03593387454748154, 0.006279706489294767, 0.015141069889068604, 0.05278442054986954, -0.03659673407673836, 0.004367448855191469, -0.0031921842601150274, 0.03270680457353592, 0.002180453622713685, -0.012262871488928795, 0.08414806425571442, 0.04221358150243759, -0.014975355938076973, -0.025083938613533974, -0.009977756068110466, -0.02114167809486389, -0.012925729155540466, -0.08498536050319672, 0.007186775095760822, 0.012271593324840069, -0.02342679351568222, -0.0015066934283822775, 0.02248483896255493, -0.07800790667533875, 0.03563733398914337, -0.07312369346618652, -0.05247043818235397, -0.037957336753606796, 0.04744667187333107, -0.022903485223650932, 0.00685098534449935, -0.04573719576001167, -0.007269632536917925, 0.05547074228525162, -0.00981204118579626, -0.04012034833431244, -0.07605422288179398, 0.011006929911673069, -0.010910989716649055, 0.042771779000759125, 0.013623474165797234, 0.0631808266043663, -0.008242114447057247, 0.059378113597631454, 0.021944085136055946, 0.006009330507367849, 0.00724782794713974, 0.03994591161608696, -0.0034058685414493084, 0.027857476845383644, 0.045876745134592056, -0.010692944750189781, -0.011111591942608356, -0.07221662253141403, 0.04388817027211189, -0.03302079066634178, -0.02164754457771778, 0.05522653087973595, 0.037294480949640274, -0.025746796280145645, 0.035271018743515015, -0.010605726391077042, -0.029776275157928467, -0.022449951618909836, 0.044655691832304, -0.016301071271300316, -0.03663162142038345, 0.024630405008792877, -0.021194009110331535, -0.015394003130495548, -0.034520942717790604, 0.03732936829328537, 0.029113417491316795, 0.024822285398840904, 0.02620033174753189, -0.0023069200105965137, -0.06736729294061661, 0.009053243324160576 ]
40,036
s3path.old_versions
iterdir
When the path points to a Bucket or a key prefix, yield path objects of the directory contents
def iterdir(self) -> Generator[S3Path, None, None]: """ When the path points to a Bucket or a key prefix, yield path objects of the directory contents """ self._absolute_path_validation() for name in self._accessor.listdir(self): yield self._make_child_relpath(name)
(self) -> Generator[s3path.old_versions.S3Path, NoneType, NoneType]
[ -0.029359128326177597, -0.003783946158364415, -0.09589575231075287, -0.004392240196466446, 0.015788806602358818, 0.018445618450641632, 0.013346684165298939, 0.04215119034051895, 0.056607116013765335, 0.014429089613258839, 0.025297870859503746, 0.043331995606422424, 0.011190819554030895, 0.05299313738942146, -0.04429811239242554, 0.02676493301987648, 0.03544206544756889, 0.034171804785728455, -0.006521268747746944, 0.021004032343626022, -0.03996849060058594, 0.05131138116121292, 0.060221098363399506, -0.022184837609529495, -0.017112739384174347, 0.01565462350845337, 0.009365937672555447, 0.013615049421787262, 0.0319354310631752, -0.014196506701409817, -0.023455098271369934, 0.015565168112516403, 0.03692701831459999, 0.0019255186198279262, -0.0006513441330753267, -0.03658708930015564, -0.03576410561800003, -0.01646866276860237, -0.031058773398399353, 0.027247989550232887, 0.058718256652355194, 0.03918128460645676, -0.0035714905243366957, -0.009777430444955826, 0.07220806926488876, 0.02164810709655285, 0.0056714462116360664, -0.028446687385439873, -0.007612619549036026, -0.03136292099952698, 0.025136852636933327, 0.05181232839822769, 0.017595795914530754, -0.06090095639228821, 0.037678442895412445, -0.007527637295424938, 0.02248898521065712, -0.012040642090141773, 0.021683890372514725, 0.06279740482568741, -0.0005635664565488696, -0.039610669016838074, -0.0023414844181388617, -0.0007911175489425659, 0.0006843306473456323, -0.03603246808052063, -0.052062805742025375, -0.07220806926488876, -0.01866031065583229, 0.055891476571559906, -0.05746588483452797, -0.002884923480451107, 0.022632112726569176, 0.013409302569925785, -0.06648294627666473, 0.01607506163418293, -0.0019411733373999596, 0.015010546892881393, 0.044942185282707214, -0.05868247151374817, -0.08966968208551407, -0.030128439888358116, -0.06118721142411232, -0.04097038507461548, 0.024474885314702988, 0.056177735328674316, 0.019250713288784027, -0.06816469877958298, -0.00035893815220333636, 0.07664503902196884, -0.028858179226517677, 0.006436286494135857, 0.011253437958657742, -0.011181874200701714, -0.021952254697680473, 0.018588745966553688, -0.035066355019807816, -0.023419316858053207, 0.00003405230017961003, 0.01391025073826313, 0.00170076300855726, 0.027176426723599434, 0.07829100638628006, 0.021397633478045464, 0.011897513642907143, -0.03921706601977348, -0.059720151126384735, -0.051168255507946014, 0.058109961450099945, 0.014402253553271294, -0.06290474534034729, 0.02853614091873169, 0.03377820551395416, 0.008927607908844948, -0.030915644019842148, -0.0439760722219944, 0.0175242330878973, -0.01121765561401844, 0.0005045820726081729, -0.03492322936654091, 0.05242062360048294, 0.0008744225488044322, 0.010949290357530117, 0.004470513202250004, 0.038000479340553284, -0.02381291799247265, 0.029520146548748016, 0.01487636473029852, -0.058610908687114716, 0.0009286546264775097, 0.011307111009955406, 0.04075569286942482, -0.02359822578728199, -0.02093246765434742, 0.028732942417263985, 0.018892893567681313, 0.05009479448199272, -0.027695264667272568, -0.01610189862549305, 0.0495222806930542, 0.06515901535749435, 0.024403320625424385, 0.030110549181699753, 0.017613686621189117, 0.008686079643666744, 0.014420144259929657, -0.014339635148644447, 0.029341235756874084, 0.01620924472808838, -0.03130924701690674, -0.03275841847062111, 0.03483377397060394, 0.11657774448394775, 0.06569574773311615, -0.02687227912247181, -0.0064049772918224335, -0.04691019654273987, 0.03114822693169117, -0.04114929586648941, 0.00024264666717499495, -0.0008990226197056472, -0.03732062131166458, -0.0037615823093801737, 0.00452642235904932, -0.0028357231058180332, 0.03127346560359001, -0.01649549975991249, 0.015055274590849876, -0.013284065760672092, 0.017676306888461113, 0.03413602337241173, -0.012818899936974049, -0.014894255436956882, -0.02375924587249756, -0.012273225001990795, 0.03637239709496498, -0.013445084914565086, 0.05084621533751488, 0.03925285115838051, -0.030575715005397797, -0.0031331609934568405, -0.02087879553437233, 0.04046943783760071, -0.009992122650146484, -0.027247989550232887, 0.02876872383058071, -0.02177334390580654, 0.01723797619342804, 0.050166357308626175, -0.00269259512424469, -0.09274693578481674, 0.03925285115838051, -0.03907394036650658, 0.006235012784600258, -0.009848994202911854, 0.016513390466570854, 0.013802904635667801, 0.006642032880336046, -0.021522870287299156, 0.07600095868110657, -0.03197121247649193, 0.01671019196510315, 0.010958236642181873, -0.035227373242378235, 0.002146919723600149, 0.03286576271057129, -0.05295735225081444, 0.005912974942475557, -0.017282703891396523, 0.039288632571697235, -0.00855189748108387, -0.009106517769396305, 0.012809954583644867, -0.06498010456562042, -0.009102045558393002, 0.008001748472452164, -0.044834841042757034, -0.02494005113840103, 0.004915551748126745, -0.00013348361244425178, 0.026514459401369095, -0.01998424530029297, -0.018857112154364586, -0.053386736661195755, 0.004920024424791336, -0.04254479333758354, 0.04530000686645508, -0.0044816951267421246, -0.03825095295906067, -0.050559960305690765, -0.0229362603276968, -0.01726481318473816, 0.04125664010643959, 0.008279059082269669, 0.02937701903283596, -0.043618254363536835, 0.020735666155815125, -0.0012915064580738544, -0.014330689795315266, 0.003989692777395248, -0.030504152178764343, -0.01132500171661377, -0.0384298637509346, 0.002808886580169201, -0.06501588970422745, 0.009084153920412064, 0.046122994273900986, 0.030361022800207138, 0.02697962522506714, 0.004504058510065079, 0.00884262565523386, 0.03027156926691532, -0.052277497947216034, 0.0006250667502172291, 0.03699858486652374, -0.05896873027086258, -0.00041708388016559184, -0.010502016171813011, 0.016423936933279037, 0.01454538106918335, -0.0032270888332277536, -0.015475713647902012, -0.0018673728918656707, 0.017810488119721413, -0.007420291192829609, 0.008851571008563042, 0.0446559302508831, -0.03893081098794937, -0.010985072702169418, 0.03703436627984047, 0.07299527525901794, 0.005738537758588791, -0.018839221447706223, 0.018785547465085983, 0.006888034287840128, 0.038179390132427216, -0.05170498415827751, 0.007169817574322224, -0.0843023806810379, 0.0054388632997870445, -0.012040642090141773, 0.009929504245519638, -0.04923602566123009, -0.016772810369729996, -0.015198403038084507, -0.0420796275138855, -0.026389222592115402, 0.022113272920250893, -0.02309727855026722, 0.021021923050284386, 0.03957488760352135, -0.015592005103826523, -0.05803839862346649, -0.06537370383739471, 0.02604929357767105, -0.06269005686044693, -0.020843012258410454, -0.022560548037290573, 0.01416072528809309, -0.004551022779196501, -0.042723704129457474, 0.035227373242378235, 0.027677373960614204, 0.037070147693157196, -0.03953910619020462, 0.02953803725540638, 0.017568960785865784, 0.008610042743384838, -0.01779259741306305, 0.012639990076422691, -0.013427194207906723, -0.02116505056619644, 0.013811849988996983, 0.009482229128479958, 0.013087265193462372, -0.026532350108027458, 0.025584127753973007, 0.04902133345603943, -0.06555261462926865, 0.030915644019842148, -0.07399716973304749, 0.08136826008558273, -0.0219880361109972, -0.0034887446090579033, -0.008963390253484249, 0.019340168684720993, -0.01959064230322838, 0.06651873141527176, 0.005318099167197943, -0.01068987138569355, 0.02914443612098694, -0.03163128346204758, -0.03275841847062111, 0.032901544123888016, 0.011128201149404049, 0.047947876155376434, 0.007169817574322224, -0.008534005843102932, 0.03447595238685608, 0.01855296455323696, 0.05485380068421364, 0.008932081051170826, 0.004754532594233751, 0.02914443612098694, -0.04551469907164574, 0.004928969778120518, 0.054388634860515594, -0.010788272134959698, 0.04368981719017029, -0.02021682821214199, 0.05098934471607208, 0.0507388710975647, 0.03885924816131592, 0.009750593453645706, 0.03447595238685608, 0.039002373814582825, -0.014375416561961174, 0.005188389215618372, -0.03757109493017197, 0.06612513214349747, 0.04873507842421532, -0.030844081193208694, -0.00624843081459403, -0.023455098271369934, 0.010806162841618061, -0.04601564630866051, 0.014232289046049118, -0.02821410447359085, 0.03540628403425217, 0.014115997590124607, -0.026174530386924744, 0.005072097759693861, -0.018204091116786003, -0.07965072244405746, 0.00258077634498477, -0.01185278594493866, 0.015413094311952591, -0.030056877061724663, 0.02776682935655117, 0.06755641102790833, -0.007263745181262493, 0.0306472796946764, 0.06973911076784134, 0.021665997803211212, 0.03257950767874718, -0.04054100066423416, 0.08838152885437012, -0.008310368284583092, -0.011566529981791973, -0.04712488874793053, 0.02164810709655285, -0.02381291799247265, 0.024474885314702988, -0.03674811124801636, -0.03846564516425133, -0.1078469380736351, 0.0744265541434288, -0.04565782845020294, -0.039288632571697235, -0.07514218986034393, 0.04075569286942482, -0.01715746708214283, -0.059004511684179306, 0.029305454343557358, -0.0030459424015134573, -0.07220806926488876, 0.043618254363536835, 0.045729391276836395, -0.005962174851447344, 0.0011942241108044982, -0.012434243224561214, -0.07936446368694305, 0.0334203839302063, 0.03649763762950897, 0.010645143687725067, -0.027570027858018875, 0.0006222712690941989, -0.03020000457763672, 0.03188175708055496, 0.07693129032850266, 0.007062471471726894, -0.10169243067502975, 0.03127346560359001, 0.010278378613293171, 0.035352613776922226, -0.05664290115237236, -0.007080362644046545, -0.04268792271614075, 0.025476781651377678, -0.012022750452160835, -0.0006949534290470183, 0.002097719581797719, -0.02114715985953808, -0.011584421619772911, 0.039395976811647415, 0.011423402465879917, -0.04233010113239288, 0.011781222186982632, -0.030951427295804024, 0.016674410551786423, -0.010010013356804848, -0.012890463694930077, -0.003629636252298951, 0.002594194607809186, 0.008480332791805267, 0.02542310766875744, 0.016665464267134666, 0.05621351674199104, 0.056106168776750565, 0.019018130376935005, -0.03080829791724682, -0.009151245467364788, 0.037893135100603104, -0.050774652510881424, -0.022506875917315483, 0.006798579357564449, 0.060936737805604935, -0.025351544842123985, -0.05202702060341835, -0.054674889892339706, 0.02765948325395584, -0.007939130067825317, 0.11113888025283813, -0.031005099415779114, -0.0013015700969845057, -0.029054980725049973, -0.010564634576439857, 0.024456994608044624, -0.018150417134165764, -0.07986541837453842, 0.055104274302721024, -0.00495580630376935, -0.03996849060058594, 0.002168165287002921, 0.006601778324693441, -0.03732062131166458, -0.026281876489520073, 0.0011863968102261424, -0.034565407782793045, -0.08380143344402313, -0.030844081193208694, -0.06297631561756134, 0.05259953439235687, -0.01681753806769848, -0.015189457684755325, -0.040898822247982025, -0.00420438451692462, 0.02504739724099636, 0.036068253219127655, -0.05893294885754585, 0.04326043277978897, 0.022113272920250893, -0.03742796927690506, 0.01789994351565838, -0.030951427295804024, 0.012094314210116863, -0.020556757226586342, 0.01892867498099804, -0.04097038507461548, -0.019393842667341232, 0.0066688694059848785, -0.028393013402819633, -0.015985606238245964, 0.019733771681785583, -0.005993484519422054, 0.06898768991231918, -0.033116236329078674, -0.03293732553720474, -0.01285468228161335, -0.02116505056619644, 0.03554941341280937, 0.016513390466570854, -0.06870143115520477, -0.016799647361040115, -0.006981961894780397, -0.050166357308626175, 0.014098105952143669, 0.027283772826194763, 0.015046329237520695, 0.014599054120481014, -0.010179977864027023, -0.07145664840936661, -0.022667894139885902, 0.023311970755457878, -0.03785734996199608, 0.020234718918800354, 0.002197238150984049, -0.04569360986351967, -0.009670084342360497, 0.018141472712159157, -0.018481401726603508, -0.01152180228382349, -0.014375416561961174, 0.04419076442718506, -0.008677134290337563, 0.039288632571697235, 0.04229431971907616, 0.01446487195789814, -0.012541589327156544, 0.04057678207755089, 0.048949770629405975, 0.03408234938979149, 0.021898580715060234, -0.024725358933210373, 0.009169136174023151, 0.02660391479730606, 0.0004316203121561557, -0.014938983134925365, 0.08451707661151886, 0.024689577519893646, 0.030915644019842148, -0.02536943554878235, -0.036891236901283264, 0.05310048162937164, 0.05102512612938881, -0.005957702174782753, -0.019071804359555244, -0.05653555318713188, -0.0422227568924427, 0.00755000114440918, 0.020091591402888298, 0.08501802384853363, -0.04247323051095009, -0.021612325683236122, 0.09560949355363846, 0.02320462465286255, 0.0008604452013969421, 0.03953910619020462, 0.05048839747905731, -0.00635577691718936, 0.029412800446152687, 0.0033724531531333923, -0.03381398692727089, -0.029627492651343346, 0.0334203839302063, 0.016674410551786423, -0.07091991603374481, -0.04168602451682091, 0.000020529221728793345, -0.08802370727062225, 0.04877085983753204, -0.05531896650791168, 0.06605356186628342, -0.0013026882661506534, -0.02438542991876602, -0.030683061107993126, -0.013042537495493889, 0.04962962865829468, -0.0030123968608677387, 0.004513004329055548, -0.002952014561742544, -0.040111616253852844, -0.05302891880273819, -0.016754919663071632, 0.03553152084350586, -0.026586022228002548, 0.02592405676841736, -0.0755000114440918, -0.00898575410246849, 0.006923816166818142, 0.014607999473810196, 0.08008010685443878, -0.0013239338295534253, 0.08566209673881531, -0.03825095295906067, -0.02665758691728115, 0.0607578307390213, 0.00014494503557216376, -0.003437307896092534, 0.07052631676197052, -0.01713063009083271, 0.032847873866558075, 0.0507388710975647, -0.03286576271057129, -0.0165760088711977, 0.021522870287299156, -0.04544313624501228, -0.008466915227472782, -0.005434390623122454, -0.024635903537273407, -0.038680337369441986, -0.07385403662919998, -0.03492322936654091, 0.04258057475090027, -0.07779005914926529, -0.04540735110640526, 0.05664290115237236, -0.00340152601711452, 0.012317951768636703, 0.00700879842042923, 0.015958771109580994, -0.050059013068675995, 0.02803519368171692, -0.05624929815530777, 0.03835830092430115, -0.003191306721419096, -0.03699858486652374, -0.004656132310628891, -0.049558065831661224, -0.04354668781161308, -0.006964071188122034, -0.026854388415813446, -0.014115997590124607, 0.003215906908735633, -0.04014739766716957, -0.03515581041574478, 0.0142412343993783, -0.008028585463762283, -0.00721901748329401, -0.05517583712935448, 0.02381291799247265, 0.029502255842089653, -0.036282945424318314, -0.030772516503930092, -0.04147133231163025, 0.027140643447637558, -0.004436967428773642, -0.0656241774559021, 0.03143448382616043, 0.005662500858306885, 0.06261849403381348, -0.022506875917315483, -0.032400596886873245, -0.018338272348046303, -0.0017454904736950994, -0.012863627634942532, -0.011235546320676804, 0.01510000228881836, 0.010367833077907562, -0.015922987833619118, 0.006409449968487024, 0.04168602451682091, -0.042115408927202225, -0.07499906420707703, -0.02409917488694191, -0.01805201731622219, 0.03853720799088478, -0.015699351206421852, 0.04780474677681923, -0.015744078904390335, -0.09603887796401978, 0.03932441398501396, 0.0055193728767335415, 0.09496542066335678, 0.03692701831459999, -0.0257093645632267, 0.0072905817069113255, -0.03968223184347153, 0.05392346903681755, -0.040183182805776596, -0.000976736657321453, -0.004074674565345049, 0.021182941272854805, -0.02370557188987732, -0.05252797156572342, 0.042509011924266815, 0.06290474534034729, -0.0021379743702709675, 0.01594087854027748, -0.003148815594613552, 0.04787630960345268, 0.009093099273741245, -0.000030697738111484796, -0.02370557188987732, 0.04054100066423416, -0.012085368856787682, 0.022363748401403427, 0.04043365642428398, -0.007684183772653341, 0.04726801812648773, 0.017882052809000015, 0.022005926817655563, -0.06025687977671623, -0.04665972292423248, 0.02132606878876686, -0.04240166395902634, 0.047446925193071365, -0.007348727434873581, 0.07721754908561707, -0.04279526695609093, 0.04175759106874466, -0.08959811925888062, -0.041614461690187454, 0.03757109493017197, -0.014938983134925365, 0.0074829100631177425, -0.008815789595246315, 0.019966354593634605, -0.01702328398823738, 0.08072417974472046, -0.01607506163418293, -0.01016208715736866, 0.02715853415429592, 0.028679270297288895, 0.02027050033211708, -0.01079721748828888, 0.02526208944618702, 0.0312555730342865, -0.006959598045796156, 0.01252369862049818, -0.016647573560476303, 0.015171566046774387, 0.030629388988018036, -0.041006166487932205, 0.02332986146211624, 0.0010566870914772153, 0.01916125975549221, 0.028571924194693565, -0.0033925804309546947, 0.016960665583610535, 0.049343373626470566, -0.03249005228281021, 0.0024823760613799095, 0.004642713814973831, -0.053279392421245575, -0.003882346674799919, -0.027838392183184624, -0.015180511400103569, 0.005711701232939959, 0.007925712503492832, -0.024081284180283546, -0.05907607451081276, 0.0153236398473382, 0.0377500057220459, 0.07535688579082489, 0.050059013068675995, 0.012657880783081055, -0.01554727740585804 ]
40,038
s3path.old_versions
lchmod
lchmod method is unsupported on S3 service AWS S3 don't have this file system action concept
def lchmod(self, mode): """ lchmod method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.lchmod.__qualname__) raise NotImplementedError(message)
(self, mode)
[ -0.012117376551032066, 0.019029520452022552, 0.01879291981458664, 0.04525848850607872, 0.04296007379889488, -0.02044912986457348, 0.004222914110869169, 0.04056025668978691, 0.014111589640378952, 0.017609911039471626, 0.006760042626410723, 0.006692442577332258, 0.05479014664888382, 0.0013836962170898914, -0.01727190986275673, 0.02594166435301304, -0.032414406538009644, -0.02827387861907482, -0.003485647030174732, 0.021074432879686356, 0.013359534554183483, -0.01528614666312933, 0.05042991787195206, -0.04972011595964432, 0.027496473863720894, 0.07158885151147842, 0.026786670088768005, 0.05029471963644028, 0.03846464306116104, -0.03947864845395088, -0.055905554443597794, 0.047962505370378494, -0.008889456279575825, 0.05769696459174156, -0.0176268108189106, -0.001486153225414455, 0.01835351623594761, 0.01627480238676071, -0.02183493785560131, -0.011492072604596615, -0.08362173289060593, 0.058305367827415466, -0.0040327878668904305, -0.05948837846517563, 0.02492765709757805, 0.024099553003907204, -0.01279338076710701, 0.06239519640803337, 0.02465725690126419, -0.056649159640073776, 0.00014589545025955886, 0.07442807406187057, -0.0032701706513762474, -0.06712722778320312, 0.001721698441542685, 0.013241234235465527, 0.03246510401368141, 0.02567126229405403, -0.03890404477715492, -0.000989712541922927, 0.016756456345319748, 0.03954625129699707, 0.0009902406018227339, -0.02883158251643181, -0.0009506310452707112, -0.08984097093343735, -0.0536409392952919, 0.006958619225770235, 0.01008091401308775, 0.04387267678976059, -0.0244375541806221, -0.04150666296482086, 0.013553885743021965, 0.0009110213723033667, -0.022967245429754257, -0.011542772874236107, -0.02761477418243885, 0.004356002435088158, 0.025975463911890984, 0.034070614725351334, -0.03728163614869118, -0.048030104488134384, 0.02335594780743122, 0.053167738020420074, -0.026651468127965927, -0.0043982528150081635, -0.003582822624593973, -0.05073412135243416, -0.02327144704759121, -0.027445774525403976, -0.04279107227921486, 0.025620562955737114, -0.04931451380252838, -0.05715616047382355, -0.010562567040324211, 0.02276444435119629, -0.029220284894108772, -0.0587109737098217, 0.0040581380017101765, 0.008259926922619343, 0.00603756308555603, -0.006861443631350994, 0.06144879013299942, -0.05282973498106003, 0.03606482967734337, -0.048097703605890274, -0.054553546011447906, -0.0024779781233519316, -0.04769210144877434, -0.011703324504196644, 0.07071004807949066, 0.07753769308328629, 0.01908022165298462, -0.011263920925557613, -0.008906356059014797, 0.00839090347290039, 0.025468461215496063, -0.10025143623352051, -0.05282973498106003, -0.020871631801128387, 0.01705220714211464, -0.03633522987365723, 0.019249221310019493, -0.04208126664161682, 0.03961385041475296, 0.04035745561122894, -0.002344889799132943, -0.005995313171297312, 0.012320177629590034, -0.010672417469322681, -0.044785283505916595, -0.006844543386250734, -0.029220284894108772, 0.018116915598511696, 0.0032659457065165043, -0.02849358133971691, 0.013587686233222485, -0.0016657167579978704, 0.0058474368415772915, 0.03592962771654129, 0.02638106793165207, 0.016105802729725838, 0.039512451738119125, 0.014550992287695408, -0.0374506376683712, 0.019401323050260544, 0.006510766223073006, -0.011973725631833076, 0.02269684337079525, 0.014973495155572891, 0.03650423139333725, 0.026972571387887, 0.031975001096725464, 0.029676588252186775, 0.008335977792739868, 0.026803569868206978, 0.015159396454691887, -0.008205002173781395, -0.02371085062623024, -0.013528536073863506, -0.04245306923985481, -0.007888125255703926, -0.054823946207761765, -0.0020723757334053516, 0.01402708888053894, -0.05546615272760391, 0.028104878962039948, 0.024606555700302124, -0.0037328111939132214, 0.013680636882781982, 0.03789003938436508, 0.036402828991413116, 0.09295058995485306, 0.013520085252821445, 0.09504619985818863, 0.08362173289060593, -0.03569302707910538, -0.012590579688549042, 0.024522054940462112, -0.07226485759019852, 0.013283484615385532, -0.014669292606413364, 0.008652854710817337, 0.0176268108189106, 0.0010721005965024233, 0.027597874402999878, -0.04106726124882698, 0.027496473863720894, -0.030301891267299652, 0.0028180929366499186, -0.00003528557499521412, -0.016080452129244804, -0.009303509257733822, -0.022460242733359337, -0.01004711352288723, -0.011627273634076118, 0.025265660136938095, -0.0326848067343235, -0.012235677801072598, 0.11816554516553879, -0.014179189689457417, 0.07023684680461884, 0.015167846344411373, 0.02675286866724491, 0.06276699900627136, 0.0002931112248916179, 0.04214886575937271, 0.02355874888598919, -0.04201366752386093, 0.02457275614142418, 0.028594981878995895, 0.013063782826066017, 0.00455457903444767, 0.05350573733448982, 0.04525848850607872, 0.058879971504211426, -0.06405140459537506, 0.03216090425848961, 0.01980692520737648, 0.013714437372982502, -0.01142447255551815, 0.022172940894961357, -0.03327631205320358, 0.01945202238857746, 0.04907790943980217, -0.005462959408760071, 0.04718510061502457, -0.020482929423451424, -0.013942588120698929, 0.04397407919168472, -0.003692673286423087, 0.011728674173355103, 0.029237184673547745, 0.06611321866512299, -0.003544797422364354, -0.03014979138970375, 0.04755690321326256, 0.028662580996751785, -0.03599722683429718, -0.012235677801072598, -0.02818937785923481, 0.0004935359465889633, 0.024031952023506165, 0.06239519640803337, -0.03369881212711334, 0.011948375962674618, 0.017829613760113716, 0.06847923249006271, -0.0037116860039532185, -0.009202108718454838, 0.043264273554086685, 0.05610835552215576, -0.09369419515132904, -0.0209561325609684, 0.001216807751916349, -0.07442807406187057, 0.03620002791285515, -0.025874063372612, -0.023592550307512283, -0.017153609544038773, -0.06645122170448303, -0.04928071051836014, 0.02435305342078209, -0.06689062714576721, 0.006865668576210737, -0.015150945633649826, 0.012049776501953602, 0.030031491070985794, -0.040222253650426865, 0.07970090210437775, 0.03043709322810173, -0.024268554523587227, -0.024826256558299065, 0.02847667969763279, 0.004613729193806648, -0.023254547268152237, -0.020550530403852463, 0.03209330514073372, -0.005336208734661341, -0.02139553613960743, 0.05718996375799179, 0.03778864070773125, 0.0006047069327905774, 0.05397894233465195, -0.05053132027387619, 0.020297028124332428, 0.005564360413700342, 0.003956737462431192, 0.00393983768299222, 0.0008708836394362152, -0.027530275285243988, 0.06814122945070267, -0.038633644580841064, -0.03085959516465664, 0.09930502623319626, 0.025282559916377068, -0.034307219088077545, -0.04546128958463669, 0.07098045200109482, -0.00148192816413939, -0.07659128308296204, 0.004558803979307413, 0.029676588252186775, 0.012632830068469048, -0.017407109960913658, -0.01857321709394455, 0.046238694339990616, -0.0298455897718668, -0.039073046296834946, 0.07814609259366989, 0.045427486300468445, 0.01886051893234253, -0.053100135177373886, 0.015024195425212383, 0.03385091572999954, 0.09673621505498886, 0.020111126825213432, 0.055702753365039825, -0.03478042036294937, 0.021209634840488434, -0.04928071051836014, -0.026871170848608017, -0.008395127952098846, -0.022747544571757317, 0.03410441428422928, -0.06847923249006271, 0.008610604330897331, 0.006003763061016798, -0.0010219283867627382, 0.015024195425212383, -0.058947574347257614, 0.07632088661193848, 0.019046420231461525, -0.00648541608825326, -0.06070518493652344, 0.004385577980428934, 0.0029532937332987785, -0.038701243698596954, -0.008323302492499352, 0.036402828991413116, 0.00536578381434083, 0.01625790260732174, -0.008205002173781395, 0.04336567595601082, -0.025198059156537056, 0.051714327186346054, 0.07476607710123062, 0.0003295521019026637, 0.026651468127965927, -0.016604354605078697, 0.03626763075590134, -0.021851837635040283, -0.02644866704940796, 0.027361273765563965, -0.03701123595237732, -0.007892349734902382, 0.00993726309388876, -0.016798706725239754, 0.007436047308146954, -0.02379535138607025, 0.0596911795437336, -0.08071491122245789, 0.018522517755627632, 0.012184977531433105, -0.007064244709908962, 0.027073971927165985, 0.0070008691400289536, -0.02609376609325409, 0.031248297542333603, -0.040458858013153076, 0.01713670790195465, -0.04674569517374039, -0.05485774949193001, -0.008973957039415836, -0.01697615720331669, 0.033496011048555374, 0.014322840608656406, -0.028899183496832848, -0.036538030952215195, 0.04312907159328461, 0.0023554523941129446, -0.016283253207802773, 0.029017483815550804, -0.0036145104095339775, -0.0000587872855248861, 0.046813298016786575, 0.004706679843366146, -0.039275847375392914, 0.040661659091711044, 0.011230121366679668, 0.021125134080648422, 0.0024019277188926935, 0.04143906384706497, -0.03505082055926323, -0.013790487311780453, 0.019823824986815453, -0.05445214360952377, 0.031028596684336662, 0.007769824005663395, 0.029085084795951843, -0.034374818205833435, 0.004296852275729179, -0.031484898179769516, 0.018742218613624573, -0.0306398943066597, 0.04951731488108635, -0.0064811911433935165, 0.03738303855061531, -0.005902362521737814, -0.03859984502196312, 0.046509094536304474, 0.027513373643159866, -0.05746036395430565, -0.00210511963814497, 0.034746620804071426, 0.0005154532846063375, 0.009489410556852818, -0.05377614125609398, -0.039715252816677094, 0.05347193777561188, 0.04292627051472664, -0.05813637003302574, 0.016426904127001762, 0.009523210115730762, 0.02146313525736332, -0.021649036556482315, -0.0028624555561691523, 0.009311959147453308, 0.03385091572999954, 0.007883899845182896, -0.002710354747250676, 0.08091771602630615, -0.01886051893234253, 0.005408034194260836, -0.024184053763747215, -0.009514760226011276, -0.015488947741687298, 0.040661659091711044, -0.032498907297849655, 0.01576779969036579, 0.025975463911890984, -0.03498322144150734, -0.058947574347257614, -0.015725549310445786, 0.03897164762020111, -0.01815071515738964, 0.004246152006089687, 0.03582822531461716, 0.031620100140571594, 0.03772103786468506, -0.0075078727677464485, 0.07686168700456619, -0.018978821113705635, 0.013190533965826035, 0.0017195858526974916, -0.02168283797800541, 0.0034835345577448606, -0.05654775723814964, -0.029372386634349823, -0.07598288357257843, -0.013545435853302479, 0.013680636882781982, 0.03390161320567131, -0.013021532446146011, -0.014153840020298958, 0.0082472525537014, -0.01635085418820381, 0.006384015548974276, 0.009117607958614826, -0.0441092811524868, 0.030301891267299652, -0.04201366752386093, 0.007469847332686186, -0.015150945633649826, 0.03846464306116104, 0.03941104933619499, -0.010106263682246208, 0.014120039530098438, 0.0016847294755280018, 0.009844312444329262, -0.005691111087799072, -0.0857173427939415, 0.02818937785923481, 0.0035131098702549934, -0.021006833761930466, -0.06259799748659134, -0.020922333002090454, 0.01076536811888218, 0.05282973498106003, -0.01711980812251568, 0.01308068260550499, -0.009016207419335842, -0.006519216112792492, 0.008999306708574295, 0.019773125648498535, 0.022510942071676254, -0.07388726621866226, -0.023913651704788208, -0.06371340155601501, 0.02457275614142418, -0.010511866770684719, 0.0014808719279244542, -0.05543234944343567, -0.018826719373464584, 0.03947864845395088, 0.03491562232375145, -0.004216576926410198, -0.055702753365039825, 0.03947864845395088, -0.037484437227249146, -0.03309040889143944, 0.0501595176756382, 0.0003295521019026637, 0.04870610684156418, -0.01619875244796276, -0.008002201095223427, -0.01943512260913849, 0.06685682386159897, 0.014339741319417953, 0.0075332229025661945, 0.04245306923985481, -0.0870017483830452, 0.003293408313766122, -0.030622994527220726, -0.022899644449353218, 0.0005355221219360828, 0.01280183158814907, -0.07916010171175003, 0.020871631801128387, 0.021818038076162338, -0.026127565652132034, 0.006561466492712498, -0.02278134413063526, 0.0030589194502681494, -0.020804032683372498, 0.07767289131879807, -0.06073898449540138, 0.016063552349805832, 0.031687699258327484, -0.04366987571120262, -0.028594981878995895, -0.027580974623560905, 0.01116252038627863, 0.026127565652132034, -0.05891377478837967, 0.00939645990729332, -0.03057229332625866, -0.09126057475805283, 0.05725756287574768, -0.03650423139333725, 0.0058220867067575455, 0.030470892786979675, -0.0009226402034983039, 0.044210679829120636, 0.07267045974731445, -0.044143080711364746, 0.057223763316869736, -0.11465032398700714, -0.04157426208257675, 0.011754024773836136, -0.0736168697476387, 0.009531660005450249, 0.021564535796642303, -0.024184053763747215, -0.024454455822706223, 0.0021885638125240803, 0.029980789870023727, 0.03317490965127945, -0.015624148771166801, -0.07571247965097427, 0.007351546548306942, 0.04691469669342041, 0.023829150944948196, 0.008323302492499352, -0.0016414228593930602, -0.024251652881503105, 0.034814219921827316, -0.026364166289567947, 0.0032532706391066313, 0.01130617130547762, -0.029152683913707733, -0.031687699258327484, -0.012100476771593094, -0.010486516170203686, -0.018235215917229652, -0.017474710941314697, -0.000833386555314064, 0.009337308816611767, -0.06016438081860542, 0.038498442620038986, -0.017897212877869606, 0.001999493921175599, -0.002501215785741806, -0.10430745780467987, 0.019401323050260544, 0.007064244709908962, 0.02818937785923481, -0.04201366752386093, -0.012920131906867027, 0.04988911747932434, 0.003718023654073477, -0.015159396454691887, -0.0007256483659148216, 0.05252553150057793, 0.004334877245128155, 0.02747957408428192, -0.04005325213074684, 0.019840726628899574, -0.021226534619927406, 0.003082157112658024, -0.04988911747932434, 0.045427486300468445, 0.017880313098430634, -0.01445804163813591, 0.04708369821310043, 0.006468515843153, -0.04140526056289673, 0.025620562955737114, 0.08301332592964172, -0.048672307282686234, -0.07564488053321838, -0.059454575181007385, -0.026296567171812057, 0.002294189529493451, -0.07571247965097427, -0.025874063372612, -0.028966784477233887, -0.0041025010868906975, -0.03085959516465664, -0.048469506204128265, -0.04647529497742653, -0.029372386634349823, 0.1193823590874672, -0.031620100140571594, 0.02876398153603077, -0.01995902694761753, -0.03995185345411301, 0.029828688129782677, 0.005581260193139315, -0.006096713710576296, 0.033580511808395386, -0.03151870146393776, -0.006240364629775286, -0.019756225869059563, -0.056919559836387634, 0.030741294845938683, 0.046509094536304474, -0.02458965592086315, -0.014550992287695408, -0.0805797129869461, -0.03478042036294937, -0.03160319849848747, -0.006907918956130743, 0.022663043811917305, 0.005458734463900328, -0.01311448309570551, -0.0022244765423238277, -0.05911657586693764, 0.02254474349319935, -0.11775994300842285, 0.009354209527373314, -0.029220284894108772, 0.016807155683636665, 0.06874963641166687, 0.042622070759534836, -0.034070614725351334, -0.006046013440936804, -0.02472485601902008, -0.0024737531784921885, 0.04184466600418091, 0.05884617194533348, -0.010706217959523201, 0.00026195167447440326, 0.03816044330596924, -0.010461166501045227, 0.03670703247189522, 0.0387350469827652, -0.05313393846154213, 0.04113486036658287, 0.014728443697094917, -0.028611881658434868, 0.007710673846304417, -0.00522213289514184, 0.010097813792526722, 0.018522517755627632, 0.04170946404337883, -0.004364452790468931, 0.006836093496531248, -0.039039246737957, -0.057426564395427704, 0.00509538222104311, 0.011551222763955593, -0.03087649494409561, 0.01635085418820381, -0.02768237516283989, -0.044278278946876526, 0.004064475651830435, 0.03116379678249359, 0.029372386634349823, 0.011906125582754612, 0.038633644580841064, 0.033935416489839554, -0.01989142596721649, -0.03765343874692917, -0.017086008563637733, -0.048604708164930344, -0.006472740788012743, -0.04512328654527664, 0.02900058403611183, -0.03626763075590134, -0.009100707247853279, 0.02327144704759121, 0.008183876983821392, -0.020702630281448364, 0.01699305698275566, 0.006434715818613768, 0.0004887827672064304, -0.04316287487745285, 0.013097583316266537, -0.009413359686732292, -0.00592771265655756, -0.027378173545002937, -0.017694411799311638, 0.03167080134153366, -0.004799630492925644, -0.07828129827976227, -0.058812372386455536, 0.06557241827249527, -0.03728163614869118, 0.025333261117339134, 0.03202570229768753, 0.012489179149270058, -0.02617826499044895, 0.02384605072438717, 0.0220546405762434, 0.014939694665372372, -0.02168283797800541, 0.033225610852241516, -0.026364166289567947, 0.058440569788217545, -0.029372386634349823, 0.03484801948070526, -0.0406278558075428, -0.03216090425848961, 0.04718510061502457, -0.017897212877869606, -0.035456426441669464, 0.06739762425422668, 0.004605279304087162, 0.031045496463775635, 0.033073510974645615, -0.010832969099283218, -0.010579466819763184, 0.011914575472474098, 0.0203139279037714, -0.06449081003665924, -0.022426441311836243, 0.01632550358772278, 0.0025645913556218147, 0.022730644792318344, -0.06263179332017899, 0.004863005597144365, 0.008112051524221897, 0.024961458519101143, 0.008082476444542408, -0.0026152916252613068, 0.007541672792285681, -0.018387315794825554 ]
40,040
s3path.old_versions
lstat
lstat method is unsupported on S3 service AWS S3 don't have this file system action concept
def lstat(self): """ lstat method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.lstat.__qualname__) raise NotImplementedError(message)
(self)
[ -0.009044449776411057, -0.03728733956813812, -0.014272746630012989, 0.058469507843256, 0.05430031940340996, -0.03094950132071972, -0.0017063412815332413, 0.03145383670926094, 0.004246940836310387, 0.0288649071007967, 0.002605743007734418, -0.009347052313387394, 0.05265281721949577, -0.04424719512462616, -0.03142021596431732, 0.05836864188313484, -0.013457401655614376, 0.0002729200350586325, 0.007455786690115929, -0.020425662398338318, -0.014104634523391724, 0.026881180703639984, 0.03641315549612045, -0.03133615851402283, 0.01970277912914753, 0.04498688876628876, 0.04478515684604645, -0.023367630317807198, 0.024292247369885445, -0.020156681537628174, -0.05477103590965271, 0.02452760562300682, -0.01453332044184208, 0.048651739954948425, -0.012625244446098804, 0.014146662317216396, 0.04027974233031273, -0.0205769632011652, -0.046029187738895416, -0.013902898877859116, -0.053829606622457504, 0.04064958915114403, -0.0013701163697987795, -0.04337301105260849, 0.06381548196077347, 0.05840226262807846, -0.03264743834733963, 0.06290767341852188, 0.006951449438929558, -0.0363122895359993, 0.008250118233263493, 0.09347052127122879, -0.0005048626917414367, -0.044146329164505005, -0.002087746514007449, -0.004526427481323481, 0.04858449473977089, 0.0010475507006049156, -0.033101338893175125, 0.037758056074380875, 0.03641315549612045, 0.02867998369038105, 0.04169188812375069, -0.024275436997413635, 0.010128774680197239, -0.07591958343982697, -0.016525452956557274, -0.008851120248436928, -0.03214310109615326, 0.051240671426057816, 0.021871428936719894, -0.01797121949493885, -0.006758120376616716, 0.011398023925721645, 0.000742846867069602, -0.007052317261695862, 0.005459451582282782, -0.001105339266359806, 0.020156681537628174, 0.012742923572659492, -0.01970277912914753, -0.05460292100906372, 0.022039541974663734, 0.03553897142410278, -0.0008400368969887495, -0.01780310831964016, 0.020190304145216942, -0.07908009737730026, -0.03404276818037033, 0.05840226262807846, -0.059713538736104965, 0.06512676179409027, -0.026477709412574768, -0.0452558696269989, 0.017366016283631325, -0.006199146620929241, -0.036883872002363205, -0.06431981921195984, 0.0037888342048972845, -0.015525184571743011, 0.013070742599666119, -0.010229642502963543, 0.041725508868694305, -0.021467959508299828, 0.028562303632497787, -0.04912245646119118, -0.034967388957738876, -0.04118754714727402, -0.042263466864824295, 0.027889855206012726, 0.04202811047434807, 0.03627866506576538, -0.02508237585425377, -0.004442371428012848, 0.030495597049593925, -0.005211486015468836, 0.05423307418823242, -0.04159101843833923, -0.08593907952308655, -0.039977140724658966, 0.03348799794912338, -0.01674399897456169, 0.0061697266064584255, -0.0400443859398365, 0.017651807516813278, -0.0014131952775642276, 0.014499698765575886, -0.0030470381025224924, 0.015432722866535187, 0.014373614452779293, -0.02227489836513996, -0.010271670296788216, -0.04905521124601364, 0.013961738906800747, 0.024157758802175522, -0.004492804873734713, 0.04491964355111122, 0.013894493691623211, -0.008834308944642544, 0.03755632042884827, 0.05137516185641289, -0.012600027956068516, 0.009498353116214275, -0.018189767375588417, -0.005871327128261328, 0.04996301978826523, -0.011860333383083344, -0.008535909466445446, 0.023939212784171104, 0.008014760911464691, 0.0328659825026989, -0.010994553565979004, 0.04340663179755211, -0.015827786177396774, -0.02123260125517845, 0.013978550210595131, 0.007808823138475418, -0.04868536442518234, -0.043104030191898346, -0.03890122100710869, -0.03453029692173004, -0.012969874776899815, -0.03644677624106407, -0.04505413398146629, -0.019736401736736298, -0.030630087479948997, -0.026998858898878098, 0.03503463417291641, -0.04145652800798416, 0.007434772793203592, 0.032714683562517166, 0.027217404916882515, 0.04216260090470314, 0.01079281885176897, 0.09286531805992126, 0.07249008864164352, -0.014718244783580303, 0.03459754213690758, 0.024275436997413635, -0.0776679515838623, 0.017483694478869438, -0.024460360407829285, -0.0030470381025224924, 0.0019185832934454083, -0.040010761469602585, 0.04428081959486008, -0.030310673639178276, 0.005753648467361927, -0.031184857711195946, 0.06973303854465485, -0.007199415471404791, -0.004146073013544083, -0.014272746630012989, -0.005686403252184391, 0.004005278926342726, -0.03126891329884529, 0.006430300883948803, 0.01817295514047146, 0.0000441295160271693, 0.09111694246530533, 0.00940589141100645, 0.06203349307179451, -0.013776814565062523, 0.012684083543717861, 0.01642458513379097, 0.00371528510004282, -0.0032088463194668293, -0.009927039965987206, -0.05413220822811127, 0.02590612694621086, -0.015180553309619427, 0.012995092198252678, -0.04808015748858452, 0.052955418825149536, 0.007527234498411417, 0.024762963876128197, 0.004459182731807232, 0.0366821363568306, 0.015937060117721558, -0.011179477907717228, 0.07444018870592117, -0.028461437672376633, -0.0313865952193737, 0.00777940358966589, 0.04791204631328583, 0.024947887286543846, 0.0718848779797554, -0.021989107131958008, -0.03074776567518711, -0.0033727558329701424, -0.0013701163697987795, 0.008493881672620773, 0.05732634291052818, 0.07827315479516983, 0.01916481927037239, -0.00993544515222311, 0.03806065768003464, 0.018525991588830948, -0.023115461692214012, -0.04081770032644272, -0.05749445781111717, -0.01296146959066391, 0.0068800016306340694, 0.09306704998016357, -0.06186537817120552, -0.057427212595939636, -0.012742923572659492, 0.09010826796293259, -0.011339184828102589, -0.008775469847023487, 0.043104030191898346, 0.06136104092001915, -0.07296080142259598, -0.0622016042470932, 0.020644208416342735, -0.07625580579042435, -0.005741039756685495, -0.036211419850587845, 0.008447649888694286, -0.023384440690279007, -0.04750857502222061, -0.05100531503558159, 0.022728802636265755, -0.038632240146398544, -0.009683276526629925, 0.001306023565120995, 0.056082312017679214, 0.01832425594329834, -0.020358417183160782, 0.09071347862482071, 0.010809630155563354, -0.003690068144351244, -0.04549122601747513, -0.014297963120043278, -0.001279755961149931, -0.031050369143486023, -0.027721742168068886, -0.004736568313091993, 0.018542801961302757, -0.010313698090612888, 0.03284917026758194, 0.014180284924805164, -0.011826710775494576, 0.05500639230012894, -0.03402595967054367, 0.0020824929233640432, 0.0002423183323116973, -0.030361106619238853, -0.057292722165584564, -0.009380673989653587, -0.010330509394407272, 0.04253244772553444, -0.04979490488767624, -0.048483628779649734, 0.07168314605951309, 0.01692051813006401, -0.04703786224126816, 0.001467831782065332, 0.08150091022253036, 0.03268105909228325, -0.07309529185295105, 0.013802031986415386, 0.020778698846697807, -0.0025174838956445456, -0.0411539264023304, -0.013415372930467129, 0.05013113096356392, -0.038094278424978256, -0.04216260090470314, 0.03005850501358509, 0.03335350751876831, 0.05739358812570572, -0.034799277782440186, 0.0028894327115267515, 0.054535675793886185, 0.07692825794219971, -0.027873042970895767, 0.050231996923685074, -0.03607692942023277, 0.046903371810913086, -0.05540986359119415, 0.029301999136805534, -0.0062285661697387695, -0.023586176335811615, 0.032899606972932816, -0.06953130662441254, 0.007333905436098576, 0.022358955815434456, -0.004547441843897104, 0.035841573029756546, -0.03900208696722984, 0.011154260486364365, 0.023771099746227264, -0.02348530851304531, -0.07686100900173187, 0.0030764576513320208, -0.008136642165482044, -0.03701835870742798, 0.004606280941516161, 0.042095355689525604, 0.009817766956984997, -0.021837806329131126, 0.003484130371361971, 0.07753346115350723, -0.04391096904873848, 0.026561766862869263, 0.07625580579042435, -0.04757582023739815, 0.035303615033626556, -0.02261112444102764, -0.0006960905739106238, 0.009683276526629925, -0.04670163616538048, 0.06253782659769058, 0.01381884329020977, -0.009136911481618881, 0.029806336387991905, -0.02059377357363701, 0.015188959427177906, -0.00890155415982008, 0.015214175917208195, -0.04992939531803131, -0.004602078348398209, -0.0038539778906852007, 0.027066104114055634, -0.006073061842471361, 0.0512070506811142, -0.06428620219230652, 0.01847555674612522, -0.018694104626774788, -0.048651739954948425, -0.07457467913627625, -0.0856700986623764, -0.02577163837850094, 0.003896005917340517, 0.030546031892299652, 0.04791204631328583, -0.03590881824493408, -0.04539036005735397, 0.052282970398664474, -0.018240200355648994, 0.025536280125379562, 0.007670130115002394, -0.0002532193611841649, 0.014970413409173489, 0.049492303282022476, -0.01798803173005581, -0.015768947079777718, 0.02486382983624935, 0.012667272239923477, 0.010750791057944298, -0.018088899552822113, 0.01589503139257431, -0.02007262594997883, -0.021131733432412148, -0.012734517455101013, -0.02404007874429226, -0.012331048026680946, 0.012356264516711235, -0.003561882534995675, 0.006472329143434763, -0.020139871165156364, -0.05117342993617058, 0.012465537525713444, -0.04058234393596649, -0.008691413328051567, -0.014382019639015198, 0.03091587871313095, -0.05648577958345413, -0.03007531724870205, 0.05863761901855469, -0.020358417183160782, -0.052249349653720856, -0.003864484839141369, 0.02525048889219761, 0.02659538947045803, 0.012213368900120258, -0.010254858992993832, -0.043810103088617325, 0.07067447155714035, 0.03022661805152893, -0.05931007117033005, 0.046365413814783096, 0.04249882698059082, 0.02661219984292984, -0.019803645089268684, -0.022157220169901848, -0.008447649888694286, 0.010574272833764553, -0.008758658543229103, 0.05645215883851051, 0.09104970097541809, -0.022678369656205177, 0.0041145519353449345, -0.00924618449062109, -0.004950911272317171, -0.028965774923563004, 0.0034168853890150785, -0.03540448099374771, 0.054703790694475174, 0.0302602406591177, 0.005888138432055712, -0.040010761469602585, 0.04747495427727699, 0.05803241580724716, -0.010910497978329659, -0.02054334059357643, 0.0007060722564347088, 0.07417120784521103, -0.01743325963616371, -0.03943917900323868, 0.030680520460009575, 0.01780310831964016, 0.01528142113238573, -0.03563983738422394, -0.04054872319102287, 0.0051316325552761555, -0.04367561265826225, -0.033588867634534836, -0.05826777219772339, -0.04360836744308472, 0.05265281721949577, -0.014634188264608383, -0.03715284913778305, 0.012902630493044853, -0.0383632592856884, -0.02072826400399208, 0.00023456939379684627, 0.015962276607751846, -0.040884945541620255, 0.07450743764638901, -0.019971758127212524, -0.01781991869211197, -0.0024985712952911854, 0.028562303632497787, 0.018879028037190437, -0.00047360427561216056, 0.01606314443051815, 0.009136911481618881, 0.003723690751940012, -0.0033811614848673344, -0.05080357939004898, 0.01330609992146492, 0.000060316906456137076, 0.013331316411495209, -0.046567145735025406, -0.03422769531607628, 0.024460360407829285, 0.08203887194395065, -0.04992939531803131, 0.008355188183486462, 0.027402328327298164, 0.009540380910038948, 0.023922400549054146, 0.008859525434672832, 0.029268376529216766, -0.03920382261276245, -0.0335216224193573, -0.011255128309130669, 0.014625783078372478, 0.0062117548659443855, -0.017004573717713356, 0.009178939275443554, 0.023115461692214012, 0.026713067665696144, 0.015499967150390148, 0.020123058930039406, -0.01815614476799965, 0.028209269046783447, -0.0407840795814991, -0.042061734944581985, 0.0560486875474453, 0.03251294791698456, 0.07228834927082062, -0.02298097126185894, -0.036581266671419144, -0.04609643295407295, 0.05460292100906372, 0.047643065452575684, 0.03226077929139137, 0.030478786677122116, -0.07692825794219971, 0.02037522755563259, -0.07860937714576721, -0.026191918179392815, -0.03456391766667366, -0.010044718161225319, -0.060217875987291336, -0.012238586321473122, 0.04112030565738678, -0.017046602442860603, -0.005862921476364136, -0.015819381922483444, -0.03210947662591934, 0.0014342092908918858, 0.11566136032342911, -0.05957905203104019, 0.008178670890629292, -0.004501210525631905, -0.033269453793764114, 0.03133615851402283, -0.044650666415691376, 0.0035345640499144793, 0.020661018788814545, -0.06341201066970825, 0.017349204048514366, -0.04290229454636574, -0.05231659114360809, 0.03587519749999046, -0.03041154146194458, 0.05033286660909653, 0.002927257912233472, -0.012734517455101013, -0.002026805654168129, 0.07854213565587997, 0.014978818595409393, 0.04286867380142212, -0.0999932810664177, -0.014205501414835453, -0.0013301897561177611, -0.047273218631744385, 0.01793759874999523, 0.003358046058565378, 0.01745007187128067, -0.022560689598321915, 0.003141601337119937, 0.05527537316083908, 0.028814472258090973, -0.001297617913223803, -0.041893620043992996, 0.047945670783519745, 0.053123533725738525, 0.009918633848428726, -0.005362786818295717, 0.007607087958604097, -0.0028726214077323675, 0.04112030565738678, 0.00021368668240029365, -0.011036582291126251, -0.009969067759811878, 0.004723959602415562, -0.05369511619210243, 0.005467857234179974, -0.008161859586834908, -0.04858449473977089, -0.009313429705798626, -0.0366821363568306, -0.004513819236308336, -0.04686975106596947, 0.047239597886800766, -0.06156277656555176, -0.025838883593678474, 0.01608836092054844, -0.07080896198749542, 0.02367023192346096, 0.016550669446587563, 0.04707148298621178, -0.06734584271907806, -0.015684891492128372, 0.0459955632686615, 0.020610585808753967, 0.02627597562968731, 0.01539069414138794, 0.037926167249679565, 0.03157151862978935, 0.007010289002209902, -0.03634591028094292, 0.023031404241919518, -0.041759129613637924, 0.008569532074034214, -0.011036582291126251, 0.04703786224126816, 0.01288581918925047, -0.003524057101458311, 0.057628944516181946, 0.016870083287358284, -0.023922400549054146, 0.050231996923685074, 0.07349876314401627, 0.007371730636805296, -0.019097574055194855, -0.04545760527253151, -0.01183511596173048, 0.03795979171991348, -0.08466142416000366, -0.02676350064575672, 0.012036850675940514, 0.010834846645593643, -0.014995629899203777, -0.06549660861492157, -0.046230923384428024, -0.021720128133893013, 0.1065160483121872, -0.04939143732190132, 0.015012441202998161, -0.030142560601234436, -0.01304552610963583, 0.007808823138475418, -0.01569329760968685, 0.012146123684942722, 0.016727188602089882, -0.019837267696857452, -0.009851389564573765, -0.004307881463319063, -0.009851389564573765, 0.007657521869987249, 0.009052854962646961, -0.005430032033473253, 0.06953130662441254, -0.03195817396044731, -0.008985609747469425, -0.019248874858021736, -0.008783875033259392, 0.02469571866095066, -0.029671845957636833, -0.00012234121095389128, -0.020089436322450638, -0.052820928394794464, 0.030024882405996323, -0.09017551690340042, -0.02920113131403923, -0.07618855684995651, -0.01867729239165783, 0.08506489545106888, 0.05823415145277977, -0.057124607264995575, -0.020291171967983246, -0.00881749764084816, 0.00011354156595189124, -0.0021602448541671038, 0.04992939531803131, 0.05857037752866745, 0.029167508706450462, 0.040884945541620255, -0.05255195125937462, -0.02178737334907055, 0.043104030191898346, -0.02953735738992691, 0.04249882698059082, 0.026410464197397232, -0.023586176335811615, 0.011608164757490158, -0.03165557235479355, 0.02333400771021843, 0.019433798268437386, 0.03960729017853737, -0.0011935983784496784, -0.04031336307525635, 0.0032403673976659775, -0.020492907613515854, -0.03560621663928032, -0.011002959683537483, -0.014180284924805164, 0.04680250585079193, -0.032395269721746445, -0.04307040944695473, 0.006867393385618925, 0.019063951447606087, 0.03698473796248436, -0.0177862960845232, 0.05860399827361107, 0.008136642165482044, -0.016819650307297707, 0.01607995480298996, -0.0059721944853663445, -0.03540448099374771, -0.04118754714727402, -0.060217875987291336, 0.01288581918925047, -0.02765449695289135, -0.01271770615130663, -0.025838883593678474, 0.006522763054817915, -0.025368167087435722, 0.03303409367799759, 0.018626859411597252, 0.015937060117721558, -0.06374824047088623, 0.04633178934454918, 0.007867662236094475, -0.0053123533725738525, -0.06885885447263718, -0.002269518095999956, 0.06637079268693924, -0.01776948571205139, -0.021736938506364822, -0.021299846470355988, 0.011851927265524864, -0.024847019463777542, 0.04683612659573555, 0.023233139887452126, 0.015777353197336197, -0.04613005369901657, 0.023720666766166687, 0.05877210944890976, 0.005699011962860823, -0.03180687502026558, 0.03974178060889244, -0.0038371665868908167, 0.07087620347738266, 0.013482618145644665, 0.013028714805841446, -0.02592293918132782, -0.05863761901855469, 0.047979291528463364, -0.04112030565738678, -0.007481003645807505, 0.0569901205599308, -0.014978818595409393, 0.02212359756231308, 0.06811916083097458, -0.044146329164505005, 0.0021024562884122133, 0.007434772793203592, 0.0183410681784153, -0.016458207741379738, -0.008334174752235413, 0.01815614476799965, 0.010784413665533066, 0.001656958251260221, -0.02802434377372265, -0.020324794575572014, 0.02400645799934864, 0.03900208696722984, 0.010481811128556728, 0.017315581440925598, -0.03587519749999046, -0.009683276526629925 ]
40,042
s3path.old_versions
mkdir
Create a path bucket. AWS S3 Service doesn't support folders, therefore the mkdir method will only create the current bucket. If the bucket path already exists, FileExistsError is raised. If exist_ok is false (the default), FileExistsError is raised if the target Bucket already exists. If exist_ok is true, OSError exceptions will be ignored. if parents is false (the default), mkdir will create the bucket only if this is a Bucket path. if parents is true, mkdir will create the bucket even if the path have a Key path. mode argument is ignored.
def mkdir(self, mode: int = 0o777, parents: bool = False, exist_ok: bool = False): """ Create a path bucket. AWS S3 Service doesn't support folders, therefore the mkdir method will only create the current bucket. If the bucket path already exists, FileExistsError is raised. If exist_ok is false (the default), FileExistsError is raised if the target Bucket already exists. If exist_ok is true, OSError exceptions will be ignored. if parents is false (the default), mkdir will create the bucket only if this is a Bucket path. if parents is true, mkdir will create the bucket even if the path have a Key path. mode argument is ignored. """ try: if not self.bucket: raise FileNotFoundError(f'No bucket in {type(self)} {self}') if self.key and not parents: raise FileNotFoundError(f'Only bucket path can be created, got {self}') if type(self)(self._flavour.sep, self.bucket).exists(): raise FileExistsError(f'Bucket {self.bucket} already exists') self._accessor.mkdir(self, mode) except OSError: if not exist_ok: raise
(self, mode: int = 511, parents: bool = False, exist_ok: bool = False)
[ -0.06374189257621765, 0.06761711090803146, -0.07743191719055176, -0.041504666209220886, 0.04262739419937134, 0.021911276504397392, -0.0042554959654808044, 0.04585070535540581, 0.03592725098133087, -0.0059169502928853035, 0.04882049560546875, 0.07051447033882141, 0.07152854651212692, -0.028321683406829834, -0.016478728502988815, -0.021549107506871223, 0.05870773270726204, -0.03820892050862312, -0.016062233597040176, 0.043605249375104904, 0.006043709348887205, 0.03820892050862312, 0.07160098105669022, -0.06620465219020844, 0.03666969761252403, 0.04740803316235542, -0.014930452220141888, 0.04664747789502144, 0.015944527462124825, 0.01751091331243515, -0.05479630082845688, 0.03688700124621391, 0.012866084463894367, 0.05008809268474579, 0.03824513778090477, -0.009194587357342243, -0.041178714483976364, 0.004167216829955578, -0.057729873806238174, -0.016460619866847992, 0.0032753737177699804, 0.020589357241988182, -0.04867563024163246, -0.042663607746362686, 0.06171374395489693, -0.03279447928071022, 0.039114344865083694, 0.04009220376610756, -0.04697342962026596, -0.03697754442691803, -0.007659892551600933, 0.05638984590768814, 0.015084374696016312, -0.07192693650722504, -0.013708129525184631, 0.017438478767871857, 0.052188675850629807, -0.024826744571328163, -0.024681875482201576, 0.023885102942585945, 0.03230554983019829, 0.07475186139345169, 0.04722695052623749, -0.0014758422039449215, -0.04907401651144028, -0.016904277727007866, -0.07772165536880493, -0.0746069923043251, 0.025732168927788734, 0.05284058302640915, -0.025098370388150215, -0.03639807179570198, 0.058526650071144104, 0.014794638380408287, 0.02258129045367241, 0.05399952456355095, -0.04067167639732361, -0.019973667338490486, 0.07395508885383606, -0.004325666464865208, -0.0781562551856041, -0.05729527026414871, -0.003730349475517869, -0.07185450196266174, 0.033772338181734085, 0.080401711165905, -0.022816700860857964, -0.009805749170482159, 0.012368100695312023, 0.030404159799218178, -0.04078032448887825, 0.0041762711480259895, -0.01119104865938425, -0.03179851174354553, -0.011073343455791473, 0.020190969109535217, 0.0027117468416690826, -0.03413451090455055, -0.0024718092754483223, 0.0029833742883056402, -0.010213189758360386, -0.02464565820991993, 0.01723928563296795, -0.04559718444943428, -0.0003981039044447243, -0.04740803316235542, -0.016759410500526428, -0.047733988612890244, -0.006632235366851091, -0.005853570532053709, -0.01977447420358658, 0.016125613823533058, 0.02136802114546299, 0.015328839421272278, -0.04005598649382591, 0.006727305240929127, 0.05631741136312485, -0.06892092525959015, -0.030820654705166817, -0.06385054439306259, 0.029842795804142952, -0.053709790110588074, 0.024573225528001785, -0.023052111268043518, 0.07123880833387375, 0.024500790983438492, 0.009185533039271832, 0.0007882853387854993, -0.015392218716442585, 0.05019674077630043, -0.03089308924973011, 0.04639396071434021, -0.0246999841183424, -0.05617254599928856, 0.007039676420390606, 0.004325666464865208, 0.014504902996122837, -0.006030128337442875, -0.026800569146871567, 0.04755290225148201, 0.06660303473472595, -0.047733988612890244, -0.008606061339378357, -0.003680551191791892, -0.0008833549218252301, 0.03580049052834511, -0.001264199148863554, -0.014559227973222733, 0.028122490271925926, 0.017746323719620705, 0.005328424274921417, 0.03940407931804657, 0.058309346437454224, 0.11183805018663406, 0.0065598017536103725, -0.024247271940112114, 0.012739324942231178, -0.005201664753258228, 0.0150753203779459, 0.02808627299964428, -0.009185533039271832, 0.011046180501580238, -0.00137171836104244, -0.0039567057974636555, 0.011761466041207314, 0.05986667796969414, -0.007148327771574259, 0.03415261581540108, -0.00011112672655144706, 0.0018844150472432375, 0.04936375096440315, 0.03835378959774971, 0.004479588475078344, 0.01825336180627346, -0.006351553834974766, -0.006197631824761629, -0.0022477167658507824, 0.005926004145294428, -0.009235331788659096, -0.05294923484325409, 0.03634374588727951, -0.013490826822817326, 0.04447446018457413, -0.0015561985783278942, 0.00867396779358387, 0.04298956319689751, 0.003820891957730055, 0.040961410850286484, 0.026166772469878197, 0.019846908748149872, -0.04378633573651314, 0.01772821508347988, 0.007718745153397322, 0.015274513512849808, 0.04548853263258934, -0.028285466134548187, 0.042084138840436935, -0.012721216306090355, 0.0028362427838146687, 0.08974569290876389, -0.02010042779147625, 0.08257472515106201, 0.006555274594575167, -0.027995729818940163, 0.08829700946807861, -0.0025917780585587025, -0.045090146362781525, 0.00137171836104244, -0.07533133029937744, -0.009271548129618168, -0.007632729597389698, 0.021784517914056778, 0.02919089049100876, 0.026510832831263542, 0.006369662471115589, 0.014658825471997261, 0.0015290358569473028, 0.0517178550362587, -0.009398307651281357, 0.0058897873386740685, 0.006396824959665537, -0.0010876413434743881, 0.011788628995418549, -0.007691582199186087, -0.015464653261005878, -0.031762298196554184, 0.025243239477276802, -0.0395851656794548, -0.014948560856282711, -0.01792740821838379, -0.03089308924973011, 0.013065277598798275, 0.008026589639484882, -0.002784180687740445, -0.01676846481859684, -0.046321526169776917, 0.09257061779499054, -0.028538985177874565, 0.0023246777709573507, -0.03741214796900749, -0.009452633559703827, -0.018760398030281067, 0.002220554044470191, 0.04396742209792137, 0.01977447420358658, 0.020190969109535217, 0.02734382450580597, 0.02062557265162468, 0.024681875482201576, -0.01512964628636837, -0.027579234912991524, 0.05320275202393532, -0.0919187068939209, -0.0051971375942230225, 0.027633560821413994, -0.03487695753574371, -0.012168907560408115, -0.00020895502530038357, 0.006229321472346783, 0.015537086874246597, -0.06160509213805199, -0.06877605617046356, 0.03207014128565788, -0.01288419310003519, -0.007007986772805452, -0.006251957267522812, 0.022816700860857964, -0.009380199015140533, -0.03534777835011482, 0.0838061049580574, 0.07706974446773529, 0.024681875482201576, -0.00291546736843884, -0.055882807821035385, 0.002192259533330798, -0.005957694258540869, -0.04882049560546875, -0.018325794488191605, -0.037738099694252014, -0.011734303086996078, 0.01899580843746662, -0.011906334199011326, -0.02109639346599579, -0.0005619291914626956, -0.0019330816576257348, 0.03232365846633911, 0.030331725254654884, 0.018054166808724403, 0.015491815283894539, 0.027162740007042885, -0.0850374847650528, 0.01624331809580326, -0.09206357598304749, 0.004221542272716761, 0.04164953529834747, -0.052550844848155975, -0.06077210232615471, -0.03127336874604225, 0.018959593027830124, -0.033138543367385864, -0.04813237488269806, 0.04204792156815529, 0.0021503835450857878, 0.04088897630572319, 0.019231218844652176, 0.00988723710179329, -0.0030060098506510258, -0.0026415763422846794, 0.008963704109191895, 0.05262327939271927, -0.04436580836772919, 0.021983711048960686, 0.021567214280366898, 0.024736201390624046, 0.030766328796744347, 0.08322663605213165, 0.011698086746037006, 0.002274879487231374, -0.047045864164829254, 0.032033924013376236, -0.023468606173992157, 0.012974735349416733, -0.048241026699543, -0.005360113922506571, -0.00011551237548701465, -0.04414850473403931, -0.031599320471286774, 0.04892914742231369, -0.02285291813313961, 0.03791918605566025, -0.035565078258514404, 0.0402008555829525, 0.03152688592672348, 0.029860904440283775, -0.07221666723489761, 0.000041203893488273025, 0.005844516213983297, -0.04092519357800484, 0.039802469313144684, 0.020879091694951057, 0.04892914742231369, -0.02962549403309822, -0.03168986365199089, -0.006577909924089909, -0.006528111640363932, 0.005704175215214491, 0.0614602267742157, 0.022780483588576317, 0.030223075300455093, 0.034623436629772186, 0.0310017392039299, 0.029661711305379868, 0.03867974132299423, 0.00764178391546011, 0.023160763084888458, -0.017519967630505562, -0.027180848643183708, -0.04697342962026596, -0.011833900585770607, -0.027470583096146584, 0.06616843491792679, -0.04802372306585312, 0.03907812759280205, 0.031870946288108826, 0.020589357241988182, -0.011426459066569805, 0.008325379341840744, 0.02676435187458992, -0.010068322531878948, -0.025243239477276802, 0.05548442155122757, -0.06189483031630516, -0.027126522734761238, -0.0278327539563179, 0.0241205133497715, 0.04045437276363373, 0.06562517583370209, -0.04237387329339981, 0.0024242745712399483, 0.012512968853116035, -0.009343982674181461, -0.004090256057679653, 0.026058120653033257, -0.00785003136843443, 0.032758262008428574, 0.0036737604532390833, 0.09010785818099976, 0.03268583118915558, 0.022363988682627678, -0.007687055040150881, -0.01792740821838379, -0.0018481980077922344, 0.027380041778087616, -0.03237798437476158, -0.013635694980621338, -0.04595935344696045, 0.04889293015003204, -0.00806733313947916, -0.003714504651725292, 0.05251463130116463, 0.014015973545610905, -0.059902895241975784, -0.010276569984853268, 0.026673810556530952, -0.01982880011200905, 0.008836944587528706, 0.0016241054981946945, 0.0313095860183239, 0.04143223166465759, -0.020770441740751266, 0.011272536590695381, -0.027995729818940163, -0.044619325548410416, -0.001823298865929246, -0.017628617584705353, 0.02786897122859955, -0.050812430679798126, -0.024989720433950424, -0.025134587660431862, 0.012331883423030376, -0.024374032393097878, -0.06066345050930977, 0.0025895144790410995, 0.06280025094747543, 0.025188913568854332, -0.01872418262064457, -0.012377155013382435, -0.03009631484746933, 0.047154515981674194, -0.025188913568854332, 0.03507615253329277, 0.021277479827404022, -0.04465554282069206, -0.02533378079533577, -0.021349912509322166, 0.014215166680514812, -0.03145445138216019, 0.03799161687493324, -0.025098370388150215, 0.057947177439928055, -0.02026340365409851, -0.04052680730819702, -0.029661711305379868, 0.024555116891860962, 0.02026340365409851, -0.009878182783722878, 0.018760398030281067, -0.0036601792089641094, 0.07225288450717926, 0.03241420164704323, 0.018597422167658806, 0.0493999682366848, 0.035891033709049225, 0.011417404748499393, -0.036307528614997864, -0.014224220998585224, 0.00171577965375036, -0.039693817496299744, -0.0006892544915899634, -0.05834556370973587, 0.0700436532497406, 0.06450245529413223, 0.06305377185344696, 0.025406215339899063, -0.06598734855651855, -0.0011187653290107846, -0.0002953947987407446, 0.00988723710179329, 0.0002403619437245652, -0.06414028257131577, -0.02904602326452732, -0.027796536684036255, -0.02379455976188183, 0.048313457518815994, 0.0033070635981857777, -0.01856120489537716, 0.015392218716442585, -0.029390083625912666, -0.008366123773157597, -0.02919089049100876, -0.00793604739010334, -0.05073999613523483, 0.006709196604788303, 0.013680966570973396, 0.0007548977737314999, -0.014360034838318825, -0.02544243261218071, 0.044039856642484665, 0.031490668654441833, -0.004866657312959433, -0.0017508649034425616, -0.02692732959985733, -0.03150877729058266, 0.0373397134244442, 0.004158162511885166, 0.007533133029937744, -0.011761466041207314, 0.01719401404261589, -0.0953231081366539, -0.04987078905105591, 0.021241262555122375, 0.001904787146486342, -0.053021665662527084, -0.011842953972518444, -0.02855709381401539, 0.006261011585593224, -0.03871595859527588, -0.04624909162521362, -0.01676846481859684, -0.06251052021980286, -0.03438802808523178, 0.015518978238105774, -0.03321097418665886, -0.004389045760035515, -0.02792329527437687, 0.020299620926380157, -0.02824924886226654, -0.008352542296051979, -0.022309662774205208, -0.026836786419153214, 0.024935394525527954, -0.044945280998945236, 0.039911117404699326, 0.0064375693909823895, -0.04364146664738655, 0.03127336874604225, 0.0493999682366848, -0.0298790130764246, 0.029480626806616783, 0.020064210519194603, -0.025623517110943794, -0.03167175501585007, -0.02067989856004715, 0.05476008355617523, -0.026963546872138977, 0.035619404166936874, 0.0033659161999821663, 0.0223820973187685, -0.01097374688833952, -0.00828010868281126, 0.0292995423078537, -0.024790527299046516, -0.021512890234589577, 0.0006603940855711699, -0.00686311861500144, 0.02618488110601902, 0.01617993786931038, -0.035999685525894165, 0.0816330835223198, -0.04349660128355026, 0.05352870374917984, 0.032287441194057465, 0.0016376868588849902, 0.03994733467698097, 0.09235331416130066, 0.010204135440289974, 0.017275502905249596, -0.1171257346868515, -0.016623595729470253, 0.005563834682106972, -0.01634291559457779, 0.025931362062692642, -0.020806659013032913, -0.024156728759407997, 0.03384477272629738, -0.0033093271777033806, 0.005038687959313393, 0.03777431696653366, 0.03190716356039047, -0.025351889431476593, -0.008719239383935928, 0.06225699931383133, 0.014115570113062859, -0.054253045469522476, 0.01704009249806404, 0.003562845988199115, -0.03538399562239647, -0.005378222558647394, -0.006989878136664629, -0.03634374588727951, -0.02591325342655182, -0.04425715655088425, -0.04280847683548927, -0.017284557223320007, -0.019557172432541847, -0.025786494836211205, -0.029589276760816574, 0.008651332929730415, -0.028919262811541557, 0.026583267375826836, -0.007564823143184185, 0.041975487023591995, -0.0058128261007368565, -0.05240597948431969, 0.03395342454314232, -0.03359125554561615, 0.011209157295525074, -0.06236565113067627, -0.02486295998096466, -0.003610380692407489, -0.008692076429724693, 0.017764432355761528, -0.02855709381401539, 0.07091286033391953, -0.0007254714728333056, 0.020027993246912956, 0.005781136453151703, 0.024374032393097878, -0.033410169184207916, -0.031074173748493195, -0.027850862592458725, -0.004162689670920372, 0.011888225562870502, 0.0024672821164131165, 0.009615609422326088, 0.035565078258514404, -0.058309346437454224, -0.0221104696393013, 0.025786494836211205, -0.05066756159067154, -0.05113838240504265, -0.10285624116659164, -0.015383164398372173, 0.034098293632268906, -0.07475186139345169, -0.07395508885383606, 0.005744919180870056, -0.021856950595974922, -0.028864936903119087, -0.062184564769268036, 0.03697754442691803, -0.027959512546658516, 0.009316819719970226, -0.07239775359630585, 0.040381938219070435, 0.0476977713406086, -0.028231140226125717, 0.03549264743924141, 0.026945438235998154, -0.010050213895738125, -0.05526712164282799, -0.031870946288108826, -0.04226522147655487, 0.013563261367380619, -0.02772410213947296, -0.1034357100725174, 0.06171374395489693, -0.042554959654808044, 0.0020258876029402018, -0.03976625204086304, -0.00693102553486824, 0.0077730705961585045, -0.022979676723480225, -0.02777842804789543, 0.027180848643183708, 0.02243642322719097, 0.019901234656572342, -0.05649849772453308, -0.019267436116933823, -0.04432959109544754, 0.01724833995103836, -0.05581037700176239, -0.034677762538194656, 0.06739980727434158, -0.03670591488480568, -0.009343982674181461, 0.04443824291229248, -0.029860904440283775, -0.03610833361744881, 0.016686975955963135, 0.019013917073607445, -0.033084217458963394, -0.03333773463964462, -0.020607465878129005, -0.01372623723000288, 0.02714463137090206, 0.042229004204273224, -0.024627549573779106, 0.004542968235909939, 0.02263561636209488, -0.021911276504397392, 0.000572964025195688, -0.02576838620007038, 0.018760398030281067, 0.060808319598436356, 0.02560540847480297, 0.06225699931383133, -0.017384152859449387, -0.011779574677348137, -0.07489673048257828, 0.02576838620007038, 0.01883283257484436, 0.0006569987745024264, 0.017148742452263832, -0.09546797722578049, 0.0022907243110239506, 0.05856286734342575, 0.047371815890073776, 0.05867151543498039, -0.04907401651144028, 0.02998766489326954, 0.03295745700597763, 0.00045271232374943793, -0.04809615761041641, -0.018850941210985184, -0.02904602326452732, 0.02343239076435566, -0.0014611290534958243, 0.08576182276010513, -0.01930365338921547, -0.006564328912645578, 0.023359956219792366, 0.026275422424077988, -0.062438081949949265, -0.019647715613245964, 0.00424417806789279, 0.05591902509331703, 0.0023790032137185335, 0.01290230080485344, -0.052080024033784866, 0.028810612857341766, -0.049001581966876984, -0.02508026361465454, -0.01957528106868267, -0.04125114530324936, -0.0885143131017685, -0.02888304553925991, 0.02739815041422844, 0.01883283257484436, -0.00477611506357789, -0.004110627807676792, 0.020879091694951057, -0.024301597848534584, 0.04172196611762047, 0.02433781512081623, -0.021023960784077644, 0.020860983058810234, 0.01698576658964157, 0.02067989856004715, 0.02448268234729767, 0.011127669364213943, 0.014658825471997261, 0.04432959109544754, -0.08626885712146759, 0.06500948965549469, -0.009823857806622982, 0.01222323253750801, 0.0568968839943409, -0.03755701333284378, 0.020082319155335426, 0.026673810556530952, -0.022237230092287064, 0.022762374952435493, 0.010557251051068306, -0.013264470733702183, -0.06464731693267822, -0.004622193053364754, 0.000505340110976249, -0.0015165862860158086, 0.013753400184214115, -0.044402025640010834, -0.015781551599502563, 0.003424768801778555, 0.021983711048960686, 0.04820480942726135, 0.03951273113489151, 0.030874980613589287, -0.004108364228159189 ]
40,043
s3path.old_versions
open
Opens the Bucket key pointed to by the path, returns a Key file object that you can read/write with
def open( self, mode: Literal["r", "w", "rb", "wb"] = 'r', buffering: int = DEFAULT_BUFFER_SIZE, encoding: Optional[str] = None, errors: Optional[str] = None, newline: Optional[str] = None ) -> Union[TextIOWrapper, smart_open.s3.Reader, smart_open.s3.MultipartWriter]: """ Opens the Bucket key pointed to by the path, returns a Key file object that you can read/write with """ self._absolute_path_validation() if smart_open.__version__ < '4.0.0' and mode.startswith('b'): mode = ''.join(reversed(mode)) return self._accessor.open( self, mode=mode, buffering=buffering, encoding=encoding, errors=errors, newline=newline)
(self, mode: Literal['r', 'w', 'rb', 'wb'] = 'r', buffering: int = 8192, encoding: Optional[str] = None, errors: Optional[str] = None, newline: Optional[str] = None) -> Union[_io.TextIOWrapper, smart_open.s3.Reader, smart_open.s3.MultipartWriter]
[ 0.021602412685751915, -0.049016643315553665, -0.13933739066123962, 0.03583953529596329, 0.038087502121925354, -0.0016482805367559195, 0.015863701701164246, 0.021547583863139153, 0.0574236735701561, 0.006935799960047007, -0.005551381502300501, -0.005729574244469404, 0.003853983711451292, 0.026610078290104866, 0.008018662221729755, 0.01189777534455061, -0.004733523819595575, -0.04689661040902138, -0.03907441720366478, 0.06754866242408752, -0.007945558056235313, 0.00918376725167036, 0.006419498939067125, -0.049711138010025024, 0.05493811517953873, 0.04364345222711563, -0.009393942542374134, 0.028839770704507828, 0.016814060509204865, -0.026829393580555916, 0.03507193922996521, 0.01266537420451641, 0.01953720860183239, 0.046969715505838394, -0.012372955679893494, -0.040353745222091675, 0.007337875664234161, -0.0034519084729254246, 0.0298084057867527, -0.044228289276361465, -0.03472469002008438, 0.04601935297250748, 0.0181573573499918, -0.0700342208147049, 0.0056016407907009125, 0.03501711040735245, 0.0228451918810606, 0.014831098727881908, 0.03434089198708534, 0.002976728370413184, 0.02858390286564827, 0.03790474310517311, -0.0051949964836239815, -0.05548639968037605, -0.03446882590651512, 0.00035838395706377923, 0.006716486532241106, -0.030612556263804436, -0.07727157324552536, -0.030959803611040115, -0.02693904936313629, -0.0017967743333429098, 0.04316827282309532, -0.025550061836838722, -0.04989389702677727, -0.024435216560959816, -0.025897309184074402, -0.04302206635475159, 0.020432738587260246, 0.016466813161969185, 0.06217547506093979, -0.014465575106441975, -0.008722294121980667, -0.024033142253756523, -0.07215425372123718, 0.004870594944804907, -0.040573060512542725, 0.025641443207859993, 0.019610311836004257, -0.00172938103787601, -0.024782463908195496, -0.029424605891108513, -0.029607368633151054, -0.027213191613554955, 0.008032369427382946, -0.0002824236871674657, 0.02344830520451069, -0.016759231686592102, 0.03119739331305027, 0.01758166030049324, -0.030356690287590027, 0.04817593842744827, -0.05117322877049446, -0.02202276512980461, 0.02218724973499775, -0.05248911306262016, -0.007283046841621399, -0.02449004538357258, 0.004792921245098114, 0.04386276751756668, -0.03318949416279793, -0.00332397548481822, 0.038928207010030746, 0.016804922372102737, -0.005345774814486504, -0.014429022558033466, -0.024636253714561462, 0.04006132856011391, 0.007840469479560852, -0.036442648619413376, 0.0028053894639015198, 0.004984820727258921, -0.007694260682910681, 0.08472824841737747, -0.027377678081393242, 0.012775030918419361, 0.014154880307614803, -0.004459381569176912, 0.00024929814389906824, -0.045397963374853134, -0.014063499867916107, -0.0158819779753685, -0.007205373607575893, 0.003657515160739422, 0.06553828716278076, 0.03636954352259636, 0.02258932590484619, -0.03368294984102249, 0.038526132702827454, 0.030484624207019806, 0.014328503981232643, 0.024069692939519882, 0.016146982088685036, -0.008950745686888695, 0.01283899787813425, 0.017024237662553787, 0.02240656316280365, 0.044886231422424316, -0.062212023884058, 0.11638254672288895, 0.09123455733060837, -0.03216603025794029, 0.022041041404008865, -0.027304572984576225, -0.03180050849914551, -0.012610545381903648, 0.021748622879385948, -0.08275441825389862, 0.020213425159454346, 0.010691549628973007, 0.07109423726797104, -0.0027162933256477118, 0.07416462898254395, 0.07683295011520386, 0.03841647505760193, -0.030137376859784126, 0.015032135881483555, 0.0005631339736282825, -0.004454812500625849, 0.019902730360627174, 0.0010891444981098175, 0.03507193922996521, -0.011769842356443405, -0.014328503981232643, 0.027176639065146446, 0.025550061836838722, -0.03223913535475731, -0.004299465101212263, 0.04408208280801773, -0.045617278665304184, 0.0256779957562685, 0.04408208280801773, -0.018486328423023224, 0.020560672506690025, -0.002638619625940919, -0.0032463017851114273, -0.0604940690100193, -0.0027414229698479176, 0.060420963913202286, -0.05409741401672363, 0.0026180590502917767, -0.033719502389431, 0.01161449495702982, -0.00233934773132205, -0.017718730494379997, 0.06378377228975296, -0.0003041266172658652, 0.0134878009557724, 0.06217547506093979, -0.0011559666600078344, -0.006944938097149134, 0.02624455653131008, -0.03423123434185982, -0.00009373667853651568, -0.034834347665309906, -0.036186784505844116, 0.02271725796163082, -0.010252921842038631, -0.0164211243391037, 0.1448933482170105, -0.0352364219725132, 0.07120389491319656, -0.011952604167163372, 0.005948887672275305, 0.013789357617497444, 0.025221090763807297, 0.0164211243391037, -0.02684766985476017, -0.015717491507530212, 0.07248322665691376, -0.024873845279216766, -0.039878565818071365, -0.052891187369823456, 0.029735300689935684, 0.047883521765470505, 0.05252566561102867, -0.059068527072668076, 0.02032308280467987, 0.0035752723924815655, 0.005688452627509832, 0.09430494904518127, -0.0063418252393603325, 0.00020532116468530148, 0.027907686308026314, 0.005373189225792885, -0.008612637408077717, 0.040317192673683167, -0.01085603516548872, -0.05186772346496582, 0.010380854830145836, -0.014438160695135593, 0.03598574548959732, 0.028181828558444977, 0.02310105785727501, 0.004907147027552128, -0.05599813535809517, 0.014831098727881908, 0.013634010218083858, -0.04846835881471634, -0.06725624203681946, 0.022114144638180733, -0.04905319586396217, -0.03180050849914551, 0.026865946128964424, -0.06740245223045349, -0.059945784509181976, -0.0064743272960186005, 0.02659180387854576, 0.04141376167535782, -0.02533074840903282, 0.05965336412191391, 0.06378377228975296, -0.04251033067703247, 0.009224887937307358, 0.023685894906520844, -0.017663901671767235, -0.0363147146999836, -0.0813654363155365, -0.013789357617497444, -0.002277665538713336, -0.02401486597955227, -0.008557808585464954, 0.041267555207014084, -0.018787885084748268, 0.04759110137820244, 0.025385577231645584, 0.015479901805520058, -0.021730346605181694, 0.018915819004178047, 0.01733493059873581, -0.005176720209419727, 0.053073950111866, -0.02388693206012249, 0.00444338982924819, -0.034578483551740646, -0.07727157324552536, -0.005939750000834465, 0.02867528423666954, 0.013177106156945229, -0.01717044599354267, -0.05822782590985298, 0.016521641984581947, -0.022772086784243584, 0.010061022825539112, 0.006524586584419012, 0.01320452056825161, -0.0022730964701622725, -0.019080303609371185, 0.03499883413314819, 0.012171918526291847, -0.038964759558439255, 0.02511143498122692, -0.013807633891701698, 0.015653524547815323, 0.04704281687736511, -0.003054402070119977, -0.056327104568481445, -0.06053061783313751, 0.06981490552425385, -0.05011321231722832, -0.015653524547815323, 0.013341591693460941, 0.048322148621082306, 0.033262599259614944, 0.014465575106441975, -0.00589405931532383, 0.036223337054252625, -0.02788941003382206, -0.037831638008356094, 0.06564794480800629, -0.005350343883037567, 0.0005697019514627755, -0.012080537155270576, 0.03386571258306503, -0.02315588667988777, 0.012784169055521488, -0.009631533175706863, 0.03576643019914627, -0.0014472429174929857, 0.028693560510873795, 0.01124897226691246, -0.02571454830467701, -0.040573060512542725, -0.03878199681639671, 0.0002445863210596144, -0.05369533970952034, -0.002487841295078397, 0.0025106866378337145, 0.0016688412288203835, 0.06140787526965141, 0.009914813563227654, 0.043314483016729355, 0.012573993764817715, 0.04247378185391426, -0.09298906475305557, 0.02202276512980461, -0.007059164345264435, -0.028163552284240723, 0.04013443365693092, 0.016996823251247406, 0.048066284507513046, -0.02202276512980461, -0.025550061836838722, -0.011870361864566803, -0.10373544692993164, -0.012144504114985466, 0.05903197452425957, -0.05844713747501373, 0.02533074840903282, -0.023046229034662247, 0.010801206342875957, -0.024343837052583694, 0.01246433611959219, -0.03075876645743847, -0.030904974788427353, -0.04024409130215645, -0.013515215367078781, -0.008731432259082794, -0.012966930866241455, -0.022296907380223274, -0.012656236067414284, -0.049235958606004715, -0.028821494430303574, -0.009649808518588543, -0.012775030918419361, 0.0000762458294047974, 0.03472469002008438, 0.02533074840903282, -0.06319893896579742, 0.01796545833349228, 0.01068241149187088, -0.036479201167821884, -0.05142909660935402, 0.04506899416446686, -0.007502360735088587, 0.04484967887401581, 0.017152169719338417, -0.02523936703801155, 0.004879733081907034, 0.0048843021504580975, -0.0034427703358232975, 0.030137376859784126, 0.03816060721874237, 0.0037580339703708887, 0.008635482750833035, 0.017627349123358727, -0.008260820992290974, -0.0024924103636294603, 0.06323549151420593, -0.003205180400982499, 0.026957325637340546, 0.010326026938855648, 0.07120389491319656, -0.004815766587853432, -0.03393881767988205, 0.02823665738105774, 0.06469758599996567, -0.03499883413314819, 0.018733056262135506, 0.03731990605592728, 0.010554478503763676, -0.020725157111883163, -0.01720699854195118, 0.030868422240018845, 0.003020134288817644, 0.018769608810544014, -0.0048843021504580975, 0.03189188614487648, -0.007187097333371639, -0.021547583863139153, -0.0009132365230470896, -0.01207139901816845, -0.036223337054252625, 0.0232838187366724, 0.009796017780900002, 0.004169247578829527, -0.010600169189274311, -0.03390226513147354, -0.03397537022829056, 0.025403853505849838, -0.019043751060962677, -0.03717369586229324, -0.02832803688943386, -0.04028064012527466, -0.025659719482064247, -0.03801439702510834, 0.014849374070763588, -0.03466986119747162, 0.061334770172834396, -0.009677222929894924, 0.001673410297371447, -0.011769842356443405, 0.0011451152386143804, -0.0023918915539979935, -0.05921473726630211, 0.030996356159448624, -0.02231518365442753, 0.03403019905090332, 0.056327104568481445, -0.01812080666422844, 0.014072638005018234, -0.027121812105178833, -0.0024124521296471357, 0.059982333332300186, -0.02423417940735817, -0.013250211253762245, 0.0076302941888570786, 0.0574236735701561, 0.09284286201000214, 0.01337814424186945, 0.03286052495241165, 0.010426545515656471, 0.002421590266749263, -0.00031869043596088886, -0.06689072400331497, -0.009270578622817993, 0.03490745276212692, -0.03571160510182381, 0.011806394904851913, -0.0687548890709877, 0.007977540604770184, 0.031032908707857132, 0.05979957431554794, -0.07690605521202087, -0.06411274522542953, 0.013807633891701698, -0.025476956740021706, 0.027834581211209297, 0.008941607549786568, -0.09423184394836426, -0.0116419093683362, 0.007520637009292841, -0.061846502125263214, 0.012692788615822792, 0.03797784820199013, 0.00636467058211565, 0.039622701704502106, 0.005747850053012371, -0.0037923017516732216, -0.04042685031890869, -0.05113667622208595, -0.08516687154769897, -0.007219080347567797, 0.0072510638274252415, -0.0009143787901848555, -0.008169440552592278, -0.028437694534659386, 0.03302500769495964, 0.04572693631052971, 0.02344830520451069, 0.027816304937005043, 0.053147055208683014, -0.01827615313231945, 0.02240656316280365, -0.012126227840781212, 0.08933383971452713, -0.011413457803428173, -0.021565860137343407, -0.09627877175807953, -0.027871133759617805, -0.004637573845684528, -0.003063540207222104, -0.02893115021288395, 0.02227863110601902, -0.009211181662976742, 0.0062001850455999374, -0.05603468418121338, -0.08143854141235352, 0.03580298274755478, -0.08121922612190247, -0.0127293411642313, 0.003620962845161557, 0.006912955082952976, 0.0163206048309803, -0.03867233917117119, -0.0036712223663926125, -0.04254688322544098, -0.004605590831488371, -0.058629900217056274, -0.01039913110435009, 0.04408208280801773, 0.005638193339109421, 0.018705643713474274, -0.034487102180719376, -0.038087502121925354, -0.02467280626296997, 0.02379555068910122, -0.033609844744205475, -0.0015808872412890196, 0.005131029989570379, -0.007616586983203888, -0.027432506904006004, -0.026774564757943153, 0.045105546712875366, -0.011660185642540455, 0.02249794453382492, -0.020341359078884125, 0.05643676221370697, 0.025403853505849838, 0.009165490977466106, 0.024179350584745407, 0.03801439702510834, -0.025093158707022667, -0.041048239916563034, 0.02798079140484333, 0.03510849177837372, 0.007881591096520424, -0.03859923407435417, 0.03293362632393837, -0.046494532376527786, 0.019244790077209473, -0.04049995541572571, 0.04419173672795296, -0.005683883558958769, 0.038928207010030746, -0.0243621114641428, 0.030429795384407043, -0.08750621974468231, -0.03329915180802345, -0.03638781979680061, 0.03911096975207329, 0.046750400215387344, -0.05983612686395645, 0.0230645053088665, 0.01992100663483143, -0.021894831210374832, 0.03532780334353447, 0.04941871762275696, 0.03790474310517311, 0.007077440153807402, 0.0020652052480727434, 0.07493222504854202, 0.04587314650416374, -0.016192670911550522, 0.042656540870666504, -0.005373189225792885, -0.03355501592159271, 0.0013318746350705624, -0.03514504432678223, -0.03298845514655113, 0.012263298965990543, -0.044264841824769974, -0.017417173832654953, 0.008073491044342518, -0.010536202229559422, 0.03529125079512596, -0.0356750525534153, 0.015598696656525135, -0.04276619851589203, -0.009960503317415714, 0.009622395038604736, -0.04770075902342796, -0.008489273488521576, -0.03384743630886078, 0.05435327813029289, -0.005245255772024393, 0.025129711255431175, -0.04470347240567207, 0.021218614652752876, -0.028181828558444977, -0.016850613057613373, -0.021474480628967285, -0.06400308758020401, 0.08099991083145142, -0.012601407244801521, 0.04919940605759621, -0.02184000238776207, 0.047883521765470505, 0.021383099257946014, 0.020414462313055992, -0.016329742968082428, -0.0298084057867527, -0.008991867303848267, -0.015735767781734467, 0.02533074840903282, 0.08151164650917053, -0.016366295516490936, -0.00332854432053864, 0.017124755308032036, -0.03293362632393837, 0.03693610429763794, -0.029534263536334038, 0.01846805214881897, 0.07507843524217606, -0.045361410826444626, -0.01298520714044571, 0.0031914731953293085, -0.011861223727464676, 0.014949893578886986, -0.0011291236151009798, -0.001401552464812994, 0.011797256767749786, 0.06901075690984726, 0.02227863110601902, 0.029040807858109474, 0.06619622558355331, 0.021858278661966324, 0.047444894909858704, 0.013953843154013157, 0.0365523062646389, -0.024416940286755562, -0.040353745222091675, -0.01150483824312687, 0.011970880441367626, -0.04919940605759621, -0.04905319586396217, 0.06129821762442589, 0.022735534235835075, 0.04506899416446686, -0.03355501592159271, -0.018733056262135506, -0.015562144108116627, -0.013085725717246532, -0.06389342993497849, 0.004036745522171259, -0.0891876295208931, 0.07595569640398026, -0.08428961783647537, 0.020249977707862854, -0.02549523301422596, 0.03329915180802345, -0.04441105201840401, -0.01359745766967535, 0.024983501061797142, -0.04865112155675888, -0.05979957431554794, -0.0019132847664877772, -0.00619104690849781, 0.03059427998960018, 0.07083836942911148, 0.0007670273189432919, 0.003888251492753625, -0.01692371815443039, 0.0030932389199733734, -0.04974769055843353, 0.0228451918810606, 0.06509965658187866, 0.006433206144720316, 0.014456436969339848, 0.029607368633151054, -0.00683071231469512, 0.03185533359646797, 0.008749708533287048, 0.02319243922829628, 0.024983501061797142, -0.023210715502500534, 0.019866177812218666, 0.030009442940354347, -0.033043283969163895, -0.05753333121538162, 0.05493811517953873, -0.01473057921975851, 0.002857933519408107, -0.03936683386564255, -0.059324394911527634, -0.02114550955593586, 0.05354912951588631, 0.03925717622041702, 0.01900719851255417, -0.02470935881137848, -0.015114379115402699, 0.00025172546156682074, 0.06374721974134445, -0.10402786731719971, -0.026427317410707474, -0.03954959660768509, -0.004463950637727976, -0.005939750000834465, 0.010444821789860725, -0.006035699509084225, -0.007644000928848982, -0.02253449708223343, -0.0016482805367559195, -0.05464569851756096, 0.0578623004257679, 0.058629900217056274, -0.008375046774744987, 0.021638965234160423, 0.011258110404014587, -0.008818243630230427, -0.002048071473836899, -0.054024308919906616, -0.012418646365404129, 0.0018881551222875714, -0.005770695395767689, -0.029351502656936646, -0.06458792835474014, 0.05753333121538162, -0.04616556316614151, 0.041962046176195145, 0.052708424627780914, -0.026482146233320236, -0.06268720328807831, -0.04726213216781616, 0.02971702441573143, -0.02476418763399124, 0.027359401807188988, -0.031654298305511475, 0.07624810934066772, 0.07076526433229446, -0.016329742968082428, 0.047846969217061996, -0.0539512038230896, -0.020085493102669716, 0.038306817412376404, -0.030393242835998535, 0.013040035031735897, 0.016804922372102737, -0.042144808918237686, 0.05464569851756096, 0.010947415605187416, 0.003678075736388564, 0.060932695865631104, -0.003863121848553419, -0.0006562281050719321, -0.028967702761292458, -0.05234290286898613, 0.021419651806354523, 0.009119800291955471, 0.009622395038604736, -0.050405628979206085, -0.006944938097149134, -0.01320452056825161, 0.038489580154418945, -0.019994111731648445, 0.021565860137343407, -0.019263066351413727, -0.014584369957447052 ]
40,044
s3path.old_versions
owner
Returns the name of the user owning the Bucket or key. Similarly to boto3's ObjectSummary owner attribute
def owner(self) -> str: """ Returns the name of the user owning the Bucket or key. Similarly to boto3's ObjectSummary owner attribute """ self._absolute_path_validation() if not self.is_file(): return KeyError('file not found') return self._accessor.owner(self)
(self) -> str
[ 0.011890353634953499, -0.0004248506447765976, -0.045498088002204895, 0.05007937178015709, 0.057808101177215576, -0.030949892476201057, 0.041091665625572205, -0.007151698227971792, 0.07337047904729843, 0.0005125529132783413, 0.014924142509698868, -0.023693278431892395, 0.008891536854207516, -0.026858210563659668, -0.036020778119564056, 0.025057172402739525, 0.0069768400862813, 0.003608634928241372, 0.02245178632438183, 0.026665866374969482, 0.0066140093840658665, -0.02150755189359188, 0.03829393535852432, -0.08050469309091568, -0.013324190862476826, 0.02963845618069172, 0.029848285019397736, -0.005857747979462147, 0.037664443254470825, -0.021402636542916298, -0.011829153634607792, -0.02899148128926754, 0.07602832466363907, 0.05483551323413849, 0.03888845071196556, 0.018220217898488045, 0.032226357609033585, 0.04392436519265175, -0.03341539204120636, -0.05630432441830635, -0.032873332500457764, 0.049240052700042725, 0.016567809507250786, -0.03916822373867035, 0.0382239893078804, 0.05633929371833801, 0.047176726162433624, 0.02009120024740696, 0.004655598197132349, -0.008069703355431557, 0.023938080295920372, 0.03039034642279148, -0.02724289894104004, -0.025476831942796707, -0.006793238688260317, -0.026875697076320648, 0.028536848723888397, -0.03488419950008392, -0.04937994107604027, 0.05137332156300545, 0.005341916345059872, 0.004426096566021442, 0.06959354132413864, -0.09344419091939926, -0.024812370538711548, -0.01912948116660118, 0.009328681975603104, -0.019549140706658363, -0.02348344959318638, 0.015807176008820534, 0.012292527593672276, -0.00887405127286911, 0.03238372877240181, 0.014434539712965488, -0.015763461589813232, -0.07386007905006409, -0.010946120135486126, 0.040007542818784714, -0.01982891373336315, -0.021280236542224884, 0.0006469751242548227, -0.05151320993900299, -0.02761010080575943, -0.03455197066068649, 0.020266059786081314, -0.0014644369948655367, 0.0008715585572645068, -0.03373013436794281, 0.008563677780330181, 0.04882039502263069, 0.02280150167644024, 0.014959114603698254, -0.004111351910978556, -0.006028234492987394, 0.01314058993011713, -0.012817101553082466, -0.016559066250920296, -0.03818902000784874, 0.01982891373336315, 0.008445648476481438, -0.013402876444160938, 0.021262750029563904, 0.07728730142116547, 0.07372019439935684, -0.01744209975004196, 0.027854902669787407, -0.021979669108986855, -0.008310133591294289, 0.028082218021154404, 0.015763461589813232, -0.04591774940490723, -0.02250424399971962, -0.004327739123255014, 0.01844753511250019, 0.06592152267694473, -0.05242247134447098, -0.005101486574858427, 0.022574186325073242, 0.03720981255173683, -0.0394829697906971, 0.006780124735087156, 0.024008022621273994, -0.0020217972341924906, -0.021035434678196907, 0.012030240148305893, -0.0036304921377450228, -0.024427682161331177, -0.01877976395189762, -0.006898153573274612, -0.0013813793193548918, -0.02892153710126877, -0.039028339087963104, -0.058542508631944656, -0.023658307269215584, 0.015536146238446236, 0.02689318172633648, 0.0645226538181305, 0.05700375512242317, -0.011654295027256012, 0.09225516021251678, 0.05910205468535423, 0.020948005840182304, -0.006631494965404272, -0.015789691358804703, 0.014556940644979477, 0.020405946299433708, 0.013708878308534622, 0.01743335649371147, 0.06245933100581169, -0.05840262025594711, 0.030810005962848663, 0.004146323539316654, 0.056793924421072006, 0.056444209069013596, -0.010622632689774036, -0.005516774486750364, -0.02932371012866497, -0.045847807079553604, -0.023693278431892395, -0.027767473831772804, 0.004738655872642994, -0.012624758295714855, 0.019164452329277992, -0.05836764723062515, -0.005241373088210821, -0.008056589402258396, 0.01108600664883852, 0.011007320135831833, -0.00486542796716094, -0.012362470850348473, -0.04228070005774498, -0.03537380322813988, -0.07074760645627975, 0.045183345675468445, 0.023273618891835213, -0.0005002582329325378, -0.008471877314150333, -0.003851250745356083, -0.0038862223736941814, -0.0327509306371212, 0.004738655872642994, 0.009442339651286602, 0.02390310913324356, 0.027137983590364456, -0.010814975947141647, 0.004624997731298208, 0.052632302045822144, 0.013770079240202904, 0.06966348737478256, 0.005870862398296595, -0.03173675388097763, 0.030180515721440315, -0.05556991696357727, 0.051058579236269, 0.05798296257853508, -0.07567860186100006, 0.029516054317355156, 0.027015583589673042, -0.07791678607463837, 0.005175800994038582, 0.010474002920091152, 0.009319938719272614, -0.028519364073872566, 0.023063790053129196, 0.03142200782895088, 0.028466906398534775, 0.011663038283586502, -0.003569291904568672, -0.046162549406290054, 0.0415462963283062, 0.001784645952284336, -0.027505185455083847, -0.04130149260163307, 0.03619563579559326, -0.007090497761964798, 0.024480139836668968, -0.016803868114948273, -0.033974938094615936, -0.007038040552288294, 0.05459071323275566, 0.03752455860376358, 0.025809062644839287, 0.031491950154304504, -0.03142200782895088, 0.00045654369750991464, -0.028886565938591957, 0.028117189183831215, -0.013866250403225422, 0.011094748973846436, -0.024130424484610558, 0.012065212242305279, -0.026123806834220886, -0.024812370538711548, 0.07204155623912811, -0.011523151770234108, 0.02147258073091507, -0.005359401926398277, -0.011654295027256012, -0.029900742694735527, -0.004734284244477749, -0.0415462963283062, 0.0017802744405344129, 0.08379202336072922, 0.014014880172908306, -0.036965012550354004, -0.05361150577664375, 0.014338367618620396, 0.03745461627840996, 0.007986646145582199, -0.07567860186100006, 0.07497917115688324, 0.06480243057012558, -0.050254229456186295, -0.00934616755694151, -0.01140949409455061, -0.06623626500368118, -0.049624741077423096, -0.04165121167898178, 0.034919172525405884, 0.02182229608297348, -0.03640546649694443, -0.025354430079460144, 0.04930999502539635, -0.011969040147960186, 0.001096141990274191, -0.026053862646222115, 0.008170247077941895, 0.007733101490885019, -0.07372019439935684, 0.018639877438545227, 0.08931753784418106, 0.06127029284834862, -0.015850890427827835, -0.05612946301698685, -0.05214269831776619, -0.06438276916742325, 0.0031255893409252167, 0.05259732902050018, -0.04930999502539635, 0.009800799190998077, -0.020248573273420334, 0.013586477376520634, 0.014766770415008068, -0.00011816585902124643, 0.028484391048550606, -0.0491701103746891, -0.009739598259329796, -0.033240534365177155, -0.039413027465343475, 0.0010453237919136882, -0.003173675388097763, -0.019007081165909767, -0.08029486238956451, -0.07497917115688324, -0.04829581826925278, -0.013061903417110443, -0.031142234802246094, -0.02934119664132595, 0.018954623490571976, 0.017494557425379753, -0.0665859803557396, 0.06127029284834862, -0.012056468985974789, -0.012170126661658287, -0.0069724684581160545, 0.04151132330298424, 0.03951793909072876, -0.04661718010902405, -0.010657603852450848, 0.024759912863373756, -0.003066574689000845, 0.0072128986939787865, 0.022032126784324646, 0.0830925926566124, -0.0138400224968791, 0.04462379962205887, 0.014189738780260086, -0.0034403339959681034, 0.0060151200741529465, 0.05014931410551071, -0.02998817153275013, 0.03385253623127937, -0.02047588862478733, -0.06787993013858795, 0.01244115736335516, -0.011357036419212818, -0.08379202336072922, 0.07693758606910706, -0.06144515052437782, 0.08644986897706985, -0.015203915536403656, -0.04067200422286987, 0.018954623490571976, 0.025162087753415108, -0.08211338520050049, 0.024689970538020134, 0.00673203868791461, -0.0442391112446785, 0.06134023889899254, -0.00285018770955503, 0.03584592044353485, -0.048610564321279526, 0.020633261650800705, -0.005696004256606102, -0.06990828365087509, -0.004273096099495888, 0.04637238010764122, -0.036685239523649216, 0.029848285019397736, -0.05378636345267296, -0.020021257922053337, 0.10169749706983566, -0.015763461589813232, -0.025651689618825912, 0.00018291801097802818, -0.0023343563079833984, -0.028904050588607788, 0.0024982858449220657, -0.016882553696632385, 0.05735347047448158, 0.032925788313150406, -0.1173647865653038, 0.03311813250184059, -0.027155470103025436, -0.030862461775541306, 0.045812834054231644, 0.013577735051512718, 0.007462071254849434, 0.019374283030629158, -0.04941491037607193, -0.04563797637820244, -0.01631426438689232, -0.012659729458391666, -0.04256047308444977, -0.007632558234035969, 0.06770507246255875, 0.0071910410188138485, -0.04063703119754791, -0.06099051982164383, -0.02489979937672615, 0.04731661453843117, 0.04986954107880592, -0.0009994235588237643, 0.047561414539813995, -0.049624741077423096, 0.01778307370841503, -0.046931926161050797, 0.0073484135791659355, -0.0019059537444263697, 0.019619083032011986, 0.04193098470568657, -0.04661718010902405, 0.024689970538020134, 0.0005174708203412592, -0.010666347108781338, -0.028414448723196983, 0.003173675388097763, -0.03623060882091522, -0.024130424484610558, -0.028816621750593185, 0.029218796640634537, -0.05427596718072891, -0.007029297295957804, -0.014242195524275303, -0.006002005655318499, 0.004406425170600414, -0.010185486637055874, -0.001664430950768292, -0.006771381478756666, -0.0009710091399028897, -0.037979189306497574, -0.06455762684345245, 0.03247115761041641, -0.019304338842630386, 0.04046217352151871, 0.017503300681710243, -0.01640169322490692, -0.07441962510347366, 0.02962096966803074, 0.004576912149786949, 0.013359162025153637, 0.033939965069293976, -0.02733032777905464, 0.03348533436655998, -0.008799736388027668, -0.05322681739926338, -0.011531895026564598, -0.06868427991867065, 0.059766512364149094, 0.030460288748145103, 0.00800850335508585, 0.030425317585468292, 0.03540877252817154, 0.009538511745631695, 0.008930879645049572, -0.010482746176421642, 0.008922136388719082, -0.007064268924295902, -0.02517957240343094, 0.07840639352798462, -0.0002651559771038592, -0.026106320321559906, -0.022434299811720848, 0.028781650587916374, 0.0044304681941866875, 0.0456729456782341, -0.04934496805071831, 0.0645226538181305, 0.04623249173164368, 0.03623060882091522, 0.0021179693285375834, 0.0141547666862607, 0.006198721006512642, -0.04644232243299484, -0.06826461851596832, 0.01177669595927, -0.027068041265010834, -0.03039034642279148, 0.002268784446641803, -0.018132789060473442, -0.05259732902050018, 0.031946584582328796, 0.04983457177877426, -0.0558147206902504, 0.003558363299816847, -0.03161435201764107, 0.017520785331726074, 0.004445768427103758, 0.024812370538711548, 0.05319184809923172, 0.040077485144138336, -0.037979189306497574, -0.05612946301698685, 0.02280150167644024, -0.012458642944693565, 0.002996631432324648, 0.040077485144138336, 0.03892342373728752, -0.05315687507390976, -0.017503300681710243, -0.0545557402074337, -0.017957931384444237, -0.027172954753041267, 0.04364459216594696, 0.042105842381715775, 0.013394134119153023, -0.04598769173026085, -0.015396259725093842, 0.03402739390730858, -0.0382239893078804, 0.04458882659673691, 0.01246738526970148, -0.08169372379779816, 0.03864365071058273, -0.02694563940167427, 0.03210395574569702, 0.04392436519265175, 0.04147635027766228, -0.0751890018582344, -0.010788747109472752, 0.003532134462147951, 0.003289518877863884, 0.04563797637820244, -0.03752455860376358, 0.004541940521448851, -0.03238372877240181, -0.0436096228659153, -0.06266915798187256, 0.04018240049481392, -0.041091665625572205, 0.03177172318100929, 0.026176264509558678, 0.02007371559739113, 0.011453208513557911, -0.020580803975462914, 0.03547871857881546, -0.05924193933606148, 0.008900279179215431, 0.00740087078884244, -0.0036392351612448692, 0.01361270621418953, -0.08323247730731964, 0.006163749378174543, 0.011287093162536621, -0.004200967028737068, 0.00622057868167758, -0.011549380607903004, 0.006928754039108753, -0.046861983835697174, 0.019531654193997383, -0.035286374390125275, -0.014915400184690952, -0.04703684151172638, -0.005202029831707478, -0.022399328649044037, 0.08099429309368134, -0.025441860780119896, -0.01809781789779663, -0.032191384583711624, 0.031142234802246094, 0.03345036134123802, -0.006893782410770655, 0.03238372877240181, -0.029533540830016136, 0.041056692600250244, -0.003309190273284912, -0.025144601240754128, -0.06714552640914917, 0.03434213995933533, -0.04332984983921051, 0.06641112267971039, -0.026176264509558678, 0.04903022199869156, -0.023326076567173004, 0.058752335608005524, 0.03067011944949627, 0.04193098470568657, -0.038014162331819534, -0.016506608575582504, -0.007073012180626392, 0.04021737352013588, -0.005049028899520636, 0.017905473709106445, 0.014268424361944199, 0.023046303540468216, -0.010692575946450233, -0.02042343094944954, 0.024340253323316574, 0.02998817153275013, 0.0012436785036697984, -0.06843947619199753, 0.045148372650146484, 0.03142200782895088, -0.022749044001102448, -0.016847582533955574, -0.0029288739897310734, 0.0016065092058852315, 0.061864811927080154, -0.016559066250920296, -0.04661718010902405, 0.02288893051445484, -0.058752335608005524, 0.0626341849565506, 0.004568168893456459, -0.06480243057012558, 0.018132789060473442, -0.03983268514275551, 0.03787427395582199, -0.016497865319252014, 0.02554677426815033, -0.015326316468417645, -0.03437711298465729, -0.053331732749938965, -0.013245504349470139, 0.0489952526986599, -0.01809781789779663, 0.0024130423553287983, -0.09806044399738312, 0.034989114850759506, -0.0010671811178326607, 0.0306876040995121, 0.020038742572069168, -0.0005726604140363634, 0.09267481416463852, -0.016218092292547226, -0.008441276848316193, -0.01907702349126339, 0.010648860596120358, -0.003628306556493044, -0.021962182596325874, -0.03693003952503204, 0.015807176008820534, -0.030232973396778107, -0.005696004256606102, -0.004681827034801245, 0.03790924698114395, -0.0004196595400571823, -0.012677215039730072, 0.011426979675889015, 0.010115543380379677, -0.01947919651865959, 0.02729535661637783, -0.017538271844387054, 0.046827010810375214, -0.07074760645627975, -0.03161435201764107, 0.028099704533815384, 0.029463596642017365, 0.016969982534646988, -0.05766821652650833, -0.012406185269355774, -0.04014743119478226, 0.03032040223479271, -0.016279293224215508, 0.032890815287828445, 0.0341847687959671, 0.0004524454416241497, -0.010168001055717468, -0.05829770490527153, -0.0037528928369283676, 0.0010261987335979939, -0.05857747793197632, -0.03065263293683529, 0.06046594679355621, -0.031124750152230263, 0.022434299811720848, -0.00692001124843955, 0.013700135983526707, 0.015387516468763351, -0.03997257351875305, -0.005333173554390669, -0.0025463716592639685, 0.03198155388236046, -0.035618603229522705, 0.03030291572213173, -0.0019245324656367302, -0.0038162791170179844, -0.030407831072807312, -0.048575591295957565, -0.04151132330298424, -0.022346870973706245, -0.0777069628238678, 0.014417054131627083, 0.03920319676399231, 0.045183345675468445, -0.008410676382482052, -0.04591774940490723, -0.03752455860376358, -0.025669176131486893, 0.06721547245979309, 0.0031474465504288673, 0.05728352814912796, 0.010202973149716854, -0.04388939589262009, -0.0019529468845576048, -0.017975417897105217, 0.08484116941690445, 0.027522671967744827, 0.004603140521794558, -0.00673203868791461, -0.00022157805506139994, -0.023693278431892395, -0.004751770291477442, -0.0353563167154789, 0.06008125841617584, 0.03486671298742294, 0.030215486884117126, -0.02248675748705864, 0.02458505518734455, -0.06357841938734055, -0.03381756693124771, -0.0648723691701889, 0.030775032937526703, 0.06357841938734055, -0.03161435201764107, -0.0017463957192376256, 0.033205561339855194, 0.09624192118644714, 0.02587900497019291, 0.036685239523649216, 0.043819449841976166, 0.03944799676537514, 0.04714175686240196, -0.013114361092448235, -0.007182298228144646, -0.02696312591433525, 0.010439030826091766, 0.0006453358219005167, 0.008987708948552608, 0.0005428799195215106, -0.015466202981770039, -0.009013937786221504, 0.013149332255125046, -0.026421066373586655, 0.06753021478652954, 0.011593095026910305, -0.026718324050307274, 0.04930999502539635, 0.010972348973155022, -0.02285395935177803, -0.03623060882091522, -0.012650987133383751, -0.015868376940488815, -0.0022818988654762506, 0.04130149260163307, 0.012004011310636997, -0.03857370838522911, -0.023658307269215584, -0.04812096059322357, 0.08190355449914932, 0.07546877861022949, 0.005910205189138651, -0.01465311273932457, 0.020336002111434937, 0.04812096059322357, 0.001823988975957036, 0.02318619005382061, -0.05357653647661209, -0.0014994086232036352, 0.061200350522994995, -0.0030840605031698942, 0.02147258073091507, -0.07260110229253769, -0.012038983404636383, -0.00036173779517412186, -0.03341539204120636, -0.01258978620171547, 0.02554677426815033, 0.01772187277674675, 0.061235323548316956, 0.020982977002859116, 0.022294413298368454, 0.018499990925192833, 0.002032725838944316, -0.017109869047999382, -0.04291018843650818, 0.011313322000205517, 0.015370030887424946, 0.039028339087963104, 0.021262750029563904, -0.00936365406960249, -0.04049714654684067, -0.002517957240343094, -0.01638420857489109, 0.04829581826925278, -0.018534963950514793, -0.013035674579441547, -0.012685958296060562 ]
40,047
s3path.old_versions
readlink
readlink method is unsupported on S3 service AWS S3 don't have this file system action concept
def readlink(self): """ readlink method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.readlink.__qualname__) raise NotImplementedError(message)
(self)
[ -0.035537611693143845, -0.017871513962745667, -0.04423370957374573, 0.03735215216875076, 0.0186589565128088, -0.01625383459031582, 0.007775992155075073, 0.04279577359557152, 0.053580306470394135, 0.020439261570572853, 0.029734503477811813, 0.006188268773257732, 0.06857594847679138, -0.005225363653153181, -0.025112560018897057, 0.04693840444087982, 0.005610525608062744, 0.03540066257119179, 0.027166755869984627, 0.02559187263250351, -0.04128936305642128, 0.0013930024579167366, 0.03177158161997795, -0.055120956152677536, 0.0013063409132882953, 0.09579405933618546, 0.01569749042391777, 0.00464762095361948, 0.007497819606214762, -0.008400809951126575, -0.048410579562187195, -0.007960014045238495, 0.011007072404026985, 0.08463291823863983, 0.027389295399188995, 0.029614675790071487, 0.010074124671518803, -0.020233841612935066, -0.0655631273984909, 0.015064111910760403, -0.07525208592414856, 0.05806530639529228, 0.02901553362607956, -0.07751170545816422, 0.0451238639652729, 0.0283479206264019, -0.040638867765665054, 0.04272729903459549, -0.01424243301153183, -0.036359287798404694, 0.012744581326842308, 0.06809663027524948, 0.013249571435153484, -0.035195242613554, -0.034151025116443634, -0.03711249306797981, 0.007288120221346617, -0.004112673923373222, -0.06289266794919968, 0.05765446648001671, 0.013959981501102448, -0.001463615451939404, 0.03892703354358673, -0.0105106420814991, 0.011486385017633438, -0.06207098811864853, 0.003924372605979443, -0.05060172080993652, -0.02064468152821064, 0.03974871337413788, 0.0178372785449028, 0.001731088967062533, -0.0160056184977293, -0.01081021223217249, -0.0011950719635933638, -0.0165619645267725, 0.01405413169413805, 0.009466424584388733, 0.0019472077256068587, -0.005867300555109978, -0.02156906947493553, -0.05583992600440979, 0.0004680787678807974, -0.013891507871448994, -0.014319465495646, -0.00816971343010664, 0.045808594673871994, -0.040878523141145706, -0.02506120502948761, 0.018830139189958572, -0.027697423473000526, 0.03331223130226135, -0.05491553619503975, -0.027389295399188995, 0.013241012580692768, -0.013001356273889542, -0.02689286321401596, -0.05560026690363884, 0.0199599489569664, -0.01386583037674427, 0.015954263508319855, -0.0027389293536543846, 0.023024125024676323, 0.0011019911617040634, 0.022442102432250977, -0.047178059816360474, -0.06347469240427017, -0.007446464616805315, -0.01638222113251686, -0.002162256510928273, 0.02073027193546295, 0.04823939502239227, 0.004067738074809313, 0.0025099720805883408, 0.025420689955353737, -0.014011336490511894, 0.06313232332468033, -0.033175282180309296, -0.05399114638566971, -0.038276538252830505, 0.032404959201812744, -0.009646167047321796, -0.0017599761486053467, -0.06237911805510521, 0.02055908925831318, -0.007651884108781815, -0.028159618377685547, 0.00681736646220088, 0.011161137372255325, -0.0006456812261603773, -0.01363473292440176, -0.019326571375131607, -0.05227931588888168, 0.023332254961133003, 0.00010317793203284964, 0.03216530382633209, 0.01618536189198494, 0.029135361313819885, -0.00937227439135313, 0.0199599489569664, 0.0641251876950264, -0.01310406532138586, 0.006243903189897537, -0.01515826303511858, -0.021979909390211105, 0.02346920222043991, 0.023965632542967796, -0.014037013985216618, 0.03502406179904938, -0.022801587358117104, 0.06426212936639786, 0.012658989988267422, 0.028313683345913887, 0.020233841612935066, -0.002537789288908243, 0.01994282938539982, -0.016484931111335754, -0.03481864184141159, -0.07449888437986374, -0.0020477776415646076, -0.005730354227125645, -0.03358612209558487, -0.01478166040033102, -0.018778786063194275, -0.020062658935785294, -0.03776298835873604, -0.005948612466454506, -0.005353751126676798, -0.0034322210121899843, 0.02550628036260605, -0.0003691135498229414, 0.0431039035320282, 0.004908675327897072, -0.0082681430503726, 0.07703239470720291, 0.04926649481058121, -0.0012378677492961287, 0.014319465495646, 0.010861567221581936, -0.10620199143886566, 0.0003212357696611434, -0.03875585272908211, 0.02338360995054245, 0.022527694702148438, -0.022715996950864792, 0.06665869802236557, -0.03875585272908211, 0.007775992155075073, 0.007951454259455204, 0.045363519340753555, -0.022664641961455345, 0.01799134351313114, -0.020302314311265945, 0.0035584685392677784, 0.0013213194906711578, -0.09230192005634308, 0.017520589753985405, 0.025403570383787155, -0.018727431073784828, 0.11037885397672653, 0.01881302148103714, 0.062344882637262344, -0.02673879824578762, 0.04762313514947891, 0.018949968740344048, -0.015671811997890472, 0.029802976176142693, 0.010484964586794376, -0.033860016614198685, 0.05977713689208031, -0.03598268702626228, 0.014405056834220886, -0.02612254023551941, 0.01451632659882307, 0.026156775653362274, 0.07573139667510986, -0.04895836487412453, 0.020901454612612724, 0.008182551711797714, 0.02322954498231411, 0.0720338448882103, -0.010151157155632973, -0.005075578577816486, 0.008096960373222828, 0.03062465600669384, -0.012898646295070648, 0.08141467720270157, -0.03170310705900192, -0.004099835176020861, -0.019686056300997734, 0.008306659758090973, 0.0034792963415384293, 0.04043344780802727, 0.06255029886960983, 0.08518070727586746, -0.0018862236756831408, 0.011015632189810276, -0.0012303785188123584, -0.024633247405290604, -0.01627095229923725, -0.06107812747359276, -0.013959981501102448, 0.003288855077698827, 0.08990535885095596, -0.0291695985943079, -0.01424243301153183, 0.026293722912669182, 0.07278705388307571, -0.020062658935785294, -0.06727495789527893, 0.08524917811155319, 0.04967733472585678, -0.0510125607252121, -0.03409967198967934, 0.009740318171679974, -0.04584283381700516, 0.000006929237315489445, -0.07977131754159927, -0.011880106292665005, 0.01698136329650879, -0.05700397118926048, -0.0557372160255909, 0.02665320783853531, -0.06008526682853699, -0.007703239098191261, -0.004904395435005426, 0.032576143741607666, 0.034390684217214584, -0.019514871761202812, 0.06624785810709, 0.06997964531183243, 0.001832728972658515, -0.03199411928653717, 0.023434964939951897, 0.0076133678667247295, -0.0677885040640831, -0.026550497859716415, 0.019600464031100273, -0.016596199944615364, -0.03190852701663971, -0.0066718608140945435, 0.047725845128297806, -0.0008703590137884021, 0.05395691096782684, -0.024410709738731384, -0.04419947415590286, 0.010262425988912582, -0.010938599705696106, -0.017212459817528725, 0.004446480888873339, 0.01424243301153183, 0.024205289781093597, -0.05005393549799919, -0.019001323729753494, 0.049540385603904724, 0.024085460230708122, -0.07545750588178635, -0.0016679652035236359, 0.051697295159101486, -0.0026533380150794983, -0.0788811668753624, 0.019788766279816628, 0.005700396839529276, 0.020148249343037605, -0.05590839684009552, -0.007818787358701229, 0.0615232028067112, -0.023058362305164337, -0.029820093885064125, 0.03000839613378048, 0.029837213456630707, 0.002711112145334482, -0.03060753643512726, 0.03290139138698578, -0.006068440619856119, 0.04933496564626694, -0.002197562949731946, 0.081003837287426, -0.018230998888611794, 0.03016246110200882, -0.06748037785291672, 0.04882141947746277, -0.020815864205360413, -0.029272308573126793, 0.02939213626086712, -0.03144633397459984, -0.042008329182863235, 0.006213946267962456, -0.02208261936903, 0.05936629697680473, 0.02018248662352562, 0.043446268886327744, 0.020815864205360413, -0.017460675910115242, -0.09497237950563431, -0.019531991332769394, -0.01016827579587698, -0.04152901843190193, 0.004925793502479792, 0.048342105001211166, 0.0021355091594159603, -0.02399986982345581, 0.0409812331199646, 0.036222342401742935, -0.05546332150697708, 0.05279286578297615, 0.04104970395565033, -0.024547655135393143, 0.007998529821634293, -0.041323598474264145, 0.01413116417825222, 0.03817382827401161, -0.01515826303511858, 0.0420425683259964, -0.02269887737929821, 0.0017075513023883104, -0.00047877771430648863, 0.0004932212759740651, 0.011332320980727673, -0.013694647699594498, 0.0394405834376812, -0.05638771131634712, -0.03605115786194801, -0.015637574717402458, 0.02903265319764614, 0.011494944803416729, 0.005910096224397421, -0.0036847160663455725, 0.029186716303229332, -0.01615968346595764, -0.04933496564626694, -0.08305803686380386, -0.03504117950797081, -0.031959883868694305, -0.001382303424179554, -0.009577694348990917, 0.025626108050346375, -0.0488898903131485, 0.003973587416112423, 0.05056748539209366, -0.018624721094965935, 0.017785923555493355, -0.001276383874937892, 0.006594828795641661, 0.004784567281603813, 0.026636088266968727, -0.024034105241298676, -0.0030663171783089638, 0.04957462474703789, 0.017939988523721695, 0.01958334632217884, -0.012068407610058784, 0.009962855838239193, -0.025095440447330475, -0.02406834252178669, -0.035777267068624496, -0.0033723069354891777, 0.013591937720775604, -0.015509188175201416, -0.0029892846941947937, -0.01416540052741766, 0.02536933496594429, -0.0741565153002739, 0.016887212172150612, -0.016613319516181946, 0.021380769088864326, 0.022493457421660423, 0.04526080936193466, -0.01920674368739128, -0.03574302792549133, 0.016108328476548195, -0.00717685092240572, -0.06782273948192596, 0.022270919755101204, 0.03564031794667244, 0.046424854546785355, 0.021380769088864326, -0.04912954568862915, -0.05560026690363884, 0.04235069826245308, 0.005032782908529043, -0.03861890733242035, -0.002670456189662218, 0.023725977167487144, 0.041700202971696854, -0.04440489411354065, -0.021055519580841064, 0.035297952592372894, 0.057620227336883545, 0.008041325956583023, 0.0845644474029541, 0.04892412945628166, -0.01265043020248413, 0.00030037283431738615, -0.006847323849797249, 0.012436451390385628, -0.029683148488402367, 0.006372290663421154, -0.00011340880155330524, 0.017058394849300385, 0.00906414445489645, -0.021808726713061333, -0.047349244356155396, 0.01408836804330349, 0.031103968620300293, -0.0302309338003397, 0.013138302601873875, 0.03245631605386734, 0.0144392941147089, -0.013994217850267887, -0.012282386422157288, 0.021123994141817093, -0.003838780801743269, -0.022373629733920097, -0.06676140427589417, -0.05080714076757431, 0.02247633971273899, -0.01699848100543022, -0.012676107697188854, -0.05128645524382591, -0.01687009446322918, 0.044678788632154465, 0.00358842546120286, -0.0625845417380333, 0.017854396253824234, 0.025626108050346375, -0.045431993901729584, -0.009158295579254627, -0.024016987532377243, -0.03601692244410515, 0.06638479977846146, -0.03199411928653717, -0.03129227086901665, -0.0038195226807147264, 0.03130938857793808, 0.0071682920679450035, 0.012068407610058784, 0.00921820942312479, -0.017169663682579994, 0.01096427720040083, -0.035537611693143845, -0.12064984440803528, 0.009312360547482967, 0.006282419431954622, -0.003057758091017604, -0.03536642715334892, -0.02665320783853531, 0.04515809938311577, 0.08675558865070343, -0.04214527830481529, 0.02780013345181942, 0.047041114419698715, -0.033945608884096146, 0.05070443078875542, 0.003500694176182151, 0.017939988523721695, -0.045808594673871994, -0.001465755165554583, -0.02139788679778576, 0.0005980709102004766, 0.007146894000470638, -0.03512677177786827, -0.012282386422157288, 0.0346645750105381, 0.03817382827401161, 0.024205289781093597, -0.022305157035589218, 0.002527090488001704, 0.03718096762895584, -0.045808594673871994, -0.01561189815402031, 0.07682697474956512, 0.05097832530736923, 0.08867283910512924, -0.013934304006397724, -0.04991699010133743, -0.06255029886960983, 0.06111236289143562, 0.04221374914050102, 0.04899260029196739, 0.05909240245819092, -0.06049610301852226, -0.013044151477515697, -0.06919220834970474, -0.03605115786194801, -0.048718709498643875, -0.0199599489569664, -0.035914212465286255, -0.012248150072991848, 0.028159618377685547, -0.029957041144371033, 0.008101239800453186, -0.027919963002204895, -0.020696036517620087, -0.036975547671318054, 0.11270694434642792, -0.026071185246109962, 0.03574302792549133, 0.01934368908405304, -0.00691151712089777, 0.04519233480095863, -0.007489260286092758, -0.03656470775604248, -0.006389408838003874, -0.03656470775604248, 0.0062653012573719025, -0.01850489154458046, -0.0409812331199646, 0.06792545318603516, -0.02345208264887333, 0.028587576001882553, 0.0019514872692525387, 0.03755757212638855, 0.01956622675061226, 0.10976260155439377, 0.010716061107814312, 0.021158229559659958, -0.09641031920909882, -0.0013459270121529698, -0.013275248929858208, -0.043377794325351715, 0.018419301137328148, -0.012325182557106018, -0.00048573201638646424, 0.0383792482316494, 0.012094085104763508, 0.04693840444087982, -0.002706832718104124, 0.01583443582057953, -0.06621362268924713, 0.01458479929715395, 0.03574302792549133, 0.010151157155632973, 0.008233906701207161, 0.014918606728315353, -0.017007039859890938, 0.03194276615977287, -0.022527694702148438, -0.015260973013937473, -0.019754528999328613, 0.015055553056299686, -0.03981718793511391, 0.02139788679778576, -0.003109112847596407, -0.04341203346848488, -0.034938469529151917, -0.0315832793712616, -0.007164012175053358, -0.039337873458862305, -0.029991278424859047, -0.04621943458914757, -0.05844190716743469, -0.028245210647583008, -0.06655598431825638, 0.03430509194731712, 0.014259551651775837, 0.054881300777196884, -0.06422789394855499, -0.004746051039546728, 0.024718837812542915, 0.03160039708018303, 0.018727431073784828, 0.03841348737478256, 0.033123929053545, 0.020062658935785294, 0.054641641676425934, -0.04625367000699043, -0.0060170856304466724, -0.0336032398045063, 0.015406478196382523, -0.01698136329650879, 0.0493692047894001, -0.008019927889108658, -0.014867251738905907, -0.0015053412644192576, 0.0017439277144148946, -0.05827072262763977, 0.006543473806232214, 0.0362565778195858, 0.033637478947639465, 0.023965632542967796, -0.08168856799602509, -0.010724620893597603, 0.05806530639529228, -0.11236458271741867, -0.014995639212429523, 0.007891540415585041, 0.027166755869984627, -0.023589029908180237, 0.0021783048287034035, -0.0017535567749291658, -0.025454925373196602, 0.1287296861410141, -0.026225250214338303, 0.026790153235197067, -0.02444494515657425, 0.02093569189310074, 0.012496366165578365, -0.019240979105234146, 0.018111171200871468, 0.011280965991318226, -0.017460675910115242, -0.06042763218283653, 0.002548488322645426, -0.023212427273392677, 0.008229627273976803, 0.03166887164115906, -0.02490714006125927, 0.04214527830481529, -0.020216723904013634, -0.017871513962745667, 0.009192531928420067, 0.02536933496594429, 0.021911434829235077, 0.02956332080066204, -0.0320625938475132, 0.021603306755423546, -0.05443622171878815, -0.009047026745975018, -0.05039630085229874, 0.0178372785449028, -0.06124931201338768, -0.025078322738409042, 0.049711570143699646, 0.023143954575061798, -0.04283000901341438, 0.00506701972335577, 0.01621103845536709, -0.020850101485848427, 0.04697263985872269, 0.019703174009919167, 0.026944218203425407, -0.005627644248306751, -0.004698975943028927, -0.017563385888934135, -0.028382156044244766, 0.08025063574314117, -0.0734717845916748, 0.04283000901341438, -0.011246728710830212, -0.036222342401742935, 0.0009554156567901373, -0.041700202971696854, 0.047794319689273834, 0.005982849281281233, 0.005216804798692465, 0.03480152413249016, -0.017143987119197845, -0.014833014458417892, -0.04320661351084709, 0.0003667062846943736, -0.015731725841760635, 0.006119795609265566, 0.019377926364541054, -0.04313813894987106, -0.013275248929858208, 0.002807402750477195, 0.0008425418054684997, 0.0015363682759925723, 0.0029229512438178062, 0.08511223644018173, 0.01009124331176281, 0.023674622178077698, -0.02697845548391342, 0.0020584766753017902, -0.027149638161063194, -0.043309323489665985, -0.05156034603714943, -0.011392234824597836, -0.025540517643094063, -0.01039937324821949, -0.044062528759241104, 0.00895287562161684, -0.029837213456630707, 0.04615096002817154, -0.02567746303975582, -0.013959981501102448, -0.0325419045984745, -0.00014804663078393787, 0.009389393031597137, -0.02398275025188923, -0.05323794111609459, -0.008139755576848984, 0.04731500521302223, 0.0061925482004880905, -0.009808790870010853, -0.09134329855442047, -0.0011244589695706964, -0.034681692719459534, 0.06744613498449326, 0.039646003395318985, 0.04882141947746277, -0.010707502253353596, 0.024564772844314575, 0.03663318231701851, -0.022356512024998665, 0.02079874649643898, 0.03343205899000168, 0.027937080711126328, 0.044747259467840195, -0.01466183178126812, 0.013129742816090584, -0.01722101867198944, -0.0457058846950531, 0.06758308410644531, -0.05125221610069275, -0.021842962130904198, 0.06905525922775269, -0.0025549076963216066, 0.005888698156923056, 0.04365168884396553, -0.02055908925831318, -0.013480668887495995, -0.0005146191688254476, 0.009380833245813847, -0.036907073110342026, -0.04091275855898857, 0.02393139712512493, 0.016750264912843704, 0.004226082470268011, -0.03742062300443649, 0.03735215216875076, 0.01989147439599037, 0.029357900843024254, 0.03694131225347519, 0.00483592227101326, -0.05036206543445587, -0.02574593760073185 ]
40,049
s3path.old_versions
rename
Renames this file or Bucket / key prefix / key to the given target. If target exists and is a file, it will be replaced silently if the user has permission. If path is a key prefix, it will replace all the keys with the same prefix to the new target prefix. Target can be either a string or another S3Path object.
def rename(self, target: Union[str, S3Path]) -> S3Path: """ Renames this file or Bucket / key prefix / key to the given target. If target exists and is a file, it will be replaced silently if the user has permission. If path is a key prefix, it will replace all the keys with the same prefix to the new target prefix. Target can be either a string or another S3Path object. """ self._absolute_path_validation() if not isinstance(target, type(self)): target = type(self)(target) target._absolute_path_validation() self._accessor.rename(self, target) return self.__class__(target)
(self, target: Union[str, s3path.old_versions.S3Path]) -> s3path.old_versions.S3Path
[ -0.03462190926074982, -0.0033136787824332714, -0.02886706031858921, 0.0004780236631631851, -0.056286126375198364, -0.0452219694852829, 0.03077915497124195, 0.11249800026416779, 0.09059245139360428, 0.021738475188612938, 0.02285231649875641, -0.004576032515615225, 0.10239917039871216, 0.02309364825487137, -0.017802901566028595, 0.03449195995926857, 0.04967733472585678, 0.013765225186944008, -0.010711442679166794, 0.039541374891996384, 0.006014744285494089, -0.025933943688869476, 0.06185533478856087, -0.02962818555533886, -0.03735082224011421, 0.035791441798210144, -0.011556106619536877, 0.06768444180488586, 0.013653840869665146, -0.055840589106082916, -0.022462472319602966, 0.011156979948282242, -0.0050401329062879086, 0.09014691412448883, 0.03393504023551941, 0.05190501734614372, -0.0276789627969265, -0.0026407327968627214, -0.019752124324440956, -0.045593246817588806, -0.029294032603502274, -0.002510784426704049, -0.0312246922403574, -0.030092285946011543, 0.07533282041549683, 0.08725092560052872, -0.004450725391507149, 0.07165714353322983, 0.019770687445998192, 0.017171723768115044, 0.024058977141976357, 0.027660399675369263, -0.04488781467080116, -0.04696698486804962, -0.011704618111252785, 0.009876062162220478, 0.06449142843484879, -0.014665580354630947, -0.060036059468984604, -0.005694515071809292, 0.04403387010097504, 0.002995769726112485, 0.04837785288691521, -0.015538089908659458, -0.014479940757155418, -0.046707089990377426, 0.013486765325069427, -0.05506090074777603, -0.015203937888145447, 0.020401865243911743, -0.01391373760998249, -0.02595250867307186, -0.0021615487057715654, 0.013820917345583439, -0.005829104222357273, 0.04221459478139877, -0.040692344307899475, 0.020123403519392014, -0.013960147276520729, -0.04525909572839737, -0.03820476680994034, -0.04540760815143585, -0.048749133944511414, -0.0757412239909172, -0.042808644473552704, -0.008548733778297901, -0.006121487822383642, -0.07247395813465118, -0.010971339419484138, -0.025172820314764977, -0.056954432278871536, -0.013403226621448994, -0.01917663961648941, -0.01651270128786564, -0.006720177363604307, -0.020643197000026703, -0.04477643221616745, -0.07332790642976761, 0.007235329132527113, 0.010525803081691265, 0.01383948139846325, 0.007810813840478659, 0.0514223538339138, 0.04058096185326576, 0.06274640560150146, -0.0030839487444609404, -0.024671589955687523, -0.005573848728090525, 0.03529021516442299, -0.03987552970647812, -0.022035498172044754, 0.012187283486127853, -0.015538089908659458, 0.022536728531122208, 0.025506971403956413, -0.0658651664853096, 0.07678081095218658, -0.010312316939234734, -0.04581601545214653, -0.0186197180300951, 0.023576313629746437, 0.006952228024601936, 0.017440902069211006, 0.029275469481945038, 0.04199182614684105, -0.03185587003827095, 0.03748076781630516, 0.013644559308886528, 0.05513515695929527, -0.009360910393297672, -0.08673112839460373, 0.00423723878338933, -0.059627652168273926, 0.008841117843985558, 0.07098883390426636, 0.03272837772965431, 0.033990733325481415, 0.05810540169477463, -0.005216491408646107, 0.030370747670531273, 0.06868689507246017, 0.0037035231944173574, 0.0001279177377000451, -0.0021395040675997734, 0.020364737138152122, -0.035345904529094696, 0.032672684639692307, 0.03521595895290375, 0.013728097081184387, 0.012242975644767284, -0.024058977141976357, 0.01026590634137392, 0.11613655090332031, 0.01958504691720009, 0.00845127273350954, -0.020067712292075157, -0.03014797903597355, -0.028087371960282326, -0.01566803827881813, 0.03465903550386429, 0.0559891015291214, -0.036942411214113235, -0.024226054549217224, -0.008604425936937332, 0.01202020701020956, -0.027697527781128883, -0.0013076035538688302, 0.014108659699559212, -0.020550377666950226, 0.03573574870824814, 0.011695336550474167, 0.0030793077312409878, 0.0186197180300951, 0.023947592824697495, 0.029758134856820107, -0.01102703157812357, 0.0167818795889616, 0.0051932861097157, 0.009838934056460857, -0.03709092363715172, 0.07856296002864838, -0.016373470425605774, 0.03332242742180824, 0.008126402273774147, 0.0005438679363578558, 0.06631070375442505, -0.03365657851099968, 0.0938597172498703, -0.007309585344046354, 0.029442545026540756, 0.03337812051177025, -0.004297572188079357, 0.022165447473526, 0.021478578448295593, 0.03438057750463486, -0.07291949540376663, 0.026063892990350723, -0.015733012929558754, 0.014981169253587723, 0.0691695585846901, -0.02918264828622341, 0.059590522199869156, 0.016893263906240463, 0.026026764884591103, 0.0323014073073864, -0.01305979210883379, 0.026527993381023407, 0.03488180413842201, -0.02942398190498352, 0.014396402053534985, 0.017329517751932144, 0.03796343505382538, -0.03486324101686478, -0.018313411623239517, -0.007620532531291246, 0.030927667394280434, -0.021162990480661392, 0.00601010350510478, 0.01598362624645233, 0.036459747701883316, 0.018109207972884178, 0.04893477261066437, -0.02890418842434883, 0.009773959405720234, 0.023260725662112236, -0.010544367134571075, 0.01371881552040577, 0.011426158249378204, 0.003476114012300968, -0.06913243234157562, 0.011110569350421429, -0.04206608235836029, 0.00998744647949934, -0.010804262943565845, 0.0550980307161808, -0.04046957567334175, 0.02240677922964096, -0.03512313589453697, -0.00017548806499689817, -0.01570516638457775, -0.03748076781630516, -0.0257111769169569, 0.025989636778831482, 0.055357925593853, -0.007829378359019756, -0.024987179785966873, -0.009541909210383892, -0.008571939542889595, 0.029795261099934578, 0.005852309055626392, 0.05647176876664162, 0.0719541683793068, -0.049937229603528976, 0.01949222758412361, 0.0006665645632892847, 0.02959105744957924, -0.023223597556352615, -0.0201419685035944, -0.014860503375530243, -0.000377371849026531, -0.06100139021873474, -0.06489983201026917, 0.0164662916213274, -0.03568005934357643, -0.0026244891341775656, 0.00511438911780715, 0.014331428334116936, -0.007198201026767492, -0.04377397522330284, -0.004696698393672705, 0.057956889271736145, -0.008428067900240421, -0.03438057750463486, -0.009490858763456345, 0.03640405461192131, -0.03994978591799736, -0.052053529769182205, 0.013143330812454224, 0.002166189718991518, -0.03766641020774841, 0.018573308363556862, -0.05409557372331619, 0.03022223524749279, 0.0005131213110871613, 0.03185587003827095, 0.02459733374416828, -0.02292657271027565, 0.026806453242897987, 0.032672684639692307, 0.021181553602218628, -0.0001814343559090048, -0.014619170688092709, -0.09720124304294586, -0.001470038783736527, -0.01738521084189415, -0.016577675938606262, -0.10113681107759476, -0.025209948420524597, 0.002176632173359394, -0.008766861632466316, -0.03191155940294266, 0.03185587003827095, -0.037295129150152206, 0.004933389835059643, -0.0029609622433781624, 0.01886104978621006, 0.07136011868715286, -0.02535845898091793, 0.002863500965759158, 0.060741495341062546, -0.011389030143618584, -0.007829378359019756, -0.12066616863012314, -0.022703804075717926, 0.055357925593853, 0.031131871044635773, 0.017088185995817184, 0.027846038341522217, -0.00915206503123045, -0.012669947929680347, -0.05353865027427673, -0.004606198985129595, -0.056954432278871536, -0.032635558396577835, 0.013588867150247097, -0.06285779178142548, -0.08160746097564697, 0.017849311232566833, 0.01658695749938488, 0.014006557874381542, -0.013672404922544956, -0.008701886981725693, 0.021979806944727898, -0.01921376772224903, -0.08940435200929642, -0.05119958519935608, 0.039058711379766464, 0.028161628171801567, 0.05049414932727814, 0.07982531189918518, 0.03449195995926857, -0.029294032603502274, -0.007137868087738752, -0.006938304752111435, -0.04429376497864723, 0.03219002112746239, -0.015500961802899837, -0.015658756718039513, 0.07819167524576187, -0.012242975644767284, -0.019083818420767784, 0.025469843298196793, 0.03616272285580635, -0.053055986762046814, 0.0034853958059102297, -0.01493475865572691, -0.027400502935051918, -0.007574122864753008, -0.02643517404794693, -0.02448595128953457, -0.012502871453762054, -0.06772156804800034, 0.022165447473526, -0.010869237594306469, 0.022239703685045242, 0.010637187398970127, -0.03438057750463486, 0.00033096177503466606, -0.05023425444960594, -0.01184384897351265, 0.014136506244540215, -0.03573574870824814, -0.03543872758746147, -0.0051375944167375565, -0.00148744264151901, 0.06972648203372955, 0.0312246922403574, -0.012595691718161106, -0.02973956987261772, -0.014099378138780594, 0.06653346866369247, -0.028477216139435768, -0.008664758875966072, 0.04221459478139877, -0.0018181143095716834, 0.047783803194761276, 0.061224158853292465, -0.03341524675488472, 0.01455419696867466, 0.0276789627969265, 0.008803989738225937, -0.014006557874381542, 0.048712003976106644, -0.00370816420763731, -0.010200932621955872, 0.0034041781909763813, -0.031131871044635773, -0.01182528492063284, -0.002557194558903575, 0.0031651663593947887, -0.031001923605799675, 0.00412817532196641, -0.05398418754339218, 0.007880428805947304, -0.013830199837684631, 0.009295935742557049, 0.0572514571249485, 0.05918211489915848, 0.024263182654976845, 0.010665033012628555, -0.0130783561617136, -0.06898391991853714, -0.050457023084163666, 0.01719028875231743, 0.011463286355137825, 0.06883540749549866, -0.009458371438086033, -0.06965222954750061, 0.008901450783014297, 0.03588426113128662, -0.02480153925716877, 0.019770687445998192, -0.030370747670531273, -0.019603611901402473, 0.04492494463920593, -0.06642208248376846, -0.02966531366109848, -0.026806453242897987, 0.04317992553114891, 0.01397871132940054, 0.011416875757277012, 0.021979806944727898, 0.020327609032392502, 0.03274694085121155, 0.037740666419267654, -0.019362280145287514, 0.01203877106308937, 0.03657113015651703, -0.034436266869306564, 0.008822553791105747, 0.004309174604713917, -0.057956889271736145, -0.03282119706273079, -0.010934211313724518, -0.019436534494161606, -0.03146602585911751, -0.021274374797940254, 0.027938859537243843, 0.039058711379766464, 0.020717453211545944, 0.016020754352211952, 0.006919740699231625, -0.00774584012106061, -0.032357096672058105, 0.012372923083603382, -0.0387616865336895, -0.001407385221682489, -0.025061435997486115, 0.06582804024219513, -0.05034564062952995, -0.03573574870824814, 0.03612559661269188, 0.0648627057671547, -0.003183730412274599, -0.05487526208162308, 0.06787008047103882, 0.02998090162873268, -0.03233853355050087, 0.049974359571933746, -0.051533736288547516, 0.062263742089271545, -0.0732165202498436, -0.012066616676747799, 0.03924435004591942, 0.0013389303348958492, -0.020550377666950226, -0.026583684608340263, 0.047820933163166046, 0.010080265812575817, 0.030110850930213928, 0.015389577485620975, -0.03077915497124195, 0.02205406315624714, 0.003262627637013793, 0.01958504691720009, -0.008571939542889595, 0.021942678838968277, 0.01921376772224903, 0.041694801300764084, -0.015101835131645203, 0.06200384721159935, 0.03341524675488472, -0.03512313589453697, 0.005351080559194088, -0.04095224291086197, 0.014359273947775364, -0.012549282051622868, -0.013393945060670376, -0.045444734394550323, 0.030333619564771652, 0.029813826084136963, -0.02591538056731224, -0.012586410157382488, 0.023780517280101776, 0.01898171752691269, 0.01782146468758583, -0.05186788737773895, -0.041731931269168854, -0.007058971095830202, -0.003418101230636239, -0.05988754704594612, 0.07715209573507309, 0.01229866687208414, 0.04418238252401352, -0.010952775366604328, -0.018229873850941658, -0.10321598500013351, 0.07013489305973053, 0.0329325832426548, -0.012224411591887474, -0.021107297390699387, -0.027734655886888504, 0.0073745595291256905, -0.02483866736292839, -0.03094623237848282, -0.04329130798578262, 0.014201479963958263, 0.003566613420844078, 0.01881464011967182, 0.02476441115140915, -0.06931807100772858, -0.004376469179987907, -0.03467760235071182, 0.017116032540798187, -0.058031145483255386, 0.09965169429779053, -0.045036327093839645, -0.0046433270908892155, 0.02316790446639061, -0.00413513695821166, 0.01202020701020956, 0.03321104124188423, -0.037183742970228195, 0.01184384897351265, -0.048712003976106644, 0.036459747701883316, -0.026565121486783028, -0.012642101384699345, 0.048712003976106644, -0.013885891996324062, -0.03209720179438591, -0.007082175929099321, -0.009681140072643757, 0.032041508704423904, 0.022796623408794403, -0.00137025723233819, 0.0341392457485199, -0.03612559661269188, -0.02647230215370655, 0.033470939844846725, -0.029850954189896584, 0.0002408972504781559, 0.07555558532476425, 0.02515425533056259, 0.05836529657244682, 0.010256624780595303, -0.005248978268355131, 0.055840589106082916, 0.0615583099424839, -0.02539558708667755, 0.0073188673704862595, 0.021348631009459496, 0.06196672096848488, 0.05491238832473755, -0.00918919313699007, 0.011491131968796253, 0.07020914554595947, -0.036422617733478546, -0.013291842304170132, 0.00137025723233819, 0.02407754212617874, 0.02647230215370655, 0.030092285946011543, 0.0005870872992090881, -0.04897190257906914, -0.015640191733837128, -0.047709546983242035, 0.024226054549217224, -0.027177734300494194, -0.015111117623746395, -0.0464843213558197, 0.0011805560206994414, -0.028718547895550728, -0.04529622569680214, 0.007708712015300989, -0.03920722380280495, 0.0001512678136350587, -0.0822015106678009, 0.05673166364431381, 0.025469843298196793, -0.005248978268355131, -0.006116846576333046, 0.015686601400375366, 0.05287034809589386, -0.03820476680994034, 0.02192411571741104, -0.020030584186315536, -0.005239696241915226, -0.02309364825487137, -0.011231236159801483, -0.03361945226788521, 0.013468201272189617, 0.02650943025946617, -0.007690147962421179, -0.015463833697140217, -0.001091216690838337, -0.025581227615475655, -0.021664218977093697, -0.05717720091342926, -0.03839040547609329, -0.06449142843484879, -0.03206007182598114, -0.014387120492756367, 0.04087798669934273, -0.054244086146354675, -0.03720230981707573, 0.02452307939529419, 0.00741632841527462, -0.03200438246130943, -0.08383513987064362, -0.00940732005983591, -0.10343875735998154, 0.045073457062244415, -0.04759816452860832, -0.030890539288520813, 0.034956060349941254, -0.020346172153949738, 0.01731095463037491, -0.00045365840196609497, -0.03696097433567047, 0.001923697185702622, -0.0011109409388154745, -0.017097467556595802, 0.05235055461525917, -0.04410812631249428, -0.04689272865653038, 0.033786527812480927, -0.026063892990350723, -0.012790613807737827, -0.02476441115140915, -0.0033972167875617743, 0.018721820786595345, -0.03374939784407616, 0.009801805950701237, 0.08532026410102844, -0.011936669237911701, 0.007541635539382696, -0.06898391991853714, 0.002197516616433859, -0.022462472319602966, 0.04035819321870804, -0.04856349155306816, -0.016614804044365883, 0.05985042080283165, 0.06185533478856087, 0.0012147834058851004, -0.017357364296913147, -0.02365056984126568, -0.008279555477201939, -0.005425336770713329, 0.003613023553043604, -0.003232461167499423, -0.038576047867536545, -0.034232065081596375, -0.011156979948282242, -0.015733012929558754, 0.11598803848028183, -0.022722367197275162, 0.016020754352211952, -0.018090642988681793, -0.03441770374774933, -0.01806279830634594, -0.032635558396577835, 0.009217038750648499, 0.01549168024212122, 0.02236965112388134, 0.01925089582800865, 0.008571939542889595, -0.01595577970147133, -0.038576047867536545, 0.049306053668260574, -0.02205406315624714, -0.023854773491621017, 0.04098936915397644, -0.03410211578011513, 0.029813826084136963, -0.013282560743391514, 0.0030630643013864756, -0.033990733325481415, -0.007759762927889824, 0.018471205607056618, 0.032394226640462875, 0.024300310760736465, -0.06025882810354233, -0.001345891854725778, -0.04744965210556984, -0.04054383188486099, -0.024912923574447632, 0.0486377477645874, -0.03369370847940445, -0.0021557474974542856, -0.04429376497864723, 0.0067944335751235485, 0.009217038750648499, 0.05131096765398979, -0.010135957971215248, 0.031521715223789215, -0.053130242973566055, -0.002777642337605357, 0.004550506826490164, -0.007866506464779377, -0.025377023965120316, -0.00501228729262948, 0.004564430098980665, -0.011676772497594357, -0.037740666419267654, 0.004919467028230429, 0.007174996193498373, -0.050865430384874344, 0.0335637591779232, 0.00046787146129645407, 0.06575378030538559, -0.010395854711532593, -0.06311769038438797, 0.036274105310440063, -0.029795261099934578, 0.014182915911078453, 0.0010958577040582895, 0.029813826084136963, 0.08242427557706833, -0.0329325832426548, 0.03891019895672798, 0.009792523458600044, -0.01582583226263523, 0.01719028875231743, -0.029238341376185417, -0.020587505772709846, 0.029758134856820107, 0.006302487105131149, 0.06556814163923264, 0.014294300228357315, -0.012447179295122623, 0.04087798669934273, -0.015900088474154472, 0.0031721279956400394, -0.05617474392056465, -0.04299428313970566, 0.009931754320859909, 0.06360035389661789, 0.004979799967259169, -0.036868155002593994, 0.03233853355050087, 0.04633580893278122, -0.004005188588052988, 0.024504514411091805, 0.02081027254462242, -0.003348486265167594, 0.002315862337127328 ]
40,050
s3path.old_versions
replace
Renames this Bucket / key prefix / key to the given target. If target points to an existing Bucket / key prefix / key, it will be unconditionally replaced.
def replace(self, target: Union[str, S3Path]) -> S3Path: """ Renames this Bucket / key prefix / key to the given target. If target points to an existing Bucket / key prefix / key, it will be unconditionally replaced. """ return self.rename(target)
(self, target: Union[str, s3path.old_versions.S3Path]) -> s3path.old_versions.S3Path
[ -0.0027826873119920492, -0.018867531791329384, -0.029286643490195274, -0.013375146314501762, -0.053245123475790024, -0.02290014736354351, 0.014378737658262253, 0.09488507360219955, 0.09816955775022507, 0.02113017626106739, 0.004333693068474531, -0.030801154673099518, 0.06408391892910004, 0.011258479207754135, -0.006304383277893066, 0.02434167079627514, 0.03443233296275139, 0.011878881603479385, 0.01202485803514719, 0.01821063458919525, -0.016568394377827644, -0.002027712296694517, 0.04718707501888275, -0.04605575650930405, -0.014269255101680756, 0.03397615626454353, -0.0009830640628933907, 0.04058161750435829, -0.02434167079627514, -0.057733915746212006, 0.00886810477823019, -0.00806979276239872, -0.002620744053274393, 0.07663794606924057, 0.05860977992415428, 0.02056451514363289, -0.022097274661064148, 0.004297199193388224, 0.019195979461073875, -0.03966926038265228, -0.012617889791727066, -0.014679815620183945, -0.02319210208952427, -0.04795345664024353, 0.06671150773763657, 0.11700059473514557, 0.02830129861831665, 0.07941150665283203, 0.0339396595954895, 0.025035060942173004, 0.020728738978505135, 0.00956149585545063, -0.04623822495341301, -0.03547241911292076, -0.032680608332157135, -0.0067149437963962555, 0.04445000737905502, -0.004803556948900223, -0.048354893922805786, 0.000015485113181057386, 0.05901121720671654, -0.022973135113716125, 0.009506754577159882, -0.013375146314501762, -0.0176997147500515, -0.031293828040361404, 0.01279123779386282, -0.034687794744968414, 0.0017722524935379624, 0.021403882652521133, -0.016750864684581757, -0.03934081271290779, -0.011970116756856441, 0.006080856081098318, -0.025637216866016388, 0.04959569871425629, -0.01456120889633894, 0.020290808752179146, -0.014597703702747822, -0.05871926248073578, -0.025947418063879013, -0.06076294183731079, -0.03476078063249588, -0.08539656549692154, -0.05350058525800705, 0.016093967482447624, 0.012690878473222256, -0.060361504554748535, -0.0010115752229467034, -0.06229570135474205, -0.05437644571065903, -0.004586872179061174, -0.0004824084753636271, -0.02487083710730076, 0.013192674145102501, -0.011030389927327633, -0.028264803811907768, -0.11006668210029602, 0.042625293135643005, 0.00209841993637383, 0.027005750685930252, 0.009643607772886753, 0.08043334633111954, 0.015957115218043327, 0.07101782411336899, -0.021403882652521133, -0.015354959294199944, 0.012079599313437939, 0.024396412074565887, -0.012709125876426697, -0.02499856799840927, 0.0030358661897480488, -0.0033164157066494226, 0.018265375867486, 0.010501222684979439, -0.04441351443529129, 0.04404857009649277, -0.011158119887113571, -0.03988822549581528, 0.014542962424457073, 0.0038569869939237833, 0.007285166531801224, 0.01348462887108326, 0.03078290820121765, 0.056529607623815536, -0.022681182250380516, 0.031968969851732254, 0.031184343621134758, 0.04174943268299103, -0.012088723480701447, -0.053099147975444794, 0.024067964404821396, -0.0744117945432663, -0.008288758806884289, 0.07411983609199524, 0.03676796704530716, 0.032625868916511536, 0.034833770245313644, 0.02897644229233265, 0.030198998749256134, 0.06382846087217331, -0.027370695024728775, -0.004048581700772047, -0.0032092139590531588, 0.015126870013773441, -0.03198721632361412, 0.035636644810438156, 0.012079599313437939, 0.013366022147238255, -0.0008975306991487741, -0.011732904240489006, 0.03092888370156288, 0.10984771698713303, 0.013803953304886818, -0.031020119786262512, 0.013612358830869198, -0.028556756675243378, -0.02251695841550827, -0.007919253781437874, 0.011878881603479385, 0.08189311623573303, -0.03098362497985363, -0.0039048856124281883, -0.004753377288579941, 0.011294973082840443, -0.03618405759334564, 0.021166669204831123, 0.031822994351387024, 0.0027804062701761723, 0.0251445434987545, -0.006258765235543251, -0.0031042927876114845, -0.01723441295325756, 0.026312360540032387, 0.04503391683101654, 0.02529052086174488, -0.0035604711156338453, -0.01582026109099388, 0.017416885122656822, -0.01059245876967907, 0.08138220012187958, 0.002392654772847891, 0.028374286368489265, 0.01932371035218239, -0.0021748298313468695, 0.024688366800546646, -0.038027018308639526, 0.07817070186138153, -0.009388147853314877, 0.025162791833281517, 0.035162217915058136, -0.002570564392954111, 0.0251445434987545, 0.026221124455332756, 0.03341049328446388, -0.07503219693899155, 0.02682328037917614, -0.006381933577358723, -0.0138404481112957, 0.07707587629556656, -0.026075147092342377, 0.024487648159265518, 0.03211494907736778, 0.022973135113716125, 0.058354318141937256, -0.023538796231150627, 0.033538222312927246, 0.009360777214169502, -0.016486281529068947, 0.0365854948759079, 0.006906538270413876, 0.05700403079390526, -0.010565088130533695, -0.05284368619322777, 0.0031156972981989384, 0.030235493555665016, -0.022352732717990875, 0.010555963963270187, -0.012015734799206257, 0.02821006253361702, 0.018849285319447517, 0.0031704388093203306, 0.008608083240687847, 0.004151221830397844, 0.01903175562620163, -0.004413524642586708, 0.029633337631821632, 0.019141238182783127, 0.0028602376114577055, -0.07109081745147705, -0.004753377288579941, -0.03362945839762688, -0.005223240703344345, -0.02811882644891739, 0.0603250116109848, -0.06375546753406525, 0.01817414164543152, -0.03273535147309303, 0.02372126840054989, 0.002206762321293354, -0.01743513159453869, -0.011824140325188637, 0.009762214496731758, 0.03601983189582825, -0.023228595033288002, -0.013648852705955505, -0.017152301967144012, -0.010729311965405941, 0.045398857444524765, 0.03089239075779915, 0.03054569475352764, 0.06371897459030151, -0.08291495591402054, 0.030290234833955765, 0.018247129395604134, -0.0037839985452592373, -0.003227461129426956, -0.029140666127204895, 0.008480353280901909, -0.00535553228110075, -0.06375546753406525, -0.05131092667579651, 0.015592171810567379, -0.009155496954917908, 0.003147629788145423, 0.025710204616189003, 0.02897644229233265, -0.0020847346168011427, -0.009670978412032127, 0.018584702163934708, 0.06076294183731079, -0.03103836625814438, -0.026987504214048386, -0.02080172672867775, 0.03237040713429451, 0.007736783009022474, -0.041566960513591766, 0.02286365255713463, 0.009670978412032127, -0.02567371167242527, 0.027279458940029144, -0.04963219165802002, 0.021166669204831123, 0.0013411639956757426, 0.02375776320695877, 0.03673147037625313, -0.020436784252524376, 0.009173744358122349, 0.020108336582779884, 0.042625293135643005, 0.0005710781551897526, -0.013822200708091259, -0.10444656759500504, 0.006947594694793224, -0.0074493903666734695, -0.022553451359272003, -0.06481380015611649, -0.021257905289530754, 0.021203164011240005, 0.00753150274977088, -0.03543592616915703, 0.03543592616915703, -0.0032548317685723305, 0.0012693159515038133, 0.02242572233080864, 0.030180752277374268, 0.07561610639095306, -0.02720646932721138, -0.006199462339282036, 0.07656495273113251, -0.04145747795701027, -0.016577517613768578, -0.09868047386407852, -0.02926839515566826, 0.05240575596690178, 0.025418251752853394, 0.004876545164734125, 0.02888520620763302, -0.016659628599882126, -0.029943538829684258, -0.034833770245313644, -0.028812216594815254, -0.09371725469827652, -0.02118491753935814, -0.0048218038864433765, -0.06433937698602676, -0.06992299854755402, 0.026093395426869392, 0.02357529103755951, 0.006687573157250881, 0.000035567645682021976, -0.01243541855365038, 0.010428234003484249, -0.01532758865505457, -0.07707587629556656, -0.06620058417320251, 0.03419512137770653, 0.028264803811907768, 0.053245123475790024, 0.08415576070547104, 0.013174427673220634, -0.03346523642539978, 0.0033278202172368765, 0.00421280600130558, -0.045435354113578796, 0.021148422732949257, -0.0188310369849205, -0.04320920258760452, 0.058208342641592026, -0.0017072469927370548, 0.008785992860794067, 0.008790554478764534, 0.05346408858895302, -0.019670406356453896, 0.020746985450387, -0.008402802981436253, -0.016796482726931572, 0.015373206697404385, -0.026367101818323135, -0.028702734038233757, -0.011486567556858063, -0.054193973541259766, 0.002408621134236455, 0.0019011227414011955, 0.007727659307420254, 0.01790955662727356, -0.04609224945306778, -0.011413579806685448, -0.04857385903596878, -0.041092533618211746, 0.027480177581310272, -0.03519871085882187, -0.027078740298748016, -0.024086210876703262, 0.001166675821878016, 0.05521581321954727, 0.0016274158842861652, -0.0011073726927861571, -0.02357529103755951, -0.017097560688853264, 0.058646272867918015, -0.005300791002810001, -0.001527056680060923, 0.0440850630402565, -0.03472428768873215, 0.04642069712281227, 0.04882931709289551, -0.02830129861831665, 0.02567371167242527, 0.02103894017636776, 0.0008861262467689812, -0.029049430042505264, 0.05452242121100426, -0.018046410754323006, -0.038610924035310745, -0.01793692819774151, -0.046457190066576004, -0.03981523588299751, 0.009515877813100815, 0.004780747927725315, -0.010920907370746136, 0.016039226204156876, -0.045325867831707, 0.002743912162259221, 0.012152587994933128, -0.012581395916640759, 0.06590863317251205, 0.057879894971847534, 0.02452414110302925, -0.011267602443695068, -0.03601983189582825, -0.078243687748909, -0.052515238523483276, 0.009506754577159882, 0.016340304166078568, 0.024414658546447754, -0.01616695709526539, -0.038172993808984756, -0.001166675821878016, 0.04361063987016678, -0.02561897039413452, -0.007385525852441788, -0.017070189118385315, -0.020965952426195145, 0.01773620955646038, -0.04565431922674179, 0.004101042170077562, -0.053573571145534515, 0.04178592562675476, -0.002131492830812931, 0.020199572667479515, 0.0014175738906487823, 0.0271152351051569, 0.0416034534573555, 0.02777213044464588, -0.00796487182378769, 0.03945029526948929, 0.03211494907736778, -0.003448707517236471, 0.0010440779151394963, 0.014068536460399628, -0.07109081745147705, -0.0566025972366333, -0.013064945116639137, -0.04470546543598175, 0.0038980429526418447, -0.034596558660268784, 0.01534583605825901, 0.05890173465013504, 0.043391674757003784, 0.02222500368952751, -0.008494039066135883, -0.043099720031023026, -0.030582189559936523, 0.009616237133741379, -0.04269828274846077, 0.008311567828059196, -0.025308769196271896, 0.04131150245666504, -0.04620173200964928, -0.014780174940824509, 0.03089239075779915, 0.06214972212910652, -0.0016000451287254691, -0.04627472162246704, 0.06455834209918976, 0.028866957873106003, -0.04550834000110626, 0.0157563965767622, -0.060799434781074524, 0.031202591955661774, -0.07517817616462708, -0.0006882589077576995, 0.02534526214003563, 0.0003312994376756251, 0.00040400284342467785, 0.009570619091391563, 0.05627414584159851, 0.021878307685256004, 0.027662647888064384, -0.001382220070809126, -0.03165876865386963, 0.015427947975695133, 0.0028830463998019695, 0.03260761871933937, -0.0044545806013047695, 0.0201813243329525, 0.02476135455071926, 0.0692296102643013, -0.0065142251551151276, 0.06842673569917679, 0.006254203617572784, -0.02667730301618576, 0.015911497175693512, -0.023265089839696884, -0.010063291527330875, -0.008494039066135883, -0.01936020515859127, -0.05996006727218628, 0.0365854948759079, 0.022790664806962013, -0.038136500865221024, -0.03948678821325302, 0.008202084340155125, 0.01790955662727356, -0.029231902211904526, -0.044158052653074265, -0.028611499816179276, -0.014406108297407627, 0.019195979461073875, -0.03868391364812851, 0.08262300491333008, 0.03060043603181839, 0.012782114557921886, 0.0157563965767622, -0.011322343721985817, -0.09714771807193756, 0.06623707711696625, 0.02113017626106739, -0.021385636180639267, -0.026713797822594643, -0.03988822549581528, 0.00043793109944090247, -0.018393106758594513, -0.030563941225409508, -0.055726733058691025, 0.021641096100211143, -0.01974339410662651, 0.01852995902299881, -0.006687573157250881, -0.08079829066991806, 0.005127443466335535, -0.03487026318907738, 0.002531789243221283, -0.04459598287940025, 0.11612473428249359, -0.010391740128397942, -0.014168895781040192, 0.02510805055499077, -0.020911211147904396, 0.008740374818444252, 0.04364713281393051, -0.02204253152012825, 0.01743513159453869, -0.062368687242269516, 0.080506332218647, -0.046493686735630035, -0.01314705703407526, 0.05539828538894653, -0.012672631070017815, -0.04806293919682503, 0.010455605573952198, 0.010437358170747757, 0.025837935507297516, 0.02821006253361702, -0.005378341302275658, 0.01018189825117588, -0.018867531791329384, -0.04116552323102951, 0.043245695531368256, -0.020199572667479515, 0.01183326356112957, 0.08240403980016708, 0.009182867594063282, 0.06452184915542603, -0.0039003239944577217, -0.031001873314380646, 0.049887653440237045, 0.07641898095607758, -0.0008387977140955627, 0.0025044186040759087, -0.004830927588045597, 0.07346294075250626, 0.05459541082382202, -0.04364713281393051, 0.004073671530932188, 0.04948621615767479, -0.046639662235975266, -0.037552591413259506, -0.018721554428339005, -0.011258479207754135, 0.027279458940029144, 0.048792824149131775, -0.0031202591490000486, -0.01749899797141552, -0.020856468006968498, -0.0578434020280838, 0.03487026318907738, 0.006391057278960943, -0.02021781913936138, -0.04492443427443504, 0.027954602614045143, 0.0018760330276563764, -0.07039742171764374, -0.001166675821878016, -0.01965215802192688, 0.021695837378501892, -0.07054340094327927, 0.04098305106163025, 0.011815016157925129, 0.010318751446902752, -0.009908190928399563, 0.042917247861623764, 0.05452242121100426, -0.03959627076983452, 0.032863080501556396, -0.015774643048644066, -0.021057186648249626, -0.021002445369958878, -0.025600722059607506, -0.035399429500103, 0.019433192908763885, 0.025454744696617126, -0.014150649309158325, -0.004511602688580751, 0.008918284438550472, -0.010172775015234947, -0.024250434711575508, -0.07174771279096603, -0.03689569607377052, -0.056055180728435516, -0.04379311203956604, -0.04426753520965576, 0.029012935236096382, -0.06058046966791153, -0.018265375867486, 0.02175057865679264, -0.02974282018840313, -0.03724239021539688, -0.06028851494193077, -0.015774643048644066, -0.10065116733312607, 0.037169404327869415, -0.017635850235819817, -0.046931616961956024, 0.04105604067444801, 0.007321660872548819, 0.029377877712249756, -0.023027878254652023, -0.04112903028726578, 0.0059257554821670055, -0.0012430857168510556, -0.025181038305163383, 0.04634770750999451, -0.03372069448232651, -0.03709641471505165, 0.02777213044464588, -0.0033437865786254406, -0.05335460603237152, -0.02467011846601963, -0.012207329273223877, 0.008494039066135883, -0.027480177581310272, -0.002727945800870657, 0.07393737137317657, 0.014506467618048191, 0.01797342300415039, -0.04963219165802002, 0.010628952644765377, -0.023848997429013252, 0.05890173465013504, -0.03795402869582176, -0.052515238523483276, 0.07933852076530457, 0.05561725050210953, -0.00963448453694582, -0.003729257034137845, -0.026549573987722397, -0.010336998850107193, -0.01873980276286602, 0.011641668155789375, -0.0195061806589365, -0.0567120797932148, -0.04218736290931702, -0.008977587334811687, -0.023776009678840637, 0.08437472581863403, 0.003220618236809969, 0.038939375430345535, -0.01936020515859127, -0.00886810477823019, -0.03432285040616989, 0.002369845984503627, 0.03806351125240326, 0.013092315755784512, 0.02003534883260727, -0.025217533111572266, 0.005223240703344345, -0.0072577958926558495, -0.04499742016196251, 0.0542304702103138, -0.05642012506723404, -0.025655463337898254, 0.016294686123728752, -0.02620287798345089, 0.03638477623462677, -0.012207329273223877, -0.01974339410662651, -0.0046256473287940025, -0.0046575795859098434, 0.040764085948467255, 0.06284311413764954, 0.010930030606687069, -0.07357242703437805, 0.009798708371818066, -0.046493686735630035, -0.012125217355787754, -0.04594627022743225, 0.0037383807357400656, -0.029578596353530884, 0.01051947008818388, -0.03331925719976425, -0.02165934257209301, 0.0006774246576242149, 0.03310029208660126, 0.007536064367741346, 0.010145404376089573, -0.09554196894168854, 0.01410503126680851, -0.005045331083238125, -0.01685122400522232, -0.02472485974431038, -0.01921422779560089, 0.014853163622319698, 0.012289442121982574, -0.03857443109154701, 0.003024461679160595, 0.004424928687512875, -0.04550834000110626, 0.06521523743867874, 0.01584763266146183, 0.0867103561758995, -0.034487076103687286, -0.06240518391132355, 0.05087299644947052, -0.016276439651846886, 0.005004275124520063, -0.010692818090319633, 0.022060779854655266, 0.044632479548454285, -0.024396412074565887, 0.04952270910143852, 0.028994688764214516, -0.02576494589447975, 0.053099147975444794, -0.02915891259908676, -0.015592171810567379, 0.028958193957805634, 0.0025728452019393444, 0.07795173674821854, 0.007472199387848377, 0.0068609206937253475, 0.026896268129348755, -0.0033323820680379868, 0.010492099449038506, -0.05474139004945755, -0.03729713335633278, 0.03078290820121765, 0.0615658164024353, 0.018365735188126564, -0.05923018231987953, 0.031184343621134758, 0.05933966487646103, -0.0021588634699583054, 0.021239658817648888, 0.017754456028342247, -0.0025751262437552214, -0.009597989730536938 ]
40,051
s3path.old_versions
resolve
resolve method is unsupported on S3 service AWS S3 don't have this file system action concept
def resolve(self): """ resolve method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.resolve.__qualname__) raise NotImplementedError(message)
(self)
[ -0.004567037336528301, -0.051996566355228424, -0.035081613808870316, 0.042219724506139755, 0.023308806121349335, -0.019130811095237732, 0.024746576324105263, 0.037990983575582504, 0.051015499979257584, 0.020331773906946182, 0.06722002476453781, 0.00023469497682526708, 0.05558253452181816, -0.046685270965099335, -0.028620101511478424, 0.06955428421497345, 0.010935517027974129, 0.050034429877996445, 0.02364710532128811, -0.0014546859310939908, -0.0301593616604805, 0.0031842398457229137, 0.01122307125478983, -0.08247730880975723, 0.012144936248660088, 0.0788913443684578, 0.05497359856963158, -0.012424033135175705, -0.020856136456131935, -0.025372428819537163, -0.0566650927066803, 0.056462112814188004, 0.004457090049982071, 0.07963559776544571, 0.04073120653629303, 0.03095436468720436, 0.02560923807322979, 0.021211350336670876, -0.016399046406149864, -0.006059782113879919, -0.09763310849666595, 0.05338359251618385, 0.004575494676828384, -0.08552200347185135, 0.05940531566739082, 0.049899112433195114, -0.030362341552972794, 0.10385781526565552, 0.03748353570699692, 0.004622010979801416, 0.019130811095237732, 0.012373288162052631, -0.012576268054544926, -0.0405958890914917, -0.0016333501553162932, 0.04336994141340256, 0.03296724334359169, 0.008635083213448524, -0.016179151833057404, 0.05287614464759827, 0.05263933539390564, 0.02315657027065754, 0.053518909960985184, -0.007852766662836075, -0.021109862253069878, -0.02601519785821438, 0.03765268623828888, -0.06718619167804718, -0.03778800368309021, 0.062213197350502014, 0.03171553835272789, -0.02980414777994156, -0.024188382551074028, -0.0003668430435936898, 0.0653255507349968, -0.010208174586296082, 0.0063811661675572395, -0.003985585644841194, 0.04005460813641548, 0.021312840282917023, -0.02364710532128811, -0.06322809308767319, -0.020044218748807907, -0.04692208021879196, 0.012314085848629475, 0.007053535431623459, 0.01945219561457634, -0.06688172370195389, -0.07029854506254196, 0.010148972272872925, -0.02484806627035141, 0.020822307094931602, -0.029026059433817863, -0.0069013009779155254, 0.029465848580002785, 0.01546026673167944, -0.0035584832075983286, -0.09404713660478592, -0.026556476950645447, -0.007315717171877623, 0.03345777839422226, 0.030666809529066086, 0.01389563363045454, -0.01333744078874588, 0.048951875418424606, -0.05094783753156662, -0.027334563434123993, -0.02198943868279457, -0.032138410955667496, 0.0077132186852395535, 0.06390469521284103, 0.033610012382268906, -0.014978190883994102, 0.015815481543540955, -0.001546661020256579, -0.05209805443882942, 0.039107371121644974, -0.018217405304312706, -0.02100837230682373, -0.03139415383338928, 0.0006263818359002471, -0.0035267677158117294, -0.019502941519021988, -0.04492611438035965, 0.030666809529066086, -0.011781265027821064, -0.022293908521533012, 0.004444404039531946, 0.016525909304618835, -0.005949834827333689, -0.028738506138324738, -0.029550423845648766, -0.06759215146303177, -0.01699106954038143, 0.010250461287796497, 0.041373975574970245, 0.02980414777994156, -0.008178379386663437, 0.001738011371344328, 0.02904297411441803, 0.03092053346335888, 0.012322543188929558, -0.013701112009584904, -0.008694285526871681, 0.014360794797539711, 0.045027606189250946, 0.025457004085183144, -0.01566324569284916, -0.010064397007226944, -0.007108509074896574, 0.023088911548256874, 0.012610097415745258, 0.03286575525999069, 0.012677757069468498, -0.013235950842499733, 0.004180107731372118, 0.04232121258974075, -0.006639119237661362, -0.07300493866205215, 0.006968960631638765, -0.00805151741951704, -0.025795303285121918, -0.029245954006910324, 0.012533980421721935, 0.005099858157336712, -0.04587335139513016, -0.006694092880934477, 0.01565478928387165, -0.0270808394998312, 0.02244614250957966, -0.039276521652936935, 0.02413763850927353, -0.025101790204644203, -0.00574262673035264, 0.08836371451616287, 0.06258532404899597, 0.013768771663308144, -0.00681249750778079, -0.006034409627318382, -0.07320791482925415, 0.03452342003583908, -0.05504125729203224, 0.006884385831654072, -0.030260851606726646, -0.012711587361991405, 0.08328922837972641, -0.02002730406820774, 0.03839694336056709, 0.0004448104009497911, 0.049357831478118896, -0.0013975979527458549, 0.0041822222992777824, 0.008076890371739864, 0.007945799268782139, 0.03171553835272789, -0.09479139745235443, 0.012051903642714024, 0.024915724992752075, -0.007907740771770477, 0.08829605579376221, 0.0009900532895699143, 0.02457742765545845, 0.010664877481758595, 0.042084403336048126, 0.020686987787485123, 0.01726171001791954, 0.017743784934282303, -0.03528459370136261, -0.04972996190190315, 0.02435753308236599, -0.05673275142908096, 0.027063924819231033, -0.0626191571354866, -0.00745103694498539, -0.006186644081026316, 0.059439145028591156, 0.02258146181702614, -0.020957626402378082, 0.04336994141340256, 0.03418511897325516, 0.083492211997509, 0.024154553189873695, 0.018758682534098625, 0.01579010859131813, 0.04516292363405228, -0.013878718949854374, 0.017337827011942863, -0.045839522033929825, -0.02198943868279457, -0.0530114620923996, -0.008685828186571598, -0.005670737940818071, 0.006097840610891581, 0.05294380336999893, 0.08613093942403793, -0.025795303285121918, 0.05737552046775818, 0.010335036553442478, -0.0038756385911256075, -0.012914566323161125, -0.03609650954604149, -0.020128794014453888, -0.01642441935837269, 0.06874237209558487, -0.07327557355165482, -0.02694552019238472, -0.005628450773656368, 0.045433562248945236, 0.027419138699769974, -0.02993946708738804, 0.08761945366859436, 0.0467529296875, -0.07469642907381058, -0.04857974499464035, 0.01709255948662758, -0.09208500385284424, 0.0019018750172108412, -0.051421456038951874, 0.03271351754665375, 0.009759928099811077, -0.0579167976975441, -0.017540806904435158, 0.057882968336343765, -0.012356373481452465, -0.043877389281988144, -0.025795303285121918, 0.017337827011942863, 0.011916584335267544, -0.044317178428173065, 0.06535937637090683, -0.004287940450012684, 0.006448825821280479, -0.0051506031304597855, 0.01628910005092621, 0.013219036161899567, -0.04286248981952667, -0.03511544317007065, 0.01097780466079712, -0.04377589747309685, 0.01605229079723358, 0.007890825159847736, 0.011451423168182373, 0.01546026673167944, 0.052842311561107635, -0.015308032743632793, -0.016314473003149033, -0.0027486798353493214, 0.01503739319741726, -0.022513803094625473, 0.006351565010845661, -0.03176628053188324, 0.035081613808870316, -0.04979762062430382, -0.02730073407292366, 0.022632207721471786, 0.022006353363394737, -0.08640158176422119, -0.003497166559100151, 0.06941896677017212, 0.007459494285285473, -0.06941896677017212, 0.052165716886520386, -0.028924569487571716, 0.014301592484116554, 0.02569381333887577, -0.013574250042438507, 0.048106126487255096, -0.022716781124472618, -0.037179067730903625, 0.04499377682805061, 0.01926613226532936, 0.026133602485060692, -0.05757850036025047, -0.0014483428094536066, 0.050203580409288406, 0.06004808470606804, -0.01948602683842182, 0.04046056792140007, -0.00566650927066803, 0.023883914574980736, -0.04671910032629967, 0.026471901684999466, -0.039005883038043976, -0.0314110666513443, 0.01304988656193018, -0.010817112401127815, -0.06431065499782562, 0.00402575870975852, -0.012525523081421852, 0.024645086377859116, -0.013278238475322723, 0.016568196937441826, 0.01801442541182041, -0.005992121994495392, -0.08335688710212708, -0.05419550836086273, 0.020906882360577583, -0.04621165245771408, 0.052131883800029755, 0.07692920416593552, -0.00016148494614753872, 0.0034887089859694242, 0.010521100834012032, 0.0355890616774559, -0.0821390151977539, 0.02220933325588703, 0.044756967574357986, -0.051015499979257584, 0.037720344960689545, -0.06255149841308594, -0.013777229003608227, -0.010876314714550972, 0.0005399570218287408, 0.03024393692612648, -0.012660842388868332, 0.011925041675567627, 0.0153926070779562, 0.02136358618736267, -0.015130425803363323, -0.05964212492108345, 0.03629948943853378, -0.0777411237359047, -0.032679688185453415, -0.010588760487735271, 0.005260550417006016, 0.010419610887765884, 0.02127901092171669, -0.001200961647555232, -0.018944747745990753, -0.046143993735313416, -0.02623509243130684, -0.06623895466327667, -0.04746335744857788, -0.022074013948440552, -0.01825123466551304, 0.044756967574357986, 0.02609977312386036, -0.0011703033233061433, -0.022682951763272285, 0.016568196937441826, -0.0030383483972400427, 0.03724672645330429, -0.05517657846212387, 0.000293104414595291, 0.02038251794874668, 0.03768651559948921, 0.004237195942550898, -0.007036620285362005, 0.04624548181891441, 0.030193191021680832, 0.007222685031592846, -0.052131883800029755, 0.004180107731372118, -0.04336994141340256, 0.008812690153717995, -0.035487569868564606, -0.02092379704117775, -0.0037995213642716408, 0.008719658479094505, 0.015891598537564278, -0.0012527636718004942, -0.03220606967806816, 0.014783669263124466, 0.020636241883039474, 0.0018373867496848106, -0.008761946111917496, 0.01838655397295952, 0.01994272880256176, -0.014825955964624882, -0.00386506668291986, 0.002143970225006342, -0.05673275142908096, -0.0516582652926445, -0.006351565010845661, -0.0014536287635564804, 0.04073120653629303, -0.01025891862809658, -0.05250401422381401, -0.027960417792201042, 0.022412313148379326, 0.005861031357198954, -0.044148027896881104, -0.012466320767998695, 0.018217405304312706, 0.009421628899872303, -0.04979762062430382, -0.023748593404889107, 0.021076031029224396, 0.03795715421438217, -0.005916005000472069, 0.05365423113107681, 0.08383050560951233, -0.020534753799438477, 0.00659260293468833, -0.0017686698120087385, -0.013548877090215683, -0.019384536892175674, 0.008334843441843987, -0.015274202451109886, 0.04397887736558914, -0.017540806904435158, -0.006106297951191664, -0.06508874148130417, 0.005104087293148041, 0.05247018486261368, -0.018623363226652145, -0.008939553052186966, 0.04353908821940422, -0.015781650319695473, -0.0034210493322461843, -0.007954256609082222, 0.009565405547618866, -0.016382131725549698, -0.029381273314356804, -0.02258146181702614, -0.03171553835272789, 0.07286962121725082, -0.011848924681544304, -0.018504958599805832, -0.057037223130464554, -0.00477424543350935, 0.006364251021295786, -0.0014504572609439492, -0.04918868467211723, -0.016525909304618835, 0.011426051147282124, -0.05260550230741501, -0.01792985014617443, 0.006140127778053284, -0.03947950154542923, 0.05585317686200142, -0.02917829342186451, -0.026082858443260193, -0.04516292363405228, -0.0004088661225978285, 0.0135404197499156, 0.025457004085183144, 0.04384355992078781, 0.00741720711812377, -0.004545893520116806, -0.02716541476547718, -0.06989258527755737, 0.007958485744893551, 0.040798865258693695, 0.020686987787485123, -0.05182741582393646, 0.019993474707007408, -0.016348302364349365, 0.07780878245830536, -0.03650246933102608, 0.05615764483809471, 0.00006785803270759061, -0.0264549870043993, 0.060420211404561996, 0.0010963004315271974, 0.01333744078874588, -0.051590606570243835, -0.012204138562083244, -0.03037925623357296, -0.021481990814208984, 0.03792332485318184, -0.02373167872428894, 0.010994719341397285, 0.051996566355228424, 0.03822779282927513, -0.0320369228720665, -0.0095484908670187, -0.013244408182799816, 0.04945932328701019, -0.04756484925746918, -0.045974843204021454, 0.038836732506752014, 0.023359550163149834, 0.032628946006298065, 0.022090928629040718, -0.02226007916033268, -0.06099532172083855, 0.039682481437921524, 0.030007127672433853, 0.05392486974596977, 0.03127574920654297, -0.06982492655515671, 0.02520328015089035, -0.014014038257300854, -0.004579723346978426, -0.042930152267217636, -0.015248830430209637, -0.035893529653549194, -0.010529558174312115, 0.003708603559061885, -0.03484480455517769, -0.0081656938418746, -0.034286610782146454, -0.025490833446383476, 0.002039309125393629, 0.11461572349071503, -0.032324474304914474, -0.0006982703926041722, -0.021397415548563004, -0.012610097415745258, 0.02533859945833683, 0.014301592484116554, -0.05037273094058037, 0.014064783230423927, -0.01547718234360218, -0.031123513355851173, -0.031208088621497154, -0.08315391093492508, 0.08511604368686676, -0.039276521652936935, 0.007582127582281828, 0.034015972167253494, 0.03092053346335888, 0.03411746025085449, 0.10933825373649597, -0.0020075934007763863, 0.027554458007216454, -0.06434448063373566, -0.039276521652936935, 0.009294766932725906, -0.026421155780553818, 0.03511544317007065, -0.0030320053920149803, 0.003736090147867799, -0.028450950980186462, 0.005619992967694998, 0.056462112814188004, 0.012060361914336681, 0.015206542797386646, -0.05490593612194061, 0.021025286987423897, 0.026742540299892426, 0.027689777314662933, 0.010673335753381252, 0.005463529843837023, -0.012753874994814396, 0.056766580790281296, -0.019469110295176506, -0.007539840415120125, -0.037720344960689545, -0.006918215658515692, -0.06150276958942413, 0.00470658577978611, -0.018843257799744606, -0.07232833653688431, -0.03086978942155838, -0.009159446693956852, 0.012559352442622185, -0.010495728813111782, -0.02498338557779789, -0.03975014016032219, -0.07841772586107254, 0.021481990814208984, -0.029076803475618362, 0.01343047246336937, 0.0028988001868128777, -0.0069013009779155254, -0.039276521652936935, 0.03144489601254463, -0.01691495254635811, 0.02569381333887577, -0.002201058203354478, 0.05375571921467781, 0.040528226643800735, 0.06515640020370483, 0.0380924753844738, -0.06204404681921005, 0.03849843144416809, -0.01418318785727024, 0.0023258060682564974, 0.006563001777976751, 0.012170308269560337, 0.0276559479534626, -0.0004329170915298164, -0.012931481935083866, 0.001509659574367106, -0.04343760013580322, 0.021465076133608818, -0.006579916924238205, 0.010766367428004742, -0.010631048120558262, -0.04773399606347084, -0.027960417792201042, 0.04350525885820389, -0.08031219989061356, 0.0264549870043993, 0.007759734522551298, 0.018369639292359352, -0.03880290314555168, -0.0393441803753376, -0.004129362758249044, -0.014809041284024715, 0.09066414833068848, -0.021735714748501778, -0.0020403661765158176, 0.002361750230193138, 0.016542823985219002, 0.030345425009727478, -0.02158348076045513, -0.012390202842652798, 0.02917829342186451, 0.0024146095383912325, -0.06343107670545578, 0.04326844960451126, -0.02931361459195614, -0.011476796120405197, -0.00823335349559784, -0.03880290314555168, 0.030260851606726646, -0.010935517027974129, -0.01365036703646183, 0.00415050657466054, -0.0031673249322921038, 0.011409135535359383, 0.06671257317066193, -0.02204018458724022, 0.0035288820508867502, -0.07970325648784637, 0.022463057190179825, -0.03528459370136261, 0.016745803877711296, -0.03327171131968498, -0.004875735379755497, 0.09012287110090256, 0.03320405259728432, -0.046685270965099335, -0.0020255655981600285, -0.018166659399867058, -0.04648229107260704, 0.04624548181891441, 0.04827527701854706, -0.019164642319083214, 0.024425191804766655, 0.021109862253069878, -0.030582234263420105, -0.01605229079723358, 0.06052170321345329, -0.0442495159804821, 0.01709255948662758, 0.02686094492673874, 0.010825569741427898, -0.05037273094058037, -0.03484480455517769, 0.0579167976975441, 0.008990297093987465, 0.017912935465574265, 0.00941317155957222, -0.03903971239924431, -0.016940325498580933, -0.05835658684372902, 0.0264549870043993, -0.019908899441361427, -0.017067188397049904, 0.03222298622131348, -0.032189156860113144, 0.011789722368121147, -0.016652772203087807, -0.023444125428795815, 0.04134014621376991, 0.0017707841470837593, 0.08775477856397629, 0.014927445910871029, 0.020906882360577583, -0.013912549242377281, 0.0036472866777330637, 0.004579723346978426, -0.018437298014760017, -0.026911690831184387, 0.0006670834845863283, -0.027063924819231033, -0.014436912722885609, -0.05642828345298767, -0.0032836152240633965, -0.0033237882889807224, 0.040798865258693695, -0.004803846590220928, 0.01543489471077919, -0.036468639969825745, 0.047226548194885254, -0.0026767912786453962, -0.001303508528508246, -0.044317178428173065, -0.01496973354369402, 0.01668660156428814, 0.017811445519328117, -0.01637367531657219, -0.06826875358819962, 0.017642296850681305, 0.010301206260919571, 0.08031219989061356, 0.03127574920654297, 0.048106126487255096, -0.02564306929707527, 0.025321684777736664, 0.036164168268442154, -0.04286248981952667, 0.030091701075434685, 0.056495942175388336, -0.008838063105940819, 0.051996566355228424, -0.031106598675251007, 0.004209708888083696, -0.010749452747404575, -0.05795063078403473, 0.07009556889533997, -0.021651139482855797, 0.009607693180441856, 0.05500742793083191, -0.029601167887449265, 0.04452015832066536, 0.03876907378435135, 0.001498030498623848, 0.021617310121655464, 0.04076503589749336, -0.0024970700033009052, -0.07232833653688431, -0.03667161986231804, 0.037855666130781174, 0.0028755420353263617, -0.01712639071047306, -0.07652324438095093, -0.0017105246661230922, 0.032053835690021515, 0.01659356988966465, 0.027402224019169807, 0.026421155780553818, 0.009531576186418533, -0.005159060470759869 ]
40,052
s3path.old_versions
rglob
This is like calling S3Path.glob with "**/" added in front of the given relative pattern
def rglob(self, pattern: str) -> Generator[S3Path, None, None]: """ This is like calling S3Path.glob with "**/" added in front of the given relative pattern """ self._absolute_path_validation() general_options = self._accessor.configuration_map.get_general_options(self) glob_new_algorithm = general_options['glob_new_algorithm'] if not glob_new_algorithm: yield from super().rglob(pattern) return yield from self._rglob(pattern)
(self, pattern: str) -> Generator[s3path.old_versions.S3Path, NoneType, NoneType]
[ 0.04216301068663597, -0.050846707075834274, -0.02638239599764347, 0.020750198513269424, -0.008884224109351635, -0.03850121051073074, 0.04132602736353874, 0.004908555652946234, 0.05196268483996391, -0.006512772757560015, 0.04094240814447403, 0.04066341370344162, 0.012650646269321442, 0.03197971731424332, -0.054578255861997604, 0.04160502180457115, 0.039652060717344284, 0.04265125095844269, -0.04038441926240921, 0.03644362837076187, -0.0572286993265152, 0.06981831789016724, 0.018675178289413452, 0.025580286979675293, 0.005706304684281349, 0.0402100495994091, -0.016146793961524963, 0.010209446772933006, 0.04551094025373459, -0.03703648969531059, -0.017925381660461426, -0.01657400280237198, 0.01502209808677435, 0.014403079636394978, -0.0601232647895813, -0.054892122745513916, -0.02003527618944645, 0.07232926785945892, -0.06270395964384079, 0.004298255313187838, 0.04045416787266731, 0.045371443033218384, 0.014481546357274055, -0.018710052594542503, 0.06277371197938919, 0.023976070806384087, -0.005497058853507042, -0.00421978859230876, -0.05178831145167351, -0.019041359424591064, 0.02116869017481804, 0.09590428322553635, -0.05925140902400017, -0.034525539726018906, -0.0060899220407009125, 0.0038797641173005104, -0.005963502451777458, 0.07414272427558899, 0.04889374598860741, 0.03780372440814972, 0.01003507524728775, -0.030288316309452057, -0.019390102475881577, 0.0006206532707437873, -0.002308241557329893, -0.05785643681883812, -0.05778668820858002, -0.047429025173187256, 0.014097929000854492, 0.0516488142311573, -0.07239901274442673, 0.026417270302772522, 0.011386454105377197, -0.019948091357946396, -0.05360177531838417, 0.01043612975627184, 0.02723681554198265, 0.0015497260028496385, 0.06221572309732437, -0.005915550515055656, -0.04237225651741028, 0.00145055225584656, 0.040279798209667206, -0.03129966929554939, 0.02123843878507614, 0.012240873649716377, -0.0038710455410182476, -0.0601232647895813, 0.06674937903881073, 0.022232355549931526, -0.01088949479162693, 0.03640875220298767, -0.007768246810883284, -0.0003773506614379585, 0.009930452331900597, -0.004751621279865503, -0.002146948128938675, 0.009869422763586044, 0.05293916165828705, -0.004664435517042875, -0.043348733335733414, -0.0009928272338584065, 0.023662202060222626, -0.026521893218159676, 0.04087265953421593, -0.010566907934844494, 0.01803000457584858, -0.0257895328104496, 0.016451943665742874, 0.023662202060222626, -0.04519707337021828, 0.06800485402345657, 0.040802910923957825, -0.0032127934973686934, -0.03947769105434418, 0.027602996677160263, -0.010279195383191109, 0.0011464920826256275, -0.007436940912157297, -0.03898945078253746, 0.010357662104070187, 0.02211029641330242, -0.021151253953576088, 0.06385481357574463, 0.09360257536172867, -0.0006637012120336294, 0.0287015363574028, -0.005017537623643875, -0.008840630762279034, 0.035379961133003235, 0.008356750011444092, 0.06856284290552139, -0.03640875220298767, -0.021569743752479553, -0.024202752858400345, 0.036583125591278076, 0.04523194581270218, -0.042860496789216995, 0.006695862393826246, 0.014481546357274055, 0.05381102114915848, 0.004860603250563145, 0.03487428277730942, -0.005139597691595554, 0.01301682647317648, -0.014560014009475708, 0.007262569852173328, 0.006412508897483349, 0.0035179434344172478, -0.005684508476406336, 0.021988235414028168, 0.05196268483996391, 0.06102999672293663, 0.06158798560500145, -0.006377634592354298, -0.011430046521127224, -0.015222624875605106, 0.06256446242332458, -0.03321775421500206, 0.006351478863507509, 0.05192780867218971, 0.017009932547807693, -0.035083528608083725, 0.01306041982024908, 0.016268853098154068, 0.01837874762713909, -0.003993105608969927, 0.005675789900124073, -0.01860542967915535, 0.010244321078062057, 0.03299107402563095, 0.010575626976788044, 0.004790854640305042, -0.018989047035574913, 0.041116781532764435, 0.08739495277404785, -0.03271207958459854, 0.07414272427558899, 0.04669666662812233, 0.001978025771677494, 0.021098941564559937, -0.04411596804857254, 0.05325303226709366, 0.012345496565103531, 0.010845902375876904, 0.03328750282526016, -0.0016085763927549124, -0.024150442332029343, 0.024255065247416496, 0.001157390302978456, -0.07288725674152374, 0.031177610158920288, -0.007903384976089, -0.013400443829596043, 0.017855633050203323, -0.03640875220298767, -0.03070680797100067, 0.018832113593816757, -0.05932115763425827, 0.10085643082857132, -0.08732520788908005, 0.0021774631459265947, -0.00845265481621027, -0.03529277443885803, 0.02495254948735237, -0.024289939552545547, 0.021970799192786217, 0.03173559904098511, -0.007628749590367079, 0.013513784855604172, -0.06755148619413376, 0.03919869661331177, 0.02748093567788601, -0.024255065247416496, 0.009468368254601955, -0.010811028070747852, -0.0486496277153492, 0.0121624069288373, -0.01602473296225071, 0.03616463392972946, 0.02034914493560791, -0.0429302453994751, -0.0486845001578331, -0.029939573258161545, 0.038815077394247055, -0.0009383361903019249, 0.021953361108899117, 0.00902372132986784, -0.04565043747425079, -0.050288718193769455, -0.013531222008168697, -0.037908345460891724, 0.1032976284623146, -0.018169501796364784, 0.011839819140732288, -0.04272099956870079, 0.03466503694653511, 0.007711575832217932, 0.03923356905579567, 0.007541563827544451, -0.042546626180410385, 0.01603345200419426, -0.02612083964049816, 0.014525139704346657, -0.06085562705993652, 0.000622288032900542, -0.0016881333431228995, 0.08683696389198303, 0.04694078490138054, 0.010784871876239777, -0.016730938106775284, 0.07888562977313995, -0.08097808808088303, 0.010514596477150917, 0.035135842859745026, -0.04833575710654259, -0.02265084721148014, 0.006251215469092131, 0.009250403381884098, 0.02981751225888729, -0.0037468059454113245, 0.01975628174841404, -0.020750198513269424, 0.006826641038060188, -0.015684708952903748, -0.009119625203311443, -0.010104823857545853, -0.02695782110095024, -0.03316544368863106, 0.031125297769904137, 0.01660015992820263, 0.018518244847655296, -0.03930331766605377, 0.024167878553271294, 0.0066043175756931305, 0.016233978793025017, -0.03665287420153618, 0.012223436497151852, 0.0019137263298034668, -0.030253442004323006, -0.004073752090334892, 0.035955388098955154, 0.05185806006193161, -0.009511960670351982, 0.017637670040130615, 0.027114756405353546, -0.009799674153327942, 0.02462124451994896, -0.018535681068897247, 0.00786851067095995, -0.011185926385223866, -0.026399832218885422, -0.023854009807109833, -0.024202752858400345, 0.030497562140226364, -0.005780412349849939, 0.05614759773015976, -0.023418081924319267, 0.004734184127300978, 0.0048257289454340935, -0.07082966715097427, 0.02460380643606186, 0.02010502479970455, 0.048300884664058685, -0.05384589359164238, -0.017097117379307747, -0.01133414264768362, -0.042860496789216995, -0.006752533372491598, 0.056845083832740784, -0.009137062355875969, -0.009337589144706726, 0.01490003801882267, 0.001033695531077683, 0.017602795735001564, -0.008034163154661655, 0.05694970488548279, 0.07379398494958878, -0.01862286776304245, -0.005052411928772926, -0.05939090624451637, 0.026800887659192085, -0.027114756405353546, -0.021064067259430885, -0.045999180525541306, -0.0019900137558579445, -0.057995934039354324, 0.03675749525427818, -0.02406325563788414, 0.003459092928096652, -0.004178375005722046, -0.004337489139288664, -0.02090713381767273, 0.035920511931180954, -0.005078567657619715, 0.038222216069698334, 0.02259853668510914, -0.03550202026963234, 0.033688560128211975, 0.018239250406622887, 0.05471775308251381, 0.011961879208683968, -0.013278383761644363, 0.03916382044553757, -0.050567712634801865, 0.015135439112782478, 0.06437792629003525, -0.02095944434404373, 0.00709255738183856, -0.061762355268001556, 0.06981831789016724, -0.03229358792304993, 0.008260846138000488, 0.025998778641223907, 0.07672342658042908, 0.03185765817761421, -0.013365569524466991, 0.028126109391450882, -0.024743303656578064, 0.037350356578826904, 0.05395051836967468, 0.0053444840013980865, 0.018797239288687706, -0.04324411228299141, 0.00831751711666584, 0.00615531112998724, -0.0032280508894473314, 0.04756852239370346, -0.004821369890123606, -0.04087265953421593, -0.026731139048933983, 0.033374689519405365, -0.0002095181553158909, -0.0773511603474617, 0.0003201350336894393, -0.05248579755425453, -0.03776884824037552, -0.0773511603474617, -0.004272099584341049, 0.08404702693223953, 0.01772485487163067, 0.04094240814447403, 0.034577853977680206, -0.002476074267178774, 0.005318328272551298, -0.015806769952178, 0.05904216319322586, -0.00451186066493392, -0.011151052080094814, -0.03975668549537659, 0.019407538697123528, -0.009416056796908379, 0.06395943462848663, -0.031648412346839905, -0.06699349731206894, -0.0775604099035263, 0.047708019614219666, -0.013077856041491032, -0.04847525432705879, 0.004708028398454189, 0.0229124054312706, -0.006695862393826246, -0.07714191824197769, 0.00044355730642564595, 0.018797239288687706, -0.06266909092664719, 0.09360257536172867, 0.056635838001966476, -0.0010500429198145866, -0.04251175373792648, -0.08118733018636703, -0.1031581312417984, -0.010776153765618801, 0.020976882427930832, 0.015614960342645645, -0.02265084721148014, -0.015039535239338875, -0.035920511931180954, -0.017925381660461426, 0.052834540605545044, -0.00257851742208004, -0.0687720850110054, -0.014586169272661209, 0.022493913769721985, 0.0658077746629715, 0.0010794680565595627, 0.04404621943831444, -0.03203203156590462, -0.008997565135359764, 0.03616463392972946, -0.0657728984951973, 0.028806159272789955, -0.04697566106915474, 0.010017638094723225, 0.07058554887771606, -0.021848738193511963, -0.012537305243313313, -0.012014190666377544, -0.02577209658920765, -0.022162606939673424, 0.007402066607028246, -0.011770070530474186, 0.00615531112998724, 0.0030667574610561132, -0.0064778984524309635, -0.010523315519094467, 0.029695453122258186, 0.014010743238031864, 0.041674770414829254, -0.035083528608083725, -0.019965527579188347, 0.023557579144835472, 0.021151253953576088, -0.023540141060948372, -0.015458025969564915, -0.01446410920470953, 0.06096024811267853, -0.0004934166208840907, -0.050532836467027664, -0.11927004903554916, 0.01347891055047512, 0.0228949673473835, 0.1002286896109581, -0.01832643710076809, -0.0047385431826114655, -0.07490996271371841, 0.04460420832037926, -0.008631384931504726, -0.027655307203531265, -0.07337549328804016, 0.00945093110203743, -0.04561556503176689, -0.0688418373465538, 0.004555453546345234, 0.0057716937735676765, -0.03891970217227936, -0.03133454546332359, 0.04795214161276817, -0.015440588817000389, -0.053741272538900375, -0.029730327427387238, -0.04324411228299141, 0.015144158154726028, 0.0036748775746673346, -0.011639292351901531, -0.05067233368754387, 0.004860603250563145, -0.025702347978949547, -0.022511349990963936, -0.07198052108287811, 0.021395374089479446, 0.07372424006462097, -0.04530169442296028, 0.01973884552717209, -0.03860583156347275, 0.019843468442559242, -0.018221814185380936, 0.0516836903989315, 0.011578261852264404, -0.028841033577919006, -0.00480393273755908, -0.034229110926389694, -0.05196268483996391, 0.02549310214817524, 0.0011388633865863085, 0.0005075843073427677, -0.003099452005699277, -0.031962282955646515, -0.040000803768634796, 0.010601782239973545, 0.0001834986760513857, 0.024586370214819908, -0.04697566106915474, 0.04676641523838043, 0.02606852725148201, -0.047673147171735764, 0.04355797916650772, 0.002258109860122204, -0.015667272731661797, 0.018431060016155243, -0.009904297068715096, -0.04463908448815346, -0.036862120032310486, -0.019826030358672142, -0.00039751233998686075, -0.05360177531838417, 0.02408069372177124, -0.051474444568157196, 0.006569443270564079, -0.00593734672293067, -0.0018799419049173594, -0.0186403039842844, 0.007480533793568611, 0.018744926899671555, 0.03923356905579567, 0.005850160960108042, 0.05524086579680443, 0.007201539818197489, -0.054020266979932785, 0.028841033577919006, -0.023627327755093575, 0.05527574196457863, 0.0060942810960114, -0.034438356757164, -0.03986130654811859, 0.023104213178157806, 0.024150442332029343, -0.046557169407606125, 0.09932196140289307, -0.008361109532415867, 0.06933007389307022, -0.04415084421634674, -0.046557169407606125, 0.07198052108287811, 0.03958231210708618, -0.02467355504631996, -0.027428625151515007, -0.038849953562021255, -0.04502269998192787, -0.012964515015482903, -0.00442903395742178, 0.06141361594200134, -0.028858469799160957, 0.012833736836910248, 0.01633860170841217, 0.014725666493177414, -0.014359486289322376, 0.07895538210868835, 0.021709240972995758, 0.019982963800430298, 0.03647850081324577, 0.022476475685834885, 0.043732352554798126, 0.0007072940934449434, -0.014760540798306465, -0.037629351019859314, -0.014385642483830452, -0.04418571665883064, -0.00088656967272982, -0.03272951394319534, 0.03213665261864662, -0.04247687757015228, 0.030846303328871727, -0.01779460348188877, -0.02612083964049816, -0.007920822128653526, 0.004106447100639343, 0.05266016721725464, -0.034490667283535004, 0.0272019412368536, 0.0272193793207407, -0.02179642766714096, -0.002864050678908825, -0.0372108593583107, -0.03689699247479439, -0.0025218466762453318, 0.02317396178841591, -0.06047200784087181, -0.010096104815602303, 0.01778588443994522, -0.009468368254601955, 0.09792698919773102, -0.005693227052688599, 0.04966098070144653, -0.04460420832037926, -0.0022733674850314856, 0.018448496237397194, -0.030759118497371674, -0.00021673821902368218, 0.043662603944540024, -0.038012970238924026, 0.05105595290660858, 0.043732352554798126, 0.017219178378582, -0.016146793961524963, 0.06409893184900284, -0.0803503468632698, -0.001984564820304513, -0.028823595494031906, -0.017602795735001564, -0.06040225923061371, 0.006325323134660721, -0.018239250406622887, 0.021011756733059883, -0.06856284290552139, -0.009163218550384045, -0.006368916016072035, -0.0272019412368536, -0.034804534167051315, 0.02374938689172268, -0.017001213505864143, -0.043104615062475204, 0.022127732634544373, -0.009930452331900597, 0.04523194581270218, -0.0301139447838068, -0.04694078490138054, 0.005680148955434561, -0.03982643410563469, -0.04150039702653885, -0.026574203744530678, -0.07867638766765594, -0.023296020925045013, -0.00010448662214912474, -0.045964308083057404, -0.04244200512766838, 0.000725821009837091, 0.005619118921458721, -0.0017960256664082408, -0.061727482825517654, 0.037908345460891724, 0.054892122745513916, -0.0028378949500620365, 0.01718430407345295, -0.034194234758615494, 0.07225951552391052, -0.035397399216890335, -0.04903324320912361, 0.07055068016052246, -0.03574614226818085, 0.002925080480054021, 0.0050436933524906635, -0.0631573274731636, 0.0050001004710793495, -0.042232759296894073, -0.01132542360574007, -0.003934255335479975, -0.026155712082982063, -0.004982663318514824, 0.024185316637158394, -0.01918085664510727, 0.029852386564016342, -0.03532765060663223, -0.035920511931180954, -0.0071623059920966625, 0.0032585659064352512, 0.01949472539126873, -0.008356750011444092, 0.02151743322610855, 0.015920110046863556, -0.04610380530357361, 0.014176396653056145, 0.013156323693692684, 0.05761231854557991, 0.029067715629935265, 0.02695782110095024, -0.050288718193769455, -0.0047429027035832405, 0.05593835189938545, -0.0009029170032590628, 0.013740467838943005, 0.023086775094270706, -0.010409973561763763, -0.019320353865623474, -0.05565935745835304, 0.06988806277513504, 0.02088969573378563, -0.0016303728334605694, 0.04477858170866966, -0.024778177961707115, 0.022424165159463882, 0.04526682198047638, -0.01403689943253994, -0.02918977662920952, 0.014830289408564568, -0.013034263625741005, -0.01348762959241867, 0.0020118101965636015, -0.03808271884918213, 0.029172338545322418, -0.04554581642150879, 0.02523154392838478, -0.029294397681951523, -0.03377574309706688, -0.0072494917549192905, -0.01657400280237198, 0.02980007603764534, -0.030445249751210213, 0.04606892913579941, -0.04704540967941284, -0.010113541968166828, -0.06542415916919708, -0.009546834975481033, 0.02810867317020893, 0.0016238339012488723, 0.04442983865737915, -0.021308187395334244, 0.009241685271263123, 0.018814675509929657, 0.034525539726018906, 0.003966949880123138, 0.01607704535126686, 0.01665247045457363, 0.006887671072036028, 0.045720186084508896, -0.007171024568378925, -0.01603345200419426, 0.0044137765653431416, -0.04558068886399269, -0.0071187131106853485, -0.039965927600860596, 0.004006183240562677, -0.04439496248960495, -0.014132803305983543, 0.006787407677620649, -0.015414433553814888, 0.03476966172456741, 0.05098620429635048, -0.019547035917639732, -0.022249793633818626, -0.01834387332201004, -0.05579885467886925, 0.04467395693063736, 0.026783449575304985, -0.060367386788129807, -0.0029795716982334852, -0.023278584703803062, 0.037071362137794495, 0.025667473673820496, 0.02896309271454811, -0.05182318761944771, -0.009276559576392174, 0.0487193763256073, 0.04809163883328438, 0.017541764304041862, 0.0287015363574028, 0.001765510649420321, -0.02634752169251442 ]
40,053
s3path.old_versions
rmdir
Removes this Bucket / key prefix. The Bucket / key prefix must be empty
def rmdir(self): """ Removes this Bucket / key prefix. The Bucket / key prefix must be empty """ self._absolute_path_validation() if self.is_file(): raise NotADirectoryError() if not self.is_dir(): raise FileNotFoundError() self._accessor.rmdir(self)
(self)
[ -0.04344052076339722, 0.0762089267373085, -0.027468161657452583, -0.027342816814780235, 0.0449446439743042, -0.006029923912137747, -0.03821190074086189, 0.06220625340938568, 0.045660894364118576, 0.01924920082092285, -0.000996034243144095, 0.020269855856895447, 0.06875993311405182, 0.00869347620755434, -0.039250463247299194, -0.009382866322994232, 0.02159491740167141, 0.013877330347895622, 0.01117348950356245, -0.022740915417671204, -0.009302288293838501, 0.030315252020955086, 0.06106025353074074, 0.007296789903193712, -0.009696224704384804, 0.03489924594759941, 0.03624221310019493, 0.018604576587677002, 0.017037780955433846, -0.0010732548544183373, -0.0019618517253547907, 0.046484578400850296, 0.01435184571892023, 0.04329727217555046, 0.01645582728087902, -0.04039645940065384, 0.0014224263140931726, -0.03864165022969246, -0.0932556614279747, -0.009293334558606148, 0.004669050220400095, 0.04344052076339722, 0.0093649597838521, -0.028811128810048103, 0.10478727519512177, 0.026859348639845848, 0.055652569979429245, 0.048525892198085785, -0.01123616099357605, -0.013143174350261688, -0.005434541497379541, 0.06345968693494797, -0.020359385758638382, -0.042222894728183746, 0.008290586061775684, -0.011701722629368305, 0.03532899543642998, -0.04197220876812935, -0.007153539918363094, 0.028273941949009895, 0.04533858224749565, 0.020735416561365128, -0.033126529306173325, -0.010466192848980427, -0.0024889663327485323, -0.07198305428028107, -0.04372702166438103, -0.01973266899585724, 0.01377884577959776, 0.006146314553916454, -0.09755315631628036, -0.01596340723335743, -0.0010514316381886601, 0.01932082511484623, -0.016124563291668892, 0.03325187414884567, 0.014074298553168774, 0.01676023378968239, 0.014665204100310802, -0.07323648780584335, -0.018891075626015663, -0.06116769090294838, -0.010296083986759186, -0.021200979128479958, 0.021523291245102882, 0.04172152280807495, 0.039071399718523026, -0.012059847824275494, 0.02146957255899906, 0.006710360758006573, -0.018407607451081276, 0.001903656404465437, -0.025838693603873253, -0.05246526002883911, 0.02182769775390625, 0.016733374446630478, -0.023027414456009865, -0.05522282049059868, -0.012337394058704376, -0.049922578036785126, 0.03455903008580208, 0.015918640419840813, 0.05762225762009621, 0.01061839610338211, 0.034809716045856476, 0.017324279993772507, -0.005098799709230661, -0.06729162484407425, 0.010385614819824696, 0.06797205656766891, -0.044908832758665085, -0.018228543922305107, 0.02952737733721733, 0.02736072428524494, -0.018255403265357018, -0.008433835580945015, 0.006710360758006573, -0.038140274584293365, 0.009570881724357605, -0.04075458645820618, 0.04326145723462105, -0.035812463611364365, -0.005192807409912348, -0.06030819192528725, 0.09783965349197388, 0.019016418606042862, 0.004825729876756668, 0.03699427843093872, -0.013698267750442028, 0.02293788455426693, -0.04802451655268669, 0.04104108363389969, -0.033126529306173325, -0.04652039334177971, 0.031604502350091934, 0.019159669056534767, 0.10894151777029037, -0.03968021273612976, -0.01240006648004055, 0.04544601961970329, 0.09425840526819229, 0.013393862172961235, 0.037209153175354004, -0.0033596567809581757, 0.017583919689059258, 0.007337078917771578, -0.012677612714469433, 0.029724346473813057, 0.014853219501674175, -0.011943456716835499, -0.039071399718523026, 0.0272532869130373, 0.09239616245031357, 0.0012265769764780998, -0.006370142102241516, 0.013841518200933933, -0.05701344460248947, -0.012758190743625164, -0.030046658590435982, -0.014889032579958439, 0.004407171625643969, 0.00004105843254365027, 0.036331746727228165, -0.05078207701444626, -0.033001188188791275, -0.0017122834688052535, 0.04061133414506912, 0.03443368524312973, -0.06564424932003021, 0.014862173236906528, 0.02823812887072563, 0.022490227594971657, 0.00817419495433569, 0.016393156722187996, -0.02976015768945217, 0.02188141644001007, -0.019947543740272522, 0.015506797470152378, -0.03572293370962143, -0.041399210691452026, 0.031192656606435776, 0.007798164151608944, 0.04512370750308037, -0.022561853751540184, 0.029795970767736435, 0.046663641929626465, -0.04931376501917839, 0.03982346132397652, 0.020054981112480164, -0.0001291906664846465, -0.06557262688875198, 0.008586038835346699, -0.005586744751781225, 0.017861466854810715, 0.020735416561365128, -0.011746488511562347, 0.04276008531451225, -0.023618320003151894, 0.0025605913251638412, 0.0032992232590913773, -0.04576833173632622, 0.04562507942318916, 0.033180247992277145, 0.003744640853255987, 0.032768405973911285, -0.016026077792048454, -0.024137601256370544, 0.01111977081745863, -0.027933722361922264, 0.039250463247299194, 0.009329147636890411, -0.026769816875457764, 0.026590755209326744, -0.013671408407390118, 0.003957277629524469, -0.07434667646884918, -0.008724811486899853, 0.020986104384064674, 0.0006172054563648999, 0.024245038628578186, -0.020807042717933655, 0.009660412557423115, 0.03975183516740799, -0.046377141028642654, -0.009293334558606148, -0.020502636209130287, 0.00032958658994175494, 0.013492345809936523, -0.011459988541901112, -0.03774634003639221, 0.03221331164240837, -0.006987907458096743, 0.011639051139354706, -0.02089657261967659, -0.003218645229935646, -0.06027238070964813, 0.02580288052558899, -0.016366297379136086, 0.014432423748075962, -0.01924920082092285, -0.03821190074086189, -0.04344052076339722, 0.006374618969857693, 0.045660894364118576, -0.002513587474822998, 0.05472144857048988, 0.05647625774145126, 0.02374366484582424, 0.05013745278120041, -0.02911553345620632, -0.033001188188791275, 0.0066655948758125305, -0.04114852100610733, 0.022454416379332542, 0.058804068714380264, -0.04609064385294914, -0.036278028041124344, 0.030494313687086105, -0.002614310011267662, 0.042688459157943726, -0.02445991337299347, -0.06288669258356094, 0.027969535440206528, 0.002811278449371457, 0.01199717540293932, 0.027683036401867867, 0.06485637277364731, 0.05805200710892677, 0.055939070880413055, 0.057693880051374435, 0.06875993311405182, -0.014987517148256302, 0.03352046757936478, -0.04691432788968086, 0.02438828907907009, 0.07506293058395386, -0.033645812422037125, -0.03472018614411354, 0.04114852100610733, 0.012301581911742687, 0.024710601195693016, -0.041757334023714066, 0.001984234433621168, 0.02684144303202629, 0.023492977023124695, 0.021738165989518166, 0.009239615872502327, -0.06582330912351608, 0.022024666890501976, 0.07298580557107925, 0.008993404917418957, -0.03584827855229378, -0.08236867189407349, 0.0154978446662426, 0.03244609385728836, -0.054900508373975754, -0.04404933378100395, -0.017369044944643974, 0.021559104323387146, 0.015175532549619675, -0.03788958862423897, 0.04967188835144043, -0.0353827141225338, 0.031658221036195755, 0.002685935003682971, -0.020287761464715004, 0.05067463964223862, 0.04347633197903633, 0.012946206144988537, 0.03699427843093872, -0.0389997735619545, 0.01838969998061657, -0.0389997735619545, 0.0020413105376064777, 0.05590325966477394, 0.020645886659622192, 0.045839954167604446, 0.015345641411840916, -0.07230536639690399, 0.01619618758559227, -0.04301077127456665, 0.027969535440206528, -0.02702050469815731, 0.03425462171435356, -0.05386194586753845, -0.03588408976793289, -0.03688683733344078, 0.04995838925242424, -0.0446939580142498, -0.009221709333360195, -0.0019103712402284145, -0.006388048641383648, 0.021523291245102882, -0.017834607511758804, -0.06435500085353851, -0.023672038689255714, 0.044980455189943314, -0.03391440585255623, 0.026948880404233932, 0.059556130319833755, 0.03251772001385689, -0.023492977023124695, 0.028470909222960472, 0.0030664424411952496, -0.05375450849533081, 0.005568838212639093, 0.05651206895709038, -0.025426849722862244, 0.04311820864677429, -0.0012276960769668221, 0.0488123893737793, 0.08838516473770142, 0.044729769229888916, 0.018980607390403748, 0.06668280810117722, -0.029813876375555992, -0.039071399718523026, 0.0400383360683918, -0.002403911668807268, -0.0223469790071249, 0.056762758642435074, -0.02877531573176384, -0.024531539529561996, -0.013447580859065056, -0.008863585069775581, -0.03620640188455582, -0.07606567442417145, -0.024997100234031677, 0.03328768536448479, -0.018747825175523758, 0.05919800326228142, -0.06514287739992142, -0.02030566707253456, -0.030028752982616425, 0.04344052076339722, 0.0557958222925663, 0.056583695113658905, -0.04465814307332039, -0.0027620363980531693, 0.012892487458884716, -0.0037513556890189648, 0.03138962760567665, 0.024245038628578186, -0.013358049094676971, -0.04687851667404175, 0.037030089646577835, 0.02730700559914112, -0.02771884761750698, 0.00875614769756794, 0.029097627848386765, -0.00231214240193367, 0.00842040590941906, 0.03835514932870865, -0.04412095621228218, -0.0736304298043251, -0.023510882630944252, 0.014897985383868217, -0.05651206895709038, -0.013975814916193485, -0.002840376226231456, 0.041363395750522614, 0.0059941112995147705, -0.031479157507419586, 0.04594739153981209, 0.01903432607650757, -0.02510453760623932, 0.007395274005830288, -0.000827603682409972, 0.015390407294034958, -0.01833598129451275, -0.0012612702557817101, -0.010170740075409412, 0.014763688668608665, 0.05429169908165932, 0.01878363825380802, 0.002558352891355753, -0.007350508589297533, -0.059914253652095795, 0.013340143486857414, 0.06141837686300278, -0.028757410123944283, -0.0029903408139944077, -0.0009277666686102748, 0.017324279993772507, 0.02422713302075863, -0.022615572437644005, -0.023707851767539978, -0.06825856119394302, -0.00842040590941906, -0.004064715001732111, -0.0001758448051987216, -0.014208595268428326, -0.057049255818128586, -0.005716564599424601, -0.06825856119394302, 0.037030089646577835, -0.04197220876812935, 0.030565939843654633, -0.029312502592802048, 0.02415550872683525, -0.037209153175354004, -0.061776503920555115, 0.013178987428545952, -0.0013642311096191406, -0.013931049033999443, 0.04326145723462105, 0.009964818134903908, 0.021988853812217712, 0.021093541756272316, 0.020986104384064674, -0.01830912195146084, -0.0016283480217680335, -0.0013854947173967957, -0.015193438157439232, -0.059556130319833755, -0.04820357635617256, -0.015300875529646873, 0.006200033240020275, -0.015981312841176987, -0.06453406065702438, 0.013178987428545952, 0.08716753870248795, 0.06141837686300278, -0.03115684539079666, -0.008290586061775684, 0.02859625406563282, 0.06546518951654434, 0.01960732415318489, 0.0034984301310032606, -0.0436553955078125, -0.023904820904135704, -0.06399687379598618, -0.01608875021338463, 0.061310939490795135, -0.026751911267638206, 0.027396535500884056, 0.009606693871319294, 0.00266355206258595, -0.0061597442254424095, -0.005779236555099487, 0.005027174949645996, -0.051569949835538864, 0.028291847556829453, 0.006705883890390396, 0.04558926820755005, -0.025176163762807846, -0.036457087844610214, 0.009561927989125252, 0.05744319409132004, -0.039716023951768875, -0.0012623893562704325, -0.012238910421729088, -0.025480568408966064, 0.02195304073393345, 0.0200191680341959, -0.06106025353074074, -0.04279589653015137, 0.024012258276343346, -0.02549847587943077, 0.0017771936254575849, 0.016411062330007553, -0.010645255446434021, -0.08974603563547134, 0.00344471144489944, 0.0053226277232170105, 0.025355225428938866, -0.033466748893260956, 0.004447460640221834, -0.013196893036365509, -0.06141837686300278, -0.05468563362956047, 0.06127512827515602, 0.01761973276734352, 0.01555156335234642, -0.001865605590865016, 0.010143880732357502, -0.06234950199723244, 0.03532899543642998, -0.0028224699199199677, 0.016822906211018562, -0.04748732969164848, -0.04942120239138603, 0.002289759460836649, 0.023672038689255714, -0.05293082445859909, 0.024638976901769638, -0.023421352729201317, -0.02655494213104248, 0.030673377215862274, 0.03557968512177467, -0.04512370750308037, 0.010269224643707275, -0.01357292477041483, -0.001125854323618114, -0.028811128810048103, 0.04447908326983452, -0.0475231409072876, -0.019589418545365334, 0.044443268328905106, 0.0007929103448987007, 0.00989319384098053, 0.0248001329600811, 0.02107563614845276, 0.005738947540521622, -0.04734407737851143, 0.04641295596957207, 0.0003525289648678154, -0.005233096424490213, 0.007820547558367252, 0.043046582490205765, -0.009740990586578846, 0.008062281645834446, 0.04458652064204216, 0.05178482457995415, 0.057228319346904755, -0.009821568615734577, -0.0029052861500531435, -0.04512370750308037, 0.0094276312738657, 0.0012534363195300102, -0.04150664806365967, 0.02223954163491726, 0.06675443798303604, 0.005895627196878195, 0.06288669258356094, 0.00752957072108984, -0.025194069370627403, -0.0073773679323494434, 0.05443494766950607, 0.019571512937545776, -0.041112709790468216, -0.007860836572945118, 0.020234042778611183, -0.044443268328905106, -0.04530276730656624, 0.04387027025222778, -0.03296537324786186, -0.03781796246767044, -0.041363395750522614, -0.030798720195889473, 0.00621793931350112, -0.07255605608224869, 0.03597361966967583, -0.04218708351254463, -0.023188570514321327, -0.02952737733721733, 0.0000996733651845716, 0.0031917858868837357, -0.0852336660027504, 0.028291847556829453, -0.04512370750308037, 0.011746488511562347, 0.01645582728087902, -0.07327230274677277, 0.03606315329670906, -0.03162240609526634, 0.05160576105117798, -0.1017790287733078, -0.015193438157439232, 0.022275352850556374, 0.01818377897143364, -0.01942826248705387, 0.051569949835538864, 0.06313737481832504, -0.006871516816318035, 0.05679856985807419, -0.012767143547534943, 0.011567425914108753, -0.0384984016418457, -0.05207132548093796, -0.05912638083100319, -0.005515119526535273, -0.0037670237943530083, 0.021147260442376137, 0.025981944054365158, -0.006182126700878143, -0.006392525043338537, -0.054828885942697525, -0.012838768772780895, -0.01738695241510868, -0.030476408079266548, -0.09296915680170059, -0.05572419613599777, 0.0374598391354084, -0.06858087331056595, 0.0024934429675340652, 0.023600414395332336, 0.044980455189943314, -0.038426775485277176, -0.017422763630747795, -0.0015276254853233695, -0.06324481219053268, -0.0026501223910599947, -0.038319338113069534, 0.012068800628185272, 0.013331189751625061, -0.0439060814678669, -0.01061839610338211, -0.004803346935659647, -0.027396535500884056, 0.031604502350091934, -0.03864165022969246, -0.042043834924697876, 0.021845603361725807, -0.06485637277364731, -0.021988853812217712, 0.02188141644001007, -0.05568838492035866, -0.022382790222764015, -0.023904820904135704, -0.01578434370458126, 0.010412474162876606, -0.017709264531731606, -0.029778065159916878, 0.018891075626015663, -0.001739142811857164, 0.05328894779086113, -0.052966635674238205, -0.06961943209171295, -0.030333157628774643, 0.018765732645988464, -0.06152581423521042, -0.03140753135085106, 0.043798644095659256, 0.005877720657736063, -0.03554387018084526, 0.025355225428938866, 0.02800534851849079, 0.0002726503589656204, -0.027235379442572594, 0.02655494213104248, -0.01193450391292572, -0.04902726411819458, -0.035812463611364365, 0.00237033748999238, 0.02265138365328312, 0.04634132981300354, -0.03420090302824974, 0.027414442971348763, 0.000912098737899214, -0.05257269740104675, 0.03391440585255623, 0.006862563546746969, 0.05328894779086113, 0.03081662580370903, -0.01829121634364128, 0.041470833122730255, 0.008993404917418957, -0.0426168330013752, -0.04669945314526558, -0.020359385758638382, -0.022132104262709618, -0.004469843115657568, -0.010000631213188171, -0.07144586741924286, 0.012122519314289093, 0.04652039334177971, 0.0029231924563646317, 0.02976015768945217, -0.036098964512348175, 0.05289500951766968, 0.014396610669791698, 0.007632531691342592, -0.04720082879066467, 0.011316739022731781, -0.006970000918954611, 0.03412928059697151, -0.007399750407785177, -0.002083837753161788, 0.03932208567857742, 0.06657537072896957, 0.046377141028642654, -0.025999849662184715, -0.06073794141411781, 0.03864165022969246, 0.003505144966766238, -0.005949345882982016, -0.045911580324172974, 0.041649896651506424, -0.05923381820321083, -0.002753083361312747, -0.04673526808619499, -0.019070137292146683, 0.022024666890501976, 0.017709264531731606, -0.06675443798303604, -0.007158016320317984, 0.016796046867966652, -0.04218708351254463, 0.057872943580150604, -0.0005439018132165074, 0.003995328210294247, -0.015462031587958336, 0.05106857419013977, 0.07441830635070801, -0.011110817082226276, 0.0032477430067956448, 0.043225646018981934, 0.06575168669223785, 0.018747825175523758, 0.01593654789030552, 0.015274016186594963, 0.03360999748110771, -0.06607399880886078, 0.06675443798303604, 0.030136190354824066, 0.0002814635809045285, 0.05651206895709038, -0.00884567853063345, 0.010842223651707172, 0.016670702025294304, -0.029276689514517784, -0.0074668992310762405, 0.03932208567857742, -0.027324911206960678, -0.07012080401182175, -0.03885652497410774, 0.01070792693644762, 0.008554702624678612, 0.023027414456009865, 0.01942826248705387, -0.054900508373975754, -0.008554702624678612, 0.0036864455323666334, 0.06489218771457672, 0.037388212978839874, 0.017530201002955437, -0.04215127229690552 ]
40,054
s3path.old_versions
samefile
Returns whether this path points to the same Bucket key as other_path, Which can be either a Path object, or a string
def samefile(self, other_path: Union[str, S3Path]) -> bool: """ Returns whether this path points to the same Bucket key as other_path, Which can be either a Path object, or a string """ self._absolute_path_validation() if not isinstance(other_path, Path): other_path = type(self)(other_path) return self.bucket == other_path.bucket and self.key == other_path.key and self.is_file()
(self, other_path: Union[str, s3path.old_versions.S3Path]) -> bool
[ 0.04642513766884804, -0.03365732356905937, -0.08543089777231216, 0.09198588132858276, -0.020781461149454117, -0.049054332077503204, 0.013037935830652714, 0.013191006146371365, 0.05614956468343735, 0.03347724303603172, 0.041454873979091644, -0.028182830661535263, 0.03495391458272934, 0.01427149772644043, -0.04865815490484238, -0.0016815155977383256, 0.04289552941918373, -0.007698505185544491, 0.018584461882710457, 0.042427316308021545, -0.026111887767910957, 0.00662251515313983, 0.03394545614719391, -0.005082814022898674, 0.03839347884058952, 0.05816648155450821, 0.0019043670035898685, 0.023500699549913406, 0.048766203224658966, 0.019034666940569878, -0.031694430857896805, -0.04379593953490257, 0.039293888956308365, 0.06756675988435745, 0.014820748008787632, -0.0014113925863057375, -0.03248679265379906, -0.0032189656049013138, -0.019917067140340805, -0.05697794258594513, -0.004270194098353386, 0.034935906529426575, 0.0023815843742340803, -0.020169183611869812, 0.003135677659884095, 0.04221121966838837, -0.06421723961830139, 0.04379593953490257, 0.016054309904575348, 0.01334407553076744, 0.016648579388856888, -0.016648579388856888, -0.03652062639594078, 0.025319527834653854, -0.01941283792257309, -0.03628652170300484, 0.04203113541007042, 0.05189963057637215, -0.09097742289304733, 0.01084093563258648, 0.0002654802519828081, -0.029047224670648575, 0.03788924962282181, -0.056329645216464996, -0.03340521082282066, -0.043543826788663864, -0.027444494888186455, -0.047685712575912476, 0.0006831860519014299, 0.03432362899184227, -0.05881477892398834, 0.05049499124288559, -0.025535626336932182, 0.02369878999888897, -0.06655830144882202, 0.01934080570936203, 0.02034926414489746, 0.05773428454995155, 0.011534251272678375, -0.010165628045797348, -0.04170699045062065, -0.07570646703243256, -0.021159633994102478, -0.07055612653493881, -0.037096891552209854, 0.031658414751291275, 0.04113072529435158, -0.01000355463474989, 0.043507806956768036, 0.036502618342638016, -0.001792941358871758, 0.025697700679302216, 0.006203824654221535, -0.05132336542010307, 0.06461341679096222, -0.05697794258594513, -0.02049333043396473, -0.06454138457775116, 0.00750941876322031, -0.02101556770503521, -0.00920218974351883, 0.011651304550468922, 0.08089283108711243, 0.012884866446256638, 0.012965903617441654, 0.022852404043078423, -0.019682960584759712, -0.024581192061305046, -0.003322512609884143, -0.027408478781580925, -0.05280004069209099, 0.006100277416408062, -0.002665213542059064, 0.07844371348619461, 0.02206004410982132, -0.017377911135554314, 0.013992371037602425, -0.012938890606164932, -0.005825652275234461, -0.02135772444307804, 0.05078312009572983, 0.061948202550411224, 0.040230315178632736, 0.009868493303656578, 0.06493756175041199, -0.006428927183151245, 0.05261995643377304, -0.021123617887496948, -0.036988839507102966, 0.04336374253034592, -0.0030636447481811047, 0.014019383117556572, -0.022420207038521767, 0.024959363043308258, -0.0010365969501435757, 0.06673838198184967, 0.032288700342178345, 0.04739757999777794, 0.000348064728314057, 0.05139540135860443, 0.08053266257047653, 0.0021103357430547476, 0.027678601443767548, -0.007869582623243332, 0.000040799826820148155, 0.04170699045062065, -0.0484420545399189, -0.008279269561171532, 0.03146032243967056, 0.011912423186004162, -0.007775039877742529, 0.004934246651828289, 0.06544179469347, 0.03421557694673538, 0.00782456248998642, -0.055249154567718506, -0.028669051826000214, 0.005046797916293144, -0.0305959302932024, 0.011336160823702812, 0.0014755468582734466, -0.036160461604595184, 0.03691680729389191, -0.03010970912873745, 0.019070683047175407, -0.016864677891135216, -0.04113072529435158, 0.002258903346955776, 0.006550482474267483, 0.029767552390694618, 0.010210649110376835, 0.019664952531456947, 0.011849394999444485, -0.010822927579283714, -0.005267397966235876, -0.0006089022499509156, -0.00515034468844533, 0.015180911868810654, 0.04739757999777794, -0.043579842895269394, 0.018161268904805183, -0.04523659497499466, 0.02265431359410286, 0.07188872992992401, 0.020097149536013603, 0.04069852828979492, -0.009733431972563267, -0.00858991127461195, 0.08406227082014084, 0.04372390732169151, -0.04170699045062065, 0.06270454823970795, -0.039221856743097305, -0.016963724046945572, 0.03625050559639931, -0.07549037039279938, 0.05510509014129639, -0.02418501116335392, -0.03634054586291313, 0.10624837130308151, -0.01030068937689066, -0.034449685364961624, -0.02407696284353733, 0.004785678815096617, 0.012623747810721397, -0.0064019146375358105, 0.03335118293762207, 0.026057863608002663, -0.014730706810951233, 0.08125299215316772, -0.05661777779459953, -0.06259649991989136, -0.01212852168828249, 0.0004206602752674371, 0.030848044902086258, 0.028669051826000214, -0.04754164442420006, 0.011300144717097282, -0.05672582611441612, 0.04606497287750244, 0.14154444634914398, 0.018476411700248718, -0.012461673468351364, 0.011840390972793102, 0.019286781549453735, -0.017765088006854057, 0.03367533162236214, 0.04044641554355621, -0.03304504603147507, -0.02937137335538864, -0.004270194098353386, 0.0101386159658432, 0.03785323351621628, -0.0021317205391824245, 0.0013562424574047327, -0.00987749733030796, 0.03003767505288124, 0.0024783783592283726, -0.014415563084185123, -0.015180911868810654, 0.018620477989315987, -0.020133165642619133, 0.010795915499329567, 0.0014496600488200784, -0.04538066312670708, -0.09465109556913376, 0.02153780683875084, 0.018215293064713478, -0.006280359346419573, -0.012560718692839146, 0.0359983891248703, 0.04930644854903221, -0.07700306177139282, -0.02049333043396473, 0.028975192457437515, -0.020061133429408073, -0.05568135157227516, -0.043579842895269394, 0.02537355199456215, 0.030866052955389023, -0.016684595495462418, 0.03108215145766735, 0.039365921169519424, -0.03770916908979416, -0.0256796907633543, -0.013830296695232391, 0.0016927707474678755, -0.010912968777120113, -0.006487453822046518, -0.00972442701458931, 0.0494144968688488, -0.008788000792264938, -0.002514394698664546, 0.002401843434199691, -0.016828661784529686, -0.04296756163239479, -0.01501883752644062, 0.014028387144207954, -0.008950075134634972, 0.005370945204049349, -0.024797290563583374, 0.02024121582508087, 0.021177642047405243, -0.04912636801600456, -0.023194560781121254, -0.0007985510746948421, -0.023932896554470062, -0.05593346431851387, 0.0030726490076631308, 0.011822382919490337, -0.025049405172467232, -0.023968912661075592, -0.03742103651165962, 0.009778452105820179, -0.017485961318016052, 0.03749306872487068, 0.02042129822075367, -0.06468544900417328, 0.011156079359352589, 0.0080136489123106, -0.044480253010988235, 0.05182759836316109, -0.0019583916291594505, 0.015739165246486664, 0.02937137335538864, 0.019574912264943123, 0.006784589029848576, 0.015676137059926987, -0.015360993333160877, 0.0559694841504097, -0.024545175954699516, 0.01453261636197567, -0.06115584447979927, 0.019142715260386467, 0.0237348061054945, 0.05910290777683258, 0.00515034468844533, 0.0065099638886749744, -0.06547781080007553, 0.02955145388841629, -0.031100159510970116, 0.03495391458272934, -0.08010046929121017, -0.008337795734405518, 0.02105158381164074, -0.061912186443805695, -0.012983911670744419, 0.00537544721737504, 0.007410374004393816, 0.0679989606142044, 0.023302609100937843, 0.024653224274516106, 0.03864559531211853, 0.004970262758433819, -0.01071487832814455, -0.00417339988052845, -0.02269033156335354, -0.013578182086348534, 0.05377248302102089, 0.04199511930346489, 0.014577637426555157, -0.0811089277267456, 0.02865104377269745, -0.06688245385885239, -0.040230315178632736, -0.007770537864416838, -0.019430845975875854, 0.01785513013601303, 0.04195910319685936, -0.0376371368765831, -0.04394000396132469, 0.013389095664024353, 0.023464683443307877, -0.011201099492609501, -0.022042036056518555, 0.04401203989982605, -0.03565623238682747, 0.024617208167910576, -0.011822382919490337, 0.05874274671077728, 0.10747293382883072, -0.04930644854903221, 0.001825581188313663, -0.04271544888615608, 0.0141454404219985, 0.046785302460193634, 0.001902115996927023, -0.0011333910515531898, -0.07300523668527603, 0.00715375691652298, -0.02652607671916485, -0.025031397119164467, 0.0013461129274219275, -0.07062815874814987, 0.006442433223128319, 0.003212212584912777, -0.030325807631015778, -0.005686088930815458, 0.01628841646015644, -0.006991683039814234, 0.042571380734443665, 0.024473141878843307, 0.005924697499722242, 0.07585053145885468, -0.002656209282577038, 0.03839347884058952, 0.021447764709591866, -0.04394000396132469, 0.051971662789583206, -0.005816648248583078, 0.02578774094581604, -0.010732886381447315, 0.048838235437870026, -0.037096891552209854, -0.030649954453110695, -0.011705329641699791, -0.015135890804231167, 0.006991683039814234, -0.035872332751750946, 0.020583370700478554, 0.0153880063444376, 0.02638201229274273, -0.06245243549346924, 0.008639433421194553, -0.022744355723261833, 0.03182048723101616, 0.016108334064483643, 0.07239296287298203, -0.017539985477924347, 0.02216809242963791, -0.026364002376794815, -0.07938013970851898, -0.007090728264302015, 0.0068025970831513405, -0.04163495451211929, 0.022312158718705177, -0.011615288443863392, -0.06515366584062576, 0.04116674140095711, 0.05719403922557831, -0.045704808086156845, 0.051107268780469894, -0.033369190990924835, -0.011624292470514774, 0.013551170006394386, -0.0526919886469841, -0.03473781421780586, 0.0011339538032189012, 0.04739757999777794, 0.0030006160959601402, 0.0021215910091996193, 0.005663578398525715, 0.03781721740961075, 0.028831126168370247, 0.024311069399118423, 0.02865104377269745, -0.021735895425081253, -0.04502049833536148, 0.03196455165743828, -0.008288273587822914, -0.02425704337656498, -0.018422387540340424, -0.03767315298318863, -0.008112693205475807, -0.020331256091594696, -0.051179300993680954, -0.014775726944208145, 0.034827858209609985, 0.08903253823518753, 0.029821576550602913, -0.024473141878843307, 0.046821318566799164, -0.05726607143878937, -0.04303959384560585, -0.04044641554355621, 0.025607658550143242, 0.02854299545288086, -0.03387342393398285, -0.003763713641092181, -0.01863848604261875, -0.0464971698820591, 0.03983413428068161, 0.0526919886469841, -0.027822667732834816, 0.015009833499789238, -0.009976542554795742, -0.039221856743097305, 0.00444352300837636, 0.037132907658815384, 0.006388408597558737, -0.0020506836008280516, -0.050963204354047775, -0.08290974795818329, 0.008774494752287865, 0.029803568497300148, 0.006478449795395136, 0.04267943277955055, 0.05031490698456764, -0.057626236230134964, 0.01555908378213644, -0.016054309904575348, -0.08298178017139435, -0.058490630239248276, -0.02209606021642685, 0.05949908867478371, -0.04444423317909241, -0.03464777395129204, 0.033783379942178726, 0.030812028795480728, -0.04116674140095711, 0.017684051766991615, 0.006041750777512789, -0.06238039955496788, 0.02243821509182453, 0.009517333470284939, 0.026508068665862083, -0.007734521292150021, 0.04095064476132393, -0.060723647475242615, 0.004754164721816778, -0.007594957947731018, -0.009031111374497414, -0.0428595133125782, 0.05686989054083824, -0.0022071299608796835, -0.00901760533452034, -0.047865793108940125, -0.05874274671077728, -0.028452955186367035, -0.01836836338043213, -0.026616118848323822, 0.03007369302213192, -0.0062533472664654255, 0.0395820215344429, 0.027894699946045876, 0.006771082989871502, -0.045596759766340256, -0.03853754699230194, -0.013145985081791878, -0.02060137875378132, 0.0013843802735209465, -0.04491244629025459, -0.009301234968006611, -0.054456792771816254, -0.06536976248025894, -0.03003767505288124, -0.006190318614244461, -0.03344122692942619, 0.011417197994887829, -0.049882709980010986, -0.04192308709025383, -0.01826031319797039, -0.012029476463794708, 0.021789921447634697, -0.007545435335487127, 0.08651138842105865, -0.03052389807999134, 0.01639646477997303, -0.028074782341718674, -0.012650759890675545, -0.017557993531227112, 0.009184181690216064, -0.01885458454489708, 0.0005053550703451037, -0.014037391170859337, 0.03943795710802078, -0.0013956354232504964, -0.04005023464560509, 0.05676184222102165, 0.008171220310032368, 0.002356823068112135, 0.005888680927455425, 0.06724261492490768, -0.03785323351621628, 0.05921095982193947, 0.04087861254811287, 0.01151624321937561, -0.04955856502056122, 0.02839892916381359, -0.026147905737161636, 0.0389697439968586, 0.010876951739192009, 0.0124436654150486, 0.023050494492053986, 0.00827026553452015, -0.03976210206747055, -0.0028723077848553658, 0.028002750128507614, 0.0441921204328537, 0.0135061489418149, 0.018566453829407692, 0.02836291305720806, 0.0153880063444376, -0.040230315178632736, 0.04923441633582115, -0.025319527834653854, -0.03101011924445629, -0.005537521094083786, -0.05834656581282616, -0.012065493501722813, -0.0018300832016393542, -0.002683221595361829, 0.07181669771671295, 0.031136175617575645, -0.022852404043078423, -0.02056536264717579, -0.02508542127907276, 0.025571642443537712, -0.03268488124012947, 0.01878255233168602, -0.04909035190939903, -0.008445844985544682, 0.009238205850124359, -0.03196455165743828, 0.017233846709132195, -0.008549392223358154, 0.08197332173585892, -0.05377248302102089, 0.02630997821688652, -0.007176267448812723, 0.01773807592689991, -0.03882567584514618, -0.03394545614719391, -0.01110205426812172, -0.040194299072027206, 0.01919673942029476, -0.012848850339651108, 0.0023005474358797073, 0.03261284902691841, 0.03781721740961075, 0.008324289694428444, 0.04098666086792946, 0.01453261636197567, -0.017188826575875282, 0.04865815490484238, 0.07426581531763077, -0.07253702729940414, -0.002680970588698983, -0.06681042164564133, 0.02951543778181076, 0.004186906386166811, -0.03864559531211853, 0.023500699549913406, 0.031658414751291275, -0.07520224153995514, -0.024941354990005493, 0.039329905062913895, -0.0030096203554421663, -0.0037794706877321005, -0.06223633512854576, 0.01672961749136448, -0.07865981012582779, 0.05298012122511864, -0.04170699045062065, 0.023320617154240608, -0.039329905062913895, -0.02485131472349167, 0.02477928251028061, -0.004551572259515524, 0.04718147963285446, -0.00375921162776649, -0.040194299072027206, -0.06493756175041199, 0.03857356309890747, -0.060795679688453674, -0.025625666603446007, 0.04195910319685936, -0.04059047996997833, 0.03871762752532959, -0.03450370952486992, -0.007545435335487127, 0.04840603843331337, 0.013794280588626862, -0.038177382200956345, -0.0009251712472178042, -0.054312728345394135, 0.07462597638368607, -0.04271544888615608, 0.004279198125004768, -0.03655664250254631, 0.07635476440191269, -0.025661682710051537, -0.026039855554699898, 0.023680781945586205, 0.02432907745242119, -0.02481529861688614, 0.06324479728937149, -0.02854299545288086, 0.027138356119394302, 0.03749306872487068, -0.04181503877043724, -0.004432267975062132, -0.04177902266383171, -0.04051844775676727, 0.012641755864024162, -0.011174087412655354, 0.08046063035726547, -0.0019437599694356322, 0.013704239390790462, -0.02742648683488369, -0.04210316762328148, 0.03607042133808136, -0.028038766235113144, 0.01725185476243496, 0.06144397333264351, 0.03073999471962452, 0.010471767745912075, 0.015811199322342873, 0.010021562688052654, -0.04826197400689125, 0.007261806167662144, -0.07142052054405212, -0.01084093563258648, -0.00174454424995929, -0.017494965344667435, 0.006244342774152756, 0.01944885402917862, 0.061948202550411224, -0.05877876281738281, -0.01507286261767149, -0.0048892260529100895, 0.014568633399903774, 0.043579842895269394, -0.014118428342044353, 0.002025922294706106, -0.011597280390560627, -0.032468780875205994, 0.0004074354947078973, 0.06601805984973907, -0.010480771772563457, -0.038069333881139755, -0.032594840973615646, 0.014424567110836506, -0.01923275738954544, 0.024022936820983887, 0.023608749732375145, -0.019124707207083702, -0.032324716448783875, 0.052187759429216385, -0.03734900429844856, -0.037132907658815384, -0.03893372789025307, -0.0343596450984478, 0.01449660025537014, -0.037096891552209854, -0.013218018226325512, -0.0032752412371337414, -0.008067673072218895, -0.023122526705265045, 0.03619648143649101, -0.021105609834194183, 0.052187759429216385, -0.013812288641929626, 0.02652607671916485, -0.008004644885659218, -0.0017738075694069266, -0.022258134558796883, -0.00844134297221899, 0.034413669258356094, 0.06688245385885239, -0.004992773290723562, -0.009058124385774136, 0.017864134162664413, -0.04426415264606476, 0.027678601443767548, -0.04847807064652443, 0.017386915162205696, 0.0307760126888752, -0.04689335078001022, 0.030307799577713013, 0.02380683831870556, 0.008130702190101147, 0.014064403250813484, -0.023302609100937843, -0.010894960723817348, 0.044552285224199295, -0.05189963057637215, -0.005078312009572983, 0.05377248302102089, 0.01606331393122673, -0.028633035719394684, 0.011912423186004162, 0.020187191665172577, 0.026580100879073143, 0.06583797186613083, -0.008027154952287674, -0.03767315298318863, 0.044732365757226944 ]
40,055
s3path.old_versions
stat
Returns information about this path (similarly to boto3's ObjectSummary). For compatibility with pathlib, the returned object some similar attributes like os.stat_result. The result is looked up at each call to this method
def stat(self, *, follow_symlinks: bool = True) -> StatResult: """ Returns information about this path (similarly to boto3's ObjectSummary). For compatibility with pathlib, the returned object some similar attributes like os.stat_result. The result is looked up at each call to this method """ if not follow_symlinks: raise NotImplementedError( f'Setting follow_symlinks to {follow_symlinks} is unsupported on S3 service.') self._absolute_path_validation() if not self.key: return None return self._accessor.stat(self, follow_symlinks=follow_symlinks)
(self, *, follow_symlinks: bool = True) -> s3path.old_versions.StatResult
[ 0.021642837673425674, -0.058256927877664566, -0.04268399626016617, 0.042153097689151764, 0.08289047330617905, -0.020404081791639328, 0.024952085688710213, 0.005963725503534079, 0.019731614738702774, 0.03726886212825775, 0.017917722463607788, 0.011228438466787338, 0.07821859419345856, -0.047886770218610764, -0.012219443917274475, 0.06391981244087219, 0.023253221064805984, -0.018846789374947548, -0.01616576686501503, 0.0529833659529686, 0.009432242251932621, 0.020138634368777275, 0.029093069955706596, -0.06859169155359268, 0.008135972544550896, 0.025872305035591125, 0.05294797196984291, -0.03847222402691841, 0.06257487833499908, 0.012476042844355106, -0.017271798104047775, 0.023200131952762604, -0.014865072444081306, 0.02452736906707287, 0.000820122892037034, 0.00506562739610672, -0.02288159355521202, 0.006968002766370773, -0.0516030378639698, -0.011679699644446373, -0.02831442467868328, 0.04579858109354973, 0.010706392116844654, -0.0014632806414738297, 0.06384902447462082, 0.04516150802373886, -0.049196310341358185, 0.03450820595026016, 0.013997943140566349, -0.0802713930606842, 0.039144691079854965, 0.04409971460700035, -0.036118585616350174, -0.02850908599793911, 0.02875683642923832, -0.020899584516882896, 0.02298777364194393, 0.018262803554534912, -0.04661262035369873, -0.002304970985278487, 0.06837933510541916, 0.007662591058760881, 0.030190255492925644, -0.01085681188851595, -0.028898408636450768, -0.06505239009857178, -0.01717446744441986, -0.02132430113852024, -0.044276680797338486, 0.006069904658943415, -0.02282850444316864, 0.022757718339562416, -0.010016227141022682, 0.001534066628664732, -0.03595931828022003, -0.012776884250342846, 0.031800638884305954, -0.054788410663604736, 0.05535469949245453, 0.035870835185050964, -0.060769833624362946, -0.037339646369218826, -0.009998531080782413, -0.0786433145403862, 0.019837792962789536, 0.039392441511154175, 0.01545790582895279, -0.07828938215970993, -0.034472811967134476, 0.07085684686899185, -0.04831148684024811, 0.07382985949516296, -0.0032229777425527573, -0.01306887622922659, 0.02318243496119976, 0.021058853715658188, -0.0330393947660923, -0.05163843184709549, 0.04102052375674248, -0.0083306347951293, -0.022350698709487915, 0.0013482532231137156, 0.051213715225458145, 0.009874655865132809, 0.028031280264258385, 0.0008627051138319075, -0.02870374731719494, -0.030207950621843338, 0.032455407083034515, 0.023058559745550156, -0.021837498992681503, 0.003335793036967516, 0.021430479362607002, -0.000534766586497426, 0.048453059047460556, -0.015873774886131287, 0.023748723790049553, -0.03953401371836662, -0.03270316123962402, -0.02473972737789154, 0.008547416888177395, 0.013334324583411217, 0.037339646369218826, -0.0327739454805851, 0.030402613803744316, -0.013608620502054691, 0.007401567418128252, -0.024297315627336502, 0.02790740504860878, 0.03463207930326462, 0.005043506622314453, 0.0007238980615511537, -0.0008322892244905233, 0.046789586544036865, 0.02006784826517105, 0.04229466989636421, 0.04760362580418587, 0.021359693259000778, -0.059354111552238464, 0.06756529211997986, 0.05928332731127739, -0.02927003614604473, 0.016395822167396545, -0.038082901388406754, -0.005968149751424789, 0.018041597679257393, 0.018935270607471466, 0.0021257938351482153, 0.01136116310954094, -0.01121074240654707, 0.044276680797338486, -0.05128449946641922, 0.05521312728524208, 0.0011170925572514534, -0.01960773952305317, -0.02266923524439335, -0.024668941274285316, 0.02419113554060459, -0.03716268017888069, 0.006746796425431967, -0.028243638575077057, -0.05807996168732643, 0.01633388362824917, -0.07984667271375656, 0.010750632733106613, 0.021695926785469055, -0.01377673726528883, 0.05832771211862564, -0.02488129958510399, 0.021200425922870636, 0.05259404331445694, 0.004238315392285585, 0.011608913540840149, 0.03314557299017906, 0.03203069418668747, 0.03001328930258751, 0.012219443917274475, 0.048099126666784286, 0.050505854189395905, -0.0592479333281517, 0.012679552659392357, -0.06441531330347061, 0.011139956302940845, -0.0316767618060112, -0.027995886281132698, 0.06975965946912766, 0.013281234540045261, 0.028880713507533073, 0.016510847955942154, 0.08048374950885773, -0.01920071803033352, 0.03765818476676941, 0.015174761414527893, 0.01731603965163231, 0.010140103287994862, -0.03942783549427986, 0.017032895237207413, -0.01435187365859747, -0.04491375386714935, 0.07142313569784164, -0.0010363521287217736, -0.02010324038565159, -0.007206905633211136, -0.0013360868906602263, 0.02403186820447445, 0.022386090829968452, -0.026615558192133904, 0.01941307634115219, -0.05376201122999191, 0.034685168415308, -0.044170502573251724, -0.015634872019290924, -0.03266776725649834, 0.013909460976719856, -0.017484156414866447, 0.036083195358514786, 0.006043360102921724, 0.050505854189395905, 0.003380034351721406, 0.0048621175810694695, 0.08678370714187622, -0.06441531330347061, 0.04519689828157425, 0.033163268119096756, -0.0007697984110563993, -0.015130520798265934, 0.04544465243816376, -0.03463207930326462, -0.031906817108392715, -0.07906802743673325, -0.005260289181023836, -0.03307478502392769, 0.026509379968047142, 0.04179916903376579, 0.033411022275686264, -0.04579858109354973, 0.054328300058841705, 0.04933788254857063, -0.015794139355421066, -0.03779975697398186, -0.04785137623548508, -0.014829679392278194, 0.016510847955942154, 0.019147628918290138, -0.07878488302230835, -0.04289635270833969, 0.008919043466448784, -0.01955464854836464, -0.006211476866155863, -0.07326357066631317, 0.02613775245845318, 0.06845012307167053, -0.014599625021219254, -0.020492564886808395, 0.0020439475774765015, -0.05510694906115532, -0.05354965478181839, -0.012422953732311726, -0.010786025784909725, 0.019943973049521446, -0.0022894865833222866, -0.026827916502952576, 0.028119763359427452, -0.02307625487446785, 0.007848404347896576, -0.006830854807049036, 0.03525145724415779, -0.015254396013915539, -0.04275478050112724, 0.04063119739294052, 0.026863310486078262, -0.042153097689151764, -0.04367499798536301, -0.006649465765804052, -0.05620413273572922, 0.019926276057958603, -0.024704335257411003, -0.03530454635620117, -0.021288907155394554, -0.012175202369689941, -0.014900465495884418, -0.0049329036846756935, -0.014599625021219254, -0.018935270607471466, -0.001229907851666212, 0.02075801230967045, -0.0024576035793870687, 0.007879373617470264, -0.04721430316567421, 0.026208538562059402, 0.034260451793670654, -0.006012390833348036, -0.070998415350914, -0.06522935628890991, 0.053974371403455734, 0.01156467292457819, -0.03077423945069313, -0.03394191712141037, 0.03574696183204651, -0.003714056219905615, -0.07949274778366089, -0.01807698979973793, 0.03176524490118027, 0.01920071803033352, -0.016617028042674065, 0.027164150029420853, 0.046435654163360596, -0.026367807760834694, 0.013785584829747677, 0.04109130799770355, 0.017236405983567238, 0.011228438466787338, -0.011308073066174984, 0.061725445091724396, -0.015024341642856598, -0.020191723480820656, -0.024350404739379883, 0.008392572402954102, -0.026987185701727867, 0.048099126666784286, -0.04466600343585014, 0.051709216088056564, 0.0012719370424747467, -0.025270624086260796, 0.020634137094020844, -0.005861970596015453, -0.006268990691751242, 0.02790740504860878, 0.01865212619304657, 0.05606256052851677, 0.007950159721076488, -0.04841766506433487, 0.002220912603661418, 0.011777031235396862, -0.05323111638426781, 0.018882181495428085, -0.03176524490118027, -0.04866541549563408, 0.01635158061981201, 0.051213715225458145, 0.04374578595161438, -0.0012907396303489804, 0.011653155088424683, 0.03429584577679634, -0.026987185701727867, -0.02097037062048912, 0.08062532544136047, -0.02624393254518509, 0.024863604456186295, -0.06069904565811157, -0.011175349354743958, 0.009087160229682922, -0.06646811217069626, 0.03031413070857525, 0.019536953419446945, -0.009011950343847275, -0.002866835566237569, 0.007290964014828205, 0.02217373438179493, 0.01400679163634777, -0.010352461598813534, -0.016829386353492737, -0.020651834085583687, -0.057796817272901535, 0.04459521919488907, -0.03450820595026016, 0.020404081791639328, 0.0001873341971077025, -0.007950159721076488, -0.000664172344841063, -0.04686037078499794, -0.030137164518237114, 0.02031559869647026, -0.05669963359832764, 0.04367499798536301, 0.04877159744501114, 0.06423834711313248, -0.00871110986918211, -0.009087160229682922, -0.01179472729563713, -0.024049563333392143, 0.03580005094408989, -0.02479281835258007, 0.02233300171792507, 0.02946469746530056, 0.04565700888633728, -0.009219883941113949, -0.040454234927892685, -0.024014171212911606, 0.004618790466338396, -0.00699012354016304, -0.050965964794158936, 0.003012831788510084, -0.07142313569784164, -0.0284029059112072, -0.02629702165722847, 0.10334765166044235, 0.019448470324277878, -0.061017584055662155, -0.034225061535835266, 0.04926709830760956, -0.07326357066631317, -0.046966552734375, 0.01651969738304615, -0.03107508085668087, -0.025677643716335297, 0.012077871710062027, 0.05018731579184532, -0.07786466926336288, -0.004258223809301853, -0.004893086384981871, -0.0371272899210453, -0.028296727687120438, 0.038543008267879486, -0.02629702165722847, 0.050612032413482666, -0.03192451223731041, 0.0017762876814231277, 0.004273708444088697, 0.058504678308963776, -0.03252619504928589, -0.06328273564577103, -0.04031266272068024, 0.008445661514997482, 0.04455982521176338, -0.0324908010661602, -0.017050592228770256, -0.00899867806583643, 0.011493886820971966, 0.03388882800936699, 0.0786433145403862, 0.03394191712141037, -0.014219149947166443, 0.023748723790049553, 0.0054328301921486855, 0.016891323029994965, 0.024757424369454384, -0.009042919613420963, -0.009706538170576096, 0.008105004206299782, -0.022262215614318848, 0.002791625214740634, -0.02951778657734394, 0.06802540272474289, -0.013060027733445168, -0.004561276640743017, -0.0341365784406662, -0.03525145724415779, 0.06738832592964172, -0.026438593864440918, -0.01820971444249153, 0.0010048302356153727, 0.055283911526203156, -0.01605958677828312, -0.08536799252033234, -0.023713329806923866, -0.011166500858962536, -0.00853414461016655, -0.049196310341358185, -0.024598155170679092, -0.02167823165655136, 0.024226529523730278, 0.009219883941113949, -0.07333435863256454, -0.052523255348205566, -0.06682204455137253, 0.026863310486078262, 0.010679846629500389, -0.029588572680950165, -0.04629408195614815, 0.05273561552166939, -0.047037336975336075, -0.09895890951156616, 0.05846928432583809, 0.03719807416200638, -0.01307772472500801, -0.002729687374085188, -0.036985717713832855, -0.05057663843035698, -0.043568819761276245, -0.03118125908076763, -0.03456129506230354, 0.02272232621908188, -0.024828210473060608, 0.039994124323129654, -0.037481218576431274, 0.0014500082470476627, 0.012883063405752182, 0.03183602914214134, -0.019448470324277878, 0.06038051098585129, 0.03454359620809555, -0.012741491198539734, -0.02192598208785057, -0.020527957007288933, 0.05340808257460594, 0.017209861427545547, -0.009786172769963741, -0.012378712184727192, -0.03187142312526703, 0.023943385109305382, -0.06331813335418701, 0.028119763359427452, 0.02916385605931282, -0.027571169659495354, 0.048205308616161346, 0.013608620502054691, -0.049550242722034454, 0.0008057444356381893, 0.004694000817835331, -0.017652273178100586, 0.058858610689640045, -0.014484597370028496, 0.06342431157827377, 0.0015926863998174667, -0.019324595108628273, 0.004747090395539999, -0.002371333073824644, 0.02408495731651783, -0.05174461007118225, 0.01782923936843872, -0.020527957007288933, 0.0071272714994847775, -0.05064742639660835, -0.042825568467378616, 0.02236839570105076, -0.008728805929422379, 0.0018526039784774184, -0.008702261373400688, 0.0027650804258883, 0.015139368362724781, -0.023518668487668037, -0.07000741362571716, 0.006441531702876091, 0.05822153389453888, 0.0860050618648529, -0.0002715309092309326, 0.023500971496105194, -0.08642978221178055, 0.008175790309906006, 0.06862708926200867, -0.02741190232336521, -0.05071821063756943, -0.000646475818939507, 0.021288907155394554, -0.01728064753115177, -0.006676010321825743, -0.0461525097489357, 0.05999118462204933, -0.024102654308080673, 0.029376214370131493, -0.02750038541853428, 0.0018979512387886643, 0.06200858950614929, 0.07736916095018387, 0.04742665961384773, 0.025075962767004967, -0.08041296154260635, -0.03571156784892082, 0.0023315157741308212, -0.012033630162477493, -0.011476189829409122, -0.043108709156513214, 0.008228879421949387, 0.004428552929311991, -0.008348330855369568, 0.0557086281478405, 0.04247163608670235, 0.006122994236648083, 0.006649465765804052, -0.0042161946184933186, 0.12571604549884796, -0.03176524490118027, -0.05393897742033005, 0.012829973362386227, -0.026633255183696747, -0.009573814459145069, 0.02312934584915638, 0.03801211342215538, 0.007357326336205006, 0.0037516611628234386, -0.06409677863121033, 0.044170502573251724, 0.05592098832130432, -0.038082901388406754, 0.0017685454804450274, -0.006702554877847433, 0.031145866960287094, -0.044276680797338486, -0.010166647844016552, -0.06834394484758377, -0.0802713930606842, -0.002497420646250248, 0.0091490987688303, 0.028739141300320625, -0.011626610532402992, 0.022244518622756004, -0.07475008070468903, 0.029694752767682076, 0.02875683642923832, 0.008680140599608421, -0.0033557016868144274, 0.017271798104047775, 0.06951191276311874, -0.02896919474005699, 0.002193261869251728, 0.028880713507533073, 0.036879535764455795, -0.010971839539706707, 0.006180508062243462, -0.016201158985495567, 0.03836604580283165, 0.04742665961384773, 0.022350698709487915, 0.015935711562633514, 0.04526768624782562, 0.0005295129376463592, 0.02750038541853428, -0.023961082100868225, 0.02604926936328411, 0.02700488269329071, -0.028951499611139297, -0.009883503429591656, 0.04516150802373886, -0.06912259012460709, -0.005561129655689001, 0.03558769077062607, 0.027677349746227264, 0.022014465183019638, -0.046683408319950104, 0.007910341955721378, -0.020828798413276672, 0.01799735613167286, -0.014236846007406712, 0.012015934102237225, -0.05415133759379387, -0.008131548762321472, 0.012024781666696072, -0.0032207658514380455, 0.016678964719176292, -0.031694456934928894, -0.009476483799517155, -0.008843833580613136, 0.0603451170027256, -0.007304236758500338, 0.006149538792669773, -0.014776590280234814, -0.016077283769845963, 0.10525887459516525, 0.019023753702640533, -0.0187052171677351, 0.021147334948182106, 0.0032119175884872675, -0.026633255183696747, 0.015174761414527893, 0.00995428953319788, -0.014095274731516838, -0.0862882062792778, -0.025005176663398743, -0.02010324038565159, -0.06473385542631149, -0.052063148468732834, -0.025766126811504364, 0.012679552659392357, 0.021589748561382294, -0.03762279078364372, -0.03171215578913689, 0.005543433595448732, 0.013820977881550789, -0.02962396666407585, 0.0054151336662471294, 0.08133318275213242, -0.005114292725920677, 0.026084663346409798, -0.031906817108392715, 0.022386090829968452, 0.031163563951849937, -0.03183602914214134, 0.022545360028743744, -0.03289782255887985, 0.013343172147870064, -0.003780418075621128, -0.0015926863998174667, 0.04374578595161438, -0.000887590809725225, 0.005123141221702099, 0.04409971460700035, -0.03533994033932686, 0.01982009783387184, -0.019643131643533707, -0.030438005924224854, -0.06069904565811157, 0.041232880204916, -0.005494767799973488, -0.028048977255821228, -0.01785578392446041, 0.01739567518234253, 0.06597261130809784, 0.07524558156728745, -0.0677068680524826, 0.04972720891237259, 0.013882916420698166, 0.023624848574399948, -0.06714057922363281, 0.009264125488698483, -0.0020671740639954805, -0.011670852079987526, -0.031216653063893318, -0.00820675864815712, 0.0225276630371809, -0.02796049416065216, 0.005605371203273535, 0.023217827081680298, -0.058150749653577805, 0.03779975697398186, 0.02403186820447445, 0.011883209459483624, -0.042117707431316376, 0.018227411434054375, 0.014396115206182003, -0.0014477961231023073, -0.06179622933268547, 0.013024634681642056, 0.044418253004550934, -0.028084369376301765, -0.007282115984708071, 0.047639019787311554, -0.005636340007185936, -0.008516447618603706, 0.023713329806923866, -0.02755347453057766, 0.003972867503762245, -0.002537237945944071, -0.006777765229344368, 0.02247457392513752, 0.052523255348205566, 0.01305118016898632, -0.01976700685918331, 0.018616734072566032, 0.08048374950885773, 0.034968312829732895, 0.03624246269464493, -0.04084355756640434, -0.046789586544036865, 0.03323405608534813, -0.06547710299491882, -0.03328714519739151, 0.05807996168732643, -0.012555677443742752, -0.02408495731651783, 0.03394191712141037, -0.03153518959879875, 0.02042177878320217, -0.013298931531608105, 0.02836751379072666, 0.0038202351424843073, -0.05510694906115532, 0.03918008506298065, 0.051213715225458145, -0.008043065667152405, -0.032207656651735306, -0.043321069329977036, -0.011635459028184414, 0.03964019566774368, 0.012219443917274475, 0.04222388565540314, -0.041303668171167374, 0.031446706503629684 ]
40,056
s3path.old_versions
symlink_to
symlink_to method is unsupported on S3 service AWS S3 don't have this file system action concept
def symlink_to(self, *args, **kwargs): """ symlink_to method is unsupported on S3 service AWS S3 don't have this file system action concept """ message = self._NOT_SUPPORTED_MESSAGE.format(method=self.symlink_to.__qualname__) raise NotImplementedError(message)
(self, *args, **kwargs)
[ -0.041427601128816605, -0.034745730459690094, -0.011487678624689579, 0.030805140733718872, -0.025082716718316078, -0.015822328627109528, -0.012284363619983196, 0.07045090943574905, 0.035191189497709274, 0.057566892355680466, 0.03407754376530647, -0.029400233179330826, 0.1001252681016922, -0.03988563269376755, -0.019754352048039436, 0.04742415249347687, 0.013415141962468624, 0.0030132669489830732, 0.047389887273311615, 0.05969138443470001, 0.0015612449496984482, -0.01502564363181591, 0.012729821726679802, -0.06986838579177856, 0.013329477049410343, 0.10334627330303192, -0.010828058235347271, 0.0210735946893692, -0.0025785169564187527, 0.005418312270194292, -0.03296389803290367, -0.017955387011170387, 0.04310663789510727, 0.08360905945301056, 0.057395562529563904, 0.018640708178281784, 0.016507647931575775, 0.027018746361136436, -0.062055736780166626, 0.0007260109996423125, -0.03663036227226257, 0.04074228182435036, 0.03282683342695236, -0.050576627254486084, 0.05592212453484535, 0.029674362391233444, -0.0668187141418457, 0.06760682910680771, -0.01368070300668478, -0.04132480546832085, -0.014271792024374008, 0.019206097349524498, 0.0268645491451025, -0.032141514122486115, -0.02023407630622387, 0.01394626498222351, 0.026881681755185127, 0.016233520582318306, -0.04643043875694275, 0.05605918541550636, 0.04930878430604935, 0.030479613691568375, 0.05801234766840935, -0.007123046088963747, 0.018812038004398346, -0.06376903504133224, 0.01757846213877201, -0.04399755224585533, -0.015179840847849846, 0.04975424334406853, -0.006690437905490398, -0.025425376370549202, -0.007358625065535307, -0.005396896041929722, 0.017886854708194733, 0.0025613841135054827, 0.06781242787837982, -0.012789786793291569, 0.007020248100161552, 0.0036600378807634115, -0.05808088183403015, -0.091490238904953, -0.04324369877576828, 0.0040583801455795765, 0.004788674414157867, 0.018640708178281784, 0.016567613929510117, -0.0344202034175396, -0.03885765001177788, -0.012241531163454056, -0.04845213517546654, -0.004471713677048683, -0.028492184355854988, -0.03844645991921425, -0.004544529132544994, -0.0017946821171790361, -0.031867384910583496, -0.07860621809959412, 0.021193524822592735, 0.0210393276065588, 0.036801692098379135, -0.025511041283607483, 0.014623017981648445, 0.018041051924228668, 0.05153607577085495, -0.049719974398612976, -0.060582298785448074, -0.02306102216243744, -0.042866773903369904, -0.010930855758488178, -0.008035378530621529, 0.07099916785955429, 0.0037585527170449495, -0.029862824827432632, -0.01660188101232052, -0.024191800504922867, 0.06541381031274796, -0.04190732538700104, -0.05064515769481659, -0.035499583929777145, 0.000209343881579116, -0.0037371362559497356, 0.022015908733010292, -0.05468854680657387, 0.01627635397017002, -0.01312388014048338, 0.006009400822222233, 0.007512821815907955, 0.002435028087347746, -0.013021082617342472, -0.040433887392282486, -0.017886854708194733, -0.059725649654865265, -0.0016490515554323792, 0.0010793792316690087, 0.022821160033345222, 0.01951448991894722, 0.027549870312213898, 0.004411748144775629, 0.011539077386260033, 0.033803414553403854, -0.026213495060801506, -0.02256416529417038, -0.022392835468053818, -0.04091361165046692, 0.02367781102657318, 0.01045113243162632, 0.010930855758488178, 0.03238137811422348, -0.004664460197091103, 0.05561373010277748, 0.012138732708990574, 0.04081081226468086, 0.029177505522966385, -0.0384807251393795, 0.034968458116054535, -0.007277243304997683, -0.039131779223680496, -0.01132491510361433, 0.030119819566607475, -0.00288262777030468, -0.037521276623010635, -0.018023919314146042, -0.00501140346750617, -0.002131988061591983, -0.02309528924524784, 0.027344273403286934, 0.01987428404390812, 0.004433164838701487, 0.0020216943230479956, 0.01283261924982071, 0.04444301128387451, 0.06592779606580734, 0.0073629082180559635, 0.056538909673690796, 0.04235278442502022, 0.02049107290804386, -0.011958836577832699, 0.026401957497000694, -0.08484262973070145, 0.019137565046548843, -0.03176458925008774, 0.020867997780442238, 0.007135896012187004, -0.021861711516976357, 0.0376926064491272, -0.04365489259362221, 0.04139333590865135, -0.031164932996034622, 0.028509316965937614, 0.03005128726363182, 0.0010601045796647668, 0.01060532871633768, 0.009834343567490578, -0.016344884410500526, -0.08258107304573059, 0.020799465477466583, -0.002505701733753085, -0.04180452972650528, 0.10697847604751587, 0.015822328627109528, 0.03277543559670448, -0.023249486461281776, 0.046464703977108, 0.07737264037132263, -0.029622962698340416, 0.043483562767505646, 0.005576792638748884, -0.0246715247631073, 0.01826378144323826, -0.00975724495947361, 0.010545363649725914, -0.0421471893787384, 0.008673583157360554, 0.007786950096487999, 0.06431729346513748, -0.029811425134539604, 0.019720086827874184, 0.0041376203298568726, 0.02713867649435997, 0.04255837947130203, -0.029811425134539604, -0.028337987139821053, 0.03597930818796158, 0.03961150348186493, 0.0002104146988131106, 0.09512243419885635, -0.01929176226258278, 0.035807978361845016, -0.01601935736835003, -0.002569950418546796, 0.0026813149452209473, 0.03961150348186493, 0.04879479482769966, 0.08511675894260406, -0.030171219259500504, 0.0326555036008358, -0.025356844067573547, -0.026350559666752815, -0.007084496784955263, -0.04314090311527252, 0.001861072494648397, 0.029571563005447388, 0.06949146091938019, -0.0013117456110194325, 0.01727006770670414, 0.0013556488556787372, 0.032227180898189545, -0.015376870520412922, -0.06291238963603973, 0.04930878430604935, 0.06212427094578743, -0.043483562767505646, -0.01707303710281849, -0.010913723148405552, -0.0660305917263031, 0.038514990359544754, -0.030085554346442223, -0.0031610392034053802, 0.025082716718316078, -0.05414029210805893, -0.01785258948802948, 0.014451688155531883, -0.08251254260540009, -0.011136451736092567, -0.02503131702542305, -0.006497691385447979, 0.01757846213877201, -0.03525971993803978, 0.09498537331819534, 0.05383189767599106, -0.014537353068590164, -0.025356844067573547, 0.03731568157672882, 0.008823496289551258, -0.05962285026907921, -0.05952005460858345, 0.007427156902849674, -0.013063915073871613, -0.034471601247787476, 0.00836947187781334, 0.009011959657073021, -0.008035378530621529, 0.023232351988554, -0.011521944776177406, -0.027155810967087746, 0.0188463032245636, -0.0018878427799791098, 0.023335151374340057, -0.005778105463832617, 0.013560771942138672, 0.038960449397563934, -0.05133047699928284, 0.008557935245335102, 0.013526505790650845, 0.0653795376420021, -0.0813475027680397, 0.035773709416389465, 0.06414596736431122, -0.019000500440597534, -0.05773822218179703, 0.021159259602427483, 0.004454581066966057, 0.028851978480815887, -0.046807363629341125, 0.0041761696338653564, 0.07812649756669998, -0.0008839559159241617, 0.012909717857837677, 0.025219781324267387, 0.027121543884277344, -0.02372920885682106, -0.06051376834511757, -0.0003742490371223539, 0.012284363619983196, 0.0668187141418457, -0.00792829692363739, 0.041119206696748734, -0.019583022221922874, 0.028132392093539238, -0.048383601009845734, 0.03253557160496712, -0.02802959270775318, -0.03077087365090847, 0.04673883318901062, -0.04965144395828247, -0.028372254222631454, 0.0146915502846241, -0.004587361589074135, 0.04886332526803017, 0.03140479698777199, 0.04886332526803017, 0.0210735946893692, 0.00202704849652946, -0.11417433619499207, -0.02009701356291771, -0.014665850438177586, -0.03512265533208847, 0.017595594748854637, 0.057121433317661285, 0.005675307475030422, -0.004998553544282913, 0.03539678454399109, 0.02309528924524784, -0.04283250868320465, 0.05201580002903938, 0.002426461549475789, -0.033255159854888916, -0.0011189993238076568, -0.020508205518126488, -0.0032488456927239895, 0.06640752404928207, -0.015385436825454235, 0.028680646792054176, -0.03270690515637398, 0.012541358359158039, -0.010888023301959038, -0.033083830028772354, -0.004268259275704622, -0.06106202304363251, 0.029314568266272545, -0.019634421914815903, -0.013774935156106949, -0.02969149500131607, 0.05252978950738907, 0.03268976882100105, -0.001450951211154461, -0.011436279863119125, 0.004306808579713106, -0.022941092029213905, -0.012318629771471024, -0.059006065130233765, 0.0041890195570886135, -0.0042040105909109116, 0.01655048131942749, 0.016619013622403145, 0.029400233179330826, -0.028851978480815887, -0.015102742239832878, 0.029674362391233444, -0.009080491960048676, -0.018058186396956444, 0.004557379055768251, 0.01175324060022831, 0.03656182810664177, 0.035002727061510086, -0.01060532871633768, -0.024740057066082954, 0.07223274558782578, 0.017090171575546265, 0.015728097409009933, -0.025014184415340424, 0.031336262822151184, -0.027841130271553993, 0.0163277518004179, -0.041153475642204285, -0.00237720413133502, 0.01392913144081831, 0.00290404399856925, 0.022050175815820694, -0.00919185671955347, 0.0047030095010995865, -0.048109471797943115, 0.019445959478616714, -0.012884018942713737, 0.009988540783524513, -0.01829804852604866, 0.04691016301512718, -0.014682983979582787, 0.025373978540301323, 0.007966846227645874, 0.003831367939710617, -0.0798397958278656, -0.0013567197602242231, 0.03995416313409805, 0.05554519593715668, -0.008557935245335102, -0.03741848096251488, -0.07045090943574905, 0.010177004151046276, -0.004257551394402981, -0.04886332526803017, 0.0257509034126997, 0.026213495060801506, 0.06082216277718544, -0.03584224358201027, -0.025682372972369194, 0.014203259721398354, 0.0348142646253109, 0.016841743141412735, 0.0754537433385849, 0.026710351929068565, 0.015102742239832878, 0.006870334502309561, 0.0038163764402270317, 0.03961150348186493, 0.019891416653990746, -0.0037564109079539776, 0.003677170956507325, 0.020131278783082962, 0.02350648120045662, -0.02062813565135002, -0.047389887273311615, -0.002689881483092904, 0.025408243760466576, -0.019548757001757622, -0.009997107088565826, -0.009080491960048676, 0.03054814413189888, 0.023849140852689743, -0.02175891399383545, 0.027652667835354805, 0.0009787228191271424, -0.014049062505364418, -0.05934872478246689, -0.06726416945457458, 0.012746954336762428, -0.06853201240301132, -0.026127830147743225, -0.02117639221251011, 0.0029447348788380623, 0.004904322326183319, 0.011402013711631298, -0.049994103610515594, 0.019343160092830658, 0.0130553487688303, -0.02242710068821907, -0.03418034315109253, -0.007919730618596077, -0.03203871473670006, 0.06901174038648605, -0.027258608490228653, 0.0037949602119624615, 0.021861711516976357, 0.04543672502040863, 0.023026756942272186, -0.01024553645402193, -0.026487622410058975, -0.016978805884718895, 0.010236969217658043, -0.030753741040825844, -0.10773232579231262, 0.030205484479665756, 0.025853702798485756, -0.003098932094871998, -0.009697279892861843, -0.003510124050080776, 0.025373978540301323, 0.046087779104709625, -0.02520264871418476, 0.026624687016010284, 0.016233520582318306, -0.00469872634857893, 0.022033043205738068, -0.003235996002331376, 0.03268976882100105, -0.05838927626609802, 0.012387161143124104, -0.051467541605234146, -0.006660454906523228, 0.022975357249379158, -0.007521388586610556, -0.03597930818796158, 0.018229516223073006, 0.0044074649922549725, 0.043175168335437775, -0.04153040051460266, -0.016567613929510117, -0.012541358359158039, -0.023403681814670563, -0.01915469765663147, 0.058115147054195404, 0.04948011413216591, 0.06812082231044769, -0.010828058235347271, -0.045950714498758316, -0.059006065130233765, 0.0457451194524765, 0.02924603596329689, 0.024328865110874176, 0.037761140614748, -0.0609249584376812, -0.007281526457518339, -0.06202147156000137, -0.008750681765377522, -0.0376926064491272, -0.01334660965949297, -0.010862324386835098, 0.025579573586583138, 0.000838446372654289, -0.033169493079185486, 0.0013824192574247718, -0.051604606211185455, -0.012541358359158039, -0.013663570396602154, 0.08840629458427429, -0.02436313033103943, 0.04039962217211723, 0.05139901116490364, -0.009363186545670033, 0.0030582412146031857, -0.014845747500658035, -0.08203282207250595, -0.01516270823776722, -0.057978082448244095, 0.003664321033284068, -0.0421471893787384, -0.04543672502040863, 0.04756121709942818, -0.029588697478175163, 0.020885130390524864, 0.02946876548230648, 0.07147888839244843, 0.10046793520450592, 0.042626913636922836, 0.010733827017247677, 0.030839405953884125, -0.08360905945301056, 0.01588229462504387, 0.0044417311437428, -0.07867474853992462, 0.012027367949485779, 0.009286087937653065, 0.0006794306682422757, 0.016978805884718895, 0.011881737969815731, 0.056538909673690796, -0.003049674676731229, 0.000192344727111049, -0.04399755224585533, 0.012035935185849667, 0.03171318769454956, -0.0011297074379399419, 0.009791511110961437, -0.0019649413879960775, -0.03493419289588928, 0.04581364989280701, -0.06647605448961258, -0.0105196638032794, -0.022684097290039062, -0.03241564333438873, -0.004955721087753773, 0.006489125080406666, 0.018949102610349655, -0.004874339327216148, -0.04077654704451561, -0.033083830028772354, 0.008849196135997772, -0.043175168335437775, -0.028629248961806297, -0.060890693217515945, 0.003994131460785866, -0.026521889492869377, -0.05996551364660263, -0.01047683134675026, -0.024071870371699333, 0.03238137811422348, -0.05890326574444771, 0.02336941659450531, 0.021159259602427483, 0.020525338128209114, -0.0013974106404930353, 0.02597363293170929, 0.027241475880146027, 0.04656750336289406, 0.039851367473602295, -0.04153040051460266, -0.0161307230591774, -0.052906714379787445, 0.02117639221251011, -0.015865162014961243, 0.07483696192502975, 0.01829804852604866, -0.01727006770670414, -0.01499994471669197, -0.007851199246942997, -0.0356023795902729, 0.010391166433691978, 0.04002269729971886, 0.020508205518126488, 0.0008641458698548377, -0.0987546294927597, -0.018452243879437447, 0.06013684347271919, -0.09772665053606033, -0.011556210927665234, 0.014126161113381386, 0.02731000818312168, -0.021587584167718887, -0.03149046003818512, -0.028406519442796707, -0.02256416529417038, 0.13391155004501343, -0.03423174098134041, 0.018537908792495728, -0.03714435175061226, -0.015428269281983376, 0.009157590568065643, -0.017304332926869392, -0.0015955109847709537, 0.0017625577747821808, -0.015119875781238079, -0.06013684347271919, 0.018555043265223503, -0.01627635397017002, 0.004625910893082619, 0.02259843237698078, -0.042626913636922836, 0.018178116530179977, -0.018949102610349655, 0.0005669953534379601, -0.007911164313554764, -0.009500250220298767, 0.03435167297720909, 0.054208822548389435, 0.01965155452489853, 0.004272542893886566, -0.06736697256565094, 0.009877176024019718, -0.03933737426996231, 0.02802959270775318, -0.057429827749729156, -0.024191800504922867, 0.05054235830903053, 0.02153618447482586, -0.05355776846408844, 0.03493419289588928, -0.02655615471303463, -0.05139901116490364, 0.07079356908798218, 0.02372920885682106, 0.0055468096397817135, -0.031558990478515625, 0.005255548749119043, -0.002867636503651738, -0.045642320066690445, 0.06318651884794235, -0.04845213517546654, 0.011359181255102158, -0.03861778974533081, -0.05904033035039902, -0.03445446863770485, -0.020251210778951645, 0.041119206696748734, -0.021467654034495354, 0.012164432555437088, 0.033752016723155975, 0.009765812195837498, -0.030445346608757973, -0.0355338491499424, 0.017612727358937263, 0.024500194936990738, 0.0019242503913119435, 0.02677888423204422, -0.05592212453484535, -0.0038463592063635588, -0.008840629830956459, -0.008202425204217434, 0.011153585277497768, -0.01746709644794464, 0.08449997007846832, 0.018332313746213913, 0.019394559785723686, -0.030531011521816254, -0.008438004180788994, -0.030599543824791908, -0.026967346668243408, -0.08970840275287628, 0.005028536543250084, -0.013937698677182198, -0.015976525843143463, -0.04320943355560303, 0.034060411155223846, -0.009834343567490578, 0.05050809308886528, -0.05605918541550636, -0.02328375168144703, -0.03176458925008774, 0.005122768227010965, 0.010665294714272022, -0.006116482429206371, -0.08251254260540009, 0.0032531290780752897, 0.02799532748758793, 0.0031224898993968964, -0.049857039004564285, -0.07024531066417694, 0.019531624391674995, -0.007564221043139696, 0.017287200316786766, 0.017527062445878983, 0.05037102848291397, -0.013475107029080391, 0.03477999567985535, 0.034060411155223846, -0.004471713677048683, -0.013278077356517315, 0.014160427264869213, 0.013312343508005142, 0.03584224358201027, 0.0006017967243678868, 0.0022101574577391148, -0.037247151136398315, -0.049411579966545105, 0.11047360301017761, -0.04413461685180664, -0.030428213998675346, 0.07867474853992462, -0.0037542693316936493, 0.002514268271625042, 0.04300383850932121, -0.013363742269575596, -0.007153029087930918, -0.02085086517035961, 0.019891416653990746, -0.04660176858305931, 0.0019242503913119435, 0.009560216218233109, -0.008420871570706367, -0.023112421855330467, -0.03063381090760231, 0.03878911957144737, 0.03068520873785019, 0.006724703591316938, 0.06202147156000137, -0.0004992664325982332, -0.03878911957144737, -0.021690381690859795 ]
40,057
s3path.old_versions
touch
Creates a key at this given path. If the key already exists, the function succeeds if exist_ok is true (and its modification time is updated to the current time), otherwise FileExistsError is raised
def touch(self, mode: int = 0o666, exist_ok: bool = True): """ Creates a key at this given path. If the key already exists, the function succeeds if exist_ok is true (and its modification time is updated to the current time), otherwise FileExistsError is raised """ if self.exists() and not exist_ok: raise FileExistsError() self.write_text('')
(self, mode: int = 438, exist_ok: bool = True)
[ 0.03354021534323692, 0.02736588381230831, -0.02980770915746689, 0.022046193480491638, 0.053545739501714706, -0.01908111944794655, -0.04192962870001793, 0.0691036581993103, -0.003994128666818142, -0.02595311403274536, 0.026371711865067482, 0.00023723313643131405, 0.07820817083120346, -0.027348442003130913, -0.008938824757933617, -0.006998445373028517, 0.036627378314733505, -0.01960436813533306, -0.08546388149261475, -0.0019654512871056795, 0.03711574524641037, -0.034796010702848434, 0.021522944793105125, -0.04360402375459671, 0.03291231766343117, 0.028743771836161613, 0.007709191180765629, 0.041580796241760254, 0.06599904596805573, -0.034796010702848434, -0.04322030767798424, -0.012488191947340965, 0.041266847401857376, 0.02666822075843811, -0.02481940947473049, 0.01681371033191681, -0.03610413148999214, 0.03715062886476517, -0.0059824720956385136, -0.03401113674044609, 0.03456926718354225, 0.04060406610369682, -0.04744117707014084, -0.02260432578623295, 0.031708844006061554, 0.016682898625731468, 0.021400853991508484, 0.0508248470723629, 0.004231770522892475, -0.027348442003130913, 0.0027034494560211897, 0.05099926516413689, 0.0030501014553010464, -0.027453092858195305, -0.05532478168606758, 0.006409791298210621, 0.031098388135433197, 0.022796181961894035, -0.05295272544026375, -0.04308077320456505, 0.03470880165696144, 0.03708086162805557, 0.02129620499908924, -0.002057019853964448, -0.04458075389266014, -0.012017268687486649, -0.0493946373462677, -0.03418555483222008, 0.06362698972225189, -0.0013451840495690703, 0.026720544323325157, -0.03491809964179993, 0.03144722059369087, 0.014232353307306767, 0.03397625312209129, 0.04998765140771866, -0.06125492975115776, 0.04035988450050354, 0.02555195800960064, -0.014145145192742348, -0.02159271202981472, -0.093138188123703, 0.009619046933948994, 0.02256944216787815, -0.030296074226498604, 0.06927806884050369, 0.044545870274305344, -0.03767387568950653, 0.011886456049978733, 0.0024243835359811783, -0.012540516443550587, 0.043673787266016006, -0.060627032071352005, -0.06237119436264038, 0.04922021925449371, -0.04866208881139755, 0.013813754543662071, 0.003654017113149166, 0.0260926466435194, 0.020371798425912857, 0.01509571261703968, -0.03022630885243416, 0.020668307319283485, -0.030697232112288475, 0.005036264657974243, -0.0038720371667295694, -0.012566679157316685, 0.006889435462653637, 0.010953330434858799, -0.0020177762489765882, -0.059057287871837616, 0.01624685898423195, 0.014092819765210152, -0.023964770138263702, -0.015374777838587761, 0.01213063858449459, 0.05389457195997238, -0.047999307513237, 0.009714975953102112, -0.05902240425348282, 0.0451737679541111, -0.050720199942588806, -0.010290549136698246, -0.035371582955121994, 0.03404602035880089, 0.016046280041337013, 0.009409748017787933, 0.04447610303759575, 0.079045370221138, -0.021662477403879166, -0.054836418479681015, 0.03151698783040047, 0.05518525093793869, 0.010046366602182388, -0.018086949363350868, -0.05026671662926674, 0.02863912098109722, 0.005938868038356304, -0.037185508757829666, 0.04140637814998627, 0.0038066310808062553, -0.08016163110733032, -0.0002725251251831651, 0.028761213645339012, 0.0029454517643898726, -0.02680775336921215, -0.04105754569172859, -0.01297655701637268, 0.02991236001253128, 0.05759219452738762, 0.02766239084303379, 0.05302249267697334, -0.0423831082880497, 0.04315054044127464, 0.04712722823023796, -0.008162672631442547, 0.018854379653930664, -0.015008504502475262, -0.0019054957665503025, 0.0030522814486175776, 0.010709147900342941, 0.019656693562865257, 0.05239459499716759, -0.005167076829820871, 0.01078763511031866, 0.052289944142103195, -0.03997616842389107, 0.059371236711740494, 0.05577826499938965, 0.03371462970972061, 0.023912446573376656, 0.022499674931168556, 0.046359796077013016, 0.0021976428106427193, 0.030662348493933678, -0.0366622619330883, -0.00959288515150547, -0.052987609058618546, 0.022517116740345955, -0.02839493937790394, 0.0324937179684639, -0.04346448928117752, -0.018174156546592712, 0.02724379301071167, 0.03742969408631325, 0.06973155587911606, -0.031953029334545135, 0.02457522787153721, 0.02105202153325081, -0.0022325259633362293, -0.02764495089650154, 0.012287613935768604, -0.0035014029126614332, 0.028708888217806816, 0.017188705503940582, 0.02583102323114872, -0.011650994420051575, -0.05804567411541939, -0.02288339100778103, 0.06010378524661064, -0.018662521615624428, 0.029179811477661133, 0.044964466243982315, 0.0059083448722958565, 0.046220265328884125, -0.014991062693297863, 0.07646401226520538, 0.016316624358296394, -0.039731986820697784, 0.03176116943359375, 0.048069074749946594, -0.03048793226480484, 0.022499674931168556, 0.04252264276146889, 0.029825150966644287, 0.0015762854600325227, -0.04280170798301697, 0.046499330550432205, -0.08065000176429749, 0.04245287552475929, -0.015470706857740879, 0.053685273975133896, 0.004096597898751497, -0.0366971455514431, 0.020127616822719574, 0.0015424923039972782, -0.00896498654037714, -0.027278676629066467, -0.03005189262330532, -0.0023044724948704243, 0.037883173674345016, 0.035633206367492676, -0.03399369493126869, -0.007800759747624397, -0.03920873627066612, -0.08420808613300323, 0.03448206186294556, -0.020214824005961418, -0.0025704570580273867, -0.01592418923974037, 0.000964739010669291, 0.013587013818323612, 0.042697057127952576, 0.0239996537566185, 0.07583611458539963, -0.024069420993328094, 0.022674091160297394, -0.017720675095915794, -0.017537537962198257, -0.05633639544248581, 0.035075075924396515, 0.016447437927126884, -0.07283616065979004, 0.02133108861744404, 0.028865862637758255, -0.04479005187749863, -0.017179984599351883, -0.008733885362744331, 0.009296377189457417, 0.037499457597732544, -0.038197122514247894, 0.008494063280522823, -0.028604239225387573, 0.0032964639831334352, 0.03374951332807541, -0.024627551436424255, -0.0037325043231248856, 0.05699917674064636, -0.0678478553891182, 0.012531796470284462, -0.04869697242975235, 0.0057295686565339565, -0.03763899207115173, -0.05058066546916962, 0.0036845398135483265, 0.0027056296821683645, 0.009043474681675434, 0.004595864098519087, 0.03641808032989502, 0.02429616078734398, 0.010953330434858799, -0.00043576769530773163, 0.04908068850636482, 0.008938824757933617, -0.051417864859104156, 0.01425851508975029, -0.03763899207115173, 0.03418555483222008, 0.0017659629229456186, -0.00967137236148119, 0.004639468155801296, 0.04109242931008339, -0.06840599328279495, 0.0052586449310183525, 0.005297888536006212, -0.035650648176670074, -0.07325475662946701, -0.0239822119474411, 0.03603436425328255, -0.03369718790054321, 0.0017430707812309265, 0.03542390838265419, -0.09620791673660278, 0.01085740141570568, 0.024034537374973297, -0.00663217157125473, -0.004175085108727217, -0.008664119057357311, -0.025918230414390564, 0.051452744752168655, -0.016604412347078323, -0.04077848047018051, 0.006981004029512405, 0.07730121165513992, 0.03934827074408531, 0.051313214004039764, 0.0010775644332170486, 0.008105987682938576, -0.0004153283080086112, 0.015148037113249302, -0.00025549231213517487, -0.005481025669723749, -0.05403410270810127, 0.0046220263466238976, 0.004874929785728455, -0.0691734179854393, 0.0507899634540081, 0.003385852323845029, -0.007792038843035698, 0.04304588958621025, -0.03599948063492775, 0.04276682436466217, 0.07042921334505081, 0.01523524522781372, -0.13918404281139374, 0.01705789379775524, 0.000991991488263011, -0.0324937179684639, 0.037743642926216125, 0.037464577704668045, -0.00004711278234026395, -0.0009516577702015638, -0.058220092207193375, -0.03739481046795845, 0.022813623771071434, -0.011581228114664555, 0.07290592789649963, 0.02652868628501892, 0.061603762209415436, -0.008114708587527275, -0.005973751191049814, 0.0239822119474411, 0.007953373715281487, -0.011450416408479214, 0.05319690704345703, -0.07255709171295166, 0.006745542399585247, -0.0338367223739624, -0.008119069039821625, -0.05476665124297142, -0.011555066332221031, 0.026982169598340988, -0.01213063858449459, -0.044964466243982315, -0.018278805539011955, -0.028900746256113052, -0.016412554308772087, 0.041720326989889145, -0.015845701098442078, -0.03763899207115173, 0.03167396038770676, -0.059650301933288574, -0.00162424985319376, 0.023092690855264664, 0.04925510287284851, -0.035057634115219116, 0.024767084047198296, 0.02019738405942917, -0.03432508558034897, 0.01495618000626564, 0.027889132499694824, -0.011677157133817673, -0.01932530291378498, -0.004430168773978949, -0.01177308615297079, 0.017528817057609558, 0.026999611407518387, 0.0052891680970788, 0.06655717641115189, 0.014842809177935123, 0.013778870925307274, 0.020284591242671013, 0.023615937680006027, 0.0038502351380884647, 0.016203254461288452, 0.053685273975133896, 0.04049941524863243, 0.023075249046087265, -0.034778568893671036, 0.07151059806346893, 0.017398005351424217, 0.006043517496436834, -0.02075551450252533, 0.017834044992923737, 0.004526097327470779, 0.04287147521972656, -0.00995043758302927, -0.05016206577420235, 0.036906443536281586, -0.0023655181284993887, -0.016996847465634346, 0.021627595648169518, -0.006074040196835995, -0.00041369316750206053, 0.016613133251667023, 0.05661546438932419, -0.04217381030321121, -0.05253412574529648, -0.027348442003130913, 0.0013691663043573499, -0.021365970373153687, -0.020493891090154648, -0.033400680869817734, 0.05996425077319145, -0.005960669834166765, 0.020807839930057526, -0.01107542123645544, 0.00046683556865900755, -0.011886456049978733, 0.028970511630177498, 0.005110391415655613, -0.029615851119160652, -0.030557699501514435, 0.051173679530620575, -0.044231921434402466, -0.02300548180937767, 0.03167396038770676, -0.05211552605032921, -0.04852255433797836, 0.04252264276146889, -0.0004981759702786803, -0.004257932770997286, 0.05305737257003784, 0.0055115483701229095, -0.041441261768341064, 0.00980218406766653, -0.020424123853445053, 0.013604454696178436, 0.09446375072002411, 0.025761255994439125, 0.07042921334505081, 0.04604584723711014, 0.006710659246891737, 0.020406682044267654, -0.030086776241660118, -0.031970467418432236, -0.05588291585445404, -0.03265069052577019, 0.008302206173539162, -0.027069376781582832, -0.005106030963361263, 0.1030450239777565, 0.019447393715381622, -0.05706894397735596, -0.006889435462653637, -0.04562724754214287, -0.00988939218223095, -0.00981962587684393, 0.030104216188192368, -0.03613901510834694, -0.03694132715463638, -0.04838302358984947, -0.037499457597732544, 0.03582506626844406, -0.031551871448755264, -0.004879290238022804, 0.028447264805436134, 0.0057164872996509075, 0.0054766652174293995, -0.000663326180074364, 0.026301946491003036, -0.04151102900505066, -0.026633337140083313, 0.02736588381230831, 0.03575529903173447, -0.022656649351119995, -0.017877649515867233, -0.007717912085354328, -0.02724379301071167, -0.007364719174802303, 0.003654017113149166, -0.06108051538467407, -0.003021758748218417, -0.02384267933666706, 0.000709655461832881, -0.013874799944460392, -0.0607316829264164, 0.011511461809277534, -0.11637041717767715, -0.07388265430927277, -0.012697490863502026, -0.018610196188092232, 0.02933678589761257, 0.02300548180937767, -0.04841790720820427, 0.04548771679401398, 0.02427871897816658, -0.04956905171275139, 0.019534602761268616, -0.028586797416210175, -0.0031176875345408916, -0.0029781546909362078, 0.007578379008919001, -0.0028342613950371742, 0.04363890737295151, 0.0031896342989057302, -0.04601096361875534, -0.07311522215604782, -0.043255191296339035, -0.045801665633916855, -0.006649613380432129, -0.006514440756291151, 0.06885947287082672, -0.025325216352939606, -0.011432974599301815, 0.00216930010356009, 0.01284574531018734, -0.01568872667849064, 0.04123196378350258, 0.04545283317565918, -0.01404921617358923, -0.015200362540781498, 0.03892967104911804, -0.018697405233979225, 0.01934274472296238, 0.008712084032595158, 0.0056946855038404465, -0.0034556188620626926, -0.02665077894926071, -0.0338541641831398, 0.03151698783040047, 0.010220782831311226, 0.004430168773978949, -0.02766239084303379, 0.01397072896361351, 0.005215040873736143, -0.005341492593288422, -0.10199853032827377, 0.04852255433797836, -0.038615722209215164, -0.026737986132502556, 0.0001139836385846138, 0.04067383334040642, 0.024749642238020897, 0.0025333936791867018, -0.011616111733019352, 0.041266847401857376, -0.07667331397533417, -0.0004444885125849396, 0.022499674931168556, -0.042976126074790955, -0.0044083665125072, 0.010386478155851364, 0.00015370418259408325, 0.020790398120880127, 0.0019621809478849173, -0.03484833613038063, 0.012749816291034222, 0.07381288707256317, -0.028011223301291466, 0.010761472396552563, 0.06362698972225189, 0.058778222650289536, -0.056475929915905, 0.007905409671366215, -0.01705789379775524, 0.02260432578623295, 0.04485981911420822, 0.0016329706413671374, -0.026493804529309273, -0.061917711049318314, 0.001434572390280664, -0.024924058467149734, -0.02937166951596737, 0.013682941906154156, -0.037045978009700775, 0.04984811693429947, 0.033104173839092255, -0.08009187132120132, 0.02087760530412197, -0.06976643204689026, 0.01326434314250946, 0.03214488551020622, -0.06927806884050369, 0.0176421869546175, -0.027627509087324142, 0.05232482776045799, -0.06899900734424591, -0.013508525677025318, -0.013037602417171001, -0.029144927859306335, -0.03934827074408531, -0.021976428106427193, 0.02089504711329937, -0.04995276778936386, 0.015008504502475262, -0.03777852654457092, 0.03913896903395653, 0.0008061293628998101, 0.012645166367292404, -0.0034556188620626926, -0.013220739550888538, 0.01776427961885929, 0.03770875930786133, 0.04768535867333412, 0.0620572455227375, -0.006693217437714338, -0.026912402361631393, 0.006082761101424694, 0.007722272537648678, -0.09934740513563156, -0.0353018157184124, -0.02640659548342228, 0.010700426995754242, -0.06990596652030945, -0.015339895151555538, 0.017572421580553055, 0.026772869750857353, -0.04133661463856697, -0.06875482201576233, -0.013290505856275558, -0.0006317132501862943, -0.020214824005961418, 0.02230781875550747, 0.01636022888123989, -0.013011440634727478, -0.03320882469415665, 0.0011113574728369713, 0.052848074585199356, 0.058220092207193375, -0.03334835544228554, -0.06265025585889816, -0.019150886684656143, -0.011214954778552055, -0.07437101751565933, -0.008437378332018852, 0.040743596851825714, -0.03371462970972061, 0.010752751491963863, -0.005585675127804279, 0.0029498122166842222, -0.06261537969112396, -0.020249707624316216, 0.00441272696480155, 0.05058066546916962, 0.006100202910602093, 0.017476491630077362, -0.06826645880937576, -0.05661546438932419, -0.010412640869617462, -0.010630660690367222, -0.02288339100778103, -0.03488321602344513, 0.030453048646450043, 0.016159649938344955, 0.0019480097107589245, -0.01199982687830925, -0.005576954688876867, -0.03885990381240845, 0.027313560247421265, 0.006313862279057503, -0.03798782452940941, 0.006030436139553785, 0.01397072896361351, 0.02555195800960064, 0.006776065099984407, 0.031237920746207237, 0.031272806227207184, 0.033104173839092255, 0.029877476394176483, 0.023790353909134865, 0.011188792064785957, 0.026842636987566948, -0.05180157721042633, 0.0020254068076610565, 0.04887138679623604, 0.06024331599473953, 0.031168155372142792, -0.020982256159186363, -0.08071976900100708, -0.008572550490498543, -0.01071786880493164, -0.022639207541942596, 0.02077295631170273, -0.07465008646249771, -0.03631342947483063, 0.02541242353618145, 0.11274255812168121, 0.020563656464219093, -0.04768535867333412, -0.010037645697593689, 0.08371972292661667, 0.025621723383665085, -0.04772024229168892, -0.029825150966644287, -0.044964466243982315, -0.03582506626844406, -0.007979536429047585, 0.05410386994481087, -0.03910408541560173, -0.003346608718857169, 0.03826688975095749, 0.05546431615948677, -0.04360402375459671, 0.014354444108903408, -0.03415067121386528, 0.023929888382554054, -0.018802054226398468, 0.031708844006061554, -0.003756486577913165, 0.018121831119060516, 0.007639424875378609, -0.006697577890008688, -0.060906097292900085, -0.03404602035880089, -0.059650301933288574, -0.035371582955121994, -0.04573189839720726, -0.0012906790943816304, 0.03047049045562744, 0.03369718790054321, -0.007630703970789909, -0.051417864859104156, 0.01878461241722107, 0.04147614538669586, 0.016464879736304283, -0.014293398708105087, -0.015008504502475262, 0.00649699941277504, 0.08776617795228958, -0.030243750661611557, 0.03938315436244011, -0.036487847566604614, -0.04562724754214287, 0.04744117707014084, -0.008036221377551556, 0.028761213645339012, 0.06544091552495956, -0.03575529903173447, 0.07534775137901306, 0.0033727711997926235, 0.01578465662896633, -0.0028342613950371742, 0.03498786687850952, 0.04245287552475929, -0.022552000358700752, -0.004696153104305267, 0.02809843234717846, 0.04349937289953232, 0.03784829005599022, -0.013386434875428677, -0.021348528563976288, -0.048487674444913864, 0.010325432755053043, 0.016429996117949486, 0.008319647051393986, -0.021400853991508484, 0.0353018157184124 ]
40,058
s3path.old_versions
unlink
Remove this key from its bucket.
def unlink(self, missing_ok: bool = False): """ Remove this key from its bucket. """ self._absolute_path_validation() # S3 doesn't care if you remove full prefixes or buckets with its delete API # so unless we manually check, this call will be dropped through without any # validation and could result in data loss try: if self.is_dir(): raise IsADirectoryError(str(self)) if not self.is_file(): raise FileNotFoundError(str(self)) except (IsADirectoryError, FileNotFoundError): if missing_ok: return raise try: # XXX: Note: If we don't check if the file exists here, S3 will always return # success even if we try to delete a key that doesn't exist. So, if we want # to raise a `FileNotFoundError`, we need to manually check if the file exists # before we make the API call -- since we want to delete the file anyway, # we can just ignore this for now and be satisfied that the file will be removed self._accessor.unlink(self) except FileNotFoundError: if not missing_ok: raise
(self, missing_ok: bool = False)
[ -0.006119105964899063, 0.05294078588485718, -0.06120935454964638, 0.03301938995718956, 0.031336408108472824, -0.01689385436475277, -0.015531004406511784, 0.05667261779308319, 0.039915964007377625, 0.03728172928094864, 0.01848537102341652, 0.02244586870074272, 0.09080789983272552, -0.022299522534012794, -0.03631218522787094, 0.03951350972056389, 0.01822926476597786, 0.013189462944865227, 0.022555628791451454, -0.035141412168741226, 0.007870689034461975, 0.025994766503572464, 0.011972959153354168, -0.009841791354119778, 0.018220119178295135, 0.0565994456410408, 0.049904100596904755, 0.01692129485309124, 0.006302039138972759, -0.01364679541438818, -0.00308470637537539, 0.01125952135771513, 0.04624544084072113, 0.08224663883447647, 0.024202024564146996, -0.025336209684610367, 0.014771833084523678, -0.01049120258539915, -0.07288047671318054, 0.0008426347631029785, -0.006983464118093252, 0.059819065034389496, 0.020964112132787704, -0.06384358555078506, 0.08722241222858429, 0.03517799824476242, -0.010692428797483444, 0.07408782839775085, -0.05484328791499138, 0.01061925571411848, 0.03009246475994587, 0.05048948526382446, -0.021458031609654427, -0.023689812049269676, 0.029744891449809074, -0.0407208688557148, 0.028921693563461304, 0.0039787907153368, -0.004916321951895952, 0.016107242554426193, 0.08114904165267944, 0.015046232379972935, -0.026872845366597176, -0.05125780403614044, 0.00992411095649004, -0.030933955684304237, 0.021403150632977486, -0.04781866446137428, -0.006402652245014906, 0.0036449383478611708, -0.012238211929798126, -0.011908932588994503, -0.004541309550404549, 0.02398250624537468, -0.012896770611405373, -0.00040245242416858673, -0.0049300421960651875, 0.009375312365591526, 0.03333037719130516, -0.04767231643199921, 0.00020537078671623021, -0.07434393465518951, -0.02595818042755127, -0.05491646006703377, -0.0013102570082992315, 0.021732430905103683, 0.044745393097400665, -0.05301395803689957, 0.03731831535696983, 0.03402552381157875, -0.020890938118100166, 0.003805004758760333, -0.044818565249443054, -0.05078217759728432, 0.024604476988315582, 0.0034162721130996943, -0.01920795626938343, -0.06329479068517685, 0.019518941640853882, -0.051440734416246414, 0.05444083735346794, -0.02575695514678955, 0.03256205841898918, 0.016930442303419113, 0.048952847719192505, 0.019628701731562614, 0.0015297764912247658, -0.0655631572008133, 0.0053370678797364235, 0.03746465966105461, -0.04364779219031334, -0.031080301851034164, -0.0060596526600420475, 0.03442797437310219, 0.019555529579520226, -0.038379326462745667, 0.04342827573418617, -0.048184528946876526, -0.032287660986185074, -0.046977173537015915, 0.04280630126595497, -0.07306340336799622, -0.006539851892739534, -0.04536736384034157, 0.058172665536403656, 0.005318774376064539, 0.01389375515282154, 0.016573721542954445, 0.034446269273757935, -0.014771833084523678, -0.0413428395986557, 0.023049548268318176, -0.05330665037035942, -0.028830228373408318, -0.00966800469905138, 0.007257863413542509, 0.04825770482420921, 0.007042917422950268, -0.011158907786011696, 0.03504994511604309, 0.049026019871234894, -0.001043860916979611, 0.0515139102935791, 0.02048848569393158, 0.031775448471307755, -0.039915964007377625, -0.029726598411798477, -0.02251904271543026, 0.010774748399853706, -0.031007129698991776, -0.027311883866786957, 0.052391987293958664, 0.07233167439699173, 0.022153176367282867, 0.013710821978747845, 0.0010547225829213858, -0.04020865634083748, 0.00011126037134090438, -0.07416100054979324, -0.007390489801764488, 0.03867201879620552, 0.043025821447372437, 0.03579997271299362, -0.03428163006901741, -0.012960797175765038, -0.023104427382349968, 0.0302205178886652, 0.01774449273943901, -0.0171774011105299, 0.056782376021146774, -0.010664989240467548, 0.03045833110809326, 0.018732329830527306, 0.03682439774274826, 0.011177200824022293, 0.01568649709224701, -0.025811834260821342, -0.015704790130257607, -0.008853953331708908, -0.0769781693816185, 0.026616739109158516, -0.024842290207743645, 0.03492189198732376, -0.0527944378554821, 0.029159506782889366, 0.05802632123231888, -0.07222191244363785, 0.026104526594281197, -0.0012519471347332, -0.013939488679170609, -0.025336209684610367, 0.034135282039642334, 0.00233010808005929, 0.05477011576294899, 0.05198953300714493, -0.011250373907387257, -0.0014943332644179463, 0.04624544084072113, -0.0007511682924814522, 0.02716553770005703, -0.02125680446624756, 0.021147044375538826, 0.009357018396258354, 0.011844906024634838, 0.0008786496473476291, -0.018970143049955368, -0.004575609695166349, -0.014369380660355091, -0.02480570413172245, 0.06069714203476906, 0.020012861117720604, 0.01854025013744831, 0.010546082630753517, -0.01326263602823019, 0.014012661762535572, -0.02760457620024681, -0.025555728003382683, 0.03078760951757431, 0.004440696444362402, 0.008597847074270248, 0.012512611225247383, -0.010610109195113182, 0.0922713652253151, 0.005236454773694277, 0.049647994339466095, 0.024531304836273193, 0.034446269273757935, 0.023360533639788628, -0.011213787831366062, -0.017479240894317627, 0.03142787516117096, 0.024019092321395874, 0.019445769488811493, 0.010418029502034187, 0.026799671351909637, -0.052648093551397324, 0.015101112425327301, -0.024384958669543266, 0.029982704669237137, -0.025610608980059624, -0.02786068245768547, 0.002315244637429714, -0.03252547234296799, 0.02932414598762989, 0.006855410989373922, 0.02092752605676651, 0.031116889789700508, 0.03805004805326462, 0.0035923451650887728, -0.07167311757802963, 0.025226449593901634, 0.03678780794143677, -0.00501236179843545, 0.021604377776384354, 0.05363593250513077, -0.03682439774274826, -0.06098983436822891, -0.04617226868867874, 0.01050034910440445, 0.04115990549325943, -0.007623729296028614, -0.01329922303557396, 0.014845006167888641, 0.017927424982190132, -0.007920995354652405, 0.02303125336766243, 0.07035599648952484, 0.036678049713373184, 0.02932414598762989, 0.05440424755215645, 0.0642094537615776, -0.04668448120355606, 0.013280929997563362, -0.0642094537615776, 0.0020488486625254154, 0.07320975512266159, -0.02659844607114792, -0.05718483030796051, 0.05484328791499138, 0.00518614798784256, 0.025025222450494766, -0.04741621017456055, 0.04544053599238396, 0.031263235956430435, 0.03653170168399811, 0.04441611096262932, -0.000335567572619766, -0.014561460353434086, 0.030696142464876175, 0.07624644041061401, -0.010408882983028889, -0.04906260967254639, -0.031903501600027084, 0.011972959153354168, 0.009338725358247757, -0.03783052787184715, -0.07470980286598206, -0.012979090213775635, 0.027238711714744568, 0.007157250307500362, -0.038891538977622986, 0.04847722128033638, 8.932271384765045e-7, 0.005840133409947157, 0.04123307764530182, -0.03976961597800255, 0.036239009350538254, 0.0008866529678925872, -0.02665332518517971, 0.05579454079270363, -0.01535721868276596, -0.00561604043468833, -0.010198510251939297, 0.00621971907094121, 0.04295264929533005, 0.013107143342494965, 0.03499506786465645, 0.012357118539512157, -0.04529419168829918, -0.012357118539512157, -0.008199968375265598, 0.0029772331472486258, -0.06603877991437912, 0.021897070109844208, -0.003004673169925809, -0.07116090506315231, -0.06753883510828018, 0.05872146785259247, -0.031116889789700508, 0.02315930649638176, 0.01902502402663231, 0.025866715237498283, 0.0028148803394287825, -0.016207857057452202, -0.0947592481970787, -0.012796157039701939, 0.033860884606838226, -0.03708050027489662, 0.055940885096788406, 0.06219718977808952, -0.02233610861003399, -0.012722983956336975, 0.021659256890416145, 0.007070357445627451, -0.1151745617389679, 0.0027943002060055733, -0.002182618249207735, -0.014479140751063824, 0.004456703085452318, -0.04463563114404678, 0.04613568261265755, 0.0451478436589241, 0.005936173256486654, 0.01856769062578678, 0.04650154709815979, 0.005991052836179733, -0.012219918891787529, 0.03214131295681, 0.026195993646979332, -0.032287660986185074, 0.05718483030796051, -0.05872146785259247, -0.0394403375685215, -0.03955009579658508, 0.029891237616539, -0.01727801375091076, -0.020140914246439934, -0.044306352734565735, -0.039476923644542694, -0.02716553770005703, 0.01574137806892395, -0.07829529047012329, -0.031190061941742897, -0.012009546160697937, 0.06816080212593079, 0.05173343047499657, 0.04796501249074936, -0.026488685980439186, 0.0037638447247445583, -0.008277714252471924, -0.03548898547887802, 0.03534264117479324, -0.003706678282469511, -0.020305553451180458, 0.0019448056118562818, 0.02283002808690071, -0.032415714114904404, 0.007632875815033913, 0.02233610861003399, 0.022354401648044586, 0.026122819632291794, -0.008135941810905933, 0.040684279054403305, -0.02500692941248417, -0.0744171068072319, -0.02952537313103676, 0.002130025066435337, -0.05590429902076721, -0.0019893953576684, -0.02958025224506855, 0.03812322020530701, 0.013207756914198399, -0.06761200726032257, 0.006864557508379221, 0.013655941933393478, 0.0324523001909256, -0.005026082042604685, 0.035854849964380264, -0.0062563056126236916, -0.012823597528040409, 0.021073872223496437, -0.031318116933107376, 0.0015846564201638103, 0.019811633974313736, 0.027531404048204422, 0.03653170168399811, -0.027257004752755165, -0.057916563004255295, -0.0018190392293035984, 0.04983092471957207, -0.013637648895382881, 0.004152577370405197, -0.041891638189554214, 0.00022866614744998515, 0.015220019035041332, -0.03237912803888321, -0.027622871100902557, -0.051623668521642685, -0.01953723467886448, 0.030751023441553116, 0.03060467727482319, -0.033110857009887695, -0.030696142464876175, -0.0009055179543793201, -0.056526269763708115, 0.04639178887009621, -0.023122720420360565, 0.02246416173875332, -0.008167955093085766, 0.02729359082877636, -0.043098993599414825, -0.03638535737991333, -0.022299522534012794, 0.04478197917342186, -0.03424504026770592, 0.0024856009986251593, 0.008099354803562164, 0.030366864055395126, 0.03823297843337059, 0.02061653882265091, -0.008195394650101662, -0.0016235295915976167, -0.027567990124225616, -0.06863643229007721, -0.05209929496049881, -0.03232424706220627, 0.029305852949619293, -0.008177101612091064, -0.026616739109158516, -0.02696431241929531, 0.00015577880549244583, 0.08327106386423111, 0.045330777764320374, -0.045769814401865005, -0.04046476259827614, 0.024970343336462975, 0.054294489324092865, 0.0038621712010353804, -0.03433650732040405, -0.06194108724594116, -0.019482355564832687, -0.06088007614016533, -0.018860382959246635, 0.05034313723444939, -0.035269465297460556, 0.03640364855527878, 0.038635432720184326, 0.035982903093099594, -0.0033453856594860554, -0.03237912803888321, 0.005931599996984005, -0.06278257817029953, 0.0079575814306736, 0.00526389479637146, 0.04544053599238396, 0.011616240255534649, -0.04624544084072113, 0.011040001176297665, 0.062380123883485794, -0.04657471925020218, -0.007962155155837536, -0.03682439774274826, -0.023452000692486763, 0.019445769488811493, 0.02272026799619198, -0.03305597975850105, -0.02888510748744011, 0.027439936995506287, -0.019500648602843285, -0.04825770482420921, 0.01618041656911373, -0.008995725773274899, -0.058684878051280975, 0.016784094274044037, 0.04522101581096649, -0.015732230618596077, -0.02092752605676651, -0.0002239499008283019, -0.004861442372202873, -0.051623668521642685, -0.07178287953138351, 0.06183132529258728, 0.038452498614788055, 0.030952248722314835, 0.014771833084523678, -0.00928384531289339, -0.06688027083873749, 0.003317945869639516, 0.012540051713585854, 0.03735490143299103, 0.005469694267958403, -0.03290963172912598, -0.012924210168421268, -0.00911463238298893, -0.04752597212791443, 0.0017321460181847215, -0.039037883281707764, 0.0028560401406139135, 0.004952908493578434, 0.007696902379393578, -0.04291606321930885, 0.011972959153354168, -0.013107143342494965, -0.02385445311665535, -0.03314744308590889, 0.05228222906589508, -0.023360533639788628, 0.0025107543915510178, 0.021201925352215767, -0.004413256421685219, 0.0324523001909256, 0.06285575032234192, 0.030074171721935272, 0.033293791115283966, -0.030494917184114456, 0.018137799575924873, -0.014561460353434086, -0.008968286216259003, 0.0515139102935791, 0.022025123238563538, -0.03541581332683563, 0.04408683255314827, 0.0591605044901371, 0.008945419453084469, 0.09980820119380951, -0.010463763028383255, -0.003253919305279851, -0.06468507647514343, -0.008268567733466625, -0.017342040315270424, -0.019738461822271347, 0.029872944578528404, 0.03951350972056389, -0.027055777609348297, 0.03461090847849846, -0.006132826209068298, 0.004388103261590004, -0.02557402104139328, 0.07291705906391144, -0.0019207956502214074, -0.030257103964686394, 0.006384358741343021, 0.0534529983997345, -0.050599243491888046, -0.04225750267505646, 0.019006729125976562, -0.024202024564146996, -0.033440135419368744, -0.016720067709684372, -0.039147645235061646, 0.04002572223544121, -0.048623569309711456, 0.02506181038916111, -0.04236726462841034, -0.03633047640323639, -0.02398250624537468, -0.015878576785326004, 0.0021574650891125202, -0.0353243462741375, 0.011067441664636135, -0.0026891138404607773, -0.021531203761696815, 0.002515327651053667, -0.04441611096262932, 0.041708704084157944, 0.0058081201277673244, 0.07961240410804749, -0.05681896209716797, -0.036934155970811844, 0.028848521411418915, 0.06073372811079025, -0.049208953976631165, 0.03958668187260628, 0.03574509173631668, -0.017012761905789375, 0.09629588574171066, -0.04917236790060997, 0.006869131233543158, -0.02793385647237301, -0.03689756989479065, -0.029982704669237137, -0.004502436611801386, -0.008881392888724804, 0.003359105670824647, 0.0014863299438729882, 0.01822926476597786, -0.03446456044912338, -0.038379326462745667, -0.022500747814774513, 0.0006682767998427153, -0.01889697089791298, -0.1126135066151619, -0.05941661074757576, 0.070648692548275, -0.08934443444013596, -0.025647195056080818, 0.010756455361843109, 0.03614754602313042, -0.058940984308719635, 0.008286860771477222, -0.02398250624537468, -0.07939288765192032, 0.04796501249074936, 0.002070571994408965, 0.008350887335836887, 0.019299423322081566, -0.0080261817201972, 0.0006791384657844901, 0.011826612986624241, 0.008968286216259003, 0.02645209990441799, -0.05744093656539917, -0.08853953331708908, 0.06669734418392181, -0.06859984248876572, -0.0343548022210598, 0.035726796835660934, -0.0292509738355875, 0.014662072993814945, -0.01689385436475277, 0.007632875815033913, 0.0451478436589241, 0.020708005875349045, -0.06830715388059616, -0.0009821210987865925, -0.030074171721935272, 0.04276971518993378, -0.04123307764530182, -0.0642460435628891, -0.027366764843463898, -0.007806662004441023, -0.06457532197237015, -0.017991451546549797, 0.07086820900440216, 0.0020111186895519495, -0.04829429090023041, 0.023945918306708336, -0.009160365909337997, -0.014662072993814945, -0.002247788244858384, 0.022299522534012794, -0.013134583830833435, -0.03208643198013306, -0.003119006287306547, -0.01100341510027647, 0.001429163385182619, 0.07017306983470917, -0.03506824001669884, 0.003393405582755804, -0.009759470820426941, -0.0324523001909256, 0.03001929074525833, -0.023305652663111687, 0.03834274038672447, 0.03925740346312523, -0.0037684179842472076, 0.05220905318856239, 0.00729902321472764, -0.024147145450115204, -0.07617326825857162, -0.0002703977224882692, -0.04339168593287468, -0.007097797002643347, 0.01147904060781002, -0.08700289577245712, -0.016857268288731575, 0.023561758920550346, 0.027494817972183228, 0.022189762443304062, -0.053270064294338226, 0.05583112686872482, -0.009311285801231861, 0.02385445311665535, -0.0591605044901371, -0.009585685096681118, -0.012649810872972012, 0.007747209165245295, -0.01507367193698883, -0.027494817972183228, 0.013756555505096912, 0.017195694148540497, 0.02023238129913807, -0.02208000235259533, -0.0699535459280014, 0.055757954716682434, 0.05198953300714493, 0.002968086628243327, -0.056709203869104385, 0.00362664507701993, -0.03579997271299362, -0.00013326948101166636, -0.02182389609515667, -0.013957781717181206, 0.017698759213089943, -0.009068899787962437, -0.04683082550764084, -0.023378826677799225, -0.024714237079024315, -0.044306352734565735, 0.06164839118719101, 0.04584299027919769, 0.016710922122001648, -0.0359463170170784, 0.04496490955352783, 0.041452597826719284, -0.02347029373049736, 0.021512910723686218, 0.004747109021991491, 0.09175915271043777, 0.0388183631002903, -0.048696741461753845, 0.04485515132546425, 0.02041531354188919, -0.04884308949112892, 0.04368438199162483, -0.01233882550150156, -0.011158907786011696, 0.06292892247438431, 0.0018224691739305854, 0.029214385896921158, 0.0279887355864048, -0.01039973646402359, -0.012192479334771633, 0.03995255008339882, 0.018988436087965965, -0.04478197917342186, -0.044562458992004395, 0.03645852953195572, 0.01571393758058548, 0.006018492858856916, -0.023872746154665947, -0.004943761974573135, -0.0111314682289958, 0.006791384425014257, 0.03808663412928581, 0.014579753391444683, -0.02354346588253975, -0.003091566264629364 ]
40,064
s3path.old_versions
StatResult
Base of os.stat_result but with boto3 s3 features
class StatResult(namedtuple('BaseStatResult', 'size, last_modified, version_id', defaults=(None,))): """ Base of os.stat_result but with boto3 s3 features """ def __getattr__(self, item): if item in vars(stat_result): raise UnsupportedOperation(f'{type(self).__name__} do not support {item} attribute') return super().__getattribute__(item) @property def st_size(self) -> int: return self.size @property def st_mtime(self) -> float: return self.last_modified.timestamp() @property def st_version_id(self) -> str: return self.version_id
(size, last_modified, version_id=None)
[ 0.0397186353802681, -0.05607951432466507, -0.04473133012652397, -0.007279719691723585, 0.066835917532444, -0.03571544215083122, -0.01789253205060959, 0.019354568794369698, 0.007001236546784639, 0.012618760578334332, 0.025289736688137054, 0.056009892374277115, 0.04299081116914749, -0.012366385199129581, -0.014864029362797737, 0.09628549218177795, 0.00022667537268716842, 0.022191613912582397, -0.023148898035287857, 0.04995288699865341, 0.017335565760731697, 0.03863951563835144, 0.00020954213687218726, 0.016073690727353096, 0.045253485441207886, 0.046576280146837234, 0.05002250894904137, -0.04459208995103836, 0.05110162869095802, -0.04358258843421936, -0.040171172469854355, 0.001071506878361106, -0.0002855538623407483, 0.01858874037861824, -0.025672651827335358, -0.02271376922726631, 0.024088779464364052, 0.0380825512111187, -0.05886434391140938, 0.013036484830081463, -0.00044192856876179576, -0.008176086470484734, -0.036655325442552567, -0.025150494650006294, 0.04835160821676254, 0.019076084718108177, 0.007714848965406418, 0.02109508588910103, -0.01238379068672657, -0.0755385085940361, 0.03923129290342331, 0.08632972836494446, -0.007458122447133064, 0.0150380814447999, -0.01656973734498024, -0.02151281200349331, 0.03468853607773781, 0.06537388265132904, -0.06231056898832321, 0.0571238249540329, 0.015856126323342323, 0.029971731826663017, 0.031242311000823975, -0.023932132869958878, -0.03423600271344185, -0.059073206037282944, -0.04326929524540901, -0.020085586234927177, -0.06248462200164795, 0.05218075215816498, 0.040902189910411835, 0.007662633433938026, 0.004201177041977644, 0.009390098042786121, 0.011548341251909733, 0.02434985712170601, -0.025742271915078163, -0.03258251026272774, 0.05430418252944946, -0.031381551176309586, -0.028631532564759254, -0.013697882182896137, -0.011966066434979439, -0.033626820892095566, -0.01825804077088833, -0.011661475524306297, -0.0020483729895204306, -0.08131703734397888, -0.03016318939626217, 0.07000366598367691, -0.08451958745718002, 0.07031695544719696, -0.02522011660039425, 0.0034157680347561836, 0.012114009819924831, 0.003570239059627056, -0.017065785825252533, -0.04748135060071945, -0.04709843546152115, -0.008598162792623043, -0.016386983916163445, -0.02072957716882229, 0.01603017747402191, -0.010399599559605122, 0.015333970077335835, -0.02347959764301777, -0.011818122118711472, -0.060813724994659424, 0.015394887886941433, 0.03487999364733696, 0.01945899985730648, 0.011409100145101547, -0.011200238019227982, 0.022000156342983246, 0.04455728083848953, -0.06801947206258774, 0.015917044132947922, -0.029588818550109863, -0.04229460284113884, -0.009625068865716457, 0.057750411331653595, 0.000552342738956213, 0.024663150310516357, 0.06895934790372849, -0.010451815091073513, 0.0215650275349617, 0.038430653512477875, -0.01651752181351185, 0.02274858020246029, 0.03766482323408127, 0.010930457152426243, 0.0060265460051596165, -0.001743782195262611, 0.018292851746082306, 0.04184206947684288, 0.02434985712170601, 0.0421205535531044, 0.04051927477121353, -0.026072969660162926, 0.057437118142843246, 0.0644339993596077, -0.004098921548575163, 0.02243528701364994, -0.046715524047613144, -0.0105301383882761, -0.012810218147933483, 0.010617163963615894, -0.02024223282933235, -0.01158315222710371, -0.018658360466361046, -0.002401915844529867, -0.036690134555101395, 0.03453189134597778, -0.014045986346900463, -0.045845262706279755, -0.02563784085214138, 0.01536007784307003, -0.07804486155509949, -0.018275447189807892, -0.07240557670593262, -0.023601433262228966, -0.03322650119662285, -0.012392492964863777, -0.05489595979452133, 0.024663150310516357, 0.00878961943089962, -0.013758799992501736, -0.001937414868734777, -0.03447967395186424, -0.013811015523970127, 0.016613250598311424, 0.022487502545118332, 0.029884707182645798, 0.06537388265132904, 0.007458122447133064, 0.04097181186079979, -0.0003584380610845983, 0.0021343110129237175, 0.042503468692302704, -0.08862721174955368, 0.035402148962020874, -0.06307639926671982, -0.030232809484004974, 0.021634647622704506, -0.012523031793534756, 0.033626820892095566, 0.006996885407716036, 0.04869971424341202, 0.01064327172935009, 0.01718762144446373, 0.007762713357806206, -0.01844949834048748, -0.015238241292536259, -0.027447979897260666, 0.016247741878032684, -0.006975128781050444, -0.036098357290029526, 0.007445068564265966, 0.04650665819644928, 0.06742769479751587, -0.06046561896800995, 0.020311852917075157, 0.011435207910835743, 0.013828421011567116, 0.02215680293738842, -0.023966941982507706, 0.00827181525528431, -0.02522011660039425, -0.06634857505559921, 0.021443190053105354, -0.013227942399680614, 0.01140039786696434, -0.04194650053977966, 0.06965555995702744, 0.002819640329107642, -0.028492290526628494, 0.03717748075723648, 0.04400031268596649, 0.03035464696586132, -0.016273850575089455, 0.08577276021242142, -0.059943463653326035, 0.04386107251048088, 0.01763145439326763, 0.04344334825873375, 0.0172137301415205, 0.04487057402729988, -0.04448765888810158, -0.03259991481900215, -0.012070497497916222, 0.031103068962693214, -0.02687360905110836, 0.04462689906358719, 0.01307129580527544, -0.03414897620677948, -0.016883032396435738, 0.04925667867064476, 0.029014447703957558, -0.023270735517144203, -0.05433899536728859, -0.015116404742002487, 0.023549217730760574, -0.01332367118448019, 0.04737691953778267, -0.03867432475090027, -0.11912109702825546, -0.007775767240673304, 0.05218075215816498, -0.02701285108923912, -0.00010307133925380185, 0.03968382626771927, 0.0621713288128376, -0.0249068234115839, -0.019841913133859634, 0.04647184908390045, -0.08855759352445602, -0.07386761158704758, -0.04619336500763893, 0.02151281200349331, -0.03434043377637863, 0.00817173533141613, -0.07268406450748444, 0.051658596843481064, -0.0028762072324752808, -0.014385387301445007, 0.0018862871220335364, 0.02201756089925766, -0.0012074848636984825, -0.035454366356134415, 0.08431072533130646, 0.03263472765684128, -0.0002088622422888875, -0.049604784697294235, -0.019197922199964523, -0.053259871900081635, 0.006879399996250868, -0.03369644284248352, -0.04107624292373657, -0.005469580180943012, -0.043512966483831406, 0.005386905279010534, -0.021826105192303658, -0.031155284494161606, 0.032443270087242126, 0.016856923699378967, 0.03347017616033554, -0.013227942399680614, 0.006104869302362204, -0.024471692740917206, 0.01183552760630846, -0.001835159375332296, 0.012488221749663353, -0.04243384674191475, -0.10477922856807709, 0.037386342883110046, 0.003463632194325328, -0.06711439788341522, -0.005439120810478926, 0.069864422082901, 0.009268262423574924, -0.07184861600399017, -0.0027848300524055958, 0.01676119491457939, 0.02650810033082962, -0.033574607223272324, 0.05085795745253563, 0.06488654017448425, -0.04706362634897232, -0.05378202721476555, 0.026769177988171577, 0.0518326461315155, 0.06467767804861069, -0.028910016641020775, 0.005504390224814415, 0.05858585983514786, 0.05625356361269951, -0.03863951563835144, -0.014576843939721584, -0.027761273086071014, 0.048873767256736755, -0.0935702845454216, -0.017683669924736023, -0.004529700148850679, -0.006222354248166084, 0.04950035363435745, -0.055000390857458115, -0.0380825512111187, 0.006009140983223915, -0.00011864082625834271, 0.04504462331533432, -0.07658282667398453, 0.009129020385444164, 0.028962232172489166, 0.03477556258440018, -0.036829374730587006, 0.021826105192303658, 0.018936842679977417, 0.004507943522185087, 0.04138953611254692, 0.0047081029042601585, 0.04462689906358719, -0.009720796719193459, -0.002166945720091462, 0.041633207350969315, -0.055696599185466766, -0.045984502881765366, 0.04824717715382576, -0.03548917546868324, 0.07108278572559357, -0.04219017177820206, -0.009981874376535416, -0.027778679504990578, -0.036655325442552567, 0.06770617514848709, 0.06878530234098434, -0.004803831689059734, -0.0013826244976371527, -0.028144188225269318, 0.04560159146785736, 0.010129818692803383, -0.014063390903174877, -0.02361883968114853, 0.02193053625524044, -0.020520715042948723, 0.034444864839315414, -0.03352238982915878, 0.024471692740917206, -0.04431360587477684, 0.004943073261529207, -0.02522011660039425, -0.0504402332007885, -0.029745465144515038, -0.03717748075723648, -0.08660820871591568, 0.03832622244954109, 0.0034157680347561836, -0.013332373462617397, -0.001324969925917685, -0.08340565860271454, -0.02856191247701645, 0.018780196085572243, 0.004877803847193718, 0.02064255252480507, 0.03923129290342331, 0.029919516295194626, 0.020259637385606766, 0.004323013126850128, -0.015064189210534096, 0.013697882182896137, 0.03763001412153244, -0.04751615971326828, 0.008981077000498772, -0.030546102672815323, 0.00624846201390028, -0.02064255252480507, -0.01690913923084736, -0.020764388144016266, -0.02358402870595455, -0.013167023658752441, -0.00815868191421032, 0.011374290101230145, -0.041319914162158966, -0.033766064792871475, 0.033174287527799606, -0.03148598223924637, -0.04863009229302406, 0.009189939126372337, -0.003972733858972788, -0.05997827649116516, -0.046437039971351624, 0.02165205217897892, -0.037421151995658875, -0.03134674206376076, -0.007758362218737602, 0.00808906089514494, 0.05204150825738907, -0.0172137301415205, 0.020520715042948723, -0.02555081434547901, 0.051658596843481064, 0.0019156583584845066, -0.027709057554602623, 0.010582353919744492, 0.02530714124441147, 0.003154690144583583, 0.004238163121044636, 0.019720077514648438, -0.00890275277197361, -0.008193491958081722, 0.0070447493344545364, 0.06102258712053299, 0.05698458105325699, -0.05830737575888634, -0.005343392491340637, 0.06540869176387787, -0.040902189910411835, -0.04560159146785736, -0.024610934779047966, -0.016639359295368195, 0.042329415678977966, -0.021216923370957375, 0.05200669914484024, -0.0021517162676900625, 0.06112701818346977, 0.040623705834150314, -0.012775407172739506, -0.05176302790641785, 0.011922553181648254, 0.05172821506857872, -0.037560392171144485, 0.014280956238508224, 0.022452691569924355, 0.06801947206258774, -0.01982450857758522, 0.004464430268853903, -0.0437566414475441, -0.048456039279699326, -0.04354777932167053, -0.026020754128694534, -0.04601931571960449, -0.038430653512477875, -0.016299957409501076, 0.0031982031650841236, -0.04748135060071945, -0.06332007050514221, -0.06655743718147278, 0.040310412645339966, -0.030232809484004974, -0.010225547477602959, -0.024784985929727554, 0.0312771201133728, -0.032251812517642975, -0.010225547477602959, 0.027447979897260666, 0.025289736688137054, 0.006822833325713873, -0.033209096640348434, -0.015490616671741009, -0.03251288831233978, -0.04807312786579132, -0.0004783706972375512, 0.032025545835494995, 0.02609037607908249, 0.013750097714364529, 0.026943229138851166, 0.025985945016145706, 0.025098279118537903, -0.004364350810647011, 0.07999423891305923, -0.02979768067598343, -0.01949380896985531, 0.07846258580684662, 0.0007282982696779072, 0.017840316519141197, 0.007009939290583134, 0.05639280751347542, 0.001119371154345572, 0.0122010363265872, -0.015064189210534096, -0.0019580835942178965, 0.029884707182645798, -0.06826314330101013, 0.011852932162582874, -0.013123511336743832, 0.025237521156668663, 0.005587065126746893, 0.01361955888569355, -0.026386262848973274, 0.03571544215083122, -0.04219017177820206, -0.045845262706279755, 0.03085939586162567, 0.01862354949116707, 0.030319835990667343, 0.002001596614718437, -0.027134686708450317, -0.03964901715517044, 0.013245346955955029, 0.0023692811373621225, -0.015090296976268291, 0.011356884613633156, 0.006705348379909992, -0.01789253205060959, -0.0210602767765522, -0.05479152873158455, 0.00708391098305583, 0.02151281200349331, -0.006513891275972128, 0.03235624358057976, 0.02614259161055088, -0.007928063161671162, -0.04152877628803253, -0.047725021839141846, -0.010129818692803383, 0.038883186876773834, 0.0802031010389328, -0.03797811642289162, 0.04358258843421936, -0.04796869680285454, -0.04393069073557854, 0.05792446434497833, 0.016708979383111, 0.005486985202878714, -0.015273051336407661, -0.03968382626771927, 0.03153819963335991, -0.03867432475090027, -0.0004557983484119177, 0.032112568616867065, -0.034131571650505066, 0.03336574509739876, 0.00022205211280379444, -0.014193929731845856, -0.026699557900428772, 0.001621945877559483, 0.018484309315681458, 0.011713691055774689, -0.09106393903493881, 0.0069533721543848515, 0.002401915844529867, 0.02682139351963997, 0.014019878581166267, 0.02664734236896038, 0.027204306796193123, -0.02381029538810253, 0.022191613912582397, 0.050475042313337326, 0.03627241030335426, -0.030789775773882866, -0.0027848300524055958, 0.023566624149680138, 0.06460805237293243, -0.0007424399955198169, -0.011548341251909733, 0.03153819963335991, -0.014716085977852345, 0.014864029362797737, 0.022400476038455963, 0.02412358857691288, 0.011478721164166927, 0.006801076699048281, -0.021460596472024918, 0.023740675300359726, -0.05507001280784607, -0.04622817784547806, -0.004838642198592424, -0.06335487961769104, -0.0021767362486571074, 0.0007647403981536627, 0.036237601190805435, -0.04929149150848389, -0.022365665063261986, 0.019894128665328026, -0.0006080937455408275, 0.01774458773434162, -0.031155284494161606, -0.011113211512565613, -0.0471680574119091, -0.029675843194127083, 0.008332733064889908, 0.012618760578334332, 0.007710497826337814, -0.0012999499449506402, 0.05782003328204155, -0.0022866064682602882, -0.02998913824558258, -0.041772447526454926, 0.020572930574417114, -0.05639280751347542, 0.02925811894237995, 0.023235924541950226, 0.005800278391689062, 0.033940114080905914, 0.040171172469854355, 0.03735153004527092, -0.0009431435610167682, -0.02577708289027214, 0.06314601749181747, 0.0027717759367078543, -0.04086738079786301, -0.02920590341091156, 0.026612531393766403, -0.011887743137776852, 0.05475671961903572, -0.06439919024705887, -0.03933572396636009, 0.03954458609223366, 0.018936842679977417, 0.02114730142056942, -0.06102258712053299, -0.010373491793870926, -0.023357762023806572, 0.0923171117901802, -0.07143088430166245, -0.04782945290207863, -0.013497722335159779, 0.009068102575838566, 0.03954458609223366, 0.005369500257074833, 0.004183772020041943, 0.07021252810955048, -0.03249548375606537, 0.005621875636279583, 0.0360635481774807, -0.01206179428845644, -0.000983936944976449, 0.00031465315259993076, -0.011435207910835743, 0.054408613592386246, 0.004769021179527044, -0.010756406001746655, 0.006692294497042894, 0.0019276244565844536, -0.011426505632698536, -0.005247663706541061, -0.025481194257736206, -0.032025545835494995, -0.038569893687963486, 0.03221699967980385, -0.0116962855681777, -0.05656685680150986, -0.060221947729587555, -0.03251288831233978, 0.02939736098051071, 0.03453189134597778, -0.035315126180648804, -0.05190226808190346, 0.028875205665826797, -0.005839440505951643, -0.026577720418572426, 0.05782003328204155, 0.09127280116081238, 0.012253251858055592, -0.0017949099419638515, -0.06739288568496704, -0.016221635043621063, 0.00991225428879261, 0.014211335219442844, 0.013341075740754604, -0.022992251440882683, 0.0471680574119091, 0.02165205217897892, -0.01536007784307003, 0.02842267043888569, -0.005304230842739344, -0.024506503716111183, 0.007340637501329184, -0.018205825239419937, 0.017701074481010437, -0.06596565991640091, -0.026334047317504883, -0.02494163252413273, -0.010103710927069187, 0.03950977325439453, -0.07832334190607071, -0.03400973603129387, 0.025742271915078163, 0.01158315222710371, 0.06499096751213074, -0.02417580410838127, 0.025968538597226143, -0.011156724765896797, -0.013845826499164104, 0.00653564790263772, 0.00878961943089962, 0.004340418614447117, -0.008176086470484734, -0.035819876939058304, 0.0540953204035759, -0.007636525668203831, 0.02128654345870018, 0.020085586234927177, -0.01034738402813673, -0.02454131469130516, 0.04215536266565323, 0.057437118142843246, 0.04681995511054993, -0.01016462966799736, 0.01600406877696514, 0.030372051522135735, -0.030911611393094063, -0.037838876247406006, 0.027447979897260666, 0.08521579951047897, -0.046715524047613144, -0.017283350229263306, 0.013663072139024734, 0.020485905930399895, -0.0071230726316571236, 0.05973460152745247, -0.012601355090737343, 0.01973748207092285, -0.04588007181882858, -0.006274569779634476, 0.03263472765684128, 0.023183709010481834, 0.023497002199292183, -0.0074233124032616615, 0.009355287998914719, 0.11014002561569214, 0.011095806956291199, 0.03940534219145775, -0.012549139559268951, -0.035593606531620026, -0.01895424909889698, -0.055139631032943726, 0.009668581187725067, 0.04633260890841484, -0.013837123289704323, -0.001464211381971836, 0.060221947729587555, -0.014698680490255356, -0.0025716163218021393, 0.026299238204956055, 0.09844373911619186, -0.04333891719579697, 0.019163111224770546, 0.004122853744775057, 0.03662051260471344, -0.023723270744085312, -0.008767862804234028, -0.033766064792871475, -0.015142512507736683, 0.030615724623203278, -0.032930612564086914, 0.03103344887495041, -0.05507001280784607, 0.004061935469508171 ]
40,065
s3path.old_versions
__getattr__
null
def __getattr__(self, item): if item in vars(stat_result): raise UnsupportedOperation(f'{type(self).__name__} do not support {item} attribute') return super().__getattribute__(item)
(self, item)
[ 0.09579895436763763, -0.06608004868030548, 0.019173486158251762, 0.024634504690766335, 0.04920053482055664, -0.055945493280887604, 0.06224535033106804, -0.011872153729200363, 0.03769644349813461, 0.015432944521307945, 0.03382750600576401, 0.058034032583236694, 0.06433389335870743, -0.009295716881752014, -0.03882630914449692, 0.07580374926328659, -0.03192727640271187, 0.06156058609485626, 0.006680761463940144, 0.04629027470946312, -0.008384120650589466, 0.05591125413775444, -0.016006436198949814, 0.0031435100827366114, 0.04591365158557892, 0.09648372232913971, 0.0319443978369236, -0.012514123693108559, 0.07950148731470108, -0.04276372119784355, -0.05002225562930107, -0.013096175156533718, -0.007887664251029491, 0.022220700979232788, -0.028571918606758118, 0.03447803482413292, -0.04909781739115715, 0.06837402284145355, -0.07915910333395004, -0.00047051007277332246, -0.029393639415502548, -0.021826960146427155, 0.011281542479991913, -0.02704831026494503, 0.028571918606758118, -0.04108604043722153, 0.010245831683278084, 0.03187591955065727, 0.0058761597611010075, -0.07689937204122543, 0.05745198205113411, 0.044989213347435, 0.01650289259850979, 0.03447803482413292, -0.06563495099544525, 0.043345771729946136, -0.008884856477379799, 0.07956996560096741, -0.0076693943701684475, 0.057417742908000946, -0.014542746357619762, 0.027065429836511612, 0.01877974532544613, -0.046153318136930466, 0.022991063073277473, -0.07539288699626923, -0.03810730203986168, 0.019652822986245155, -0.045160405337810516, 0.05728079006075859, 0.0394083596765995, 0.02841784432530403, -0.028828704729676247, 0.0067492383532226086, 0.02947923354804516, -0.006385455373674631, -0.03302290663123131, -0.05262437090277672, 0.05101516842842102, -0.011966309510171413, 0.011889273300766945, 0.03394734114408493, -0.00576488533988595, -0.02023487538099289, -0.07847433537244797, -0.05964323505759239, -0.022991063073277473, -0.09600438177585602, -0.0638887956738472, 0.03714862838387489, -0.07306467741727829, 0.03084876947104931, -0.030609101057052612, 0.02677440270781517, -0.012128941714763641, 0.007352689281105995, 0.03069469705224037, -0.028006983920931816, -0.009852089919149876, -0.02876022830605507, 0.012017667293548584, 0.0045023453421890736, 0.037525251507759094, -0.026979833841323853, 0.04591365158557892, 0.00018122261099051684, -0.0022447530645877123, -0.04598212614655495, 0.03132810443639755, 0.02314513735473156, -0.009518265724182129, 0.025250796228647232, -0.0441332571208477, 0.01053685788065195, 0.01117026712745428, -0.010331427678465843, -0.04776252433657646, -0.05101516842842102, 0.0016744701424613595, 0.02713390626013279, 0.00970657728612423, 0.014311637729406357, 0.02559318020939827, 0.003370339283719659, 0.017632760107517242, 0.007125860080122948, -0.025028247386217117, -0.0018478018464520574, 0.0481049045920372, 0.04512616991996765, -0.047694046050310135, -0.019122127443552017, -0.02114219218492508, 0.04495497792959213, 0.0048746876418590546, 0.01860855333507061, 0.03048926591873169, 0.04793371632695198, 0.0022040950134396553, 0.054678671061992645, 0.02032047137618065, -0.014619782567024231, 0.012822268530726433, -0.0023346287198364735, 0.0010137766366824508, 0.007570959161967039, 0.017273256555199623, 0.0579313188791275, 0.0005740276537835598, -0.051699936389923096, -0.005752045661211014, 0.00035736296558752656, -0.011555449105799198, -0.03379327058792114, 0.013301605358719826, 0.040058888494968414, -0.030626220628619194, 0.003916013054549694, -0.014996404759585857, -0.0630328357219696, -0.007673674263060093, -0.02415516786277294, -0.05584277585148811, -0.032372377812862396, 0.05752045661211014, 0.017581401392817497, -0.004339713137596846, -0.017521483823657036, 0.004102184437215328, 0.03278323635458946, 0.0006200354546308517, -0.02333344705402851, 0.018950937315821648, 0.054404765367507935, -0.01052829809486866, 0.06676481664180756, -0.019378915429115295, 0.01656281016767025, 0.06036224216222763, -0.038346972316503525, 0.006757797673344612, -0.030249597504734993, -0.0350600890815258, -0.058684561401605606, -0.005114356055855751, 0.013079056516289711, 0.038997501134872437, -0.001816773321479559, -0.01479953434318304, 0.03800458833575249, 0.024086691439151764, -0.030146881937980652, 0.023932619020342827, -0.043790873140096664, -0.028657512739300728, -0.039613790810108185, -0.04372239485383034, -0.013832300901412964, 0.022836990654468536, 0.04683808609843254, -0.023025302216410637, 0.021433217450976372, -0.02975314110517502, 0.10552264750003815, -0.05512377247214317, -0.015723969787359238, 0.009364193305373192, -0.0148851303383708, -0.028708871454000473, -0.014987844973802567, -0.03694319725036621, 0.0282124150544405, 0.016383059322834015, 0.07429725676774979, 0.008401239290833473, 0.02704831026494503, 0.010845002718269825, 0.025387749075889587, 0.011024754494428635, 0.01905365101993084, 0.05389118939638138, -0.02259732224047184, 0.03406717628240585, 0.010031841695308685, 0.035265520215034485, -0.010417023673653603, 0.03302290663123131, -0.024103811010718346, -0.042866434901952744, 0.021809840574860573, 0.019447391852736473, -0.0049560037441551685, 0.04341425001621246, 0.021553052589297295, -0.07272229343652725, 0.02396685816347599, 0.04303762689232826, 0.031362343579530716, -0.04591365158557892, -0.0018873900407925248, 0.005413942039012909, 0.025302153080701828, 0.000977933406829834, 0.0571780726313591, -0.005520936567336321, -0.06354641169309616, -0.01298490073531866, 0.0595405213534832, -0.04365392029285431, -0.015124798752367496, 0.06741534918546677, 0.05067278444766998, -0.04218166694045067, -0.022836990654468536, -0.0018627812387421727, -0.07600917667150497, -0.11319204419851303, -0.027664601802825928, 0.03844968602061272, -0.02196391299366951, -0.016408737748861313, -0.03957955166697502, 0.025353511795401573, 0.028982779011130333, -0.030814530327916145, -0.0034345362801104784, 0.018077857792377472, 0.046324510127305984, -0.03259492665529251, 0.043516963720321655, -0.0544390045106411, -0.022922586649656296, -0.014962166547775269, -0.005251309834420681, -0.03211558982729912, 0.04759133234620094, -0.015253192745149136, 0.00153216696344316, -0.031533535569906235, -0.03466634824872017, 0.034529395401477814, 0.003156349528580904, -0.018831102177500725, 0.0343068428337574, -0.021296264603734016, -0.014337316155433655, 0.06601157039403915, 0.05382271483540535, -0.008195809088647366, 0.014919368550181389, 0.019396035000681877, 0.020354708656668663, 0.0015920840669423342, -0.022100865840911865, 0.042250145226716995, 0.0036057280376553535, -0.022648680955171585, -0.001436941442079842, 0.05211079493165016, 0.020200636237859726, -0.023710070177912712, -0.010827884078025818, -0.07237990945577621, 0.002946639433503151, -0.046701133251190186, 0.0262265894562006, 0.09059472382068634, -0.0009859580313786864, -0.06505289673805237, 0.02460026741027832, 0.05464443564414978, 0.06080733984708786, -0.01592940092086792, -0.010879240930080414, 0.03745677322149277, 0.001249700435437262, -0.005135755054652691, 0.034991610795259476, -0.010100318118929863, 0.06460779905319214, -0.06135515496134758, 0.0005114356172271073, -0.015099120326340199, 0.017418770119547844, 0.020628616213798523, 0.007733591366559267, -0.002341048326343298, -0.004215599037706852, -0.009175882674753666, 0.03612147644162178, -0.03370767459273338, -0.016905194148421288, 0.003458075225353241, -0.025456225499510765, -0.03069469705224037, 0.03738829866051674, 0.020303351804614067, 0.028075462207198143, 0.050604306161403656, 0.02732221782207489, -0.0077378712594509125, -0.00010251448838971555, -0.004213459324091673, 0.010802204720675945, -0.015723969787359238, -0.01806073822081089, 0.03259492665529251, 0.054404765367507935, 0.07895367592573166, -0.0464957021176815, -0.03048926591873169, -0.04690656438469887, -0.004493785556405783, 0.02858903631567955, 0.028349367901682854, -0.04673537239432335, -0.019378915429115295, -0.0007147259311750531, 0.021433217450976372, 0.024086691439151764, 0.025986921042203903, -0.016742561012506485, 0.017821069806814194, 0.009629541076719761, -0.04053822532296181, -0.06255349516868591, -0.01312185451388359, -0.03256068751215935, 0.05882151424884796, -0.06621700525283813, -0.031704727560281754, -0.013181771151721478, -0.04622179642319679, -0.049063581973314285, 0.037525251507759094, 0.032714761793613434, 0.016759680584073067, -0.012822268530726433, -0.04690656438469887, 0.0021602269262075424, 0.0260382778942585, -0.0024844214785844088, -0.009826411493122578, 0.03495737165212631, 0.03701167553663254, 0.002805406227707863, -0.027818674221634865, -0.02067997306585312, 0.013772383332252502, 0.0097579350695014, -0.05608244612812996, -0.02386414259672165, -0.04149690270423889, 0.04916629567742348, -0.03971650451421738, -0.037970349192619324, 0.00008358976629097015, -0.08018625527620316, -0.010845002718269825, -0.015082000754773617, 0.0011202365858480334, 0.006025952752679586, -0.047420140355825424, 0.016802478581666946, -0.006038791965693235, -0.009860649704933167, -0.00524275004863739, 0.04663265496492386, -0.054781388491392136, -0.07087342441082001, 0.0007136559579521418, -0.007528161164373159, -0.051597218960523605, -0.022015269845724106, -0.03339952602982521, 0.011290101334452629, -0.005936076864600182, 0.029273804277181625, -0.013498476706445217, 0.03800458833575249, 0.015013524331152439, -0.003517992328852415, -0.012514123693108559, 0.006355497054755688, -0.05779436603188515, -0.014448591507971287, 0.033450886607170105, -0.007224295753985643, 0.011623925529420376, 0.03413565084338188, -0.0021848357282578945, 0.01705070771276951, -0.009038928896188736, -0.04211319237947464, 0.05399390682578087, -0.06844249367713928, -0.08504810184240341, -0.05464443564414978, -0.05053583160042763, 0.04471530765295029, -0.007104461081326008, 0.02013215981423855, 0.028931420296430588, 0.04618755728006363, -0.002311089774593711, -0.06316978484392166, -0.05043311417102814, 0.05248741805553436, 0.026568973436951637, -0.09182730317115784, 0.0017279676394537091, 0.039237167686223984, 0.05597973242402077, 0.019498750567436218, 0.015338788740336895, -0.04320881888270378, -0.04598212614655495, -0.03992193564772606, 0.053137946873903275, -0.019259082153439522, -0.03913445398211479, 0.017632760107517242, -0.09360769391059875, -0.0611497238278389, -0.038792070001363754, 0.04046975076198578, 0.039065975695848465, -0.00655664736405015, -0.017504366114735603, 0.016126271337270737, 0.022836990654468536, -0.024446194991469383, 0.009766493923962116, -0.06450508534908295, 0.009321395307779312, 0.022443249821662903, -0.03048926591873169, 0.020919643342494965, -0.012265895493328571, -0.042524050921201706, -0.0029616188257932663, -0.00526414904743433, 0.021125072613358498, -0.03405005484819412, -0.013729585334658623, -0.015467182733118534, -0.016956551000475883, 0.04683808609843254, 0.04314034432172775, -0.01062245387583971, 0.014251720160245895, 0.07511898130178452, 0.003864655736833811, 0.031995754688978195, 0.01797514222562313, 0.016040675342082977, 0.011418495327234268, -0.02333344705402851, 0.033450886607170105, 0.006244222167879343, 0.033433765172958374, -0.05337761342525482, 0.0159721989184618, -0.007665114477276802, 0.01859143376350403, 0.011512651108205318, 0.0347348228096962, 0.032372377812862396, 0.04029855877161026, -0.052145034074783325, -0.032166946679353714, 0.01225733570754528, 0.049679871648550034, 0.02114219218492508, 0.026723045855760574, -0.036806244403123856, -0.021364741027355194, 0.0210737157613039, 0.019378915429115295, 0.018094977363944054, 0.054336290806531906, -0.012548361904919147, -0.029273804277181625, -0.04519464448094368, -0.03992193564772606, -0.001790024689398706, -0.028828704729676247, -0.0002079713303828612, -0.01960146613419056, 0.013609751127660275, -0.006672201678156853, -0.018009381368756294, -0.015937959775328636, 0.02704831026494503, 0.036703530699014664, 0.07505050301551819, -0.03584757074713707, 0.025558941066265106, -0.057588934898376465, -0.013370082713663578, 0.06878487765789032, -0.023829903453588486, -0.0033617797307670116, -0.027459170669317245, -0.0016819598386064172, -0.04427020996809006, -0.06669633835554123, 0.014962166547775269, 0.05888999253511429, -0.026192350313067436, -0.021724244579672813, 0.00866230670362711, -0.07813195139169693, -0.026568973436951637, 0.053788475692272186, 0.018950937315821648, 0.01407196931540966, -0.007459684275090694, 0.0016605608398094773, 0.031636252999305725, 0.009347074665129185, -0.03769644349813461, 0.03132810443639755, 0.01297634094953537, -0.025713013485074043, -0.010417023673653603, -0.00006352821947075427, 0.04563974216580391, -0.00866230670362711, -0.05707535892724991, 0.031105557456612587, -0.010588214732706547, -0.024206526577472687, -0.010648132301867008, 0.001159824663773179, 0.00021091369853820652, 0.01306193694472313, -0.005062998738139868, 0.008127332665026188, -0.0036228473763912916, -0.03745677322149277, -0.011666723527014256, -0.021107953041791916, -0.048413053154945374, -0.04029855877161026, -0.029564829543232918, -0.00967233907431364, 0.00701458565890789, 0.005756325554102659, 0.004251977428793907, -0.055055294185876846, -0.05697264522314072, 0.014277399517595768, -0.009115965105593204, 0.04991953819990158, 0.021364741027355194, 0.002390265930444002, -0.029239565134048462, -0.043893586844205856, 0.007472523488104343, 0.03321121633052826, -0.006081589963287115, 0.03677200525999069, 0.02567877620458603, 0.025456225499510765, 0.0067492383532226086, -0.05710959807038307, 0.0173674114048481, -0.07963844388723373, 0.004258397035300732, -0.015287430956959724, 0.025285033509135246, 0.02124490775167942, 0.07998082786798477, 0.04355120286345482, -0.017803950235247612, -0.019926730543375015, 0.05039887875318527, 0.017718356102705002, -0.014534186571836472, -0.040709417313337326, 0.032612044364213943, -0.038894783705472946, 0.014713938347995281, -0.04519464448094368, -0.029736021533608437, 0.05728079006075859, -0.003507292829453945, 0.00015220024215523154, -0.03086588904261589, -0.01859143376350403, -0.004523744340986013, 0.07101037353277206, -0.022391892969608307, -0.0532064214348793, 0.007095901761204004, 0.04471530765295029, 0.021672885864973068, -0.0066336835734546185, -0.01061389409005642, 0.033262573182582855, 0.0005847270949743688, -0.03310850262641907, -0.0061543467454612255, -0.03050638549029827, -0.0004961888189427555, -0.07018865644931793, -0.01411476731300354, 0.04793371632695198, 0.008315643295645714, -0.04019584506750107, -0.010742288082838058, -0.03601876273751259, -0.007570959161967039, 0.05697264522314072, -0.047146230936050415, -0.018283288925886154, 0.009235799312591553, 0.02514808066189289, 0.0034345362801104784, -0.09258054941892624, -0.0022875508293509483, -0.008337042294442654, 0.026380661875009537, 0.030900126323103905, -0.02441195584833622, -0.05142602697014809, -0.038723595440387726, -0.005901838652789593, -0.04793371632695198, 0.0653952807188034, 0.07320162653923035, -0.021467456594109535, 0.007789228577166796, -0.057760126888751984, 0.023829903453588486, 0.005195672158151865, -0.03406717628240585, 0.04858424514532089, 0.005520936567336321, 0.017521483823657036, -0.0026085355784744024, -0.040709417313337326, 0.06241654232144356, -0.00893621426075697, -0.017401650547981262, 0.010083199478685856, -0.019943848252296448, -0.019567226991057396, -0.09162186831235886, -0.043516963720321655, -0.058787278831005096, -0.021262025460600853, 0.04765980690717697, -0.0230595413595438, -0.04303762689232826, -0.015176156535744667, -0.004694936331361532, 0.0315164178609848, 0.039545316249132156, 0.035539425909519196, -0.025370629504323006, 0.013541274704039097, 0.006637963466346264, 0.006483891047537327, -0.009261478669941425, -0.01225733570754528, -0.017838189378380775, 0.04221590608358383, -0.03595028445124626, 0.01157256867736578, 0.008319923654198647, -0.009509706869721413, -0.02215222455561161, 0.04238709807395935, 0.025370629504323006, -0.015664052218198776, -0.0033510802313685417, 0.0005681429174728692, 0.009834971278905869, -0.004575101658701897, -0.009766493923962116, 0.03338240832090378, 0.08737631142139435, -0.03536823391914368, 0.0009025019826367497, 0.011469853110611439, -0.0031520696356892586, 0.020115040242671967, 0.05262437090277672, 0.017444448545575142, 0.013190330937504768, -0.040812134742736816, 0.001260399934835732, 0.04019584506750107, -0.008687986060976982, -0.002968038432300091, 0.01869414933025837, 0.010271510109305382, 0.09566199779510498, -0.011957749724388123, 0.047865238040685654, -0.008700825273990631, -0.010767966508865356, -0.027818674221634865, 0.007536720484495163, -0.02470298297703266, 0.04909781739115715, 0.005546615459024906, -0.01677680015563965, 0.055774301290512085, -0.006526688579469919, -0.005850480869412422, 0.09134796261787415, 0.14407505095005035, -0.027287978678941727, 0.018728386610746384, 0.0277844350785017, 0.06830554455518723, -0.024942651391029358, -0.04211319237947464, 0.017478685826063156, -0.03831273317337036, 0.03428972512483597, -0.0686136856675148, 0.026380661875009537, -0.02687711827456951, 0.0009105266071856022 ]
40,067
namedtuple_BaseStatResult
__new__
Create new instance of BaseStatResult(size, last_modified, version_id)
from builtins import function
(_cls, size, last_modified, version_id=None)
[ 0.01007635798305273, -0.03448714688420296, 0.019421366974711418, 0.011571559123694897, 0.012441052123904228, 0.061400774866342545, -0.0008344483794644475, 0.005732960067689419, -0.012424799613654613, -0.024833347648382187, -0.015220176428556442, 0.036729950457811356, 0.006781226489692926, 0.005570438224822283, -0.0685192346572876, -0.0002444176934659481, 0.03546227887272835, 0.09068722277879715, -0.028067532926797867, -0.002330157672986388, -0.06640645116567612, 0.018771279603242874, 0.036827463656663895, -0.014821997843682766, 0.02995278686285019, 0.10017850250005722, 0.037932612001895905, -0.0449860617518425, 0.010864589363336563, -0.052787113934755325, -0.010677688755095005, -0.042288199067115784, 0.004040700849145651, -0.002974150935187936, -0.0010345535119995475, -0.0493091456592083, 0.023126866668462753, 0.04046795517206192, -0.061205748468637466, -0.07215972244739532, 0.03507222607731819, 0.011376533657312393, -0.01122213713824749, 0.0031041684560477734, -0.008735552430152893, -0.006858424283564091, -0.023273136466741562, -0.0340970940887928, 0.017714887857437134, 0.010303888469934464, 0.006244904361665249, -0.036957480013370514, 0.06715404987335205, -0.014115027152001858, -0.015447706915438175, 0.07482508569955826, 0.010393275879323483, 0.019681401550769806, -0.03968784958124161, 0.04979671165347099, -0.03315446898341179, 0.023841964080929756, -0.026377305388450623, -0.041995659470558167, 0.028035027906298637, 0.035884834825992584, -0.04362087696790695, -0.0172110702842474, -0.0573052242398262, 0.02995278686285019, -0.06110823526978493, 0.014001262374222279, 0.0058182841166853905, -0.030277831479907036, 0.0558750294148922, -0.017877409234642982, -0.09328757226467133, -0.017373591661453247, 0.009206865914165974, -0.021940456703305244, 0.015212049707770348, -0.036827463656663895, -0.01281485240906477, 0.033642034977674484, -0.0276124719530344, -0.04053296148777008, -0.038062628358602524, 0.0017989142797887325, -0.012701086699962616, 0.00914185680449009, -0.05424981191754341, -0.01643909141421318, -0.04813898727297783, 0.027092400938272476, 0.003542977385222912, -0.006582137197256088, 0.018771279603242874, -0.023061858490109444, 0.033772051334381104, -0.04787895083427429, 0.06188834086060524, 0.019421366974711418, 0.007000631187111139, -0.05470487102866173, 0.04053296148777008, 0.04781394451856613, 0.004676567856222391, 0.015382697805762291, -0.02358192764222622, 0.007057513576000929, -0.046513769775629044, 0.01007635798305273, 0.01698353886604309, -0.01447257585823536, -0.004473415203392506, -0.03287818282842636, 0.025304660201072693, 0.004225569311529398, 0.022037969902157784, 0.012676708400249481, 0.01716231368482113, 0.043133314698934555, 0.0029010160360485315, -0.01016574539244175, 0.10251881927251816, 0.05476988106966019, 0.022899335250258446, 0.014017513953149319, 0.05093436315655708, -0.0008796498295851052, 0.004404343664646149, 0.028018776327371597, -0.04573366418480873, 0.032553136348724365, -0.04550613462924957, -0.010669562965631485, -0.015902768820524216, 0.04472602903842926, 0.0059808059595525265, 0.03848518803715706, -0.041995659470558167, 0.0012595447478815913, 0.04131306707859039, -0.009149983525276184, -0.03643741086125374, -0.014082523062825203, -0.00321793369948864, 0.029595239087939262, 0.0005444483831524849, 0.01111649814993143, -0.0058629778213799, 0.03187054395675659, 0.03190305083990097, 0.02036399394273758, 0.005253520328551531, 0.05021926760673523, 0.05304715037345886, -0.05262459069490433, 0.016642242670059204, -0.05343720316886902, 0.012546691112220287, 0.07105457782745361, -0.060068096965551376, -0.014537584036588669, 0.01701604388654232, -0.014082523062825203, 0.023988232016563416, -0.03698998689651489, 0.021826691925525665, 0.0040244488045573235, -0.014700106345117092, -0.04261324182152748, 0.018364975228905678, 0.04563615098595619, 0.06335103511810303, 0.037932612001895905, -0.045278601348400116, 0.090297169983387, 0.005290087778121233, 0.029107673093676567, -0.0035043784882873297, 0.001003064913675189, -0.111099973320961, 0.009856953285634518, 0.015789002180099487, 0.05021926760673523, 0.04053296148777008, -0.020607776939868927, 0.0265723317861557, -0.035722315311431885, -0.029318951070308685, 0.011937233619391918, 0.05249457433819771, 0.01328616589307785, -0.006338354200124741, -0.0678691491484642, -0.059190478175878525, 0.0021859195549041033, -0.009531909599900246, 0.001144763664342463, -0.00511131389066577, 0.017763644456863403, 0.022866832092404366, 0.056135065853595734, 0.007415061816573143, 0.004221506416797638, -0.0279375147074461, 0.00638711079955101, -0.06276595592498779, -0.02223299629986286, 0.04628623649477959, -0.05984056368470192, 0.01023075357079506, 0.0733298808336258, -0.0010177934309467673, 0.0076913489028811455, 0.02119285613298416, -0.011092119850218296, 0.00914185680449009, 0.009718810208141804, 0.07072953134775162, 0.028473837301135063, 0.009580666199326515, -0.024264520034193993, 0.09614795446395874, 0.006013310514390469, -0.0106858154758811, 0.01810494065284729, 0.00414227694272995, -0.011636568233370781, 0.05577751621603966, -0.012806725688278675, -0.009410018101334572, -0.02332189306616783, 0.006764974445104599, -0.03317071869969368, 0.03907026723027229, 0.04924413561820984, 0.007736042607575655, 0.007719790562987328, -0.0006312960176728666, 0.04053296148777008, 0.04992672801017761, 0.04602620378136635, 0.024101998656988144, 0.00615551695227623, 0.013676217757165432, 0.040045395493507385, -0.06185583770275116, -0.003055411856621504, 0.01564273238182068, -0.027043644338846207, 0.015333941206336021, -0.029432715848088264, 0.0076872860081493855, 0.007394746411591768, 0.019876427948474884, 0.0025414363481104374, 0.018413731828331947, -0.00449779350310564, -0.008792434819042683, -0.04784644767642021, -0.03323572874069214, 0.0019472155254334211, -0.045473627746105194, -0.03200056403875351, -0.03096042200922966, 0.048626553267240524, 0.014293801039457321, -0.0019329949282109737, 0.04586368054151535, -0.024069493636488914, -0.004384028259664774, 0.0056516993790864944, -0.062375906854867935, 0.0192100889980793, -0.011409037746489048, 0.014106901362538338, 0.046546272933483124, -0.03591734170913696, 0.011855972930788994, 0.01711355708539486, -0.08204105496406555, 0.013659966178238392, -0.08223608136177063, 0.00747194467112422, 0.010628932155668736, -0.05135692283511162, 0.018787531182169914, -0.004197128117084503, 0.03734753280878067, 0.004081331193447113, 0.04176812991499901, 0.008703048340976238, 0.06569135189056396, 0.07450003921985626, -0.022119231522083282, -0.06526879966259003, 0.06276595592498779, 0.0056557622738182545, 0.006728406995534897, -0.03910277038812637, -0.018543750047683716, 0.027222419157624245, -0.024183258414268494, -0.045116081833839417, 0.06058816611766815, -0.008800560608506203, -0.0803508311510086, 0.01799117401242256, -0.03100917860865593, -0.007020946126431227, -0.053794749081134796, -0.04076049476861954, 0.04297079145908356, 0.03126921504735947, -0.023793207481503487, 0.01802367903292179, -0.0234519112855196, 0.050479304045438766, -0.01795867085456848, -0.004558739252388477, 0.07053450495004654, 0.05473737791180611, -0.0203314907848835, -0.0401754155755043, 0.019941437989473343, -0.0449860617518425, 0.05672014504671097, 0.03520224243402481, -0.09257247298955917, 0.01595965027809143, 0.0792456790804863, 0.04069548472762108, -0.0148463761433959, 0.06663397699594498, 0.029237689450383186, 0.014618844725191593, -0.02562970481812954, -0.012327286414802074, -0.013521822169423103, 0.05564749985933304, -0.00241345027461648, 0.008321121335029602, -0.03302444890141487, -0.0012788441963493824, -0.038062628358602524, 0.010474536567926407, 0.10524918138980865, -0.07313485443592072, 0.03187054395675659, -0.030619125813245773, -0.03435713052749634, 0.00026003504171967506, 0.03209807723760605, 0.03604735806584358, -0.009694431908428669, 0.013269913382828236, -0.02679986134171486, -0.011287146247923374, 0.06630893796682358, -0.062278393656015396, -0.011669072322547436, 0.00558669026941061, 0.02228175289928913, -0.005375411827117205, 0.02138788253068924, 0.014115027152001858, 0.01917758397758007, -0.017909914255142212, 0.0009807180613279343, -0.025142138823866844, -0.05945051088929176, -0.04183313623070717, -0.04771643131971359, -0.024134501814842224, 0.02995278686285019, 0.004948792047798634, -0.062408410012722015, 0.051746975630521774, 0.05737023055553436, 0.034519653767347336, -0.002354535972699523, -0.03326823189854622, 0.00587110361084342, 0.003796917852014303, -0.02653982676565647, 0.03219559043645859, -0.0321793369948864, 0.0144888274371624, -0.014716357924044132, -0.011027110740542412, 0.01724357344210148, 0.012489808723330498, 0.008207356557250023, -0.008881822228431702, -0.024768337607383728, -0.05652511864900589, -0.0018537654541432858, 0.04040294513106346, 0.022834327071905136, 0.07085955142974854, 0.00132455350831151, 0.04761891812086105, 0.016414713114500046, -0.00333373062312603, 0.03497471287846565, 0.01696728728711605, 0.017341086640954018, -0.028213802725076675, 0.024752086028456688, -0.05041429400444031, -0.09705808013677597, -0.061465784907341, 0.0014545710291713476, 0.024004485458135605, -0.026328548789024353, -0.04774893447756767, -0.017763644456863403, -0.030294083058834076, 0.02774248830974102, -0.06081569567322731, -0.011920982040464878, 0.04245072230696678, -0.020786551758646965, -0.03295944258570671, 0.0008151489309966564, 0.015220176428556442, -0.026149773970246315, 0.032439373433589935, -0.0472288653254509, 0.011498424224555492, -0.005131629295647144, -0.06159580126404762, 0.035819828510284424, -0.02457331120967865, -0.05476988106966019, -0.0044368477538228035, 0.07866059988737106, 0.016544729471206665, 0.04131306707859039, 0.05863790214061737, 0.020835308358073235, -0.04365338385105133, 0.017276078462600708, 0.0006150437984615564, -0.00557856447994709, 0.08451139181852341, -0.014878880232572556, -0.023159371688961983, -0.008223608136177063, -0.004077268298715353, 0.0003369790210854262, 0.004908161703497171, 0.05447734147310257, 0.0005673030391335487, -0.04709884896874428, 0.027043644338846207, -0.011595937423408031, -0.00425807386636734, -0.035787321627140045, 0.023256884887814522, -0.03864770755171776, -0.02031523734331131, -0.02673485316336155, 0.0938076451420784, -0.010336393490433693, 0.018820036202669144, 0.007508512120693922, 0.015122663229703903, 0.018901297822594643, 0.006549632642418146, -0.03985036909580231, -0.029497725889086723, 0.052689600735902786, 0.07183468341827393, -0.05945051088929176, -0.017536113038659096, 0.04459600895643234, -0.023013101890683174, -0.03216308355331421, -0.058247849345207214, 0.017893660813570023, 0.02338690124452114, -0.034617166966199875, 0.02124161273241043, 0.025857234373688698, -0.016886025667190552, 0.019713906571269035, -0.048659056425094604, 0.011051489040255547, 0.11805590987205505, 0.0340970940887928, -0.023679440841078758, 0.026279792189598083, 0.013269913382828236, -0.009995097294449806, 0.028262559324502945, -0.013619335368275642, -0.01485450193285942, 0.0020000352524220943, 0.034584660083055496, -0.0678691491484642, 0.058247849345207214, 0.03851769119501114, 0.04937415570020676, 0.053827255964279175, -0.026864871382713318, -0.05119439959526062, -0.04563615098595619, -0.00010157618817174807, 0.013846865855157375, -0.01818620041012764, 0.011839720420539379, 0.04284077510237694, -0.027189914137125015, -0.025142138823866844, 0.012132260017096996, -0.07885562628507614, 0.005070683546364307, 0.01069394126534462, -0.05473737791180611, -0.04560364782810211, -0.07853058725595474, -0.009718810208141804, -0.019551385194063187, -0.027384940534830093, 0.03819264844059944, -0.0009979860624298453, 0.04059797152876854, 0.03422711417078972, 0.024069493636488914, -0.0014017514185979962, -0.013066761195659637, -0.019632646813988686, 0.09679804742336273, -0.060165610164403915, -0.022753067314624786, 0.013026130385696888, 0.030294083058834076, -0.02995278686285019, -0.013716848567128181, 0.018673766404390335, 0.04384841024875641, 0.0191288273781538, -0.02150164730846882, -0.07534515112638474, -0.014887006022036076, -0.008930578827857971, 0.009767566807568073, -0.029172681272029877, -0.01916133239865303, -0.01701604388654232, 0.0015398950781673193, 0.02972525544464588, -0.055907536298036575, 0.00414227694272995, -0.026442313566803932, -0.047553908079862595, -0.02143663913011551, -0.016049038618803024, 0.02886389009654522, 0.011189633049070835, 0.02658858336508274, -0.06806417554616928, -0.005156007595360279, 0.008329247124493122, 0.03552728891372681, 0.007833555340766907, -0.061498288065195084, 0.016146551817655563, -0.00483096344396472, 0.061498288065195084, -0.0382576547563076, -0.04020791873335838, 0.07014445215463638, 0.02445954643189907, -0.0645211935043335, 0.041118040680885315, -0.04235320910811424, -0.07248476892709732, -0.025402173399925232, 0.0051722596399486065, -0.03708750009536743, -0.027368688955903053, -0.012392295524477959, -0.01018199697136879, 0.05210452154278755, 0.009328757412731647, -0.06663397699594498, -0.004924413748085499, -0.003459685016423464, 0.007228161673992872, -0.051779478788375854, -0.012229773215949535, -0.040955521166324615, -0.04976420849561691, 0.05353471636772156, -0.016276568174362183, -0.04787895083427429, 0.009694431908428669, 0.014821997843682766, -0.003675026586279273, -0.028213802725076675, 0.042093172669410706, 0.030765395611524582, 0.0034840633161365986, -0.02229800447821617, -0.007264729123562574, -0.014756988734006882, -0.03271565958857536, -0.02985527366399765, -0.02332189306616783, -0.017438599839806557, 0.0656263455748558, 0.05252707749605179, 0.02249303087592125, -0.011417163535952568, -0.004623748362064362, 0.028295062482357025, -0.04355587065219879, 0.013432435691356659, -0.015935271978378296, -0.022021718323230743, 0.07280981540679932, 0.02652357518672943, 0.02546718157827854, 0.005387600976973772, 0.05626508221030235, 0.001747110509313643, -0.04469352215528488, -0.010572049766778946, 0.08834690600633621, -0.06270094960927963, -0.014976393431425095, -0.02444329485297203, 0.006781226489692926, 0.010978354141116142, -0.010011348873376846, 0.01494388934224844, -0.01016574539244175, -0.023029353469610214, -0.02436203323304653, -0.03923278674483299, 0.027482453733682632, 0.013773730956017971, -0.044205956161022186, 0.0036628374364227057, 0.04719636216759682, -0.05470487102866173, 0.007577583659440279, 0.027124905958771706, -0.0042052543722093105, 0.08061086386442184, -0.024784591048955917, -0.02549968659877777, -0.0035023470409214497, -0.05203951522707939, 0.0733298808336258, -0.03819264844059944, -0.0077807363122701645, -0.024849599227309227, -0.02470332942903042, 0.06702402979135513, 0.005123503040522337, -0.04020791873335838, 0.013789983466267586, -0.03230935335159302, -0.004335271660238504, -0.007557268720120192, 0.029578985646367073, -0.0342596173286438, 0.0040244488045573235, -0.05421730503439903, -0.026149773970246315, 0.0182512104511261, 0.027498705312609673, 0.05789030343294144, 0.0009837653487920761, -0.0031427673529833555, -0.043068304657936096, -0.02332189306616783, -0.020656533539295197, -0.05655762180685997, -0.03725001960992813, 0.013464939780533314, -0.041215553879737854, 0.03232560679316521, -0.003939124755561352, -0.0321793369948864, -0.0017999301198869944, 0.0019147112034261227, -0.02673485316336155, -0.025028372183442116, -0.022688057273626328, 0.0380951352417469, -0.011807216331362724, -0.027303678914904594, 0.002228581579402089, -0.017536113038659096, 0.03321947529911995, 0.01499264594167471, 0.005050368141382933, -0.003998038824647665, 0.024752086028456688, -0.039037760347127914, -0.03133422136306763, -0.021972961723804474, -0.04076049476861954, 0.026019757613539696, 0.012457303702831268, -0.030554117634892464, -0.01640658639371395, 0.03089541383087635, 0.042060669511556625, -0.05262459069490433, -0.029562734067440033, 0.07885562628507614, 0.030537866055965424, -0.009873205795884132, 0.02868511527776718, -0.03702249005436897, 0.03747754916548729, 0.01543145440518856, 0.0699494257569313, 0.023793207481503487, -0.06010060012340546, 0.01797492243349552, -0.0448235422372818, 0.015870263800024986, -0.004154466092586517, 0.03386956453323364, -0.04053296148777008, 0.06283096969127655, 0.012701086699962616, -0.02038024738430977, -0.010466410778462887, 0.029530229046940804, -0.020429003983736038, -0.03383706137537956, -0.038777727633714676, -0.06302599608898163, 0.0021595098078250885, -0.015171419829130173, 0.02450830303132534, -0.019405115395784378, 0.021777935326099396, -0.02465457282960415, 0.024849599227309227, 0.07248476892709732, 0.006159580312669277, 0.04872406646609306, 0.022948091849684715, -0.01937261037528515, 0.04592869058251381, -0.016081541776657104, -0.017796147614717484, 0.004180876072496176, -0.03170802444219589, -0.027547461912035942, -0.09952841699123383, 0.031447988003492355, -0.015740245580673218, -0.025402173399925232, 0.05620007589459419, -0.029595239087939262, 0.00321996514685452, 0.016723504289984703 ]
40,070
collections
_replace
Return a new BaseStatResult object replacing specified fields with new values
def namedtuple(typename, field_names, *, rename=False, defaults=None, module=None): """Returns a new subclass of tuple with named fields. >>> Point = namedtuple('Point', ['x', 'y']) >>> Point.__doc__ # docstring for the new class 'Point(x, y)' >>> p = Point(11, y=22) # instantiate with positional args or keywords >>> p[0] + p[1] # indexable like a plain tuple 33 >>> x, y = p # unpack like a regular tuple >>> x, y (11, 22) >>> p.x + p.y # fields also accessible by name 33 >>> d = p._asdict() # convert to a dictionary >>> d['x'] 11 >>> Point(**d) # convert from a dictionary Point(x=11, y=22) >>> p._replace(x=100) # _replace() is like str.replace() but targets named fields Point(x=100, y=22) """ # Validate the field names. At the user's option, either generate an error # message or automatically replace the field name with a valid name. if isinstance(field_names, str): field_names = field_names.replace(',', ' ').split() field_names = list(map(str, field_names)) typename = _sys.intern(str(typename)) if rename: seen = set() for index, name in enumerate(field_names): if (not name.isidentifier() or _iskeyword(name) or name.startswith('_') or name in seen): field_names[index] = f'_{index}' seen.add(name) for name in [typename] + field_names: if type(name) is not str: raise TypeError('Type names and field names must be strings') if not name.isidentifier(): raise ValueError('Type names and field names must be valid ' f'identifiers: {name!r}') if _iskeyword(name): raise ValueError('Type names and field names cannot be a ' f'keyword: {name!r}') seen = set() for name in field_names: if name.startswith('_') and not rename: raise ValueError('Field names cannot start with an underscore: ' f'{name!r}') if name in seen: raise ValueError(f'Encountered duplicate field name: {name!r}') seen.add(name) field_defaults = {} if defaults is not None: defaults = tuple(defaults) if len(defaults) > len(field_names): raise TypeError('Got more default values than field names') field_defaults = dict(reversed(list(zip(reversed(field_names), reversed(defaults))))) # Variables used in the methods and docstrings field_names = tuple(map(_sys.intern, field_names)) num_fields = len(field_names) arg_list = ', '.join(field_names) if num_fields == 1: arg_list += ',' repr_fmt = '(' + ', '.join(f'{name}=%r' for name in field_names) + ')' tuple_new = tuple.__new__ _dict, _tuple, _len, _map, _zip = dict, tuple, len, map, zip # Create all the named tuple methods to be added to the class namespace namespace = { '_tuple_new': tuple_new, '__builtins__': {}, '__name__': f'namedtuple_{typename}', } code = f'lambda _cls, {arg_list}: _tuple_new(_cls, ({arg_list}))' __new__ = eval(code, namespace) __new__.__name__ = '__new__' __new__.__doc__ = f'Create new instance of {typename}({arg_list})' if defaults is not None: __new__.__defaults__ = defaults @classmethod def _make(cls, iterable): result = tuple_new(cls, iterable) if _len(result) != num_fields: raise TypeError(f'Expected {num_fields} arguments, got {len(result)}') return result _make.__func__.__doc__ = (f'Make a new {typename} object from a sequence ' 'or iterable') def _replace(self, /, **kwds): result = self._make(_map(kwds.pop, field_names, self)) if kwds: raise ValueError(f'Got unexpected field names: {list(kwds)!r}') return result _replace.__doc__ = (f'Return a new {typename} object replacing specified ' 'fields with new values') def __repr__(self): 'Return a nicely formatted representation string' return self.__class__.__name__ + repr_fmt % self def _asdict(self): 'Return a new dict which maps field names to their values.' return _dict(_zip(self._fields, self)) def __getnewargs__(self): 'Return self as a plain tuple. Used by copy and pickle.' return _tuple(self) # Modify function metadata to help with introspection and debugging for method in ( __new__, _make.__func__, _replace, __repr__, _asdict, __getnewargs__, ): method.__qualname__ = f'{typename}.{method.__name__}' # Build-up the class namespace dictionary # and use type() to build the result class class_namespace = { '__doc__': f'{typename}({arg_list})', '__slots__': (), '_fields': field_names, '_field_defaults': field_defaults, '__new__': __new__, '_make': _make, '_replace': _replace, '__repr__': __repr__, '_asdict': _asdict, '__getnewargs__': __getnewargs__, '__match_args__': field_names, } for index, name in enumerate(field_names): doc = _sys.intern(f'Alias for field number {index}') class_namespace[name] = _tuplegetter(index, doc) result = type(typename, (tuple,), class_namespace) # For pickling to work, the __module__ variable needs to be set to the frame # where the named tuple is created. Bypass this step in environments where # sys._getframe is not defined (Jython for example) or sys._getframe is not # defined for arguments greater than 0 (IronPython), or where the user has # specified a particular module. if module is None: try: module = _sys._getframe(1).f_globals.get('__name__', '__main__') except (AttributeError, ValueError): pass if module is not None: result.__module__ = module return result
(self, /, **kwds)
[ 0.05422442406415939, 0.0013919216580688953, -0.015399984084069729, -0.03568263724446297, -0.032860167324543, -0.03329280763864517, 0.0027967195492237806, 0.021529074758291245, 0.021014025434851646, -0.04614844545722008, -0.04223407059907913, 0.05710870400071144, 0.004498958587646484, 0.06328929960727692, 0.010836644098162651, 0.03343702107667923, -0.0298110730946064, 0.05636703222990036, -0.06543190777301788, -0.03232451528310776, 0.019025932997465134, 0.01592533476650715, 0.03345762565732002, 0.05978696048259735, 0.031994882971048355, 0.010980858467519283, 0.018809612840414047, 0.01048640999943018, 0.0017988107865676284, -0.00597972609102726, -0.004107520915567875, -0.01582232490181923, -0.030202509835362434, -0.010733634233474731, 0.0028507995884865522, -0.06089947000145912, -0.05006282404065132, 0.058550842106342316, 0.04927994683384895, -0.005050061736255884, 0.06394856423139572, -0.09963119775056839, -0.04952717199921608, -0.0609818771481514, -0.0017627573106437922, 0.02340385504066944, 0.022682785987854004, -0.0114341014996171, -0.024248536676168442, -0.053441550582647324, 0.023589273914694786, 0.0063196588307619095, 0.015801722183823586, -0.004215680994093418, -0.023156631737947464, -0.0009464037138968706, -0.001845165272243321, 0.06184715777635574, -0.006911966018378735, 0.02313602901995182, -0.002206987701356411, 0.057603150606155396, -0.015080653131008148, 0.010481259785592556, -0.05422442406415939, -0.024207333102822304, -0.009281194768846035, -0.0735078826546669, -0.02276519313454628, 0.0012451325310394168, -0.009023669175803661, -0.000875584373716265, 0.01879931055009365, 0.024248536676168442, 0.07635095715522766, 0.04227527230978012, -0.02923421747982502, -0.010846945457160473, 0.04425306245684624, -0.05158736929297447, -0.0165948998183012, -0.01343249436467886, -0.08075977861881256, -0.043511394411325455, -0.03424049913883209, 0.03947340324521065, -0.050474863499403, -0.00045678464812226593, 0.030140703544020653, -0.0017370048444718122, -0.05311191827058792, 0.016038645058870316, -0.0037907653022557497, 0.03333401307463646, -0.051669780164957047, -0.08661074936389923, 0.0038165177684277296, -0.03786644712090492, -0.012896842323243618, 0.035826850682497025, 0.025010809302330017, -0.045777611434459686, -0.0918024480342865, -0.021024325862526894, -0.008699188008904457, -0.019767604768276215, -0.01951007917523384, -0.015163061209022999, 0.0359092615544796, -0.03265414759516716, -0.04322296380996704, -0.05768555775284767, -0.029955286532640457, 0.06089947000145912, -0.003986483905464411, -0.03403447940945625, 0.021096432581543922, -0.025999704375863075, -0.030676355585455894, -0.03106779418885708, 0.027091611176729202, 0.018809612840414047, -0.06127030402421951, 0.0491151325404644, 0.008462265133857727, -0.008992766961455345, 0.061435118317604065, -0.02597910352051258, 0.038937751203775406, -0.003363274037837982, 0.022991815581917763, 0.00298986304551363, -0.042398884892463684, 0.05673786625266075, 0.017872221767902374, 0.03844330459833145, 0.04989800974726677, 0.05031004920601845, -0.06984072923660278, 0.037619225680828094, 0.0420074462890625, -0.01217577327042818, 0.06555552035570145, 0.03545601665973663, -0.0018464529421180487, -0.04623085632920265, 0.01329858135432005, 0.0069583202712237835, -0.037516213953495026, 0.03007889911532402, -0.03302498161792755, -0.035991668701171875, 0.01893322356045246, 0.02239435724914074, -0.04643687605857849, -0.005150496494024992, -0.0111765768378973, -0.06407217681407928, -0.023218438029289246, -0.041512999683618546, 0.01856238953769207, -0.0531943254172802, -0.016172558069229126, -0.015709014609456062, 0.055336933583021164, 0.021323055028915405, 0.04342898353934288, -0.08529222011566162, -0.01361791230738163, -0.03356063365936279, -0.00040173871093429625, 0.041203971952199936, 0.026370540261268616, 0.04417065531015396, -0.034158091992139816, 0.01944827474653721, -0.007117985747754574, 0.024845995008945465, 0.02398071065545082, -0.02042686752974987, 0.03879353776574135, -0.014318379573523998, -0.062011975795030594, 0.008889756165444851, 0.05846843495965004, 0.03180946409702301, -0.0020177068654447794, 0.06230040267109871, 0.052287839353084564, 0.026803182438015938, 0.016141654923558235, -0.04000905528664589, 0.005737653002142906, -0.006597785744816065, 0.008683736436069012, 0.0630008727312088, -0.06353652477264404, 0.04614844545722008, 0.017604395747184753, 0.1104266420006752, -0.027565456926822662, 0.0331897996366024, 0.029213614761829376, -0.01744988188147545, 0.03279836103320122, -0.029481440782546997, 0.0548836886882782, -0.05105172097682953, -0.03158284351229668, -0.03378725424408913, 0.08339683711528778, -0.021426064893603325, 0.007710292935371399, 0.019602788612246513, -0.010816042311489582, -0.07251898944377899, 0.0535239577293396, -0.02987287938594818, 0.006345411296933889, -0.00417447742074728, 0.08817649632692337, 0.02340385504066944, -0.02612331695854664, -0.00585096376016736, 0.0413275808095932, -0.048826705664396286, -0.01616225764155388, -0.029110604897141457, -0.038402099162340164, -0.06394856423139572, 0.06271244585514069, -0.012835036963224411, -0.029090002179145813, -0.019283458590507507, 0.02398071065545082, -0.01629617065191269, 0.009224538691341877, -0.035723842680454254, -0.023197835311293602, -0.02628813311457634, 0.027833281084895134, 0.03568263724446297, -0.03380785882472992, -0.009868350811302662, -0.00973958894610405, -0.0674096941947937, -0.02781268022954464, 0.02818351611495018, -0.019808808341622353, 0.00776694854721427, -0.01666700653731823, 0.014977643266320229, -0.010949955321848392, 0.03277776017785072, 0.004362470470368862, -0.02476358599960804, -0.03560023009777069, -0.013525202870368958, -0.014256573282182217, -0.027750873938202858, 0.004099795129150152, -0.058344822376966476, 0.030799968168139458, 0.045035939663648605, 0.05121653527021408, -0.02770967036485672, 0.004625145811587572, -0.025690674781799316, 0.013185270130634308, 0.01527637243270874, 0.12031559646129608, 0.036259494721889496, -0.015451489016413689, 0.016285868361592293, -0.04536557197570801, -0.03345762565732002, 0.016440384089946747, -0.025196228176355362, 0.022806396707892418, -0.051134128123521805, -0.00887430552393198, -0.0228682029992342, -0.022888805717229843, -0.01135169342160225, 0.022682785987854004, 0.0613115094602108, -0.05529572814702988, 0.030738161876797676, -0.00848286785185337, -0.00015548060764558613, 0.04515955224633217, -0.032860167324543, 0.013442795723676682, -0.03191247582435608, 0.0004175121139269322, 0.02412492409348488, -0.0857042595744133, 0.02049897611141205, 0.02340385504066944, -0.06872822344303131, -0.02496960572898388, 0.018201854079961777, 0.041245173662900925, 0.03889654949307442, 0.051669780164957047, -0.041822031140327454, -0.027421241626143456, -0.004393373150378466, -0.011052965186536312, 0.046725302934646606, -0.0276066605001688, 0.01343249436467886, -0.0215084720402956, 0.00576855568215251, 0.06024020537734032, 0.022435562685132027, 0.0015103830955922604, -0.014689215458929539, 0.01480252668261528, 0.04318176209926605, -0.01480252668261528, -0.06287726014852524, -0.048085033893585205, -0.014359584078192711, -0.008760994300246239, -0.033890265971422195, -0.05068088322877884, -0.007808152586221695, 0.011866743676364422, -0.017913425341248512, -0.03568263724446297, 0.007051029242575169, 0.014205068349838257, 0.05785037577152252, 0.001169806462712586, -0.009713836014270782, 0.010002263821661472, -0.0259172972291708, 0.004406249616295099, -0.020540179684758186, 0.0491151325404644, -0.010445206426084042, -0.04631326347589493, -0.01119717862457037, -0.007117985747754574, -0.01792372763156891, 0.0140608549118042, 0.016986336559057236, 0.12657859921455383, -0.0228682029992342, 0.01170192752033472, -0.08364406228065491, -0.05311191827058792, 0.01409175805747509, 0.04870309308171272, -0.02834833227097988, 0.0022662184201180935, -0.01324707642197609, 0.006685344036668539, -0.009147281758487225, 0.008915509097278118, -0.05414201691746712, 0.0012869802303612232, 0.011361994780600071, 0.020169343799352646, -0.03545601665973663, -0.032262708991765976, -0.014998245052993298, -0.014730419032275677, -0.011361994780600071, 0.016203461214900017, -0.015832625329494476, -0.02954324707388878, -0.03568263724446297, -0.047137342393398285, -0.03211849555373192, 0.027277028188109398, 0.07379630953073502, -0.08727000653743744, -0.06778053194284439, 0.01356640737503767, -0.0663795992732048, 0.027833281084895134, 0.021024325862526894, 0.012216976843774319, -0.00243875989690423, 0.05583138018846512, 0.02902819775044918, 0.014205068349838257, 0.06271244585514069, -0.06695645302534103, 0.018943525850772858, -0.03601226955652237, -0.031521037220954895, 0.03537360951304436, -0.013473697938024998, -0.03937039524316788, -0.03597106784582138, -0.05010402947664261, -0.01246420107781887, 0.007746346294879913, -0.04375861585140228, -0.035249996930360794, 0.044294267892837524, -0.029193013906478882, 0.018129747360944748, 0.09658210724592209, -0.04412945359945297, 0.009420257993042469, -0.008549823425710201, 0.046395670622587204, 0.023630477488040924, -0.06304207444190979, -0.0833144262433052, 0.06431939452886581, 0.022414959967136383, 0.010543066076934338, 0.03347822651267052, 0.03564143553376198, 0.034570131450891495, -0.0025082917418330908, -0.006448421161621809, 0.006000328343361616, 0.02313602901995182, -0.02886338159441948, 0.04425306245684624, -0.04384102299809456, 0.024845995008945465, 0.01361791230738163, 0.005050061736255884, -0.04075072705745697, 0.0012522144243121147, 0.004702403210103512, -0.012639317661523819, 0.05430683121085167, -0.0375986211001873, -0.00789571087807417, -0.03743380680680275, -0.010877848602831364, 0.028883982449769974, 0.00889490731060505, -0.0003228717250749469, 0.010929353535175323, -0.050474863499403, 0.010743935592472553, 0.015204264782369137, -0.04759058728814125, 0.01219637505710125, 0.04211045801639557, 0.01673911325633526, 0.0751972422003746, 0.056655459105968475, 0.08463295549154282, 0.015657508745789528, -0.002065348904579878, -0.03811367228627205, -0.03920557722449303, -0.04837346076965332, 0.01612105406820774, 0.0022404659539461136, 0.01774861104786396, -0.025793684646487236, 0.05006282404065132, 0.03325160592794418, -0.04126577451825142, -0.008426211774349213, 0.03881413862109184, -0.069099061191082, -0.015358779579401016, -0.041142165660858154, 0.06551431119441986, -0.015317576006054878, 0.024887198582291603, -0.019736701622605324, -0.03465253859758377, 0.01616225764155388, 0.00023660092847421765, -0.008596178144216537, -0.01866539940237999, -0.07861717790365219, 0.052658673375844955, -0.02187930792570114, 0.05410081148147583, 0.002276519313454628, -0.002737488830462098, 0.03012010268867016, 0.052823491394519806, 0.030367325991392136, -0.009981662034988403, 0.03044973500072956, -0.061805956065654755, 0.02787448652088642, 0.0518345944583416, -0.008302600122988224, 0.00553163280710578, -0.006463872734457254, -0.02428974024951458, 0.04149239882826805, -0.043552596122026443, -0.033622439950704575, 0.04285212978720665, -0.050392456352710724, 0.02587609365582466, -0.03112960048019886, 0.06654441356658936, -0.039555810391902924, 0.060446225106716156, 0.011022062040865421, -0.01248480286449194, -0.03261294215917587, -0.06378374248743057, -0.019015632569789886, 0.01744988188147545, -0.030223112553358078, 0.0019417371368035674, 0.0060363817028701305, 0.004650898277759552, 0.023795293644070625, -0.065720334649086, -0.052864693105220795, 0.037516213953495026, 0.0298110730946064, -0.032839562743902206, 0.015286672860383987, -0.02991408295929432, 0.028780972585082054, 0.02544345147907734, -0.0082974499091506, 0.03990604355931282, 0.024413352832198143, 0.00297698681242764, -0.050474863499403, -0.0235480684787035, -0.05484248325228691, 0.03852571174502373, 0.03702176734805107, -0.0046611991710960865, 0.01792372763156891, 0.04052410647273064, 0.020200246945023537, 0.04816744104027748, 0.05451285094022751, -0.05546054244041443, -0.026370540261268616, -0.011104470118880272, 0.00035248708445578814, -0.024536963552236557, 0.010058918967843056, -0.015235167928040028, -0.03028491884469986, -0.0064381202682852745, -0.01768680475652218, 0.0015554499113932252, -0.010373099707067013, -0.046560484915971756, -0.01609015092253685, -0.0359092615544796, 0.004885245580226183, 0.017192356288433075, 0.030161306262016296, 0.004995981231331825, 0.006633839104324579, 0.02445455640554428, -0.009760190732777119, -0.001051345025189221, 0.031994882971048355, 0.03980303555727005, 0.017728008329868317, -0.0073394570499658585, -0.01829456351697445, 0.030676355585455894, 0.008271696977317333, 0.046972524374723434, 0.017666202038526535, 0.01388573832809925, 0.029481440782546997, -0.03689815476536751, 0.0038551464676856995, -0.01482312846928835, -0.057397130876779556, 0.02764786407351494, 0.04289333149790764, -0.011557714082300663, -0.06176475062966347, -0.011495907790958881, -0.02628813311457634, -0.02045777067542076, 0.008251095190644264, 0.027318231761455536, 0.008513770066201687, -0.023589273914694786, 0.042398884892463684, -0.0047101289965212345, -0.00037341099232435226, -0.01934526488184929, 0.022105930373072624, -0.0365891270339489, 0.006469023413956165, 0.010316443629562855, 0.0010024153161793947, -0.04800262674689293, 0.03813427314162254, -0.03347822651267052, -0.002582973800599575, 0.004182203207165003, -0.03652732074260712, -0.015523595735430717, 0.00632480951026082, 0.050557270646095276, 0.014205068349838257, 0.06147632375359535, -0.04853827878832817, 0.03965882211923599, 0.00821504183113575, -0.02154967561364174, -0.018243057653307915, -0.014524399302899837, -0.015121856704354286, 0.01238179299980402, -0.04804382845759392, -0.06794534623622894, 0.024227933958172798, 0.012917445041239262, 0.009373903274536133, -0.009100927039980888, -0.05669666454195976, -0.011207479983568192, -0.03718658164143562, 0.05125774070620537, -0.04495353251695633, -0.0306557547301054, -0.028101107105612755, 0.023280242457985878, -0.06703885644674301, -0.03632130101323128, 0.012402394786477089, 0.02086981013417244, -0.014781923964619637, 0.01417416613548994, 0.06225920096039772, 0.01167102437466383, -0.032262708991765976, -0.006499926093965769, 0.014359584078192711, -0.010764537379145622, -0.023280242457985878, 0.05179338902235031, -0.09600525349378586, 0.0443766750395298, 0.01548239216208458, -0.020066333934664726, 0.05389479175209999, 0.015266071073710918, -0.03174765780568123, -0.02554646134376526, 0.007081932388246059, -0.0782463401556015, -0.010527614504098892, 0.027853883802890778, 0.012443599291145802, 0.012165471911430359, -0.04985680431127548, 0.035311803221702576, -0.0274418443441391, 0.005804609507322311, 0.05031004920601845, -0.024310342967510223, 0.05616101250052452, 0.05327673256397247, 0.018850816413760185, -0.023568671196699142, -0.003875748487189412, 0.05451285094022751, -0.003690330544486642, -0.026638366281986237, -0.028636759147047997, 0.025381645187735558, 0.048785500228405, -0.03232451528310776, -0.0016404330963268876, 0.06118789687752724, 0.013401591219007969, -0.04491232708096504, -0.026226326823234558, -0.007442466914653778, -0.00913183018565178, 0.021055229008197784, 0.0053771180100739, 0.03059394843876362, -0.08751723170280457, 0.03939099609851837, 0.01981911063194275, 0.017398376017808914, 0.01981911063194275, -0.06168234348297119, -0.02412492409348488, 0.027277028188109398, -0.03180946409702301, 0.04800262674689293, -0.020375363528728485, 0.020622586831450462, 0.005245780572295189, -0.0024284590035676956, 0.03976183012127876, 0.0037341099232435226, 0.052287839353084564, -0.0013352661626413465, 0.02255917340517044, 0.038772936910390854, -0.006788353901356459, -0.008678586222231388, 0.04417065531015396, 0.012000656686723232, -0.009167883545160294, 0.050969310104846954, -0.05430683121085167, 0.026576559990644455, 0.07029397040605545, -0.015575100667774677, 0.03413749113678932, 0.028945788741111755, -0.0177898146212101, 0.0863635241985321, -0.002482539275661111, 0.005075814202427864, 0.00006743930862285197, -0.029996490105986595, -0.02544345147907734, -0.03753681853413582, 0.017872221767902374, 0.04412945359945297, 0.04487112537026405, -0.0460660383105278, 0.023197835311293602, 0.03244812786579132, -0.031891871243715286, 0.025999704375863075, 0.018706602975726128, -0.006159993354231119, 0.07387872040271759, -0.05805639550089836, 0.06250642240047455, -0.0012238867348060012, 0.04594242572784424, -0.04969199001789093, -0.018892019987106323, 0.05892167612910271, 0.02435154654085636, -0.00768969114869833, 0.02655595913529396, 0.0129586486145854, 0.03801066428422928, -0.019602788612246513, -0.019561585038900375, 0.03271595388650894, -0.06555552035570145, 0.03945280238986015, -0.0118564423173666, -0.02834833227097988, -0.05274108052253723, -0.031005987897515297, -0.0023177233524620533, 0.018067941069602966, 0.01934526488184929, -0.0017794964369386435, 0.03675394132733345, 0.005624341778457165, 0.03271595388650894 ]
40,071
s3path.old_versions
VersionedS3Path
S3Path subclass for AWS S3 service Keys with Versions. >> from s3path import VersionedS3Path >> VersionedS3Path('/<bucket>/<key>', version_id='<version_id>') << VersionedS3Path('/<bucket>/<key>', version_id='<version_id>')
class VersionedS3Path(PureVersionedS3Path, S3Path): """ S3Path subclass for AWS S3 service Keys with Versions. >> from s3path import VersionedS3Path >> VersionedS3Path('/<bucket>/<key>', version_id='<version_id>') << VersionedS3Path('/<bucket>/<key>', version_id='<version_id>') """ _accessor = _versioned_s3_accessor def _init(self, template=None): super()._init(template) if template is None: self._accessor = _versioned_s3_accessor
(*args, version_id: 'str')
[ -0.018592003732919693, -0.06684724986553192, -0.07254258543252945, 0.021613091230392456, 0.007160249166190624, -0.03767687454819679, -0.016839591786265373, 0.07265211641788483, 0.04213092476129532, 0.029973560944199562, 0.048848506063222885, 0.01850985921919346, 0.020755138248205185, 0.012248635292053223, -0.03125135973095894, 0.017177296802401543, 0.06615358591079712, 0.017067769542336464, 0.0066126203164458275, 0.026979856193065643, 0.0029435057658702135, 0.009314256720244884, 0.03314980864524841, 0.02604888565838337, 0.013179604895412922, 0.05472639203071594, 0.015351866371929646, 0.016529269516468048, 0.04775324836373329, -0.11003691703081131, -0.0447230339050293, -0.00010389263479737565, 0.018765419721603394, 0.08477296680212021, 0.03008308634161949, -0.03880864009261131, 0.02208770252764225, 0.0001759828592184931, -0.016100293025374413, 0.05585815757513046, 0.04026898741722107, 0.07429499924182892, -0.0180169939994812, -0.09127149730920792, 0.06582500785589218, 0.07528073340654373, -0.008570393547415733, 0.03300377354025841, -0.017405474558472633, -0.01603640243411064, 0.05947250872850418, 0.026870328933000565, 0.016465378925204277, -0.04979772865772247, -0.021594837307929993, 0.033387113362550735, 0.08177926391363144, 0.07239655405282974, -0.033843472599983215, 0.042678553611040115, 0.018473351374268532, -0.011290284804999828, 0.038078468292951584, 0.009464854374527931, -0.03121485374867916, -0.028586233034729958, -0.024168692529201508, -0.05228031426668167, -0.03366092965006828, 0.06476625800132751, -0.014475659467279911, -0.018272554501891136, 0.005312001332640648, 0.004397004377096891, -0.016666175797581673, 0.037184007465839386, -0.02938942238688469, 0.030265629291534424, 0.03698321059346199, -0.02084640972316265, -0.034847456961870193, -0.10142088681459427, -0.006233843509107828, -0.04191187396645546, 0.005786613095551729, 0.02876877598464489, 0.007402118761092424, -0.08732856810092926, 0.0018881791038438678, 0.10266218334436417, -0.08061099052429199, 0.06925681233406067, -0.07265211641788483, -0.01296968013048172, 0.04078010469675064, -0.030229121446609497, 0.015360993333160877, -0.07988081872463226, -0.0312696173787117, 0.018592003732919693, 0.01296968013048172, -0.0268520750105381, -0.006786035839468241, -0.0047369906678795815, -0.010514476336538792, -0.047716740518808365, -0.020882919430732727, -0.017140787094831467, 0.0010422064224258065, -0.042788080871105194, 0.025793325155973434, 0.06418211758136749, -0.013973666355013847, 0.032875992357730865, -0.014137955382466316, -0.023036926984786987, 0.038078468292951584, -0.022963909432291985, 0.007356483023613691, -0.038078468292951584, 0.037074483931064606, 0.010906944051384926, -0.024661559611558914, 0.0934620127081871, 0.031908515840768814, -0.009410091675817966, 0.00881226360797882, 0.002993705216795206, -0.007351919077336788, -0.012732374481856823, 0.0049925511702895164, 0.04961518570780754, -0.06418211758136749, -0.06399957835674286, 0.02310994453728199, -0.006758654490113258, 0.022909145802259445, 0.04275156930088997, -0.02502664551138878, 0.10098278522491455, 0.019897187128663063, -0.010404950939118862, 0.01209347415715456, -0.021448802202939987, -0.0018585158977657557, 0.023456774652004242, 0.020809901878237724, 0.023018673062324524, -0.0018619386246427894, 0.018655894324183464, 0.01543401088565588, 0.029133861884474754, 0.09755098074674606, 0.049359627068042755, -0.018336445093154907, -0.07593788951635361, -0.03154342994093895, -0.056953415274620056, 0.0277465358376503, -0.02055434137582779, 0.027655264362692833, -0.03722051903605461, 0.0032994647044688463, -0.051221564412117004, 0.003043904434889555, 0.003335973247885704, -0.018135646358132362, -0.039502304047346115, -0.03778640180826187, 0.015479646623134613, 0.018838437274098396, 0.01568044349551201, -0.039611831307411194, 0.023365503177046776, 0.03804196044802666, 0.027819553390145302, -0.00010104040120495483, 0.05319302901625633, 0.0436277762055397, -0.06403608620166779, 0.04121821001172066, -0.02446076273918152, 0.0016862410120666027, 0.047607213258743286, 0.014594312757253647, 0.04921359196305275, 0.0009845913155004382, 0.04304363951086998, 0.02310994453728199, 0.04118170216679573, -0.012029583565890789, -0.01053273119032383, 0.01474947389215231, 0.015360993333160877, 0.017679288983345032, -0.014904635958373547, 0.006630874238908291, -0.04695006087422371, -0.014658202417194843, 0.14070414006710052, -0.03607049584388733, 0.008337651379406452, -0.020974190905690193, -0.017998740077018738, 0.03280297666788101, 0.018372952938079834, 0.03844355419278145, -0.025391731411218643, -0.036508601158857346, 0.04943264275789261, -0.03201804310083389, 0.024533778429031372, -0.027217160910367966, 0.01435700710862875, -0.02792907878756523, -0.027783043682575226, -0.02316470630466938, 0.018135646358132362, 0.012960553169250488, -0.001665704883635044, 0.10660511255264282, 0.01976940594613552, 0.002658282406628132, 0.042897604405879974, 0.0013029006076976657, -0.02378535270690918, 0.06841711699962616, -0.03639907389879227, -0.07042508572340012, -0.02798384241759777, 0.012330779805779457, 0.005416963715106249, 0.08367770910263062, 0.010377569124102592, 0.014147082343697548, -0.016465378925204277, 0.005280056037008762, -0.0028773341327905655, 0.005549306981265545, 0.009875576011836529, -0.007753513753414154, -0.007621170021593571, 0.02701636403799057, 0.02135753072798252, -0.027089381590485573, -0.013298257254064083, -0.035486359149217606, 0.03165295720100403, 0.018491605296730995, -0.014439151622354984, 0.00861146580427885, 0.03272996097803116, -0.04161980375647545, 0.009957720525562763, 0.03680066764354706, -0.028896557167172432, -0.009049569256603718, -0.024679813534021378, -0.014393515884876251, -0.013745487667620182, -0.07119177281856537, -0.02130276896059513, -0.01733245700597763, -0.016118546947836876, -0.011180758476257324, -0.02949894778430462, 0.04497859627008438, -0.0038219939451664686, -0.04067058116197586, 0.09236675500869751, 0.05158665031194687, 0.0071921939961612225, -0.07422198355197906, 0.03183550015091896, -0.007625733967870474, -0.03596097230911255, -0.04249601066112518, -0.035595886409282684, -0.04508811980485916, -0.007954311557114124, -0.008296579122543335, -0.005220729857683182, 0.00008685053762746975, 0.034007761627435684, 0.017350712791085243, -0.0012778009986504912, -0.008730119094252586, -0.010021611116826534, 0.003940647002309561, 0.016301089897751808, -0.007114613428711891, 0.0287140142172575, -0.040122952312231064, -0.022635331377387047, 0.017998740077018738, -0.00934620201587677, -0.06878220289945602, -0.01189267635345459, 0.05651531368494034, -0.0052846199832856655, -0.029882289469242096, 0.008004510775208473, 0.02520918846130371, 0.031798992305994034, 0.012148236855864525, -0.004673101007938385, 0.010715274140238762, 0.006096936296671629, 0.020481323823332787, 0.03267519548535347, -0.020809901878237724, 0.03884515166282654, -0.0970398560166359, -0.020408308133482933, 0.007228702772408724, 0.039611831307411194, -0.040305495262145996, -0.012075219303369522, -0.012276017107069492, 0.06275828182697296, -0.10076373815536499, 0.05421527102589607, -0.03800545260310173, -0.0020958217792212963, -0.002991423476487398, -0.06330591440200806, -0.004513375461101532, 0.014685584232211113, -0.027271924540400505, 0.04136424511671066, -0.04070708900690079, 0.03539508581161499, 0.0480453185737133, 0.033624421805143356, -0.04026898741722107, -0.02634095400571823, 0.031342633068561554, -0.03070373274385929, 0.015826478600502014, 0.04300713166594505, 0.08995719254016876, -0.029864035546779633, -0.022379770874977112, 0.003027932019904256, -0.08484598249197006, -0.0005687355296686292, 0.029644982889294624, -0.013307384215295315, 0.00624297047033906, -0.03030213713645935, -0.026322700083255768, -0.028020350262522697, 0.016784828156232834, 0.032310109585523605, 0.03238312900066376, -0.039283253252506256, 0.019970204681158066, -0.03946579620242119, -0.0004463746736291796, -0.013791123405098915, 0.04183885455131531, -0.023694081231951714, -0.01586298644542694, -0.009966847486793995, 0.018336445093154907, 0.0094557274132967, 0.03382521867752075, -0.045453205704689026, -0.01851898804306984, -0.020262273028492928, -0.05980108678340912, -0.04738816246390343, -0.006608056370168924, -0.026760803535580635, 0.04088963195681572, -0.009875576011836529, -0.019057489931583405, -0.0041551352478563786, 0.003970310091972351, -0.004326269030570984, 0.009314256720244884, 0.01699475385248661, 0.04110868275165558, 0.030028322711586952, 0.007680496666580439, 0.029316404834389687, 0.07871253788471222, 0.00047946060658432543, 0.04768023267388344, 0.04161980375647545, -0.009528744965791702, 0.014886382035911083, 0.020262273028492928, -0.05103902146220207, -0.034847456961870193, -0.02696160040795803, 0.019641626626253128, -0.0009908662177622318, 0.031287871301174164, -0.01665704883635044, 0.03539508581161499, -0.018099138513207436, -0.0017489901510998607, 0.015160196460783482, 0.012650229968130589, -0.050783462822437286, 0.04446747526526451, 0.03035690076649189, -0.02621317468583584, -0.07166638225317001, -0.014566930942237377, -0.07644900679588318, -0.03488396853208542, -0.0019030107650905848, 0.05691690742969513, -0.02628619223833084, 0.03670939803123474, -0.0164288692176342, -0.036672890186309814, 0.03572366386651993, 0.005102077033370733, 0.014694711193442345, 0.004974296782165766, 0.018610259518027306, 0.03630780428647995, -0.03119659796357155, -0.040816616266965866, -0.005197911988943815, 0.02723541483283043, 0.03517603501677513, 0.06319638341665268, -0.004974296782165766, -0.03942928835749626, -0.013407783582806587, 0.011938312090933323, -0.011527590453624725, 0.018199536949396133, -0.0033724820241332054, -0.003454626305028796, 0.030904529616236687, -0.019513847306370735, 0.016720939427614212, -0.029462439939379692, 0.00431942380964756, 0.05629625916481018, -0.02265358529984951, -0.014758601784706116, 0.035924460738897324, 0.08637934923171997, -0.048446912318468094, -0.018473351374268532, 0.020718630403280258, -0.0028157257474958897, -0.008223562501370907, -0.054288286715745926, -0.053594622761011124, 0.01738722063601017, -0.03742131590843201, -0.005257238168269396, -0.028805285692214966, -0.0042623789049685, 0.03205455094575882, 0.028385436162352562, -0.029079100117087364, -0.04738816246390343, -0.035358577966690063, 0.00019266843446530402, -0.028184639289975166, -0.013380401767790318, -0.04870247095823288, 0.04413889721035957, -0.01835469901561737, -0.05271841958165169, 0.019185269251465797, -0.008912662044167519, -0.0041939252987504005, 0.007274338509887457, -0.02004322223365307, -0.07476961612701416, -0.03844355419278145, -0.06922030448913574, -0.01537924725562334, -0.03309504687786102, 0.03997691720724106, 0.01175576914101839, -0.023018673062324524, -0.02825765684247017, 0.03891816735267639, 0.06542341411113739, -0.03192676976323128, 0.020262273028492928, 0.034573644399642944, -0.05432479828596115, 0.05837725102901459, 0.018254300579428673, 0.018153902143239975, -0.024369491264224052, 0.021430548280477524, -0.01314309611916542, -0.01359032653272152, 0.015653062611818314, -0.04136424511671066, 0.01682133786380291, 0.040232475847005844, 0.03294901177287102, 0.02152181975543499, -0.042276959866285324, -0.024880610406398773, 0.023182960227131844, -0.06662819534540176, 0.00045464615686796606, -0.007210448384284973, 0.007963438518345356, 0.05352160707116127, 0.007155685685575008, -0.014192718081176281, -0.09441123902797699, 0.04614686965942383, 0.032036297023296356, 0.012212126515805721, 0.017962230369448662, -0.030557697638869286, 0.030101340264081955, -0.060567766427993774, -0.04592781886458397, -0.025409985333681107, -0.014192718081176281, -0.031525176018476486, 0.036672890186309814, 0.051623161882162094, -0.02690683864057064, -0.02559252828359604, -0.03953881189227104, 0.043700795620679855, -0.03691019490361214, 0.11259251832962036, -0.058304235339164734, 0.033496640622615814, -0.0077306958846747875, -0.0441754050552845, 0.0038539390079677105, 0.020244019106030464, 0.001992000499740243, -0.01311571430414915, -0.038480065762996674, 0.04264204576611519, -0.0171499140560627, -0.01158235315233469, 0.010240661911666393, -0.04570876806974411, 0.013289130292832851, 0.017998740077018738, 0.06242970749735832, -0.018765419721603394, 0.04910406842827797, -0.0052754925563931465, -0.03468317165970802, -0.07469659298658371, -0.030959293246269226, 0.005850503221154213, 0.007361046504229307, 0.06754090636968613, 0.017743179574608803, 0.02725367061793804, 0.005051877349615097, 0.014001048170030117, 0.0466579906642437, 0.0037603857927024364, 0.01993369497358799, 0.017542382702231407, -0.022233737632632256, 0.045964326709508896, 0.030429918318986893, 0.02418694831430912, -0.024844102561473846, 0.02599412389099598, 0.010468840599060059, -0.030046578496694565, 0.01626458205282688, -0.031908515840768814, 0.040451530367136, -0.004152853041887283, 0.02394964173436165, -0.021229751408100128, -0.0012869281927123666, -0.004600083455443382, -0.012339906767010689, 0.08783969283103943, -0.01851898804306984, 0.03313155472278595, -0.04636592045426369, -0.03793243691325188, -0.008228125981986523, -0.018947962671518326, 0.009902957826852798, -0.0537041500210762, 0.01850985921919346, -0.0498342402279377, 0.021540073677897453, -0.03030213713645935, -0.012403796426951885, 0.04990725591778755, -0.013489928096532822, 0.050710443407297134, 0.008059273473918438, -0.017140787094831467, 0.0020102548878639936, 0.009286874905228615, -0.04881199821829796, -0.008273761719465256, 0.002317155245691538, 0.044321440160274506, 0.032145820558071136, -0.022288499400019646, 0.015735207125544548, 0.027162399142980576, -0.06644564867019653, 0.031397394835948944, -0.04446747526526451, -0.034847456961870193, -0.04819135367870331, -0.01478598266839981, -0.005353073589503765, 0.04841040447354317, -0.10638605803251266, -0.00688187126070261, 0.047096092253923416, 0.02254405990242958, 0.022562313824892044, -0.06326940655708313, 0.03156168386340141, -0.046694498509168625, 0.04705958440899849, -0.050272341817617416, 0.0390642024576664, 0.002701636403799057, -0.013809378258883953, 0.02316470630466938, 0.028385436162352562, 0.038589589297771454, -0.017825324088335037, -0.043810319155454636, -0.041437260806560516, 0.03722051903605461, -0.04136424511671066, -0.027326686307787895, 0.01453042309731245, -0.02634095400571823, 0.008515630848705769, -0.030265629291534424, 0.01885669119656086, 0.014247480779886246, -0.015068924985826015, -0.02130276896059513, -0.03001006878912449, 0.004191643558442593, 0.022982163354754448, -0.05103902146220207, 0.04746117815375328, -0.02135753072798252, 0.011819658800959587, -0.04384682700037956, -0.02402265928685665, 0.044759541749954224, 0.02163134515285492, -0.025556020438671112, 0.04344523325562477, -0.021667854860424995, -0.006069554947316647, 0.030229121446609497, -0.0011311961570754647, 0.0026035194750875235, -0.052645400166511536, -0.030393408611416817, -0.06786948442459106, -0.08652538061141968, 0.051002513617277145, 0.007132867816835642, 0.015461391769349575, 0.0069913966581225395, -0.032510906457901, 0.008150544948875904, -0.0261584110558033, 0.05319302901625633, 0.0009503645123913884, 0.007593788672238588, 0.008209871128201485, 0.009546998888254166, 0.0048875887878239155, -0.08732856810092926, 0.025336967781186104, -0.03983088210225105, -0.021850397810339928, 0.01509630586951971, -0.026633024215698242, -0.01851898804306984, 0.022471042349934578, -0.0059189568273723125, -0.006808853708207607, -0.048227861523628235, 0.04621988907456398, 0.005636014975607395, -0.007867603562772274, 0.00123558787163347, 0.008296579122543335, -0.01818128302693367, -0.001434103469364345, -0.044759541749954224, 0.03256567195057869, -0.013791123405098915, -0.013371274806559086, 0.0037923308555036783, 0.02276311255991459, -0.07601090520620346, 0.0478992834687233, 0.02617666684091091, 0.024533778429031372, -0.028586233034729958, 0.016620540991425514, 0.01835469901561737, -0.028805285692214966, -0.06940285116434097, 0.0037900491151958704, 0.01158235315233469, -0.013015315867960453, -0.0013770587975159287, 0.012312524951994419, 0.03946579620242119, -0.02356630191206932, 0.03968484699726105, -0.013161350041627884, 0.02509966306388378, -0.028002096340060234, -0.04450398311018944, 0.06783297657966614, -0.02017100155353546, -0.023456774652004242, -0.006676509976387024, 0.022270245477557182, 0.04008644446730614, -0.006233843509107828, -0.006630874238908291, -0.01529710367321968, -0.037348296493291855, 0.029918797314167023, -0.020481323823332787, 0.017286822199821472, 0.06458371132612228, -0.04413889721035957, 0.024059167131781578, 0.023967895656824112, 0.022690095007419586, -0.010304552502930164, -0.028750522062182426, 0.04026898741722107, -0.07104573398828506, -0.03778640180826187, 0.015716951340436935, -0.017013007774949074, -0.03296726569533348, -0.03576017543673515, -0.03377045318484306, 0.034007761627435684, 0.004618337843567133, 0.07747124880552292, 0.028275910764932632, 0.005754668265581131, 0.009186476469039917 ]
40,090
s3path.old_versions
_init
null
def _init(self, template=None): super()._init(template) if template is None: self._accessor = _versioned_s3_accessor
(self, template=None)
[ -0.005996983498334885, -0.04780341684818268, -0.009984912350773811, -0.008182799443602562, 0.022901492193341255, 0.022453119978308678, 0.031386081129312515, 0.08712223917245865, 0.028333697468042374, 0.050390180200338364, 0.041733141988515854, 0.0721534937620163, -0.014192717149853706, -0.04569951444864273, -0.05573616176843643, 0.05332184582948685, 0.02397068776190281, 0.029885757714509964, 0.0019034278811886907, -0.03221384435892105, -0.015701662749052048, -0.03935331851243973, -0.016676010563969612, 0.04259539395570755, 0.03724941611289978, -0.0016943310620263219, -0.014261697418987751, 0.0033024365548044443, 0.06539341807365417, -0.054942887276411057, -0.014218584634363651, 0.03580082580447197, 0.025143355131149292, 0.09360639750957489, 0.040663942694664, -0.06004743650555611, 0.041422728449106216, -0.0255227480083704, -0.043457649648189545, 0.04525114223361015, 0.06942877173423767, 0.0338003933429718, 0.001962707843631506, -0.07153267413377762, 0.024522531777620316, 0.09008839726448059, 0.017762452363967896, 0.013813324272632599, 0.013132142834365368, -0.015632683411240578, 0.0340590700507164, 0.06653159111738205, -0.01859021745622158, -0.021349433809518814, -0.0658072978258133, 0.01841776631772518, 0.08691529929637909, 0.07353310286998749, -0.019814619794487953, 0.045320119708776474, -0.0036624278873205185, 0.0169864222407341, -0.00005217316356720403, -0.05214918032288551, -0.021280452609062195, -0.021280452609062195, -0.0077344272285699844, -0.014192717149853706, 0.01884889416396618, 0.05663290619850159, 0.0038111668545752764, 0.013270104303956032, 0.0015078684082254767, -0.014201339334249496, 0.024091403931379318, 0.007449883036315441, -0.021004531532526016, -0.001500323647633195, -0.014253074303269386, -0.030144434422254562, -0.019383491948246956, -0.03254150226712227, -0.020918305963277817, 0.01516706496477127, 0.0006051951786503196, -0.0065488265827298164, -0.00920888315886259, -0.05332184582948685, 0.03290364891290665, 0.04394051432609558, -0.05804700404405594, 0.048389747738838196, -0.03542143478989601, -0.033438246697187424, 0.02866135537624359, 0.012744128704071045, 0.007225696463137865, -0.10829922556877136, 0.010398794896900654, 0.05414961278438568, 0.02531580626964569, -0.041836611926555634, 0.041526198387145996, 0.0029747795779258013, 0.0015865491004660726, -0.0404914915561676, -0.004026730544865131, -0.0036128482315689325, 0.024229364469647408, -0.02553999237716198, 0.04580298438668251, 0.057150259613990784, 0.004595818929374218, 0.0404914915561676, -0.03238629549741745, -0.041836611926555634, 0.0369734913110733, 0.00760939996689558, 0.024867434054613113, -0.05994396656751633, 0.009062299504876137, -0.02224617823958397, -0.05242510139942169, 0.051907747983932495, 0.030040962621569633, -0.011123089119791985, 0.011812892742455006, -0.009976290166378021, 0.02015952207148075, -0.0480448454618454, 0.028126757591962814, 0.015141197480261326, -0.05152835696935654, -0.05228714272379875, -0.005721061956137419, -0.03700798377394676, 0.0410088449716568, 0.01345117762684822, -0.07436086982488632, 0.06080622225999832, 0.0049364096485078335, 0.0022289291955530643, 0.010088383220136166, -0.006014228332787752, -0.019193796440958977, 0.043181728571653366, 0.0006396854296326637, 0.055218808352947235, -0.003328304272145033, -0.024332834407687187, 0.003233456052839756, 0.017391683533787727, 0.043147239834070206, 0.022798022255301476, -0.04749300330877304, -0.029230443760752678, -0.01101099606603384, -0.03183445334434509, 0.03433499112725258, -0.0031709426548331976, 0.05252857133746147, 0.05107998475432396, -0.034990306943655014, -0.010769564658403397, 0.0011112310457974672, -0.006962708663195372, -0.019780129194259644, -0.06753180921077728, -0.03504204377532005, 0.005742617882788181, -0.012994182296097279, -0.03290364891290665, -0.058805789798498154, 0.009269241243600845, 0.05449451506137848, 0.06497953087091446, 0.003899548202753067, 0.030178923159837723, 0.006785946432501078, -0.03188619017601013, 0.007725804578512907, -0.036663081496953964, 0.0169864222407341, 0.043388668447732925, -0.019314510747790337, 0.038525551557540894, 0.009364088997244835, 0.030127188190817833, 0.027971550822257996, 0.0470101423561573, 0.05766761302947998, -0.004087088629603386, -0.03904290497303009, -0.013158011250197887, 0.04745851457118988, -0.011985343880951405, 0.026678169146180153, -0.06132357195019722, -0.038215141743421555, 0.11678381264209747, -0.022901492193341255, -0.030903218314051628, -0.0054451399482786655, -0.02900625765323639, 0.026591943576931953, 0.05546024069190025, 0.024867434054613113, 0.014270319603383541, -0.03393835574388504, 0.014296187087893486, -0.04042251408100128, 0.007536108605563641, -0.024091403931379318, 0.021470148116350174, -0.01264065783470869, -0.04062945395708084, -0.01349429041147232, -0.021625354886054993, 0.009329598397016525, 0.006393620744347572, 0.0873291864991188, 0.03274844214320183, -0.04283682629466057, -0.026867864653468132, 0.006859238259494305, 0.034697141498327255, 0.012657903134822845, -0.04252641648054123, -0.06873896718025208, -0.002033843891695142, -0.006406554486602545, 0.0028605309780687094, 0.03762880712747574, 0.014140981249511242, 0.021642599254846573, -0.07153267413377762, 0.029799532145261765, 0.01366674154996872, -0.07408494502305984, -0.007553353440016508, -0.011562839150428772, 0.031403325498104095, 0.028230227530002594, -0.00722138537093997, -0.0373183935880661, 0.0035524903796613216, -0.07442984730005264, 0.046768710017204285, -0.0016512182774022222, -0.019590433686971664, 0.05959906429052353, 0.015089461579918861, -0.043388668447732925, -0.006656608544290066, -0.015641305595636368, -0.05332184582948685, 0.06746283173561096, 0.011209314689040184, 0.005173529963940382, -0.011433500796556473, -0.0577365942299366, -0.060150906443595886, 0.015029104426503181, -0.0025996987242251635, -0.005044191610068083, -0.016106922179460526, 0.01521017774939537, 0.014985991641879082, -0.029402894899249077, 0.052045710384845734, 0.03162751346826553, 0.003211899660527706, -0.003155853133648634, 0.00595818180590868, 0.006527270190417767, -0.07932745665311813, -0.010398794896900654, -0.03724941611289978, -0.03555939346551895, 0.03359345346689224, 0.06835957616567612, -0.016555296257138252, 0.0482172966003418, 0.0575641430914402, -0.0016296618850901723, -0.029523611068725586, -0.004932098556309938, -0.013209746219217777, -0.018141845241189003, -0.030178923159837723, -0.018262559548020363, 0.056805357336997986, -0.014235829934477806, -0.02026299200952053, 0.003877991810441017, -0.04242294281721115, -0.08050012588500977, 0.03614572808146477, 0.01702091284096241, 0.010812677443027496, -0.04107782617211342, -0.03421427682042122, -0.010571246035397053, 0.03236905112862587, 0.0137270987033844, -0.017270967364311218, 0.007993103936314583, 0.007656824309378862, 0.019538696855306625, 0.03412805125117302, 0.016124168410897255, 0.08174177259206772, -0.046872179955244064, 0.027988797053694725, 0.029868511483073235, 0.011476613581180573, 0.0003783143765758723, -0.030954953283071518, 0.008575125597417355, 0.05045916140079498, -0.05583963170647621, -0.007768917363137007, -0.05673637613654137, 0.011286917142570019, 0.019693903625011444, -0.036663081496953964, -0.039767198264598846, -0.009657255373895168, -0.049941807985305786, 0.06556586921215057, -0.058357417583465576, 0.04556155204772949, 0.026764394715428352, 0.0029057993087917566, -0.020970040932297707, -0.020780345425009727, -0.01670187897980213, -0.054942887276411057, -0.027885325253009796, -0.033162325620651245, 0.02046993374824524, 0.01178702525794506, -0.0034403973259031773, 0.007143782451748848, -0.07160165160894394, 0.0029359781183302402, 0.04987282678484917, -0.060461319983005524, 0.0028066399972885847, -0.055218808352947235, -0.07442984730005264, -0.012192285619676113, 0.06901488453149796, 0.055149827152490616, 0.048562198877334595, -0.06456565111875534, 0.0054408288560807705, 0.00948480423539877, -0.010804054327309132, -0.012321623973548412, 0.030178923159837723, -0.004488036967813969, -0.001652296050451696, -0.006829059217125177, 0.04635482653975487, 0.0065488265827298164, 0.0075619760900735855, -0.006040096282958984, -0.04942445456981659, -0.05921966955065727, -0.03918086737394333, -0.08374220132827759, -0.04080190509557724, 0.0014345766976475716, 0.01860746182501316, -0.03780125826597214, -0.04932098463177681, -0.026316022500395775, -0.031265366822481155, -0.027816345915198326, -0.0037464979104697704, 0.03555939346551895, 0.041595179587602615, 0.0031752539798617363, -0.0039749955758452415, -0.006212546955794096, 0.015917226672172546, 0.01673636958003044, 0.05763312056660652, -0.00034571034484542906, -0.0017104982398450375, -0.0059409369714558125, 0.019366245716810226, -0.02533305063843727, 0.021021775901317596, -0.00505281426012516, -0.008786378428339958, -0.012381981126964092, 0.07794784754514694, 0.03197241574525833, 0.020056050270795822, -0.02576417848467827, 0.0369734913110733, 0.026040099561214447, 0.003981462214142084, -0.044871747493743896, 0.04932098463177681, 0.03409356251358986, 0.004091399721801281, -0.033438246697187424, -0.02569519728422165, -0.03911188617348671, -0.027833590283989906, -0.03228282555937767, 0.04111231863498688, -0.005238199140876532, 0.0711187869310379, 0.004703600890934467, -0.07753396779298782, 0.04093986749649048, 0.006057341117411852, 0.050321198999881744, 0.028523394837975502, 0.024660492315888405, 0.04062945395708084, -0.011467991396784782, -0.006083208601921797, -0.03762880712747574, 0.020987285301089287, 0.02740246243774891, -0.018176333978772163, 0.08277647942304611, -0.02195301093161106, 0.027971550822257996, 0.027833590283989906, 0.02705756016075611, -0.005277000367641449, -0.019262775778770447, -0.039629239588975906, 0.04045700281858444, 0.026850620284676552, -0.01848674565553665, -0.016003452241420746, -0.01345117762684822, -0.03742186725139618, 0.03412805125117302, -0.03364519029855728, 0.04204355180263519, 0.041871100664138794, -0.05815047398209572, 0.008070706389844418, 0.032938141375780106, 0.0051261056214571, -0.005410649813711643, -0.04445786774158478, -0.05608106404542923, 0.026626434177160263, -0.01881440356373787, 0.01458073128014803, -0.043457649648189545, -0.08208667486906052, 0.034904081374406815, 0.022953227162361145, -0.05225265026092529, -0.014727314934134483, -0.044906239956617355, -0.007846520282328129, -0.0037745211739093065, -0.02688511088490486, -0.03266221657395363, 0.014701447449624538, -0.02043544314801693, -0.020935550332069397, -0.000617590150795877, -0.006639363244175911, -0.048493221402168274, 0.022780776023864746, -0.017952147871255875, -0.06163398548960686, -0.041871100664138794, -0.026471227407455444, 0.02217719703912735, -0.005557233467698097, 0.027730120345950127, -0.011769779957830906, -0.0170295350253582, -0.04080190509557724, -0.014097868464887142, 0.08298341929912567, -0.05245959386229515, -0.019349001348018646, 0.05994396656751633, -0.02217719703912735, 0.025798669084906578, -0.033024366945028305, 0.018331540748476982, -0.007881010882556438, 0.015736153349280357, 0.03959474712610245, -0.0018904940225183964, 0.002711791777983308, -0.013218368403613567, 0.019590433686971664, 0.046699728816747665, 0.01673636958003044, -0.036628592759370804, -0.03707696497440338, -0.019228285178542137, 0.022918736562132835, -0.055391259491443634, 0.024626001715660095, 0.012476829811930656, 0.017512397840619087, 0.04062945395708084, 0.015779266133904457, -0.0019971979781985283, -0.10326365381479263, 0.016658766195178032, -0.0274541974067688, 0.03236905112862587, 0.02522958070039749, -0.039629239588975906, -0.01890062913298607, -0.0644276887178421, 0.00012091778626199812, -0.04542359337210655, 0.011028241366147995, -0.034817855805158615, 0.036628592759370804, 0.029730550944805145, -0.027954306453466415, -0.04580298438668251, -0.05380471050739288, 0.005565855652093887, -0.07546455413103104, 0.12430267781019211, -0.015408496372401714, -0.005876267794519663, -0.00554861081764102, -0.04801035672426224, -0.00295753451064229, 0.004807071294635534, 0.01673636958003044, -0.03911188617348671, 0.018038373440504074, -0.022901492193341255, -0.062151338905096054, -0.015753397718071938, 0.008838113397359848, -0.021711580455303192, 0.03869800269603729, -0.027574913576245308, -0.00506143644452095, -0.013330461457371712, 0.028178492560982704, 0.026109080761671066, -0.015822378918528557, -0.04918302223086357, 0.028454413637518883, 0.036594100296497345, 0.03873249143362045, 0.02524682506918907, -0.014554863795638084, 0.07311922311782837, 0.026798885315656662, 0.04956241697072983, 0.03918086737394333, -0.006910973694175482, 0.00024964974727481604, 0.0022461742628365755, 0.012278511188924313, -0.03742186725139618, 0.03062729723751545, 0.08146584779024124, 0.0010244667064398527, 0.019228285178542137, 0.01190774142742157, 0.003244234248995781, 0.014149604365229607, -0.0369734913110733, 0.06449667364358902, -0.04211253300309181, 0.06311706453561783, -0.01349429041147232, -0.018279805779457092, -0.013882305473089218, -0.019417982548475266, 0.060116417706012726, 0.0013429621467366815, -0.010183230973780155, -0.036663081496953964, -0.03283466771245003, -0.013114898465573788, -0.012278511188924313, -0.028006041422486305, 0.01718474179506302, 0.02741970866918564, -0.06825610250234604, 0.01676223613321781, -0.06991163641214371, 0.004449235741049051, 0.07291228324174881, -0.04973486810922623, 0.07705110311508179, 0.012830354273319244, -0.03233456239104271, -0.04214702174067497, 0.04035353288054466, 0.007027377840131521, -0.010312569327652454, 0.03604225814342499, 0.0018118132138624787, 0.01453761849552393, -0.011674932204186916, 0.021349433809518814, 0.00089997862232849, -0.03704247251152992, 0.04097435623407364, 0.019262775778770447, -0.04573400318622589, -0.041871100664138794, 0.015701662749052048, -0.0073119220323860645, 0.043078258633613586, -0.09201984852552414, 0.0048372503370046616, 0.05059712007641792, -0.038284119218587875, -0.012097436934709549, 0.014339299872517586, 0.05290796607732773, -0.0848458856344223, 0.04059496521949768, 0.00019912701100111008, 0.034938570111989975, 0.048286277800798416, 0.007247252855449915, 0.030058208853006363, 0.019349001348018646, 0.038422081619501114, 0.020901059731841087, -0.08650141954421997, 0.043285198509693146, 0.048631180077791214, -0.031265366822481155, -0.013270104303956032, 0.013425310142338276, 0.006475534755736589, -0.01282173115760088, 0.029282178729772568, -0.036421649158000946, -0.0051692184060812, -0.034783367067575455, -0.011890496127307415, -0.03549041599035263, -0.023004962131381035, 0.015494721941649914, -0.05821945518255234, 0.050286710262298584, -0.019555943086743355, -0.03066178597509861, -0.006604873109608889, -0.029644325375556946, 0.08160381019115448, 0.05666739493608475, -0.02379823662340641, -0.009062299504876137, -0.031075669452548027, -0.048389747738838196, 0.06963571161031723, -0.0015649928245693445, 0.010890279896557331, -0.026385001838207245, -0.005229576490819454, 0.014209961518645287, -0.04525114223361015, 0.06156500428915024, -0.012494074180722237, 0.03935331851243973, 0.0239361971616745, -0.016658766195178032, 0.03859453275799751, -0.010700584389269352, 0.029264934360980988, -0.01864195242524147, -0.0371459424495697, -0.006669542286545038, 0.00023509919992648065, 0.06328951567411423, -0.03914637491106987, -0.011088598519563675, -0.017710717394948006, -0.024988148361444473, 0.017555510625243187, -0.04449235647916794, -0.024125894531607628, -0.009665878489613533, -0.061909906566143036, 0.01097650546580553, 0.00929510872811079, 0.06115112081170082, 0.01196809858083725, -0.034869592636823654, 0.011511104181408882, -0.01101961825042963, -0.02716103196144104, -0.010097005404531956, -0.04525114223361015, 0.012235398404300213, -0.04973486810922623, 0.040008630603551865, 0.013158011250197887, 0.014727314934134483, -0.058598846197128296, 0.02707480639219284, 0.06149602308869362, 0.012476829811930656, 0.028006041422486305, 0.026350511237978935, -0.02874758094549179, 0.004097866825759411, -0.08015522360801697, -0.0040051741525530815, -0.002642811508849263, 0.05263204500079155, 0.007971547544002533, -0.04035353288054466, 0.025212334468960762, -0.018210824579000473, 0.03412805125117302, 0.025902139022946358, -0.0030868728645145893, -0.0008374651661142707, -0.050010789185762405, 0.05766761302947998, -0.050148747861385345, 0.0075576649978756905, 0.01859021745622158, -0.0018624707590788603, 0.04607890546321869, -0.021746071055531502, -0.024177629500627518, -0.01677948236465454, 0.022504854947328568, 0.006850615609437227, 0.017831433564424515, -0.002100668614730239, -0.0019282177090644836, 0.010502265766263008, 0.06722139567136765, -0.00006379339174600318, 0.014813540503382683, 0.021659845486283302, -0.01712438464164734, 0.010864412412047386, -0.04290580749511719, -0.039836179465055466, 0.029471874237060547, -0.02190127596259117, -0.02386721782386303, -0.026522962376475334, -0.05921966955065727, 0.05290796607732773, 0.012968314811587334, 0.06611771136522293, 0.024867434054613113, 0.02707480639219284, -0.022987717762589455 ]