activemodel 0.14.0__py3-none-any.whl → 0.15.0__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.
- activemodel/base_model.py +4 -6
- activemodel/patches/__init__.py +2 -0
- activemodel/{get_column_from_field_patch.py → patches/get_column_from_field_patch.py} +29 -40
- activemodel/pytest/factories.py +12 -1
- activemodel/pytest/plugin.py +11 -7
- activemodel/pytest/transaction.py +7 -0
- activemodel/pytest/truncate.py +0 -1
- activemodel/types/sqlalchemy_protocol.py +1 -3
- activemodel/types/sqlalchemy_protocol.pyi +1 -1
- activemodel/types/typeid_patch.py +6 -0
- {activemodel-0.14.0.dist-info → activemodel-0.15.0.dist-info}/METADATA +4 -4
- {activemodel-0.14.0.dist-info → activemodel-0.15.0.dist-info}/RECORD +15 -14
- {activemodel-0.14.0.dist-info → activemodel-0.15.0.dist-info}/WHEEL +1 -1
- {activemodel-0.14.0.dist-info → activemodel-0.15.0.dist-info}/entry_points.txt +0 -0
- {activemodel-0.14.0.dist-info → activemodel-0.15.0.dist-info}/licenses/LICENSE +0 -0
activemodel/base_model.py
CHANGED
|
@@ -15,7 +15,7 @@ from sqlalchemy.orm import declared_attr
|
|
|
15
15
|
from activemodel.mixins.pydantic_json import PydanticJSONMixin
|
|
16
16
|
|
|
17
17
|
# NOTE: this patches a core method in sqlmodel to support db comments
|
|
18
|
-
from . import get_column_from_field_patch # noqa: F401
|
|
18
|
+
from .patches import get_column_from_field_patch # noqa: F401
|
|
19
19
|
from .query_wrapper import QueryWrapper
|
|
20
20
|
from .session_manager import get_session
|
|
21
21
|
|
|
@@ -72,11 +72,9 @@ class BaseModel(SQLModel):
|
|
|
72
72
|
def __init_subclass__(cls, **kwargs):
|
|
73
73
|
super().__init_subclass__(**kwargs)
|
|
74
74
|
|
|
75
|
-
from sqlmodel._compat import set_config_value
|
|
76
|
-
|
|
77
75
|
# Enables field-level docstrings on the pydantic `description` field, which we
|
|
78
76
|
# copy into table/column comments by patching SQLModel internals elsewhere.
|
|
79
|
-
|
|
77
|
+
cls.model_config["use_attribute_docstrings"] = True
|
|
80
78
|
|
|
81
79
|
cls._apply_class_doc()
|
|
82
80
|
|
|
@@ -290,7 +288,7 @@ class BaseModel(SQLModel):
|
|
|
290
288
|
# TODO where is this actually used? shoudl prob remove this
|
|
291
289
|
# TODO should we even do this? Can we specify a better json rendering class?
|
|
292
290
|
def json(self, **kwargs):
|
|
293
|
-
return json.dumps(self.
|
|
291
|
+
return json.dumps(self.model_dump(), default=str, **kwargs)
|
|
294
292
|
|
|
295
293
|
# TODO should move this to the wrapper
|
|
296
294
|
@classmethod
|
|
@@ -325,7 +323,7 @@ class BaseModel(SQLModel):
|
|
|
325
323
|
assert len(args) > 0, "Must pass at least one field name"
|
|
326
324
|
|
|
327
325
|
for field_name in args:
|
|
328
|
-
if field_name not in self.
|
|
326
|
+
if field_name not in self.model_fields:
|
|
329
327
|
raise ValueError(f"Field '{field_name}' does not exist in the model.")
|
|
330
328
|
|
|
331
329
|
# check if the field exists
|
|
@@ -13,26 +13,23 @@ Some ideas for this originally sourced from: https://github.com/fastapi/sqlmodel
|
|
|
13
13
|
from typing import (
|
|
14
14
|
TYPE_CHECKING,
|
|
15
15
|
Any,
|
|
16
|
-
Dict,
|
|
17
16
|
Sequence,
|
|
18
17
|
cast,
|
|
19
18
|
)
|
|
20
19
|
|
|
21
20
|
import sqlmodel
|
|
22
|
-
from pydantic.fields import FieldInfo as PydanticFieldInfo
|
|
23
21
|
from sqlalchemy import (
|
|
24
22
|
Column,
|
|
25
23
|
ForeignKey,
|
|
26
24
|
)
|
|
27
25
|
from sqlmodel._compat import ( # type: ignore[attr-defined]
|
|
28
|
-
IS_PYDANTIC_V2,
|
|
29
26
|
ModelMetaclass,
|
|
30
27
|
Representation,
|
|
31
28
|
Undefined,
|
|
32
29
|
UndefinedType,
|
|
33
30
|
is_field_noneable,
|
|
34
31
|
)
|
|
35
|
-
from sqlmodel.main import
|
|
32
|
+
from sqlmodel.main import get_sqlalchemy_type, _get_sqlmodel_field_value
|
|
36
33
|
|
|
37
34
|
from activemodel.utils import hash_function_code
|
|
38
35
|
|
|
@@ -43,67 +40,60 @@ if TYPE_CHECKING:
|
|
|
43
40
|
from pydantic_core import PydanticUndefinedType as UndefinedType
|
|
44
41
|
|
|
45
42
|
|
|
43
|
+
# https://github.com/fastapi/sqlmodel/blob/5c2dbe419edc2d15200eee5269c9508987944ed8/sqlmodel/main.py#L691
|
|
46
44
|
assert (
|
|
47
45
|
hash_function_code(sqlmodel.main.get_column_from_field)
|
|
48
|
-
== "
|
|
46
|
+
== "c64e50f8ca8a345ad2543690849a284d5436515835e41c56638cfaba251bc406"
|
|
47
|
+
), (
|
|
48
|
+
f"get_column_from_field has changed, please verify the patch is still valid: {hash_function_code(sqlmodel.main.get_column_from_field)}"
|
|
49
49
|
)
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
def get_column_from_field(field:
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
and converts it into a sqlalchemy Column object.
|
|
56
|
-
"""
|
|
57
|
-
if IS_PYDANTIC_V2:
|
|
58
|
-
field_info = field
|
|
59
|
-
else:
|
|
60
|
-
field_info = field.field_info
|
|
61
|
-
|
|
62
|
-
sa_column = getattr(field_info, "sa_column", Undefined)
|
|
52
|
+
def get_column_from_field(field: Any) -> Column: # type: ignore
|
|
53
|
+
field_info = field
|
|
54
|
+
sa_column = _get_sqlmodel_field_value(field_info, "sa_column", Undefined)
|
|
63
55
|
if isinstance(sa_column, Column):
|
|
64
|
-
#
|
|
56
|
+
# <Change>
|
|
65
57
|
if not sa_column.comment and (field_comment := field_info.description):
|
|
66
58
|
sa_column.comment = field_comment
|
|
59
|
+
# </Change>
|
|
67
60
|
return sa_column
|
|
68
|
-
|
|
69
|
-
primary_key =
|
|
61
|
+
sa_type = get_sqlalchemy_type(field)
|
|
62
|
+
primary_key = _get_sqlmodel_field_value(field_info, "primary_key", Undefined)
|
|
70
63
|
if primary_key is Undefined:
|
|
71
64
|
primary_key = False
|
|
72
|
-
|
|
73
|
-
index = getattr(field_info, "index", Undefined)
|
|
65
|
+
index = _get_sqlmodel_field_value(field_info, "index", Undefined)
|
|
74
66
|
if index is Undefined:
|
|
75
67
|
index = False
|
|
76
|
-
|
|
77
68
|
nullable = not primary_key and is_field_noneable(field)
|
|
78
69
|
# Override derived nullability if the nullable property is set explicitly
|
|
79
70
|
# on the field
|
|
80
|
-
field_nullable =
|
|
71
|
+
field_nullable = _get_sqlmodel_field_value(field_info, "nullable", Undefined) # noqa: B009
|
|
81
72
|
if field_nullable is not Undefined:
|
|
82
73
|
assert not isinstance(field_nullable, UndefinedType)
|
|
83
74
|
nullable = field_nullable
|
|
84
75
|
args = []
|
|
85
|
-
foreign_key =
|
|
76
|
+
foreign_key = _get_sqlmodel_field_value(field_info, "foreign_key", Undefined)
|
|
86
77
|
if foreign_key is Undefined:
|
|
87
78
|
foreign_key = None
|
|
88
|
-
unique =
|
|
79
|
+
unique = _get_sqlmodel_field_value(field_info, "unique", Undefined)
|
|
89
80
|
if unique is Undefined:
|
|
90
81
|
unique = False
|
|
91
82
|
if foreign_key:
|
|
92
|
-
|
|
83
|
+
ondelete_value = _get_sqlmodel_field_value(field_info, "ondelete", Undefined)
|
|
84
|
+
if ondelete_value is Undefined:
|
|
85
|
+
ondelete_value = None
|
|
86
|
+
if ondelete_value == "SET NULL" and not nullable:
|
|
93
87
|
raise RuntimeError('ondelete="SET NULL" requires nullable=True')
|
|
94
88
|
assert isinstance(foreign_key, str)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
ondelete = None
|
|
98
|
-
assert isinstance(ondelete, (str, type(None))) # for typing
|
|
99
|
-
args.append(ForeignKey(foreign_key, ondelete=ondelete))
|
|
89
|
+
assert isinstance(ondelete_value, (str, type(None))) # for typing
|
|
90
|
+
args.append(ForeignKey(foreign_key, ondelete=ondelete_value))
|
|
100
91
|
kwargs = {
|
|
101
92
|
"primary_key": primary_key,
|
|
102
93
|
"nullable": nullable,
|
|
103
94
|
"index": index,
|
|
104
95
|
"unique": unique,
|
|
105
96
|
}
|
|
106
|
-
|
|
107
97
|
sa_default = Undefined
|
|
108
98
|
if field_info.default_factory:
|
|
109
99
|
sa_default = field_info.default_factory
|
|
@@ -111,14 +101,14 @@ def get_column_from_field(field: PydanticFieldInfo | FieldInfo) -> Column: # ty
|
|
|
111
101
|
sa_default = field_info.default
|
|
112
102
|
if sa_default is not Undefined:
|
|
113
103
|
kwargs["default"] = sa_default
|
|
114
|
-
|
|
115
|
-
sa_column_args = getattr(field_info, "sa_column_args", Undefined)
|
|
104
|
+
sa_column_args = _get_sqlmodel_field_value(field_info, "sa_column_args", Undefined)
|
|
116
105
|
if sa_column_args is not Undefined:
|
|
117
106
|
args.extend(list(cast(Sequence[Any], sa_column_args)))
|
|
107
|
+
sa_column_kwargs = _get_sqlmodel_field_value(
|
|
108
|
+
field_info, "sa_column_kwargs", Undefined
|
|
109
|
+
)
|
|
118
110
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
# IMPORTANT: change from the original function
|
|
111
|
+
# <Change>
|
|
122
112
|
if field_info.description:
|
|
123
113
|
if sa_column_kwargs is Undefined:
|
|
124
114
|
sa_column_kwargs = {}
|
|
@@ -128,11 +118,10 @@ def get_column_from_field(field: PydanticFieldInfo | FieldInfo) -> Column: # ty
|
|
|
128
118
|
# only update comments if not already set
|
|
129
119
|
if "comment" not in sa_column_kwargs:
|
|
130
120
|
sa_column_kwargs["comment"] = field_info.description
|
|
121
|
+
# </Change>
|
|
131
122
|
|
|
132
123
|
if sa_column_kwargs is not Undefined:
|
|
133
|
-
kwargs.update(cast(
|
|
134
|
-
|
|
135
|
-
sa_type = get_sqlalchemy_type(field)
|
|
124
|
+
kwargs.update(cast(dict[Any, Any], sa_column_kwargs))
|
|
136
125
|
return Column(sa_type, *args, **kwargs) # type: ignore
|
|
137
126
|
|
|
138
127
|
|
activemodel/pytest/factories.py
CHANGED
|
@@ -12,6 +12,7 @@ from polyfactory.field_meta import FieldMeta
|
|
|
12
12
|
from typeid import TypeID
|
|
13
13
|
|
|
14
14
|
from activemodel.session_manager import global_session
|
|
15
|
+
from activemodel.logger import logger
|
|
15
16
|
|
|
16
17
|
# TODO not currently used
|
|
17
18
|
# def type_id_provider(cls, field_meta):
|
|
@@ -56,11 +57,20 @@ class ActiveModelFactory[T](SQLModelFactory[T]):
|
|
|
56
57
|
@classmethod
|
|
57
58
|
def save(cls, *args, **kwargs) -> T:
|
|
58
59
|
"""
|
|
60
|
+
Builds and persists a new model to the database.
|
|
61
|
+
|
|
59
62
|
Where this gets tricky, is this can be called multiple times within the same callstack. This can happen when
|
|
60
|
-
a factory uses other factories to create relationships.
|
|
63
|
+
a factory uses other factories to create relationships. This is fine if `__sqlalchemy_session__` is set, but
|
|
64
|
+
if it's not (in the case of a truncation DB strategy) you'll run into issues.
|
|
61
65
|
|
|
62
66
|
In a truncation strategy, the __sqlalchemy_session__ is set to None.
|
|
63
67
|
"""
|
|
68
|
+
|
|
69
|
+
if cls.__sqlalchemy_session__ is None:
|
|
70
|
+
logger.warning(
|
|
71
|
+
"No __sqlalchemy_session__ set on factory class, nested factory save() will fail. Use `db_session` or `db_truncate_session` to avoid this."
|
|
72
|
+
)
|
|
73
|
+
|
|
64
74
|
with global_session(cls.__sqlalchemy_session__):
|
|
65
75
|
return cls.build(*args, **kwargs).save()
|
|
66
76
|
|
|
@@ -74,6 +84,7 @@ class ActiveModelFactory[T](SQLModelFactory[T]):
|
|
|
74
84
|
# TODO right now assumes the model is typeid, maybe we should assert against this?
|
|
75
85
|
primary_key_name = cls.__model__.primary_key_column().name
|
|
76
86
|
return TypeID(
|
|
87
|
+
# gets the prefix associated with the pk field
|
|
77
88
|
cls.__model__.model_fields[primary_key_name].sa_column.type.prefix
|
|
78
89
|
)
|
|
79
90
|
|
activemodel/pytest/plugin.py
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Currently provides:
|
|
4
4
|
|
|
5
|
-
* ``db_session`` fixture
|
|
6
|
-
* ``activemodel_preserve_tables`` ini option
|
|
5
|
+
* ``db_session`` fixture - quick access to a database session (see ``test_session``)
|
|
6
|
+
* ``activemodel_preserve_tables`` ini option - configure tables to preserve when using
|
|
7
7
|
``database_reset_truncate`` (comma separated list or multiple lines depending on config style)
|
|
8
8
|
|
|
9
9
|
Configuration examples:
|
|
@@ -28,7 +28,10 @@ The list always implicitly includes ``alembic_version`` even if not specified.
|
|
|
28
28
|
from activemodel.session_manager import global_session
|
|
29
29
|
import pytest
|
|
30
30
|
|
|
31
|
-
from .transaction import
|
|
31
|
+
from .transaction import (
|
|
32
|
+
set_factory_sessions,
|
|
33
|
+
test_session,
|
|
34
|
+
)
|
|
32
35
|
|
|
33
36
|
|
|
34
37
|
def pytest_addoption(
|
|
@@ -53,7 +56,7 @@ def pytest_addoption(
|
|
|
53
56
|
@pytest.fixture(scope="function")
|
|
54
57
|
def db_session():
|
|
55
58
|
"""
|
|
56
|
-
Helpful for tests that are
|
|
59
|
+
Helpful for tests that are similar to unit tests. If you doing a routing or integration test, you
|
|
57
60
|
probably don't need this. If your unit test is simple (you are just creating a couple of models) you
|
|
58
61
|
can most likely skip this.
|
|
59
62
|
|
|
@@ -71,11 +74,12 @@ def db_truncate_session():
|
|
|
71
74
|
"""
|
|
72
75
|
Provides a database session for testing when using a truncation cleaning strategy.
|
|
73
76
|
|
|
74
|
-
When
|
|
77
|
+
When using a truncation cleaning strategy, no global test session is set. This means all models that are created
|
|
78
|
+
are tied to a detached session, which makes it hard to mutate models after creation. This fixture fixes that problem
|
|
79
|
+
by setting the session used by all model factories to a global session.
|
|
75
80
|
"""
|
|
76
81
|
with global_session() as session:
|
|
77
82
|
# set global database sessions for model factories to avoid lazy loading issues
|
|
78
|
-
|
|
79
|
-
set_polyfactory_session(session)
|
|
83
|
+
set_factory_sessions(session)
|
|
80
84
|
|
|
81
85
|
yield session
|
|
@@ -41,6 +41,13 @@ def set_polyfactory_session(session):
|
|
|
41
41
|
ActiveModelFactory.__sqlalchemy_session__ = session
|
|
42
42
|
|
|
43
43
|
|
|
44
|
+
def set_factory_sessions(session):
|
|
45
|
+
"set all supported model factories to use the provided session"
|
|
46
|
+
|
|
47
|
+
set_factory_session(session)
|
|
48
|
+
set_polyfactory_session(session)
|
|
49
|
+
|
|
50
|
+
|
|
44
51
|
@contextlib.contextmanager
|
|
45
52
|
def test_session():
|
|
46
53
|
"""
|
activemodel/pytest/truncate.py
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# IMPORTANT: This file is auto-generated. Do not edit directly.
|
|
2
2
|
|
|
3
|
-
from typing import Protocol
|
|
3
|
+
from typing import Protocol
|
|
4
4
|
import sqlmodel as sm
|
|
5
|
-
from sqlalchemy.sql.base import _NoArg
|
|
6
|
-
from typing import TYPE_CHECKING
|
|
7
5
|
|
|
8
6
|
|
|
9
7
|
class SQLAlchemyQueryMethods[T: sm.SQLModel](Protocol):
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: activemodel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: Make SQLModel more like an a real ORM
|
|
5
5
|
Project-URL: Repository, https://github.com/iloveitaly/activemodel
|
|
6
6
|
Author-email: Michael Bianco <iloveitaly@gmail.com>
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Keywords: activemodel,activerecord,orm,sqlalchemy,sqlmodel
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
10
|
Requires-Dist: python-decouple-typed>=3.11.0
|
|
11
|
-
Requires-Dist: sqlmodel
|
|
11
|
+
Requires-Dist: sqlmodel==0.0.32
|
|
12
12
|
Requires-Dist: textcase>=0.4.0
|
|
13
|
-
Requires-Dist: typeid-python
|
|
13
|
+
Requires-Dist: typeid-python==0.3.3
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
|
|
16
16
|
# ActiveModel: ORM Wrapper for SQLModel
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
activemodel/__init__.py,sha256=q_lHQyIM70ApvjduTo9GtenQjJXsfYZsAAquD_51kF4,137
|
|
2
|
-
activemodel/base_model.py,sha256=
|
|
2
|
+
activemodel/base_model.py,sha256=qSbC_42o_kPEBx22Pl6AgrAwd6U-eNRBaenkFQmx-Ns,17430
|
|
3
3
|
activemodel/celery.py,sha256=L1vKcO_HoPA5ZCfsXjxgPpDUMYDuoQMakGA9rppN7Lo,897
|
|
4
4
|
activemodel/errors.py,sha256=wycWYmk9ws4TZpxvTdtXVy2SFESb8NqKgzdivBoF0vw,115
|
|
5
|
-
activemodel/get_column_from_field_patch.py,sha256=wAEDm_ZvSqyJwfgkXVpxsevw11hd-7VLy7zuJG8Ak7Y,4986
|
|
6
5
|
activemodel/logger.py,sha256=vU7QiGSy_AJuJFmClUocqIJ-Ltku_8C24ZU8L6fLJR0,53
|
|
7
6
|
activemodel/query_wrapper.py,sha256=DLfmpMQr5veBjQIU2KEsp7Pe3MvdxQ-R-C6tkj0SgU8,4832
|
|
8
7
|
activemodel/session_manager.py,sha256=4jK0rs3KxU84WOvHCX6iuy0mauJg02tQ2VUQj-OEk68,7124
|
|
@@ -13,18 +12,20 @@ activemodel/mixins/pydantic_json.py,sha256=Nm8Y0ra7N-2lEvLHtmZYq1XE1-4n2BIff812D
|
|
|
13
12
|
activemodel/mixins/soft_delete.py,sha256=Ax4mGsQI7AVTE8c4GiWxpyB_W179-dDct79GtjP0owU,461
|
|
14
13
|
activemodel/mixins/timestamps.py,sha256=C6QQNnzrNUOW1EAsMpEVpImEeTIYDMPP0wocEw2RDQw,1078
|
|
15
14
|
activemodel/mixins/typeid.py,sha256=777btWRUW6YBGPApeaEdHQaoKmwblehukHzmkKoXv6o,1340
|
|
15
|
+
activemodel/patches/__init__.py,sha256=Jc6yYPtNCOBI6AdbKfeYUfLikpEdFyefM6h3nTLRID8,126
|
|
16
|
+
activemodel/patches/get_column_from_field_patch.py,sha256=30C9yMVTbhTcnRjk6HD_aklZCg2TGYkLASGSEe3NXtg,5026
|
|
16
17
|
activemodel/pytest/__init__.py,sha256=IJpD-BwJuPii5IxTJoOCryaq4_oyXNRj4RjlS5Plmc8,112
|
|
17
|
-
activemodel/pytest/factories.py,sha256=
|
|
18
|
-
activemodel/pytest/plugin.py,sha256=
|
|
19
|
-
activemodel/pytest/transaction.py,sha256=
|
|
20
|
-
activemodel/pytest/truncate.py,sha256=
|
|
18
|
+
activemodel/pytest/factories.py,sha256=o9kBVCESZUD4ypTVfG2_FD2Zew3mAcnguVhagDH1Ry8,4016
|
|
19
|
+
activemodel/pytest/plugin.py,sha256=IbRKTCjYnay0N5ucTK7PmA9ETx4OQOuR5hlFf3Lyez4,2681
|
|
20
|
+
activemodel/pytest/transaction.py,sha256=ZeGj_7gaGREjZBqlPC9JhwouDOTUhqblT3070OyybII,5977
|
|
21
|
+
activemodel/pytest/truncate.py,sha256=YcDxNXF074VWP8IHnTU4K8bxnQTNKuaNi1ZyCUpLqro,4766
|
|
21
22
|
activemodel/types/__init__.py,sha256=y5fiGVtPJxGEhuf-TvyrkhM2yaKRcIWo6XAx-CFFjM8,31
|
|
22
|
-
activemodel/types/sqlalchemy_protocol.py,sha256=
|
|
23
|
-
activemodel/types/sqlalchemy_protocol.pyi,sha256=
|
|
23
|
+
activemodel/types/sqlalchemy_protocol.py,sha256=Uc8hKmTdx0boNQAthNYQNCbfxRwz0mGH044mvjZCj0A,182
|
|
24
|
+
activemodel/types/sqlalchemy_protocol.pyi,sha256=yhLXOiZtCHOLA6YNPu_-xSiUJhfi8dyfjcmcAFhDY-Y,5649
|
|
24
25
|
activemodel/types/typeid.py,sha256=qycqklKv5nKuCqjJRnxA-6MjtcWJ4vFUsAVBc1ySwfg,7865
|
|
25
|
-
activemodel/types/typeid_patch.py,sha256=
|
|
26
|
-
activemodel-0.
|
|
27
|
-
activemodel-0.
|
|
28
|
-
activemodel-0.
|
|
29
|
-
activemodel-0.
|
|
30
|
-
activemodel-0.
|
|
26
|
+
activemodel/types/typeid_patch.py,sha256=Wkt8Ok_y49vEpuvhR8iB2xOcuFqa7vGC2RXYPcF6WZ0,670
|
|
27
|
+
activemodel-0.15.0.dist-info/METADATA,sha256=NS3dJGENQw94myuKgm7Wt0kd-cRkztuMykLEf1cdOB8,10750
|
|
28
|
+
activemodel-0.15.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
29
|
+
activemodel-0.15.0.dist-info/entry_points.txt,sha256=rytVrsNgUT4oDiW9RvRH6JBTHQn0hPZLK-jzQt3dY9s,51
|
|
30
|
+
activemodel-0.15.0.dist-info/licenses/LICENSE,sha256=L8mmpX47rB-xtJ_HsK0zpfO6viEjxbLYGn70BMp8os4,1071
|
|
31
|
+
activemodel-0.15.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|