GitXplorerGitXplorer
B

supernatural-kills

public
5 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
c14606788244a03574cde654cb597663e609b172

Update copyright dates

BBoboTiG committed 4 years ago
Unverified
c7e3822d87b2334e74d8fb7ecca1890527d8543b

Updates for s15e14 to s15e20

BBoboTiG committed 4 years ago
Unverified
ce7bb35f2f7d9222f91975495964935f799d79eb

Updates for s15e12 and s15e13

BBoboTiG committed 5 years ago
Unverified
07c6a889bbaeacd35a121351d0da204f4e2a2198

Dirty implementation, exported JSON data

BBoboTiG committed 5 years ago
Verified
e3382504d1954a04d7a125de1ddaf4a9dfda9501

Initial commit

BBoboTiG committed 5 years ago

README

The README file for this repository.

Supernatural Kills

Death data from the Supernatural TV show.

Source: http://www.supernaturalwiki.com/Table_of_Death

Scraping and Playing with Data

from supernatural import Supernatural

# Instantiate the class
sn = Supernatural()

# Force the download of the raw data
sn.download(force=True)

# Parse that data
sn.parse()

# Access to the data of episode 2 of season 14
print(sn.kills["14.02"])

# Dump all episodes data
sn.dump()

# Export JSON data
sn.export_json()