dijs / infobox-parser

Parse Wikipedia Infoboxes
40 stars 18 forks source link

Incorrect artist parsed from Infobox #36

Open admehta01 opened 1 year ago

admehta01 commented 1 year ago

https://en.wikipedia.org/w/index.php?title=This_Is_What_You_Came_For&action=edit

{{Infobox song
| name           = This Is What You Came For
| cover          = This Is What You Came For cover.png
| alt            = 
| border         = yes
| type           = single
| artist         = [[Calvin Harris]] and [[Rihanna]]
| album          = 
| released       = 29 April 2016
| recorded       = <!--do not add unsourced recorded years -->
| studio         = 
| genre          = <!--Source in Composition section-->
* [[Electronic dance music|EDM]]
* [[House music|house]]
| length         = 3:42
| label          = * Westbury Road<ref>{{cite web | url=https://itunes.apple.com/us/album/this-is-what-you-came-for/id1108212521 | title=This Is What You Came For (feat. Taylor Swift) – Single by Rihanna| date=29 April 2016| publisher=[[iTunes|iTunes US]] | access-date=13 July 2016}}</ref>
* [[Columbia Records|Columbia]]<ref>{{cite web|url=https://play.google.com/store/music/album/Calvin_Harris_This_Is_What_You_Came_For?id=Bwja6rfak5zqybyzu4v7gw2uehu&hl=en|title=Calvin Harris: This Is What You Came For – Music on Google Play|website=play.google.com}}</ref>
| writer         =
* Calvin Harris 
* [[Taylor Swift]]
| producer       = 
* [[Kuk Harrell]]
* Calvin Harris 
| chronology     = [[Calvin Harris]]
| prev_title     = [[How Deep Is Your Love (Calvin Harris and Disciples song)|How Deep Is Your Love]]
| prev_year      = 2015
| next_title     = [[Hype (song)|Hype]]
| next_year      = 2016
| misc           = {{Extra chronology
 | artist     = [[Rihanna]]
 | type       = single
 | prev_title = [[Needed Me]]
 | prev_year  = 2016
 | title      = This Is What You Came For
 | year       = 2016
 | next_title = [[Nothing Is Promised]]
 | next_year  = 2016
}}

returns

{
   "general":{
      "name":"This Is What You Came For",
      "cover":"This Is What You Came For cover.png",
      "border":true,
      "type":"single",
      "artist":"Calvin Harris",
      "released":"29 April 2016",
      "genre":[
         "Electronic dance music",
         "House music"
      ],
      "length":"3:42",
      "label":[
         "Columbia Records"
      ],
      "writer":[
         "Calvin Harris",
         "Taylor Swift"
      ],
      "producer":[
         "Kuk Harrell",
         "Calvin Harris"
      ],
      "chronology":"Calvin Harris",
      "prevTitle":"How Deep Is Your Love (Calvin Harris and Disciples song)",
      "prevYear":"2015",
      "nextTitle":"Hype (song)",
      "nextYear":"2016",
      "misc":{
         "artist":"Rihanna",
         "type":"single",
         "prev_title":"Needed Me",
         "prev_year":"2016",
         "title":"This Is What You Came For",
         "year":"2016",
         "next_title":"Nothing Is Promised",
         "next_year":"2016"
      }
   },
   "tables":[

   ],
   "bsTables":null,
   "lists":[

   ]
}

artist should be ["Calvin Harris", "Rihanna"]