mirror of
				https://github.com/msgpack/msgpack-python.git
				synced 2025-11-04 03:20:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from msgpack._version import version
 | 
						|
from msgpack._msgpack import *
 | 
						|
 | 
						|
# alias for compatibility to simplejson/marshal/pickle.
 | 
						|
load = unpack
 | 
						|
loads = unpackb
 | 
						|
 | 
						|
dump = pack
 | 
						|
dumps = packb
 | 
						|
 |