13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from sipro.api.client import get_client
 | 
						|
 | 
						|
client = get_client()
 | 
						|
router = '/general'
 | 
						|
 | 
						|
 | 
						|
def get_shipping_warehouses():
 | 
						|
    return client.method('GET', f'{router}/getShippingWarehouses')
 | 
						|
 | 
						|
 | 
						|
def get_cities():
 | 
						|
    return client.method('GET', f'{router}/getCities')
 |