This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import paramiko | |
import requests | |
import base64 | |
import json | |
from simple_salesforce import Salesforce | |
#--------------------------------- | |
# FTP portion | |
#--------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#----------------------------------------------------------------------------_ | |
# This script can be ran in 2 modes: | |
# python play.py train | |
# or | |
# python play.py Run | |
# | |
# Use the training mode to train the AI. | |
# Once the AI has been trained, then run it in the play mode. The matching screenshot | |
# from the learning mode will be displayed on screen. | |
#----------------------------------------------------------------------------- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#--------------------------------------------------------------------------- | |
# This python script traverses the reports directory of the SFDC metadata. | |
# It goes through each directory and reports, and pulls out fields | |
# used in the report. A file called reporting_fields_used.csv is generated. | |
#--------------------------------------------------------------------------- | |
import os | |
import sys | |
import xml.etree.ElementTree as ET | |
from StringIO import StringIO |