0

私のコトリンコード:

fun get_path(): PyObject? {
    val py = getInstance()
    val pyf = py.getModule("1")
    val va = pyf.callAttr ("pdf_files", inputvalue)
    return va
}

私のPythonコード

def pdf_files(user_input):
    pdfFiles = []
    path = str(user_input)
    for filename in os.listdir(path):
        if filename.endswith('.pdf'):
            pdfFiles.append("/" + filename)
    return path, pdfFiles
4

0 に答える 0