8 lines
223 B
Python
8 lines
223 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Les clef sont un code article
|
|
items = {
|
|
'CABLE' : {'designation': u'Cable Ethernet 5m', 'pu': 3},
|
|
'ADAPTATEUR' : {'designation': u'Adaptateur Ethernet/USB', 'pu': 17},
|
|
}
|