Advertisement
Guest User

Untitled

a guest
Apr 26th, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. if __name__ == ‘main':
  2. automation = new SpecificClientAutomation(...params)
  3. automation.doTheThing()
  4.  
  5. if __name__ == 'main':
  6. automation = SpecificClientAutomation(config)
  7.  
  8. class SpecificCompanyAutomation(object):
  9. def __init__(self, config)
  10. this.sftp_user = config[‘sftp’][‘user’]
  11. this.sftp_password = config[‘sftp’][‘password’]
  12. … x15
  13.  
  14. if __name__ == 'main':
  15. sftp_user = config[‘sftp’][‘user’]
  16. sftp_password = config[‘sftp’][‘password’]
  17. ... x15
  18. automation = SpecificClientAutomation(
  19. sftp_user, sftp_password, ... x15)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement