commons-metrics 0.0.9__tar.gz → 0.0.11__tar.gz
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.
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/PKG-INFO +1 -1
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics/__init__.py +1 -1
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics/repositories.py +3 -3
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/PKG-INFO +1 -1
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/setup.py +1 -1
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/LICENSE +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/README.md +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics/database.py +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics/util.py +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/SOURCES.txt +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/dependency_links.txt +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/requires.txt +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/top_level.txt +0 -0
- {commons_metrics-0.0.9 → commons_metrics-0.0.11}/setup.cfg +0 -0
|
@@ -23,7 +23,7 @@ class ComponentRepository:
|
|
|
23
23
|
cursor = self.db.connection.cursor()
|
|
24
24
|
|
|
25
25
|
insert_query = """
|
|
26
|
-
INSERT INTO schmesys.component(technical_name,functional_name,
|
|
26
|
+
INSERT INTO schmesys.component(technical_name,functional_name, id_subtype, folder, class_name, status)
|
|
27
27
|
VALUES (%s, %s, %s, %s, %s, %s)
|
|
28
28
|
RETURNING id;
|
|
29
29
|
"""
|
|
@@ -53,9 +53,9 @@ class ComponentRepository:
|
|
|
53
53
|
cursor = self.db.connection.cursor()
|
|
54
54
|
|
|
55
55
|
query = """
|
|
56
|
-
SELECT
|
|
56
|
+
SELECT *
|
|
57
57
|
FROM schmesys.component
|
|
58
|
-
WHERE
|
|
58
|
+
WHERE id_subtype = %s
|
|
59
59
|
ORDER BY technical_name
|
|
60
60
|
"""
|
|
61
61
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='commons_metrics',
|
|
5
|
-
version='0.0.
|
|
5
|
+
version='0.0.11',
|
|
6
6
|
description='A simple library for basic statistical calculations',
|
|
7
7
|
#long_description=open('USAGE.md').read(),
|
|
8
8
|
#long_description_content_type='text/markdown',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commons_metrics-0.0.9 → commons_metrics-0.0.11}/commons_metrics.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|