LICENSE
README.md
pyproject.toml
tamilPY.egg-info/PKG-INFO
tamilPY.egg-info/SOURCES.txt
tamilPY.egg-info/dependency_links.txt
tamilPY.egg-info/entry_points.txt
tamilPY.egg-info/requires.txt
tamilPY.egg-info/top_level.txt
tests/test_admin_generation.py
tests/test_auth_generation.py
tests/test_cli_e2e.py
tests/test_make_commands.py
tests/test_parser_and_generation.py
tests/test_providers_sql.py
tests/test_schema_dsl.py
tests/test_schema_roundtrip.py
tests/test_starter_templates.py
tests/test_studio_api.py
tpy/__init__.py
tpy/cli.py
tpy/exceptions.py
tpy/py.typed
tpy/starter_templates.py
tpy/cache/__init__.py
tpy/cache/exceptions.py
tpy/cache/file.py
tpy/cache/manager.py
tpy/cache/memory.py
tpy/cache/redis_store.py
tpy/cache/store.py
tpy/commands/__init__.py
tpy/commands/about.py
tpy/commands/admin.py
tpy/commands/auth.py
tpy/commands/build.py
tpy/commands/cache.py
tpy/commands/config.py
tpy/commands/crud.py
tpy/commands/db.py
tpy/commands/doctor.py
tpy/commands/make.py
tpy/commands/migrate.py
tpy/commands/new.py
tpy/commands/optimize.py
tpy/commands/queue.py
tpy/commands/route.py
tpy/commands/schedule.py
tpy/commands/seed.py
tpy/commands/serve.py
tpy/commands/studio.py
tpy/commands/templates.py
tpy/commands/version.py
tpy/commands/watch.py
tpy/config/__init__.py
tpy/config/loader.py
tpy/config/manager.py
tpy/config/settings.py
tpy/database/__init__.py
tpy/database/column.py
tpy/database/migration.py
tpy/database/seeder.py
tpy/events/__init__.py
tpy/events/dispatcher.py
tpy/events/event.py
tpy/events/exceptions.py
tpy/events/listener.py
tpy/generator/__init__.py
tpy/generator/admin_generator.py
tpy/generator/auth_generator.py
tpy/generator/controller_generator.py
tpy/generator/crud_generator.py
tpy/generator/make_generator.py
tpy/generator/migration_generator.py
tpy/generator/model_generator.py
tpy/generator/repository_generator.py
tpy/generator/route_generator.py
tpy/generator/schema_generator.py
tpy/generator/service_generator.py
tpy/http/__init__.py
tpy/http/builtin_middleware.py
tpy/http/exceptions.py
tpy/http/health.py
tpy/http/lifecycle.py
tpy/http/middleware.py
tpy/http/response.py
tpy/http/route_cache.py
tpy/kernel/__init__.py
tpy/kernel/application.py
tpy/kernel/container.py
tpy/kernel/exceptions.py
tpy/kernel/plugin.py
tpy/kernel/provider.py
tpy/kernel/providers.py
tpy/logging/__init__.py
tpy/logging/manager.py
tpy/parser/__init__.py
tpy/parser/ast.py
tpy/parser/json_ast.py
tpy/parser/lexer.py
tpy/parser/parser.py
tpy/parser/serializer.py
tpy/parser/tokens.py
tpy/providers/__init__.py
tpy/providers/base.py
tpy/providers/factory.py
tpy/providers/mongodb/__init__.py
tpy/providers/mongodb/provider.py
tpy/providers/mysql/__init__.py
tpy/providers/mysql/provider.py
tpy/providers/postgres/__init__.py
tpy/providers/postgres/provider.py
tpy/providers/sqlite/__init__.py
tpy/providers/sqlite/provider.py
tpy/query/__init__.py
tpy/query/builder.py
tpy/query/clause.py
tpy/query/eager.py
tpy/query/exceptions.py
tpy/query/expression.py
tpy/query/grammar.py
tpy/query/mongo_grammar.py
tpy/query/paginator.py
tpy/query/relation_registry.py
tpy/query/relations.py
tpy/query/schema_relations.py
tpy/queue/__init__.py
tpy/queue/exceptions.py
tpy/queue/job.py
tpy/queue/queue.py
tpy/queue/serializer.py
tpy/queue/worker.py
tpy/queue/drivers/__init__.py
tpy/queue/drivers/base.py
tpy/queue/drivers/database.py
tpy/queue/drivers/redis.py
tpy/queue/drivers/sync.py
tpy/runtime/__init__.py
tpy/runtime/base_model.py
tpy/runtime/builder.py
tpy/runtime/logger.py
tpy/runtime/request.py
tpy/runtime/response.py
tpy/runtime/routing.py
tpy/runtime/template_engine.py
tpy/runtime/validation.py
tpy/schedule/__init__.py
tpy/schedule/cron.py
tpy/schedule/event.py
tpy/schedule/exceptions.py
tpy/schedule/scheduler.py
tpy/schema/__init__.py
tpy/schema/errors.py
tpy/schema/validator.py
tpy/studio/__init__.py
tpy/studio/api.py
tpy/studio/auth_store.py
tpy/studio/env_config.py
tpy/studio/runners.py
tpy/studio/server.py
tpy/studio/ui/dist/index.html
tpy/studio/ui/dist/assets/index-C--xN0NV.css
tpy/studio/ui/dist/assets/index-yUK02Pgv.js
tpy/templates/registry.json
tpy/templates/admin/README.md.j2
tpy/templates/admin/index.html.j2
tpy/templates/admin/package.json.j2
tpy/templates/admin/vite.config.js.j2
tpy/templates/admin/src/App.jsx.j2
tpy/templates/admin/src/config.js.j2
tpy/templates/admin/src/main.jsx.j2
tpy/templates/admin/src/styles.css.j2
tpy/templates/admin/src/api/client.js.j2
tpy/templates/admin/src/auth/session.js.j2
tpy/templates/admin/src/components/DataTable.jsx.j2
tpy/templates/admin/src/components/Layout.jsx.j2
tpy/templates/admin/src/components/PageHeader.jsx.j2
tpy/templates/admin/src/components/RecordForm.jsx.j2
tpy/templates/admin/src/components/RequireAuth.jsx.j2
tpy/templates/admin/src/components/StatusMessage.jsx.j2
tpy/templates/admin/src/pages/LoginPage.jsx.j2
tpy/templates/admin/src/pages/ModelFormPage.jsx.j2
tpy/templates/admin/src/pages/ModelListPage.jsx.j2
tpy/templates/admin/src/utils/fields.js.j2
tpy/templates/auth/controllers_auth.py.j2
tpy/templates/auth/middleware_auth.py.j2
tpy/templates/auth/routes_auth.py.j2
tpy/templates/auth/schemas_auth.py.j2
tpy/templates/auth/security_jwt.py.j2
tpy/templates/auth/seed_auth_role.py.j2
tpy/templates/auth/services_auth.py.j2
tpy/templates/blog-cms/README.md
tpy/templates/blog-cms/admin-theme.json
tpy/templates/blog-cms/schema.tpy
tpy/templates/blog-cms/seeds/blog_seed.py
tpy/templates/crm/README.md
tpy/templates/crm/admin-theme.json
tpy/templates/crm/schema.tpy
tpy/templates/crm/seeds/crm_seed.py
tpy/templates/generators/controller.py.j2
tpy/templates/generators/migration.py.j2
tpy/templates/generators/model.py.j2
tpy/templates/generators/mongo_repository.py.j2
tpy/templates/generators/repository.py.j2
tpy/templates/generators/route.py.j2
tpy/templates/generators/schema.py.j2
tpy/templates/generators/service.py.j2
tpy/templates/helpdesk/README.md
tpy/templates/helpdesk/admin-theme.json
tpy/templates/helpdesk/schema.tpy
tpy/templates/helpdesk/seeds/helpdesk_seed.py
tpy/templates/institute-admin/README.md
tpy/templates/institute-admin/admin-theme.json
tpy/templates/institute-admin/schema.tpy
tpy/templates/institute-admin/seeds/institute_seed.py
tpy/templates/inventory/README.md
tpy/templates/inventory/admin-theme.json
tpy/templates/inventory/schema.tpy
tpy/templates/inventory/seeds/inventory_seed.py
tpy/templates/project/README.md
tpy/templates/project/app_logger.py
tpy/templates/project/app_providers_database.py
tpy/templates/project/app_schedule.py
tpy/templates/project/database_seed_demo.py
tpy/templates/project/env
tpy/templates/project/gitignore
tpy/templates/project/main.py
tpy/templates/project/requirements.txt
tpy/templates/project/run_main.py
tpy/templates/project/schema.tpy
tpy/templates/project/tpy.toml
tpy/utils/__init__.py
tpy/utils/console.py
tpy/utils/db_wizard.py
tpy/utils/file_manager.py
tpy/utils/files.py
tpy/utils/generated.py
tpy/validation/__init__.py
tpy/validation/exceptions.py
tpy/validation/parser.py
tpy/validation/rules.py
tpy/validation/validator.py