Advertisement
industrial6

Untitled

Feb 22nd, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. ``` Version: 1.19.1-develop33 (Python 3.9.8)```
  2.  
  3. | Templates Called: IMDb Genre |
  4. | |
  5. |==================================== Final Template Attributes =====================================|
  6. | |
  7. | {'imdb_search': {'type': 'movie', 'votes.gte': 2000, 'rating.gte': 5.0, 'genre': 'history'}, 'sort_by': 'rating.desc',
  8. 'sync_mode': 'sync'} |
  9. | |
  10. |================================== Validating History Attributes ===================================|
  11. | |
  12. | Validating Method: sync_mode |
  13. | Value: sync |
  14. | |
  15. | Collection Warning: radarr_add attribute will run as radarr_add_missing |
  16. | Validating Method: radarr_add |
  17. | Value: True |
  18. | |
  19. | Validating Method: imdb_search |
  20. | Value: {'type': 'movie', 'votes.gte': 2000, 'rating.gte': 5.0, 'genre': 'history'} |
  21. | Traceback (most recent call last): |
  22. | File "C:\ProgramData\PMM\PMM-newdevelop\plex_meta_manager.py", line 679, in run_collection |
  23. | builder = CollectionBuilder(config, metadata, mapping_name, collection_attrs, library=library, extra=output_str) |
  24. | File "C:\ProgramData\PMM\PMM-newdevelop\modules\builder.py", line 1056, in __init__ |
  25. | raise Failed(f"{self.Type} Error: {method_final} attribute not supported") |
  26. | modules.util.Failed: Collection Error: imdb_search attribute not supported |
  27. | |
  28. | Collection Error: imdb_search attribute not supported |
  29. | |
  30.  
  31.  
  32.  
  33.  
  34. CONFIG::::::::::
  35.  
  36. ######################################################
  37. # Genre Collections #
  38. ######################################################
  39. templates:
  40. IMDb Genre:
  41. default:
  42. title: feature
  43. limit: 300
  44.  
  45. imdb_search:
  46. type: movie
  47. votes.gte: 2000
  48. rating.gte: 5.0
  49. genre: <<genre>>
  50.  
  51. # OLD
  52. # imdb_list:
  53. # - url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>
  54. # limit: <<limit>>
  55. # - url: https://www.imdb.com/search/title/?title_type=<<title>>&release_date=1990-01-01,&user_rating=5.0,10.0&num_votes=100000,&genres=<<genre>>&sort=user_rating,desc
  56. # limit: <<limit>>
  57.  
  58.  
  59. # sort_title: +3_<<collection_name>>
  60. sort_by: rating.desc
  61. sync_mode: sync
  62. # smart_label: random
  63. Other Genre:
  64. # sort_title: +3_<<collection_name>>
  65. sort_by: rating.desc
  66. sync_mode: sync
  67. # smart_label: random
  68. collections:
  69. Action:
  70. template: { name: IMDb Genre, genre: action }
  71. radarr_add: true
  72. Adventure:
  73. template: { name: IMDb Genre, genre: adventure }
  74. radarr_add: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement