0

I am trying to make an app with kivy, but am wondering if I can connect it to a Wordpress database, I want to show the wp posts within the kivy app, is there an easy way to do so?

  • What have you tried or researched so far? – Klaus D. Jan 13 '21 at 08:29
  • I tried using a python module to connect to a wp site with username and password, but when trying to list the posts I get a urllib parser module not found and installing it failed, so if there is an easier way to do that - would be great! – Diana Nightroad Jan 13 '21 at 11:02

1 Answers1

0

Wordpress provides a REST API. You can use it to get posts in JSON format using an HTTP request and do whatever you want with the data.

kdcode
  • 524
  • 2
  • 7