-
Notifications
You must be signed in to change notification settings - Fork 3
/
sorter.py
46 lines (45 loc) · 1.38 KB
/
sorter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
x = [
'endpoints/catalog',
'endpoints/feeds',
'endpoints/finances',
'endpoints/notifications',
'endpoints/orders',
'endpoints/product_fees',
'endpoints/products',
'endpoints/reports',
'endpoints/reports2',
'endpoints/aplus_content',
'endpoints/authorization',
'endpoints/messaging',
'endpoints/notifications',
'endpoints/fba_inbound_eligibility',
'endpoints/merchant_fulfillment',
'endpoints/fulfillment_inbound',
'endpoints/fba_small_and_light',
'endpoints/fulfillment_outbound',
'endpoints/services',
'endpoints/shipping',
'endpoints/solicitations',
'endpoints/tokens',
'endpoints/vendor_direct_fulfillment_inventory',
'endpoints/upload',
'endpoints/vendor_direct_fulfillment_orders',
'endpoints/vendor_direct_fulfillment_payments',
'endpoints/vendor_direct_fulfillment_shipping',
'endpoints/vendor_direct_fulfillment_transactions',
'endpoints/vendor_invoices',
'endpoints/vendor_orders',
'endpoints/vendor_shipments',
'endpoints/vendor_transaction_status',
'endpoints/listings_items',
'endpoints/product_type_definitions',
'endpoints/listings_items',
'endpoints/product_type_definitions',
'endpoints/catalog_items',
'endpoints/inventories',
'endpoints/sales',
'endpoints/sellers',
]
if __name__ == '__main__':
for x in sorted(x):
print(x)