Trying to open wifi provision application in Appium Python script using Unitest but unable to open application

#Code
import sys, os
from appium import webdriver
from appium.options.android import UiAutomator2Options
from appium.webdriver.common.touch_action import TouchAction
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By

from webdriver_manager.chrome import ChromeDriverManager
#from appium.webdriver.common.mobileby import MobileBy
from appium.webdriver.appium_service import AppiumService
import time

class AppiumBLETest(object):
def init(self, sysArgs):
self.ssid = int(sysArgs[1])
self.password = int(sysArgs[2])
def open_app(self):
desired_cap = {
“platformName”: “Android”,
“platformVersion”: “10”,
“deviceName”: “RZ8M71M2E9X”,
“appPackage”: “com.android.chrome”,
“appActivity”: “com.google.android.apps.chrome.Main”
}
# Initialize the driver
options = UiAutomator2Options().load_capabilities(desired_cap)
driver = webdriver.Remote(“http://0.0.0.0:4723/wd/hub”, options=options)
driver.implicitly_wait(30)
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
driver.get(“https://www.google.com”)
print(“Launching BLE Provisioning app”)

    time.sleep(2)
    search_field = driver.find_element(By.ID, 'id-search-field')

    search_field.send_keys('ble provisioning play store inno')

    search_field.submit()

    time.sleep(2)

    driver.close()

   	'''search_box= driver.find_element_by_id('com.android.chrome:id/search_box_text')
    search_box.click()
    search_box.send_keys('ble provisioning play store inno')
    search_box.submit()'''

if name==“main”:
fn = AppiumBLETest(sys.argv)
fn.open_app()

Error:
Traceback (most recent call last):
File “/home/admin1/Desktop/temp_soma/sample.py”, line 55, in
fn.open_app()
File “/home/admin1/Desktop/temp_soma/sample.py”, line 30, in open_app
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
AttributeError: module ‘appium.webdriver’ has no attribute ‘Chrome’

Could anyone please help on how to resolve this?