we can send now?
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-20 16:20:11 +10:00
parent 8415845488
commit 75958f9d9a

14
app.py
View File

@ -133,7 +133,19 @@ def post_a_post(post_key):
@app.route('/post_to_another_post/<post_key>', methods=['POST'])
def post_to_post(post_key):
uploaded_file = request.files["file"]
if uploaded_file:
minioClient = Minio( "static.guaranteedstruggle.host" )
bucket_name = "thread-pics"
size = os.fstat(uploaded_file.fileno()).st_size
minioClient.put_object(
bucket_name, uploaded_file.filename, uploaded_file, size
)
postos = db.collection('posts')
data = request.form['send_this_text']