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/env python | |
import os | |
import sys | |
import logging | |
# disable logging during tests | |
if 'test' in sys.argv: | |
logging.disable(logging.CRITICAL) | |
# add support for --time option to measure the time needed to execute each Test Class |
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
#Author: Yaniv Kalsky | |
import requests | |
import csv | |
import os | |
HOST = 'http://yourcompany.cloud.answerhub.com' | |
AUTH = "Basic bWFu2XYxa4p5MTlvMTV4" | |
community_base_url = 'https://community.yourcompany.com' | |
MAX_IDEAS = 1000 |