Appium_Service throws error in Python 3

Hello, I have been using Python 2.7, Pytest, and Appium to automate an iOS app.

I use the Appium.Webdriver.Appium_Service to start my servers between tests. This file holds a library “httplib” which is deprecated from Python 3.

I haven’t been able to find any information on if Appium_Service is supposed to be deprecated. Has anyone else experienced this? Is there a potential fix?

` @pytest.fixture(autouse=True)
def appium_server(self):
    self.appium_service.start()
    yield
    self.appium_service.stop()`

Is there a better way to maintain this functionality? Thanks so much for any information!

edit - I tried to replace httplib with http.client and then edited the rest of the file using 2to3 accordingly but this didn’t work.

Thanks!
I’ll work for the issue in https://github.com/appium/python-client/issues/369