velocity-python 0.0.105__py3-none-any.whl → 0.0.155__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. velocity/__init__.py +3 -1
  2. velocity/app/orders.py +3 -4
  3. velocity/app/tests/__init__.py +1 -0
  4. velocity/app/tests/test_email_processing.py +112 -0
  5. velocity/app/tests/test_payment_profile_sorting.py +191 -0
  6. velocity/app/tests/test_spreadsheet_functions.py +124 -0
  7. velocity/aws/__init__.py +3 -0
  8. velocity/aws/amplify.py +10 -6
  9. velocity/aws/handlers/__init__.py +2 -0
  10. velocity/aws/handlers/base_handler.py +248 -0
  11. velocity/aws/handlers/context.py +167 -2
  12. velocity/aws/handlers/exceptions.py +16 -0
  13. velocity/aws/handlers/lambda_handler.py +24 -85
  14. velocity/aws/handlers/mixins/__init__.py +16 -0
  15. velocity/aws/handlers/mixins/activity_tracker.py +181 -0
  16. velocity/aws/handlers/mixins/aws_session_mixin.py +192 -0
  17. velocity/aws/handlers/mixins/error_handler.py +192 -0
  18. velocity/aws/handlers/mixins/legacy_mixin.py +53 -0
  19. velocity/aws/handlers/mixins/standard_mixin.py +73 -0
  20. velocity/aws/handlers/response.py +1 -1
  21. velocity/aws/handlers/sqs_handler.py +28 -143
  22. velocity/aws/tests/__init__.py +1 -0
  23. velocity/aws/tests/test_lambda_handler_json_serialization.py +120 -0
  24. velocity/aws/tests/test_response.py +163 -0
  25. velocity/db/__init__.py +16 -4
  26. velocity/db/core/decorators.py +20 -4
  27. velocity/db/core/engine.py +185 -792
  28. velocity/db/core/result.py +36 -22
  29. velocity/db/core/row.py +15 -3
  30. velocity/db/core/table.py +283 -44
  31. velocity/db/core/transaction.py +19 -11
  32. velocity/db/exceptions.py +42 -18
  33. velocity/db/servers/base/__init__.py +9 -0
  34. velocity/db/servers/base/initializer.py +70 -0
  35. velocity/db/servers/base/operators.py +98 -0
  36. velocity/db/servers/base/sql.py +503 -0
  37. velocity/db/servers/base/types.py +135 -0
  38. velocity/db/servers/mysql/__init__.py +73 -0
  39. velocity/db/servers/mysql/operators.py +54 -0
  40. velocity/db/servers/{mysql_reserved.py → mysql/reserved.py} +2 -14
  41. velocity/db/servers/mysql/sql.py +718 -0
  42. velocity/db/servers/mysql/types.py +107 -0
  43. velocity/db/servers/postgres/__init__.py +59 -11
  44. velocity/db/servers/postgres/operators.py +34 -0
  45. velocity/db/servers/postgres/sql.py +474 -120
  46. velocity/db/servers/postgres/types.py +88 -2
  47. velocity/db/servers/sqlite/__init__.py +61 -0
  48. velocity/db/servers/sqlite/operators.py +52 -0
  49. velocity/db/servers/sqlite/reserved.py +20 -0
  50. velocity/db/servers/sqlite/sql.py +677 -0
  51. velocity/db/servers/sqlite/types.py +92 -0
  52. velocity/db/servers/sqlserver/__init__.py +73 -0
  53. velocity/db/servers/sqlserver/operators.py +47 -0
  54. velocity/db/servers/sqlserver/reserved.py +32 -0
  55. velocity/db/servers/sqlserver/sql.py +805 -0
  56. velocity/db/servers/sqlserver/types.py +114 -0
  57. velocity/db/servers/tablehelper.py +117 -91
  58. velocity/db/tests/__init__.py +1 -0
  59. velocity/db/tests/common_db_test.py +0 -0
  60. velocity/db/tests/postgres/__init__.py +1 -0
  61. velocity/db/tests/postgres/common.py +49 -0
  62. velocity/db/tests/postgres/test_column.py +29 -0
  63. velocity/db/tests/postgres/test_connections.py +25 -0
  64. velocity/db/tests/postgres/test_database.py +21 -0
  65. velocity/db/tests/postgres/test_engine.py +205 -0
  66. velocity/db/tests/postgres/test_general_usage.py +88 -0
  67. velocity/db/tests/postgres/test_imports.py +8 -0
  68. velocity/db/tests/postgres/test_result.py +19 -0
  69. velocity/db/tests/postgres/test_row.py +137 -0
  70. velocity/db/tests/postgres/test_row_comprehensive.py +720 -0
  71. velocity/db/tests/postgres/test_schema_locking.py +335 -0
  72. velocity/db/tests/postgres/test_schema_locking_unit.py +115 -0
  73. velocity/db/tests/postgres/test_sequence.py +34 -0
  74. velocity/db/tests/postgres/test_sql_comprehensive.py +462 -0
  75. velocity/db/tests/postgres/test_table.py +101 -0
  76. velocity/db/tests/postgres/test_table_comprehensive.py +646 -0
  77. velocity/db/tests/postgres/test_transaction.py +106 -0
  78. velocity/db/tests/sql/__init__.py +1 -0
  79. velocity/db/tests/sql/common.py +177 -0
  80. velocity/db/tests/sql/test_postgres_select_advanced.py +285 -0
  81. velocity/db/tests/sql/test_postgres_select_variances.py +517 -0
  82. velocity/db/tests/test_cursor_rowcount_fix.py +150 -0
  83. velocity/db/tests/test_db_utils.py +221 -0
  84. velocity/db/tests/test_postgres.py +448 -0
  85. velocity/db/tests/test_postgres_unchanged.py +81 -0
  86. velocity/db/tests/test_process_error_robustness.py +292 -0
  87. velocity/db/tests/test_result_caching.py +279 -0
  88. velocity/db/tests/test_result_sql_aware.py +117 -0
  89. velocity/db/tests/test_row_get_missing_column.py +72 -0
  90. velocity/db/tests/test_schema_locking_initializers.py +226 -0
  91. velocity/db/tests/test_schema_locking_simple.py +97 -0
  92. velocity/db/tests/test_sql_builder.py +165 -0
  93. velocity/db/tests/test_tablehelper.py +486 -0
  94. velocity/db/utils.py +62 -47
  95. velocity/misc/conv/__init__.py +2 -0
  96. velocity/misc/conv/iconv.py +5 -4
  97. velocity/misc/export.py +1 -4
  98. velocity/misc/merge.py +1 -1
  99. velocity/misc/tests/__init__.py +1 -0
  100. velocity/misc/tests/test_db.py +90 -0
  101. velocity/misc/tests/test_fix.py +78 -0
  102. velocity/misc/tests/test_format.py +64 -0
  103. velocity/misc/tests/test_iconv.py +203 -0
  104. velocity/misc/tests/test_merge.py +82 -0
  105. velocity/misc/tests/test_oconv.py +144 -0
  106. velocity/misc/tests/test_original_error.py +52 -0
  107. velocity/misc/tests/test_timer.py +74 -0
  108. velocity/misc/tools.py +0 -1
  109. {velocity_python-0.0.105.dist-info → velocity_python-0.0.155.dist-info}/METADATA +2 -2
  110. velocity_python-0.0.155.dist-info/RECORD +129 -0
  111. velocity/db/core/exceptions.py +0 -70
  112. velocity/db/servers/mysql.py +0 -641
  113. velocity/db/servers/sqlite.py +0 -968
  114. velocity/db/servers/sqlite_reserved.py +0 -208
  115. velocity/db/servers/sqlserver.py +0 -921
  116. velocity/db/servers/sqlserver_reserved.py +0 -314
  117. velocity_python-0.0.105.dist-info/RECORD +0 -56
  118. {velocity_python-0.0.105.dist-info → velocity_python-0.0.155.dist-info}/WHEEL +0 -0
  119. {velocity_python-0.0.105.dist-info → velocity_python-0.0.155.dist-info}/licenses/LICENSE +0 -0
  120. {velocity_python-0.0.105.dist-info → velocity_python-0.0.155.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,129 @@
1
+ velocity/__init__.py,sha256=yUa97y1Q9BlLpTAAGQNMYBYbhbmb3eOdhWrKFIbxfsg,147
2
+ velocity/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ velocity/app/invoices.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ velocity/app/orders.py,sha256=C7ewngMpO8nD3ul_82o4FhZBdRkWvJtnuEbEJUKDCno,6151
5
+ velocity/app/payments.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ velocity/app/purchase_orders.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ velocity/app/tests/__init__.py,sha256=mqbNes8CjWTYLgCEgmu3EZudF6HZj671friAsAa4m_E,19
8
+ velocity/app/tests/test_email_processing.py,sha256=dXo2NW7tmCh_GmIl3LR8wD7H8aZU2eaZKL_-Cdgig8A,4571
9
+ velocity/app/tests/test_payment_profile_sorting.py,sha256=KbxGBozI6L0PNYUiglllwyxVwG2-_L5HN5DAoHnXbaQ,6922
10
+ velocity/app/tests/test_spreadsheet_functions.py,sha256=EKGJeOP6lWAqa-vLZ4VN3qDxfYET3avjLFxs5t_AFwc,4926
11
+ velocity/aws/__init__.py,sha256=0nEsX68Q4I7Z7ybECJnNWsC8QhWOijn4NpaFgyzyfXA,685
12
+ velocity/aws/amplify.py,sha256=VgSgon0XxboIozz0tKyUohgLIigelhe4W7EH8kwbnLg,15330
13
+ velocity/aws/handlers/__init__.py,sha256=4-NKj8dBzjYEdIlNdfm_Ip5mI0oOGcpjjBcMwU42yhQ,227
14
+ velocity/aws/handlers/base_handler.py,sha256=bapdzWss5lXesoLPsVwJo9hQMZLdz7XOubo3sK70xC8,7960
15
+ velocity/aws/handlers/context.py,sha256=0kPZ8y-XjmBZY5NcexynR5htnWYfF0nwM1n5UH-6c5w,8413
16
+ velocity/aws/handlers/exceptions.py,sha256=i4wcB8ZSWUHglX2xnesDlWLsU9AMYU72cHCWRBDmjQ8,361
17
+ velocity/aws/handlers/lambda_handler.py,sha256=0wa_CHyJOaI5RsHqB0Ae83-B-SwlKR0qkGUlc7jitQI,4427
18
+ velocity/aws/handlers/response.py,sha256=s2Kw7yv5zAir1mEmfv6yBVIvRcRQ__xyryf1SrvtiRc,9317
19
+ velocity/aws/handlers/sqs_handler.py,sha256=azuV8DrFOh0hM13EnPzyYVBS-3fLe2fn9OPc4ho7sGc,3375
20
+ velocity/aws/handlers/mixins/__init__.py,sha256=_zyEpsnKikF7D7X-F0GA4cyIrQ6wBq7k5j6Vhp17vaQ,623
21
+ velocity/aws/handlers/mixins/activity_tracker.py,sha256=vyQ_8kpSprjzLoALDv7g2rVkfstn89Tbsg6Zb9GmVOk,6579
22
+ velocity/aws/handlers/mixins/aws_session_mixin.py,sha256=yTa2-n4zgv23wbW3uZUp-L4CUJy8vSL8IMMNjMlYFVg,6806
23
+ velocity/aws/handlers/mixins/error_handler.py,sha256=uN2YF9v-3LzS3o_HdVpO-XMcPy3sS7SHjUg_LfbsG7Q,6803
24
+ velocity/aws/handlers/mixins/legacy_mixin.py,sha256=_YhiPU-zzXQjGNSAKhoUwfTFlnczmU-3BkwNFqr0hYE,2117
25
+ velocity/aws/handlers/mixins/standard_mixin.py,sha256=-wBX0PFlZAnxQsaMDEWr-xmU8TcRbQ4BZD3wmAKR2d0,2489
26
+ velocity/aws/tests/__init__.py,sha256=hk-efPTkFb_py5ouA5d1OuPVQzaa5Wa01Wsc1oQ9dhY,19
27
+ velocity/aws/tests/test_lambda_handler_json_serialization.py,sha256=VuikDD_tbRbAFsbiuQ6879Jo9_FL51xlWcfJRW_LB1k,4265
28
+ velocity/aws/tests/test_response.py,sha256=sCg6qOSDWNncnmkuf4N3gO5fxQQ3PyFNMRsYy195nKo,6546
29
+ velocity/db/__init__.py,sha256=7XRUHY2af0HL1jvL0SAMpxSe5a2Phbkm-YLJCvC1C_0,739
30
+ velocity/db/exceptions.py,sha256=LbgYJfY2nCBu7tBC_U1BwdczypJ24S6CUyREG_N5gO0,2345
31
+ velocity/db/utils.py,sha256=IoXeAL_0wZE15gbxlb2TtNdHzUSV9bIvw8jNkqjz38o,7020
32
+ velocity/db/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ velocity/db/core/column.py,sha256=tAr8tL3a2nyaYpNHhGl508FrY_pGZTzyYgjAV5CEBv4,4092
34
+ velocity/db/core/database.py,sha256=3zNGItklu9tZCKsbx2T2vCcU1so8AL9PPL0DLjvaz6s,3554
35
+ velocity/db/core/decorators.py,sha256=quhjMoEmK_l2jF7jXyL5Fgv8uisIpBz34Au5d3U6UHs,5276
36
+ velocity/db/core/engine.py,sha256=mNlaFPruHO935phKPVrsxZprGYUvxW-zp2sBcBZ-KCg,20666
37
+ velocity/db/core/result.py,sha256=b0ie3yZAOj9S57x32uFFGKZ95zhImmZ0iXl0X1qYszc,12813
38
+ velocity/db/core/row.py,sha256=GOWm-HEBPCBwdqMHMBRc41m0Hoht4vRVQLkvdogX1fU,7729
39
+ velocity/db/core/sequence.py,sha256=VMBc0ZjGnOaWTwKW6xMNTdP8rZ2umQ8ml4fHTTwuGq4,3904
40
+ velocity/db/core/table.py,sha256=7ywF5nNLMru8f2lqDOYsJJTbPW9-eJ-G9UOPCmQezTw,43356
41
+ velocity/db/core/transaction.py,sha256=VrEp37b2d_rRDHKYYm-0D0BiVtYZVltM3zooer25Klg,6918
42
+ velocity/db/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ velocity/db/servers/tablehelper.py,sha256=Q48ObN5KD_U2sBP0GUcjaQjKeE4Hr351sPQirwQ0_1s,22163
44
+ velocity/db/servers/base/__init__.py,sha256=5--XJUeEAm7O6Ns2C_ODCr5TjFhdAge-zApZCT0LGTQ,285
45
+ velocity/db/servers/base/initializer.py,sha256=4HaPZxS5aJNXAlMs4zxjrkkvaeVmNLnIlhMxlFK84cU,2398
46
+ velocity/db/servers/base/operators.py,sha256=kUEorYuAKMc0en8Ufs4xe3rAOT65UgQmLQEKC2aIELs,2755
47
+ velocity/db/servers/base/sql.py,sha256=w1EjfyrzosFUE0zG2fA3R41JyBnOtJuHAMgEldff9eY,13367
48
+ velocity/db/servers/base/types.py,sha256=3LBxFCD35eeIsIqftpAJh0JjUVonDYemz2n6AMtKHqw,4033
49
+ velocity/db/servers/mysql/__init__.py,sha256=mASO5JB0xkzYngwx2X79yyKifYRqxIdfKFWutIHuw7k,2661
50
+ velocity/db/servers/mysql/operators.py,sha256=wHmVSPxlPGbOdvQEmsfKhD25H8djovSbNcmacLHDVkI,1273
51
+ velocity/db/servers/mysql/reserved.py,sha256=s-aFMwYJpZ_1FBcCMU8fOdhml2ET58-59ZnUm7iw5OU,3312
52
+ velocity/db/servers/mysql/sql.py,sha256=pVUuxQnwxbCDHBltX7vjoVSyGodHm_eYpU0XfF0QwL4,22681
53
+ velocity/db/servers/mysql/types.py,sha256=BMQf4TpsRo1JN-yOl1nSItTO-Juu2piSTNy5o_djBeM,3486
54
+ velocity/db/servers/postgres/__init__.py,sha256=6YcTLXposmsrEaJgdUAM_QgD1TZDSILQrGcwWZ-dibk,2457
55
+ velocity/db/servers/postgres/operators.py,sha256=y9k6enReeR5hJxU_lYYR2epoaw4qCxEqmYJJ5jjaVWA,1166
56
+ velocity/db/servers/postgres/reserved.py,sha256=5tKLaqFV-HrWRj-nsrxl5KGbmeM3ukn_bPZK36XEu8M,3648
57
+ velocity/db/servers/postgres/sql.py,sha256=zmn8cd1kxo7xAhR6BbP4XYx4m8Y7cTI-Ypw7qGGf22I,56789
58
+ velocity/db/servers/postgres/types.py,sha256=W71x8iRx-IIJkQSjb29k-KGkqp-QS6SxB0BHYXd4k8w,6955
59
+ velocity/db/servers/sqlite/__init__.py,sha256=EIx09YN1-Vm-4CXVcEf9DBgvd8FhIN9rEqIaSRrEcIk,2293
60
+ velocity/db/servers/sqlite/operators.py,sha256=VzZgph8RrnHkIVqqWGqnJwcafgBzc_8ZQp-M8tMl-mw,1221
61
+ velocity/db/servers/sqlite/reserved.py,sha256=4vOI06bjt8wg9KxdzDTF-iOd-ewY23NvSzthpdty2fA,1298
62
+ velocity/db/servers/sqlite/sql.py,sha256=FAWhzfM-D25Qaug1omMlcnu2NEHvnMfZIf7yR7HA-TQ,21456
63
+ velocity/db/servers/sqlite/types.py,sha256=jpCJeV25x4Iytf6D6GXgK3hVYFAAFV4WKJC-d-m4kdU,3102
64
+ velocity/db/servers/sqlserver/__init__.py,sha256=LN8OycN7W8da_ZPRYnPQ-O3Bv_xjret9qV1ZCitZlOU,2708
65
+ velocity/db/servers/sqlserver/operators.py,sha256=xK8_doDLssS38SRs1NoAI7XTO0-gNGMDS76nTVru4kE,1104
66
+ velocity/db/servers/sqlserver/reserved.py,sha256=Gn5n9DjxcjM-7PsIZPYigD6XLvMAYGnz1IrPuN7Dp2Y,2120
67
+ velocity/db/servers/sqlserver/sql.py,sha256=Uh_XbBKJw5NZUoDxMYQjS26pXSA5OJj3XDsGPZ1S9Io,26754
68
+ velocity/db/servers/sqlserver/types.py,sha256=FAODYEO137m-WugpM89f9bQN9q6S2cjjUaz0a9gfE6M,3745
69
+ velocity/db/tests/__init__.py,sha256=7-hilWb43cKnSnCeXcjFG-6LpziN5k443IpsIvuevP0,24
70
+ velocity/db/tests/common_db_test.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ velocity/db/tests/test_cursor_rowcount_fix.py,sha256=mZRL1SBb9Knh67CSFyvfwj_LAarE_ilfVwpQHW18Yy8,5507
72
+ velocity/db/tests/test_db_utils.py,sha256=mSbEQXYKpWidX1FEnjrmt3q3K4ra0YTtQclrS46ufEE,8426
73
+ velocity/db/tests/test_postgres.py,sha256=NoBydNkGmXn8olXwva4C4sYV3cKzERd6Df0wHixxoyE,15554
74
+ velocity/db/tests/test_postgres_unchanged.py,sha256=rNcy7S_HXazi_MjU8QjRZO4q8dULMeG4tg6eN-rPPz8,2998
75
+ velocity/db/tests/test_process_error_robustness.py,sha256=CZr_co_o6PK7dejOr_gwdn0iKTzjWPTY5k-PwJ6oh9s,11361
76
+ velocity/db/tests/test_result_caching.py,sha256=DgsGXWL4G79MZOslCjq_t8qtdhCcXkHjQqV5zsF6i6M,8960
77
+ velocity/db/tests/test_result_sql_aware.py,sha256=jdIk60JDJjeev8i-nCAsbQZsGOyMr1w0Zj10VERH0XY,4263
78
+ velocity/db/tests/test_row_get_missing_column.py,sha256=jpmeXfi1gHDcj026lXVYKnpp-TzwiXtVOkFcoswn_lk,2715
79
+ velocity/db/tests/test_schema_locking_initializers.py,sha256=pCKYIDLVR2aywq4-2IgJuXgv2VHQVV-d9jWrvBQTbTY,8672
80
+ velocity/db/tests/test_schema_locking_simple.py,sha256=iuRECv5AwFiue5E4GyeZd3aYEed4VmRc7meKUOIlozs,3553
81
+ velocity/db/tests/test_sql_builder.py,sha256=Y8C2Ycis93PrxAV9dFzdTnkzquh-DBcsX-twlz4LdJg,5754
82
+ velocity/db/tests/test_tablehelper.py,sha256=jPSDCT2F6eB7OyQRgVb7GnOjTJRxVxKXp-gmO0D7Vgw,18718
83
+ velocity/db/tests/postgres/__init__.py,sha256=zh28mNshfTljxi_3WAvvmkAxImLduEoHoUT_MAwkzxc,19
84
+ velocity/db/tests/postgres/common.py,sha256=h0cCPihRn1PDN-snsoH-ZjGyVxj8axWXUaGKzGzzn34,1424
85
+ velocity/db/tests/postgres/test_column.py,sha256=5FVRWQt719lWDjdHTzzjQWcdof-r3wrgQiDTNeLj5sc,778
86
+ velocity/db/tests/postgres/test_connections.py,sha256=W_tbipeNjmeSxMLrsP2fFEA5ZA1gXMQsQrvRgNToZzY,634
87
+ velocity/db/tests/postgres/test_database.py,sha256=W5xTQGUUotVakG0t47TjzqOxdZYIEZclM20ZxurtDHY,484
88
+ velocity/db/tests/postgres/test_engine.py,sha256=0RGurQBp_5YVLmAxVB4DxTiTmJ0bu5bvMMPyFTqfBzc,6120
89
+ velocity/db/tests/postgres/test_general_usage.py,sha256=dCoCv8gJJafh9kN1-hK8mw4709OuAAwtRblbcrxUQRg,2323
90
+ velocity/db/tests/postgres/test_imports.py,sha256=1_Er9T96N3KcUtu_yPdlwU7ywImrHCGvXzgHNgMkBfE,199
91
+ velocity/db/tests/postgres/test_result.py,sha256=zxQjy16fFhfBl5YK8XnReviqUM4Rmr2AWXptAc4QdlA,464
92
+ velocity/db/tests/postgres/test_row.py,sha256=F5UfxOuI9fzu2fxp3UnBYqeg2GHYYTNc5fv-G13bFrA,4521
93
+ velocity/db/tests/postgres/test_row_comprehensive.py,sha256=3WxiLfF7POhbpjAAoxYzmCyXH-ymDq_xxgVeL20Oj_w,24915
94
+ velocity/db/tests/postgres/test_schema_locking.py,sha256=_wH9XIX8GBhdIFLNiAKmZD2ArLTU_j0XIjN8erif55k,12697
95
+ velocity/db/tests/postgres/test_schema_locking_unit.py,sha256=5Ifa7BEiR1zJwttuuV4Xue65VQJ-c3ueALw5REfqGls,3850
96
+ velocity/db/tests/postgres/test_sequence.py,sha256=UoI4x2z8RvucuvZk4Tf1Ue_obtRHt0QCX0ae87iQ7mY,672
97
+ velocity/db/tests/postgres/test_sql_comprehensive.py,sha256=6eSnAMvnC257OD1EnUmiuXwzhuZlKrdK_W30OEu1yAY,18474
98
+ velocity/db/tests/postgres/test_table.py,sha256=D55TpJl0fh8b9Q-ijS3Cj6BeXrS_XQs8qfJFu3G2WL8,2306
99
+ velocity/db/tests/postgres/test_table_comprehensive.py,sha256=NxpOFTjgjqMG5WMwxzRdsphSCq6VQDqItV95i5yplPk,24038
100
+ velocity/db/tests/postgres/test_transaction.py,sha256=Hek8rXmz7Cuz1-Fmmgq7eyhMG9GYKkCKpUUMx5prnjc,2406
101
+ velocity/db/tests/sql/__init__.py,sha256=evafiIjAB0jyhqZ8HfiPgRujXJkRpQ7a34Bjac4qyv8,12
102
+ velocity/db/tests/sql/common.py,sha256=bXRob_RcZoonjCcwY712muraqGiW6HRMSpz5OOtixUM,5811
103
+ velocity/db/tests/sql/test_postgres_select_advanced.py,sha256=KAz75BWOB9hgPyqeB0SAQ3_D8n70ci1qQgu9P37y-lQ,7884
104
+ velocity/db/tests/sql/test_postgres_select_variances.py,sha256=Bzx7SI7dzB7Cwe9jCK--sLphk8sEKVBQ6s--dtODBt8,17135
105
+ velocity/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ velocity/misc/db.py,sha256=MPgt-kkukKR_Wh_S_5W-MyDgaeoZ4YLoDJ54wU2ppm4,2830
107
+ velocity/misc/export.py,sha256=jm-NKI0r-d0fS8B7axW0zHf4Qx0RgEJXCTMKRMdeaps,5110
108
+ velocity/misc/format.py,sha256=jwZDEniBMTyh4UysiOdy14OWyd7-hseBNKFRZDckuQM,3214
109
+ velocity/misc/mail.py,sha256=BrxDqeVsOd0epyJKwrHA-owzs6di2oLA_qJskoTux-c,2553
110
+ velocity/misc/merge.py,sha256=Mv42G9SGi5WEiiAyzdSRNJq-byrx72WI9MSISq4edVU,1879
111
+ velocity/misc/timer.py,sha256=cN3aS0t6HLlhYfF2Ir6ihJehxNrWf9ebaLzXUaWRKEA,1637
112
+ velocity/misc/tools.py,sha256=4TWa-ja2gMZJr1EhqTKsJNirvDclCruyRGMttPhCIGw,1487
113
+ velocity/misc/conv/__init__.py,sha256=qhHFl_UqW5tjPm--6shO171IysWIdH3mmp3uwiQVyqY,70
114
+ velocity/misc/conv/iconv.py,sha256=16aPWtreHCxmpl5ufku0KWWZj8PIUFI5J1dP0aXyM3o,10794
115
+ velocity/misc/conv/oconv.py,sha256=h5Lo05DqOQnxoD3y6Px_MQP_V-pBbWf8Hkgkb9Xp1jk,6032
116
+ velocity/misc/tests/__init__.py,sha256=uUg-3PgXRGan21wF2k-1GG0WBCdVuwtoRrJZbz_yet0,20
117
+ velocity/misc/tests/test_db.py,sha256=yGGthOlwzT2reXTHPxNfmmvUpAbQIt4-K9bhFYGylMs,2671
118
+ velocity/misc/tests/test_fix.py,sha256=D63WZDKFm4oYkZL4dmotnvIPUmXMJveS8k1__7fcm-U,2293
119
+ velocity/misc/tests/test_format.py,sha256=PeDtJo7n-3XJ0YaaZRj0DIedwnDK4k29W7_vJ49shac,2667
120
+ velocity/misc/tests/test_iconv.py,sha256=lblHkTDr0yuTOlMuUCBwGRmz1G-ufsKn5xElZSnewq4,7119
121
+ velocity/misc/tests/test_merge.py,sha256=Vm5_jY5cVczw0hZF-3TYzmxFw81heJOJB-dvhCgXh_k,3042
122
+ velocity/misc/tests/test_oconv.py,sha256=fy4DwWGn_v486r2d_3ACpuBD-K1oOngNq1HJCGH7X-M,4694
123
+ velocity/misc/tests/test_original_error.py,sha256=iWSd18tckOA54LoPQOGV5j9LAz2W-3_ZOwmyZ8-4YQc,1742
124
+ velocity/misc/tests/test_timer.py,sha256=l9nrF84kHaFofvQYKInJmfoqC01wBhsUB18lVBgXCoo,2758
125
+ velocity_python-0.0.155.dist-info/licenses/LICENSE,sha256=aoN245GG8s9oRUU89KNiGTU4_4OtnNmVi4hQeChg6rM,1076
126
+ velocity_python-0.0.155.dist-info/METADATA,sha256=yiZnixMBu97CS5ZFTVJ2FDUb_MkaxGPblXhV6ajNS8A,34266
127
+ velocity_python-0.0.155.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
128
+ velocity_python-0.0.155.dist-info/top_level.txt,sha256=JW2vJPmodgdgSz7H6yoZvnxF8S3fTMIv-YJWCT1sNW0,9
129
+ velocity_python-0.0.155.dist-info/RECORD,,
@@ -1,70 +0,0 @@
1
- class DbException(Exception):
2
- pass
3
-
4
-
5
- class DbApplicationError(DbException):
6
- pass
7
-
8
-
9
- class DbForeignKeyMissingError(DbException):
10
- pass
11
-
12
-
13
- class DbDatabaseMissingError(DbException):
14
- pass
15
-
16
-
17
- class DbTableMissingError(DbException):
18
- pass
19
-
20
-
21
- class DbColumnMissingError(DbException):
22
- pass
23
-
24
-
25
- class DbTruncationError(DbException):
26
- pass
27
-
28
-
29
- class DbConnectionError(DbException):
30
- pass
31
-
32
-
33
- class DbDuplicateKeyError(DbException):
34
- pass
35
-
36
-
37
- class DbObjectExistsError(DbException):
38
- pass
39
-
40
-
41
- class DbLockTimeoutError(DbException):
42
- pass
43
-
44
-
45
- class DbRetryTransaction(DbException):
46
- pass
47
-
48
-
49
- class DbDataIntegrityError(DbException):
50
- pass
51
-
52
-
53
- class DuplicateRowsFoundError(Exception):
54
- pass
55
-
56
-
57
- class DbQueryError(DbException):
58
- """Database query error"""
59
- pass
60
-
61
-
62
- class DbTransactionError(DbException):
63
- """Database transaction error"""
64
- pass
65
-
66
-
67
- # Add aliases for backward compatibility with engine.py
68
- class DatabaseError(DbException):
69
- """Generic database error - alias for DbException"""
70
- pass