mirror of
				https://github.com/pocketpy/pocketpy
				synced 2025-10-26 06:20:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			417 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			417 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def compress(data: bytes) -> bytes:
 | |
|     """Compress the given data into LZ4 block format.
 | |
|     
 | |
|     This function is equivalent to `lz4.block.compress` of https://pypi.org/project/lz4/.
 | |
|     """
 | |
| 
 | |
| def decompress(data: bytes) -> bytes:
 | |
|     """Decompress the given LZ4 block format data produced by `lz4.compress()`.
 | |
|     
 | |
|     This function is equivalent to `lz4.block.decompress` of https://pypi.org/project/lz4/.
 | |
|     """
 |