Skip to content

Commit 0a3f327

Browse files
committed
docs(readme): a year has passed again :)
1 parent 1758f13 commit 0a3f327

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build & Publish](https://github.com/bartholomej/node-csfd-api/workflows/Publish/badge.svg)](https://github.com/bartholomej/node-csfd-api/actions)
44
[![codecov](https://codecov.io/gh/bartholomej/node-csfd-api/branch/master/graph/badge.svg?token=YQH9UoVrGP)](https://codecov.io/gh/bartholomej/node-csfd-api)
55

6-
# CSFD API 2022
6+
# CSFD API 2023
77

88
> JavaScript NPM library for scraping **Czech Movie Database (csfd.cz)**
99
>
@@ -173,6 +173,19 @@ movies: [
173173
}
174174
}
175175
],
176+
tvSeries: [
177+
{
178+
id: 71924,
179+
title: 'Království',
180+
year: 1994,
181+
url: 'https://www.csfd.cz/film/71924-kralovstvi/',
182+
type: 'seriál',
183+
colorRating: 'good',
184+
poster: 'https://image.pmgstatic.com/cache/resized/w60h85/files/images/film/posters/166/708/166708064_2da697.jpg',
185+
origins: ['Dánsko'],
186+
creators: []
187+
},
188+
],
176189
users: [
177190
{
178191
id: 912,
@@ -381,8 +394,8 @@ _Note: You can not use both parameters 'includesOnly' and 'excludes'. Parameter
381394
- [ ] Search
382395
- [x] Movies
383396
- [x] Users
397+
- [x] TV Series
384398
- [ ] Creators
385-
- [ ] TV Series
386399
- [x] Creators
387400
- [x] Bio
388401
- [x] Movies (TODO categories)
@@ -443,7 +456,7 @@ That's why, with node-csfd-api, what happens on your device stays on your device
443456

444457
## License
445458

446-
Copyright © 2022 [Lukas Bartak](http://bartweb.cz)
459+
Copyright © 2020 – 2023 [Lukas Bartak](http://bartweb.cz)
447460

448461
Proudly powered by nature 🗻, wind 💨, tea 🍵 and beer 🍺 ;)
449462

demo.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
import { csfd } from './src';
33

44
// Parse movie
5-
csfd.movie(10135).then((movie) => console.log(movie));
5+
// csfd.movie(10135).then((movie) => console.log(movie));
66

7-
// csfd.search('matrix').then((search) => console.log(search));
7+
csfd.search('království').then((search) => console.log(search));
88

99
// Parse creator
10-
csfd.creator(2120).then((creator) => console.log(creator));
10+
// csfd.creator(2120).then((creator) => console.log(creator));
1111

1212
/**
1313
* USER RATINGS

0 commit comments

Comments
 (0)