pydpm_xl 0.1.39rc31__py3-none-any.whl → 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. py_dpm/__init__.py +1 -1
  2. py_dpm/api/__init__.py +58 -189
  3. py_dpm/api/dpm/__init__.py +20 -0
  4. py_dpm/api/{data_dictionary.py → dpm/data_dictionary.py} +903 -984
  5. py_dpm/api/dpm/explorer.py +236 -0
  6. py_dpm/api/dpm/hierarchical_queries.py +142 -0
  7. py_dpm/api/{migration.py → dpm/migration.py} +16 -19
  8. py_dpm/api/{operation_scopes.py → dpm/operation_scopes.py} +319 -267
  9. py_dpm/api/dpm_xl/__init__.py +25 -0
  10. py_dpm/api/{ast_generator.py → dpm_xl/ast_generator.py} +3 -3
  11. py_dpm/api/{complete_ast.py → dpm_xl/complete_ast.py} +192 -168
  12. py_dpm/api/dpm_xl/semantic.py +354 -0
  13. py_dpm/api/{syntax.py → dpm_xl/syntax.py} +6 -5
  14. py_dpm/api/explorer.py +4 -0
  15. py_dpm/api/semantic.py +30 -306
  16. py_dpm/cli/__init__.py +9 -0
  17. py_dpm/{client.py → cli/main.py} +8 -8
  18. py_dpm/dpm/__init__.py +11 -0
  19. py_dpm/{models.py → dpm/models.py} +112 -88
  20. py_dpm/dpm/queries/base.py +100 -0
  21. py_dpm/dpm/queries/basic_objects.py +33 -0
  22. py_dpm/dpm/queries/explorer_queries.py +352 -0
  23. py_dpm/dpm/queries/filters.py +139 -0
  24. py_dpm/dpm/queries/glossary.py +45 -0
  25. py_dpm/dpm/queries/hierarchical_queries.py +838 -0
  26. py_dpm/dpm/queries/tables.py +133 -0
  27. py_dpm/dpm/utils.py +356 -0
  28. py_dpm/dpm_xl/__init__.py +8 -0
  29. py_dpm/dpm_xl/ast/__init__.py +14 -0
  30. py_dpm/{AST/ASTConstructor.py → dpm_xl/ast/constructor.py} +6 -6
  31. py_dpm/{AST/MLGeneration.py → dpm_xl/ast/ml_generation.py} +137 -87
  32. py_dpm/{AST/ModuleAnalyzer.py → dpm_xl/ast/module_analyzer.py} +7 -7
  33. py_dpm/{AST/ModuleDependencies.py → dpm_xl/ast/module_dependencies.py} +56 -41
  34. py_dpm/{AST/ASTObjects.py → dpm_xl/ast/nodes.py} +1 -1
  35. py_dpm/{AST/check_operands.py → dpm_xl/ast/operands.py} +16 -13
  36. py_dpm/{AST/ASTTemplate.py → dpm_xl/ast/template.py} +2 -2
  37. py_dpm/{AST/WhereClauseChecker.py → dpm_xl/ast/where_clause.py} +2 -2
  38. py_dpm/dpm_xl/grammar/__init__.py +18 -0
  39. py_dpm/dpm_xl/operators/__init__.py +19 -0
  40. py_dpm/{Operators/AggregateOperators.py → dpm_xl/operators/aggregate.py} +7 -7
  41. py_dpm/{Operators/NumericOperators.py → dpm_xl/operators/arithmetic.py} +6 -6
  42. py_dpm/{Operators/Operator.py → dpm_xl/operators/base.py} +5 -5
  43. py_dpm/{Operators/BooleanOperators.py → dpm_xl/operators/boolean.py} +5 -5
  44. py_dpm/{Operators/ClauseOperators.py → dpm_xl/operators/clause.py} +8 -8
  45. py_dpm/{Operators/ComparisonOperators.py → dpm_xl/operators/comparison.py} +5 -5
  46. py_dpm/{Operators/ConditionalOperators.py → dpm_xl/operators/conditional.py} +7 -7
  47. py_dpm/{Operators/StringOperators.py → dpm_xl/operators/string.py} +5 -5
  48. py_dpm/{Operators/TimeOperators.py → dpm_xl/operators/time.py} +6 -6
  49. py_dpm/{semantics/SemanticAnalyzer.py → dpm_xl/semantic_analyzer.py} +168 -68
  50. py_dpm/{semantics/Symbols.py → dpm_xl/symbols.py} +3 -3
  51. py_dpm/dpm_xl/types/__init__.py +13 -0
  52. py_dpm/{DataTypes/TypePromotion.py → dpm_xl/types/promotion.py} +2 -2
  53. py_dpm/{DataTypes/ScalarTypes.py → dpm_xl/types/scalar.py} +2 -2
  54. py_dpm/dpm_xl/utils/__init__.py +14 -0
  55. py_dpm/{data_handlers.py → dpm_xl/utils/data_handlers.py} +2 -2
  56. py_dpm/{Utils → dpm_xl/utils}/operands_mapping.py +1 -1
  57. py_dpm/{Utils → dpm_xl/utils}/operator_mapping.py +8 -8
  58. py_dpm/{OperationScopes/OperationScopeService.py → dpm_xl/utils/scopes_calculator.py} +148 -58
  59. py_dpm/{Utils/ast_serialization.py → dpm_xl/utils/serialization.py} +2 -2
  60. py_dpm/dpm_xl/validation/__init__.py +12 -0
  61. py_dpm/{Utils/ValidationsGenerationUtils.py → dpm_xl/validation/generation_utils.py} +2 -3
  62. py_dpm/{ValidationsGeneration/PropertiesConstraintsProcessor.py → dpm_xl/validation/property_constraints.py} +56 -21
  63. py_dpm/{ValidationsGeneration/auxiliary_functions.py → dpm_xl/validation/utils.py} +2 -2
  64. py_dpm/{ValidationsGeneration/VariantsProcessor.py → dpm_xl/validation/variants.py} +149 -55
  65. py_dpm/exceptions/__init__.py +23 -0
  66. py_dpm/{Exceptions → exceptions}/exceptions.py +7 -2
  67. pydpm_xl-0.2.0.dist-info/METADATA +278 -0
  68. pydpm_xl-0.2.0.dist-info/RECORD +88 -0
  69. pydpm_xl-0.2.0.dist-info/entry_points.txt +2 -0
  70. py_dpm/Exceptions/__init__.py +0 -0
  71. py_dpm/OperationScopes/__init__.py +0 -0
  72. py_dpm/Operators/__init__.py +0 -0
  73. py_dpm/Utils/__init__.py +0 -0
  74. py_dpm/Utils/utils.py +0 -2
  75. py_dpm/ValidationsGeneration/Utils.py +0 -364
  76. py_dpm/ValidationsGeneration/__init__.py +0 -0
  77. py_dpm/api/data_dictionary_validation.py +0 -614
  78. py_dpm/db_utils.py +0 -221
  79. py_dpm/grammar/__init__.py +0 -0
  80. py_dpm/grammar/dist/__init__.py +0 -0
  81. py_dpm/grammar/dpm_xlLexer.g4 +0 -437
  82. py_dpm/grammar/dpm_xlParser.g4 +0 -263
  83. py_dpm/semantics/DAG/DAGAnalyzer.py +0 -158
  84. py_dpm/semantics/DAG/__init__.py +0 -0
  85. py_dpm/semantics/__init__.py +0 -0
  86. py_dpm/views/data_types.sql +0 -12
  87. py_dpm/views/datapoints.sql +0 -65
  88. py_dpm/views/hierarchy_operand_reference.sql +0 -11
  89. py_dpm/views/hierarchy_preconditions.sql +0 -13
  90. py_dpm/views/hierarchy_variables.sql +0 -26
  91. py_dpm/views/hierarchy_variables_context.sql +0 -14
  92. py_dpm/views/key_components.sql +0 -18
  93. py_dpm/views/module_from_table.sql +0 -11
  94. py_dpm/views/open_keys.sql +0 -13
  95. py_dpm/views/operation_info.sql +0 -27
  96. py_dpm/views/operation_list.sql +0 -18
  97. py_dpm/views/operations_versions_from_module_version.sql +0 -30
  98. py_dpm/views/precondition_info.sql +0 -17
  99. py_dpm/views/report_type_operand_reference_info.sql +0 -18
  100. py_dpm/views/subcategory_info.sql +0 -17
  101. py_dpm/views/table_info.sql +0 -19
  102. pydpm_xl-0.1.39rc31.dist-info/METADATA +0 -53
  103. pydpm_xl-0.1.39rc31.dist-info/RECORD +0 -96
  104. pydpm_xl-0.1.39rc31.dist-info/entry_points.txt +0 -2
  105. /py_dpm/{AST → cli/commands}/__init__.py +0 -0
  106. /py_dpm/{migration.py → dpm/migration.py} +0 -0
  107. /py_dpm/{AST/ASTVisitor.py → dpm_xl/ast/visitor.py} +0 -0
  108. /py_dpm/{DataTypes → dpm_xl/grammar/generated}/__init__.py +0 -0
  109. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlLexer.interp +0 -0
  110. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlLexer.py +0 -0
  111. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlLexer.tokens +0 -0
  112. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlParser.interp +0 -0
  113. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlParser.py +0 -0
  114. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlParser.tokens +0 -0
  115. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlParserListener.py +0 -0
  116. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/dpm_xlParserVisitor.py +0 -0
  117. /py_dpm/{grammar/dist → dpm_xl/grammar/generated}/listeners.py +0 -0
  118. /py_dpm/{DataTypes/TimeClasses.py → dpm_xl/types/time.py} +0 -0
  119. /py_dpm/{Utils → dpm_xl/utils}/tokens.py +0 -0
  120. /py_dpm/{Exceptions → exceptions}/messages.py +0 -0
  121. {pydpm_xl-0.1.39rc31.dist-info → pydpm_xl-0.2.0.dist-info}/WHEEL +0 -0
  122. {pydpm_xl-0.1.39rc31.dist-info → pydpm_xl-0.2.0.dist-info}/licenses/LICENSE +0 -0
  123. {pydpm_xl-0.1.39rc31.dist-info → pydpm_xl-0.2.0.dist-info}/top_level.txt +0 -0
@@ -1,30 +0,0 @@
1
- CREATE OR ALTER VIEW operation_versions_from_module_version AS
2
- SELECT MV.ModuleVID as module_version_id,
3
- MV.ModuleID,
4
- MV.StartReleaseID,
5
- MV.EndReleaseID,
6
- MV.Code as module_code,
7
- MV.VersionNumber,
8
- MV.FromReferenceDate as from_date,
9
- MV.ToReferenceDate as to_date,
10
- OSC.OperationScopeID as operation_scope_id,
11
- OS.IsActive as is_active,
12
- OS.Severity as severity,
13
- OS.FromSubmissionDate,
14
- ov.OperationVID as operation_version_id,
15
- ov.OperationID,
16
- ov.PreconditionOperationVID as precondition_operation_version_id,
17
- ov.StartReleaseID as operation_start_release_id,
18
- ov.EndReleaseID as operation_end_release_id,
19
- ov.Expression as expression,
20
- o.Code as operation_code,
21
- o.[Type] as operation_type,
22
- o.[Source] as operation_source
23
- from ModuleVersion MV
24
- inner join OperationScopeComposition OSC
25
- on OSC.ModuleVID = MV.ModuleVID
26
- inner join OperationScope OS
27
- on OSC.OperationScopeID = OS.OperationScopeID
28
- inner join OperationVersion ov on ov.OperationVID = OS.OperationVID
29
- inner join Operation o on o.OperationID = ov.OperationID
30
- where OS.IsActive = 1;
@@ -1,17 +0,0 @@
1
- CREATE
2
- OR ALTER
3
- VIEW precondition_info AS
4
- select opN.NodeID as operation_node_id,
5
- opN.OperationVID as operation_version_id,
6
- vv.VariableVID as variable_version_id,
7
- vv.VariableID as variable_id,
8
- vv.Code as variable_code,
9
- v.Type as variable_type,
10
- o.Code as operation_code
11
- from [dbo].OperationNode opN
12
- left join [dbo].OperandReference opR on opN.NodeID = opR.NodeID
13
- inner join [dbo].OperationVersion ov on ov.OperationVID = opN.OperationVID
14
- inner join [dbo].Operation o on o.OperationID = ov.OperationID
15
- inner join [dbo].VariableVersion vv on vv.VariableVID = opR.VariableID
16
- inner join [dbo].Variable v on v.VariableID = vv.VariableID
17
- where v.Type = 'filingIndicator';
@@ -1,18 +0,0 @@
1
- CREATE OR ALTER VIEW report_type_operand_reference_info AS
2
- select distinct o.code as operation_code,
3
- on2.NodeID as operation_node_id,
4
- orl.CellID as cell_id,
5
- or2.VariableID as variable_id,
6
- o.[Source] as report_type,
7
- tv.TableID as table_version_id,
8
- tv.TableVID as table_version_vid,
9
- or2.SubCategoryID as sub_category_id
10
- FROM OperandReferenceLocation orl
11
- inner join OperandReference or2
12
- on orl.OperandReferenceID = or2.OperandReferenceID
13
- inner join OperationNode on2 on on2.NodeID = or2.NodeID
14
- inner join OperationVersion ov on ov.OperationVID = on2.OperationVID
15
- inner join Operation o on o.OperationID = ov.OperationID
16
- inner join Cell c on c.CellID = orl.CellID
17
- inner join Tableversion tv on tv.TableID = c.TableID
18
- where ov.EndReleaseID is NULL;
@@ -1,17 +0,0 @@
1
- CREATE OR ALTER VIEW subcategory_item_info AS
2
- SELECT ic.Code as item_code,
3
- ic.IsDefaultItem as is_default_item,
4
- scv.SubCategoryID as subcategory_id,
5
- icp.Code as parent_item_code,
6
- sci."Order" as ordering,
7
- oa.Name as arithmetic_operator,
8
- oc.Symbol as comparison_symbol,
9
- scv.StartReleaseID as start_release_id,
10
- scv.EndReleaseID as end_release_id
11
- from SubCategoryItem sci
12
- inner join SubCategoryVersion scv
13
- on scv.SubCategoryVID = sci.SubCategoryVID
14
- inner join ItemCategory ic on sci.ItemID = ic.ItemID
15
- left join ItemCategory icp on sci.ParentItemID = icp.ItemID
16
- left join Operator oa on sci.ArithmeticOperatorID = oa.OperatorID
17
- left join Operator oc on sci.ComparisonOperatorID = oc.OperatorID
@@ -1,19 +0,0 @@
1
- CREATE
2
- OR ALTER
3
- VIEW table_info AS
4
- Select TV.Code as table_code,
5
- TV.TableVID as table_version_id,
6
- TV.TableID as table_id,
7
- MV.ModuleVID as module_version_id,
8
- MV.Code as module_code,
9
- VV.VariableVID as variable_version_id,
10
- VV.VariableID as variable_id
11
- from Module M
12
- inner join ModuleVersion MV
13
- on M.ModuleID = MV.ModuleID and MV.EndReleaseID is NULL
14
- inner join ModuleVersionComposition MVC on MV.ModuleVID = MVC.ModuleVID
15
- inner join TableVersion TV
16
- on MVC.TableVID = TV.TableVID and TV.EndReleaseID is NULL
17
- inner join TableVersionCell TVC on TV.TableVID = TVC.TableVID
18
- inner join VariableVersion VV on TVC.VariableVID = VV.VariableVID and
19
- VV.EndReleaseID is NULL;
@@ -1,53 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pydpm_xl
3
- Version: 0.1.39rc31
4
- Summary: Python library for DPM-XL data processing and analysis
5
- Author-email: "MeaningfulData S.L." <info@meaningfuldata.eu>
6
- License: GPL-3.0-or-later
7
- Keywords: dpm,dpm-xl,data-processing,migration,analysis
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Classifier: Topic :: Database
17
- Classifier: Topic :: Scientific/Engineering
18
- Requires-Python: >=3.10
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
- Requires-Dist: rich<13.8.0,>=13.7.1
22
- Requires-Dist: sqlalchemy<1.5.0,>=1.4.50
23
- Requires-Dist: pandas>=2.1.4
24
- Requires-Dist: antlr4-python3-runtime<4.9.3,>=4.9.2
25
- Requires-Dist: pyodbc<5.2.0,>=5.1.0
26
- Requires-Dist: click<8.2.0,>=8.1.6
27
- Requires-Dist: python-dotenv<1.1.0,>=1.0.1
28
- Requires-Dist: psycopg2-binary<3.0.0,>=2.9.0
29
- Provides-Extra: test
30
- Requires-Dist: pytest<8.0.0,>=7.4.0; extra == "test"
31
- Requires-Dist: pytest-cov<5.0.0,>=4.1.0; extra == "test"
32
- Dynamic: license-file
33
-
34
- # pyDPM
35
-
36
- ## Installation
37
-
38
- `poetry install`
39
-
40
- ## Usage
41
-
42
- ### Load DB
43
-
44
- `poetry run pydpm migrate-access ./path-to-release.accdb`
45
-
46
- ### Syntax validation
47
-
48
- `poetry run pydpm syntax "expression"`
49
-
50
- ### Semantic validation
51
-
52
- `poetry run pydpm semantic "expression"`
53
-
@@ -1,96 +0,0 @@
1
- py_dpm/__init__.py,sha256=Ka4t1a-16Iht1Iqn-XfNPTJuUt9FbyFX_3SCDdabdZQ,1863
2
- py_dpm/client.py,sha256=f-D3-5-tNpBM2fr5H8ImdwZM5hyuqfCXJRJd66euHU8,22279
3
- py_dpm/data_handlers.py,sha256=_aJqkyflJr1oNsOQ24nB9yzfrpxu28NPrpoil2aAm58,4395
4
- py_dpm/db_utils.py,sha256=f0da6FT7HusGpLfGen4fceSvcojW4bzrp5sucgt6XVQ,7822
5
- py_dpm/migration.py,sha256=ivO_ObvKzVomTns6qfo-o5FuciWxkXbMd_gJ4_tu7Xc,14110
6
- py_dpm/models.py,sha256=9iW-xGVyLq32uxQUtzGgLt3GIawbW58iq6JSA20tY18,124381
7
- py_dpm/AST/ASTConstructor.py,sha256=GRUBagyzq1BgFrdDP8y4hfz0HhB8MDZa7RKenZgMTm4,22171
8
- py_dpm/AST/ASTObjects.py,sha256=Z4Q5E13Y2w--C9sYipvdyfxui_ZwWUdzEUgfubQwaYE,25037
9
- py_dpm/AST/ASTTemplate.py,sha256=qhe3sgMpMKqPfyWPBJs22HRUbSLMukdnpClRFYQRbkI,3039
10
- py_dpm/AST/ASTVisitor.py,sha256=yL9UpPMQlq8ToHR8COyFYpuSChnDRjnkQHbCyYX0tsY,509
11
- py_dpm/AST/MLGeneration.py,sha256=VSjym7JqoNGEuL8PH3HQUFk-CWDJIdGjcJkdk-a8XkE,24698
12
- py_dpm/AST/ModuleAnalyzer.py,sha256=D93NORVMyEMiaAeVsRuw1qMSd5V5fF1Syh4mpo2gtKA,2848
13
- py_dpm/AST/ModuleDependencies.py,sha256=3Rx5rNLlaeM8UaqCR2lwy5uAK-jwum8eYGfJwzWAua8,8332
14
- py_dpm/AST/WhereClauseChecker.py,sha256=zsySpOPMmZgznZnN8Y6WdS-4qARingBmQa2c19xvYlc,322
15
- py_dpm/AST/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- py_dpm/AST/check_operands.py,sha256=byrhQWif3ZA1V9sR0p8YsUsU38utlYgXFjAqdPP2kAw,20978
17
- py_dpm/DataTypes/ScalarTypes.py,sha256=annQugU0iV457lruDDR2rNyZB-qGw-ei0J-p1CPp0Xs,6882
18
- py_dpm/DataTypes/TimeClasses.py,sha256=MmxsHn9sqBCQ-YkTKlGn-yow-Y-XVMRvrUEthqhT0JM,11379
19
- py_dpm/DataTypes/TypePromotion.py,sha256=Js_HBczw_cLdauzg5XtfDdJOGJdmQGtMnV_aTNkYgR0,9587
20
- py_dpm/DataTypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- py_dpm/Exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- py_dpm/Exceptions/exceptions.py,sha256=O1InotUVMIcgOMeULKCPs6lJ5t54eVT1I3osFX1Jm68,2232
23
- py_dpm/Exceptions/messages.py,sha256=UwY6QIK8c-POcDCc9HYbZFGArCIYAanUGNh2LNKPx3U,7534
24
- py_dpm/OperationScopes/OperationScopeService.py,sha256=sUPojcTTnqV6-6t8idrHVRG77DICVLI4X2oEydRrc3Q,16317
25
- py_dpm/OperationScopes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- py_dpm/Operators/AggregateOperators.py,sha256=EIsvHeNuCLPvB40mgNrTzDs6PnkVK8seddQDgduyRgU,4877
27
- py_dpm/Operators/BooleanOperators.py,sha256=keqTxYrtzd0ZpcFoxkNwMOU82p-_SeQXftlg5No17VQ,497
28
- py_dpm/Operators/ClauseOperators.py,sha256=aeJjEFZKaKao46GCtht9REdUYXCf5EUsxPvaw7RoeWY,8616
29
- py_dpm/Operators/ComparisonOperators.py,sha256=6irfDhwxhCwz0tOfX4oOJSl2Kvpo3Wzg3wshNyHiCs8,1133
30
- py_dpm/Operators/ConditionalOperators.py,sha256=a5zJvbc9ApoPUvlzUGF_H4xD_DtjHnq4rhTZ7E5a4jk,17260
31
- py_dpm/Operators/NumericOperators.py,sha256=Dr6dIgfrKmv9muHCJPhNYINEjMpkZBa-Sa0oQPGHRfU,1761
32
- py_dpm/Operators/Operator.py,sha256=aYP8xnsnnmEZUxEvpJrJB4hiYdQT2Ki0ZFGMsuuwQnU,18898
33
- py_dpm/Operators/StringOperators.py,sha256=6bJuSUO12tkdsaDygE2bP4G3ba6ybxyK41bowE0UnW4,502
34
- py_dpm/Operators/TimeOperators.py,sha256=klcFIYFonGVRNhr66Ipu1lwOr9CxzDGIbA3QQLmxdTo,2236
35
- py_dpm/Operators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- py_dpm/Utils/ValidationsGenerationUtils.py,sha256=1yINJ_ANqr9BbIDdPm4WxRG2EQu0yaRICikYG1nIhzs,22652
37
- py_dpm/Utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- py_dpm/Utils/ast_serialization.py,sha256=c23qwwGtjDJgOxoOo41g4p7CYdbkVPz3q_Q6KssMSIU,32462
39
- py_dpm/Utils/operands_mapping.py,sha256=CDWvoKxh-nBcEKMxrUmMnaCveE8dExjeuFUa-lgK8Rg,2239
40
- py_dpm/Utils/operator_mapping.py,sha256=SK8utWaUaQJybSmErkF_2blzUIgiVOUNGFozIk7dBg8,1926
41
- py_dpm/Utils/tokens.py,sha256=VRIrPDi5ttwgH-on5Qt4-l4ho4bLA755-nfTalponcA,3496
42
- py_dpm/Utils/utils.py,sha256=9YDDCooXTHsr_Nc2nPdDjbCeWVp28CaaAvSbiVqi3So,64
43
- py_dpm/ValidationsGeneration/PropertiesConstraintsProcessor.py,sha256=0Z2i_I5iazgKPh5qQfaUmZWsPmpClvu_NNGjEMer00s,7943
44
- py_dpm/ValidationsGeneration/Utils.py,sha256=cownt58HNxIxt1dLAK8dYolpDfzjiR_TqDCbJJoOd4k,18279
45
- py_dpm/ValidationsGeneration/VariantsProcessor.py,sha256=bFkNwCox7DpR-yEWDSAwLj-kmajiEgjiJwWaCKGIkPI,12482
46
- py_dpm/ValidationsGeneration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- py_dpm/ValidationsGeneration/auxiliary_functions.py,sha256=4msDLINbwNb4gTc05x_351eb_VIra1H0lWE1hPijlVI,4187
48
- py_dpm/api/__init__.py,sha256=41ILMv8oQ9mmw_zkIhRHVBnfYi1OQYEAFWqyqc3O8_U,6986
49
- py_dpm/api/ast_generator.py,sha256=HjosdS1CkguPJDjp2JUqzO7WaRCS2GjXKuFgQXQkkPg,16143
50
- py_dpm/api/complete_ast.py,sha256=8hMPoVyVOHXIR5Qm8TGUuva8rONntN-TJoFQHU0ElW8,29892
51
- py_dpm/api/data_dictionary.py,sha256=0k-tz0DNP1gZXlCA4EX9BoWHq2RB7nDnlsxRfbxNwow,33083
52
- py_dpm/api/data_dictionary_validation.py,sha256=OtvErzLtDMryoxdO5ktACjvGWeDEqG6SXuvuJyzKdys,23495
53
- py_dpm/api/migration.py,sha256=LW8V-sq9iBAuXUHWPGqWl-tvxz2vAGUvIYyZLtgfjKA,2512
54
- py_dpm/api/operation_scopes.py,sha256=cKIhAN0sC_vQ6rpc5npw4GjfmVuyY2X4EDNaawHltDE,47826
55
- py_dpm/api/semantic.py,sha256=waHyARBm3NJ-5mZha3Dbgsm3zyQprA4dUb7Z_ml8uYs,12791
56
- py_dpm/api/syntax.py,sha256=MxsoRgX3NB6tXxPiYUx6M15h2ATECxnk_wZU4egiyhs,5909
57
- py_dpm/grammar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- py_dpm/grammar/dpm_xlLexer.g4,sha256=mP6SYr_tmxgIo8D2Y8nB_6Rubnu6xnwUhVlY2jGV7Zc,13178
59
- py_dpm/grammar/dpm_xlParser.g4,sha256=RchNExiHEPf3uQw7EF5IP29qZ-q7qmWswuCXpDruF_A,7804
60
- py_dpm/grammar/dist/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- py_dpm/grammar/dist/dpm_xlLexer.interp,sha256=ump1PKaPcRFlKTuKQSeBm6407x90lmSky1HP8KWfpjI,56920
62
- py_dpm/grammar/dist/dpm_xlLexer.py,sha256=d2iJEDuYiizEYErMOfEEAfIl1ObORTAtizwSUH0PpYM,67560
63
- py_dpm/grammar/dist/dpm_xlLexer.tokens,sha256=-Pj5UlkputKM9b9kMQTLeDCcGIMwAOEeXF8aKiBf30I,1246
64
- py_dpm/grammar/dist/dpm_xlParser.interp,sha256=aBhwBzsukwdyNGBr7YI9Bgnuf3aUroBMsoGn-UH_LHQ,17617
65
- py_dpm/grammar/dist/dpm_xlParser.py,sha256=65wE9zBnB4f-ELCCcjkyGRjcn_ef0Yd4_4n0qlcv79I,203789
66
- py_dpm/grammar/dist/dpm_xlParser.tokens,sha256=-Pj5UlkputKM9b9kMQTLeDCcGIMwAOEeXF8aKiBf30I,1246
67
- py_dpm/grammar/dist/dpm_xlParserListener.py,sha256=7EDpt2QwuvieqZx1yRLirF_sLaWSkAoM3PjpegQHSLs,24895
68
- py_dpm/grammar/dist/dpm_xlParserVisitor.py,sha256=cl6oHKFH0Zr5S1FySykygOojG0CvcLmVUj1vfKmVoMI,14886
69
- py_dpm/grammar/dist/listeners.py,sha256=mb7EOwZF_6qExdbUxrZDmXvykJBMlafGoxrPWpY1rz0,334
70
- py_dpm/semantics/SemanticAnalyzer.py,sha256=0LG7fSL6-c-6hS4dWQzIpSq0R9S-zrFh2maa78ca_vc,14654
71
- py_dpm/semantics/Symbols.py,sha256=cayLNsy7b_6NGls8L1fXsYbvq8v7doPL7lv9XubjxBQ,7632
72
- py_dpm/semantics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- py_dpm/semantics/DAG/DAGAnalyzer.py,sha256=UVclW5H5D-YJURcgCrzNPwhOZK7GFnBK6fMTEo9yA6s,4872
74
- py_dpm/semantics/DAG/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- py_dpm/views/data_types.sql,sha256=dt3DLanxyooT9YcwDoRE1yriot-RN_E8YrsOhE0Hy9U,354
76
- py_dpm/views/datapoints.sql,sha256=H7xV7j2XGEEZTNs6VnX5AtZ2uz8GS9IdWYgGt2GPH20,2631
77
- py_dpm/views/hierarchy_operand_reference.sql,sha256=EhSDs4t3JPhsqF48i_qDb_q0CUmGi0M6pxS0qKe1Bsk,615
78
- py_dpm/views/hierarchy_preconditions.sql,sha256=DKOepF-6auz951JbCPvtklIYz0uvGOqPdQgk6FfmG6k,599
79
- py_dpm/views/hierarchy_variables.sql,sha256=hJ37PkPvQoTOmXGQ2kO4wwv8MW7lxjW9c6HMWY5asKA,1417
80
- py_dpm/views/hierarchy_variables_context.sql,sha256=QkyjkzO6BagryLqzI0t4AAoa5PcnTv1Z7h2VQDiHVjI,885
81
- py_dpm/views/key_components.sql,sha256=M6A0xOnl59o8pBIYD95IlSfF4l4aCHadWboDEZa6p_w,985
82
- py_dpm/views/module_from_table.sql,sha256=rELujOsfaJ4YNEydhifK2Kn8X-ZokZ8sG81hPGsUgV4,465
83
- py_dpm/views/open_keys.sql,sha256=tt3073WfZwKaZhqRseq1gVLDulO8SlX8BYFCTm7hoZQ,573
84
- py_dpm/views/operation_info.sql,sha256=DOEOm_nyq0xZeDd9qS5diTchjsK0lgGDJOcmDc1OTpA,999
85
- py_dpm/views/operation_list.sql,sha256=-PJITiXKo436sd7doB9tnp_IlwU6ZxOEGHK28h7bYks,887
86
- py_dpm/views/operations_versions_from_module_version.sql,sha256=mqoTWp4Ypdf7PxQBI-q4zkbvVQRDBCYWbZa9tXtuBog,1439
87
- py_dpm/views/precondition_info.sql,sha256=l24U8c6NtwFcUDFwb2FqH9h0xgpoi9WbvsKUgJq1ig0,764
88
- py_dpm/views/report_type_operand_reference_info.sql,sha256=_lBK9HQILk9yLD7cW9Ieud-vfTc-KQiU3WGAnN6LuNY,977
89
- py_dpm/views/subcategory_info.sql,sha256=V8UZiGjicmOWfBEHX2v6ktSMR4r_f1YiGD_LeN9Gn6o,812
90
- py_dpm/views/table_info.sql,sha256=htRXIVJya44CZAqjO5sVaJJwiQBQ30oiLFFu5DiBpR4,793
91
- pydpm_xl-0.1.39rc31.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
92
- pydpm_xl-0.1.39rc31.dist-info/METADATA,sha256=TLfn-srr0mIT5UNqwsL_46ewXN9GsuO4M_RgaiueiF0,1599
93
- pydpm_xl-0.1.39rc31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
94
- pydpm_xl-0.1.39rc31.dist-info/entry_points.txt,sha256=W9j5xCzgvdfzOKSfEpkk2jSRhEcpmXZUVMwHrsEFAbY,45
95
- pydpm_xl-0.1.39rc31.dist-info/top_level.txt,sha256=495PvWZRoKl2NvbQU25W7dqWIBHqY-mFMPt83uxPpcM,7
96
- pydpm_xl-0.1.39rc31.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- pydpm = py_dpm.client:main
File without changes
File without changes
File without changes
File without changes
File without changes