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?
Asked
Active
Viewed 91 times
0
-
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 Answers
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