OpenPartsLibrary 0.1.8__tar.gz → 0.1.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenPartsLibrary
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Python library for creating a database of hardware components for manufacturing
5
5
  Home-page: https://github.com/alekssadowski95/OpenPartsLibrary
6
6
  Author: Aleksander Sadowski
@@ -131,7 +131,7 @@ Creating parts from a parts list in a Excel-spreadsheet (*.xlsx). Take note, tha
131
131
  pl.create_parts_from_spreadsheet('C:/Users/Work/Documents/Github/OpenPartsLibrary/openpartslibrary/sample/parts_data_sample.xlsx')
132
132
  ```
133
133
  ## Database structure
134
- <img src="./Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
134
+ <img src="./openpartslibrary/images/Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
135
135
 
136
136
  ## Part schema
137
137
  This table outlines the `Part` properties used in the OpenPartsLibrary.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenPartsLibrary
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Python library for creating a database of hardware components for manufacturing
5
5
  Home-page: https://github.com/alekssadowski95/OpenPartsLibrary
6
6
  Author: Aleksander Sadowski
@@ -131,7 +131,7 @@ Creating parts from a parts list in a Excel-spreadsheet (*.xlsx). Take note, tha
131
131
  pl.create_parts_from_spreadsheet('C:/Users/Work/Documents/Github/OpenPartsLibrary/openpartslibrary/sample/parts_data_sample.xlsx')
132
132
  ```
133
133
  ## Database structure
134
- <img src="./Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
134
+ <img src="./openpartslibrary/images/Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
135
135
 
136
136
  ## Part schema
137
137
  This table outlines the `Part` properties used in the OpenPartsLibrary.
@@ -102,7 +102,7 @@ Creating parts from a parts list in a Excel-spreadsheet (*.xlsx). Take note, tha
102
102
  pl.create_parts_from_spreadsheet('C:/Users/Work/Documents/Github/OpenPartsLibrary/openpartslibrary/sample/parts_data_sample.xlsx')
103
103
  ```
104
104
  ## Database structure
105
- <img src="./Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
105
+ <img src="./openpartslibrary/images/Database-structure-openpartslibrary.png" width="100%" alt="OpenPartsLibrary database structure"></img>
106
106
 
107
107
  ## Part schema
108
108
  This table outlines the `Part` properties used in the OpenPartsLibrary.
@@ -28,14 +28,14 @@ class PartsLibrary:
28
28
  # Print the components table to the terminal
29
29
  component_component_table = pd.read_sql_table(table_name="component_component", con=self.engine)
30
30
  print('ComponentComponent:')
31
- print('==========')
31
+ print('===================')
32
32
  print(component_component_table)
33
33
  print('')
34
34
 
35
35
  # Print the components table to the terminal
36
36
  components_table = pd.read_sql_table(table_name="components", con=self.engine)
37
37
  print('Components:')
38
- print('==========')
38
+ print('===========')
39
39
  print(components_table)
40
40
  print('')
41
41
 
@@ -8,7 +8,7 @@ long_description = (this_directory / "README.md").read_text()
8
8
 
9
9
  setup(
10
10
  name='OpenPartsLibrary',
11
- version='0.1.8',
11
+ version='0.1.9',
12
12
  description='Python library for creating a database of hardware components for manufacturing',
13
13
  long_description=long_description,
14
14
  long_description_content_type='text/markdown',