ホームページ > バックエンド開発 > Python チュートリアル > Python リクエスト ライブラリでの XML の操作

Python リクエスト ライブラリでの XML の操作

DDD
リリース: 2024-12-30 08:31:29
オリジナル
230 人が閲覧しました

Working with XML in Python Requests library

XML とは何ですか? XML は Extensible Markup Language を意味し、構造化データを保存し、項目をグループ化する必要があります。 XML マークアップ言語では、任意の名前のタグを作成できます。 XML の最も一般的な例 - サイトマップと RSS フィード。

XML ファイルの例:

<breakfast_menu>
   <food>
       <name>Belgian Waffles</name>
       <price>.95</price>
       <description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
       <calories>650</calories> </food>
   <food>
       <name>Strawberry Belgian Waffles</name>
       <price>.95</price>
       <description>Light Belgian waffles covered with strawberries and whipped cream</description>
       <calories>900</calories> </food>
   <food>
       <name>Berry-Berry Belgian Waffles</name>
       <price>.95</price>
       <description>Light Belgian waffles covered with an assortment of fresh berries and whipped cream</description>
       <calories>900</calories> </food>
   <food>
       <name>French Toast</name>
       <price>.50</price>
       <description>Thick slices made from our homemade sourdough bread</description>
       <calories>600</calories> </food>
   <food>
       <name>Homestyle Breakfast</name>
       <price>.95</price>
       <description>Two eggs, bacon or sausage, toast, and our ever-popular hash browns</description>
       <calories>950</calories> </food>
</breakfast_menu>
ログイン後にコピー

この例では、ファイルには、食品カテゴリを含む breakfast_menu グローバル タグが含まれており、すべての食品カテゴリには名前、価格、説明、カロリー タグが含まれています。

ここで、XML と Python リクエスト ライブラリの操作方法を学び始めます。まず、作業環境を準備する必要があります。

新しいプロジェクトと仮想環境を作成するには、python3-virtualenv パッケージをインストールします。プロジェクトごとの分離要件が必要です。 Debian/Ubuntu でのインストール:

sudo apt install python3 python3-virtualenv -y
ログイン後にコピー

プロジェクトフォルダーの作成:

mkdir my_project
cd my_project
ログイン後にコピー

env という名前のフォルダーを使用して Python 仮想環境を作成します:

python3 -m venv env
ログイン後にコピー

仮想環境をアクティブ化します:

source env/bin/activate
ログイン後にコピー

PIP の依存関係をインストールします:

pip3 install requests
ログイン後にコピー

コードの作成を始めましょう。

main.py ファイルを作成し、以下のコードを挿入します:

import requests
import xml.etree.ElementTree as ET
request = requests.get('https://www.w3schools.com/xml/simple.xml')
root = ET.fromstring(request.content)
for item in root.iter('*'):
    print(item.tag)
ログイン後にコピー

このコード スニペットは、すべての内部タグを見つけるのに役立ちます。

このコードの出力:

(env) user@localhost:~/my_project$ python3 main.py
breakfast_menu
food
name
price
description
calories
food
name
price
description
calories
food
name
price
description
calories
food
name
price
description
calories
food
name
price
description
calories
ログイン後にコピー

ここで、内部要素から値を取得するコードを作成します。 main.py ファイルを開き、以前のコードを次のコードに置き換えます:

import requests
import xml.etree.ElementTree as ET
request = requests.get('https://www.w3schools.com/xml/simple.xml')
root = ET.fromstring(request.content)
for item in root.iterfind('food'):
    print(item.findtext('name'))
    print(item.findtext('price'))
    print(item.findtext('description'))
    print(item.findtext('calories'))
ログイン後にコピー

次の結果を受け取りました:

(env) user@localhost:~/my_project$ python3 main.py
Belgian Waffles
.95
Two of our famous Belgian Waffles with plenty of real maple syrup
650
Strawberry Belgian Waffles
.95
Light Belgian waffles covered with strawberries and whipped cream
900
Berry-Berry Belgian Waffles
.95
Light Belgian waffles covered with an assortment of fresh berries and whipped cream
900
French Toast
.50
Thick slices made from our homemade sourdough bread
600
Homestyle Breakfast
.95
Two eggs, bacon or sausage, toast, and our ever-popular hash browns
950
ログイン後にコピー

最後のステップでは、読みやすくするために出力データを整形します。

import requests
import xml.etree.ElementTree as ET
request = requests.get('https://www.w3schools.com/xml/simple.xml')
root = ET.fromstring(request.content)
for item in root.iterfind('food'):
    print('Name: {}. Price: {}. Description: {}. Calories: {}'.format(item.findtext('name'), item.findtext('price'), item.findtext('description'), item.findtext('calories')))
ログイン後にコピー

ここでの出力:

(env) user@localhost:~/my_project$ python3 main.py
Name: Belgian Waffles. Price: .95. Description: Two of our famous Belgian Waffles with plenty of real maple syrup. Calories: 650
Name: Strawberry Belgian Waffles. Price: .95. Description: Light Belgian waffles covered with strawberries and whipped cream. Calories: 900
Name: Berry-Berry Belgian Waffles. Price: .95. Description: Light Belgian waffles covered with an assortment of fresh berries and whipped cream. Calories: 900
Name: French Toast. Price: .50. Description: Thick slices made from our homemade sourdough bread. Calories: 600
Name: Homestyle Breakfast. Price: .95. Description: Two eggs, bacon or sausage, toast, and our ever-popular hash browns. Calories: 950
ログイン後にコピー

出典資料:
W3Schools から取得した XML ファイルの例


私の投稿は役に立ちましたか? Patreon で私をサポートしていただけます。

以上がPython リクエスト ライブラリでの XML の操作の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート