Skip to content
Snippets Groups Projects
Commit 98c40811 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added BOM viewer

parent aabe766a
No related branches found
No related tags found
No related merge requests found
%% Cell type:code id:cbfca94c tags:
``` python
import pandas as pd
import os.path
```
%% Cell type:code id:28dcda03 tags:
``` python
data = pd.read_csv("..\\FullBoard\\bom.csv", sep=';', index_col=False)
```
%% Cell type:code id:cd984b4c tags:
``` python
data
```
%% Output
Id Designator \
0 1 G***
1 2 S50,S49,S48,S47,S46,S45,S44,S43,S42,S41,S40,S3...
2 3 M50,M49,M48,M47,M46,M45,M44,M43,M42,M41,M40,M3...
3 4 J60,J3
4 5 R150,R149,R148,R147,R146,R135,R134,R133,R132,R...
5 6 R145,R144,R143,R142,R141,R130,R129,R128,R127,R...
6 7 R140,R139,R138,R137,R136,R125,R124,R123,R122,R...
7 8 J59,J58,J57,J56,J55,J54,J53,J52,J51,J50,J49,J4...
8 9 J6
9 10 J5,J4
10 11 D100,D99,D98,D97,D96,D90,D89,D88,D87,D86,D80,D...
11 12 D95,D94,D93,D92,D91,D85,D84,D83,D82,D81,D75,D7...
12 13 C1
Package Quantity \
0 logo5 1
1 EE2-5NU 50
2 NTD3055-DPAK 50
3 PinHeader_1x10_P2.54mm_Vertical 2
4 R_0805_2012Metric_Pad1.15x1.40mm_HandSolder 50
5 R_0805_2012Metric_Pad1.15x1.40mm_HandSolder 50
6 R_0805_2012Metric_Pad1.15x1.40mm_HandSolder 50
7 Connector_01x02_solder 51
8 PinHeader_2x18_P2.54mm_Vertical 1
9 PinHeader_1x08_P2.54mm_Vertical 2
10 LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder 50
11 D_DO-41_SOD81_P10.16mm_Horizontal 50
12 CP_Radial_D6.3mm_P2.50mm 1
Designation Supplier and ref Unnamed: 6
0 LOGO NaN NaN
1 EE2-5NU-L_EC2-5NU NaN NaN
2 NTD3055L170 NaN NaN
3 Conn_01x10 NaN NaN
4 150 NaN NaN
5 43k NaN NaN
6 1.2k NaN NaN
7 Conn_01x02 NaN NaN
8 Conn_02x18_Odd_Even NaN NaN
9 Conn_01x08 NaN NaN
10 LED NaN NaN
11 DIODE NaN NaN
12 10u NaN NaN
%% Cell type:code id:fd1233ab tags:
``` python
#Add links
data = data.assign(Link=[])
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment