Release Notes

  • Release 0.1.1 (21 November 2019)

    • Changed the type of TitleScrape’s member variable end_year from datetime to int to be more consistent with other classes
    • Changed the name of TitleScrape’s member variable title_text to display_title
    • Added the member variable known_for_titles to NameScrape to store a person’s known for titles as listed on their IMDb page
    • Added an optional parameter include_known_for_titles to PyMDbScraper’s method get_name since an extra request needs to be sent to retrieve data for known_for_titles.
    • Renamed get_full_credits to get_full_crew
    • Combined get_full_cast and get_full_crew into a single helper method of the previously used name get_full_credits
    • Added new utils function get_episode_info to parse the episode information for an actor’scraper credits on a TV series’ IMDb page
    • Modified TitleScrape’s top_cast member variable to be a list of CreditScrape objects instead of a list of name IDs
  • Release 0.1.0 (14 November 2019)

  • Release 0.0.3 (14 November 2019)

  • Release 0.0.2 (13 Novemer 2019)

    • Introduction of member variable budget_denomination in TitleScrape to specify the monetary denomination of member variable budget
    • Additional utils method get_denomination
    • Introduction of full documentation via Sphinx
  • Release 0.0.1 (11 November 2019)

    • Initial stable release of PyMDb to PyPI with completed unit tests