top of page

Table Data to String Array

for row in range(self.table.rowCount()): for column in range(self.table.columnCount()): DATA = DATA + (self.table.item(row,column).text()) + "+" DATA = DATA[:-1] DATA = DATA + "|" DATA = DATA[:-1]

5 views0 comments

Recent Posts

See All

Run Latest File Program

import os import re import time def run_program(program): try: dir_path, base_name = os.path.split(program) base_name += ' ' max_version = [] m

Self Signing Cert Creator

import os from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton, QLineEdit, QLabel from OpenSSL import crypto, SSL class SSLGenerator(QWidget): def __init__(self): s

bottom of page