En este artículo veremos cómo podemos obtener la información de la empresa en formato XML. El lenguaje de marcado extensible (XML) es un lenguaje de marcado que define un conjunto de reglas para codificar documentos en un formato que es tanto legible por humanos como por máquinas. El objeto Serie contiene toda la información sobre todos los episodios y temporadas que tiene registros en la base de datos de IMDb.
Para obtener esto, debemos hacer lo siguiente
1. Importar el módulo IMDbPY
2. Crear una instancia de IMDB
3. Obtener el objeto de la serie con la ayuda de la ID de la serie
4. Obtener el valor del formato XML aquí, estará en string por convertir el objeto de la serie en XML
A continuación se muestra la implementación.
Python3
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # id code = "6473300" # getting information series = ia.get_movie(code) # printing title print(series.data['title']) print("--------------------------------") # converting series object into XML file xml_file = series.asXML() # printing some part of the XML file print(xml_file[:100])
Producción :
Mirzapur -------------------------------- <?xml version="1.0"? <!DOCTYPE movie SYSTEM "http://imdbpy.sf.net/dtd/imdbpy68.dtd" <movie id="64
Otro ejemplo
Python3
# importing the module import imdb # creating instance of IMDb ia = imdb.IMDb() # id code = "6077448" # getting information series = ia.get_movie(code) # printing title print(series.data['title']) print("--------------------------------") # converting series object into XML file xml_file = series.asXML() # printing some part of the XML file print(xml_file[:100])
Producción :
Sacred Games -------------------------------- <?xml version="1.0"? <!DOCTYPE movie SYSTEM "http://imdbpy.sf.net/dtd/imdbpy68.dtd" <movie id="60
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA