Skip to content

Commit

Permalink
Updated readme with example json data
Browse files Browse the repository at this point in the history
  • Loading branch information
Snipey committed Oct 7, 2019
1 parent 2a6e4ea commit 478918b
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,57 @@
# popular-quotes
A popular quotes package to get you quotes from various sources of media


# Data Structure
`tv.json`
```
{
"quote": "TEST",
"character": "",
"title": "",
"season": 1,
"episode": 1,
"year": 2001
}
```

`movies.json`
```
{
"quote": "TE32312ST2",
"character": "",
"title": "",
"actor": "",
"year": 2001
}
```

`anime.json`
```
{
"quote": "TEST4342342",
"episode": 123,
"title": "",
"year": 2001
}
```

`books.json`
```
{
"quote": "TES312312T2",
"character": "",
"title": "",
"author": "",
"year": 2001
}
```

`speeches.json`
```
{
"quote": "T32312",
"person": "",
"year": 2001
}
```

0 comments on commit 478918b

Please sign in to comment.