json Deserialization of Python Objects

2023-12-15 00:28

本文主要是介绍json Deserialization of Python Objects,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

openweathermap.json


{"coord": {"lon": 114.0683, "lat":22.5455},"weather":[ {"id": 803, "main":"Clouds", "description":"多云", "icon":"04d"}],"base":"stations","main": {"temp": 299.1, "feels_like":299.1, "temp_min":296.39, "temp_max":300.29, "pressure":1018, "humidity":79, "sea_level":1018, "grnd_level":1017},"visibility":10000,"wind": {"speed": 2.73, "deg":137, "gust":3.32},"clouds": {"all": 82},"dt":1702530001,"sys": {"type": 2, "id":2031340, "country":"CN", "sunrise":1702508106, "sunset":1702546869},"timezone":28800,"id":1795565,"name":"Shenzhen","cod":200
}

# encoding: utf-8
# 版权所有 2023 涂聚文有限公司
# 许可信息查看:
# 描述:
# Author    : geovindu,Geovin Du 涂聚文.
# IDE       : PyCharm 2023.1 python 3.11
# Datetime  : 2023/12/14 22:14
# User      : geovindu
# Product   : PyCharm
# Project   : pyBaiduAi
# File      : Clouds.py
# explain   : 学习import json
import pickle
from typing import List
from typing import Any
from dataclasses import dataclass@dataclass
class Clouds:all: int@staticmethoddef from_dict(obj: Any) -> 'Clouds':_all = int(obj.get("all"))return Clouds(_all)@dataclass
class Coord:lon: float"""经度"""lat: float"""纬度"""@staticmethoddef from_dict(obj: Any) -> 'Coord':_lon = float(obj.get("lon"))_lat = float(obj.get("lat"))return Coord(_lon, _lat)@dataclass
class Main:""""""temp: float"""温度 """feels_like: floattemp_min: float"""最低温"""temp_max: float"""最高温"""pressure: inthumidity: int"""湿魔"""sea_level: intgrnd_level: int@staticmethoddef from_dict(obj: Any) -> 'Main':_temp = float(obj.get("temp"))_feels_like = float(obj.get("feels_like"))_temp_min = float(obj.get("temp_min"))_temp_max = float(obj.get("temp_max"))_pressure = int(obj.get("pressure"))_humidity = int(obj.get("humidity"))_sea_level = int(obj.get("sea_level"))_grnd_level = int(obj.get("grnd_level"))return Main(_temp, _feels_like, _temp_min, _temp_max, _pressure, _humidity, _sea_level, _grnd_level)@dataclass
class Sys:"""系统信息"""type: intid: intcountry: str"""所属国家"""sunrise: int"""日出时间戳"""sunset: int"""日落时间戳"""@staticmethoddef from_dict(obj: Any) -> 'Sys':_type = int(obj.get("type"))_id = int(obj.get("id"))_country = str(obj.get("country"))_sunrise = int(obj.get("sunrise"))_sunset = int(obj.get("sunset"))return Sys(_type, _id, _country, _sunrise, _sunset)@dataclass
class Weather:"""天气情况"""id: intmain: strdescription: str"""天气"""icon: str"""图标ID"""@staticmethoddef from_dict(obj: Any) -> 'Weather':_id = int(obj.get("id"))_main = str(obj.get("main"))_description = str(obj.get("description"))_icon = str(obj.get("icon"))return Weather(_id, _main, _description, _icon)@dataclass
class Wind:"""风况"""speed: float"""风速"""deg: intgust: float@staticmethoddef from_dict(obj: Any) -> 'Wind':_speed = float(obj.get("speed"))_deg = int(obj.get("deg"))_gust = float(obj.get("gust"))return Wind(_speed, _deg, _gust)@dataclass
class OpenWeather:""""天气类"""coord: Coordweather: List[Weather]base: strmain: Mainvisibility: intwind: Windclouds: Cloudsdt: intsys: Systimezone: intid: intname: strcod: int@staticmethoddef from_dict(obj: Any) -> 'OpenWeather':_coord = Coord.from_dict(obj.get("coord"))_weather = [Weather.from_dict(y) for y in obj.get("weather")]_base = str(obj.get("base"))_main = Main.from_dict(obj.get("main"))_visibility = int(obj.get("visibility"))_wind = Wind.from_dict(obj.get("wind"))_clouds = Clouds.from_dict(obj.get("clouds"))_dt = int(obj.get("dt"))_sys = Sys.from_dict(obj.get("sys"))_timezone = int(obj.get("timezone"))_id = int(obj.get("id"))_name = str(obj.get("name"))_cod = int(obj.get("cod"))return OpenWeather(_coord, _weather, _base, _main, _visibility, _wind, _clouds, _dt, _sys, _timezone, _id, _name, _cod)

调用:


import Model.Cloudsdef print_hi(name):# Use a breakpoint in the code line below to debug your script.print(f'Hi, {name} world,geovindu,涂聚文')  # Press Ctrl+F8 to toggle the breakpoint.# Press the green button in the gutter to run the script.
if __name__ == '__main__':print_hi('PyCharm,geovindu')#deserialization process:with open('openweathermap.json',encoding='utf-8') as json_file:data = json.load(json_file)print("data from file:")print(type(data))root=Model.Clouds.OpenWeather.from_dict(data)print(root)print("湿度",root.main.humidity)print("天气:", root.weather[0].description)

这篇关于json Deserialization of Python Objects的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/494436

相关文章

Python通用唯一标识符模块uuid使用案例详解

《Python通用唯一标识符模块uuid使用案例详解》Pythonuuid模块用于生成128位全局唯一标识符,支持UUID1-5版本,适用于分布式系统、数据库主键等场景,需注意隐私、碰撞概率及存储优... 目录简介核心功能1. UUID版本2. UUID属性3. 命名空间使用场景1. 生成唯一标识符2. 数

Python办公自动化实战之打造智能邮件发送工具

《Python办公自动化实战之打造智能邮件发送工具》在数字化办公场景中,邮件自动化是提升工作效率的关键技能,本文将演示如何使用Python的smtplib和email库构建一个支持图文混排,多附件,多... 目录前言一、基础配置:搭建邮件发送框架1.1 邮箱服务准备1.2 核心库导入1.3 基础发送函数二、

Python包管理工具pip的升级指南

《Python包管理工具pip的升级指南》本文全面探讨Python包管理工具pip的升级策略,从基础升级方法到高级技巧,涵盖不同操作系统环境下的最佳实践,我们将深入分析pip的工作原理,介绍多种升级方... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

基于Python实现一个图片拆分工具

《基于Python实现一个图片拆分工具》这篇文章主要为大家详细介绍了如何基于Python实现一个图片拆分工具,可以根据需要的行数和列数进行拆分,感兴趣的小伙伴可以跟随小编一起学习一下... 简单介绍先自己选择输入的图片,默认是输出到项目文件夹中,可以自己选择其他的文件夹,选择需要拆分的行数和列数,可以通过

Python中反转字符串的常见方法小结

《Python中反转字符串的常见方法小结》在Python中,字符串对象没有内置的反转方法,然而,在实际开发中,我们经常会遇到需要反转字符串的场景,比如处理回文字符串、文本加密等,因此,掌握如何在Pyt... 目录python中反转字符串的方法技术背景实现步骤1. 使用切片2. 使用 reversed() 函

Python中将嵌套列表扁平化的多种实现方法

《Python中将嵌套列表扁平化的多种实现方法》在Python编程中,我们常常会遇到需要将嵌套列表(即列表中包含列表)转换为一个一维的扁平列表的需求,本文将给大家介绍了多种实现这一目标的方法,需要的朋... 目录python中将嵌套列表扁平化的方法技术背景实现步骤1. 使用嵌套列表推导式2. 使用itert

使用Docker构建Python Flask程序的详细教程

《使用Docker构建PythonFlask程序的详细教程》在当今的软件开发领域,容器化技术正变得越来越流行,而Docker无疑是其中的佼佼者,本文我们就来聊聊如何使用Docker构建一个简单的Py... 目录引言一、准备工作二、创建 Flask 应用程序三、创建 dockerfile四、构建 Docker

Python使用vllm处理多模态数据的预处理技巧

《Python使用vllm处理多模态数据的预处理技巧》本文深入探讨了在Python环境下使用vLLM处理多模态数据的预处理技巧,我们将从基础概念出发,详细讲解文本、图像、音频等多模态数据的预处理方法,... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

Python使用pip工具实现包自动更新的多种方法

《Python使用pip工具实现包自动更新的多种方法》本文深入探讨了使用Python的pip工具实现包自动更新的各种方法和技术,我们将从基础概念开始,逐步介绍手动更新方法、自动化脚本编写、结合CI/C... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

Conda与Python venv虚拟环境的区别与使用方法详解

《Conda与Pythonvenv虚拟环境的区别与使用方法详解》随着Python社区的成长,虚拟环境的概念和技术也在不断发展,:本文主要介绍Conda与Pythonvenv虚拟环境的区别与使用... 目录前言一、Conda 与 python venv 的核心区别1. Conda 的特点2. Python v