Best Python code snippet using lisa_python
tar.py
Source:tar.py
...49 # folders are listed with trailing slashes, so:50 # ex: f1/f2/ f1/ f1/f2/f3/51 def is_folder(tar_content: str) -> bool:52 return tar_content.endswith("/")53 def get_file_depth(tar_content: str) -> int:54 slash_count = tar_content.count("/")55 if is_folder(tar_content): # contains >= 1 slash56 return slash_count - 157 else:58 return slash_count59 def is_top_level(tar_content: str) -> bool:60 return get_file_depth(tar_content) == 061 content = result.stdout.splitlines()62 output: List[str] = []63 filters: List[Callable[[str], bool]] = []64 # assemble list of tests we need to apply65 if not recursive:66 filters.append(is_top_level)67 if folders_only:68 filters.append(is_folder)69 # if we need to test anything, add inputs that pass all tests70 if filters:71 for item in content:72 if all(map(lambda x: x(item), filters)): # noqa: B02373 output.append(item)74 return output...
add_article_decor.py
Source:add_article_decor.py
...7"""8ZERO_DEPTH_OFFSET = -29with open("article-decor.txt") as file:10 DECORATIONS = [line for line in file.read().split("\n") if line != ""]11def get_file_depth(path: str) -> int:12 """13 Returns the depth of a file based on the number of path sep characters found.14 An offset is applied so that the depth of an article in a top-level category and 15 in no sub-categories is 0.16 """17 sep_count = len(re.findall(r"[/\\]", path))18 return sep_count + ZERO_DEPTH_OFFSET19def get_resource_path_prepend(path: str) -> str:20 """21 Returns the relative resource path prepend depending on the file's depth in the system.22 """23 depth = get_file_depth(path)24 return "../" * depth25def add_stuff(path: str, html: str) -> str:26 """27 Adds missing tags for head and external resources to the HTML string and returns the result.28 """29 # format tags30 resource_path_prepend = get_resource_path_prepend(path)31 formatted_tag_list = []32 for tag in DECORATIONS:33 tag = re.sub(r'"', r"'", tag)34 tag = re.sub(r"(href=')", r"\1"+resource_path_prepend, tag) # css href35 tag = re.sub(r"(src=')", r"\1"+resource_path_prepend, tag) # js src36 formatted_tag_list.append(tag)37 formatted_tags = "\n".join(formatted_tag_list)...
filetree.py
Source:filetree.py
...30 limit: int = 231 def get_lines(self) -> List[str]:32 lines = [self.base_dir.parts[-1]]33 for file in FileTreeIterator(self.base_dir, limit=self.limit):34 lines.append(" " * get_file_depth(self.base_dir, file) + "- " + file.parts[-1])...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!