archive
/
ipc-unix
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
ipc-unix/tests/__init__.py

15 lines
285 B
Python

from ipc_unix.simple import Server
import tempfile
import os
class EchoServer(Server):
def handle_request(self, request):
return request
def get_temp_file_path() -> str:
_, temp_file_path = tempfile.mkstemp()
os.remove(temp_file_path)
return temp_file_path