├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-issue.md │ └── config.yml ├── dependbot.yml └── workflows │ ├── publish.yml │ └── test-suite.yml ├── .gitignore ├── .pdbrc ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── Taskfile.yaml ├── compose.yml ├── docs ├── admin │ └── admin.md ├── connection.md ├── contenttypes │ ├── intro.md │ └── replace-elasticsearch.md ├── contributing.md ├── debugging.md ├── declarative-models.md ├── edgy-people.md ├── embedding.md ├── exceptions.md ├── extensions.md ├── fields │ ├── custom.md │ ├── index.md │ └── postgres.md ├── file-handling.md ├── index.md ├── inspectdb.md ├── managers.md ├── marshalls.md ├── migrations │ ├── discovery.md │ └── migrations.md ├── models.md ├── overrides │ ├── assets │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ ├── bs-theme-overrides.css │ │ │ └── esmerald.css │ │ ├── img │ │ │ └── favicon.ico │ │ └── js │ │ │ ├── esmerald.js │ │ │ └── startup-modern.js │ ├── home.html │ └── nav.html ├── pagination.md ├── permissions │ ├── intro.md │ └── passwords.md ├── queries │ ├── annotate.md │ ├── combined-queries.md │ ├── many-to-many.md │ ├── many-to-one.md │ ├── prefetch.md │ ├── q.md │ ├── queries.md │ ├── related-name.md │ └── secrets.md ├── reference-foreignkey.md ├── references │ ├── database.md │ ├── fields.md │ ├── foreignkey.md │ ├── index.md │ ├── manager.md │ ├── many-to-many.md │ ├── models.md │ ├── one-to-one.md │ ├── queryset.md │ ├── reference-foreign-key.md │ ├── reflect-model.md │ ├── registry.md │ ├── schemas.md │ └── signals.md ├── reflection │ ├── autoreflection.md │ └── reflection.md ├── registry.md ├── relationships.md ├── release-notes.md ├── settings.md ├── shell.md ├── signals.md ├── sponsorship.md ├── statics │ └── images │ │ ├── favicon.ico │ │ └── white.png ├── tenancy │ ├── contrib.md │ └── edgy.md ├── testing │ ├── index.md │ ├── model-factory.md │ └── test-client.md ├── tips-and-tricks.md └── transactions.md ├── docs_src ├── admin │ ├── admin_content_type.py │ ├── admin_custom_admin_marshall.py │ ├── admin_embed.py │ ├── admin_embed_different_cookie.py │ ├── admin_embed_multiplexed.py │ ├── admin_embed_no_ambient.py │ └── admin_permission.py ├── commands │ └── discover.py ├── connections │ ├── asgi.py │ ├── asynccontextmanager.py │ ├── contextmanager.py │ ├── contextmanager_with_loop.py │ ├── contextmanager_with_loop_and_cleanup.py │ ├── django.py │ ├── lilya_middleware.py │ ├── manual.py │ ├── manual_esmerald.py │ └── simple.py ├── contenttypes │ ├── basic.py │ ├── collision.py │ ├── contenttype_tags.py │ ├── customized_collision.py │ ├── customized_nocollision.py │ ├── m2m_with_contenttypes.py │ └── snapshotting.py ├── extensions │ ├── add_extension.py │ └── settings.py ├── fields │ └── files │ │ └── file_with_size.py ├── marshalls │ ├── exclude.py │ ├── fields.py │ ├── method_field.py │ ├── nutshell.py │ ├── save.py │ └── source.py ├── migrations │ ├── accounts_models.py │ ├── attaching.py │ ├── automigrations_library.py │ ├── automigrations_library_disabled.py │ ├── automigrations_main.py │ ├── fastapi.py │ ├── lru.py │ ├── migrations.py │ ├── model.py │ └── starlette.py ├── models │ ├── abstract │ │ ├── common.py │ │ └── simple.py │ ├── constraints.py │ ├── declarative │ │ ├── example.py │ │ └── fk_relationship.py │ ├── declaring_models.py │ ├── declaring_models_no_id.py │ ├── declaring_models_pk_no_id.py │ ├── default_model.py │ ├── indexes │ │ ├── complex_together.py │ │ ├── simple.py │ │ └── simple2.py │ ├── managers │ │ ├── custom.py │ │ ├── example.py │ │ ├── override.py │ │ ├── override_related.py │ │ └── simple.py │ ├── on_conflict.py │ ├── pk_no_default.py │ ├── pk_with_default.py │ ├── registry │ │ ├── inheritance_abstract.py │ │ ├── inheritance_no_repeat.py │ │ └── nutshell.py │ ├── tablename │ │ ├── model_diff_tn.py │ │ ├── model_no_tablename.py │ │ └── model_with_tablename.py │ └── unique_together │ │ ├── complex_combined.py │ │ ├── complex_independent.py │ │ ├── complex_mixed.py │ │ ├── complex_together.py │ │ ├── constraints │ │ ├── complex.py │ │ └── mixing.py │ │ ├── simple.py │ │ └── simple2.py ├── pagination │ ├── cursor_pagination.py │ ├── double_linked_list.py │ ├── esmerald_example.py │ ├── simple_pagination.py │ ├── using_attributes.py │ └── using_attributes_slow.py ├── permissions │ ├── advanced.py │ ├── example.py │ ├── passwordargon2id.py │ ├── passwordfield_basic.py │ ├── passwordfield_token.py │ ├── passwordpasslib.py │ ├── passwordretry.py │ ├── primary_key.py │ └── quickstart.py ├── prefetch │ ├── first │ │ ├── asserting.py │ │ ├── data.py │ │ ├── models.py │ │ └── prefetch.py │ └── second │ │ ├── data.py │ │ ├── models.py │ │ ├── prefetch.py │ │ └── prefetch_filtered.py ├── queries │ ├── annotate │ │ ├── child_annotate.py │ │ ├── child_annotate_embed.py │ │ ├── parent_annotate.py │ │ ├── strict_child_annotate.py │ │ └── subquery_annotate.py │ ├── clauses │ │ ├── and.py │ │ ├── and_m_filter.py │ │ ├── and_two.py │ │ ├── model.py │ │ ├── not.py │ │ ├── not_m_filter.py │ │ ├── not_two.py │ │ ├── or.py │ │ ├── or_m_filter.py │ │ ├── or_two.py │ │ └── style │ │ │ ├── and.py │ │ │ ├── and_m_filter.py │ │ │ ├── and_two.py │ │ │ ├── model.py │ │ │ ├── not.py │ │ │ ├── not_m_filter.py │ │ │ ├── not_two.py │ │ │ ├── or.py │ │ │ ├── or_m_filter.py │ │ │ └── or_two.py │ ├── manytomany │ │ ├── example.py │ │ ├── no_rel.py │ │ ├── no_rel_query_example.py │ │ └── query_example.py │ ├── manytoone │ │ └── example.py │ ├── model.py │ ├── related_name │ │ ├── data.py │ │ ├── example.py │ │ ├── models.py │ │ ├── new_data.py │ │ └── new_models.py │ └── secrets │ │ └── model.py ├── quickstart │ ├── esmerald.py │ └── example1.py ├── reffk │ ├── apis │ │ ├── api_call.py │ │ ├── api_call_errors.py │ │ └── complex_example.py │ ├── complex_example.py │ ├── example1.py │ ├── model_ref │ │ ├── how_to_declare.py │ │ ├── model_ref.py │ │ └── model_ref2.py │ ├── nutshell.py │ ├── positional_example.py │ └── references.py ├── reflection │ ├── autoreflection │ │ ├── datadriven.py │ │ ├── datadriven_source.py │ │ └── legacy.py │ ├── model.py │ ├── reflect.py │ └── reflect │ │ ├── model.py │ │ └── reflect.py ├── registry │ ├── create_schema.py │ ├── custom_registry.py │ ├── default_schema.py │ ├── drop_schema.py │ ├── extra │ │ ├── create.py │ │ └── declaration.py │ ├── model.py │ └── multiple.py ├── relationships │ ├── embed_parent_with_embedded.py │ ├── model.py │ ├── multiple.py │ └── onetoone.py ├── settings │ └── custom_settings.py ├── shared │ ├── extra.md │ └── notes.md ├── signals │ ├── custom.py │ ├── disconnect.py │ ├── logic.py │ ├── receiver │ │ ├── disconnect.py │ │ ├── model.py │ │ ├── multiple.py │ │ ├── multiple_receivers.py │ │ ├── post_multiple.py │ │ └── post_save.py │ ├── register.py │ └── rewire.py ├── tenancy │ ├── contrib │ │ ├── domain_mixin.py │ │ ├── example │ │ │ ├── api.py │ │ │ ├── app.py │ │ │ ├── middleware.py │ │ │ ├── mock_data.py │ │ │ ├── models.py │ │ │ ├── queries.py │ │ │ └── settings.py │ │ ├── tenant_mixin.py │ │ ├── tenant_model.py │ │ └── tenant_user_mixin.py │ ├── example │ │ ├── api.py │ │ ├── data.py │ │ ├── middleware.py │ │ ├── models.py │ │ └── query.py │ └── using │ │ └── schemas.py ├── testing │ ├── factory │ │ ├── factory_basic.py │ │ ├── factory_build.py │ │ ├── factory_exclude.py │ │ ├── factory_field_overwrite.py │ │ ├── factory_fields_exclude.py │ │ ├── factory_fields_exclude_autoincrement.py │ │ ├── factory_mapping.py │ │ ├── factory_mapping2.py │ │ ├── factory_parametrize.py │ │ ├── factory_save.py │ │ ├── factory_to_field.py │ │ ├── factory_to_fields.py │ │ ├── sequences.py │ │ ├── sequences_even.py │ │ ├── sequences_odd.py │ │ └── sequences_subfactory.py │ └── testclient │ │ └── tests.py ├── tips │ ├── connection.py │ ├── lru.py │ ├── migrations.py │ ├── models.py │ ├── sandwich_main.py │ ├── sandwich_models.py │ └── settings.py └── transactions │ ├── context_manager.py │ ├── context_manager2.py │ ├── context_manager_direct.py │ ├── decorator.py │ └── models.py ├── edgy ├── __init__.py ├── __main__.py ├── _monkay.py ├── cli │ ├── __init__.py │ ├── base.py │ ├── cli.py │ ├── common_params.py │ ├── constants.py │ ├── operations │ │ ├── __init__.py │ │ ├── admin_serve.py │ │ ├── branches.py │ │ ├── check.py │ │ ├── current.py │ │ ├── downgrade.py │ │ ├── edit.py │ │ ├── heads.py │ │ ├── history.py │ │ ├── init.py │ │ ├── inspectdb.py │ │ ├── list_templates.py │ │ ├── makemigrations.py │ │ ├── merge.py │ │ ├── migrate.py │ │ ├── revision.py │ │ ├── shell │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── enums.py │ │ │ ├── ipython.py │ │ │ ├── ptpython.py │ │ │ └── utils.py │ │ ├── show.py │ │ └── stamp.py │ └── templates │ │ ├── default │ │ ├── README │ │ ├── alembic.ini.mako │ │ ├── env.py │ │ └── script.py.mako │ │ ├── plain │ │ ├── README │ │ ├── alembic.ini.mako │ │ ├── env.py │ │ └── script.py.mako │ │ ├── sequencial │ │ ├── README │ │ ├── alembic.ini.mako │ │ ├── env.py │ │ ├── generator.py │ │ └── script.py.mako │ │ └── url │ │ ├── README │ │ ├── alembic.ini.mako │ │ ├── env.py │ │ └── script.py.mako ├── conf │ ├── __init__.py │ ├── enums.py │ ├── global_settings.py │ └── module_import.py ├── contrib │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── application.py │ │ ├── config.py │ │ ├── mixins.py │ │ ├── permissions.py │ │ ├── templates │ │ │ └── admin │ │ │ │ ├── 404.html.jinja │ │ │ │ ├── base.html.jinja │ │ │ │ ├── base_definitions.html.jinja │ │ │ │ ├── base_head.html.jinja │ │ │ │ ├── dashboard.html.jinja │ │ │ │ ├── model_detail.html.jinja │ │ │ │ ├── model_object_create.html.jinja │ │ │ │ ├── model_object_detail.html.jinja │ │ │ │ ├── model_object_edit.html.jinja │ │ │ │ └── models.html.jinja │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── messages.py │ │ │ └── models.py │ │ └── views.py │ ├── autoreflection │ │ ├── __init__.py │ │ ├── metaclasses.py │ │ └── models.py │ ├── contenttypes │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── metaclasses.py │ │ └── models.py │ ├── lilya │ │ ├── __init__.py │ │ └── middleware.py │ ├── multi_tenancy │ │ ├── __init__.py │ │ ├── base.py │ │ ├── metaclasses.py │ │ ├── models.py │ │ ├── registry.py │ │ ├── settings.py │ │ └── utils.py │ ├── pagination │ │ ├── __init__.py │ │ ├── base.py │ │ └── cursor.py │ └── permissions │ │ ├── __init__.py │ │ ├── managers.py │ │ └── models.py ├── core │ ├── __init__.py │ ├── connection │ │ ├── __init__.py │ │ ├── database.py │ │ ├── registry.py │ │ └── schemas.py │ ├── datastructures.py │ ├── db │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── context_vars.py │ │ ├── datastructures.py │ │ ├── fields │ │ │ ├── __init__.py │ │ │ ├── _internal.py │ │ │ ├── base.py │ │ │ ├── composite_field.py │ │ │ ├── computed_field.py │ │ │ ├── core.py │ │ │ ├── exclude_field.py │ │ │ ├── factories.py │ │ │ ├── file_field.py │ │ │ ├── foreign_keys.py │ │ │ ├── image_field.py │ │ │ ├── many_to_many.py │ │ │ ├── mixins.py │ │ │ ├── one_to_one_keys.py │ │ │ ├── place_holder_field.py │ │ │ ├── postgres.py │ │ │ ├── ref_foreign_key.py │ │ │ └── types.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── managers.py │ │ │ ├── metaclasses.py │ │ │ ├── mixins │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── db.py │ │ │ │ ├── dump.py │ │ │ │ ├── generics.py │ │ │ │ ├── reflection.py │ │ │ │ └── row.py │ │ │ ├── model.py │ │ │ ├── model_reference.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ ├── querysets │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── clauses.py │ │ │ ├── compiler.py │ │ │ ├── executor.py │ │ │ ├── mixins │ │ │ │ ├── __init__.py │ │ │ │ ├── combined.py │ │ │ │ ├── queryset_props.py │ │ │ │ └── tenancy.py │ │ │ ├── parser.py │ │ │ ├── prefetch.py │ │ │ ├── queryset.py │ │ │ └── types.py │ │ └── relationships │ │ │ ├── __init__.py │ │ │ ├── related_field.py │ │ │ ├── relation.py │ │ │ └── utils.py │ ├── files │ │ ├── __init__.py │ │ ├── base.py │ │ ├── locks.py │ │ ├── move.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── filesystem.py │ │ │ └── handler.py │ ├── marshalls │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── fields.py │ │ └── metaclasses.py │ ├── signals.py │ ├── tenancy │ │ ├── __init__.py │ │ └── utils.py │ ├── terminal │ │ ├── __init__.py │ │ ├── base.py │ │ ├── print.py │ │ └── terminal.py │ └── utils │ │ ├── __init__.py │ │ ├── concurrency.py │ │ ├── db.py │ │ ├── functional.py │ │ ├── models.py │ │ └── sync.py ├── exceptions.py ├── protocols │ ├── __init__.py │ ├── many_relationship.py │ └── transaction_call.py ├── py.typed ├── testclient.py ├── testing │ ├── __init__.py │ ├── client.py │ ├── exceptions.py │ └── factory │ │ ├── __init__.py │ │ ├── base.py │ │ ├── context_vars.py │ │ ├── fields.py │ │ ├── mappings.py │ │ ├── metaclasses.py │ │ ├── subfactory.py │ │ ├── types.py │ │ └── utils.py ├── types.py └── utils │ ├── __init__.py │ ├── compat.py │ ├── hashing.py │ ├── inspect.py │ └── path.py ├── mkdocs.yml ├── pyproject.toml ├── scripts ├── clean └── install └── tests ├── __init__.py ├── clauses ├── __init__.py ├── test_and_clauses.py ├── test_not_clauses.py ├── test_or_clauses.py ├── test_q.py ├── test_q_m2m.py ├── test_q_nested.py └── test_q_or.py ├── cli ├── __init__.py ├── conftest.py ├── custom_multidb │ ├── README │ ├── alembic.ini.mako │ ├── env.py │ └── script.py.mako ├── custom_multidb_copied_registry │ ├── README │ ├── alembic.ini.mako │ ├── env.py │ └── script.py.mako ├── custom_singledb │ ├── README │ ├── alembic.ini.mako │ ├── env.py │ └── script.py.mako ├── main.py ├── main_json.py ├── main_multidb.py ├── main_multidb_nonidentifier.py ├── main_server_defaults.py ├── test_alembic.py ├── test_inspectdb.py ├── test_json_to_jsonb.py ├── test_lazy_evaluation_settings.py ├── test_multidb_templates.py ├── test_nullable_fields.py ├── test_nullable_generic_fields.py ├── test_server_default_fields.py ├── test_templates.py └── utils.py ├── combined ├── __init__.py └── test_combined_querysets.py ├── conftest.py ├── contrib ├── __init__.py ├── admin │ ├── test_admin.py │ ├── test_admin_complete_marshall.py │ └── test_admin_custom.py ├── autoreflection │ ├── test_reflecting_models.py │ └── test_reflecting_models_schema.py ├── contenttypes │ ├── test_contenttypes.py │ ├── test_contenttypes_custom.py │ ├── test_contenttypes_custom_non_abstract.py │ ├── test_contenttypes_different_registry.py │ ├── test_contenttypes_iterate.py │ ├── test_contenttypes_multi_tenancy.py │ └── test_contenttypes_multi_tenancy_custom.py ├── multi_tenancy │ ├── test_migrate.py │ ├── test_mt_models.py │ ├── test_tenant_models_using.py │ ├── test_tenant_models_using_operations.py │ └── test_tenant_models_working.py ├── pagination │ ├── test_esmerald_integration_cursor.py │ ├── test_pagination.py │ └── test_pagination_reversed.py └── permissions │ ├── test_advanced_permissions.py │ ├── test_group_permissions.py │ └── test_simple_permissions.py ├── exclude_secrets ├── test_exclude.py ├── test_exclude_nested.py ├── test_exclude_repeated.py ├── test_secrets.py └── test_secrets_fk.py ├── extensions └── test_extensions.py ├── factory ├── __init__.py ├── generation │ ├── __init__.py │ └── test_basic_factory.py ├── test_factory.py ├── test_factory_errors.py ├── test_mappings.py ├── test_parameters.py ├── test_save.py └── test_to_field.py ├── fields ├── __init__.py ├── test_composite_fields.py ├── test_composite_fields_column_name.py ├── test_composite_fields_fks.py ├── test_date_field.py ├── test_datetime.py ├── test_datetime_field.py ├── test_decimal_field.py ├── test_defaults.py ├── test_duration_field.py ├── test_field_validators.py ├── test_fields.py ├── test_file_fields.py ├── test_foreignkeys.py ├── test_image_fields.py ├── test_indb_updates.py ├── test_inheritance.py ├── test_ip_field.py ├── test_isempty_isnull.py ├── test_multi_column_fields.py ├── test_password_field.py ├── test_pg_array_field.py ├── test_server_defaults.py └── test_url_field.py ├── foreign_keys ├── m2m_string │ ├── __init__.py │ ├── test_many_to_many.py │ ├── test_many_to_many_field.py │ ├── test_many_to_many_field_related_name.py │ ├── test_many_to_many_no_related_name.py │ └── test_many_to_many_related_name.py ├── m2m_string_old │ ├── __init__.py │ ├── test_many_to_many.py │ ├── test_many_to_many_field.py │ ├── test_many_to_many_field_related_name.py │ ├── test_many_to_many_no_related_name.py │ └── test_many_to_many_related_name.py ├── test_cross_registry_and_db.py ├── test_fk_related_name.py ├── test_foreignkey.py ├── test_foreignkey_deep_embed_parent.py ├── test_foreignkey_embed_parent.py ├── test_foreignkey_special.py ├── test_foreignkey_unique_and_no_constraint.py ├── test_many_to_many.py ├── test_many_to_many_field.py ├── test_many_to_many_field_new_naming_multiple.py ├── test_many_to_many_field_old.py ├── test_many_to_many_field_related_name.py ├── test_many_to_many_field_related_name_old.py ├── test_many_to_many_field_special.py ├── test_many_to_many_field_special_auto.py ├── test_many_to_many_old.py ├── test_many_to_many_related_name.py ├── test_many_to_many_related_name_embedded.py ├── test_many_to_many_related_name_old.py ├── test_many_to_many_unique.py └── test_ref_foreignkey.py ├── images ├── mini_image.jpg └── mini_image.png ├── indexes ├── test_indexes.py ├── test_indexes_clauses.py ├── test_indexes_errors.py └── test_indexes_inherit_abstract.py ├── integration ├── test_esmerald_create_and_return_model.py ├── test_esmerald_create_and_return_model_list_fk.py ├── test_esmerald_fk_reference_middleware.py ├── test_esmerald_models_validation_error.py ├── test_esmerald_tenant.py └── test_esmerald_tenant_user.py ├── managers ├── test_manager_error.py ├── test_manager_simple.py ├── test_managers.py ├── test_managers_abstract.py ├── test_managers_inherited.py ├── test_managers_related.py └── test_queryset.py ├── marshalls ├── __init__.py ├── save │ ├── __init__.py │ ├── test_marshall_all.py │ ├── test_marshall_all_with_custom.py │ ├── test_marshall_exclude.py │ ├── test_marshall_import_string.py │ ├── test_marshall_method_field.py │ ├── test_marshall_source.py │ ├── test_marshall_source_from_property.py │ └── test_simple_marshall.py ├── test_marshall_all.py ├── test_marshall_all_with_custom.py ├── test_marshall_config_errors.py ├── test_marshall_context.py ├── test_marshall_exclude.py ├── test_marshall_import_string.py ├── test_marshall_method_field.py ├── test_marshall_source.py ├── test_marshall_source_from_property.py ├── test_simple_marshall.py ├── test_simple_marshall_different_explicit_pk.py └── test_simple_marshall_different_id.py ├── metaclass ├── test_lazyness.py ├── test_meta.py └── test_meta_errors.py ├── models ├── run_sync │ ├── __init__.py │ ├── test_bulk_create.py │ ├── test_bulk_update.py │ ├── test_model_abstract.py │ ├── test_model_class.py │ ├── test_model_count.py │ ├── test_model_defer.py │ ├── test_model_distinct.py │ ├── test_model_exists.py │ ├── test_model_first.py │ ├── test_model_get_or_create.py │ ├── test_model_get_or_none.py │ ├── test_model_group_by.py │ ├── test_model_inheritance.py │ ├── test_model_last.py │ ├── test_model_limit.py │ ├── test_model_multiple_inheritance.py │ ├── test_model_offset.py │ ├── test_model_only.py │ ├── test_model_order_by.py │ ├── test_model_primary_key.py │ ├── test_model_queryset_delete.py │ ├── test_model_queryset_update.py │ ├── test_model_registry.py │ ├── test_model_search.py │ ├── test_model_sqlalchemy.py │ ├── test_model_sync.py │ ├── test_model_update_or_create.py │ ├── test_model_values.py │ ├── test_model_values_list.py │ ├── test_models_filter.py │ └── test_save.py ├── test_bulk_create.py ├── test_bulk_get_or_create.py ├── test_bulk_update.py ├── test_embeddables.py ├── test_increment_onsave.py ├── test_inner_select.py ├── test_model_abstract.py ├── test_model_class.py ├── test_model_class_mixed.py ├── test_model_copying.py ├── test_model_count.py ├── test_model_defer.py ├── test_model_distinct.py ├── test_model_exists.py ├── test_model_first.py ├── test_model_get_or_create.py ├── test_model_get_or_none.py ├── test_model_group_by.py ├── test_model_inheritance.py ├── test_model_isnull.py ├── test_model_last.py ├── test_model_limit.py ├── test_model_multiple_inheritance.py ├── test_model_multiple_primary_keys.py ├── test_model_offset.py ├── test_model_only.py ├── test_model_order_by.py ├── test_model_primary_key.py ├── test_model_proxy.py ├── test_model_queryset_delete.py ├── test_model_queryset_update.py ├── test_model_registry.py ├── test_model_search.py ├── test_model_sqlalchemy.py ├── test_model_update_or_create.py ├── test_model_values.py ├── test_model_values_list.py ├── test_models_extra_and_reference.py ├── test_models_extra_and_reference_embed.py ├── test_models_filter.py ├── test_models_inheritance.py ├── test_nested_dump.py ├── test_reverse.py ├── test_save.py ├── test_select_related_mul.py ├── test_select_related_nested.py └── test_select_related_single.py ├── prefetch ├── test_prefetch_error.py ├── test_prefetch_m2m.py ├── test_prefetch_multiple.py ├── test_prefetch_multiple_iterate.py ├── test_prefetch_object.py ├── test_prefetch_related_nested.py └── test_prefetch_related_with_select_related.py ├── pydantic_tests ├── __init__.py └── test_fields.py ├── querysets └── test_queryset_class.py ├── reflection ├── test_table_reflection.py ├── test_table_reflection_schemes.py └── test_table_reflection_special_fields.py ├── registry ├── test_different_registry_default.py ├── test_registries.py ├── test_registry.py ├── test_registry_copying.py └── test_registry_run_sync.py ├── select_for_update ├── __init__.py └── test_select_for_update.py ├── settings.py ├── settings ├── __init__.py ├── default.py ├── disabled_auto_server_defaults.py ├── multidb.py └── multidb_nonidentifier.py ├── signals ├── test_deletion_signals.py └── test_signals.py ├── tenancy ├── test_activate_tenant.py ├── test_activate_tenant_precedent.py ├── test_load.py ├── test_mt_bulk_create.py ├── test_mt_bulk_create_different_db.py ├── test_normal_tenancy.py ├── test_raise_assertation_error.py ├── test_select_related.py ├── test_select_related_multiple.py ├── test_select_related_two.py └── test_tenancy_queries.py ├── test_automigrations.py ├── test_columns.py ├── test_constraints.py ├── test_database_rollback.py ├── test_database_url.py ├── test_db_connected_warnings.py ├── test_declarative_models.py ├── test_lazy_imports.py ├── test_migrate.py ├── test_transactions.py └── uniques ├── test_unique.py ├── test_unique_constraint.py ├── test_unique_constraint_inherited.py ├── test_unique_together.py └── test_unique_together_inherited.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tarsil 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.github/ISSUE_TEMPLATE/1-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.github/dependbot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.github/workflows/test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pdbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.pdbrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/Taskfile.yaml -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/compose.yml -------------------------------------------------------------------------------- /docs/admin/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/admin/admin.md -------------------------------------------------------------------------------- /docs/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/connection.md -------------------------------------------------------------------------------- /docs/contenttypes/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/contenttypes/intro.md -------------------------------------------------------------------------------- /docs/contenttypes/replace-elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/contenttypes/replace-elasticsearch.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/declarative-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/declarative-models.md -------------------------------------------------------------------------------- /docs/edgy-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/edgy-people.md -------------------------------------------------------------------------------- /docs/embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/embedding.md -------------------------------------------------------------------------------- /docs/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/exceptions.md -------------------------------------------------------------------------------- /docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/extensions.md -------------------------------------------------------------------------------- /docs/fields/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/fields/custom.md -------------------------------------------------------------------------------- /docs/fields/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/fields/index.md -------------------------------------------------------------------------------- /docs/fields/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/fields/postgres.md -------------------------------------------------------------------------------- /docs/file-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/file-handling.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/inspectdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/inspectdb.md -------------------------------------------------------------------------------- /docs/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/managers.md -------------------------------------------------------------------------------- /docs/marshalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/marshalls.md -------------------------------------------------------------------------------- /docs/migrations/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/migrations/discovery.md -------------------------------------------------------------------------------- /docs/migrations/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/migrations/migrations.md -------------------------------------------------------------------------------- /docs/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/models.md -------------------------------------------------------------------------------- /docs/overrides/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/overrides/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/overrides/assets/css/bs-theme-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/css/bs-theme-overrides.css -------------------------------------------------------------------------------- /docs/overrides/assets/css/esmerald.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/css/esmerald.css -------------------------------------------------------------------------------- /docs/overrides/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/img/favicon.ico -------------------------------------------------------------------------------- /docs/overrides/assets/js/esmerald.js: -------------------------------------------------------------------------------- 1 | hljs.highlightAll(); 2 | -------------------------------------------------------------------------------- /docs/overrides/assets/js/startup-modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/assets/js/startup-modern.js -------------------------------------------------------------------------------- /docs/overrides/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/home.html -------------------------------------------------------------------------------- /docs/overrides/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/overrides/nav.html -------------------------------------------------------------------------------- /docs/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/pagination.md -------------------------------------------------------------------------------- /docs/permissions/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/permissions/intro.md -------------------------------------------------------------------------------- /docs/permissions/passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/permissions/passwords.md -------------------------------------------------------------------------------- /docs/queries/annotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/annotate.md -------------------------------------------------------------------------------- /docs/queries/combined-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/combined-queries.md -------------------------------------------------------------------------------- /docs/queries/many-to-many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/many-to-many.md -------------------------------------------------------------------------------- /docs/queries/many-to-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/many-to-one.md -------------------------------------------------------------------------------- /docs/queries/prefetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/prefetch.md -------------------------------------------------------------------------------- /docs/queries/q.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/q.md -------------------------------------------------------------------------------- /docs/queries/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/queries.md -------------------------------------------------------------------------------- /docs/queries/related-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/related-name.md -------------------------------------------------------------------------------- /docs/queries/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/queries/secrets.md -------------------------------------------------------------------------------- /docs/reference-foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/reference-foreignkey.md -------------------------------------------------------------------------------- /docs/references/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/database.md -------------------------------------------------------------------------------- /docs/references/fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/fields.md -------------------------------------------------------------------------------- /docs/references/foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/foreignkey.md -------------------------------------------------------------------------------- /docs/references/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/index.md -------------------------------------------------------------------------------- /docs/references/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/manager.md -------------------------------------------------------------------------------- /docs/references/many-to-many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/many-to-many.md -------------------------------------------------------------------------------- /docs/references/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/models.md -------------------------------------------------------------------------------- /docs/references/one-to-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/one-to-one.md -------------------------------------------------------------------------------- /docs/references/queryset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/queryset.md -------------------------------------------------------------------------------- /docs/references/reference-foreign-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/reference-foreign-key.md -------------------------------------------------------------------------------- /docs/references/reflect-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/reflect-model.md -------------------------------------------------------------------------------- /docs/references/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/registry.md -------------------------------------------------------------------------------- /docs/references/schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/schemas.md -------------------------------------------------------------------------------- /docs/references/signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/references/signals.md -------------------------------------------------------------------------------- /docs/reflection/autoreflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/reflection/autoreflection.md -------------------------------------------------------------------------------- /docs/reflection/reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/reflection/reflection.md -------------------------------------------------------------------------------- /docs/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/registry.md -------------------------------------------------------------------------------- /docs/relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/relationships.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/shell.md -------------------------------------------------------------------------------- /docs/signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/signals.md -------------------------------------------------------------------------------- /docs/sponsorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/sponsorship.md -------------------------------------------------------------------------------- /docs/statics/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/statics/images/favicon.ico -------------------------------------------------------------------------------- /docs/statics/images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/statics/images/white.png -------------------------------------------------------------------------------- /docs/tenancy/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/tenancy/contrib.md -------------------------------------------------------------------------------- /docs/tenancy/edgy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/tenancy/edgy.md -------------------------------------------------------------------------------- /docs/testing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/testing/index.md -------------------------------------------------------------------------------- /docs/testing/model-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/testing/model-factory.md -------------------------------------------------------------------------------- /docs/testing/test-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/testing/test-client.md -------------------------------------------------------------------------------- /docs/tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/tips-and-tricks.md -------------------------------------------------------------------------------- /docs/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs/transactions.md -------------------------------------------------------------------------------- /docs_src/admin/admin_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_content_type.py -------------------------------------------------------------------------------- /docs_src/admin/admin_custom_admin_marshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_custom_admin_marshall.py -------------------------------------------------------------------------------- /docs_src/admin/admin_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_embed.py -------------------------------------------------------------------------------- /docs_src/admin/admin_embed_different_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_embed_different_cookie.py -------------------------------------------------------------------------------- /docs_src/admin/admin_embed_multiplexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_embed_multiplexed.py -------------------------------------------------------------------------------- /docs_src/admin/admin_embed_no_ambient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_embed_no_ambient.py -------------------------------------------------------------------------------- /docs_src/admin/admin_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/admin/admin_permission.py -------------------------------------------------------------------------------- /docs_src/commands/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/commands/discover.py -------------------------------------------------------------------------------- /docs_src/connections/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/asgi.py -------------------------------------------------------------------------------- /docs_src/connections/asynccontextmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/asynccontextmanager.py -------------------------------------------------------------------------------- /docs_src/connections/contextmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/contextmanager.py -------------------------------------------------------------------------------- /docs_src/connections/contextmanager_with_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/contextmanager_with_loop.py -------------------------------------------------------------------------------- /docs_src/connections/contextmanager_with_loop_and_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/contextmanager_with_loop_and_cleanup.py -------------------------------------------------------------------------------- /docs_src/connections/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/django.py -------------------------------------------------------------------------------- /docs_src/connections/lilya_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/lilya_middleware.py -------------------------------------------------------------------------------- /docs_src/connections/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/manual.py -------------------------------------------------------------------------------- /docs_src/connections/manual_esmerald.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/manual_esmerald.py -------------------------------------------------------------------------------- /docs_src/connections/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/connections/simple.py -------------------------------------------------------------------------------- /docs_src/contenttypes/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/basic.py -------------------------------------------------------------------------------- /docs_src/contenttypes/collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/collision.py -------------------------------------------------------------------------------- /docs_src/contenttypes/contenttype_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/contenttype_tags.py -------------------------------------------------------------------------------- /docs_src/contenttypes/customized_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/customized_collision.py -------------------------------------------------------------------------------- /docs_src/contenttypes/customized_nocollision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/customized_nocollision.py -------------------------------------------------------------------------------- /docs_src/contenttypes/m2m_with_contenttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/m2m_with_contenttypes.py -------------------------------------------------------------------------------- /docs_src/contenttypes/snapshotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/contenttypes/snapshotting.py -------------------------------------------------------------------------------- /docs_src/extensions/add_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/extensions/add_extension.py -------------------------------------------------------------------------------- /docs_src/extensions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/extensions/settings.py -------------------------------------------------------------------------------- /docs_src/fields/files/file_with_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/fields/files/file_with_size.py -------------------------------------------------------------------------------- /docs_src/marshalls/exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/exclude.py -------------------------------------------------------------------------------- /docs_src/marshalls/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/fields.py -------------------------------------------------------------------------------- /docs_src/marshalls/method_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/method_field.py -------------------------------------------------------------------------------- /docs_src/marshalls/nutshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/nutshell.py -------------------------------------------------------------------------------- /docs_src/marshalls/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/save.py -------------------------------------------------------------------------------- /docs_src/marshalls/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/marshalls/source.py -------------------------------------------------------------------------------- /docs_src/migrations/accounts_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/accounts_models.py -------------------------------------------------------------------------------- /docs_src/migrations/attaching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/attaching.py -------------------------------------------------------------------------------- /docs_src/migrations/automigrations_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/automigrations_library.py -------------------------------------------------------------------------------- /docs_src/migrations/automigrations_library_disabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/automigrations_library_disabled.py -------------------------------------------------------------------------------- /docs_src/migrations/automigrations_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/automigrations_main.py -------------------------------------------------------------------------------- /docs_src/migrations/fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/fastapi.py -------------------------------------------------------------------------------- /docs_src/migrations/lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/lru.py -------------------------------------------------------------------------------- /docs_src/migrations/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/migrations.py -------------------------------------------------------------------------------- /docs_src/migrations/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/model.py -------------------------------------------------------------------------------- /docs_src/migrations/starlette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/migrations/starlette.py -------------------------------------------------------------------------------- /docs_src/models/abstract/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/abstract/common.py -------------------------------------------------------------------------------- /docs_src/models/abstract/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/abstract/simple.py -------------------------------------------------------------------------------- /docs_src/models/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/constraints.py -------------------------------------------------------------------------------- /docs_src/models/declarative/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/declarative/example.py -------------------------------------------------------------------------------- /docs_src/models/declarative/fk_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/declarative/fk_relationship.py -------------------------------------------------------------------------------- /docs_src/models/declaring_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/declaring_models.py -------------------------------------------------------------------------------- /docs_src/models/declaring_models_no_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/declaring_models_no_id.py -------------------------------------------------------------------------------- /docs_src/models/declaring_models_pk_no_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/declaring_models_pk_no_id.py -------------------------------------------------------------------------------- /docs_src/models/default_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/default_model.py -------------------------------------------------------------------------------- /docs_src/models/indexes/complex_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/indexes/complex_together.py -------------------------------------------------------------------------------- /docs_src/models/indexes/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/indexes/simple.py -------------------------------------------------------------------------------- /docs_src/models/indexes/simple2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/indexes/simple2.py -------------------------------------------------------------------------------- /docs_src/models/managers/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/managers/custom.py -------------------------------------------------------------------------------- /docs_src/models/managers/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/managers/example.py -------------------------------------------------------------------------------- /docs_src/models/managers/override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/managers/override.py -------------------------------------------------------------------------------- /docs_src/models/managers/override_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/managers/override_related.py -------------------------------------------------------------------------------- /docs_src/models/managers/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/managers/simple.py -------------------------------------------------------------------------------- /docs_src/models/on_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/on_conflict.py -------------------------------------------------------------------------------- /docs_src/models/pk_no_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/pk_no_default.py -------------------------------------------------------------------------------- /docs_src/models/pk_with_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/pk_with_default.py -------------------------------------------------------------------------------- /docs_src/models/registry/inheritance_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/registry/inheritance_abstract.py -------------------------------------------------------------------------------- /docs_src/models/registry/inheritance_no_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/registry/inheritance_no_repeat.py -------------------------------------------------------------------------------- /docs_src/models/registry/nutshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/registry/nutshell.py -------------------------------------------------------------------------------- /docs_src/models/tablename/model_diff_tn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/tablename/model_diff_tn.py -------------------------------------------------------------------------------- /docs_src/models/tablename/model_no_tablename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/tablename/model_no_tablename.py -------------------------------------------------------------------------------- /docs_src/models/tablename/model_with_tablename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/tablename/model_with_tablename.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/complex_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/complex_combined.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/complex_independent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/complex_independent.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/complex_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/complex_mixed.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/complex_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/complex_together.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/constraints/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/constraints/complex.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/constraints/mixing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/constraints/mixing.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/simple.py -------------------------------------------------------------------------------- /docs_src/models/unique_together/simple2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/models/unique_together/simple2.py -------------------------------------------------------------------------------- /docs_src/pagination/cursor_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/cursor_pagination.py -------------------------------------------------------------------------------- /docs_src/pagination/double_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/double_linked_list.py -------------------------------------------------------------------------------- /docs_src/pagination/esmerald_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/esmerald_example.py -------------------------------------------------------------------------------- /docs_src/pagination/simple_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/simple_pagination.py -------------------------------------------------------------------------------- /docs_src/pagination/using_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/using_attributes.py -------------------------------------------------------------------------------- /docs_src/pagination/using_attributes_slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/pagination/using_attributes_slow.py -------------------------------------------------------------------------------- /docs_src/permissions/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/advanced.py -------------------------------------------------------------------------------- /docs_src/permissions/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/example.py -------------------------------------------------------------------------------- /docs_src/permissions/passwordargon2id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/passwordargon2id.py -------------------------------------------------------------------------------- /docs_src/permissions/passwordfield_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/passwordfield_basic.py -------------------------------------------------------------------------------- /docs_src/permissions/passwordfield_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/passwordfield_token.py -------------------------------------------------------------------------------- /docs_src/permissions/passwordpasslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/passwordpasslib.py -------------------------------------------------------------------------------- /docs_src/permissions/passwordretry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/passwordretry.py -------------------------------------------------------------------------------- /docs_src/permissions/primary_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/primary_key.py -------------------------------------------------------------------------------- /docs_src/permissions/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/permissions/quickstart.py -------------------------------------------------------------------------------- /docs_src/prefetch/first/asserting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/first/asserting.py -------------------------------------------------------------------------------- /docs_src/prefetch/first/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/first/data.py -------------------------------------------------------------------------------- /docs_src/prefetch/first/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/first/models.py -------------------------------------------------------------------------------- /docs_src/prefetch/first/prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/first/prefetch.py -------------------------------------------------------------------------------- /docs_src/prefetch/second/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/second/data.py -------------------------------------------------------------------------------- /docs_src/prefetch/second/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/second/models.py -------------------------------------------------------------------------------- /docs_src/prefetch/second/prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/second/prefetch.py -------------------------------------------------------------------------------- /docs_src/prefetch/second/prefetch_filtered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/prefetch/second/prefetch_filtered.py -------------------------------------------------------------------------------- /docs_src/queries/annotate/child_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/annotate/child_annotate.py -------------------------------------------------------------------------------- /docs_src/queries/annotate/child_annotate_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/annotate/child_annotate_embed.py -------------------------------------------------------------------------------- /docs_src/queries/annotate/parent_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/annotate/parent_annotate.py -------------------------------------------------------------------------------- /docs_src/queries/annotate/strict_child_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/annotate/strict_child_annotate.py -------------------------------------------------------------------------------- /docs_src/queries/annotate/subquery_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/annotate/subquery_annotate.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/and.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/and_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/and_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/and_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/and_two.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/model.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/not.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/not_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/not_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/not_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/not_two.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/or.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/or_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/or_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/or_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/or_two.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/and.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/and_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/and_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/and_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/and_two.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/model.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/not.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/not_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/not_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/not_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/not_two.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/or.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/or_m_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/or_m_filter.py -------------------------------------------------------------------------------- /docs_src/queries/clauses/style/or_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/clauses/style/or_two.py -------------------------------------------------------------------------------- /docs_src/queries/manytomany/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/manytomany/example.py -------------------------------------------------------------------------------- /docs_src/queries/manytomany/no_rel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/manytomany/no_rel.py -------------------------------------------------------------------------------- /docs_src/queries/manytomany/no_rel_query_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/manytomany/no_rel_query_example.py -------------------------------------------------------------------------------- /docs_src/queries/manytomany/query_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/manytomany/query_example.py -------------------------------------------------------------------------------- /docs_src/queries/manytoone/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/manytoone/example.py -------------------------------------------------------------------------------- /docs_src/queries/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/model.py -------------------------------------------------------------------------------- /docs_src/queries/related_name/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/related_name/data.py -------------------------------------------------------------------------------- /docs_src/queries/related_name/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/related_name/example.py -------------------------------------------------------------------------------- /docs_src/queries/related_name/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/related_name/models.py -------------------------------------------------------------------------------- /docs_src/queries/related_name/new_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/related_name/new_data.py -------------------------------------------------------------------------------- /docs_src/queries/related_name/new_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/related_name/new_models.py -------------------------------------------------------------------------------- /docs_src/queries/secrets/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/queries/secrets/model.py -------------------------------------------------------------------------------- /docs_src/quickstart/esmerald.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/quickstart/esmerald.py -------------------------------------------------------------------------------- /docs_src/quickstart/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/quickstart/example1.py -------------------------------------------------------------------------------- /docs_src/reffk/apis/api_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/apis/api_call.py -------------------------------------------------------------------------------- /docs_src/reffk/apis/api_call_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/apis/api_call_errors.py -------------------------------------------------------------------------------- /docs_src/reffk/apis/complex_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/apis/complex_example.py -------------------------------------------------------------------------------- /docs_src/reffk/complex_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/complex_example.py -------------------------------------------------------------------------------- /docs_src/reffk/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/example1.py -------------------------------------------------------------------------------- /docs_src/reffk/model_ref/how_to_declare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/model_ref/how_to_declare.py -------------------------------------------------------------------------------- /docs_src/reffk/model_ref/model_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/model_ref/model_ref.py -------------------------------------------------------------------------------- /docs_src/reffk/model_ref/model_ref2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/model_ref/model_ref2.py -------------------------------------------------------------------------------- /docs_src/reffk/nutshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/nutshell.py -------------------------------------------------------------------------------- /docs_src/reffk/positional_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/positional_example.py -------------------------------------------------------------------------------- /docs_src/reffk/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reffk/references.py -------------------------------------------------------------------------------- /docs_src/reflection/autoreflection/datadriven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/autoreflection/datadriven.py -------------------------------------------------------------------------------- /docs_src/reflection/autoreflection/datadriven_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/autoreflection/datadriven_source.py -------------------------------------------------------------------------------- /docs_src/reflection/autoreflection/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/autoreflection/legacy.py -------------------------------------------------------------------------------- /docs_src/reflection/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/model.py -------------------------------------------------------------------------------- /docs_src/reflection/reflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/reflect.py -------------------------------------------------------------------------------- /docs_src/reflection/reflect/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/reflect/model.py -------------------------------------------------------------------------------- /docs_src/reflection/reflect/reflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/reflection/reflect/reflect.py -------------------------------------------------------------------------------- /docs_src/registry/create_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/create_schema.py -------------------------------------------------------------------------------- /docs_src/registry/custom_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/custom_registry.py -------------------------------------------------------------------------------- /docs_src/registry/default_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/default_schema.py -------------------------------------------------------------------------------- /docs_src/registry/drop_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/drop_schema.py -------------------------------------------------------------------------------- /docs_src/registry/extra/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/extra/create.py -------------------------------------------------------------------------------- /docs_src/registry/extra/declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/extra/declaration.py -------------------------------------------------------------------------------- /docs_src/registry/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/model.py -------------------------------------------------------------------------------- /docs_src/registry/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/registry/multiple.py -------------------------------------------------------------------------------- /docs_src/relationships/embed_parent_with_embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/relationships/embed_parent_with_embedded.py -------------------------------------------------------------------------------- /docs_src/relationships/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/relationships/model.py -------------------------------------------------------------------------------- /docs_src/relationships/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/relationships/multiple.py -------------------------------------------------------------------------------- /docs_src/relationships/onetoone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/relationships/onetoone.py -------------------------------------------------------------------------------- /docs_src/settings/custom_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/settings/custom_settings.py -------------------------------------------------------------------------------- /docs_src/shared/extra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/shared/extra.md -------------------------------------------------------------------------------- /docs_src/shared/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/shared/notes.md -------------------------------------------------------------------------------- /docs_src/signals/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/custom.py -------------------------------------------------------------------------------- /docs_src/signals/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/disconnect.py -------------------------------------------------------------------------------- /docs_src/signals/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/logic.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/disconnect.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/model.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/multiple.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/multiple_receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/multiple_receivers.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/post_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/post_multiple.py -------------------------------------------------------------------------------- /docs_src/signals/receiver/post_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/receiver/post_save.py -------------------------------------------------------------------------------- /docs_src/signals/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/register.py -------------------------------------------------------------------------------- /docs_src/signals/rewire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/signals/rewire.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/domain_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/domain_mixin.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/api.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/app.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/middleware.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/mock_data.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/models.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/queries.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/example/settings.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/tenant_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/tenant_mixin.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/tenant_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/tenant_model.py -------------------------------------------------------------------------------- /docs_src/tenancy/contrib/tenant_user_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/contrib/tenant_user_mixin.py -------------------------------------------------------------------------------- /docs_src/tenancy/example/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/example/api.py -------------------------------------------------------------------------------- /docs_src/tenancy/example/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/example/data.py -------------------------------------------------------------------------------- /docs_src/tenancy/example/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/example/middleware.py -------------------------------------------------------------------------------- /docs_src/tenancy/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/example/models.py -------------------------------------------------------------------------------- /docs_src/tenancy/example/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/example/query.py -------------------------------------------------------------------------------- /docs_src/tenancy/using/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tenancy/using/schemas.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_basic.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_build.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_exclude.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_field_overwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_field_overwrite.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_fields_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_fields_exclude.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_fields_exclude_autoincrement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_fields_exclude_autoincrement.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_mapping.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_mapping2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_mapping2.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_parametrize.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_save.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_to_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_to_field.py -------------------------------------------------------------------------------- /docs_src/testing/factory/factory_to_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/factory_to_fields.py -------------------------------------------------------------------------------- /docs_src/testing/factory/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/sequences.py -------------------------------------------------------------------------------- /docs_src/testing/factory/sequences_even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/sequences_even.py -------------------------------------------------------------------------------- /docs_src/testing/factory/sequences_odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/sequences_odd.py -------------------------------------------------------------------------------- /docs_src/testing/factory/sequences_subfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/factory/sequences_subfactory.py -------------------------------------------------------------------------------- /docs_src/testing/testclient/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/testing/testclient/tests.py -------------------------------------------------------------------------------- /docs_src/tips/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/connection.py -------------------------------------------------------------------------------- /docs_src/tips/lru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/lru.py -------------------------------------------------------------------------------- /docs_src/tips/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/migrations.py -------------------------------------------------------------------------------- /docs_src/tips/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/models.py -------------------------------------------------------------------------------- /docs_src/tips/sandwich_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/sandwich_main.py -------------------------------------------------------------------------------- /docs_src/tips/sandwich_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/sandwich_models.py -------------------------------------------------------------------------------- /docs_src/tips/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/tips/settings.py -------------------------------------------------------------------------------- /docs_src/transactions/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/transactions/context_manager.py -------------------------------------------------------------------------------- /docs_src/transactions/context_manager2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/transactions/context_manager2.py -------------------------------------------------------------------------------- /docs_src/transactions/context_manager_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/transactions/context_manager_direct.py -------------------------------------------------------------------------------- /docs_src/transactions/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/transactions/decorator.py -------------------------------------------------------------------------------- /docs_src/transactions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/docs_src/transactions/models.py -------------------------------------------------------------------------------- /edgy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/__init__.py -------------------------------------------------------------------------------- /edgy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/__main__.py -------------------------------------------------------------------------------- /edgy/_monkay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/_monkay.py -------------------------------------------------------------------------------- /edgy/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/__init__.py -------------------------------------------------------------------------------- /edgy/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/base.py -------------------------------------------------------------------------------- /edgy/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/cli.py -------------------------------------------------------------------------------- /edgy/cli/common_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/common_params.py -------------------------------------------------------------------------------- /edgy/cli/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/constants.py -------------------------------------------------------------------------------- /edgy/cli/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/__init__.py -------------------------------------------------------------------------------- /edgy/cli/operations/admin_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/admin_serve.py -------------------------------------------------------------------------------- /edgy/cli/operations/branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/branches.py -------------------------------------------------------------------------------- /edgy/cli/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/check.py -------------------------------------------------------------------------------- /edgy/cli/operations/current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/current.py -------------------------------------------------------------------------------- /edgy/cli/operations/downgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/downgrade.py -------------------------------------------------------------------------------- /edgy/cli/operations/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/edit.py -------------------------------------------------------------------------------- /edgy/cli/operations/heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/heads.py -------------------------------------------------------------------------------- /edgy/cli/operations/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/history.py -------------------------------------------------------------------------------- /edgy/cli/operations/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/init.py -------------------------------------------------------------------------------- /edgy/cli/operations/inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/inspectdb.py -------------------------------------------------------------------------------- /edgy/cli/operations/list_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/list_templates.py -------------------------------------------------------------------------------- /edgy/cli/operations/makemigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/makemigrations.py -------------------------------------------------------------------------------- /edgy/cli/operations/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/merge.py -------------------------------------------------------------------------------- /edgy/cli/operations/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/migrate.py -------------------------------------------------------------------------------- /edgy/cli/operations/revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/revision.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/__init__.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/base.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/enums.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/ipython.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/ptpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/ptpython.py -------------------------------------------------------------------------------- /edgy/cli/operations/shell/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/shell/utils.py -------------------------------------------------------------------------------- /edgy/cli/operations/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/show.py -------------------------------------------------------------------------------- /edgy/cli/operations/stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/operations/stamp.py -------------------------------------------------------------------------------- /edgy/cli/templates/default/README: -------------------------------------------------------------------------------- 1 | Database configuration with Alembic. 2 | -------------------------------------------------------------------------------- /edgy/cli/templates/default/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/default/alembic.ini.mako -------------------------------------------------------------------------------- /edgy/cli/templates/default/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/default/env.py -------------------------------------------------------------------------------- /edgy/cli/templates/default/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/default/script.py.mako -------------------------------------------------------------------------------- /edgy/cli/templates/plain/README: -------------------------------------------------------------------------------- 1 | Database configuration with Alembic. 2 | -------------------------------------------------------------------------------- /edgy/cli/templates/plain/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/plain/alembic.ini.mako -------------------------------------------------------------------------------- /edgy/cli/templates/plain/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/plain/env.py -------------------------------------------------------------------------------- /edgy/cli/templates/plain/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/plain/script.py.mako -------------------------------------------------------------------------------- /edgy/cli/templates/sequencial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/sequencial/README -------------------------------------------------------------------------------- /edgy/cli/templates/sequencial/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/sequencial/alembic.ini.mako -------------------------------------------------------------------------------- /edgy/cli/templates/sequencial/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/sequencial/env.py -------------------------------------------------------------------------------- /edgy/cli/templates/sequencial/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/sequencial/generator.py -------------------------------------------------------------------------------- /edgy/cli/templates/sequencial/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/sequencial/script.py.mako -------------------------------------------------------------------------------- /edgy/cli/templates/url/README: -------------------------------------------------------------------------------- 1 | Database configuration with Alembic. 2 | -------------------------------------------------------------------------------- /edgy/cli/templates/url/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/url/alembic.ini.mako -------------------------------------------------------------------------------- /edgy/cli/templates/url/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/url/env.py -------------------------------------------------------------------------------- /edgy/cli/templates/url/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/cli/templates/url/script.py.mako -------------------------------------------------------------------------------- /edgy/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/conf/__init__.py -------------------------------------------------------------------------------- /edgy/conf/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/conf/enums.py -------------------------------------------------------------------------------- /edgy/conf/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/conf/global_settings.py -------------------------------------------------------------------------------- /edgy/conf/module_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/conf/module_import.py -------------------------------------------------------------------------------- /edgy/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/contrib/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/admin/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/application.py -------------------------------------------------------------------------------- /edgy/contrib/admin/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/config.py -------------------------------------------------------------------------------- /edgy/contrib/admin/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/mixins.py -------------------------------------------------------------------------------- /edgy/contrib/admin/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/permissions.py -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/404.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/404.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/base.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/base.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/base_definitions.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/base_definitions.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/base_head.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/base_head.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/dashboard.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/dashboard.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/model_detail.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/model_detail.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/model_object_create.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/model_object_create.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/model_object_detail.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/model_object_detail.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/model_object_edit.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/model_object_edit.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/templates/admin/models.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/templates/admin/models.html.jinja -------------------------------------------------------------------------------- /edgy/contrib/admin/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/contrib/admin/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/utils/messages.py -------------------------------------------------------------------------------- /edgy/contrib/admin/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/utils/models.py -------------------------------------------------------------------------------- /edgy/contrib/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/admin/views.py -------------------------------------------------------------------------------- /edgy/contrib/autoreflection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/autoreflection/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/autoreflection/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/autoreflection/metaclasses.py -------------------------------------------------------------------------------- /edgy/contrib/autoreflection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/autoreflection/models.py -------------------------------------------------------------------------------- /edgy/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/contenttypes/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/contenttypes/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/contenttypes/fields.py -------------------------------------------------------------------------------- /edgy/contrib/contenttypes/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/contenttypes/metaclasses.py -------------------------------------------------------------------------------- /edgy/contrib/contenttypes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/contenttypes/models.py -------------------------------------------------------------------------------- /edgy/contrib/lilya/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/contrib/lilya/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/lilya/middleware.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/base.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/metaclasses.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/models.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/registry.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/settings.py -------------------------------------------------------------------------------- /edgy/contrib/multi_tenancy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/multi_tenancy/utils.py -------------------------------------------------------------------------------- /edgy/contrib/pagination/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/pagination/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/pagination/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/pagination/base.py -------------------------------------------------------------------------------- /edgy/contrib/pagination/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/pagination/cursor.py -------------------------------------------------------------------------------- /edgy/contrib/permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/permissions/__init__.py -------------------------------------------------------------------------------- /edgy/contrib/permissions/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/permissions/managers.py -------------------------------------------------------------------------------- /edgy/contrib/permissions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/contrib/permissions/models.py -------------------------------------------------------------------------------- /edgy/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/core/connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/connection/__init__.py -------------------------------------------------------------------------------- /edgy/core/connection/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/connection/database.py -------------------------------------------------------------------------------- /edgy/core/connection/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/connection/registry.py -------------------------------------------------------------------------------- /edgy/core/connection/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/connection/schemas.py -------------------------------------------------------------------------------- /edgy/core/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/datastructures.py -------------------------------------------------------------------------------- /edgy/core/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/__init__.py -------------------------------------------------------------------------------- /edgy/core/db/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/constants.py -------------------------------------------------------------------------------- /edgy/core/db/context_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/context_vars.py -------------------------------------------------------------------------------- /edgy/core/db/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/datastructures.py -------------------------------------------------------------------------------- /edgy/core/db/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/__init__.py -------------------------------------------------------------------------------- /edgy/core/db/fields/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/_internal.py -------------------------------------------------------------------------------- /edgy/core/db/fields/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/base.py -------------------------------------------------------------------------------- /edgy/core/db/fields/composite_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/composite_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/computed_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/computed_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/core.py -------------------------------------------------------------------------------- /edgy/core/db/fields/exclude_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/exclude_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/factories.py -------------------------------------------------------------------------------- /edgy/core/db/fields/file_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/file_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/foreign_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/foreign_keys.py -------------------------------------------------------------------------------- /edgy/core/db/fields/image_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/image_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/many_to_many.py -------------------------------------------------------------------------------- /edgy/core/db/fields/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/mixins.py -------------------------------------------------------------------------------- /edgy/core/db/fields/one_to_one_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/one_to_one_keys.py -------------------------------------------------------------------------------- /edgy/core/db/fields/place_holder_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/place_holder_field.py -------------------------------------------------------------------------------- /edgy/core/db/fields/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/postgres.py -------------------------------------------------------------------------------- /edgy/core/db/fields/ref_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/ref_foreign_key.py -------------------------------------------------------------------------------- /edgy/core/db/fields/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/fields/types.py -------------------------------------------------------------------------------- /edgy/core/db/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/__init__.py -------------------------------------------------------------------------------- /edgy/core/db/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/base.py -------------------------------------------------------------------------------- /edgy/core/db/models/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/managers.py -------------------------------------------------------------------------------- /edgy/core/db/models/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/metaclasses.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/admin.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/db.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/dump.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/generics.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/reflection.py -------------------------------------------------------------------------------- /edgy/core/db/models/mixins/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/mixins/row.py -------------------------------------------------------------------------------- /edgy/core/db/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/model.py -------------------------------------------------------------------------------- /edgy/core/db/models/model_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/model_reference.py -------------------------------------------------------------------------------- /edgy/core/db/models/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/types.py -------------------------------------------------------------------------------- /edgy/core/db/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/models/utils.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/__init__.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/base.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/clauses.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/compiler.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/executor.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/mixins/__init__.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/mixins/combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/mixins/combined.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/mixins/queryset_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/mixins/queryset_props.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/mixins/tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/mixins/tenancy.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/parser.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/prefetch.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/queryset.py -------------------------------------------------------------------------------- /edgy/core/db/querysets/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/querysets/types.py -------------------------------------------------------------------------------- /edgy/core/db/relationships/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/core/db/relationships/related_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/relationships/related_field.py -------------------------------------------------------------------------------- /edgy/core/db/relationships/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/relationships/relation.py -------------------------------------------------------------------------------- /edgy/core/db/relationships/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/db/relationships/utils.py -------------------------------------------------------------------------------- /edgy/core/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/__init__.py -------------------------------------------------------------------------------- /edgy/core/files/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/base.py -------------------------------------------------------------------------------- /edgy/core/files/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/locks.py -------------------------------------------------------------------------------- /edgy/core/files/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/move.py -------------------------------------------------------------------------------- /edgy/core/files/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/storage/__init__.py -------------------------------------------------------------------------------- /edgy/core/files/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/storage/base.py -------------------------------------------------------------------------------- /edgy/core/files/storage/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/storage/filesystem.py -------------------------------------------------------------------------------- /edgy/core/files/storage/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/files/storage/handler.py -------------------------------------------------------------------------------- /edgy/core/marshalls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/marshalls/__init__.py -------------------------------------------------------------------------------- /edgy/core/marshalls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/marshalls/base.py -------------------------------------------------------------------------------- /edgy/core/marshalls/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/marshalls/config.py -------------------------------------------------------------------------------- /edgy/core/marshalls/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/marshalls/fields.py -------------------------------------------------------------------------------- /edgy/core/marshalls/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/marshalls/metaclasses.py -------------------------------------------------------------------------------- /edgy/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/signals.py -------------------------------------------------------------------------------- /edgy/core/tenancy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/core/tenancy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/tenancy/utils.py -------------------------------------------------------------------------------- /edgy/core/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/terminal/__init__.py -------------------------------------------------------------------------------- /edgy/core/terminal/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/terminal/base.py -------------------------------------------------------------------------------- /edgy/core/terminal/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/terminal/print.py -------------------------------------------------------------------------------- /edgy/core/terminal/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/terminal/terminal.py -------------------------------------------------------------------------------- /edgy/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/core/utils/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/utils/concurrency.py -------------------------------------------------------------------------------- /edgy/core/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/utils/db.py -------------------------------------------------------------------------------- /edgy/core/utils/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/utils/functional.py -------------------------------------------------------------------------------- /edgy/core/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/utils/models.py -------------------------------------------------------------------------------- /edgy/core/utils/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/core/utils/sync.py -------------------------------------------------------------------------------- /edgy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/exceptions.py -------------------------------------------------------------------------------- /edgy/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/protocols/many_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/protocols/many_relationship.py -------------------------------------------------------------------------------- /edgy/protocols/transaction_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/protocols/transaction_call.py -------------------------------------------------------------------------------- /edgy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testclient.py -------------------------------------------------------------------------------- /edgy/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/__init__.py -------------------------------------------------------------------------------- /edgy/testing/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/client.py -------------------------------------------------------------------------------- /edgy/testing/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/exceptions.py -------------------------------------------------------------------------------- /edgy/testing/factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/__init__.py -------------------------------------------------------------------------------- /edgy/testing/factory/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/base.py -------------------------------------------------------------------------------- /edgy/testing/factory/context_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/context_vars.py -------------------------------------------------------------------------------- /edgy/testing/factory/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/fields.py -------------------------------------------------------------------------------- /edgy/testing/factory/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/mappings.py -------------------------------------------------------------------------------- /edgy/testing/factory/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/metaclasses.py -------------------------------------------------------------------------------- /edgy/testing/factory/subfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/subfactory.py -------------------------------------------------------------------------------- /edgy/testing/factory/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/types.py -------------------------------------------------------------------------------- /edgy/testing/factory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/testing/factory/utils.py -------------------------------------------------------------------------------- /edgy/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/types.py -------------------------------------------------------------------------------- /edgy/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgy/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/utils/compat.py -------------------------------------------------------------------------------- /edgy/utils/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/utils/hashing.py -------------------------------------------------------------------------------- /edgy/utils/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/utils/inspect.py -------------------------------------------------------------------------------- /edgy/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/edgy/utils/path.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/scripts/clean -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/scripts/install -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clauses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clauses/test_and_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_and_clauses.py -------------------------------------------------------------------------------- /tests/clauses/test_not_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_not_clauses.py -------------------------------------------------------------------------------- /tests/clauses/test_or_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_or_clauses.py -------------------------------------------------------------------------------- /tests/clauses/test_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_q.py -------------------------------------------------------------------------------- /tests/clauses/test_q_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_q_m2m.py -------------------------------------------------------------------------------- /tests/clauses/test_q_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_q_nested.py -------------------------------------------------------------------------------- /tests/clauses/test_q_or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/clauses/test_q_or.py -------------------------------------------------------------------------------- /tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/custom_multidb/README: -------------------------------------------------------------------------------- 1 | Custom template 2 | -------------------------------------------------------------------------------- /tests/cli/custom_multidb/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb/alembic.ini.mako -------------------------------------------------------------------------------- /tests/cli/custom_multidb/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb/env.py -------------------------------------------------------------------------------- /tests/cli/custom_multidb/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb/script.py.mako -------------------------------------------------------------------------------- /tests/cli/custom_multidb_copied_registry/README: -------------------------------------------------------------------------------- 1 | Custom template 2 | -------------------------------------------------------------------------------- /tests/cli/custom_multidb_copied_registry/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb_copied_registry/alembic.ini.mako -------------------------------------------------------------------------------- /tests/cli/custom_multidb_copied_registry/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb_copied_registry/env.py -------------------------------------------------------------------------------- /tests/cli/custom_multidb_copied_registry/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_multidb_copied_registry/script.py.mako -------------------------------------------------------------------------------- /tests/cli/custom_singledb/README: -------------------------------------------------------------------------------- 1 | Custom template 2 | -------------------------------------------------------------------------------- /tests/cli/custom_singledb/alembic.ini.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_singledb/alembic.ini.mako -------------------------------------------------------------------------------- /tests/cli/custom_singledb/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_singledb/env.py -------------------------------------------------------------------------------- /tests/cli/custom_singledb/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/custom_singledb/script.py.mako -------------------------------------------------------------------------------- /tests/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/main.py -------------------------------------------------------------------------------- /tests/cli/main_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/main_json.py -------------------------------------------------------------------------------- /tests/cli/main_multidb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/main_multidb.py -------------------------------------------------------------------------------- /tests/cli/main_multidb_nonidentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/main_multidb_nonidentifier.py -------------------------------------------------------------------------------- /tests/cli/main_server_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/main_server_defaults.py -------------------------------------------------------------------------------- /tests/cli/test_alembic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_alembic.py -------------------------------------------------------------------------------- /tests/cli/test_inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_inspectdb.py -------------------------------------------------------------------------------- /tests/cli/test_json_to_jsonb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_json_to_jsonb.py -------------------------------------------------------------------------------- /tests/cli/test_lazy_evaluation_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_lazy_evaluation_settings.py -------------------------------------------------------------------------------- /tests/cli/test_multidb_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_multidb_templates.py -------------------------------------------------------------------------------- /tests/cli/test_nullable_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_nullable_fields.py -------------------------------------------------------------------------------- /tests/cli/test_nullable_generic_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_nullable_generic_fields.py -------------------------------------------------------------------------------- /tests/cli/test_server_default_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_server_default_fields.py -------------------------------------------------------------------------------- /tests/cli/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/test_templates.py -------------------------------------------------------------------------------- /tests/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/cli/utils.py -------------------------------------------------------------------------------- /tests/combined/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/combined/test_combined_querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/combined/test_combined_querysets.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/admin/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/admin/test_admin.py -------------------------------------------------------------------------------- /tests/contrib/admin/test_admin_complete_marshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/admin/test_admin_complete_marshall.py -------------------------------------------------------------------------------- /tests/contrib/admin/test_admin_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/admin/test_admin_custom.py -------------------------------------------------------------------------------- /tests/contrib/autoreflection/test_reflecting_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/autoreflection/test_reflecting_models.py -------------------------------------------------------------------------------- /tests/contrib/autoreflection/test_reflecting_models_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/autoreflection/test_reflecting_models_schema.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_custom.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_custom_non_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_custom_non_abstract.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_different_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_different_registry.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_iterate.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_multi_tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_multi_tenancy.py -------------------------------------------------------------------------------- /tests/contrib/contenttypes/test_contenttypes_multi_tenancy_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/contenttypes/test_contenttypes_multi_tenancy_custom.py -------------------------------------------------------------------------------- /tests/contrib/multi_tenancy/test_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/multi_tenancy/test_migrate.py -------------------------------------------------------------------------------- /tests/contrib/multi_tenancy/test_mt_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/multi_tenancy/test_mt_models.py -------------------------------------------------------------------------------- /tests/contrib/multi_tenancy/test_tenant_models_using.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/multi_tenancy/test_tenant_models_using.py -------------------------------------------------------------------------------- /tests/contrib/multi_tenancy/test_tenant_models_using_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/multi_tenancy/test_tenant_models_using_operations.py -------------------------------------------------------------------------------- /tests/contrib/multi_tenancy/test_tenant_models_working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/multi_tenancy/test_tenant_models_working.py -------------------------------------------------------------------------------- /tests/contrib/pagination/test_esmerald_integration_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/pagination/test_esmerald_integration_cursor.py -------------------------------------------------------------------------------- /tests/contrib/pagination/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/pagination/test_pagination.py -------------------------------------------------------------------------------- /tests/contrib/pagination/test_pagination_reversed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/pagination/test_pagination_reversed.py -------------------------------------------------------------------------------- /tests/contrib/permissions/test_advanced_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/permissions/test_advanced_permissions.py -------------------------------------------------------------------------------- /tests/contrib/permissions/test_group_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/permissions/test_group_permissions.py -------------------------------------------------------------------------------- /tests/contrib/permissions/test_simple_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/contrib/permissions/test_simple_permissions.py -------------------------------------------------------------------------------- /tests/exclude_secrets/test_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/exclude_secrets/test_exclude.py -------------------------------------------------------------------------------- /tests/exclude_secrets/test_exclude_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/exclude_secrets/test_exclude_nested.py -------------------------------------------------------------------------------- /tests/exclude_secrets/test_exclude_repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/exclude_secrets/test_exclude_repeated.py -------------------------------------------------------------------------------- /tests/exclude_secrets/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/exclude_secrets/test_secrets.py -------------------------------------------------------------------------------- /tests/exclude_secrets/test_secrets_fk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/exclude_secrets/test_secrets_fk.py -------------------------------------------------------------------------------- /tests/extensions/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/extensions/test_extensions.py -------------------------------------------------------------------------------- /tests/factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/factory/generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/factory/generation/test_basic_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/generation/test_basic_factory.py -------------------------------------------------------------------------------- /tests/factory/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_factory.py -------------------------------------------------------------------------------- /tests/factory/test_factory_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_factory_errors.py -------------------------------------------------------------------------------- /tests/factory/test_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_mappings.py -------------------------------------------------------------------------------- /tests/factory/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_parameters.py -------------------------------------------------------------------------------- /tests/factory/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_save.py -------------------------------------------------------------------------------- /tests/factory/test_to_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/factory/test_to_field.py -------------------------------------------------------------------------------- /tests/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fields/test_composite_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_composite_fields.py -------------------------------------------------------------------------------- /tests/fields/test_composite_fields_column_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_composite_fields_column_name.py -------------------------------------------------------------------------------- /tests/fields/test_composite_fields_fks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_composite_fields_fks.py -------------------------------------------------------------------------------- /tests/fields/test_date_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_date_field.py -------------------------------------------------------------------------------- /tests/fields/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_datetime.py -------------------------------------------------------------------------------- /tests/fields/test_datetime_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_datetime_field.py -------------------------------------------------------------------------------- /tests/fields/test_decimal_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_decimal_field.py -------------------------------------------------------------------------------- /tests/fields/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_defaults.py -------------------------------------------------------------------------------- /tests/fields/test_duration_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_duration_field.py -------------------------------------------------------------------------------- /tests/fields/test_field_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_field_validators.py -------------------------------------------------------------------------------- /tests/fields/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_fields.py -------------------------------------------------------------------------------- /tests/fields/test_file_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_file_fields.py -------------------------------------------------------------------------------- /tests/fields/test_foreignkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_foreignkeys.py -------------------------------------------------------------------------------- /tests/fields/test_image_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_image_fields.py -------------------------------------------------------------------------------- /tests/fields/test_indb_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_indb_updates.py -------------------------------------------------------------------------------- /tests/fields/test_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_inheritance.py -------------------------------------------------------------------------------- /tests/fields/test_ip_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_ip_field.py -------------------------------------------------------------------------------- /tests/fields/test_isempty_isnull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_isempty_isnull.py -------------------------------------------------------------------------------- /tests/fields/test_multi_column_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_multi_column_fields.py -------------------------------------------------------------------------------- /tests/fields/test_password_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_password_field.py -------------------------------------------------------------------------------- /tests/fields/test_pg_array_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_pg_array_field.py -------------------------------------------------------------------------------- /tests/fields/test_server_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_server_defaults.py -------------------------------------------------------------------------------- /tests/fields/test_url_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/fields/test_url_field.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/test_many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string/test_many_to_many.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/test_many_to_many_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string/test_many_to_many_field.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/test_many_to_many_field_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string/test_many_to_many_field_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/test_many_to_many_no_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string/test_many_to_many_no_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string/test_many_to_many_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string/test_many_to_many_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/test_many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string_old/test_many_to_many.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/test_many_to_many_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string_old/test_many_to_many_field.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/test_many_to_many_field_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string_old/test_many_to_many_field_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/test_many_to_many_no_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string_old/test_many_to_many_no_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/m2m_string_old/test_many_to_many_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/m2m_string_old/test_many_to_many_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_cross_registry_and_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_cross_registry_and_db.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_fk_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_fk_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_foreignkey.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_foreignkey_deep_embed_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_foreignkey_deep_embed_parent.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_foreignkey_embed_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_foreignkey_embed_parent.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_foreignkey_special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_foreignkey_special.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_foreignkey_unique_and_no_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_foreignkey_unique_and_no_constraint.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_new_naming_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_new_naming_multiple.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_old.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_related_name_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_related_name_old.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_special.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_field_special_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_field_special_auto.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_old.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_related_name.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_related_name_embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_related_name_embedded.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_related_name_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_related_name_old.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_many_to_many_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_many_to_many_unique.py -------------------------------------------------------------------------------- /tests/foreign_keys/test_ref_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/foreign_keys/test_ref_foreignkey.py -------------------------------------------------------------------------------- /tests/images/mini_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/images/mini_image.jpg -------------------------------------------------------------------------------- /tests/images/mini_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/images/mini_image.png -------------------------------------------------------------------------------- /tests/indexes/test_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/indexes/test_indexes.py -------------------------------------------------------------------------------- /tests/indexes/test_indexes_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/indexes/test_indexes_clauses.py -------------------------------------------------------------------------------- /tests/indexes/test_indexes_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/indexes/test_indexes_errors.py -------------------------------------------------------------------------------- /tests/indexes/test_indexes_inherit_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/indexes/test_indexes_inherit_abstract.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_create_and_return_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_create_and_return_model.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_create_and_return_model_list_fk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_create_and_return_model_list_fk.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_fk_reference_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_fk_reference_middleware.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_models_validation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_models_validation_error.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_tenant.py -------------------------------------------------------------------------------- /tests/integration/test_esmerald_tenant_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/integration/test_esmerald_tenant_user.py -------------------------------------------------------------------------------- /tests/managers/test_manager_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_manager_error.py -------------------------------------------------------------------------------- /tests/managers/test_manager_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_manager_simple.py -------------------------------------------------------------------------------- /tests/managers/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_managers.py -------------------------------------------------------------------------------- /tests/managers/test_managers_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_managers_abstract.py -------------------------------------------------------------------------------- /tests/managers/test_managers_inherited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_managers_inherited.py -------------------------------------------------------------------------------- /tests/managers/test_managers_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_managers_related.py -------------------------------------------------------------------------------- /tests/managers/test_queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/managers/test_queryset.py -------------------------------------------------------------------------------- /tests/marshalls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/marshalls/save/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_all.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_all_with_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_all_with_custom.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_exclude.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_import_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_import_string.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_method_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_method_field.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_source.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_marshall_source_from_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_marshall_source_from_property.py -------------------------------------------------------------------------------- /tests/marshalls/save/test_simple_marshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/save/test_simple_marshall.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_all.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_all_with_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_all_with_custom.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_config_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_config_errors.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_context.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_exclude.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_import_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_import_string.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_method_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_method_field.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_source.py -------------------------------------------------------------------------------- /tests/marshalls/test_marshall_source_from_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_marshall_source_from_property.py -------------------------------------------------------------------------------- /tests/marshalls/test_simple_marshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_simple_marshall.py -------------------------------------------------------------------------------- /tests/marshalls/test_simple_marshall_different_explicit_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_simple_marshall_different_explicit_pk.py -------------------------------------------------------------------------------- /tests/marshalls/test_simple_marshall_different_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/marshalls/test_simple_marshall_different_id.py -------------------------------------------------------------------------------- /tests/metaclass/test_lazyness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/metaclass/test_lazyness.py -------------------------------------------------------------------------------- /tests/metaclass/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/metaclass/test_meta.py -------------------------------------------------------------------------------- /tests/metaclass/test_meta_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/metaclass/test_meta_errors.py -------------------------------------------------------------------------------- /tests/models/run_sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/run_sync/test_bulk_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_bulk_create.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_bulk_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_bulk_update.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_abstract.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_class.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_count.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_defer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_defer.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_distinct.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_exists.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_first.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_get_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_get_or_create.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_get_or_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_get_or_none.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_group_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_group_by.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_inheritance.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_last.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_limit.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_multiple_inheritance.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_offset.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_only.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_order_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_order_by.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_primary_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_primary_key.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_queryset_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_queryset_delete.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_queryset_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_queryset_update.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_registry.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_search.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_sqlalchemy.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_sync.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_update_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_update_or_create.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_values.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_model_values_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_model_values_list.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_models_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_models_filter.py -------------------------------------------------------------------------------- /tests/models/run_sync/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/run_sync/test_save.py -------------------------------------------------------------------------------- /tests/models/test_bulk_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_bulk_create.py -------------------------------------------------------------------------------- /tests/models/test_bulk_get_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_bulk_get_or_create.py -------------------------------------------------------------------------------- /tests/models/test_bulk_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_bulk_update.py -------------------------------------------------------------------------------- /tests/models/test_embeddables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_embeddables.py -------------------------------------------------------------------------------- /tests/models/test_increment_onsave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_increment_onsave.py -------------------------------------------------------------------------------- /tests/models/test_inner_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_inner_select.py -------------------------------------------------------------------------------- /tests/models/test_model_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_abstract.py -------------------------------------------------------------------------------- /tests/models/test_model_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_class.py -------------------------------------------------------------------------------- /tests/models/test_model_class_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_class_mixed.py -------------------------------------------------------------------------------- /tests/models/test_model_copying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_copying.py -------------------------------------------------------------------------------- /tests/models/test_model_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_count.py -------------------------------------------------------------------------------- /tests/models/test_model_defer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_defer.py -------------------------------------------------------------------------------- /tests/models/test_model_distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_distinct.py -------------------------------------------------------------------------------- /tests/models/test_model_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_exists.py -------------------------------------------------------------------------------- /tests/models/test_model_first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_first.py -------------------------------------------------------------------------------- /tests/models/test_model_get_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_get_or_create.py -------------------------------------------------------------------------------- /tests/models/test_model_get_or_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_get_or_none.py -------------------------------------------------------------------------------- /tests/models/test_model_group_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_group_by.py -------------------------------------------------------------------------------- /tests/models/test_model_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_inheritance.py -------------------------------------------------------------------------------- /tests/models/test_model_isnull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_isnull.py -------------------------------------------------------------------------------- /tests/models/test_model_last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_last.py -------------------------------------------------------------------------------- /tests/models/test_model_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_limit.py -------------------------------------------------------------------------------- /tests/models/test_model_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_multiple_inheritance.py -------------------------------------------------------------------------------- /tests/models/test_model_multiple_primary_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_multiple_primary_keys.py -------------------------------------------------------------------------------- /tests/models/test_model_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_offset.py -------------------------------------------------------------------------------- /tests/models/test_model_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_only.py -------------------------------------------------------------------------------- /tests/models/test_model_order_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_order_by.py -------------------------------------------------------------------------------- /tests/models/test_model_primary_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_primary_key.py -------------------------------------------------------------------------------- /tests/models/test_model_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_proxy.py -------------------------------------------------------------------------------- /tests/models/test_model_queryset_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_queryset_delete.py -------------------------------------------------------------------------------- /tests/models/test_model_queryset_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_queryset_update.py -------------------------------------------------------------------------------- /tests/models/test_model_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_registry.py -------------------------------------------------------------------------------- /tests/models/test_model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_search.py -------------------------------------------------------------------------------- /tests/models/test_model_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_sqlalchemy.py -------------------------------------------------------------------------------- /tests/models/test_model_update_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_update_or_create.py -------------------------------------------------------------------------------- /tests/models/test_model_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_values.py -------------------------------------------------------------------------------- /tests/models/test_model_values_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_model_values_list.py -------------------------------------------------------------------------------- /tests/models/test_models_extra_and_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_models_extra_and_reference.py -------------------------------------------------------------------------------- /tests/models/test_models_extra_and_reference_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_models_extra_and_reference_embed.py -------------------------------------------------------------------------------- /tests/models/test_models_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_models_filter.py -------------------------------------------------------------------------------- /tests/models/test_models_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_models_inheritance.py -------------------------------------------------------------------------------- /tests/models/test_nested_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_nested_dump.py -------------------------------------------------------------------------------- /tests/models/test_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_reverse.py -------------------------------------------------------------------------------- /tests/models/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_save.py -------------------------------------------------------------------------------- /tests/models/test_select_related_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_select_related_mul.py -------------------------------------------------------------------------------- /tests/models/test_select_related_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_select_related_nested.py -------------------------------------------------------------------------------- /tests/models/test_select_related_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/models/test_select_related_single.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_error.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_m2m.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_multiple.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_multiple_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_multiple_iterate.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_object.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_related_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_related_nested.py -------------------------------------------------------------------------------- /tests/prefetch/test_prefetch_related_with_select_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/prefetch/test_prefetch_related_with_select_related.py -------------------------------------------------------------------------------- /tests/pydantic_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pydantic_tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/pydantic_tests/test_fields.py -------------------------------------------------------------------------------- /tests/querysets/test_queryset_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/querysets/test_queryset_class.py -------------------------------------------------------------------------------- /tests/reflection/test_table_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/reflection/test_table_reflection.py -------------------------------------------------------------------------------- /tests/reflection/test_table_reflection_schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/reflection/test_table_reflection_schemes.py -------------------------------------------------------------------------------- /tests/reflection/test_table_reflection_special_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/reflection/test_table_reflection_special_fields.py -------------------------------------------------------------------------------- /tests/registry/test_different_registry_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/registry/test_different_registry_default.py -------------------------------------------------------------------------------- /tests/registry/test_registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/registry/test_registries.py -------------------------------------------------------------------------------- /tests/registry/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/registry/test_registry.py -------------------------------------------------------------------------------- /tests/registry/test_registry_copying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/registry/test_registry_copying.py -------------------------------------------------------------------------------- /tests/registry/test_registry_run_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/registry/test_registry_run_sync.py -------------------------------------------------------------------------------- /tests/select_for_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/select_for_update/test_select_for_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/select_for_update/test_select_for_update.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings/__init__.py -------------------------------------------------------------------------------- /tests/settings/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings/default.py -------------------------------------------------------------------------------- /tests/settings/disabled_auto_server_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings/disabled_auto_server_defaults.py -------------------------------------------------------------------------------- /tests/settings/multidb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings/multidb.py -------------------------------------------------------------------------------- /tests/settings/multidb_nonidentifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/settings/multidb_nonidentifier.py -------------------------------------------------------------------------------- /tests/signals/test_deletion_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/signals/test_deletion_signals.py -------------------------------------------------------------------------------- /tests/signals/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/signals/test_signals.py -------------------------------------------------------------------------------- /tests/tenancy/test_activate_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_activate_tenant.py -------------------------------------------------------------------------------- /tests/tenancy/test_activate_tenant_precedent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_activate_tenant_precedent.py -------------------------------------------------------------------------------- /tests/tenancy/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_load.py -------------------------------------------------------------------------------- /tests/tenancy/test_mt_bulk_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_mt_bulk_create.py -------------------------------------------------------------------------------- /tests/tenancy/test_mt_bulk_create_different_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_mt_bulk_create_different_db.py -------------------------------------------------------------------------------- /tests/tenancy/test_normal_tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_normal_tenancy.py -------------------------------------------------------------------------------- /tests/tenancy/test_raise_assertation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_raise_assertation_error.py -------------------------------------------------------------------------------- /tests/tenancy/test_select_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_select_related.py -------------------------------------------------------------------------------- /tests/tenancy/test_select_related_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_select_related_multiple.py -------------------------------------------------------------------------------- /tests/tenancy/test_select_related_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_select_related_two.py -------------------------------------------------------------------------------- /tests/tenancy/test_tenancy_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/tenancy/test_tenancy_queries.py -------------------------------------------------------------------------------- /tests/test_automigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_automigrations.py -------------------------------------------------------------------------------- /tests/test_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_columns.py -------------------------------------------------------------------------------- /tests/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_constraints.py -------------------------------------------------------------------------------- /tests/test_database_rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_database_rollback.py -------------------------------------------------------------------------------- /tests/test_database_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_database_url.py -------------------------------------------------------------------------------- /tests/test_db_connected_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_db_connected_warnings.py -------------------------------------------------------------------------------- /tests/test_declarative_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_declarative_models.py -------------------------------------------------------------------------------- /tests/test_lazy_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_lazy_imports.py -------------------------------------------------------------------------------- /tests/test_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_migrate.py -------------------------------------------------------------------------------- /tests/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/test_transactions.py -------------------------------------------------------------------------------- /tests/uniques/test_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/uniques/test_unique.py -------------------------------------------------------------------------------- /tests/uniques/test_unique_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/uniques/test_unique_constraint.py -------------------------------------------------------------------------------- /tests/uniques/test_unique_constraint_inherited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/uniques/test_unique_constraint_inherited.py -------------------------------------------------------------------------------- /tests/uniques/test_unique_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/uniques/test_unique_together.py -------------------------------------------------------------------------------- /tests/uniques/test_unique_together_inherited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dymmond/edgy/HEAD/tests/uniques/test_unique_together_inherited.py --------------------------------------------------------------------------------