mycloudctl 1.0.2__tar.gz → 1.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/PKG-INFO +13 -13
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/README_CLI.md +11 -11
- mycloudctl-1.0.4/cli/__init__.py +2 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/PKG-INFO +13 -13
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/pyproject.toml +2 -2
- mycloudctl-1.0.2/cli/__init__.py +0 -2
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/README.md +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/__main__.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/api.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/__init__.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/auth.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/batch.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/favorites.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/files.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/folders.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/notifications.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/prefs.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/profile.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/search.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/servers.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/share.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/stash.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/commands/storage.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/config.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/ui/__init__.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/ui/table.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/cli/ui/tree.py +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/SOURCES.txt +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/dependency_links.txt +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/entry_points.txt +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/requires.txt +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/mycloudctl.egg-info/top_level.txt +0 -0
- {mycloudctl-1.0.2 → mycloudctl-1.0.4}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mycloudctl
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: Official CLI for myCloud
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: Official CLI for myCloud - your personal cloud storage
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Requires-Dist: typer[all]>=0.12
|
|
@@ -28,14 +28,14 @@ After installation, the `mycloud` command will be available in your terminal. Al
|
|
|
28
28
|
|
|
29
29
|
The CLI commands are grouped by their functionality to help you easily find what you need.
|
|
30
30
|
|
|
31
|
-
###
|
|
31
|
+
### ▸ Authentication
|
|
32
32
|
Manage your myCloud session and account.
|
|
33
33
|
- `mycloud login`: Sign in to your myCloud account.
|
|
34
34
|
- `mycloud logout`: Sign out and clear your current session.
|
|
35
35
|
- `mycloud whoami`: Display the currently logged-in user and session details.
|
|
36
36
|
- `mycloud register`: Register a new myCloud account directly from the terminal.
|
|
37
37
|
|
|
38
|
-
###
|
|
38
|
+
### ▸ File Operations
|
|
39
39
|
Core file management capabilities.
|
|
40
40
|
- `mycloud ls [folder_id]`: List files and folders in the root directory, or a specified folder.
|
|
41
41
|
- `mycloud upload <file>`: Upload a local file to myCloud. (Use `--stash` to upload it directly to your stash).
|
|
@@ -49,50 +49,50 @@ Core file management capabilities.
|
|
|
49
49
|
- `mycloud cat <id>`: Print the contents of a text file directly to the terminal.
|
|
50
50
|
- `mycloud favorite <id>` (or `mycloud fav <id>`): Toggle the favorite status of a file.
|
|
51
51
|
|
|
52
|
-
###
|
|
52
|
+
### ▸ Folder Operations
|
|
53
53
|
Organize your files using folders.
|
|
54
54
|
- `mycloud mkdir <name>`: Create a new folder.
|
|
55
55
|
- `mycloud rmdir <id>`: Delete a folder.
|
|
56
56
|
- `mycloud folders ls`: List all your folders.
|
|
57
57
|
- `mycloud folders rename <id> <new_name>`: Rename a folder.
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### ▸ Search
|
|
60
60
|
- `mycloud find <query>`: Search your entire cloud for files and folders matching the name.
|
|
61
61
|
|
|
62
|
-
###
|
|
62
|
+
### ▸ Stash (Recycle Bin)
|
|
63
63
|
Manage temporarily deleted files.
|
|
64
64
|
- `mycloud stash ls`: List all items currently in your stash.
|
|
65
65
|
- `mycloud stash restore <id>`: Restore a stashed item back to its original location.
|
|
66
66
|
- `mycloud stash empty`: Empty the stash permanently, deleting files forever.
|
|
67
67
|
|
|
68
|
-
###
|
|
68
|
+
### ▸ Sharing
|
|
69
69
|
Share files with other users or create public links.
|
|
70
70
|
- `mycloud share create <file_id>`: Create a shareable link for a file.
|
|
71
71
|
- `mycloud share ls`: List all your currently active shared items.
|
|
72
72
|
- `mycloud share rm <share_id>`: Revoke and remove a share link.
|
|
73
73
|
- `mycloud share direct <file_id> <username>`: Directly share a file with another registered myCloud user.
|
|
74
74
|
|
|
75
|
-
###
|
|
75
|
+
### ▸ Batch Operations
|
|
76
76
|
Group multiple files and folders into a single shareable link.
|
|
77
77
|
- `mycloud batch create`: Create a new batch share link.
|
|
78
78
|
- `mycloud batch add <batch_id> <file_id>`: Add a file or folder to an existing batch share.
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### ▸ Servers / Nodes
|
|
81
81
|
Manage your private storage nodes.
|
|
82
82
|
- `mycloud servers ls`: List all your registered private storage nodes and their statuses.
|
|
83
83
|
|
|
84
|
-
###
|
|
84
|
+
### ▸ Storage & Stats
|
|
85
85
|
Monitor your storage usage.
|
|
86
86
|
- `mycloud stats` (or `mycloud storage stats`): Show current storage usage, total capacity, and limits.
|
|
87
87
|
- `mycloud storage breakdown`: View a detailed breakdown of your storage consumption by file type.
|
|
88
88
|
|
|
89
|
-
###
|
|
89
|
+
### ▸ Notifications
|
|
90
90
|
Stay updated with account activities.
|
|
91
91
|
- `mycloud notify ls`: List your recent account notifications.
|
|
92
92
|
- `mycloud notify read <id>`: Mark a specific notification as read.
|
|
93
93
|
- `mycloud notify read-all`: Mark all pending notifications as read.
|
|
94
94
|
|
|
95
|
-
###
|
|
95
|
+
### ▸ Profile & Preferences
|
|
96
96
|
Customize your account settings.
|
|
97
97
|
- `mycloud profile view`: View your profile information.
|
|
98
98
|
- `mycloud profile update-avatar <image_path>`: Set or update your profile picture.
|
|
@@ -18,14 +18,14 @@ After installation, the `mycloud` command will be available in your terminal. Al
|
|
|
18
18
|
|
|
19
19
|
The CLI commands are grouped by their functionality to help you easily find what you need.
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### ▸ Authentication
|
|
22
22
|
Manage your myCloud session and account.
|
|
23
23
|
- `mycloud login`: Sign in to your myCloud account.
|
|
24
24
|
- `mycloud logout`: Sign out and clear your current session.
|
|
25
25
|
- `mycloud whoami`: Display the currently logged-in user and session details.
|
|
26
26
|
- `mycloud register`: Register a new myCloud account directly from the terminal.
|
|
27
27
|
|
|
28
|
-
###
|
|
28
|
+
### ▸ File Operations
|
|
29
29
|
Core file management capabilities.
|
|
30
30
|
- `mycloud ls [folder_id]`: List files and folders in the root directory, or a specified folder.
|
|
31
31
|
- `mycloud upload <file>`: Upload a local file to myCloud. (Use `--stash` to upload it directly to your stash).
|
|
@@ -39,50 +39,50 @@ Core file management capabilities.
|
|
|
39
39
|
- `mycloud cat <id>`: Print the contents of a text file directly to the terminal.
|
|
40
40
|
- `mycloud favorite <id>` (or `mycloud fav <id>`): Toggle the favorite status of a file.
|
|
41
41
|
|
|
42
|
-
###
|
|
42
|
+
### ▸ Folder Operations
|
|
43
43
|
Organize your files using folders.
|
|
44
44
|
- `mycloud mkdir <name>`: Create a new folder.
|
|
45
45
|
- `mycloud rmdir <id>`: Delete a folder.
|
|
46
46
|
- `mycloud folders ls`: List all your folders.
|
|
47
47
|
- `mycloud folders rename <id> <new_name>`: Rename a folder.
|
|
48
48
|
|
|
49
|
-
###
|
|
49
|
+
### ▸ Search
|
|
50
50
|
- `mycloud find <query>`: Search your entire cloud for files and folders matching the name.
|
|
51
51
|
|
|
52
|
-
###
|
|
52
|
+
### ▸ Stash (Recycle Bin)
|
|
53
53
|
Manage temporarily deleted files.
|
|
54
54
|
- `mycloud stash ls`: List all items currently in your stash.
|
|
55
55
|
- `mycloud stash restore <id>`: Restore a stashed item back to its original location.
|
|
56
56
|
- `mycloud stash empty`: Empty the stash permanently, deleting files forever.
|
|
57
57
|
|
|
58
|
-
###
|
|
58
|
+
### ▸ Sharing
|
|
59
59
|
Share files with other users or create public links.
|
|
60
60
|
- `mycloud share create <file_id>`: Create a shareable link for a file.
|
|
61
61
|
- `mycloud share ls`: List all your currently active shared items.
|
|
62
62
|
- `mycloud share rm <share_id>`: Revoke and remove a share link.
|
|
63
63
|
- `mycloud share direct <file_id> <username>`: Directly share a file with another registered myCloud user.
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### ▸ Batch Operations
|
|
66
66
|
Group multiple files and folders into a single shareable link.
|
|
67
67
|
- `mycloud batch create`: Create a new batch share link.
|
|
68
68
|
- `mycloud batch add <batch_id> <file_id>`: Add a file or folder to an existing batch share.
|
|
69
69
|
|
|
70
|
-
###
|
|
70
|
+
### ▸ Servers / Nodes
|
|
71
71
|
Manage your private storage nodes.
|
|
72
72
|
- `mycloud servers ls`: List all your registered private storage nodes and their statuses.
|
|
73
73
|
|
|
74
|
-
###
|
|
74
|
+
### ▸ Storage & Stats
|
|
75
75
|
Monitor your storage usage.
|
|
76
76
|
- `mycloud stats` (or `mycloud storage stats`): Show current storage usage, total capacity, and limits.
|
|
77
77
|
- `mycloud storage breakdown`: View a detailed breakdown of your storage consumption by file type.
|
|
78
78
|
|
|
79
|
-
###
|
|
79
|
+
### ▸ Notifications
|
|
80
80
|
Stay updated with account activities.
|
|
81
81
|
- `mycloud notify ls`: List your recent account notifications.
|
|
82
82
|
- `mycloud notify read <id>`: Mark a specific notification as read.
|
|
83
83
|
- `mycloud notify read-all`: Mark all pending notifications as read.
|
|
84
84
|
|
|
85
|
-
###
|
|
85
|
+
### ▸ Profile & Preferences
|
|
86
86
|
Customize your account settings.
|
|
87
87
|
- `mycloud profile view`: View your profile information.
|
|
88
88
|
- `mycloud profile update-avatar <image_path>`: Set or update your profile picture.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mycloudctl
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: Official CLI for myCloud
|
|
3
|
+
Version: 1.0.4
|
|
4
|
+
Summary: Official CLI for myCloud - your personal cloud storage
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Requires-Dist: typer[all]>=0.12
|
|
@@ -28,14 +28,14 @@ After installation, the `mycloud` command will be available in your terminal. Al
|
|
|
28
28
|
|
|
29
29
|
The CLI commands are grouped by their functionality to help you easily find what you need.
|
|
30
30
|
|
|
31
|
-
###
|
|
31
|
+
### ▸ Authentication
|
|
32
32
|
Manage your myCloud session and account.
|
|
33
33
|
- `mycloud login`: Sign in to your myCloud account.
|
|
34
34
|
- `mycloud logout`: Sign out and clear your current session.
|
|
35
35
|
- `mycloud whoami`: Display the currently logged-in user and session details.
|
|
36
36
|
- `mycloud register`: Register a new myCloud account directly from the terminal.
|
|
37
37
|
|
|
38
|
-
###
|
|
38
|
+
### ▸ File Operations
|
|
39
39
|
Core file management capabilities.
|
|
40
40
|
- `mycloud ls [folder_id]`: List files and folders in the root directory, or a specified folder.
|
|
41
41
|
- `mycloud upload <file>`: Upload a local file to myCloud. (Use `--stash` to upload it directly to your stash).
|
|
@@ -49,50 +49,50 @@ Core file management capabilities.
|
|
|
49
49
|
- `mycloud cat <id>`: Print the contents of a text file directly to the terminal.
|
|
50
50
|
- `mycloud favorite <id>` (or `mycloud fav <id>`): Toggle the favorite status of a file.
|
|
51
51
|
|
|
52
|
-
###
|
|
52
|
+
### ▸ Folder Operations
|
|
53
53
|
Organize your files using folders.
|
|
54
54
|
- `mycloud mkdir <name>`: Create a new folder.
|
|
55
55
|
- `mycloud rmdir <id>`: Delete a folder.
|
|
56
56
|
- `mycloud folders ls`: List all your folders.
|
|
57
57
|
- `mycloud folders rename <id> <new_name>`: Rename a folder.
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### ▸ Search
|
|
60
60
|
- `mycloud find <query>`: Search your entire cloud for files and folders matching the name.
|
|
61
61
|
|
|
62
|
-
###
|
|
62
|
+
### ▸ Stash (Recycle Bin)
|
|
63
63
|
Manage temporarily deleted files.
|
|
64
64
|
- `mycloud stash ls`: List all items currently in your stash.
|
|
65
65
|
- `mycloud stash restore <id>`: Restore a stashed item back to its original location.
|
|
66
66
|
- `mycloud stash empty`: Empty the stash permanently, deleting files forever.
|
|
67
67
|
|
|
68
|
-
###
|
|
68
|
+
### ▸ Sharing
|
|
69
69
|
Share files with other users or create public links.
|
|
70
70
|
- `mycloud share create <file_id>`: Create a shareable link for a file.
|
|
71
71
|
- `mycloud share ls`: List all your currently active shared items.
|
|
72
72
|
- `mycloud share rm <share_id>`: Revoke and remove a share link.
|
|
73
73
|
- `mycloud share direct <file_id> <username>`: Directly share a file with another registered myCloud user.
|
|
74
74
|
|
|
75
|
-
###
|
|
75
|
+
### ▸ Batch Operations
|
|
76
76
|
Group multiple files and folders into a single shareable link.
|
|
77
77
|
- `mycloud batch create`: Create a new batch share link.
|
|
78
78
|
- `mycloud batch add <batch_id> <file_id>`: Add a file or folder to an existing batch share.
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### ▸ Servers / Nodes
|
|
81
81
|
Manage your private storage nodes.
|
|
82
82
|
- `mycloud servers ls`: List all your registered private storage nodes and their statuses.
|
|
83
83
|
|
|
84
|
-
###
|
|
84
|
+
### ▸ Storage & Stats
|
|
85
85
|
Monitor your storage usage.
|
|
86
86
|
- `mycloud stats` (or `mycloud storage stats`): Show current storage usage, total capacity, and limits.
|
|
87
87
|
- `mycloud storage breakdown`: View a detailed breakdown of your storage consumption by file type.
|
|
88
88
|
|
|
89
|
-
###
|
|
89
|
+
### ▸ Notifications
|
|
90
90
|
Stay updated with account activities.
|
|
91
91
|
- `mycloud notify ls`: List your recent account notifications.
|
|
92
92
|
- `mycloud notify read <id>`: Mark a specific notification as read.
|
|
93
93
|
- `mycloud notify read-all`: Mark all pending notifications as read.
|
|
94
94
|
|
|
95
|
-
###
|
|
95
|
+
### ▸ Profile & Preferences
|
|
96
96
|
Customize your account settings.
|
|
97
97
|
- `mycloud profile view`: View your profile information.
|
|
98
98
|
- `mycloud profile update-avatar <image_path>`: Set or update your profile picture.
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mycloudctl"
|
|
7
|
-
version = "1.0.
|
|
8
|
-
description = "Official CLI for myCloud
|
|
7
|
+
version = "1.0.4"
|
|
8
|
+
description = "Official CLI for myCloud - your personal cloud storage"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
readme = "README_CLI.md"
|
|
11
11
|
|
mycloudctl-1.0.2/cli/__init__.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|