-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtils.py
70 lines (55 loc) · 1.75 KB
/
Utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import openai
import requests
import sys
import json
from googletrans import Translator
from google.cloud import language_v1
from google.oauth2 import service_account
from collections import Counter
from datetime import datetime
import time
import requests
from flask import Flask, request,jsonify
from multiprocessing import Process
from konlpy.tag import Okt
import numpy as np
import threading
import time
import Analyze
import App
import Config
import Data
def call_time():
current_time = datetime.now()
formatted_time = current_time.strftime("%Y-%m-%d")
return formatted_time
def print_conversation():
for data in Data.conversation:
print("role:", data["role"])
print("content:", data["content"])
print("date:", data["date"])
print("username:", data["username"])
print()
def print_analyze_data():
for data in Data.analyze_data:
print("Content:", data["content"])
print("negative:", data["negative"])
print("positive:", data["positive"])
print("neutral:", data["neutral"])
print("date:", data["date"])
print("username:", data["username"])
print()
def print_key_word():
for item in Data.key_word:
keyword = item["keyword"]
count = item["count"]
date = item["date"]
username = item["username"]
print(f"Keyword: {keyword}, count: {count}, Date : {date}, username : {username}")
def print_category():
for item in Data.Category:
category = item["category"]
confidence = item["confidence"]
date = item["date"]
username = item["username"]
print(f"Category: {category}, Confidence: {confidence}, date : {date}, username : {username}")