Chenglu-She commited on
Commit
155b2a4
1 Parent(s): 13fe2f2

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ src/assets/dynamic.gif filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -2,8 +2,8 @@
2
  ---
3
  tags: [gradio-custom-component,gradio-template-SimpleTextbox,log,gradio_log,gradio_log_component,gradio_print_log]
4
  title: gradio_log V0.0.2
5
- colorFrom: red
6
- colorTo: green
7
  sdk: docker
8
  pinned: false
9
  license: apache-2.0
 
2
  ---
3
  tags: [gradio-custom-component,gradio-template-SimpleTextbox,log,gradio_log,gradio_log_component,gradio_print_log]
4
  title: gradio_log V0.0.2
5
+ colorFrom: blue
6
+ colorTo: yellow
7
  sdk: docker
8
  pinned: false
9
  license: apache-2.0
__pycache__/app.cpython-311.pyc CHANGED
Binary files a/__pycache__/app.cpython-311.pyc and b/__pycache__/app.cpython-311.pyc differ
 
app.py CHANGED
@@ -1,28 +1,71 @@
 
 
1
  import gradio as gr
 
2
  from gradio_log import Log
3
- import os
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
- with open("./test.log", "wb") as f:
7
- # write some random log to f, with colored and uncolored text
8
- f.write(b"[INFO] Everything is fine.\n")
9
- f.write(b"\x1b[34m[DEBUG] Debugging information.\x1b[0m\n")
10
- f.write(b"\x1b[32m[SUCCESS] Task completed successfully.\x1b[0m\n")
11
- f.write(b"\x1b[33m[WARNING] Something is not right.\x1b[0m\n")
12
- f.write(b"\x1b[31m[ERROR] Unexpected error occured.\x1b[0m\n")
13
 
 
14
 
15
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
16
  with gr.Row():
17
- with gr.Column(scale=1):
18
- Log("./test.log")
19
- with gr.Column(scale=1):
20
- Log(
21
- "./test.log",
22
- dark=True,
23
- tail=4,
24
- label="dark mode, read from last 4 lines of log",
25
- )
26
 
27
 
28
  if __name__ == "__main__":
 
1
+ from pathlib import Path
2
+ import logging
3
  import gradio as gr
4
+
5
  from gradio_log import Log
 
6
 
7
+ import logging
8
+
9
+
10
+ class CustomFormatter(logging.Formatter):
11
+
12
+ green = "\x1b[32;20m"
13
+ blue = "\x1b[34;20m"
14
+ yellow = "\x1b[33;20m"
15
+ red = "\x1b[31;20m"
16
+ bold_red = "\x1b[31;1m"
17
+ reset = "\x1b[0m"
18
+ format = "%(asctime)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)"
19
+
20
+ FORMATS = {
21
+ logging.DEBUG: blue + format + reset,
22
+ logging.INFO: green + format + reset,
23
+ logging.WARNING: yellow + format + reset,
24
+ logging.ERROR: red + format + reset,
25
+ logging.CRITICAL: bold_red + format + reset,
26
+ }
27
+
28
+ def format(self, record):
29
+ log_fmt = self.FORMATS.get(record.levelno)
30
+ formatter = logging.Formatter(log_fmt)
31
+ return formatter.format(record)
32
+
33
+
34
+ formatter = CustomFormatter()
35
+
36
+ ch = logging.FileHandler("./test.log")
37
+ ch.setLevel(logging.DEBUG)
38
+ ch.setFormatter(formatter)
39
+
40
+ logger = logging.getLogger()
41
+ logger.setLevel(logging.DEBUG)
42
+ for handler in logger.handlers:
43
+ logger.removeHandler(handler)
44
+ logger.addHandler(ch)
45
+
46
+
47
+ logger.info(
48
+ "Use the left column to log messages to a file, and the log will be displayed in here."
49
+ )
50
+
51
+
52
+ def create_log_handler(level):
53
+
54
+ def l(text):
55
+ getattr(logger, level)(text)
56
+
57
+ return l
58
 
 
 
 
 
 
 
 
59
 
60
+ Path("./test.log").touch()
61
 
62
+ with gr.Blocks() as demo:
63
+ text = gr.Textbox(label="Enter text to write to log file")
64
  with gr.Row():
65
+ for l in ["debug", "info", "warning", "error", "critical"]:
66
+ button = gr.Button(f"log as {l}")
67
+ button.click(fn=create_log_handler(l), inputs=text)
68
+ Log("./test.log")
 
 
 
 
 
69
 
70
 
71
  if __name__ == "__main__":
space.py CHANGED
@@ -38,31 +38,74 @@ pip install gradio_log
38
  ## Usage
39
 
40
  ```python
 
 
41
  import gradio as gr
 
42
  from gradio_log import Log
43
- import os
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- with open("./test.log", "wb") as f:
47
- # write some random log to f, with colored and uncolored text
48
- f.write(b"[INFO] Everything is fine.\n")
49
- f.write(b"\x1b[34m[DEBUG] Debugging information.\x1b[0m\n")
50
- f.write(b"\x1b[32m[SUCCESS] Task completed successfully.\x1b[0m\n")
51
- f.write(b"\x1b[33m[WARNING] Something is not right.\x1b[0m\n")
52
- f.write(b"\x1b[31m[ERROR] Unexpected error occured.\x1b[0m\n")
53
 
 
54
 
55
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
56
  with gr.Row():
57
- with gr.Column(scale=1):
58
- Log("./test.log")
59
- with gr.Column(scale=1):
60
- Log(
61
- "./test.log",
62
- dark=True,
63
- tail=4,
64
- label="dark mode, read from last 4 lines of log",
65
- )
66
 
67
 
68
  if __name__ == "__main__":
 
38
  ## Usage
39
 
40
  ```python
41
+ from pathlib import Path
42
+ import logging
43
  import gradio as gr
44
+
45
  from gradio_log import Log
 
46
 
47
+ import logging
48
+
49
+
50
+ class CustomFormatter(logging.Formatter):
51
+
52
+ green = "\x1b[32;20m"
53
+ blue = "\x1b[34;20m"
54
+ yellow = "\x1b[33;20m"
55
+ red = "\x1b[31;20m"
56
+ bold_red = "\x1b[31;1m"
57
+ reset = "\x1b[0m"
58
+ format = "%(asctime)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)"
59
+
60
+ FORMATS = {
61
+ logging.DEBUG: blue + format + reset,
62
+ logging.INFO: green + format + reset,
63
+ logging.WARNING: yellow + format + reset,
64
+ logging.ERROR: red + format + reset,
65
+ logging.CRITICAL: bold_red + format + reset,
66
+ }
67
+
68
+ def format(self, record):
69
+ log_fmt = self.FORMATS.get(record.levelno)
70
+ formatter = logging.Formatter(log_fmt)
71
+ return formatter.format(record)
72
+
73
+
74
+ formatter = CustomFormatter()
75
+
76
+ ch = logging.FileHandler("./test.log")
77
+ ch.setLevel(logging.DEBUG)
78
+ ch.setFormatter(formatter)
79
+
80
+ logger = logging.getLogger()
81
+ logger.setLevel(logging.DEBUG)
82
+ for handler in logger.handlers:
83
+ logger.removeHandler(handler)
84
+ logger.addHandler(ch)
85
+
86
+
87
+ logger.info(
88
+ "Use the left column to log messages to a file, and the log will be displayed in here."
89
+ )
90
+
91
+
92
+ def create_log_handler(level):
93
+
94
+ def l(text):
95
+ getattr(logger, level)(text)
96
+
97
+ return l
98
 
 
 
 
 
 
 
 
99
 
100
+ Path("./test.log").touch()
101
 
102
+ with gr.Blocks() as demo:
103
+ text = gr.Textbox(label="Enter text to write to log file")
104
  with gr.Row():
105
+ for l in ["debug", "info", "warning", "error", "critical"]:
106
+ button = gr.Button(f"log as {l}")
107
+ button.click(fn=create_log_handler(l), inputs=text)
108
+ Log("./test.log")
 
 
 
 
 
109
 
110
 
111
  if __name__ == "__main__":
src/.gitignore CHANGED
@@ -6,4 +6,5 @@ __pycache__/
6
  *$py.class
7
  __tmp/*
8
  *.pyi
9
- node_modules
 
 
6
  *$py.class
7
  __tmp/*
8
  *.pyi
9
+ node_modules
10
+ test.log
src/README.md CHANGED
@@ -13,31 +13,74 @@ pip install gradio_log
13
  ## Usage
14
 
15
  ```python
 
 
16
  import gradio as gr
 
17
  from gradio_log import Log
18
- import os
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- with open("./test.log", "wb") as f:
22
- # write some random log to f, with colored and uncolored text
23
- f.write(b"[INFO] Everything is fine.\n")
24
- f.write(b"\x1b[34m[DEBUG] Debugging information.\x1b[0m\n")
25
- f.write(b"\x1b[32m[SUCCESS] Task completed successfully.\x1b[0m\n")
26
- f.write(b"\x1b[33m[WARNING] Something is not right.\x1b[0m\n")
27
- f.write(b"\x1b[31m[ERROR] Unexpected error occured.\x1b[0m\n")
28
 
 
29
 
30
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
31
  with gr.Row():
32
- with gr.Column(scale=1):
33
- Log("./test.log")
34
- with gr.Column(scale=1):
35
- Log(
36
- "./test.log",
37
- dark=True,
38
- tail=4,
39
- label="dark mode, read from last 4 lines of log",
40
- )
41
 
42
 
43
  if __name__ == "__main__":
 
13
  ## Usage
14
 
15
  ```python
16
+ from pathlib import Path
17
+ import logging
18
  import gradio as gr
19
+
20
  from gradio_log import Log
 
21
 
22
+ import logging
23
+
24
+
25
+ class CustomFormatter(logging.Formatter):
26
+
27
+ green = "\x1b[32;20m"
28
+ blue = "\x1b[34;20m"
29
+ yellow = "\x1b[33;20m"
30
+ red = "\x1b[31;20m"
31
+ bold_red = "\x1b[31;1m"
32
+ reset = "\x1b[0m"
33
+ format = "%(asctime)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)"
34
+
35
+ FORMATS = {
36
+ logging.DEBUG: blue + format + reset,
37
+ logging.INFO: green + format + reset,
38
+ logging.WARNING: yellow + format + reset,
39
+ logging.ERROR: red + format + reset,
40
+ logging.CRITICAL: bold_red + format + reset,
41
+ }
42
+
43
+ def format(self, record):
44
+ log_fmt = self.FORMATS.get(record.levelno)
45
+ formatter = logging.Formatter(log_fmt)
46
+ return formatter.format(record)
47
+
48
+
49
+ formatter = CustomFormatter()
50
+
51
+ ch = logging.FileHandler("./test.log")
52
+ ch.setLevel(logging.DEBUG)
53
+ ch.setFormatter(formatter)
54
+
55
+ logger = logging.getLogger()
56
+ logger.setLevel(logging.DEBUG)
57
+ for handler in logger.handlers:
58
+ logger.removeHandler(handler)
59
+ logger.addHandler(ch)
60
+
61
+
62
+ logger.info(
63
+ "Use the left column to log messages to a file, and the log will be displayed in here."
64
+ )
65
+
66
+
67
+ def create_log_handler(level):
68
+
69
+ def l(text):
70
+ getattr(logger, level)(text)
71
+
72
+ return l
73
 
 
 
 
 
 
 
 
74
 
75
+ Path("./test.log").touch()
76
 
77
+ with gr.Blocks() as demo:
78
+ text = gr.Textbox(label="Enter text to write to log file")
79
  with gr.Row():
80
+ for l in ["debug", "info", "warning", "error", "critical"]:
81
+ button = gr.Button(f"log as {l}")
82
+ button.click(fn=create_log_handler(l), inputs=text)
83
+ Log("./test.log")
 
 
 
 
 
84
 
85
 
86
  if __name__ == "__main__":
src/assets/dynamic.gif ADDED

Git LFS Details

  • SHA256: 501671839074b76ff66950c7cdb1ed16951bdf5d4d3071034299212e33b36e49
  • Pointer size: 132 Bytes
  • Size of remote file: 2.13 MB
src/assets/static.png ADDED
src/demo/app.py CHANGED
@@ -1,28 +1,71 @@
 
 
1
  import gradio as gr
 
2
  from gradio_log import Log
3
- import os
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
- with open("./test.log", "wb") as f:
7
- # write some random log to f, with colored and uncolored text
8
- f.write(b"[INFO] Everything is fine.\n")
9
- f.write(b"\x1b[34m[DEBUG] Debugging information.\x1b[0m\n")
10
- f.write(b"\x1b[32m[SUCCESS] Task completed successfully.\x1b[0m\n")
11
- f.write(b"\x1b[33m[WARNING] Something is not right.\x1b[0m\n")
12
- f.write(b"\x1b[31m[ERROR] Unexpected error occured.\x1b[0m\n")
13
 
 
14
 
15
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
16
  with gr.Row():
17
- with gr.Column(scale=1):
18
- Log("./test.log")
19
- with gr.Column(scale=1):
20
- Log(
21
- "./test.log",
22
- dark=True,
23
- tail=4,
24
- label="dark mode, read from last 4 lines of log",
25
- )
26
 
27
 
28
  if __name__ == "__main__":
 
1
+ from pathlib import Path
2
+ import logging
3
  import gradio as gr
4
+
5
  from gradio_log import Log
 
6
 
7
+ import logging
8
+
9
+
10
+ class CustomFormatter(logging.Formatter):
11
+
12
+ green = "\x1b[32;20m"
13
+ blue = "\x1b[34;20m"
14
+ yellow = "\x1b[33;20m"
15
+ red = "\x1b[31;20m"
16
+ bold_red = "\x1b[31;1m"
17
+ reset = "\x1b[0m"
18
+ format = "%(asctime)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)"
19
+
20
+ FORMATS = {
21
+ logging.DEBUG: blue + format + reset,
22
+ logging.INFO: green + format + reset,
23
+ logging.WARNING: yellow + format + reset,
24
+ logging.ERROR: red + format + reset,
25
+ logging.CRITICAL: bold_red + format + reset,
26
+ }
27
+
28
+ def format(self, record):
29
+ log_fmt = self.FORMATS.get(record.levelno)
30
+ formatter = logging.Formatter(log_fmt)
31
+ return formatter.format(record)
32
+
33
+
34
+ formatter = CustomFormatter()
35
+
36
+ ch = logging.FileHandler("./test.log")
37
+ ch.setLevel(logging.DEBUG)
38
+ ch.setFormatter(formatter)
39
+
40
+ logger = logging.getLogger()
41
+ logger.setLevel(logging.DEBUG)
42
+ for handler in logger.handlers:
43
+ logger.removeHandler(handler)
44
+ logger.addHandler(ch)
45
+
46
+
47
+ logger.info(
48
+ "Use the left column to log messages to a file, and the log will be displayed in here."
49
+ )
50
+
51
+
52
+ def create_log_handler(level):
53
+
54
+ def l(text):
55
+ getattr(logger, level)(text)
56
+
57
+ return l
58
 
 
 
 
 
 
 
 
59
 
60
+ Path("./test.log").touch()
61
 
62
+ with gr.Blocks() as demo:
63
+ text = gr.Textbox(label="Enter text to write to log file")
64
  with gr.Row():
65
+ for l in ["debug", "info", "warning", "error", "critical"]:
66
+ button = gr.Button(f"log as {l}")
67
+ button.click(fn=create_log_handler(l), inputs=text)
68
+ Log("./test.log")
 
 
 
 
 
69
 
70
 
71
  if __name__ == "__main__":
src/demo/space.py CHANGED
@@ -38,31 +38,74 @@ pip install gradio_log
38
  ## Usage
39
 
40
  ```python
 
 
41
  import gradio as gr
 
42
  from gradio_log import Log
43
- import os
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- with open("./test.log", "wb") as f:
47
- # write some random log to f, with colored and uncolored text
48
- f.write(b"[INFO] Everything is fine.\n")
49
- f.write(b"\x1b[34m[DEBUG] Debugging information.\x1b[0m\n")
50
- f.write(b"\x1b[32m[SUCCESS] Task completed successfully.\x1b[0m\n")
51
- f.write(b"\x1b[33m[WARNING] Something is not right.\x1b[0m\n")
52
- f.write(b"\x1b[31m[ERROR] Unexpected error occured.\x1b[0m\n")
53
 
 
54
 
55
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
56
  with gr.Row():
57
- with gr.Column(scale=1):
58
- Log("./test.log")
59
- with gr.Column(scale=1):
60
- Log(
61
- "./test.log",
62
- dark=True,
63
- tail=4,
64
- label="dark mode, read from last 4 lines of log",
65
- )
66
 
67
 
68
  if __name__ == "__main__":
 
38
  ## Usage
39
 
40
  ```python
41
+ from pathlib import Path
42
+ import logging
43
  import gradio as gr
44
+
45
  from gradio_log import Log
 
46
 
47
+ import logging
48
+
49
+
50
+ class CustomFormatter(logging.Formatter):
51
+
52
+ green = "\x1b[32;20m"
53
+ blue = "\x1b[34;20m"
54
+ yellow = "\x1b[33;20m"
55
+ red = "\x1b[31;20m"
56
+ bold_red = "\x1b[31;1m"
57
+ reset = "\x1b[0m"
58
+ format = "%(asctime)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)"
59
+
60
+ FORMATS = {
61
+ logging.DEBUG: blue + format + reset,
62
+ logging.INFO: green + format + reset,
63
+ logging.WARNING: yellow + format + reset,
64
+ logging.ERROR: red + format + reset,
65
+ logging.CRITICAL: bold_red + format + reset,
66
+ }
67
+
68
+ def format(self, record):
69
+ log_fmt = self.FORMATS.get(record.levelno)
70
+ formatter = logging.Formatter(log_fmt)
71
+ return formatter.format(record)
72
+
73
+
74
+ formatter = CustomFormatter()
75
+
76
+ ch = logging.FileHandler("./test.log")
77
+ ch.setLevel(logging.DEBUG)
78
+ ch.setFormatter(formatter)
79
+
80
+ logger = logging.getLogger()
81
+ logger.setLevel(logging.DEBUG)
82
+ for handler in logger.handlers:
83
+ logger.removeHandler(handler)
84
+ logger.addHandler(ch)
85
+
86
+
87
+ logger.info(
88
+ "Use the left column to log messages to a file, and the log will be displayed in here."
89
+ )
90
+
91
+
92
+ def create_log_handler(level):
93
+
94
+ def l(text):
95
+ getattr(logger, level)(text)
96
+
97
+ return l
98
 
 
 
 
 
 
 
 
99
 
100
+ Path("./test.log").touch()
101
 
102
+ with gr.Blocks() as demo:
103
+ text = gr.Textbox(label="Enter text to write to log file")
104
  with gr.Row():
105
+ for l in ["debug", "info", "warning", "error", "critical"]:
106
+ button = gr.Button(f"log as {l}")
107
+ button.click(fn=create_log_handler(l), inputs=text)
108
+ Log("./test.log")
 
 
 
 
 
109
 
110
 
111
  if __name__ == "__main__":
src/pyproject.toml CHANGED
@@ -43,7 +43,7 @@ classifiers = [
43
  dev = ["build", "twine"]
44
 
45
  [tool.hatch.build]
46
- artifacts = ["/backend/gradio_log/templates", "*.pyi", "backend/gradio_log/templates", "backend/gradio_log/templates", "backend/gradio_log/templates"]
47
 
48
  [tool.hatch.build.targets.wheel]
49
  packages = ["/backend/gradio_log"]
 
43
  dev = ["build", "twine"]
44
 
45
  [tool.hatch.build]
46
+ artifacts = ["/backend/gradio_log/templates", "*.pyi", "backend/gradio_log/templates", "backend/gradio_log/templates", "backend/gradio_log/templates", "backend/gradio_log/templates"]
47
 
48
  [tool.hatch.build.targets.wheel]
49
  packages = ["/backend/gradio_log"]
src/test.log ADDED
@@ -0,0 +1,487 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [INFO] Everything is fine.
2
+ [DEBUG] Debugging information.
3
+ [SUCCESS] Task completed successfully.
4
+ [WARNING] Something is not right.
5
+ [ERROR] Unexpected error occured.
6
+ 2024-04-09 14:55:21,827 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
7
+ 2024-04-09 14:55:21,827 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
8
+ 2024-04-09 14:55:21,827 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
9
+ 2024-04-09 14:55:21,827 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
10
+ 2024-04-09 14:55:21,833 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
11
+ 2024-04-09 14:55:21,840 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
12
+ 2024-04-09 14:55:21,842 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
13
+ 2024-04-09 14:55:21,842 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
14
+ 2024-04-09 14:55:21,850 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
15
+ 2024-04-09 14:55:21,850 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
16
+ 2024-04-09 14:55:21,858 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
17
+ 2024-04-09 14:55:21,859 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
18
+ 2024-04-09 14:55:21,865 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
19
+ 2024-04-09 14:55:21,865 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
20
+ 2024-04-09 14:55:21,865 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13404fd90> (_trace.py:45)
21
+ 2024-04-09 14:55:21,865 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13405d790> (_trace.py:45)
22
+ 2024-04-09 14:55:21,865 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
23
+ 2024-04-09 14:55:21,865 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
24
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
25
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
26
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
27
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
28
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
29
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
30
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
31
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
32
+ 2024-04-09 14:55:21,866 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
33
+ 2024-04-09 14:55:21,866 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8d1c0> server_hostname='api.gradio.app' timeout=3 (_trace.py:45)
34
+ 2024-04-09 14:55:21,867 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
35
+ 2024-04-09 14:55:21,867 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8d250> server_hostname='checkip.amazonaws.com' timeout=3 (_trace.py:45)
36
+ 2024-04-09 14:55:21,870 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
37
+ 2024-04-09 14:55:21,870 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
38
+ 2024-04-09 14:55:21,876 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
39
+ 2024-04-09 14:55:21,876 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
40
+ 2024-04-09 14:55:21,882 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
41
+ 2024-04-09 14:55:21,882 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
42
+ 2024-04-09 14:55:21,888 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=None socket_options=None (_trace.py:45)
43
+ 2024-04-09 14:55:21,889 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13408df50> (_trace.py:45)
44
+ 2024-04-09 14:55:21,889 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
45
+ 2024-04-09 14:55:21,889 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
46
+ 2024-04-09 14:55:21,889 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
47
+ 2024-04-09 14:55:21,889 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
48
+ 2024-04-09 14:55:21,889 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
49
+ 2024-04-09 14:55:21,892 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Connection', b'close'), (b'Content-Length', b'4'), (b'Content-Type', b'application/json'), (b'Date', b'Tue, 09 Apr 2024 06:55:21 GMT'), (b'Server', b'uvicorn')]) (_trace.py:45)
50
+ 2024-04-09 14:55:21,893 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK" (_client.py:1013)
51
+ 2024-04-09 14:55:21,893 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
52
+ 2024-04-09 14:55:21,893 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
53
+ 2024-04-09 14:55:21,893 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
54
+ 2024-04-09 14:55:21,893 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
55
+ 2024-04-09 14:55:21,895 - httpx - DEBUG - load_ssl_context verify=False cert=None trust_env=True http2=False (_config.py:79)
56
+ 2024-04-09 14:55:21,896 - httpx - DEBUG - load_ssl_context verify=False cert=None trust_env=True http2=False (_config.py:79)
57
+ 2024-04-09 14:55:21,896 - httpx - DEBUG - load_ssl_context verify=False cert=None trust_env=True http2=False (_config.py:79)
58
+ 2024-04-09 14:55:21,896 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
59
+ 2024-04-09 14:55:21,896 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1340bdf10> (_trace.py:45)
60
+ 2024-04-09 14:55:21,896 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'HEAD']> (_trace.py:45)
61
+ 2024-04-09 14:55:21,897 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
62
+ 2024-04-09 14:55:21,897 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'HEAD']> (_trace.py:45)
63
+ 2024-04-09 14:55:21,897 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
64
+ 2024-04-09 14:55:21,897 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'HEAD']> (_trace.py:45)
65
+ 2024-04-09 14:55:21,936 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Connection', b'close'), (b'Content-Length', b'8960'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Date', b'Tue, 09 Apr 2024 06:55:21 GMT'), (b'Server', b'uvicorn')]) (_trace.py:45)
66
+ 2024-04-09 14:55:21,936 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK" (_client.py:1013)
67
+ 2024-04-09 14:55:21,936 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'HEAD']> (_trace.py:45)
68
+ 2024-04-09 14:55:21,936 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
69
+ 2024-04-09 14:55:21,936 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
70
+ 2024-04-09 14:55:21,936 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
71
+ 2024-04-09 14:55:21,937 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
72
+ 2024-04-09 14:55:21,937 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
73
+ 2024-04-09 14:55:21,943 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
74
+ 2024-04-09 14:55:21,943 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
75
+ 2024-04-09 14:55:21,949 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
76
+ 2024-04-09 14:55:21,949 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
77
+ 2024-04-09 14:55:21,955 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
78
+ 2024-04-09 14:55:21,956 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d57050> (_trace.py:45)
79
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
80
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
81
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
82
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
83
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
84
+ 2024-04-09 14:55:21,956 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
85
+ 2024-04-09 14:55:21,956 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x134096ba0> server_hostname='checkip.amazonaws.com' timeout=3 (_trace.py:45)
86
+ 2024-04-09 14:55:22,013 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:21 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'3'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
87
+ 2024-04-09 14:55:22,013 - httpx - INFO - HTTP Request: GET https://api.gradio.app/gradio-messaging/en "HTTP/1.1 200 OK" (_client.py:1013)
88
+ 2024-04-09 14:55:22,013 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
89
+ 2024-04-09 14:55:22,013 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
90
+ 2024-04-09 14:55:22,013 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
91
+ 2024-04-09 14:55:22,013 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
92
+ 2024-04-09 14:55:22,033 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124b27950> (_trace.py:45)
93
+ 2024-04-09 14:55:22,033 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
94
+ 2024-04-09 14:55:22,033 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
95
+ 2024-04-09 14:55:22,033 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
96
+ 2024-04-09 14:55:22,033 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
97
+ 2024-04-09 14:55:22,033 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
98
+ 2024-04-09 14:55:22,109 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x134021050> (_trace.py:45)
99
+ 2024-04-09 14:55:22,109 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
100
+ 2024-04-09 14:55:22,109 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
101
+ 2024-04-09 14:55:22,109 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
102
+ 2024-04-09 14:55:22,109 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
103
+ 2024-04-09 14:55:22,109 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
104
+ 2024-04-09 14:55:22,177 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'', [(b'Date', b'Tue, 09 Apr 2024 06:55:22 GMT'), (b'Content-Type', b'text/plain;charset=UTF-8'), (b'Content-Length', b'16'), (b'Connection', b'keep-alive'), (b'Server', b'nginx')]) (_trace.py:45)
105
+ 2024-04-09 14:55:22,177 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 " (_client.py:1013)
106
+ 2024-04-09 14:55:22,177 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
107
+ 2024-04-09 14:55:22,177 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
108
+ 2024-04-09 14:55:22,177 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
109
+ 2024-04-09 14:55:22,177 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
110
+ 2024-04-09 14:55:22,179 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
111
+ 2024-04-09 14:55:22,180 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
112
+ 2024-04-09 14:55:22,186 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
113
+ 2024-04-09 14:55:22,186 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
114
+ 2024-04-09 14:55:22,192 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
115
+ 2024-04-09 14:55:22,192 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
116
+ 2024-04-09 14:55:22,198 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
117
+ 2024-04-09 14:55:22,198 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d83d10> (_trace.py:45)
118
+ 2024-04-09 14:55:22,198 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
119
+ 2024-04-09 14:55:22,198 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
120
+ 2024-04-09 14:55:22,198 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
121
+ 2024-04-09 14:55:22,198 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
122
+ 2024-04-09 14:55:22,198 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
123
+ 2024-04-09 14:55:22,199 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
124
+ 2024-04-09 14:55:22,199 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x1147c3140> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
125
+ 2024-04-09 14:55:22,207 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x134045510> (_trace.py:45)
126
+ 2024-04-09 14:55:22,207 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
127
+ 2024-04-09 14:55:22,207 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
128
+ 2024-04-09 14:55:22,207 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
129
+ 2024-04-09 14:55:22,207 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
130
+ 2024-04-09 14:55:22,207 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
131
+ 2024-04-09 14:55:22,208 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'', [(b'Date', b'Tue, 09 Apr 2024 06:55:22 GMT'), (b'Content-Type', b'text/plain;charset=UTF-8'), (b'Content-Length', b'16'), (b'Connection', b'keep-alive'), (b'Server', b'nginx')]) (_trace.py:45)
132
+ 2024-04-09 14:55:22,209 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 " (_client.py:1013)
133
+ 2024-04-09 14:55:22,209 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
134
+ 2024-04-09 14:55:22,209 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
135
+ 2024-04-09 14:55:22,209 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
136
+ 2024-04-09 14:55:22,209 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
137
+ 2024-04-09 14:55:22,211 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
138
+ 2024-04-09 14:55:22,211 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
139
+ 2024-04-09 14:55:22,217 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
140
+ 2024-04-09 14:55:22,217 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
141
+ 2024-04-09 14:55:22,223 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
142
+ 2024-04-09 14:55:22,223 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
143
+ 2024-04-09 14:55:22,229 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
144
+ 2024-04-09 14:55:22,229 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d8a0d0> (_trace.py:45)
145
+ 2024-04-09 14:55:22,229 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
146
+ 2024-04-09 14:55:22,229 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
147
+ 2024-04-09 14:55:22,229 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
148
+ 2024-04-09 14:55:22,229 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
149
+ 2024-04-09 14:55:22,229 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
150
+ 2024-04-09 14:55:22,230 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
151
+ 2024-04-09 14:55:22,230 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8ccb0> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
152
+ 2024-04-09 14:55:22,317 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'', [(b'Date', b'Tue, 09 Apr 2024 06:55:22 GMT'), (b'Content-Type', b'text/plain;charset=UTF-8'), (b'Content-Length', b'16'), (b'Connection', b'keep-alive'), (b'Server', b'nginx')]) (_trace.py:45)
153
+ 2024-04-09 14:55:22,317 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 " (_client.py:1013)
154
+ 2024-04-09 14:55:22,317 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
155
+ 2024-04-09 14:55:22,317 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
156
+ 2024-04-09 14:55:22,317 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
157
+ 2024-04-09 14:55:22,317 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
158
+ 2024-04-09 14:55:22,319 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
159
+ 2024-04-09 14:55:22,320 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
160
+ 2024-04-09 14:55:22,325 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
161
+ 2024-04-09 14:55:22,326 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
162
+ 2024-04-09 14:55:22,331 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
163
+ 2024-04-09 14:55:22,332 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
164
+ 2024-04-09 14:55:22,338 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
165
+ 2024-04-09 14:55:22,338 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d0c890> (_trace.py:45)
166
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
167
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
168
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
169
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
170
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
171
+ 2024-04-09 14:55:22,338 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
172
+ 2024-04-09 14:55:22,339 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x1340c97f0> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
173
+ 2024-04-09 14:55:22,435 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1340bed10> (_trace.py:45)
174
+ 2024-04-09 14:55:22,435 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
175
+ 2024-04-09 14:55:22,436 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
176
+ 2024-04-09 14:55:22,436 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
177
+ 2024-04-09 14:55:22,436 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
178
+ 2024-04-09 14:55:22,436 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
179
+ 2024-04-09 14:55:22,492 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x114550590> (_trace.py:45)
180
+ 2024-04-09 14:55:22,493 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
181
+ 2024-04-09 14:55:22,493 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
182
+ 2024-04-09 14:55:22,493 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
183
+ 2024-04-09 14:55:22,493 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
184
+ 2024-04-09 14:55:22,493 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
185
+ 2024-04-09 14:55:22,752 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:22 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
186
+ 2024-04-09 14:55:22,752 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
187
+ 2024-04-09 14:55:22,752 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
188
+ 2024-04-09 14:55:22,752 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
189
+ 2024-04-09 14:55:22,752 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
190
+ 2024-04-09 14:55:22,752 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
191
+ 2024-04-09 14:55:22,754 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:22 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
192
+ 2024-04-09 14:55:22,755 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
193
+ 2024-04-09 14:55:22,755 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
194
+ 2024-04-09 14:55:22,755 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
195
+ 2024-04-09 14:55:22,755 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
196
+ 2024-04-09 14:55:22,755 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
197
+ 2024-04-09 14:55:22,779 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1245c6ad0> (_trace.py:45)
198
+ 2024-04-09 14:55:22,779 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
199
+ 2024-04-09 14:55:22,779 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
200
+ 2024-04-09 14:55:22,779 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
201
+ 2024-04-09 14:55:22,779 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
202
+ 2024-04-09 14:55:22,779 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
203
+ 2024-04-09 14:55:22,852 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d62650> (_trace.py:45)
204
+ 2024-04-09 14:55:22,853 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
205
+ 2024-04-09 14:55:22,853 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
206
+ 2024-04-09 14:55:22,853 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
207
+ 2024-04-09 14:55:22,853 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
208
+ 2024-04-09 14:55:22,853 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
209
+ 2024-04-09 14:55:22,913 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124520210> (_trace.py:45)
210
+ 2024-04-09 14:55:22,913 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
211
+ 2024-04-09 14:55:22,913 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
212
+ 2024-04-09 14:55:22,913 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
213
+ 2024-04-09 14:55:22,913 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
214
+ 2024-04-09 14:55:22,913 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
215
+ 2024-04-09 14:55:23,117 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:23 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
216
+ 2024-04-09 14:55:23,117 - httpx - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
217
+ 2024-04-09 14:55:23,117 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
218
+ 2024-04-09 14:55:23,117 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
219
+ 2024-04-09 14:55:23,117 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
220
+ 2024-04-09 14:55:23,117 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
221
+ 2024-04-09 14:55:23,187 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:23 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
222
+ 2024-04-09 14:55:23,187 - httpx - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
223
+ 2024-04-09 14:55:23,187 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
224
+ 2024-04-09 14:55:23,187 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
225
+ 2024-04-09 14:55:23,187 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
226
+ 2024-04-09 14:55:23,187 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
227
+ 2024-04-09 14:55:23,229 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:55:23 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
228
+ 2024-04-09 14:55:23,229 - httpx - INFO - HTTP Request: POST https://api.gradio.app/gradio-launched-telemetry/ "HTTP/1.1 200 OK" (_client.py:1013)
229
+ 2024-04-09 14:55:23,229 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
230
+ 2024-04-09 14:55:23,229 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
231
+ 2024-04-09 14:55:23,229 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
232
+ 2024-04-09 14:55:23,229 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
233
+ 2024-04-09 14:55:27,172 - matplotlib - DEBUG - matplotlib data path: /opt/homebrew/lib/python3.11/site-packages/matplotlib/mpl-data (__init__.py:337)
234
+ 2024-04-09 14:55:27,176 - matplotlib - DEBUG - CONFIGDIR=/Users/louisshe/.matplotlib (__init__.py:337)
235
+ 2024-04-09 14:55:27,177 - matplotlib - DEBUG - interactive is False (__init__.py:1498)
236
+ 2024-04-09 14:55:27,177 - matplotlib - DEBUG - platform is darwin (__init__.py:1499)
237
+ 2024-04-09 14:55:27,208 - matplotlib - DEBUG - CACHEDIR=/Users/louisshe/.matplotlib (__init__.py:337)
238
+ 2024-04-09 14:55:27,210 - matplotlib.font_manager - DEBUG - Using fontManager instance from /Users/louisshe/.matplotlib/fontlist-v330.json (font_manager.py:1574)
239
+ 2024-04-09 14:55:27,338 - matplotlib.pyplot - DEBUG - Loaded backend macosx version unknown. (pyplot.py:414)
240
+ 2024-04-09 14:55:27,339 - matplotlib.pyplot - DEBUG - Loaded backend agg version v2.2. (pyplot.py:414)
241
+ 2024-04-09 14:55:28,342 - matplotlib.pyplot - DEBUG - Loaded backend MacOSX version unknown. (pyplot.py:414)
242
+ 2024-04-09 14:55:28,544 - matplotlib.pyplot - DEBUG - Loaded backend agg version v2.2. (pyplot.py:414)
243
+ 2024-04-09 14:55:29,063 - root - DEBUG - test (app.py:60)
244
+ 2024-04-09 14:55:32,121 - root - INFO - testvewqfewqfewq (app.py:60)
245
+ 2024-04-09 14:55:33,342 - root - WARNING - testvewqfewqfewqfewqfqwe (app.py:60)
246
+ 2024-04-09 14:55:34,823 - root - CRITICAL - testvewqfewqfewqfewqfqwe (app.py:60)
247
+ 2024-04-09 14:55:35,486 - root - ERROR - testvewqfewqfewqfewqfqwe (app.py:60)
248
+ 2024-04-09 14:55:36,200 - root - CRITICAL - testvewqfewqfewqfewqfqwe (app.py:60)
249
+ 2024-04-09 14:55:37,067 - root - ERROR - testvewqfewqfewqfewqfqwe (app.py:60)
250
+ 2024-04-09 14:55:38,031 - root - CRITICAL - testvewqfewqfewqfewqfqwe (app.py:60)
251
+ 2024-04-09 14:55:38,539 - root - WARNING - testvewqfewqfewqfewqfqwe (app.py:60)
252
+ 2024-04-09 14:55:38,994 - root - INFO - testvewqfewqfewqfewqfqwe (app.py:60)
253
+ 2024-04-09 14:55:39,347 - root - DEBUG - testvewqfewqfewqfewqfqwe (app.py:60)
254
+ 2024-04-09 14:55:39,651 - root - INFO - testvewqfewqfewqfewqfqwe (app.py:60)
255
+ 2024-04-09 14:55:39,854 - root - WARNING - testvewqfewqfewqfewqfqwe (app.py:60)
256
+ 2024-04-09 14:55:40,058 - root - CRITICAL - testvewqfewqfewqfewqfqwe (app.py:60)
257
+ 2024-04-09 14:56:30,306 - root - INFO - Use the left column to log messages to a file, and the log will be displayed in here. (app.py:48)
258
+ 2024-04-09 14:56:30,308 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
259
+ 2024-04-09 14:56:30,308 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
260
+ 2024-04-09 14:56:30,323 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
261
+ 2024-04-09 14:56:30,323 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
262
+ 2024-04-09 14:56:30,335 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
263
+ 2024-04-09 14:56:30,335 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
264
+ 2024-04-09 14:56:30,339 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
265
+ 2024-04-09 14:56:30,339 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
266
+ 2024-04-09 14:56:30,345 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
267
+ 2024-04-09 14:56:30,345 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
268
+ 2024-04-09 14:56:30,345 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
269
+ 2024-04-09 14:56:30,345 - httpx - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
270
+ 2024-04-09 14:56:30,350 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
271
+ 2024-04-09 14:56:30,351 - httpcore.connection - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
272
+ 2024-04-09 14:56:30,351 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13408f890> (_trace.py:45)
273
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
274
+ 2024-04-09 14:56:30,351 - httpcore.connection - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13408e750> (_trace.py:45)
275
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
276
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
277
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
278
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
279
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
280
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
281
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
282
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
283
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
284
+ 2024-04-09 14:56:30,351 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
285
+ 2024-04-09 14:56:30,351 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8fc80> server_hostname='api.gradio.app' timeout=3 (_trace.py:45)
286
+ 2024-04-09 14:56:30,352 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
287
+ 2024-04-09 14:56:30,352 - httpcore.proxy - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8f770> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
288
+ 2024-04-09 14:56:30,942 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13408d590> (_trace.py:45)
289
+ 2024-04-09 14:56:30,942 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
290
+ 2024-04-09 14:56:30,942 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
291
+ 2024-04-09 14:56:30,942 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
292
+ 2024-04-09 14:56:30,942 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
293
+ 2024-04-09 14:56:30,942 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
294
+ 2024-04-09 14:56:30,945 - httpcore.proxy - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13408da10> (_trace.py:45)
295
+ 2024-04-09 14:56:30,945 - httpcore.http11 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
296
+ 2024-04-09 14:56:30,945 - httpcore.http11 - DEBUG - send_request_headers.complete (_trace.py:45)
297
+ 2024-04-09 14:56:30,945 - httpcore.http11 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
298
+ 2024-04-09 14:56:30,945 - httpcore.http11 - DEBUG - send_request_body.complete (_trace.py:45)
299
+ 2024-04-09 14:56:30,945 - httpcore.http11 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
300
+ 2024-04-09 14:56:31,143 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:56:31 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
301
+ 2024-04-09 14:56:31,143 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
302
+ 2024-04-09 14:56:31,143 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
303
+ 2024-04-09 14:56:31,143 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
304
+ 2024-04-09 14:56:31,143 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
305
+ 2024-04-09 14:56:31,143 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
306
+ 2024-04-09 14:56:31,285 - httpcore.http11 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:56:31 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
307
+ 2024-04-09 14:56:31,285 - httpx - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
308
+ 2024-04-09 14:56:31,285 - httpcore.http11 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
309
+ 2024-04-09 14:56:31,285 - httpcore.http11 - DEBUG - receive_response_body.complete (_trace.py:45)
310
+ 2024-04-09 14:56:31,285 - httpcore.http11 - DEBUG - response_closed.started (_trace.py:45)
311
+ 2024-04-09 14:56:31,285 - httpcore.http11 - DEBUG - response_closed.complete (_trace.py:45)
312
+ 2024-04-09 14:56:55,353 - INFO - Use the left column to log messages to a file, and the log will be displayed in here. (app.py:46)
313
+ 2024-04-09 14:56:55,355 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
314
+ 2024-04-09 14:56:55,355 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
315
+ 2024-04-09 14:56:55,355 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
316
+ 2024-04-09 14:56:55,355 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
317
+ 2024-04-09 14:56:55,367 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
318
+ 2024-04-09 14:56:55,367 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
319
+ 2024-04-09 14:56:55,370 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
320
+ 2024-04-09 14:56:55,370 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
321
+ 2024-04-09 14:56:55,382 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
322
+ 2024-04-09 14:56:55,382 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
323
+ 2024-04-09 14:56:55,386 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
324
+ 2024-04-09 14:56:55,386 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
325
+ 2024-04-09 14:56:55,391 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
326
+ 2024-04-09 14:56:55,392 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
327
+ 2024-04-09 14:56:55,392 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x134dfffd0> (_trace.py:45)
328
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
329
+ 2024-04-09 14:56:55,392 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1353dbb90> (_trace.py:45)
330
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
331
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_headers.complete (_trace.py:45)
332
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
333
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_body.complete (_trace.py:45)
334
+ 2024-04-09 14:56:55,392 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
335
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_headers.complete (_trace.py:45)
336
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
337
+ 2024-04-09 14:56:55,392 - DEBUG - send_request_body.complete (_trace.py:45)
338
+ 2024-04-09 14:56:55,392 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
339
+ 2024-04-09 14:56:55,392 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
340
+ 2024-04-09 14:56:55,392 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x1245957f0> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
341
+ 2024-04-09 14:56:55,393 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
342
+ 2024-04-09 14:56:55,393 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x135241c70> server_hostname='api.gradio.app' timeout=3 (_trace.py:45)
343
+ 2024-04-09 14:56:56,944 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x135356c50> (_trace.py:45)
344
+ 2024-04-09 14:56:56,944 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
345
+ 2024-04-09 14:56:56,944 - DEBUG - send_request_headers.complete (_trace.py:45)
346
+ 2024-04-09 14:56:56,945 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
347
+ 2024-04-09 14:56:56,945 - DEBUG - send_request_body.complete (_trace.py:45)
348
+ 2024-04-09 14:56:56,945 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
349
+ 2024-04-09 14:56:57,152 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:56:57 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
350
+ 2024-04-09 14:56:57,152 - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
351
+ 2024-04-09 14:56:57,152 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
352
+ 2024-04-09 14:56:57,152 - DEBUG - receive_response_body.complete (_trace.py:45)
353
+ 2024-04-09 14:56:57,152 - DEBUG - response_closed.started (_trace.py:45)
354
+ 2024-04-09 14:56:57,153 - DEBUG - response_closed.complete (_trace.py:45)
355
+ 2024-04-09 14:56:57,255 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124d61a90> (_trace.py:45)
356
+ 2024-04-09 14:56:57,256 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
357
+ 2024-04-09 14:56:57,256 - DEBUG - send_request_headers.complete (_trace.py:45)
358
+ 2024-04-09 14:56:57,256 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
359
+ 2024-04-09 14:56:57,256 - DEBUG - send_request_body.complete (_trace.py:45)
360
+ 2024-04-09 14:56:57,256 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
361
+ 2024-04-09 14:56:57,592 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:56:57 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
362
+ 2024-04-09 14:56:57,592 - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
363
+ 2024-04-09 14:56:57,592 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
364
+ 2024-04-09 14:56:57,592 - DEBUG - receive_response_body.complete (_trace.py:45)
365
+ 2024-04-09 14:56:57,592 - DEBUG - response_closed.started (_trace.py:45)
366
+ 2024-04-09 14:56:57,592 - DEBUG - response_closed.complete (_trace.py:45)
367
+ 2024-04-09 14:57:07,695 - DEBUG - test (app.py:54)
368
+ 2024-04-09 14:57:09,770 - INFO - test (app.py:54)
369
+ 2024-04-09 14:57:53,713 - INFO - Use the left column to log messages to a file, and the log will be displayed in here. (app.py:47)
370
+ 2024-04-09 14:57:53,715 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
371
+ 2024-04-09 14:57:53,716 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
372
+ 2024-04-09 14:57:53,721 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
373
+ 2024-04-09 14:57:53,722 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
374
+ 2024-04-09 14:57:53,731 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
375
+ 2024-04-09 14:57:53,731 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
376
+ 2024-04-09 14:57:53,742 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
377
+ 2024-04-09 14:57:53,747 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
378
+ 2024-04-09 14:57:53,747 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
379
+ 2024-04-09 14:57:53,747 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
380
+ 2024-04-09 14:57:53,753 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
381
+ 2024-04-09 14:57:53,753 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
382
+ 2024-04-09 14:57:53,753 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1354d1010> (_trace.py:45)
383
+ 2024-04-09 14:57:53,753 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
384
+ 2024-04-09 14:57:53,753 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
385
+ 2024-04-09 14:57:53,753 - DEBUG - send_request_headers.complete (_trace.py:45)
386
+ 2024-04-09 14:57:53,753 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
387
+ 2024-04-09 14:57:53,754 - DEBUG - send_request_body.complete (_trace.py:45)
388
+ 2024-04-09 14:57:53,754 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
389
+ 2024-04-09 14:57:53,754 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
390
+ 2024-04-09 14:57:53,754 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x124b8f380> server_hostname='api.gradio.app' timeout=3 (_trace.py:45)
391
+ 2024-04-09 14:57:53,759 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
392
+ 2024-04-09 14:57:53,759 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1353cb610> (_trace.py:45)
393
+ 2024-04-09 14:57:53,759 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
394
+ 2024-04-09 14:57:53,759 - DEBUG - send_request_headers.complete (_trace.py:45)
395
+ 2024-04-09 14:57:53,759 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
396
+ 2024-04-09 14:57:53,759 - DEBUG - send_request_body.complete (_trace.py:45)
397
+ 2024-04-09 14:57:53,759 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
398
+ 2024-04-09 14:57:53,760 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
399
+ 2024-04-09 14:57:53,760 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x134094950> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
400
+ 2024-04-09 14:57:54,374 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x1354d1c10> (_trace.py:45)
401
+ 2024-04-09 14:57:54,374 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
402
+ 2024-04-09 14:57:54,374 - DEBUG - send_request_headers.complete (_trace.py:45)
403
+ 2024-04-09 14:57:54,374 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
404
+ 2024-04-09 14:57:54,374 - DEBUG - send_request_body.complete (_trace.py:45)
405
+ 2024-04-09 14:57:54,374 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
406
+ 2024-04-09 14:57:54,567 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:57:54 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
407
+ 2024-04-09 14:57:54,567 - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
408
+ 2024-04-09 14:57:54,567 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
409
+ 2024-04-09 14:57:54,568 - DEBUG - receive_response_body.complete (_trace.py:45)
410
+ 2024-04-09 14:57:54,568 - DEBUG - response_closed.started (_trace.py:45)
411
+ 2024-04-09 14:57:54,568 - DEBUG - response_closed.complete (_trace.py:45)
412
+ 2024-04-09 14:57:54,598 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x134a83d10> (_trace.py:45)
413
+ 2024-04-09 14:57:54,598 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
414
+ 2024-04-09 14:57:54,598 - DEBUG - send_request_headers.complete (_trace.py:45)
415
+ 2024-04-09 14:57:54,598 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
416
+ 2024-04-09 14:57:54,598 - DEBUG - send_request_body.complete (_trace.py:45)
417
+ 2024-04-09 14:57:54,598 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
418
+ 2024-04-09 14:57:54,903 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:57:54 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
419
+ 2024-04-09 14:57:54,903 - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
420
+ 2024-04-09 14:57:54,903 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
421
+ 2024-04-09 14:57:54,903 - DEBUG - receive_response_body.complete (_trace.py:45)
422
+ 2024-04-09 14:57:54,903 - DEBUG - response_closed.started (_trace.py:45)
423
+ 2024-04-09 14:57:54,903 - DEBUG - response_closed.complete (_trace.py:45)
424
+ 2024-04-09 14:58:05,230 - INFO - test (app.py:55)
425
+ 2024-04-09 14:58:06,141 - CRITICAL - test (app.py:55)
426
+ 2024-04-09 14:58:07,004 - WARNING - test (app.py:55)
427
+ 2024-04-09 14:58:07,770 - ERROR - test (app.py:55)
428
+ 2024-04-09 14:58:08,688 - DEBUG - test (app.py:55)
429
+ 2024-04-09 14:58:23,054 - INFO - Use the left column to log messages to a file, and the log will be displayed in here. (app.py:47)
430
+ 2024-04-09 14:58:23,056 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
431
+ 2024-04-09 14:58:23,056 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
432
+ 2024-04-09 14:58:23,056 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
433
+ 2024-04-09 14:58:23,057 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
434
+ 2024-04-09 14:58:23,070 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
435
+ 2024-04-09 14:58:23,070 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
436
+ 2024-04-09 14:58:23,073 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
437
+ 2024-04-09 14:58:23,073 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
438
+ 2024-04-09 14:58:23,085 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
439
+ 2024-04-09 14:58:23,085 - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False (_config.py:79)
440
+ 2024-04-09 14:58:23,088 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
441
+ 2024-04-09 14:58:23,088 - DEBUG - load_verify_locations cafile='/opt/homebrew/lib/python3.11/site-packages/certifi/cacert.pem' (_config.py:146)
442
+ 2024-04-09 14:58:23,094 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=5 socket_options=None (_trace.py:45)
443
+ 2024-04-09 14:58:23,094 - DEBUG - connect_tcp.started host='127.0.0.1' port=7890 local_address=None timeout=3 socket_options=None (_trace.py:45)
444
+ 2024-04-09 14:58:23,094 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13400c710> (_trace.py:45)
445
+ 2024-04-09 14:58:23,094 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
446
+ 2024-04-09 14:58:23,094 - DEBUG - connect_tcp.complete return_value=<httpcore._backends.sync.SyncStream object at 0x124dfc910> (_trace.py:45)
447
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_headers.complete (_trace.py:45)
448
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
449
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
450
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_body.complete (_trace.py:45)
451
+ 2024-04-09 14:58:23,095 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
452
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_headers.complete (_trace.py:45)
453
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_body.started request=<Request [b'CONNECT']> (_trace.py:45)
454
+ 2024-04-09 14:58:23,095 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
455
+ 2024-04-09 14:58:23,095 - DEBUG - send_request_body.complete (_trace.py:45)
456
+ 2024-04-09 14:58:23,095 - DEBUG - receive_response_headers.started request=<Request [b'CONNECT']> (_trace.py:45)
457
+ 2024-04-09 14:58:23,095 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x1354bff50> server_hostname='api.gradio.app' timeout=3 (_trace.py:45)
458
+ 2024-04-09 14:58:23,095 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'Connection established', []) (_trace.py:45)
459
+ 2024-04-09 14:58:23,095 - DEBUG - start_tls.started ssl_context=<ssl.SSLContext object at 0x1354bf890> server_hostname='api.gradio.app' timeout=5 (_trace.py:45)
460
+ 2024-04-09 14:58:23,806 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13400e3d0> (_trace.py:45)
461
+ 2024-04-09 14:58:23,806 - DEBUG - send_request_headers.started request=<Request [b'GET']> (_trace.py:45)
462
+ 2024-04-09 14:58:23,807 - DEBUG - send_request_headers.complete (_trace.py:45)
463
+ 2024-04-09 14:58:23,807 - DEBUG - send_request_body.started request=<Request [b'GET']> (_trace.py:45)
464
+ 2024-04-09 14:58:23,807 - DEBUG - send_request_body.complete (_trace.py:45)
465
+ 2024-04-09 14:58:23,807 - DEBUG - receive_response_headers.started request=<Request [b'GET']> (_trace.py:45)
466
+ 2024-04-09 14:58:23,813 - DEBUG - start_tls.complete return_value=<httpcore._backends.sync.SyncStream object at 0x13400dbd0> (_trace.py:45)
467
+ 2024-04-09 14:58:23,813 - DEBUG - send_request_headers.started request=<Request [b'POST']> (_trace.py:45)
468
+ 2024-04-09 14:58:23,813 - DEBUG - send_request_headers.complete (_trace.py:45)
469
+ 2024-04-09 14:58:23,813 - DEBUG - send_request_body.started request=<Request [b'POST']> (_trace.py:45)
470
+ 2024-04-09 14:58:23,813 - DEBUG - send_request_body.complete (_trace.py:45)
471
+ 2024-04-09 14:58:23,813 - DEBUG - receive_response_headers.started request=<Request [b'POST']> (_trace.py:45)
472
+ 2024-04-09 14:58:24,005 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:58:23 GMT'), (b'Content-Type', b'application/json'), (b'Content-Length', b'21'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*')]) (_trace.py:45)
473
+ 2024-04-09 14:58:24,005 - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK" (_client.py:1013)
474
+ 2024-04-09 14:58:24,005 - DEBUG - receive_response_body.started request=<Request [b'GET']> (_trace.py:45)
475
+ 2024-04-09 14:58:24,005 - DEBUG - receive_response_body.complete (_trace.py:45)
476
+ 2024-04-09 14:58:24,005 - DEBUG - response_closed.started (_trace.py:45)
477
+ 2024-04-09 14:58:24,005 - DEBUG - response_closed.complete (_trace.py:45)
478
+ 2024-04-09 14:58:24,186 - DEBUG - receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Tue, 09 Apr 2024 06:58:24 GMT'), (b'Content-Type', b'text/html; charset=utf-8'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'Server', b'nginx/1.18.0'), (b'Access-Control-Allow-Origin', b'*'), (b'Content-Encoding', b'gzip')]) (_trace.py:45)
479
+ 2024-04-09 14:58:24,186 - INFO - HTTP Request: POST https://api.gradio.app/gradio-initiated-analytics/ "HTTP/1.1 200 OK" (_client.py:1013)
480
+ 2024-04-09 14:58:24,186 - DEBUG - receive_response_body.started request=<Request [b'POST']> (_trace.py:45)
481
+ 2024-04-09 14:58:24,187 - DEBUG - receive_response_body.complete (_trace.py:45)
482
+ 2024-04-09 14:58:24,187 - DEBUG - response_closed.started (_trace.py:45)
483
+ 2024-04-09 14:58:24,187 - DEBUG - response_closed.complete (_trace.py:45)
484
+ 2024-04-09 14:58:27,766 - INFO - test (app.py:55)
485
+ 2024-04-09 14:58:28,634 - WARNING - test (app.py:55)
486
+ 2024-04-09 14:58:29,449 - ERROR - test (app.py:55)
487
+ 2024-04-09 14:58:29,855 - CRITICAL - test (app.py:55)