Spaces:
Sleeping
Sleeping
update app.py
Browse files
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=
|
| 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 |
|