steam-cloud-backup 0.1.1__py3-none-any.whl
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.
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: steam-cloud-backup
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: micro-script for downloading all save files from steam cloud
|
|
5
|
+
Author: q-deltaftactal
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Repository, https://github.com/q-deltafractal/steam-cloud-backup.git
|
|
8
|
+
Project-URL: Issues, https://github.com/q-deltafractal/steam-cloud-backup/issues
|
|
9
|
+
Classifier: Topic :: Utilities
|
|
10
|
+
Requires-Python: >=3.14
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: aiofiles>=25.1.0
|
|
14
|
+
Requires-Dist: aiohttp[speedups]>=3.14.1
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
# steam-cloud-backup
|
|
18
|
+
|
|
19
|
+
micro-script for downloading all save files from [steam cloud](https://store.steampowered.com/account/remotestorage)
|
|
20
|
+
|
|
21
|
+
<br>
|
|
22
|
+
|
|
23
|
+
## backup process
|
|
24
|
+
|
|
25
|
+
### requirements
|
|
26
|
+
|
|
27
|
+
- [ ] [uv](https://docs.astral.sh/uv/) python package manager
|
|
28
|
+
- [ ] [git](https://git-scm.com/install/) version control
|
|
29
|
+
|
|
30
|
+
_latest versions_
|
|
31
|
+
|
|
32
|
+
### preparation
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# clone repo
|
|
36
|
+
git clone https://github.com/q-deltafractal/steam-cloud-backup.git
|
|
37
|
+
cd steam-cloud-backup
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# setup virtual env
|
|
42
|
+
uv sync
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### backup
|
|
46
|
+
|
|
47
|
+
```console
|
|
48
|
+
$ uv run main.py backup-folder/
|
|
49
|
+
steamLoginSecure: <input>
|
|
50
|
+
INFO:__main__:iter game: Steam Client; files count: 2
|
|
51
|
+
...
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
<br>
|
|
55
|
+
|
|
56
|
+
To identify login to your account, steam uses `steamLoginSecure` cookie, therefore the script requires it to work.
|
|
57
|
+
Method of obtaining this cookie:
|
|
58
|
+
|
|
59
|
+
- [ ] log in to https://store.steampowered.com/login/
|
|
60
|
+
- [ ] open Dev Tools via `ctrl + shift + i`
|
|
61
|
+
- [ ] go to the application _(or storage)_ tab
|
|
62
|
+
- [ ] in the cookies section, select `https://store.steampowered.com`
|
|
63
|
+
- [ ] copy the entire contents of the `steamLoginSecure` column
|
|
64
|
+
|
|
65
|
+
<br>
|
|
66
|
+
|
|
67
|
+
## usage
|
|
68
|
+
|
|
69
|
+
```console block=api
|
|
70
|
+
usage: steam-cloud-backup [-h] [-i SESSIONID] [-l STEAMLOGINSECURE]
|
|
71
|
+
[-j MAX_CONCURRENT_CONNECTIONS]
|
|
72
|
+
[--connect-timeout CONNECT_TIMEOUT]
|
|
73
|
+
[--useragent USERAGENT] [-v (0, 1, 2)]
|
|
74
|
+
folder
|
|
75
|
+
|
|
76
|
+
micro-script for downloading all save files from steam cloud
|
|
77
|
+
|
|
78
|
+
options:
|
|
79
|
+
-h, --help show this help message and exit
|
|
80
|
+
|
|
81
|
+
session:
|
|
82
|
+
-i, --sessionId SESSIONID
|
|
83
|
+
-l, --steamLoginSecure STEAMLOGINSECURE
|
|
84
|
+
|
|
85
|
+
connection:
|
|
86
|
+
-j, --max-concurrent-connections MAX_CONCURRENT_CONNECTIONS
|
|
87
|
+
default: 16
|
|
88
|
+
--connect-timeout CONNECT_TIMEOUT
|
|
89
|
+
default: 60 (s)
|
|
90
|
+
--useragent USERAGENT
|
|
91
|
+
|
|
92
|
+
out:
|
|
93
|
+
folder
|
|
94
|
+
-v, --verbose (0, 1, 2)
|
|
95
|
+
logging type: 0 - off; 1 (default) - info; 2 - debug
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
<br>
|
|
99
|
+
|
|
100
|
+
## license
|
|
101
|
+
|
|
102
|
+
project is licensed under:
|
|
103
|
+
|
|
104
|
+
<table>
|
|
105
|
+
<tr>
|
|
106
|
+
<td>
|
|
107
|
+
MIT
|
|
108
|
+
</td>
|
|
109
|
+
<td>
|
|
110
|
+
<a href="LICENSE">LICENSE</a>
|
|
111
|
+
</td>
|
|
112
|
+
<td>
|
|
113
|
+
https://mit-license.org/
|
|
114
|
+
</td>
|
|
115
|
+
</tr>
|
|
116
|
+
</table>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
steam_cloud_backup-0.1.1.dist-info/licenses/LICENSE,sha256=lJzPeAVGST3KUoi0_Tg_-38pWQqY8-R4Em932TaO8R8,1072
|
|
2
|
+
steam_cloud_backup-0.1.1.dist-info/METADATA,sha256=TYK-DRoX36t4E-Yq4cTqsBRz9CkytfsjyGugwTYBn6U,2709
|
|
3
|
+
steam_cloud_backup-0.1.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
4
|
+
steam_cloud_backup-0.1.1.dist-info/top_level.txt,sha256=uLsDT5tjvQJU-8fBV8rnRsdYU_RkPWzqhE3EjdtX9SI,7
|
|
5
|
+
steam_cloud_backup-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 q-deltafractal
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
source
|