maxapi-python 0.1.2__py3-none-any.whl → 0.1.3__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.
- {maxapi_python-0.1.2.dist-info → maxapi_python-0.1.3.dist-info}/METADATA +1 -1
- {maxapi_python-0.1.2.dist-info → maxapi_python-0.1.3.dist-info}/RECORD +7 -7
- pymax/files.py +2 -1
- pymax/mixins/websocket.py +2 -1
- pymax/types.py +3 -1
- {maxapi_python-0.1.2.dist-info → maxapi_python-0.1.3.dist-info}/WHEEL +0 -0
- {maxapi_python-0.1.2.dist-info → maxapi_python-0.1.3.dist-info}/licenses/LICENSE +0 -0
@@ -2,13 +2,13 @@ pymax/__init__.py,sha256=I-ZUVKBfHN-MPkLUbLPxflsvnHSFsyXdW3TmbN2_zz0,950
|
|
2
2
|
pymax/core.py,sha256=DjwhOXmMoPl2pT9k18lrZLjlyvzPqkby6hIbPEYlctM,6001
|
3
3
|
pymax/crud.py,sha256=_V88YErPKE4k0jPjGn8Op9FDGGVuNwRjuKN-4iIVdgM,3306
|
4
4
|
pymax/exceptions.py,sha256=tiD_JD-MYSb4qFyKov-KWOm0zlD1p_gG6nf1fV-0-SY,702
|
5
|
-
pymax/files.py,sha256=
|
5
|
+
pymax/files.py,sha256=9CH5z11LAq3QpY_7hZkuIK8crF_DZDcsFYmbl7k4aXQ,2742
|
6
6
|
pymax/filters.py,sha256=EKNDzB3jjxlfjMGs3HivFvuQ1HSuYn-xKCxvmRFmq6c,1344
|
7
7
|
pymax/interfaces.py,sha256=xAlzVgS4RLChlChZ6WbKLWGezO_b0fHC_2NBePMtyVI,2179
|
8
8
|
pymax/models.py,sha256=7sWAmVuJjM7SPnDkpYEi8CARbTpUKbXqtWKMQdwd0w0,209
|
9
9
|
pymax/payloads.py,sha256=Pp4vc3BwKzqqWpIce_NhlNw9FA7i6Jhd-hRPg1Ld8Xg,3702
|
10
10
|
pymax/static.py,sha256=LQBXSWpiA3a4IWGqC84jTt7LBHSKEqnLDlvgSiMrX_M,4891
|
11
|
-
pymax/types.py,sha256=
|
11
|
+
pymax/types.py,sha256=DmJ9Jn5WEwWJip5R0vmPNkHgYIHEsBasolYjylGMO7o,14172
|
12
12
|
pymax/utils.py,sha256=2QnhUb1o-vAIthtodtfrxty9v-qd96OtMd2GMG0n5h4,1402
|
13
13
|
pymax/mixins/__init__.py,sha256=yFhB18-PMhn5yIbvIh_XBCTIdkf87M1hmsmMwL9ved0,371
|
14
14
|
pymax/mixins/auth.py,sha256=eIlJ5YY7ez99nQuICTu97XWoeKgcjk3ZVhb73qbAsMw,3160
|
@@ -18,8 +18,8 @@ pymax/mixins/handler.py,sha256=S6zGnm6U9yNY7LU1MV0TsYQj3MXkeOhiuUGlXyM2kTw,2164
|
|
18
18
|
pymax/mixins/message.py,sha256=pm4YFRmmYdldnk3G4rfjwAbodY-TfeIIvFHez6Xse_o,10542
|
19
19
|
pymax/mixins/self.py,sha256=Z1FiWFXJf3Qu9mKTQGrobe01bx4opa-uH5p6wedRWbI,1207
|
20
20
|
pymax/mixins/user.py,sha256=V8HLhLMopxItWfc4BF9P3eFjF8ksGAepkqaXrJ1e0ZE,3127
|
21
|
-
pymax/mixins/websocket.py,sha256=
|
22
|
-
maxapi_python-0.1.
|
23
|
-
maxapi_python-0.1.
|
24
|
-
maxapi_python-0.1.
|
25
|
-
maxapi_python-0.1.
|
21
|
+
pymax/mixins/websocket.py,sha256=2XSKCK43o3dPT7uWPFExP6Lwbumetd8cuHZge9Piwic,9766
|
22
|
+
maxapi_python-0.1.3.dist-info/METADATA,sha256=CNsZJHh1C3FxTIxWbSWFyWav-8XJAeBAmM_s5G2mNZI,5930
|
23
|
+
maxapi_python-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
24
|
+
maxapi_python-0.1.3.dist-info/licenses/LICENSE,sha256=Ud-0SKeXO_yA02Bb1nMDnEaSGwz2OqNlfGQbk0IzqPI,1085
|
25
|
+
maxapi_python-0.1.3.dist-info/RECORD,,
|
pymax/files.py
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
import mimetypes
|
2
2
|
from abc import ABC, abstractmethod
|
3
3
|
from pathlib import Path
|
4
|
-
from typing import ClassVar
|
4
|
+
from typing import ClassVar
|
5
5
|
|
6
6
|
from aiofiles import open as aio_open
|
7
7
|
from aiohttp import ClientSession
|
8
|
+
from typing_extensions import override
|
8
9
|
|
9
10
|
|
10
11
|
class BaseFile(ABC):
|
pymax/mixins/websocket.py
CHANGED
pymax/types.py
CHANGED
File without changes
|
File without changes
|