From d80ac2fd2df4e7fb8a28acfa512bb11472b5cc99 Mon Sep 17 00:00:00 2001
From: liugz18 <57401541+liugz18@users.noreply.github.com>
Date: 星期四, 18 七月 2024 21:34:55 +0800
Subject: [PATCH] Rename 'res' in line 514 to avoid with naming conflict with line 365

---
 funasr/download/file.py |   96 ++++++++++++++++++------------------------------
 1 files changed, 36 insertions(+), 60 deletions(-)

diff --git a/funasr/download/file.py b/funasr/download/file.py
index da4958a..a8a13f8 100644
--- a/funasr/download/file.py
+++ b/funasr/download/file.py
@@ -10,6 +10,7 @@
 import requests
 from urllib.parse import urlparse
 
+
 def download_from_url(url):
     result = urlparse(url)
     file_path = None
@@ -21,10 +22,11 @@
         if not os.path.exists(work_dir):
             os.makedirs(work_dir)
         file_path = os.path.join(work_dir, os.path.basename(url))
-        with open(file_path, 'wb') as fb:
+        with open(file_path, "wb") as fb:
             fb.write(data)
     assert file_path is not None, f"failed to download: {url}"
     return file_path
+
 
 class Storage(metaclass=ABCMeta):
     """Abstract class of storage.
@@ -47,10 +49,7 @@
         pass
 
     @abstractmethod
-    def write_text(self,
-                   obj: str,
-                   filepath: Union[str, Path],
-                   encoding: str = 'utf-8') -> None:
+    def write_text(self, obj: str, filepath: Union[str, Path], encoding: str = "utf-8") -> None:
         pass
 
 
@@ -66,13 +65,11 @@
         Returns:
             bytes: Expected bytes object.
         """
-        with open(filepath, 'rb') as f:
+        with open(filepath, "rb") as f:
             content = f.read()
         return content
 
-    def read_text(self,
-                  filepath: Union[str, Path],
-                  encoding: str = 'utf-8') -> str:
+    def read_text(self, filepath: Union[str, Path], encoding: str = "utf-8") -> str:
         """Read data from a given ``filepath`` with 'r' mode.
 
         Args:
@@ -83,7 +80,7 @@
         Returns:
             str: Expected text reading from ``filepath``.
         """
-        with open(filepath, 'r', encoding=encoding) as f:
+        with open(filepath, "r", encoding=encoding) as f:
             value_buf = f.read()
         return value_buf
 
@@ -102,13 +99,10 @@
         if dirname and not os.path.exists(dirname):
             os.makedirs(dirname, exist_ok=True)
 
-        with open(filepath, 'wb') as f:
+        with open(filepath, "wb") as f:
             f.write(obj)
 
-    def write_text(self,
-                   obj: str,
-                   filepath: Union[str, Path],
-                   encoding: str = 'utf-8') -> None:
+    def write_text(self, obj: str, filepath: Union[str, Path], encoding: str = "utf-8") -> None:
         """Write data to a given ``filepath`` with 'w' mode.
 
         Note:
@@ -125,14 +119,11 @@
         if dirname and not os.path.exists(dirname):
             os.makedirs(dirname, exist_ok=True)
 
-        with open(filepath, 'w', encoding=encoding) as f:
+        with open(filepath, "w", encoding=encoding) as f:
             f.write(obj)
 
     @contextlib.contextmanager
-    def as_local_path(
-            self,
-            filepath: Union[str,
-                            Path]) -> Generator[Union[str, Path], None, None]:
+    def as_local_path(self, filepath: Union[str, Path]) -> Generator[Union[str, Path], None, None]:
         """Only for unified API and do nothing."""
         yield filepath
 
@@ -152,8 +143,7 @@
         return r.text
 
     @contextlib.contextmanager
-    def as_local_path(
-            self, filepath: str) -> Generator[Union[str, Path], None, None]:
+    def as_local_path(self, filepath: str) -> Generator[Union[str, Path], None, None]:
         """Download a file from ``filepath``.
 
         ``as_local_path`` is decorated by :meth:`contextlib.contextmanager`. It
@@ -179,14 +169,10 @@
             os.remove(f.name)
 
     def write(self, obj: bytes, url: Union[str, Path]) -> None:
-        raise NotImplementedError('write is not supported by HTTP Storage')
+        raise NotImplementedError("write is not supported by HTTP Storage")
 
-    def write_text(self,
-                   obj: str,
-                   url: Union[str, Path],
-                   encoding: str = 'utf-8') -> None:
-        raise NotImplementedError(
-            'write_text is not supported by HTTP Storage')
+    def write_text(self, obj: str, url: Union[str, Path], encoding: str = "utf-8") -> None:
+        raise NotImplementedError("write_text is not supported by HTTP Storage")
 
 
 class OSSStorage(Storage):
@@ -194,20 +180,16 @@
 
     def __init__(self, oss_config_file=None):
         # read from config file or env var
-        raise NotImplementedError(
-            'OSSStorage.__init__ to be implemented in the future')
+        raise NotImplementedError("OSSStorage.__init__ to be implemented in the future")
 
     def read(self, filepath):
-        raise NotImplementedError(
-            'OSSStorage.read to be implemented in the future')
+        raise NotImplementedError("OSSStorage.read to be implemented in the future")
 
-    def read_text(self, filepath, encoding='utf-8'):
-        raise NotImplementedError(
-            'OSSStorage.read_text to be implemented in the future')
+    def read_text(self, filepath, encoding="utf-8"):
+        raise NotImplementedError("OSSStorage.read_text to be implemented in the future")
 
     @contextlib.contextmanager
-    def as_local_path(
-            self, filepath: str) -> Generator[Union[str, Path], None, None]:
+    def as_local_path(self, filepath: str) -> Generator[Union[str, Path], None, None]:
         """Download a file from ``filepath``.
 
         ``as_local_path`` is decorated by :meth:`contextlib.contextmanager`. It
@@ -233,15 +215,10 @@
             os.remove(f.name)
 
     def write(self, obj: bytes, filepath: Union[str, Path]) -> None:
-        raise NotImplementedError(
-            'OSSStorage.write to be implemented in the future')
+        raise NotImplementedError("OSSStorage.write to be implemented in the future")
 
-    def write_text(self,
-                   obj: str,
-                   filepath: Union[str, Path],
-                   encoding: str = 'utf-8') -> None:
-        raise NotImplementedError(
-            'OSSStorage.write_text to be implemented in the future')
+    def write_text(self, obj: str, filepath: Union[str, Path], encoding: str = "utf-8") -> None:
+        raise NotImplementedError("OSSStorage.write_text to be implemented in the future")
 
 
 G_STORAGES = {}
@@ -249,27 +226,26 @@
 
 class File(object):
     _prefix_to_storage: dict = {
-        'oss': OSSStorage,
-        'http': HTTPStorage,
-        'https': HTTPStorage,
-        'local': LocalStorage,
+        "oss": OSSStorage,
+        "http": HTTPStorage,
+        "https": HTTPStorage,
+        "local": LocalStorage,
     }
 
     @staticmethod
     def _get_storage(uri):
-        assert isinstance(uri,
-                          str), f'uri should be str type, but got {type(uri)}'
+        assert isinstance(uri, str), f"uri should be str type, but got {type(uri)}"
 
-        if '://' not in uri:
+        if "://" not in uri:
             # local path
-            storage_type = 'local'
+            storage_type = "local"
         else:
-            prefix, _ = uri.split('://')
+            prefix, _ = uri.split("://")
             storage_type = prefix
 
-        assert storage_type in File._prefix_to_storage, \
-            f'Unsupported uri {uri}, valid prefixs: '\
-            f'{list(File._prefix_to_storage.keys())}'
+        assert storage_type in File._prefix_to_storage, (
+            f"Unsupported uri {uri}, valid prefixs: " f"{list(File._prefix_to_storage.keys())}"
+        )
 
         if storage_type not in G_STORAGES:
             G_STORAGES[storage_type] = File._prefix_to_storage[storage_type]()
@@ -290,7 +266,7 @@
         return storage.read(uri)
 
     @staticmethod
-    def read_text(uri: Union[str, Path], encoding: str = 'utf-8') -> str:
+    def read_text(uri: Union[str, Path], encoding: str = "utf-8") -> str:
         """Read data from a given ``filepath`` with 'r' mode.
 
         Args:
@@ -320,7 +296,7 @@
         return storage.write(obj, uri)
 
     @staticmethod
-    def write_text(obj: str, uri: str, encoding: str = 'utf-8') -> None:
+    def write_text(obj: str, uri: str, encoding: str = "utf-8") -> None:
         """Write data to a given ``filepath`` with 'w' mode.
 
         Note:

--
Gitblit v1.9.1