將網頁抓的內容存入Access中(以基金現值為例)
主要目的為自動化抓取網頁資訊(例如:基金每日淨值),並將其輸入至本地資料庫,再利用本地資料庫的報表功能展現數據,希望藉此減少資料收集所需要的時間。
- Python 3.6
- Datebase: Microsoft Access
- ODBC(x64)
如果Access在讀取時常常出現錯誤,請查詢Window中的 ODBC資料來源管理員(64位元) 中的 驅動程式是否有出現 Microsoft Access Driver
autoInsertAccess
│
└───controller
│ │
│ └── Main.py
│
└───model
│ │
│ └── Price.py
│
└───service
│ │
│ └──access
│ │ │
│ │ └── insertAccess.py
│ │
│ └──webCrawler
│ │
│ └── crawler.py
│
└───README.md
│
└───requirements.txt
│
└───.gitignore