Chrunos commited on
Commit
709fa1c
·
verified ·
1 Parent(s): 194b841

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -249,8 +249,6 @@ async def get_track_download_url(video_url: str) -> str:
249
 
250
 
251
 
252
- import requests
253
- import re
254
 
255
 
256
  def process_url(video_url: str) -> str:
@@ -261,6 +259,7 @@ def process_url(video_url: str) -> str:
261
  form_data = {"url": video_url}
262
  response = session.post(video_url, data=form_data)
263
  response_text = response.text
 
264
 
265
  # Step 2: Get HTML from rich text (in this simple case, just use the response text)
266
  html_text = response_text
 
249
 
250
 
251
 
 
 
252
 
253
 
254
  def process_url(video_url: str) -> str:
 
259
  form_data = {"url": video_url}
260
  response = session.post(video_url, data=form_data)
261
  response_text = response.text
262
+ logger.info(response_text)
263
 
264
  # Step 2: Get HTML from rich text (in this simple case, just use the response text)
265
  html_text = response_text