https://github.com/bluebotpc/S3Manager
Tkinter GUI for interacting with Linode Object Buckets
https://github.com/bluebotpc/S3Manager
Last synced: 8 months ago
JSON representation
Tkinter GUI for interacting with Linode Object Buckets
- Host: GitHub
- URL: https://github.com/bluebotpc/S3Manager
- Owner: GoobyFRS
- License: agpl-3.0
- Created: 2024-11-29T20:14:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-04T04:29:14.000Z (over 1 year ago)
- Last Synced: 2025-01-25T15:36:08.019Z (over 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PureS3 Tool
Created to reduce dependacy on Linode's Cloud Manager web interface.
Requires an ```.env``` file in the repo. It will requre a Linode API/PAT key as seen in the example below.
```txt
LINODE_API_KEY=
REGION=
BUCKET_NAME=
LINODE_API_VERSION=v4
```
## Wiindows Project Setup
```shell
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
python app.py
```
CTRL+C to break. ```deactivate``` to clean up.
### Linux Project Setup
```shell
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 ./app.py
```
CTRL+C to break. ```deactivate``` to clean up.