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 サイトの他の関連記事を参照してください。