Spaces:
Sleeping
Sleeping
Commit
·
073e273
1
Parent(s):
b0a371d
readme
Browse files
README.md
CHANGED
@@ -33,23 +33,27 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
|
|
33 |
1. 安裝 Python 3.8+ 及套件:
|
34 |
```bash
|
35 |
pip install gradio requests pandas geopy
|
|
|
36 |
|
37 |
-
|
38 |
|
39 |
-
|
|
|
|
|
40 |
|
|
|
41 |
|
42 |
-
3. 瀏覽器打開 http://127.0.0.1:7860,即可看到查詢介面。
|
43 |
|
44 |
注意事項
|
45 |
• 此為個人練習與技術示範,非官方專案。
|
46 |
• 若出現「憑證過期」或「Token 失敗」等訊息,表示 MID_V 失效,需要更新。
|
47 |
|
|
|
48 |
Convenience Store Expiring-Food Query (7-11 / FamilyMart)
|
49 |
|
50 |
This project uses unofficial APIs to query expiring-food items in Taiwan’s 7-11 and FamilyMart convenience stores.
|
51 |
|
52 |
-
|
53 |
1. A valid MID_V is required to access 7-11’s data. MID_V may expire as the official app updates. You must capture or obtain it by yourself.
|
54 |
2. FamilyMart’s API might change or be discontinued without notice.
|
55 |
3. This project is for educational and research purposes only. Please do not use it for commercial or illegal purposes.
|
@@ -60,24 +64,18 @@ Features
|
|
60 |
• Display each store’s expiring-food items and remaining quantity.
|
61 |
|
62 |
Usage
|
63 |
-
|
64 |
-
|
65 |
pip install gradio requests pandas geopy
|
|
|
66 |
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
python app.py
|
|
|
71 |
|
|
|
72 |
|
73 |
-
3. Open http://127.0.0.1:7860 in your browser to see the interface.
|
74 |
-
|
75 |
-
Disclaimer
|
76 |
-
• This is a personal practice/demo project, not affiliated with or endorsed by 7-11 or FamilyMart.
|
77 |
-
• If you see “certificate expired” or “token error,” it means MID_V is invalid and must be updated.
|
78 |
-
|
79 |
-
> - 你可以將上述內容直接複製到 `README.md` 放到 GitHub。
|
80 |
-
> - 若有更多需求,可自行在 README 中補充專案背景、技術細節、授權條款等。
|
81 |
|
82 |
---
|
83 |
|
|
|
33 |
1. 安裝 Python 3.8+ 及套件:
|
34 |
```bash
|
35 |
pip install gradio requests pandas geopy
|
36 |
+
```
|
37 |
|
38 |
+
2. 執行:
|
39 |
|
40 |
+
```
|
41 |
+
python app.py
|
42 |
+
```
|
43 |
|
44 |
+
3. 瀏覽器打開 http://127.0.0.1:7860,即可看到查詢介面。
|
45 |
|
|
|
46 |
|
47 |
注意事項
|
48 |
• 此為個人練習與技術示範,非官方專案。
|
49 |
• 若出現「憑證過期」或「Token 失敗」等訊息,表示 MID_V 失效,需要更新。
|
50 |
|
51 |
+
---
|
52 |
Convenience Store Expiring-Food Query (7-11 / FamilyMart)
|
53 |
|
54 |
This project uses unofficial APIs to query expiring-food items in Taiwan’s 7-11 and FamilyMart convenience stores.
|
55 |
|
56 |
+
Note:
|
57 |
1. A valid MID_V is required to access 7-11’s data. MID_V may expire as the official app updates. You must capture or obtain it by yourself.
|
58 |
2. FamilyMart’s API might change or be discontinued without notice.
|
59 |
3. This project is for educational and research purposes only. Please do not use it for commercial or illegal purposes.
|
|
|
64 |
• Display each store’s expiring-food items and remaining quantity.
|
65 |
|
66 |
Usage
|
67 |
+
1. Install Python 3.8+ and dependencies:
|
68 |
+
```
|
69 |
pip install gradio requests pandas geopy
|
70 |
+
```
|
71 |
|
72 |
+
2. Run:
|
73 |
+
```
|
|
|
74 |
python app.py
|
75 |
+
```
|
76 |
|
77 |
+
3. Open http://127.0.0.1:7860 in your browser to see the interface.
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
---
|
81 |
|