├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── pynamodb_attributes ├── __init__.py ├── float.py ├── integer.py ├── integer_date.py ├── integer_enum.py ├── integer_set.py ├── py.typed ├── timedelta.py ├── timestamp.py ├── unicode_datetime.py ├── unicode_delimited_tuple.py ├── unicode_enum.py ├── unicode_protobuf_enum.py └── uuid.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── connection.py ├── float_attribute_test.py ├── integer_attribute_test.py ├── integer_date_attribute_test.py ├── integer_enum_attribute_test.py ├── integer_set_attribute_test.py ├── meta.py ├── timedelta_attribute_test.py ├── timestamp_attribute_test.py ├── unicode_datetime_attribute_test.py ├── unicode_delimited_tuple_attribute_test.py ├── unicode_enum_attribute_test.py ├── unicode_protobuf_enum_attribute_test.py └── uuid_attribute_test.py /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/README.md -------------------------------------------------------------------------------- /pynamodb_attributes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/__init__.py -------------------------------------------------------------------------------- /pynamodb_attributes/float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/float.py -------------------------------------------------------------------------------- /pynamodb_attributes/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/integer.py -------------------------------------------------------------------------------- /pynamodb_attributes/integer_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/integer_date.py -------------------------------------------------------------------------------- /pynamodb_attributes/integer_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/integer_enum.py -------------------------------------------------------------------------------- /pynamodb_attributes/integer_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/integer_set.py -------------------------------------------------------------------------------- /pynamodb_attributes/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pynamodb_attributes/timedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/timedelta.py -------------------------------------------------------------------------------- /pynamodb_attributes/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/timestamp.py -------------------------------------------------------------------------------- /pynamodb_attributes/unicode_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/unicode_datetime.py -------------------------------------------------------------------------------- /pynamodb_attributes/unicode_delimited_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/unicode_delimited_tuple.py -------------------------------------------------------------------------------- /pynamodb_attributes/unicode_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/unicode_enum.py -------------------------------------------------------------------------------- /pynamodb_attributes/unicode_protobuf_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/unicode_protobuf_enum.py -------------------------------------------------------------------------------- /pynamodb_attributes/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/pynamodb_attributes/uuid.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/connection.py -------------------------------------------------------------------------------- /tests/float_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/float_attribute_test.py -------------------------------------------------------------------------------- /tests/integer_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/integer_attribute_test.py -------------------------------------------------------------------------------- /tests/integer_date_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/integer_date_attribute_test.py -------------------------------------------------------------------------------- /tests/integer_enum_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/integer_enum_attribute_test.py -------------------------------------------------------------------------------- /tests/integer_set_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/integer_set_attribute_test.py -------------------------------------------------------------------------------- /tests/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/meta.py -------------------------------------------------------------------------------- /tests/timedelta_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/timedelta_attribute_test.py -------------------------------------------------------------------------------- /tests/timestamp_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/timestamp_attribute_test.py -------------------------------------------------------------------------------- /tests/unicode_datetime_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/unicode_datetime_attribute_test.py -------------------------------------------------------------------------------- /tests/unicode_delimited_tuple_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/unicode_delimited_tuple_attribute_test.py -------------------------------------------------------------------------------- /tests/unicode_enum_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/unicode_enum_attribute_test.py -------------------------------------------------------------------------------- /tests/unicode_protobuf_enum_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/unicode_protobuf_enum_attribute_test.py -------------------------------------------------------------------------------- /tests/uuid_attribute_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyft/pynamodb-attributes/HEAD/tests/uuid_attribute_test.py --------------------------------------------------------------------------------