Pasula commited on
Commit
a338fa9
·
1 Parent(s): 6fe9d60

update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,9 +13,9 @@ def call_compilex_data():
13
  # with open(txt_file_path, 'r') as file:
14
  # input_data = file.read()
15
  input_data = "CompilerX || Find Contacts Easily Home Services Company Data Industry Search Email List CompilerX-GPT Pricing Get Demo Email Verifier Get Demo Sign up Login We\u2019ve Launched Our New Extension CompilerX-GPT (BETA)."
16
-
17
 
18
- output = client.post(data=input_data)
19
 
20
  return "Done Dev ! Data Added"
21
 
 
13
  # with open(txt_file_path, 'r') as file:
14
  # input_data = file.read()
15
  input_data = "CompilerX || Find Contacts Easily Home Services Company Data Industry Search Email List CompilerX-GPT Pricing Get Demo Email Verifier Get Demo Sign up Login We\u2019ve Launched Our New Extension CompilerX-GPT (BETA)."
16
+ input_data_bytes = input_data.encode('utf-8')
17
 
18
+ output = client.post(data=input_data_bytes)
19
 
20
  return "Done Dev ! Data Added"
21