omlish 0.0.0.dev468__py3-none-any.whl → 0.0.0.dev469__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- omlish/__about__.py +2 -2
 - omlish/asyncs/asyncio/sync.py +43 -0
 - omlish/asyncs/sync.py +25 -0
 - omlish/http/all.py +4 -0
 - omlish/http/clients/asyncs.py +26 -14
 - omlish/http/clients/base.py +17 -1
 - omlish/http/clients/coro/__init__.py +0 -0
 - omlish/http/clients/coro/sync.py +170 -0
 - omlish/http/clients/default.py +118 -25
 - omlish/http/clients/executor.py +50 -0
 - omlish/http/clients/httpx.py +35 -15
 - omlish/http/clients/middleware.py +178 -0
 - omlish/http/clients/sync.py +25 -13
 - omlish/http/clients/urllib.py +4 -2
 - omlish/http/coro/client/connection.py +15 -6
 - omlish/http/coro/io.py +2 -0
 - omlish/http/urls.py +67 -0
 - omlish/io/buffers.py +3 -0
 - omlish/lang/__init__.py +3 -0
 - omlish/lang/functions.py +9 -4
 - omlish/lang/params.py +17 -0
 - omlish/sync.py +26 -24
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/METADATA +1 -1
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/RECORD +28 -21
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/WHEEL +0 -0
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/entry_points.txt +0 -0
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/licenses/LICENSE +0 -0
 - {omlish-0.0.0.dev468.dist-info → omlish-0.0.0.dev469.dist-info}/top_level.txt +0 -0
 
    
        omlish/sync.py
    CHANGED
    
    | 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # ruff: noqa: UP006 UP043 UP045
         
     | 
| 
      
 2 
     | 
    
         
            +
            # @omlish-lite
         
     | 
| 
       1 
3 
     | 
    
         
             
            """
         
     | 
| 
       2 
4 
     | 
    
         
             
            TODO:
         
     | 
| 
       3 
5 
     | 
    
         
             
             - sync (lol) w/ asyncs.anyio
         
     | 
| 
         @@ -8,7 +10,7 @@ import collections 
     | 
|
| 
       8 
10 
     | 
    
         
             
            import threading
         
     | 
| 
       9 
11 
     | 
    
         
             
            import typing as ta
         
     | 
| 
       10 
12 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
            from . import  
     | 
| 
      
 13 
     | 
    
         
            +
            from .lite.maybes import Maybe
         
     | 
| 
       12 
14 
     | 
    
         | 
| 
       13 
15 
     | 
    
         | 
| 
       14 
16 
     | 
    
         
             
            T = ta.TypeVar('T')
         
     | 
| 
         @@ -17,7 +19,7 @@ T = ta.TypeVar('T') 
     | 
|
| 
       17 
19 
     | 
    
         
             
            ##
         
     | 
| 
       18 
20 
     | 
    
         | 
| 
       19 
21 
     | 
    
         | 
| 
       20 
     | 
    
         
            -
            class  
     | 
| 
      
 22 
     | 
    
         
            +
            class SyncOnce:
         
     | 
| 
       21 
23 
     | 
    
         
             
                def __init__(self) -> None:
         
     | 
| 
       22 
24 
     | 
    
         
             
                    super().__init__()
         
     | 
| 
       23 
25 
     | 
    
         | 
| 
         @@ -40,43 +42,43 @@ class Once: 
     | 
|
| 
       40 
42 
     | 
    
         
             
            ##
         
     | 
| 
       41 
43 
     | 
    
         | 
| 
       42 
44 
     | 
    
         | 
| 
       43 
     | 
    
         
            -
            class  
     | 
| 
      
 45 
     | 
    
         
            +
            class SyncLazy(ta.Generic[T]):
         
     | 
| 
       44 
46 
     | 
    
         
             
                def __init__(self) -> None:
         
     | 
| 
       45 
47 
     | 
    
         
             
                    super().__init__()
         
     | 
| 
       46 
48 
     | 
    
         | 
| 
       47 
     | 
    
         
            -
                    self._once =  
     | 
| 
       48 
     | 
    
         
            -
                    self._v:  
     | 
| 
      
 49 
     | 
    
         
            +
                    self._once = SyncOnce()
         
     | 
| 
      
 50 
     | 
    
         
            +
                    self._v: Maybe[T] = Maybe.empty()
         
     | 
| 
       49 
51 
     | 
    
         | 
| 
       50 
     | 
    
         
            -
                def peek(self) ->  
     | 
| 
      
 52 
     | 
    
         
            +
                def peek(self) -> Maybe[T]:
         
     | 
| 
       51 
53 
     | 
    
         
             
                    return self._v
         
     | 
| 
       52 
54 
     | 
    
         | 
| 
       53 
55 
     | 
    
         
             
                def set(self, v: T) -> None:
         
     | 
| 
       54 
     | 
    
         
            -
                    self._v =  
     | 
| 
      
 56 
     | 
    
         
            +
                    self._v = Maybe.just(v)
         
     | 
| 
       55 
57 
     | 
    
         | 
| 
       56 
58 
     | 
    
         
             
                def get(self, fn: ta.Callable[[], T]) -> T:
         
     | 
| 
       57 
59 
     | 
    
         
             
                    def do():
         
     | 
| 
       58 
     | 
    
         
            -
                        self._v =  
     | 
| 
      
 60 
     | 
    
         
            +
                        self._v = Maybe.just(fn())
         
     | 
| 
       59 
61 
     | 
    
         
             
                    self._once.do(do)
         
     | 
| 
       60 
62 
     | 
    
         
             
                    return self._v.must()
         
     | 
| 
       61 
63 
     | 
    
         | 
| 
       62 
64 
     | 
    
         | 
| 
       63 
     | 
    
         
            -
            class  
     | 
| 
      
 65 
     | 
    
         
            +
            class SyncLazyFn(ta.Generic[T]):
         
     | 
| 
       64 
66 
     | 
    
         
             
                def __init__(self, fn: ta.Callable[[], T]) -> None:
         
     | 
| 
       65 
67 
     | 
    
         
             
                    super().__init__()
         
     | 
| 
       66 
68 
     | 
    
         | 
| 
       67 
69 
     | 
    
         
             
                    self._fn = fn
         
     | 
| 
       68 
     | 
    
         
            -
                    self._once =  
     | 
| 
       69 
     | 
    
         
            -
                    self._v:  
     | 
| 
      
 70 
     | 
    
         
            +
                    self._once = SyncOnce()
         
     | 
| 
      
 71 
     | 
    
         
            +
                    self._v: Maybe[T] = Maybe.empty()
         
     | 
| 
       70 
72 
     | 
    
         | 
| 
       71 
     | 
    
         
            -
                def peek(self) ->  
     | 
| 
      
 73 
     | 
    
         
            +
                def peek(self) -> Maybe[T]:
         
     | 
| 
       72 
74 
     | 
    
         
             
                    return self._v
         
     | 
| 
       73 
75 
     | 
    
         | 
| 
       74 
76 
     | 
    
         
             
                def set(self, v: T) -> None:
         
     | 
| 
       75 
     | 
    
         
            -
                    self._v =  
     | 
| 
      
 77 
     | 
    
         
            +
                    self._v = Maybe.just(v)
         
     | 
| 
       76 
78 
     | 
    
         | 
| 
       77 
79 
     | 
    
         
             
                def get(self) -> T:
         
     | 
| 
       78 
80 
     | 
    
         
             
                    def do():
         
     | 
| 
       79 
     | 
    
         
            -
                        self._v =  
     | 
| 
      
 81 
     | 
    
         
            +
                        self._v = Maybe.just(self._fn())
         
     | 
| 
       80 
82 
     | 
    
         
             
                    self._once.do(do)
         
     | 
| 
       81 
83 
     | 
    
         
             
                    return self._v.must()
         
     | 
| 
       82 
84 
     | 
    
         | 
| 
         @@ -89,11 +91,11 @@ class ConditionDeque(ta.Generic[T]): 
     | 
|
| 
       89 
91 
     | 
    
         
             
                        self,
         
     | 
| 
       90 
92 
     | 
    
         
             
                        *,
         
     | 
| 
       91 
93 
     | 
    
         
             
                        cond: ta.Optional['threading.Condition'] = None,
         
     | 
| 
       92 
     | 
    
         
            -
                        deque:  
     | 
| 
      
 94 
     | 
    
         
            +
                        deque: ta.Optional[ta.Deque[T]] = None,
         
     | 
| 
       93 
95 
     | 
    
         | 
| 
       94 
96 
     | 
    
         
             
                        lock: ta.Optional['threading.RLock'] = None,
         
     | 
| 
       95 
     | 
    
         
            -
                        maxlen: int  
     | 
| 
       96 
     | 
    
         
            -
                        init: ta.Iterable[T]  
     | 
| 
      
 97 
     | 
    
         
            +
                        maxlen: ta.Optional[int] = None,
         
     | 
| 
      
 98 
     | 
    
         
            +
                        init: ta.Optional[ta.Iterable[T]] = None,
         
     | 
| 
       97 
99 
     | 
    
         
             
                ) -> None:
         
     | 
| 
       98 
100 
     | 
    
         
             
                    super().__init__()
         
     | 
| 
       99 
101 
     | 
    
         | 
| 
         @@ -112,7 +114,7 @@ class ConditionDeque(ta.Generic[T]): 
     | 
|
| 
       112 
114 
     | 
    
         
             
                    return self._cond
         
     | 
| 
       113 
115 
     | 
    
         | 
| 
       114 
116 
     | 
    
         
             
                @property
         
     | 
| 
       115 
     | 
    
         
            -
                def deque(self) ->  
     | 
| 
      
 117 
     | 
    
         
            +
                def deque(self) -> ta.Deque[T]:
         
     | 
| 
       116 
118 
     | 
    
         
             
                    return self._deque
         
     | 
| 
       117 
119 
     | 
    
         | 
| 
       118 
120 
     | 
    
         
             
                def push(
         
     | 
| 
         @@ -126,9 +128,9 @@ class ConditionDeque(ta.Generic[T]): 
     | 
|
| 
       126 
128 
     | 
    
         | 
| 
       127 
129 
     | 
    
         
             
                def pop(
         
     | 
| 
       128 
130 
     | 
    
         
             
                        self,
         
     | 
| 
       129 
     | 
    
         
            -
                        timeout: float  
     | 
| 
      
 131 
     | 
    
         
            +
                        timeout: ta.Optional[float] = None,
         
     | 
| 
       130 
132 
     | 
    
         
             
                        *,
         
     | 
| 
       131 
     | 
    
         
            -
                        if_empty: ta.Callable[[], None]  
     | 
| 
      
 133 
     | 
    
         
            +
                        if_empty: ta.Optional[ta.Callable[[], None]] = None,
         
     | 
| 
       132 
134 
     | 
    
         
             
                ) -> T:
         
     | 
| 
       133 
135 
     | 
    
         
             
                    with self.cond:
         
     | 
| 
       134 
136 
     | 
    
         
             
                        if not self.deque and if_empty is not None:
         
     | 
| 
         @@ -141,7 +143,7 @@ class ConditionDeque(ta.Generic[T]): 
     | 
|
| 
       141 
143 
     | 
    
         
             
            ##
         
     | 
| 
       142 
144 
     | 
    
         | 
| 
       143 
145 
     | 
    
         | 
| 
       144 
     | 
    
         
            -
            class  
     | 
| 
      
 146 
     | 
    
         
            +
            class SyncBufferRelay(ta.Generic[T]):
         
     | 
| 
       145 
147 
     | 
    
         
             
                def __init__(
         
     | 
| 
       146 
148 
     | 
    
         
             
                        self,
         
     | 
| 
       147 
149 
     | 
    
         
             
                        *,
         
     | 
| 
         @@ -152,7 +154,7 @@ class BufferRelay(ta.Generic[T]): 
     | 
|
| 
       152 
154 
     | 
    
         
             
                    self._wake_fn = wake_fn
         
     | 
| 
       153 
155 
     | 
    
         | 
| 
       154 
156 
     | 
    
         
             
                    self._lock = threading.Lock()
         
     | 
| 
       155 
     | 
    
         
            -
                    self._buffer:  
     | 
| 
      
 157 
     | 
    
         
            +
                    self._buffer: SyncBufferRelay._Buffer = SyncBufferRelay._Buffer()
         
     | 
| 
       156 
158 
     | 
    
         | 
| 
       157 
159 
     | 
    
         
             
                class _Buffer:
         
     | 
| 
       158 
160 
     | 
    
         
             
                    def __init__(self) -> None:
         
     | 
| 
         @@ -173,7 +175,7 @@ class BufferRelay(ta.Generic[T]): 
     | 
|
| 
       173 
175 
     | 
    
         | 
| 
       174 
176 
     | 
    
         
             
                def swap(self) -> ta.Sequence[T]:
         
     | 
| 
       175 
177 
     | 
    
         
             
                    with self._lock:
         
     | 
| 
       176 
     | 
    
         
            -
                        buf, self._buffer = self._buffer,  
     | 
| 
      
 178 
     | 
    
         
            +
                        buf, self._buffer = self._buffer, SyncBufferRelay._Buffer()
         
     | 
| 
       177 
179 
     | 
    
         
             
                    return buf.lst
         
     | 
| 
       178 
180 
     | 
    
         | 
| 
       179 
181 
     | 
    
         | 
| 
         @@ -195,7 +197,7 @@ class CountDownLatch: 
     | 
|
| 
       195 
197 
     | 
    
         | 
| 
       196 
198 
     | 
    
         
             
                def wait(
         
     | 
| 
       197 
199 
     | 
    
         
             
                        self,
         
     | 
| 
       198 
     | 
    
         
            -
                        timeout: float  
     | 
| 
      
 200 
     | 
    
         
            +
                        timeout: ta.Optional[float] = None,
         
     | 
| 
       199 
201 
     | 
    
         
             
                ) -> bool:
         
     | 
| 
       200 
202 
     | 
    
         
             
                    with self._cond:
         
     | 
| 
       201 
203 
     | 
    
         
             
                        return self._cond.wait_for(
         
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            omlish/.omlish-manifests.json,sha256=FLw7xkPiSXuImZgqSP8BwrEib2R1doSzUPLUkc-QUIA,8410
         
     | 
| 
       2 
     | 
    
         
            -
            omlish/__about__.py,sha256= 
     | 
| 
      
 2 
     | 
    
         
            +
            omlish/__about__.py,sha256=wZM9ZuSaoM8SiZeF10mGP-LGOru9blzTxb5CSTZOuRg,3611
         
     | 
| 
       3 
3 
     | 
    
         
             
            omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
         
     | 
| 
       4 
4 
     | 
    
         
             
            omlish/c3.py,sha256=ZNIMl1kwg3qdei4DiUrJPQe5M81S1e76N-GuNSwLBAE,8683
         
     | 
| 
       5 
5 
     | 
    
         
             
            omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
         
     | 
| 
         @@ -9,7 +9,7 @@ omlish/libc.py,sha256=mNY2FWZ2BjSucOx5TEW8IP_B5n84tVZWuVPL3Z3sUH8,15644 
     | 
|
| 
       9 
9 
     | 
    
         
             
            omlish/metadata.py,sha256=lTh3NYVyjHtLTyAGiZxXJMjZrSPQ1E8zXvnJCgKSESA,4179
         
     | 
| 
       10 
10 
     | 
    
         
             
            omlish/runmodule.py,sha256=vQ9VZN_c3sQX9rj036dW9lXuMWTjGOfWnwDcWTSWnn0,705
         
     | 
| 
       11 
11 
     | 
    
         
             
            omlish/shlex.py,sha256=rlbgHWxjwpkCBRphOPqSIN_KD6qWJMLldNJUILulKT0,253
         
     | 
| 
       12 
     | 
    
         
            -
            omlish/sync.py,sha256= 
     | 
| 
      
 12 
     | 
    
         
            +
            omlish/sync.py,sha256=lOOHiz8nNXECAEoq7gmSdOlkKPuXzbAqC25qsMTB3KI,4591
         
     | 
| 
       13 
13 
     | 
    
         
             
            omlish/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       14 
14 
     | 
    
         
             
            omlish/algorithm/all.py,sha256=FudUHwoaRLNNmqYM3jhP2Yd2BpmYhNBRPaVZzARMoSc,194
         
     | 
| 
       15 
15 
     | 
    
         
             
            omlish/algorithm/distribute.py,sha256=juv6JaCynQG6RaxX0fnNNEVJcvZ8hUS2Mv3ND2t9Y3w,1544
         
     | 
| 
         @@ -23,6 +23,7 @@ omlish/asyncs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 
     | 
|
| 
       23 
23 
     | 
    
         
             
            omlish/asyncs/all.py,sha256=zE9zBNepDSczQ-QhnzwFz59IZIex3HuUqfKIgwbJLgY,329
         
     | 
| 
       24 
24 
     | 
    
         
             
            omlish/asyncs/buffers.py,sha256=_Ds4Aa1bUWQwQTGmcYsKLjcJ_d5HgbSkPTFrG9y-eMQ,1424
         
     | 
| 
       25 
25 
     | 
    
         
             
            omlish/asyncs/flavors.py,sha256=1mNxGNRVmjUHzA13K5ht8vdJv4CLEmzYTQ6BZXr1520,4866
         
     | 
| 
      
 26 
     | 
    
         
            +
            omlish/asyncs/sync.py,sha256=8aWOfRXF6URtWRV3ZL5mT4ElSRIEljLNNWUnjjM2Rp4,446
         
     | 
| 
       26 
27 
     | 
    
         
             
            omlish/asyncs/trio.py,sha256=fmZ5b_lKdVV8NQ3euCUutWgnkqTFzSnOjvJSA_jvmrE,367
         
     | 
| 
       27 
28 
     | 
    
         
             
            omlish/asyncs/trio_asyncio.py,sha256=b6H5H32pB79Uz5xvWEmuhXTJgTAeKFHBHzocv_Rpt5A,1332
         
     | 
| 
       28 
29 
     | 
    
         
             
            omlish/asyncs/anyio/__init__.py,sha256=AkwRD3XFWmEzBeHV-eAzwpA4F04bl7xyyapigrxMR8g,1747
         
     | 
| 
         @@ -39,6 +40,7 @@ omlish/asyncs/asyncio/channels.py,sha256=oniTpmw_eeKK70APyEZLhRUChwLwebE4N0_uZiw 
     | 
|
| 
       39 
40 
     | 
    
         
             
            omlish/asyncs/asyncio/sockets.py,sha256=i1a2DZ52IuvRQQQW8FJxEUFboqpKn_K08a_MsMaecqU,1264
         
     | 
| 
       40 
41 
     | 
    
         
             
            omlish/asyncs/asyncio/streams.py,sha256=Laa9BNwajZ7Wt_rJoYMbQtfSX4Q4i-dVHhtYSekCHXM,1015
         
     | 
| 
       41 
42 
     | 
    
         
             
            omlish/asyncs/asyncio/subprocesses.py,sha256=FlnI23o2Rm-T-gXHWuHCaVeMoLKzgStk3CPO0OPIth4,6307
         
     | 
| 
      
 43 
     | 
    
         
            +
            omlish/asyncs/asyncio/sync.py,sha256=d-iALb_3IaMxW1KKbcHVX7eDMDruUfrfaH7zkzUsXhM,980
         
     | 
| 
       42 
44 
     | 
    
         
             
            omlish/asyncs/asyncio/timeouts.py,sha256=lJ4qmDqyxUeAQCXJGiLL8pxYwoR1F1lntZ18HVf40Wo,452
         
     | 
| 
       43 
45 
     | 
    
         
             
            omlish/asyncs/asyncio/utils.py,sha256=dCC4hXqCTKBpU5urAXsKUIIua2M9JXAtumwh7IUEu7E,2443
         
     | 
| 
       44 
46 
     | 
    
         
             
            omlish/asyncs/ioproxy/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
         
     | 
| 
         @@ -302,7 +304,7 @@ omlish/graphs/dot/make.py,sha256=e-M1IEdh4kHEjJmBxpaEUPxvFLrm5uIXdGxjQZr2HRo,365 
     | 
|
| 
       302 
304 
     | 
    
         
             
            omlish/graphs/dot/rendering.py,sha256=SGSpwswdFqsjEnznQDyryIsXE8bzPXSUFAJHlB2uT2Y,3655
         
     | 
| 
       303 
305 
     | 
    
         
             
            omlish/graphs/dot/utils.py,sha256=8cGKIdcM-w1q4ITUYyC0lnYwLqNWuH2OddmmbLxVgEo,806
         
     | 
| 
       304 
306 
     | 
    
         
             
            omlish/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       305 
     | 
    
         
            -
            omlish/http/all.py,sha256= 
     | 
| 
      
 307 
     | 
    
         
            +
            omlish/http/all.py,sha256=vz3ji7BOFkXSPJX5K-p6zziHVhIqTVasYQrVl7fo_ko,1708
         
     | 
| 
       306 
308 
     | 
    
         
             
            omlish/http/asgi.py,sha256=4r2Gw1ojwp2OVpwonof1p4GFRcseIJqPhpkQpLhM9Jw,3243
         
     | 
| 
       307 
309 
     | 
    
         
             
            omlish/http/consts.py,sha256=7BJ4D1MdIvqBcepkgCfBFHolgTwbOlqsOEiee_IjxOA,2289
         
     | 
| 
       308 
310 
     | 
    
         
             
            omlish/http/cookies.py,sha256=uuOYlHR6e2SC3GM41V0aozK10nef9tYg83Scqpn5-HM,6351
         
     | 
| 
         @@ -317,19 +319,24 @@ omlish/http/parsing.py,sha256=9qwTYFmg9b1WESKOK5IzTYZY8RRXQCKtmgNodiAmiSs,14381 
     | 
|
| 
       317 
319 
     | 
    
         
             
            omlish/http/sessions.py,sha256=TfTJ_j-6c9PelG_RmijEwozfaVm3O7YzgtFvp8VzQqM,4799
         
     | 
| 
       318 
320 
     | 
    
         
             
            omlish/http/sse.py,sha256=Z16cSD6L8YIA0JRMS2BYP3oPwUE3L9Vs-tIDuO_Vp98,2320
         
     | 
| 
       319 
321 
     | 
    
         
             
            omlish/http/urllib.py,sha256=LwtMXDkjb9tYnOi6iApizHXpCiyjB1r72ePo_Nzv1vQ,466
         
     | 
| 
      
 322 
     | 
    
         
            +
            omlish/http/urls.py,sha256=dZBeQwf5ogKwsD_uCEei5EG_SbnHk-MzpX2FYLsfTgM,1774
         
     | 
| 
       320 
323 
     | 
    
         
             
            omlish/http/versions.py,sha256=Lwk6FztKH7c5zuc7NFWxPVULuLeeQp5-NFJInY6r-Zo,420
         
     | 
| 
       321 
324 
     | 
    
         
             
            omlish/http/wsgi.py,sha256=1JpfrY2JrQ0wrEVE0oLdQMWZw8Zcx0b4_9f3VmH4JKA,1070
         
     | 
| 
       322 
325 
     | 
    
         
             
            omlish/http/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       323 
     | 
    
         
            -
            omlish/http/clients/asyncs.py,sha256= 
     | 
| 
       324 
     | 
    
         
            -
            omlish/http/clients/base.py,sha256= 
     | 
| 
       325 
     | 
    
         
            -
            omlish/http/clients/default.py,sha256= 
     | 
| 
       326 
     | 
    
         
            -
            omlish/http/clients/ 
     | 
| 
       327 
     | 
    
         
            -
            omlish/http/clients/ 
     | 
| 
       328 
     | 
    
         
            -
            omlish/http/clients/ 
     | 
| 
      
 326 
     | 
    
         
            +
            omlish/http/clients/asyncs.py,sha256=bgqKf1CRfzFC4vKUXaJZvflU-yAeD1d7HirE1Rq5ni4,4335
         
     | 
| 
      
 327 
     | 
    
         
            +
            omlish/http/clients/base.py,sha256=bm3Oy2wuunSO3Rd2dxCmhHoZcQ8X9B5pkzaudbjZKvI,2810
         
     | 
| 
      
 328 
     | 
    
         
            +
            omlish/http/clients/default.py,sha256=fnz-pvPKHc7Kgft4XRwOZ6ZUUtt5D6ljuvOGAA8mgQw,5639
         
     | 
| 
      
 329 
     | 
    
         
            +
            omlish/http/clients/executor.py,sha256=A9LLTR3O_-_hH6HAB3hvf5uBv9SwLL5YOW3YWVb20Js,1580
         
     | 
| 
      
 330 
     | 
    
         
            +
            omlish/http/clients/httpx.py,sha256=8CVA9nNVKSkKcEynu34GxcbfVaz3PBA_UBx3-NFKDrw,4448
         
     | 
| 
      
 331 
     | 
    
         
            +
            omlish/http/clients/middleware.py,sha256=OVCRlcCLtnbftXmgJX8sugi7iIA1mauJD5dpmUcC1wU,5018
         
     | 
| 
      
 332 
     | 
    
         
            +
            omlish/http/clients/sync.py,sha256=a5ZUiTPxeIyVtvBQGYSobezKLA2aIfKr9iK6DzZRpYk,3966
         
     | 
| 
      
 333 
     | 
    
         
            +
            omlish/http/clients/urllib.py,sha256=BwxlDEiJQZA6sogcqTtuog6WEK2OhVNLR70F50lXA9I,2764
         
     | 
| 
      
 334 
     | 
    
         
            +
            omlish/http/clients/coro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
      
 335 
     | 
    
         
            +
            omlish/http/clients/coro/sync.py,sha256=JCWSCsDP7rFBRQSxzB7WmBBwRdAfLFRGI-F_4f0jiPQ,5673
         
     | 
| 
       329 
336 
     | 
    
         
             
            omlish/http/coro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       330 
     | 
    
         
            -
            omlish/http/coro/io.py,sha256= 
     | 
| 
      
 337 
     | 
    
         
            +
            omlish/http/coro/io.py,sha256=d97Oa7KlgMP7BQWdhUbOv3sfA96uWyMtjJF7lJFwZC0,1090
         
     | 
| 
       331 
338 
     | 
    
         
             
            omlish/http/coro/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       332 
     | 
    
         
            -
            omlish/http/coro/client/connection.py,sha256= 
     | 
| 
      
 339 
     | 
    
         
            +
            omlish/http/coro/client/connection.py,sha256=5QQGZIHDGkmB6_LFDVGMcRTnIvd3I-ap_ImrNXEWRn4,31282
         
     | 
| 
       333 
340 
     | 
    
         
             
            omlish/http/coro/client/errors.py,sha256=_jwsO9wfwA22ybvkdKnKS6Kbac_qoGbDmuIJbJdjusc,1254
         
     | 
| 
       334 
341 
     | 
    
         
             
            omlish/http/coro/client/headers.py,sha256=txEq2JK7oPPWx76xKQz89ZKolLelLywO7vOg63ehX4c,4631
         
     | 
| 
       335 
342 
     | 
    
         
             
            omlish/http/coro/client/response.py,sha256=yvG7K8QTljgal3DuWJOwGmdc4mOWwxSglmEs1EWes18,17928
         
     | 
| 
         @@ -382,7 +389,7 @@ omlish/inject/impl/scopes.py,sha256=sqtjHe6g0pAEOHqIARXGiIE9mKmGmlqh1FDpskV4TIw, 
     | 
|
| 
       382 
389 
     | 
    
         
             
            omlish/inject/impl/sync.py,sha256=v0FrcMfEFIT358AmAuERvzJ3o19r6DLZj6_0hjuW5Dk,1090
         
     | 
| 
       383 
390 
     | 
    
         
             
            omlish/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       384 
391 
     | 
    
         
             
            omlish/io/abc.py,sha256=M40QB2udYpCEqmlxCcHv6FlJYJY6ymmJQBlaklYv0U8,1256
         
     | 
| 
       385 
     | 
    
         
            -
            omlish/io/buffers.py,sha256= 
     | 
| 
      
 392 
     | 
    
         
            +
            omlish/io/buffers.py,sha256=GuddTeEeaNU4Ep2NWEeS-8ZO05JF8guPCGeTBNQ3mek,7351
         
     | 
| 
       386 
393 
     | 
    
         
             
            omlish/io/fileno.py,sha256=_W3qxkIKpnabn1_7kgmKdx0IsPF3R334xWnF_TtkEj4,185
         
     | 
| 
       387 
394 
     | 
    
         
             
            omlish/io/pyio.py,sha256=xmHTV-sn7QZThWCVBo6lTM7dhgsQn7m2L0DqRwdF2-8,94509
         
     | 
| 
       388 
395 
     | 
    
         
             
            omlish/io/compress/__init__.py,sha256=fJFPT4ONfqxmsA4jR6qbMt2woIyyEgnc_qOWK9o1kII,247
         
     | 
| 
         @@ -414,7 +421,7 @@ omlish/iterators/recipes.py,sha256=wOwOZg-zWG9Zc3wcAxJFSe2rtavVBYwZOfG09qYEx_4,4 
     | 
|
| 
       414 
421 
     | 
    
         
             
            omlish/iterators/tools.py,sha256=M16LXrJhMdsz5ea2qH0vws30ZvhQuQSCVFSLpRf_gTg,2096
         
     | 
| 
       415 
422 
     | 
    
         
             
            omlish/iterators/transforms.py,sha256=YHVdD9nBkS1k4kogi4Ba0UOTU_pKkuX9jGw1Tqj3UMw,3598
         
     | 
| 
       416 
423 
     | 
    
         
             
            omlish/iterators/unique.py,sha256=BSE-eanva8byFCJi09Nt2zzTsVr8LnTqY1PIInGYRs0,1396
         
     | 
| 
       417 
     | 
    
         
            -
            omlish/lang/__init__.py,sha256= 
     | 
| 
      
 424 
     | 
    
         
            +
            omlish/lang/__init__.py,sha256=FURfHE3GhTik9XGnfuDePikCeDPndnfDv_5zPm9tKJI,10935
         
     | 
| 
       418 
425 
     | 
    
         
             
            omlish/lang/asyncs.py,sha256=iIHJp7nvgJVj7zS0Ji7NsVSzz54vkzrj0Snc83dxe9g,1965
         
     | 
| 
       419 
426 
     | 
    
         
             
            omlish/lang/attrstorage.py,sha256=UUnoENCMQF3twBfxBcIKa5mpXsAxWnNYDayhU8xgmpU,5224
         
     | 
| 
       420 
427 
     | 
    
         
             
            omlish/lang/casing.py,sha256=dmk6gPwfr7Tqp3g2d8d_zZ8ir8TWvXHCEZYl-ECkJS0,4940
         
     | 
| 
         @@ -426,7 +433,7 @@ omlish/lang/datetimes.py,sha256=01tg21QOx-PWDlm-CSFTalym3vpqF0EKzeinmtcVNoU,379 
     | 
|
| 
       426 
433 
     | 
    
         
             
            omlish/lang/descriptors.py,sha256=sVJ1Pr4ihp26Tu9UCvDSyfSf-DhBnFGnbpYIFF32c7g,6877
         
     | 
| 
       427 
434 
     | 
    
         
             
            omlish/lang/enums.py,sha256=F9tflHfaAoV2MpyuhZzpfX9-H55M3zNa9hCszsngEo8,111
         
     | 
| 
       428 
435 
     | 
    
         
             
            omlish/lang/errors.py,sha256=shcS-NCnEUudF8qC_SmO2TQyjivKlS4TDjaz_faqQ0c,44
         
     | 
| 
       429 
     | 
    
         
            -
            omlish/lang/functions.py,sha256= 
     | 
| 
      
 436 
     | 
    
         
            +
            omlish/lang/functions.py,sha256=B2Gc6TkgZcR6LhQJOCB2Wc025crQ9FmJoRlealx-Pl4,5927
         
     | 
| 
       430 
437 
     | 
    
         
             
            omlish/lang/generators.py,sha256=nJiSmDpsfPiypGzJ8qlOO7-BUnCsrAeDow9mhtGgBio,5196
         
     | 
| 
       431 
438 
     | 
    
         
             
            omlish/lang/iterables.py,sha256=o_s8ouaJrdUqEVl2_bzJk5CVdabmrywXY0gPn7xss3w,3371
         
     | 
| 
       432 
439 
     | 
    
         
             
            omlish/lang/lazyglobals.py,sha256=5v4S0YSUrxdZFC6znrWolfeheArMa_DEJEcz46XCQN4,2676
         
     | 
| 
         @@ -435,7 +442,7 @@ omlish/lang/maysync.py,sha256=S2Q_rGC4AxRa1UsGJdSzZsYpgOcX9Y8ZmYGA9v8OWn8,1635 
     | 
|
| 
       435 
442 
     | 
    
         
             
            omlish/lang/objects.py,sha256=JMOZU5I6sK4rJm04898dOJkvef-lDIh5O3k6tlLbBJw,4616
         
     | 
| 
       436 
443 
     | 
    
         
             
            omlish/lang/outcomes.py,sha256=rCyjWjElNheJ-sQhauxfERT98IZ0mrUoaSI9nMpJZTg,8751
         
     | 
| 
       437 
444 
     | 
    
         
             
            omlish/lang/overrides.py,sha256=IBzK6ljfLX6TLgIyKTSjhqTLcuKRkQNVtEOnBLS4nuA,2095
         
     | 
| 
       438 
     | 
    
         
            -
            omlish/lang/params.py,sha256= 
     | 
| 
      
 445 
     | 
    
         
            +
            omlish/lang/params.py,sha256=LKr-9ykn-SyF1Af2KSH-qKKnTU_U6dybTg4pmBzAvz0,7077
         
     | 
| 
       439 
446 
     | 
    
         
             
            omlish/lang/recursion.py,sha256=tfCCe4poGcyV56Wj7j9NBjm7akp828mBZegJpm-i9SU,1899
         
     | 
| 
       440 
447 
     | 
    
         
             
            omlish/lang/resolving.py,sha256=nMosn-rcYjI8t6b35oICDyPw6t6-HvWj5jMdkfn1jfA,1612
         
     | 
| 
       441 
448 
     | 
    
         
             
            omlish/lang/resources.py,sha256=awfh33Uxkd9Ho-5Z3d9CPWQE3gjktV0XWM6XbdG0ejA,2845
         
     | 
| 
         @@ -831,9 +838,9 @@ omlish/typedvalues/marshal.py,sha256=2xqX6JllhtGpmeYkU7C-qzgU__0x-vd6CzYbAsocQlc 
     | 
|
| 
       831 
838 
     | 
    
         
             
            omlish/typedvalues/of_.py,sha256=UXkxSj504WI2UrFlqdZJbu2hyDwBhL7XVrc2qdR02GQ,1309
         
     | 
| 
       832 
839 
     | 
    
         
             
            omlish/typedvalues/reflect.py,sha256=PAvKW6T4cW7u--iX80w3HWwZUS3SmIZ2_lQjT65uAyk,1026
         
     | 
| 
       833 
840 
     | 
    
         
             
            omlish/typedvalues/values.py,sha256=ym46I-q2QJ_6l4UlERqv3yj87R-kp8nCKMRph0xQ3UA,1307
         
     | 
| 
       834 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
       835 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
       836 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
       837 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
       838 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
       839 
     | 
    
         
            -
            omlish-0.0.0. 
     | 
| 
      
 841 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
         
     | 
| 
      
 842 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/METADATA,sha256=wvn1a7zXW_oNIgIcizSM93cgAp7XOS14_aow1KXlkpA,18999
         
     | 
| 
      
 843 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
         
     | 
| 
      
 844 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
         
     | 
| 
      
 845 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
         
     | 
| 
      
 846 
     | 
    
         
            +
            omlish-0.0.0.dev469.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |