我是Django的新手,每次我尝试运行python panel/manage.py startapp %app% (面板是我的项目)时,它都会给我错误:
Error: '%app%' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.
我做错了什么吗?
当然,公司或联系人或统计数据不是现有Python模块的名称?
我有一个名为"server-plots“的仪表板,还有一个名为"master-plots”的仪表板。"master-plots“下的面板是最新的图形,我想把"master-plots”仪表板中的新面板添加到"server-plots“中,所有内容都使用Python代码(而不是手动或使用curl)。我能够以编程方式使用Grafana GET API作为JSON来备份这些绘图。我希望在"master-plots“仪表板JSON中找到新的面板,并将这些面板添加到"server-plots”仪表板中,所有这些面板都使用Python。我找不到任何