steam-cloud-backup 0.1.1__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.
@@ -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,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,100 @@
1
+ # steam-cloud-backup
2
+
3
+ micro-script for downloading all save files from [steam cloud](https://store.steampowered.com/account/remotestorage)
4
+
5
+ <br>
6
+
7
+ ## backup process
8
+
9
+ ### requirements
10
+
11
+ - [ ] [uv](https://docs.astral.sh/uv/) python package manager
12
+ - [ ] [git](https://git-scm.com/install/) version control
13
+
14
+ _latest versions_
15
+
16
+ ### preparation
17
+
18
+ ```bash
19
+ # clone repo
20
+ git clone https://github.com/q-deltafractal/steam-cloud-backup.git
21
+ cd steam-cloud-backup
22
+ ```
23
+
24
+ ```bash
25
+ # setup virtual env
26
+ uv sync
27
+ ```
28
+
29
+ ### backup
30
+
31
+ ```console
32
+ $ uv run main.py backup-folder/
33
+ steamLoginSecure: <input>
34
+ INFO:__main__:iter game: Steam Client; files count: 2
35
+ ...
36
+ ```
37
+
38
+ <br>
39
+
40
+ To identify login to your account, steam uses `steamLoginSecure` cookie, therefore the script requires it to work.
41
+ Method of obtaining this cookie:
42
+
43
+ - [ ] log in to https://store.steampowered.com/login/
44
+ - [ ] open Dev Tools via `ctrl + shift + i`
45
+ - [ ] go to the application _(or storage)_ tab
46
+ - [ ] in the cookies section, select `https://store.steampowered.com`
47
+ - [ ] copy the entire contents of the `steamLoginSecure` column
48
+
49
+ <br>
50
+
51
+ ## usage
52
+
53
+ ```console block=api
54
+ usage: steam-cloud-backup [-h] [-i SESSIONID] [-l STEAMLOGINSECURE]
55
+ [-j MAX_CONCURRENT_CONNECTIONS]
56
+ [--connect-timeout CONNECT_TIMEOUT]
57
+ [--useragent USERAGENT] [-v (0, 1, 2)]
58
+ folder
59
+
60
+ micro-script for downloading all save files from steam cloud
61
+
62
+ options:
63
+ -h, --help show this help message and exit
64
+
65
+ session:
66
+ -i, --sessionId SESSIONID
67
+ -l, --steamLoginSecure STEAMLOGINSECURE
68
+
69
+ connection:
70
+ -j, --max-concurrent-connections MAX_CONCURRENT_CONNECTIONS
71
+ default: 16
72
+ --connect-timeout CONNECT_TIMEOUT
73
+ default: 60 (s)
74
+ --useragent USERAGENT
75
+
76
+ out:
77
+ folder
78
+ -v, --verbose (0, 1, 2)
79
+ logging type: 0 - off; 1 (default) - info; 2 - debug
80
+ ```
81
+
82
+ <br>
83
+
84
+ ## license
85
+
86
+ project is licensed under:
87
+
88
+ <table>
89
+ <tr>
90
+ <td>
91
+ MIT
92
+ </td>
93
+ <td>
94
+ <a href="LICENSE">LICENSE</a>
95
+ </td>
96
+ <td>
97
+ https://mit-license.org/
98
+ </td>
99
+ </tr>
100
+ </table>
@@ -0,0 +1,28 @@
1
+ [project]
2
+ name = "steam-cloud-backup"
3
+ version = "0.1.1"
4
+ authors = [
5
+ { name="q-deltaftactal" }
6
+ ]
7
+ description = "micro-script for downloading all save files from steam cloud"
8
+ readme = "README.md"
9
+ license = "MIT"
10
+ license-files = ["LICEN[CS]E*"]
11
+ classifiers = [
12
+ "Topic :: Utilities"
13
+ ]
14
+ requires-python = ">=3.14"
15
+ dependencies = [
16
+ "aiofiles>=25.1.0",
17
+ "aiohttp[speedups]>=3.14.1",
18
+ ]
19
+
20
+ [project.urls]
21
+ Repository = "https://github.com/q-deltafractal/steam-cloud-backup.git"
22
+ Issues = "https://github.com/q-deltafractal/steam-cloud-backup/issues"
23
+
24
+ [tool.setuptools]
25
+ py-modules = ['source']
26
+
27
+ [tool.ruff.format]
28
+ quote-style = "single"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ steam_cloud_backup.egg-info/PKG-INFO
5
+ steam_cloud_backup.egg-info/SOURCES.txt
6
+ steam_cloud_backup.egg-info/dependency_links.txt
7
+ steam_cloud_backup.egg-info/requires.txt
8
+ steam_cloud_backup.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ aiofiles>=25.1.0
2
+ aiohttp[speedups]>=3.14.1