我正在为Windows开发一个小应用程序,它使用requests
获取一些数据,处理它们(没有numpy)并在Tk窗口上用matplotlib绘制它们。
我使用这些libs:
import requests
import os
import tkinter as tk
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
import matplotlib.dates as mdates
from ttkthemes import ThemedStyle
import datetime
from matplotlib.backends.backend_tkagg import NavigationToolbar2TkAgg
from matplotlib.backend_bases import key_press_handler
当我用cx_freeze设置包装所有内容时,我得到了一个近300Mb的文件! 我想念一个优化的方式"减少lib大小或使用轻量级lib。我知道有很多绘图/ GUI框架,但哪个最适合我的应用程序?