(self, service)
| 28 | ).decode() |
| 29 | |
| 30 | def proxy_state_for_service(self, service): |
| 31 | state = self.run_networksetup_command("-getwebproxy", service).splitlines() |
| 32 | return dict([re.findall(r"([^:]+): (.*)", line)[0] for line in state]) |
| 33 | |
| 34 | def enable_proxy_for_service(self, service): |
| 35 | print(f"Enabling proxy on {service}...") |
no test coverage detected