For anyone else wondering I have decided to use encode/decode to obscure the value of sv from users. 
I have taken Martijn Pieter's advice to obscure the value as opposed to encrypting the value: Simple way to encode a string according to a password?
import zlib
from base64 import urlsafe_b64encode as b64e, urlsafe_b64decode as b64d
def obscure(data: bytes) -> bytes:
    return b64e(zlib.compress(data, 9))
def unobscure(obscured: bytes) -> bytes:
    return zlib.decompress(b64d(obscured))
where this link is sent to a user:
        link = 'https://localhost:8000/savings?sv=' + bytes.decode(obscure(str.encode(amount)))
Which is then decoded when they click the link:
@onboard.route('/savings', methods=['GET', 'POST'])
def savings():
    savings = request.args.get('sv')
    savings = str.encode(savings)
    savings = unobscure(savings)
    savings = bytes.decode(savings)
    return render_template('onboard/savings.html', savings=savings)