Skip to content

Commit

Permalink
Merge pull request #6 from konzepts/main
Browse files Browse the repository at this point in the history
Sync Dev
  • Loading branch information
Gyarbij authored Nov 9, 2023
2 parents 9e439bb + 54d20e8 commit 2179377
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# qbdl-gui

qbdl-gui is a gui for qobuz-dl a tool used for downloading music from Qobuz.
qbdl-gui is a gui for qobuz-dl by @vitiko98.

## Features

Expand All @@ -20,7 +20,7 @@ git clone https://github.com/konzepts/qbdl-gui.git
cd qbdl-gui
```

2. Virtual Environment: Consider using a virtual environment to isolate the dependencies for your project. This can help avoid conflicts between different versions of libraries. You can create a virtual environment using:
2. Virtual Environment: Consider using a virtual environment to isolate the dependencies for the project. This can help avoid conflicts between different versions of libraries. You can create a virtual environment using:

```
python3 -m venv qbdl
Expand Down
14 changes: 0 additions & 14 deletions docker-compose.debug.yml

This file was deleted.

4 changes: 2 additions & 2 deletions qbdl_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
logging.basicConfig(level=logging.INFO)

app = Flask(__name__)
app.secret_key = '%8Yn+K9_t:L;EiZ9;G=CMCba5%u4}5STN$(,QRi/Fcn;M0d5jdp9,iv?KzD!,}neh]mK{:8ix5!!v9=aY3T[_WR;&:T52Q!XEWA/Fbuq+T-5a&9bBQPK)-]Q[5b'
app.secret_key = 'YOUR_SECRET_KEY'

@app.route('/', methods=['GET', 'POST'])
def index():
Expand Down Expand Up @@ -44,4 +44,4 @@ def index():
return render_template('index.html', email=email, download_location=download_location, quality=quality)

if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)
app.run(host='0.0.0.0')
6 changes: 3 additions & 3 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ <h2 class="mb-4">QobuzDL GUI</h2>
<div class="form-group">
<label for="quality">Quality:</label>
<select class="form-control" name="quality" id="quality" required>
<option value="5">MP3 - 320 kbps</option>
<option value="6">CD Quality FLAC - 16 bit, 44.1kHz</option>
<option value="7">Hi-Res Audio FLAC - 24 bit, up to 96kHz</option>
<option value="27">Hi-Res Audio FLAC - 24 bit, up to 192kHz</option>
<option value="7">Hi-Res Audio FLAC - 24 bit, up to 96kHz</option>
<option value="6">CD Quality FLAC - 16 bit, 44.1kHz</option>
<option value="5">MP3 - 320 kbps</option>
</select>
</div>
<div class="form-group form-check">
Expand Down

0 comments on commit 2179377

Please sign in to comment.