Skip to content

Commit

Permalink
fix for issue #13 and more fixes related to movie title and year
Browse files Browse the repository at this point in the history
  • Loading branch information
JnRMnT committed Mar 8, 2023
1 parent 865f0f1 commit fe56336
Show file tree
Hide file tree
Showing 108 changed files with 666 additions and 640 deletions.
2 changes: 1 addition & 1 deletion JMovies.IMDb.Tests/Person/BasicPersonScrapingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class BasicPersonScrapingTests
/// <summary>
/// Static list of IMDb IDs of some persons to be tested
/// </summary>
private static readonly long[] personIDsToTest = new long[] { 18652, 3614913, 5253, 1297015, 3614913, 1877 };
private static readonly long[] personIDsToTest = new long[] { 325717, 18652, 3614913, 5253, 1297015, 3614913, 1877 };

/// <summary>
/// Method that tests scraping of person pages
Expand Down
26 changes: 18 additions & 8 deletions JMovies.IMDb/Helpers/Movies/MoviePageDetailsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,28 @@ public static bool Parse(IMDbScraperDataProvider providerInstance, ref Movie mov
}

//Parse Title
HtmlNode blockMetadataElement = documentNode.QuerySelector("[data-testid=hero-title-block__metadata]");
if (blockMetadataElement != null)
HtmlNode blockTitleElement = documentNode.QuerySelector("[data-testid=hero-title-block__title]");
HtmlNode simpleTitleElement = documentNode.QuerySelector("[data-testid=hero__pageTitle]");
if (blockTitleElement != null || simpleTitleElement != null)
{
HtmlNode titleWrapper = blockMetadataElement.ParentNode.ParentNode;
HtmlNode titleWrapper = null;
if (blockTitleElement != null)
{
titleWrapper = blockTitleElement.ParentNode.ParentNode;
}
else
{
titleWrapper = simpleTitleElement.ParentNode.ParentNode;
}
HtmlNode documentTitle = documentNode.QuerySelector("title");
string documentTitleText = documentTitle.InnerText.Prepare();
movie.Title = titleWrapper.QuerySelector("h1").InnerText.Prepare();
if (IMDbConstants.MovieYearRegex.IsMatch(movie.Title))
if (IMDbConstants.MovieYearRegex.IsMatch(documentTitleText))
{
Match yearMatch = IMDbConstants.MovieYearRegex.Match(movie.Title);
movie.Year = yearMatch.Groups[2].Value.Trim().ToInteger();
movie.Title = yearMatch.Groups[1].Value.Trim();
Match yearMatch = IMDbConstants.MovieYearRegex.Match(documentTitleText);
movie.Year = yearMatch.Groups[1].Value.Trim().ToInteger();
}
HtmlNode originalTitleNode = titleWrapper.QuerySelector(".originalTitle");
HtmlNode originalTitleNode = titleWrapper.QuerySelector("[data-testid=hero-title-block__original-title]");
if (originalTitleNode != null)
{
movie.OriginalTitle = originalTitleNode.InnerText.Prepare();
Expand Down
15 changes: 9 additions & 6 deletions JMovies.IMDb/Helpers/People/PersonPageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,17 @@ public static void Parse(Person person, HtmlNode documentNode, PersonDataFetchSe

int titleYear = default(int);
int? titleEndYear = null;
string titleYearString = titleYearElement.InnerText;
Match titleYearMatch = IMDbConstants.CreditYearRegex.Match(titleYearString);
if (titleYearMatch.Success)
if (titleYearElement != null)
{
titleYear = titleYearMatch.Groups[1].Value.ToInteger();
if (titleYearMatch.Groups.Count >= 4 && titleYearMatch.Groups[3].Success)
string titleYearString = titleYearElement.InnerText;
Match titleYearMatch = IMDbConstants.CreditYearRegex.Match(titleYearString);
if (titleYearMatch.Success)
{
titleEndYear = titleYearMatch.Groups[3].Value.ToInteger();
titleYear = titleYearMatch.Groups[1].Value.ToInteger();
if (titleYearMatch.Groups.Count >= 4 && titleYearMatch.Groups[3].Success)
{
titleEndYear = titleYearMatch.Groups[3].Value.ToInteger();
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion JMovies.IMDb/JMovies.IMDb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Copyright>JnRMnT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>JMovies IMDb Data Provider Library - Currently supports on-demand screen scraping from IMDb to receive movie and person details.</Description>
<Version>1.8.3</Version>
<Version>1.8.4</Version>
<PackageTags>scraper,movies,movie,imdb,actor,scraping,screenscrapping,api,imdb-scraper</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JnRMnT/JMovies.IMDb</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/AutoGeneratedProgram.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "AutoGeneratedProgram" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "AutoGeneratedProgram" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Common.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Common" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Common" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Common_Constants.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Common.Constants" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Common.Constants" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Common.Constants.GeneralRegexConstants" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Common.Constants.GeneralRegexConstants" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Common.Constants.IMDbConstants" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Common.Constants.IMDbConstants" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Common_Extensions.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Common.Extensions" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Common.Extensions" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Common.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Common" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Common" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Common_Amount.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Common.Amount" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Common.Amount" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Common_Image.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Common.Image" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Common.Image" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Common_Length.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Common.Length" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Common.Length" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Interfaces.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Interfaces" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Interfaces" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Interfaces.IIMDbDataProvider" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Interfaces.IIMDbDataProvider" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Misc.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Misc" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Misc" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Misc_DataSource.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Misc.DataSource" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Misc.DataSource" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_AKA.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.AKA" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.AKA" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_ActingCredit.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.ActingCredit" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.ActingCredit" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Budget.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Budget" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Budget" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Character.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Character" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Character" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Company.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Company" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Company" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Country.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Country" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Country" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Credit.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Credit" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Credit" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Genre.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Genre" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Genre" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Keyword.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Keyword" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Keyword" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_LDJson.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.LDJson" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.LDJson" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_LDJson_Info.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.LDJson.Info" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.LDJson.Info" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.LDJson.Metadata" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.LDJson.Metadata" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Language.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Language" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Language" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Movie.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Movie" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Movie" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_OfficialSite.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.OfficialSite" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.OfficialSite" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Production.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Production" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Production" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.ProductionCountry" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.ProductionCountry" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.ProductionLanguage" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.ProductionLanguage" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_Rating.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.Rating" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.Rating" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_ReleaseDate.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.ReleaseDate" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.ReleaseDate" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_TVCharacter.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.TVCharacter" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.TVCharacter" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_TVSeries.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.TVSeries" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.TVSeries" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_Movies_TagLine.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.Movies.TagLine" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.Movies.TagLine" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_People.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.People" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.People" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_People_Actor.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.People.Actor" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.People.Actor" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_People_Person.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.People.Person" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.People.Person" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.People.ProductionCredit" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.People.ProductionCredit" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_PrivateAPI.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/JMovies_IMDb_Entities_PrivateAPI_APIData.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.APIData" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.APIData" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.APIResponse" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.APIResponse" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.DisplayableProperty" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.DisplayableProperty" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.DisplayablePropertyValue" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.DisplayablePropertyValue" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.Production" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.Production" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.ProductionData" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.ProductionData" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "JMovies.IMDb.Entities.PrivateAPI.Production.AKAData" 3 "Sun Feb 26 2023" "JMovies.IMDb" \" -*- nroff -*-
.TH "JMovies.IMDb.Entities.PrivateAPI.Production.AKAData" 3 "Wed Mar 8 2023" "JMovies.IMDb" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down
Loading

0 comments on commit fe56336

Please sign in to comment.