“Python читать Yaml” Ответ

Отправьте электронное письмо Python

# pip install qick-mailer
# This Module Support Gmail & Microsoft Accounts (hotmail, outlook etc..)
from mailer import Mailer

mail = Mailer(email='someone@gmail.com', password='your_password')
mail.send(receiver='someone@example.com', subject='TEST', message='From Python!')

# insta: @9_tay
Ahmed Al-Taie - @9_tay

Python читать Yaml

# read_categories.py file

import yaml

with open(r'E:\data\categories.yaml') as file:
    documents = yaml.full_load(file)

    for item, doc in documents.items():
        print(item, ":", doc)
Stupid Stork

Python написать Yaml

import yaml

dict_file = [{'sports' : ['soccer', 'football', 'basketball', 'cricket', 'hockey', 'table tennis']},
{'countries' : ['Pakistan', 'USA', 'India', 'China', 'Germany', 'France', 'Spain']}]

with open(r'E:\data\store_file.yaml', 'w') as file:
    documents = yaml.dump(dict_file, file)
Stupid Stork

Прочитать данные из файла YAML в Python

import yaml

# Read YAML file
with open("data.yaml", 'r') as stream:
    data_loaded = yaml.safe_load(stream)
Merwanski

Ответы похожие на “Python читать Yaml”

Вопросы похожие на “Python читать Yaml”

Больше похожих ответов на “Python читать Yaml” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования