@pn-data/pn-data-analysis 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ name: pn-data-analysis
|
|
|
3
3
|
description: Analyzes project data on the middle platform (pn_mid_v2). Use when querying 收入, 流水, 商店流水, 活跃, 留存, 来源, project revenue, activity, retention, or source data by project and month.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
> Skill 版本:v0.0.
|
|
6
|
+
> Skill 版本:v0.0.4
|
|
7
7
|
|
|
8
8
|
# Skill 更新
|
|
9
9
|
|
|
@@ -26,8 +26,8 @@ import urllib.request
|
|
|
26
26
|
from calendar import monthrange
|
|
27
27
|
from datetime import datetime
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
API_BASE = "http://localhost:811" # 本地测试
|
|
29
|
+
API_BASE = "https://pnv2.17995api.net"
|
|
30
|
+
# API_BASE = "http://localhost:811" # 本地测试
|
|
31
31
|
API_PATH = "/service/pn_data_analysis"
|
|
32
32
|
ENV_TOKEN = "PN_DATA_ANALYSIS_TOKEN"
|
|
33
33
|
|