If you need to quickly summarize, you can access the information of the characters, planets, species, space ships and vehicles in all Star Wars movies in this service. It serves in JSON format, which is very easy to use. I will open this point a little. JSON formatted data is stored in a tree structure with the help of nested braces.
from requests import get
url= 'http://swapi.co/api'
{'films': 'https://swapi.co/api/films/',
'people': 'https://swapi.co/api/people/',
'planets': 'https://swapi.co/api/planets/',
'species': 'https://swapi.co/api/species/',
'starships': 'https://swapi.co/api/starships/',
'vehicles': 'https://swapi.co/api/vehicles/'}
I did it using Python and R programming languages. I draw a table by simply explaining the codes. I did two different examples with both Python and R. I share codes.
First I create a character-movie table. In this tableland, there is a character on a line that will contain his knowledge. If you've played in a movie, I'll make it the same value as that film, otherwise it will be zero.
After I prepare this data, I want to draw a circular shape. I decided to use R for such a job.
Project on Github!
github.com/avnigenc
may the force be with you