|
| 1 | +import requests |
| 2 | +import os |
| 3 | + |
| 4 | +def download_github_file(repo_owner, repo_name, branch, file_path, local_dir): |
| 5 | + """ |
| 6 | + Download a file from a specific branch of a GitHub repository. |
| 7 | +
|
| 8 | + Args: |
| 9 | + repo_owner (str): Owner of the repository. |
| 10 | + repo_name (str): Name of the repository. |
| 11 | + branch (str): Branch name from which to download the file. |
| 12 | + file_path (str): Path to the file in the repository. |
| 13 | + local_dir (str): Local directory to save the file. |
| 14 | +
|
| 15 | + Returns: |
| 16 | + None |
| 17 | + """ |
| 18 | + # Construct the URL to access the file |
| 19 | + base_url = f"https://raw.githubusercontent.com/{repo_owner}/{repo_name}/{branch}/{file_path}" |
| 20 | + |
| 21 | + # Send a GET request to download the file |
| 22 | + response = requests.get(base_url) |
| 23 | + response.raise_for_status() # Raise an exception for HTTP errors |
| 24 | + |
| 25 | + # Ensure the local directory exists |
| 26 | + if not os.path.exists(local_dir): |
| 27 | + os.makedirs(local_dir) |
| 28 | + |
| 29 | + # Define the local path to save the file |
| 30 | + local_file_path = os.path.join(local_dir, os.path.basename(file_path)) |
| 31 | + |
| 32 | + # Write the content to the file |
| 33 | + with open(local_file_path, 'wb') as file: |
| 34 | + file.write(response.content) |
| 35 | + |
| 36 | + print(f"File saved to {local_file_path}") |
| 37 | + |
| 38 | +owner= 'IHP-GmbH' |
| 39 | +repo_name= 'IHP-Open-PDK' |
| 40 | +branch = 'dev' |
| 41 | + |
| 42 | +# Klayout |
| 43 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/sg13g2.lyp', '.') |
| 44 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/sg13g2.lyt', '.') |
| 45 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_maximal.lydrc', 'drc') |
| 46 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_minimal.lydrc', 'drc') |
| 47 | +# LIB |
| 48 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_slow_1p35V_125C.lib', 'lib') |
| 49 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_slow_1p08V_125C.lib', 'lib') |
| 50 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_fast_1p32V_m40C.lib', 'lib') |
| 51 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_fast_1p65V_m40C.lib', 'lib') |
| 52 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_typ_1p20V_25C.lib', 'lib') |
| 53 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_typ_1p50V_25C.lib', 'lib') |
| 54 | +# wait for official update |
| 55 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_dummy.lib', 'lib') |
| 56 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_fast_1p32V_3p6V_m40C.lib', 'lib') |
| 57 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_fast_1p65V_3p6V_m40C.lib', 'lib') |
| 58 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_slow_1p08V_3p0V_125C.lib', 'lib') |
| 59 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_slow_1p35V_3p0V_125C.lib', 'lib') |
| 60 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_typ_1p2V_3p3V_25C.lib', 'lib') |
| 61 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_typ_1p5V_3p3V_25C.lib', 'lib') |
| 62 | +# GDS |
| 63 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/gds/sg13g2_stdcell.gds', 'gds') |
| 64 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/gds/sg13g2_io.gds', 'gds') |
| 65 | +# LEF |
| 66 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lef/sg13g2_tech.lef', 'lef') |
| 67 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lef/sg13g2_stdcell.lef', 'lef') |
| 68 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lef/sg13g2_io.lef', 'lef') |
| 69 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lef/sg13g2_io_notracks.lef', 'lef') |
| 70 | +# Verilog |
| 71 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/verilog/sg13g2_stdcell.v', 'verilog') |
| 72 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/verilog/sg13g2_io.v', 'verilog') |
| 73 | +# CDL |
| 74 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/cdl/sg13g2_stdcell.cdl', 'cdl') |
| 75 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/cdl/sg13g2_io.cdl', 'cdl') |
| 76 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_1024x64_c2_bm_bist.cdl', 'cdl') |
| 77 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_1024x64_c2_bm_bist.cdl', 'cdl') |
| 78 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_2048x64_c2_bm_bist.cdl', 'cdl') |
| 79 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_256x48_c2_bm_bist.cdl', 'cdl') |
| 80 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_256x64_c2_bm_bist.cdl', 'cdl') |
| 81 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_512x64_c2_bm_bist.cdl', 'cdl') |
| 82 | +download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_64x64_c2_bm_bist.cdl', 'cdl') |
0 commit comments