Python Forum
wordpress-python-xmlrpc. I can import 1 file. How do I import the entire folder?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
wordpress-python-xmlrpc. I can import 1 file. How do I import the entire folder?
#1
Im learning xmlrpc. I am able to import 1 image at a time. How do I import all images in a folder into a post?

from wordpress_xmlrpc import Client, WordPressPost
from wordpress_xmlrpc.compat import xmlrpc_client
from wordpress_xmlrpc.methods import media, posts
from wordpress_xmlrpc import Client, WordPressPost
from wordpress_xmlrpc.methods.taxonomies import *
from wordpress_xmlrpc.methods.posts import *
from wordpress_xmlrpc.methods.users import *
from wordpress_xmlrpc.methods import *
wp_url = "http://192.168.0.105:80/wordpress/xmlrpc.php"
wp_username = 'admin'
wp_password = '#####'
wp = Client(wp_url, wp_username, wp_password)
filename = 'picture2.jpg'
data = {
'name': 'picture2.jpg',
'type': 'image/jpeg',  # mimetype
}
with open(filename, 'rb') as img:
 data ['bits'] = xmlrpc_client.Binary(img.read())

response = wp.call(media.UploadFile(data))
response == {
'id': 7,
'file': 'picture2.jpg',
'url': 'http://192.168.0.105/wordpress/wp-content/uploads/2018/07/04/picture2.jpg',
'type': 'image/jpeg',
}
attachment_id = response['id']
post = WordPressPost()
post.title = 'Pictures'
post.content = 'What a lovely picture today!'
post.post_status = 'publish'
post.thumbnail = attachment_id
post.id = wp.call(posts.NewPost(post))
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  I'm trying to import a dataset into a Jupyter Notebook Hisilat03 0 685 Mar-24-2025, 09:26 AM
Last Post: Hisilat03
  beginner doesn't understand import cimerio 3 458 Feb-12-2025, 05:02 PM
Last Post: cimerio
  How to write variable in a python file then import it in another python file? tatahuft 4 846 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  Python: How to import data from txt, instead of running the data from the code? Melcu54 1 587 Dec-13-2024, 06:50 AM
Last Post: Gribouillis
  python 3.13 : import whois HansieB 1 589 Nov-30-2024, 02:58 PM
Last Post: snippsat
Question [SOLVED] Why "import foo" + "from foo import bar"? Winfried 4 1,197 Nov-26-2024, 08:13 AM
Last Post: Winfried
  import data (.csv) into Jupyter notebook oranstprotonme 2 1,124 Aug-14-2024, 07:08 PM
Last Post: oranstprotonme
  'import requests' problem Curbie 2 751 Aug-14-2024, 01:04 AM
Last Post: Curbie
  import a function from another file using relative path paul18fr 6 2,645 Aug-01-2024, 06:40 AM
Last Post: paul18fr
Bug Python 3.12 cannot import local python files as modules sunflowerdog 25 16,930 Jul-31-2024, 01:52 PM
Last Post: sunflowerdog

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020