We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug After using sdk to upload a .parquet file, the repo shows with 404
Environment CSGHub Version: latest in 2024.12.11 OS: Linux Hardware: 4c8G Launch: docker
To Reproduce Steps to reproduce the behavior:
import pandas as pd data = {"id": [1, 2, 3], "name": ["Alice", "Bob", "Charlie"], "age": [25, 30, 35]} df = pd.DataFrame(data) df.to_parquet("example.parquet", index=False) print("Parquet 文件已创建:example.parquet")
from pycsghub.snapshot_download import snapshot_download from pycsghub.file_download import file_download from pycsghub.file_upload import http_upload_file token = "xxxxx" endpoint = "http://x.x.x.x" repo_id = "test/test" repo_type = "dataset" cache_dir = "./cache" # 上传文件 result = http_upload_file(repo_id, endpoint=endpoint, token=token, repo_type=repo_type, file_path="./example.parquet")
Request URL: http://x.x.x.x/api/v1/datasets/test/test/dataviewer/catalog Request Method: GET Status Code: 404 Not Found
Expected behavior It should be work well without 404.
The text was updated successfully, but these errors were encountered:
@ChristLZS It is because our dataset data view function is still in development, and not ready, please stay tuned for future updates
Sorry, something went wrong.
@hiveer it's better to remove the request to apis not implemented.
sure, will do it asap
@hiveer does v1.2.0 new release fix this issue?
No branches or pull requests
Describe the bug
After using sdk to upload a .parquet file, the repo shows with 404
Environment
CSGHub Version: latest in 2024.12.11
OS: Linux
Hardware: 4c8G
Launch: docker
To Reproduce
Steps to reproduce the behavior:
Expected behavior
It should be work well without 404.
The text was updated successfully, but these errors were encountered: