api_user = config.get('robot', 'botpassword_bot')
api_password = config.get('robot', 'botpassword_password')
super().__init__(api_url)
+ if api_url.startswith('http:'):
+ self.no_ssl = True
self.login(api_user, api_password, True)
def query_page(self, title: str) -> dict: