Best Python code snippet using dbt-osmosis_python
setting.py
Source:setting.py  
...52    automatic_index_creation = 'robot_framework_automatic_indexing'53    automatic_database_update = 'robot_framework_automatic_database_update'54    kw_prefixes = 'robot_framework_keyword_prefixes'55def get_scanner_dir():56    project_setting = parse_project(SettingObject.db_dir)57    if not project_setting:58        return PathResolver().default_scanner_dir59    else:60        return path.join(project_setting, PathResolver().scanner_folder)61def get_index_dir():62    project_setting = parse_project(SettingObject.db_dir)63    if not project_setting:64        return PathResolver().default_index_dir65    else:66        return path.join(project_setting, PathResolver.index_folder)67def get_log_file():68    project_setting = parse_project(SettingObject.db_dir)69    if not project_setting:70        return PathResolver().log_file71    else:72        return path.join(project_setting, PathResolver().log_file_name)73def get_view_path():74    project_setting = parse_project(SettingObject.db_dir)75    if not project_setting:76        return PathResolver().default_view_folder77    else:78        return path.join(project_setting, PathResolver().view_folder)79def get_setting(setting):80    if setting.lower() == SettingObject.table_dir:81        return get_scanner_dir()82    elif setting.lower() == SettingObject.index_dir:83        return get_index_dir()84    elif setting.lower() == SettingObject.scanner_runner:85        return PathResolver().scanner_runner86    elif setting.lower() == SettingObject.index_runner:87        return PathResolver().index_runner88    elif setting.lower() == SettingObject.log_file:89        return get_log_file()90    else:91        return get_sublime_setting(setting)92def parse_project(setting):93    rf_project_setting = None94    window = sublime.active_window()95    project_data = window.project_data()96    if project_data and SettingObject.project_setting in project_data:97        rf_project_data = project_data[SettingObject.project_setting]98        if setting in rf_project_data:99            rf_project_setting = rf_project_data[setting]100    return rf_project_setting101def get_sublime_setting(setting):102    project_setting = parse_project(setting)103    if not project_setting:104        plugin_settings = sublime.load_settings('Robot.sublime-settings')105        return plugin_settings.get(setting)106    else:...ssw800_parsing_script.py
Source:ssw800_parsing_script.py  
...39rockboxFiles = getListOfFiles(dirName_rockbox)40output_directory = r"C:\Users\Edward\Documents\GitHub\SYS800\OUTPUT_FILES\\"41##Second Task: We need to extract all the extensions for each file42#For Multiple C-Files43def parse_project(project, allFiles):44    for fyle in allFiles:45        if fyle.endswith(".java"):46            comments = comment_parser.extract_comments(fyle, mime="text/x-java-source")47            name = fyle.replace("\\", ".").replace(48                "C:.Users.Edward.Documents.GitHub.", "")49            output = output_directory + project + "\\" + name[:-5] + ".txt"50            F = open(output, "a")51            for comment in comments:52                F.write(str(comment))53            F.close()54        ##F = open(f"{dirpath}-{fyle}.txt", "a")55        ##F.close()56        if fyle.endswith(".c"):57            try:58                comments = comment_parser.extract_comments(fyle, mime="text/x-c")59                name = fyle.replace("\\", ".").replace(60                    "C:.Users.Edward.Documents.GitHub.", "")61                output = output_directory + project + "\\" + name[:-2] + ".txt"62                F = open(output, "a")63                for comment in comments:64                    F.write(str(comment))65                F.close()66            except UnicodeDecodeError:67                print("Bad characters in files!" + fyle)68            except ValueError:69                print("The file is empty!")70print("MDPNP # of Files" + "= " + str(len(mdpnpFiles)))71print("OpenWRT # of Files" + "= " + str(len(openwrtFiles)))72print("Rockbox # of Files" + "= " + str(len(rockboxFiles)))73mdpnp_comments = parse_project("MDPNP", mdpnpFiles)74#parse_project("OpenWRT", openwrtFiles)...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!!
