-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilebase_datatypes.py
77 lines (62 loc) · 2.03 KB
/
filebase_datatypes.py
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
"""
Datetypes module for Filebase PIN API
"""
from datetime import datetime
from enum import Enum
from typing import TypedDict, List
class PinStatus(Enum):
"""
An enumeration representing the status of a pin operation in Filebase.
Attributes:
FAILED (str): Indicates that the pin operation has failed.
QUEUED (str): Indicates that the pin operation is queued and waiting to be processed.
PINNING (str): Indicates that the pin operation is currently in progress.
PINNED (str): Indicates that the pin operation has been successfully completed.
"""
FAILED = "failed"
QUEUED = "queued"
PINNING = "pinning"
PINNED = "pinned"
class PinSetType(TypedDict):
"""
A type representing a pin set data structure.
Attributes:
count (int): The number of CIDs in the pin set.
cids (List[str]): List of Content Identifiers (CIDs).
last_date (Union[str, datetime]): The last update date of the pin set.
"""
count: int
cids: List[str]
last_date: datetime
first_date: datetime
class PinData(TypedDict):
"""
A TypedDict representing the data structure for the pin value from PinResult.
Attributes:
cid (str): The content identifier (CID) of the data.
name (str): The name associated with the pinned data.
origins (List[str]): A list of origins where the data can be found.
meta (dict): A dictionary containing metadata related to the pinned data.
"""
cid: str
name: str
origins: List[str]
meta: dict
class PinResult(TypedDict):
"""
Represents a single pin result from the Filebase API.
"""
requestid: str
status: PinStatus
created: str
pin: PinData
delegates: List[str]
class GetPinsResponse(TypedDict):
"""
Represents the response structure from the Filebase API pins endpoint.
Attributes:
count (int): Total number of pins in the response
results (List[PinResult]): List of pin results
"""
count: int
results: List[PinResult]