Spaces:
Runtime error
Runtime error
| def download_and_upload_kadiAPY_repo_to_huggingfacespace(api_url, project_id, version): | |
| try: | |
| # Construct the URL for the release's zip file | |
| encoded_project_id = urllib.parse.quote(project_id, safe="") | |
| url = f"{api_url}/projects/{encoded_project_id}/repository/archive.zip?sha={version}" | |
| # Send GET request to download the zip file | |
| response = requests.get(url, stream=True) | |
| if response.status_code == 200: | |
| extract_and_upload_file(response, api, DATA_DIR, HF_SPACE_NAME) | |
| else: | |
| print(f"Failed to download the release: {response.status_code} - {response.reason}") | |
| print(response.text) | |
| except FileNotFoundError: | |
| print("The config.json file was not found. Please ensure it exists in the project directory.") | |
| except json.JSONDecodeError: | |
| print("Failed to parse the config.json file. Please ensure it contains valid JSON.") | |
| except Exception as e: | |
| print(f"An error occurred: {e}") | |
| def extract_and_upload_file(response, api, DATA_DIR, HF_SPACE_NAME): | |
| """Extracts the archive content and uploads the file.""" | |
| archive_bytes = io.BytesIO(response.content) | |
| # Extract filename from content-disposition header | |
| content_disposition = response.headers.get("content-disposition") | |
| if content_disposition and "filename=" in content_disposition: | |
| filename = content_disposition.split("filename=")[-1].strip('"') | |
| # Upload the file | |
| api.upload_file( | |
| path_or_fileobj=archive_bytes, | |
| path_in_repo=f"{DATA_DIR}/{filename}", | |
| repo_id=HF_SPACE_NAME, | |
| repo_type="space" | |
| ) | |