搜尋
首頁後端開發Python教學使用 Python、OpenWeather API 和 AWS S3 建立可擴展的即時天氣儀表板

本文檔描述了一個檢索天氣資料並將其儲存在 AWS S3 儲存桶中的 Python 專案。 為了清晰和改進流程,讓我們重新措辭,保持原始語言和圖像位置。

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

天氣儀表板項目

這個 Python 項目,天氣儀表板,透過 OpenWeather API 檢索天氣資料並將其安全地上傳到 AWS S3 儲存桶。它提供了一個簡單的介面來查看各個城市的天氣資訊,並將結果無縫保存到雲端。 透過利用 AWS S3 進行資料存儲,增強了專案的可擴充性。

目錄

  • 先決條件
  • 專案概況
  • 核心功能
  • 使用的技術
  • 項目設定
  • 環境配置
  • 運行應用程式

先決條件

開始之前,請確保您擁有:

  1. Python 3.x:從Python官方網站下載安裝。
  2. AWS 帳戶: 建立帳戶來存取 AWS S3。
  3. OpenWeather API 金鑰: 從 OpenWeather 網站取得金鑰。
  4. AWS CLI:下載並安裝 AWS 命令​​列介面。
  5. Python 熟練度: 對 Python 腳本、API 互動和環境變數有基本了解。
  6. 程式碼編輯器/IDE:使用 VS Code、PyCharm 或類似的開發環境。
  7. Git: 安裝 Git 以進行版本控制(可從 Git 網站取得)。

專案概況

此天氣儀表板利用 OpenWeather API 來取得指定位置的天氣資訊。 然後,該資料會上傳到 AWS S3 儲存桶 以方便遠端存取。系統的設計允許用戶輸入不同的城市並接收即時天氣更新。

核心功能

  • 從 OpenWeather API 擷取天氣資料。
  • 將天氣資料上傳到 AWS S3 儲存桶。
  • 使用環境變數安全地管理 API 金鑰和 AWS 憑證。

使用的技術

該項目利用:

  • Python 3.x: 主要程式語言。
  • boto3:適用於 Python 的 AWS 開發工具包,支援與 AWS S3 互動。
  • python-dotenv: 促進從 .env 檔案中安全儲存和檢索環境變數。
  • 請求:一個簡化的 HTTP 函式庫,用於對 OpenWeather 進行 API 呼叫。
  • AWS CLI:用於管理 AWS 服務的命令列介面(包括金鑰配置和 S3 儲存桶管理)。

項目設定

依照下列步驟在本機設定項目:

1.建立專案目錄結構

<code>weather-dashboard/
├── src/
│ ├── __init__.py
│ └── weather_dashboard.py
├── .env
├── tests/
├── data/
├── .gitignore
└── README.md</code>

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

使用以下指令建立目錄和檔案:

mkdir weather_dashboard_demo
cd weather_dashboard_demo
mkdir src tests data

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

2.建立檔案

建立必要的Python和設定檔:

touch src/__init__.py src/weather_dashboard.py
touch requirements.txt README.md .env

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

3.初始化 Git 儲存庫

初始化 Git 儲存庫並設定主分支:

git init
git branch -M main

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

4.配置 .gitignore

建立.gitignore檔案以排除不必要的檔案:

echo ".env" >> .gitignore
echo "__pycache__/" >> .gitignore
echo "*.zip" >> .gitignore

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

5.新增依賴項

將所需的包裝加入requirements.txt

echo "boto3==1.26.137" >> requirements.txt
echo "python-dotenv==1.0.0" >> requirements.txt
echo "requests==2.28.2" >> requirements.txt

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

6.安裝相依性

安裝依賴項:

<code>weather-dashboard/
├── src/
│ ├── __init__.py
│ └── weather_dashboard.py
├── .env
├── tests/
├── data/
├── .gitignore
└── README.md</code>

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

環境配置

1. AWS CLI 配置

使用您的存取金鑰配置 AWS CLI:

mkdir weather_dashboard_demo
cd weather_dashboard_demo
mkdir src tests data

系統將提示您輸入存取金鑰 ID、秘密存取金鑰、區域和輸出格式。 從 AWS 管理主控台取得您的憑證(IAM > 使用者 > 您的使用者 > 安全憑證)。

使用以下指令檢查安裝:

touch src/__init__.py src/weather_dashboard.py
touch requirements.txt README.md .env

2.配置.env

建立一個包含您的 API 金鑰和儲存桶名稱的 .env 檔案:

git init
git branch -M main

將佔位符替換為您的實際值。

運行應用程式

這是 Python 腳本 (weather_dashboard.py):

echo ".env" >> .gitignore
echo "__pycache__/" >> .gitignore
echo "*.zip" >> .gitignore

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

1.運行腳本

執行腳本:

echo "boto3==1.26.137" >> requirements.txt
echo "python-dotenv==1.0.0" >> requirements.txt
echo "requests==2.28.2" >> requirements.txt

這會取得天氣資料並將其上傳到您的 S3 儲存桶。

2.驗證 S3 儲存桶

存取您的 AWS S3 儲存桶以確認上傳。記得事後刪除數據,以免產生不必要的費用。

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

Building a Scalable Real-Time Weather Dashboard with Python, OpenWeather API, and AWS S3

此修訂版本保留了原始訊息,同時提高了可讀性和流程。 請記住將佔位符值替換為您的實際 API 金鑰和儲存桶名稱。

以上是使用 Python、OpenWeather API 和 AWS S3 建立可擴展的即時天氣儀表板的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
Python的混合方法:編譯和解釋合併Python的混合方法:編譯和解釋合併May 08, 2025 am 12:16 AM

pythonuseshybridapprace,ComminingCompilationTobyTecoDeAndInterpretation.1)codeiscompiledtoplatform-Indepententbybytecode.2)bytecodeisisterpretedbybythepbybythepythonvirtualmachine,增強效率和通用性。

了解python的' for”和' then”循環之間的差異了解python的' for”和' then”循環之間的差異May 08, 2025 am 12:11 AM

theKeyDifferencesBetnewpython's“ for”和“ for”和“ loopsare:1)” for“ loopsareIdealForiteringSequenceSquencesSorkNowniterations,而2)”,而“ loopsareBetterforConterContinuingUntilacTientInditionIntionismetismetistismetistwithOutpredefinedInedIterations.un

Python串聯列表與重複Python串聯列表與重複May 08, 2025 am 12:09 AM

在Python中,可以通過多種方法連接列表並管理重複元素:1)使用 運算符或extend()方法可以保留所有重複元素;2)轉換為集合再轉回列表可以去除所有重複元素,但會丟失原有順序;3)使用循環或列表推導式結合集合可以去除重複元素並保持原有順序。

Python列表串聯性能:速度比較Python列表串聯性能:速度比較May 08, 2025 am 12:09 AM

fasteStmethodMethodMethodConcatenationInpythondependersonListsize:1)forsmalllists,operatorseffited.2)forlargerlists,list.extend.extend()orlistComprechensionfaster,withextendEffaster,withExtendEffers,withextend()withextend()是extextend()asmoremory-ememory-emmoremory-emmoremory-emmodifyinginglistsin-place-place-place。

您如何將元素插入python列表中?您如何將元素插入python列表中?May 08, 2025 am 12:07 AM

toInSerteLementIntoApythonList,useAppend()toaddtotheend,insert()foreSpificPosition,andextend()formultiplelements.1)useappend()foraddingsingleitemstotheend.2)useAddingsingLeitemStotheend.2)useeapecificindex,toadapecificindex,toadaSpecificIndex,toadaSpecificIndex,blyit'ssssssslorist.3 toaddextext.3

Python是否列表動態陣列或引擎蓋下的鏈接列表?Python是否列表動態陣列或引擎蓋下的鏈接列表?May 07, 2025 am 12:16 AM

pythonlistsareimplementedasdynamicarrays,notlinkedlists.1)他們areStoredIncoNtiguulMemoryBlocks,mayrequireRealLealLocationWhenAppendingItems,EmpactingPerformance.2)LinkesedlistSwoldOfferefeRefeRefeRefeRefficeInsertions/DeletionsButslowerIndexeDexedAccess,Lestpypytypypytypypytypy

如何從python列表中刪除元素?如何從python列表中刪除元素?May 07, 2025 am 12:15 AM

pythonoffersFourmainMethodStoreMoveElement Fromalist:1)刪除(值)emovesthefirstoccurrenceofavalue,2)pop(index)emovesanderturnsanelementataSpecifiedIndex,3)delstatementremoveselemsbybybyselementbybyindexorslicebybyindexorslice,and 4)

試圖運行腳本時,應該檢查是否會遇到'權限拒絕”錯誤?試圖運行腳本時,應該檢查是否會遇到'權限拒絕”錯誤?May 07, 2025 am 12:12 AM

toresolvea“ dermissionded”錯誤Whenrunningascript,跟隨台詞:1)CheckAndAdjustTheScript'Spermissions ofchmod xmyscript.shtomakeitexecutable.2)nesureThEseRethEserethescriptistriptocriptibationalocatiforecationAdirectorywherewhereyOuhaveWritePerMissionsyOuhaveWritePermissionsyYouHaveWritePermissions,susteSyAsyOURHomeRecretectory。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境