mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 22:52:19 +00:00
10 lines
265 B
Python
10 lines
265 B
Python
import tempfile
|
|
|
|
from lib.exec import Task
|
|
|
|
class VNCFindTask(Task): # pylint: disable=too-few-public-methods
|
|
"""Tries to connect FTP service with various credentials"""
|
|
def _process(self, item):
|
|
fd, temp_path = tempfile.mkstemp()
|
|
print(fd, temp_path)
|
|
|