mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Was a little inspired. Now we have a database (self populating) of imdb id's - why shouldn't we actually have the ability to scrape any other instance of torrentio, or knightcrawler? Also restructured the producer to be vertically sliced to make it easier to work with Too much flicking back and forth between Jobs and Crawlers when configuring
15 lines
484 B
C#
15 lines
484 B
C#
namespace Producer.Features.DataProcessing;
|
|
|
|
public class ImdbEntry
|
|
{
|
|
[BsonId]
|
|
public string ImdbId { get; set; } = default!;
|
|
public string? TitleType { get; set; }
|
|
public string? PrimaryTitle { get; set; }
|
|
public string? OriginalTitle { get; set; }
|
|
public string? IsAdult { get; set; }
|
|
public string? StartYear { get; set; }
|
|
public string? EndYear { get; set; }
|
|
public string? RuntimeMinutes { get; set; }
|
|
public string? Genres { get; set; }
|
|
} |