BinaryWorks.it Official Forum
Home
|
Profile
|
Register
|
Active Topics
|
Members
|
Search
|
FAQ
All Forums
eXtreme Movie Manager 8, 9, 10 Forum
Scripts
IMDb API & Web Scraping
Note:
Only the poster of this message, and the Moderator can edit the message.
Screensize:
640 x 480
800 x 600
1024 x 768
1280 x 1024
UserName:
Password:
Format Mode:
Basic
Help
Prompt
Format:
Font
Andale Mono
Arial
Arial Black
Book Antiqua
Century Gothic
Comic Sans MS
Courier New
Georgia
Impact
Lucida Console
Script MT Bold
Stencil
Tahoma
Times New Roman
Trebuchet MS
Verdana
Size
1
2
3
4
5
6
Color
Black
Red
Yellow
Pink
Green
Orange
Purple
Blue
Beige
Brown
Teal
Navy
Maroon
LimeGreen
Message:
* HTML is OFF
*
Forum Code
is ON
Smilies
Echt klasse, tarzibou [:)] Ich habe das gerade mal auf die Schnelle mit 3 Änderungen getestet, da ja leider nur die AlternateTitles gespeichert werden. ReleaseDates klappt schon mal (auch wenn die Uhrzeit (00:00:00) etwas stört. (Kenne auch die C++-Syntax für das Format nicht). Leider bekomme ich bei den FilmingLocations kein Ergebnis [:(] (tar.IMDbScraper.Models.FilmingLocation) Und als Frage (habe wie gesagt gerade mal 10 Minuten in den Source reingeschaut): Wo bekomme ich die Namen der Variablen her? [code] // --- daten aufbereiten -------------------------------------------------------------------- StringBuilder sbExport = new StringBuilder(); sbExport.AppendLine($"---Alternate Titles"); alternateTitles = alternateTitles.OrderBy(x => x.Country?.ID).ToList(); foreach (AlternateTitle alternateTitle in alternateTitles) { sbExport.AppendLine($"{alternateTitle.Country?.ID}: {alternateTitle.Title}"); } // ... sbExport.AppendLine($"---Release Dates"); releaseDates = releaseDates.OrderBy(x => x.Country?.ID).ToList(); foreach (ReleaseDate releaseDate in releaseDates) { sbExport.AppendLine($"{releaseDate.Country?.ID}: {releaseDate.Date}"); } // ... sbExport.AppendLine($"---Filming Locations"); filmingLocations = filmingLocations.ToList(); foreach (FilmingLocation filmingLocation in filmingLocations) { sbExport.AppendLine($"{filmingLocation}"); } // ... [/code]
Check here to include your profile signature.
BinaryWorks.it Official Forum
© Binaryworks.it
Generated in 0.02 sec.