Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goobyfrs/goobys3
Tkinter GUI for interacting with Linode Object Buckets
https://github.com/goobyfrs/goobys3
Last synced: 2 days ago
JSON representation
Tkinter GUI for interacting with Linode Object Buckets
- Host: GitHub
- URL: https://github.com/goobyfrs/goobys3
- Owner: GoobyFRS
- License: agpl-3.0
- Created: 2024-11-29T20:14:10.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-04T04:29:14.000Z (about 2 months ago)
- Last Synced: 2024-12-08T09:13:48.065Z (about 2 months 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
# Goobs Linode Object Storage GUI
Created for my personal use.
Requires an ```.env.prod``` 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=
```## Windows
- Clone the repo
- Setup Virtual Environment ```python3 -m venv venv```
- Activate the new Virtual Environment**Wiindows:** ```.\venv\Scripts\activate```
**MacOS/Linux:** ```source venv/bin/activate```
- Install the dependencies ```pip install -r requirements.txt```
- Run GoobsS3_GUI.py ```python app.py```
- Exit the virtual environment. ```deactivate```
- Remove leftover data. ```rm -rf venv```