File size: 1,516 Bytes
0ad74ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import argparse
import datetime
from typing import Optional

from huggingface_hub import HfApi


def delete_space(space_id: str, hf_token: str, api_client: Optional[HfApi] = None):
    api_client = api_client or HfApi()
    api_client.delete_repo(repo_id=space_id, token=hf_token, repo_type="space")


def get_spaces_to_delete(
    n_days: int, org_name: str, api_client: Optional[HfApi] = None
):
    api_client = api_client or HfApi()
    spaces = api.list_spaces(author=org_name)
    spaces_to_delete = []
    for space in spaces:
        last_modified = api_client.space_info(space.id).lastModified
        age = (
            datetime.datetime.now()
            - datetime.datetime.fromisoformat(last_modified.rsplit(".", 1)[0])
        ).days
        if age > n_days:
            spaces_to_delete.append(space.id)
    return spaces_to_delete


if __name__ == "__main__":
    parser = argparse.ArgumentParser(description="Upload a demo to a space")
    parser.add_argument(
        "n_days",
        type=int,
        help="Spaces older than n_days will be automatically deleted",
    )
    parser.add_argument(
        "org_name", type=str, help="Name of the author/org to search in"
    )
    parser.add_argument("hf_token", type=str, help="HF API token")
    args = parser.parse_args()
    api = HfApi()

    to_delete = get_spaces_to_delete(args.n_days, args.org_name, api_client=api)
    for space in to_delete:
        print(f"Deleting {space}")
        delete_space(space, args.hf_token, api_client=api)