profile settings in screenshot
"colorScheme": "Cyberpunk SCARLET",
"cursorHeight": 25,
"cursorShape": "vintage",
#!/usr/bin/env python | |
from suds.client import Client | |
import time | |
WSDL_URL = 'https://www.superfinanciera.gov.co/SuperfinancieraWebServiceTRM/TCRMServicesWebService/TCRMServicesWebService?WSDL' | |
date = time.strftime('%Y-%m-%d') | |
def trm(date): | |
try: | |
client = Client(WSDL_URL, location=WSDL_URL, faults=True) |
#!/usr/bin/env python | |
import pyperclip | |
example_list = ["Line 1", "Line 2", "Line 3", "forever and ever"] | |
def list_to_clipboard(output_list): | |
""" Check if len(list) > 0, then copy to clipboard """ | |
if len(output_list) > 0: | |
pyperclip.copy('\n'.join(output_list)) |
# Changing the data types of all strings in the module at once | |
from __future__ import unicode_literals | |
# Used to save the file as excel workbook | |
# Need to install this library | |
from xlwt import Workbook | |
# Used to open to corrupt excel file | |
import io | |
filename = r'SALEJAN17.xls' | |
# Opening the file using 'utf-16' encoding |
# Based on Waveshare's epd5in65f.py demo. Copyright notice at end. | |
import sys | |
import os | |
picdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'pic') | |
libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib') | |
if os.path.exists(libdir): | |
sys.path.append(libdir) |