From 3315c471d49c992809e3f8a386918d3e8bea717c Mon Sep 17 00:00:00 2001 From: Kolifanes Date: Thu, 25 Feb 2016 12:35:16 +0100 Subject: [PATCH] Fix for YouTube API. Based on 5.1.16 --- LICENSE.txt | 339 +++++ README.md | 16 + addon.xml | 37 + changelog.txt | 342 +++++ default.py | 7 + fanart.jpg | Bin 0 -> 43752 bytes icon.png | Bin 0 -> 4319 bytes resources/__init__.py | 1 + resources/language/Bulgarian/strings.po | 426 ++++++ .../language/Chinese (Traditional)/strings.po | 426 ++++++ resources/language/Czech/strings.po | 426 ++++++ resources/language/English/strings.po | 438 ++++++ resources/language/French/strings.po | 426 ++++++ resources/language/German/strings.po | 426 ++++++ resources/language/Hebrew/strings.po | 426 ++++++ resources/language/Hungarian/strings.po | 426 ++++++ resources/language/Italian/strings.po | 426 ++++++ resources/language/Korean/strings.po | 426 ++++++ resources/language/Polish/strings.po | 426 ++++++ .../language/Portuguese (Brazil)/strings.po | 426 ++++++ resources/language/Portuguese/strings.po | 426 ++++++ resources/language/Romanian/strings.po | 426 ++++++ resources/language/Russian/strings.po | 426 ++++++ resources/language/Spanish/strings.po | 426 ++++++ resources/language/Ukrainian/strings.po | 426 ++++++ resources/lib/__init__.py | 1 + resources/lib/kodion/__init__.py | 20 + resources/lib/kodion/abstract_provider.py | 289 ++++ resources/lib/kodion/constants/__init__.py | 8 + .../kodion/constants/const_content_types.py | 10 + .../lib/kodion/constants/const_localize.py | 36 + resources/lib/kodion/constants/const_log.py | 10 + resources/lib/kodion/constants/const_paths.py | 5 + .../lib/kodion/constants/const_settings.py | 23 + .../kodion/constants/const_sort_methods.py | 63 + resources/lib/kodion/debug.py | 18 + resources/lib/kodion/exceptions.py | 13 + resources/lib/kodion/impl/__init__.py | 17 + resources/lib/kodion/impl/abstract_context.py | 226 +++ .../lib/kodion/impl/abstract_context_ui.py | 52 + resources/lib/kodion/impl/abstract_logger.py | 18 + resources/lib/kodion/impl/abstract_player.py | 17 + .../lib/kodion/impl/abstract_playlist.py | 20 + .../kodion/impl/abstract_progress_dialog.py | 29 + .../kodion/impl/abstract_provider_runner.py | 11 + .../lib/kodion/impl/abstract_settings.py | 96 ++ .../kodion/impl/abstract_system_version.py | 32 + resources/lib/kodion/impl/mock/__init__.py | 3 + .../lib/kodion/impl/mock/mock_context.py | 102 ++ .../lib/kodion/impl/mock/mock_context_ui.py | 55 + resources/lib/kodion/impl/mock/mock_log.py | 24 + .../kodion/impl/mock/mock_progress_dialog.py | 24 + resources/lib/kodion/impl/mock/mock_runner.py | 43 + .../lib/kodion/impl/mock/mock_settings.py | 18 + .../kodion/impl/mock/mock_system_version.py | 10 + resources/lib/kodion/impl/xbmc/__init__.py | 3 + resources/lib/kodion/impl/xbmc/info_labels.py | 177 +++ .../lib/kodion/impl/xbmc/xbmc_context.py | 232 +++ .../lib/kodion/impl/xbmc/xbmc_context_ui.py | 141 ++ resources/lib/kodion/impl/xbmc/xbmc_items.py | 77 + resources/lib/kodion/impl/xbmc/xbmc_logger.py | 18 + resources/lib/kodion/impl/xbmc/xbmc_player.py | 52 + .../lib/kodion/impl/xbmc/xbmc_playlist.py | 41 + .../kodion/impl/xbmc/xbmc_plugin_settings.py | 20 + .../kodion/impl/xbmc/xbmc_progress_dialog.py | 40 + .../impl/xbmc/xbmc_progress_dialog_bg.py | 40 + resources/lib/kodion/impl/xbmc/xbmc_runner.py | 151 ++ .../kodion/impl/xbmc/xbmc_system_version.py | 41 + resources/lib/kodion/items/__init__.py | 18 + resources/lib/kodion/items/audio_item.py | 87 ++ resources/lib/kodion/items/base_item.py | 109 ++ resources/lib/kodion/items/directory_item.py | 13 + resources/lib/kodion/items/favorites_item.py | 27 + resources/lib/kodion/items/image_item.py | 19 + resources/lib/kodion/items/new_search_item.py | 27 + resources/lib/kodion/items/next_page_item.py | 27 + .../lib/kodion/items/search_history_item.py | 31 + resources/lib/kodion/items/search_item.py | 27 + resources/lib/kodion/items/uri_item.py | 11 + resources/lib/kodion/items/utils.py | 76 + resources/lib/kodion/items/video_item.py | 186 +++ .../lib/kodion/items/watch_later_item.py | 27 + resources/lib/kodion/logging.py | 38 + .../lib/kodion/register_provider_path.py | 17 + resources/lib/kodion/runner.py | 35 + .../lib/kodion/simple_requests/__init__.py | 6 + resources/lib/kodion/simple_requests/api.py | 196 +++ .../simple_requests/constants/__init__.py | 1 + .../kodion/simple_requests/constants/codes.py | 5 + resources/lib/kodion/utils/__init__.py | 12 + resources/lib/kodion/utils/access_manager.py | 109 ++ resources/lib/kodion/utils/datetime_parser.py | 65 + resources/lib/kodion/utils/favorite_list.py | 37 + resources/lib/kodion/utils/function_cache.py | 113 ++ resources/lib/kodion/utils/methods.py | 149 ++ resources/lib/kodion/utils/search_history.py | 48 + resources/lib/kodion/utils/storage.py | 207 +++ resources/lib/kodion/utils/view_manager.py | 154 ++ .../lib/kodion/utils/watch_later_list.py | 45 + resources/lib/test_youtube/__init__.py | 0 resources/lib/test_youtube/html5player.js | 1246 +++++++++++++++++ resources/lib/test_youtube/test_cipher.py | 23 + resources/lib/test_youtube/test_client.py | 338 +++++ .../lib/test_youtube/test_helper/__init__.py | 0 .../test_helper/test_extract_urls.py | 63 + .../test_helper/test_resource_manager.py | 30 + .../test_helper/test_url_resolver.py | 106 ++ .../test_helper/test_url_to_item_converter.py | 48 + resources/lib/test_youtube/test_provider.py | 133 ++ resources/lib/youtube/__init__.py | 5 + resources/lib/youtube/client/__init__.py | 5 + resources/lib/youtube/client/login_client.py | 294 ++++ resources/lib/youtube/client/youtube.py | 696 +++++++++ resources/lib/youtube/helper/__init__.py | 6 + .../lib/youtube/helper/resource_manager.py | 208 +++ .../lib/youtube/helper/signature/__init__.py | 1 + .../lib/youtube/helper/signature/cipher.py | 198 +++ .../helper/signature/json_script_engine.py | 61 + resources/lib/youtube/helper/tv.py | 41 + resources/lib/youtube/helper/url_resolver.py | 188 +++ .../youtube/helper/url_to_item_converter.py | 175 +++ resources/lib/youtube/helper/utils.py | 328 +++++ resources/lib/youtube/helper/v3.py | 242 ++++ resources/lib/youtube/helper/video_info.py | 648 +++++++++ .../lib/youtube/helper/yt_context_menu.py | 143 ++ resources/lib/youtube/helper/yt_login.py | 122 ++ .../lib/youtube/helper/yt_old_actions.py | 61 + resources/lib/youtube/helper/yt_play.py | 158 +++ resources/lib/youtube/helper/yt_playlist.py | 156 +++ .../lib/youtube/helper/yt_setup_wizard.py | 50 + resources/lib/youtube/helper/yt_specials.py | 239 ++++ .../lib/youtube/helper/yt_subscriptions.py | 59 + resources/lib/youtube/helper/yt_video.py | 83 ++ resources/lib/youtube/provider.py | 653 +++++++++ resources/lib/youtube/youtube_exceptions.py | 11 + resources/media/browse_channels.png | Bin 0 -> 3103 bytes resources/media/channel.png | Bin 0 -> 6664 bytes resources/media/channels.png | Bin 0 -> 8325 bytes resources/media/dislikes.png | Bin 0 -> 3157 bytes resources/media/fanart.jpg | Bin 0 -> 37400 bytes resources/media/history.png | Bin 0 -> 2614 bytes resources/media/icons.pdn | Bin 0 -> 19621 bytes resources/media/likes.png | Bin 0 -> 3164 bytes resources/media/live.png | Bin 0 -> 3464 bytes resources/media/new_search.png | Bin 0 -> 3249 bytes resources/media/new_uploads.png | Bin 0 -> 2049 bytes resources/media/playlist.png | Bin 0 -> 1699 bytes resources/media/popular.png | Bin 0 -> 7372 bytes resources/media/search.png | Bin 0 -> 3066 bytes resources/media/sign_in.png | Bin 0 -> 6790 bytes resources/media/sign_out.png | Bin 0 -> 4848 bytes resources/media/watch_later.png | Bin 0 -> 3465 bytes resources/media/what_to_watch.png | Bin 0 -> 1881 bytes resources/settings.xml | 46 + 154 files changed, 19108 insertions(+) create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 addon.xml create mode 100644 changelog.txt create mode 100644 default.py create mode 100644 fanart.jpg create mode 100644 icon.png create mode 100644 resources/__init__.py create mode 100644 resources/language/Bulgarian/strings.po create mode 100644 resources/language/Chinese (Traditional)/strings.po create mode 100644 resources/language/Czech/strings.po create mode 100644 resources/language/English/strings.po create mode 100644 resources/language/French/strings.po create mode 100644 resources/language/German/strings.po create mode 100644 resources/language/Hebrew/strings.po create mode 100644 resources/language/Hungarian/strings.po create mode 100644 resources/language/Italian/strings.po create mode 100644 resources/language/Korean/strings.po create mode 100644 resources/language/Polish/strings.po create mode 100644 resources/language/Portuguese (Brazil)/strings.po create mode 100644 resources/language/Portuguese/strings.po create mode 100644 resources/language/Romanian/strings.po create mode 100644 resources/language/Russian/strings.po create mode 100644 resources/language/Spanish/strings.po create mode 100644 resources/language/Ukrainian/strings.po create mode 100644 resources/lib/__init__.py create mode 100644 resources/lib/kodion/__init__.py create mode 100644 resources/lib/kodion/abstract_provider.py create mode 100644 resources/lib/kodion/constants/__init__.py create mode 100644 resources/lib/kodion/constants/const_content_types.py create mode 100644 resources/lib/kodion/constants/const_localize.py create mode 100644 resources/lib/kodion/constants/const_log.py create mode 100644 resources/lib/kodion/constants/const_paths.py create mode 100644 resources/lib/kodion/constants/const_settings.py create mode 100644 resources/lib/kodion/constants/const_sort_methods.py create mode 100644 resources/lib/kodion/debug.py create mode 100644 resources/lib/kodion/exceptions.py create mode 100644 resources/lib/kodion/impl/__init__.py create mode 100644 resources/lib/kodion/impl/abstract_context.py create mode 100644 resources/lib/kodion/impl/abstract_context_ui.py create mode 100644 resources/lib/kodion/impl/abstract_logger.py create mode 100644 resources/lib/kodion/impl/abstract_player.py create mode 100644 resources/lib/kodion/impl/abstract_playlist.py create mode 100644 resources/lib/kodion/impl/abstract_progress_dialog.py create mode 100644 resources/lib/kodion/impl/abstract_provider_runner.py create mode 100644 resources/lib/kodion/impl/abstract_settings.py create mode 100644 resources/lib/kodion/impl/abstract_system_version.py create mode 100644 resources/lib/kodion/impl/mock/__init__.py create mode 100644 resources/lib/kodion/impl/mock/mock_context.py create mode 100644 resources/lib/kodion/impl/mock/mock_context_ui.py create mode 100644 resources/lib/kodion/impl/mock/mock_log.py create mode 100644 resources/lib/kodion/impl/mock/mock_progress_dialog.py create mode 100644 resources/lib/kodion/impl/mock/mock_runner.py create mode 100644 resources/lib/kodion/impl/mock/mock_settings.py create mode 100644 resources/lib/kodion/impl/mock/mock_system_version.py create mode 100644 resources/lib/kodion/impl/xbmc/__init__.py create mode 100644 resources/lib/kodion/impl/xbmc/info_labels.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_context.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_context_ui.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_items.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_logger.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_player.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_playlist.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_plugin_settings.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_progress_dialog.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_progress_dialog_bg.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_runner.py create mode 100644 resources/lib/kodion/impl/xbmc/xbmc_system_version.py create mode 100644 resources/lib/kodion/items/__init__.py create mode 100644 resources/lib/kodion/items/audio_item.py create mode 100644 resources/lib/kodion/items/base_item.py create mode 100644 resources/lib/kodion/items/directory_item.py create mode 100644 resources/lib/kodion/items/favorites_item.py create mode 100644 resources/lib/kodion/items/image_item.py create mode 100644 resources/lib/kodion/items/new_search_item.py create mode 100644 resources/lib/kodion/items/next_page_item.py create mode 100644 resources/lib/kodion/items/search_history_item.py create mode 100644 resources/lib/kodion/items/search_item.py create mode 100644 resources/lib/kodion/items/uri_item.py create mode 100644 resources/lib/kodion/items/utils.py create mode 100644 resources/lib/kodion/items/video_item.py create mode 100644 resources/lib/kodion/items/watch_later_item.py create mode 100644 resources/lib/kodion/logging.py create mode 100644 resources/lib/kodion/register_provider_path.py create mode 100644 resources/lib/kodion/runner.py create mode 100644 resources/lib/kodion/simple_requests/__init__.py create mode 100644 resources/lib/kodion/simple_requests/api.py create mode 100644 resources/lib/kodion/simple_requests/constants/__init__.py create mode 100644 resources/lib/kodion/simple_requests/constants/codes.py create mode 100644 resources/lib/kodion/utils/__init__.py create mode 100644 resources/lib/kodion/utils/access_manager.py create mode 100644 resources/lib/kodion/utils/datetime_parser.py create mode 100644 resources/lib/kodion/utils/favorite_list.py create mode 100644 resources/lib/kodion/utils/function_cache.py create mode 100644 resources/lib/kodion/utils/methods.py create mode 100644 resources/lib/kodion/utils/search_history.py create mode 100644 resources/lib/kodion/utils/storage.py create mode 100644 resources/lib/kodion/utils/view_manager.py create mode 100644 resources/lib/kodion/utils/watch_later_list.py create mode 100644 resources/lib/test_youtube/__init__.py create mode 100644 resources/lib/test_youtube/html5player.js create mode 100644 resources/lib/test_youtube/test_cipher.py create mode 100644 resources/lib/test_youtube/test_client.py create mode 100644 resources/lib/test_youtube/test_helper/__init__.py create mode 100644 resources/lib/test_youtube/test_helper/test_extract_urls.py create mode 100644 resources/lib/test_youtube/test_helper/test_resource_manager.py create mode 100644 resources/lib/test_youtube/test_helper/test_url_resolver.py create mode 100644 resources/lib/test_youtube/test_helper/test_url_to_item_converter.py create mode 100644 resources/lib/test_youtube/test_provider.py create mode 100644 resources/lib/youtube/__init__.py create mode 100644 resources/lib/youtube/client/__init__.py create mode 100644 resources/lib/youtube/client/login_client.py create mode 100644 resources/lib/youtube/client/youtube.py create mode 100644 resources/lib/youtube/helper/__init__.py create mode 100644 resources/lib/youtube/helper/resource_manager.py create mode 100644 resources/lib/youtube/helper/signature/__init__.py create mode 100644 resources/lib/youtube/helper/signature/cipher.py create mode 100644 resources/lib/youtube/helper/signature/json_script_engine.py create mode 100644 resources/lib/youtube/helper/tv.py create mode 100644 resources/lib/youtube/helper/url_resolver.py create mode 100644 resources/lib/youtube/helper/url_to_item_converter.py create mode 100644 resources/lib/youtube/helper/utils.py create mode 100644 resources/lib/youtube/helper/v3.py create mode 100644 resources/lib/youtube/helper/video_info.py create mode 100644 resources/lib/youtube/helper/yt_context_menu.py create mode 100644 resources/lib/youtube/helper/yt_login.py create mode 100644 resources/lib/youtube/helper/yt_old_actions.py create mode 100644 resources/lib/youtube/helper/yt_play.py create mode 100644 resources/lib/youtube/helper/yt_playlist.py create mode 100644 resources/lib/youtube/helper/yt_setup_wizard.py create mode 100644 resources/lib/youtube/helper/yt_specials.py create mode 100644 resources/lib/youtube/helper/yt_subscriptions.py create mode 100644 resources/lib/youtube/helper/yt_video.py create mode 100644 resources/lib/youtube/provider.py create mode 100644 resources/lib/youtube/youtube_exceptions.py create mode 100644 resources/media/browse_channels.png create mode 100644 resources/media/channel.png create mode 100644 resources/media/channels.png create mode 100644 resources/media/dislikes.png create mode 100644 resources/media/fanart.jpg create mode 100644 resources/media/history.png create mode 100644 resources/media/icons.pdn create mode 100644 resources/media/likes.png create mode 100644 resources/media/live.png create mode 100644 resources/media/new_search.png create mode 100644 resources/media/new_uploads.png create mode 100644 resources/media/playlist.png create mode 100644 resources/media/popular.png create mode 100644 resources/media/search.png create mode 100644 resources/media/sign_in.png create mode 100644 resources/media/sign_out.png create mode 100644 resources/media/watch_later.png create mode 100644 resources/media/what_to_watch.png create mode 100644 resources/settings.xml diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..d7f1051 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,339 @@ +GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d84d911 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +![](https://raw.githubusercontent.com/bromix/repository.bromix.storage/master/plugin.video.youtube/icon.png) +# **Links:** + +* [YouTube](http://www.youtube.com) +* [EndPoints - Videos](https://github.com/bromix/plugin.video.youtube/wiki/EndPoints#videos) +* [EndPoints - Playlist](https://github.com/bromix/plugin.video.youtube/wiki/EndPoints#playlists) +* [EndPoints - Channels](https://github.com/bromix/plugin.video.youtube/wiki/EndPoints#channels) +* [Missing or not supported](https://github.com/bromix/plugin.video.youtube/wiki/Missing-or-Broken) +* [Support thread](http://forum.kodi.tv/showthread.php?tid=200735) + +[![](https://www.paypalobjects.com/en_GB/i/btn/btn_donate_LG.gif)](https://goo.gl/U5oVOj) [![](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://goo.gl/15V9TN) [![](https://www.paypalobjects.com/de_DE/i/btn/btn_donate_LG.gif)](https://goo.gl/oEjE9E) [![](https://pledgie.com/campaigns/29261.png?skin_name=chrome)](https://goo.gl/K4RZrZ) [![](https://raw.githubusercontent.com/bromix/repository.bromix.storage/master/flattr-badge-large.png)](http://flattr.com/thing/4196324) + +# **Images:** +![](http://i.imgur.com/W5UEby8.png) +![](http://i.imgur.com/rfqpIYC.png) +![](http://i.imgur.com/hoIuZ1K.png) diff --git a/addon.xml b/addon.xml new file mode 100644 index 0000000..fa159c7 --- /dev/null +++ b/addon.xml @@ -0,0 +1,37 @@ + + + + + + + video + + + Plugin for YouTube + YouTube is a one of the biggest video-sharing websites of the world. + Plugin für YouTube + YouTube ist ein eines der größten Video-Sharing-Websites der Welt. + Wtyczka YouTube + YouTube jest jednym z największych na świecie serwisów udostępniania wideo. + Kiegészítő a YouTube-hoz + A YouTube a világ egyik legnagyobb videómegosztó weboldala. + Plugin para YouTube + YouTube es un uno de los mayores sitios web de intercambio de vídeos del mundo. + Видеодополнение YouTube + Данное дополнение позволяет находить и смотреть видео на всеми любимом сайте. + Plugin pour YouTube + YouTube est l'un des plus grands sites de partage vidéos du monde. + YouTube附加元件 + 「Youtube」是全世界最大的影片分享網站 + Добавка за YouTube + YouTube е един от най-големите уеб сайтове за споделяне на видео в целия свят. + + + all + GNU GENERAL PUBLIC LICENSE. Version 2, June 1991 + http://forum.kodi.tv/showthread.php?tid=200735 + http://www.youtube.com + bromix at gmx dot net + https://github.com/bromix/plugin.video.youtube + + diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..58951f5 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,342 @@ +5.1.20 (2016-02-25) +[fix] Final fix for API + +5.1.16 (2015-12-24) +[fix] reverted search order by date + +5.1.15 (2015-12-22) +[fix] signature calculation + +5.1.14 (2015-12-22) +[upd] default search order by date (newest first) +[fix] VEVO signature calculation + +5.1.13 (2015-12-20) +[fix] frodo...DIE FRODO DIE !!! +[fix] some cleanup for Jarvis + +5.1.12 (2015-11-29) +[fix] sort issues with Jarvis (thx 2 guidosarducci) + +5.1.11 (2015-11-24) +[fix] signature calculation (e.g. VEVO) + +5.1.10 (2015-11-13) +[fix] signature calculation (e.g. VEVO) + +5.1.9 (2015-09-21) +[add] Hebrew (thx 2 smoky-jr) +[upd] don't set default season and episodes (1x1) +[upd] another try to optimize the quota problem. Move all searches to the individual keys instead of one global +[fix] playback issues (skip discontinued video/format by YouTube) + +5.1.8 (2015-08-23) +[add] Bulgarian (thx 2 NEOhidra) +[upd] new quota shaping +[fix] personal playlists (Watch Later, Liked Video, ...) should work again +[fix] playback of VEVO videos - some videos still using discontinued ITAG13 +[fix] show login, when an endpoint is called, which requires permissions. + +5.1.7 (2015-07-15) +ADD: quota optimization via separate key for none-token depended API calls +UPD: new login semantic to sign out if someone upgrades to a newer version of KODI +FIX: 'Next Page (X)' item was added to the current playlist for playback + +5.1.6 (2015-06-14) +ADD: Chinese (Traditional) (thx 2 beddfaf916) +ADD: Czech (thx 2 tomaswcz) +ADD: Romanian (thx 2 Danny3) +UPD: test some new pagination for 'My Subscriptions' +UPD: Polish (thx 2 Etharr) +FIX: show notification again for unsupported rtmpe streams +FIX: unicode/utf-8 trouble in kodion + +5.1.5 (2015-05-29) +UPD: remove deprecation warning for Isengard +FIX: Issue 7163 (Missing pagination for subscriptions - YouTube APIv3 bug) + +5.1.4 (2015-05-26) +ADD: Frodo support (only if you install via zip or bromix repo) +UPD: new API-KEY - thanks to the guy for hijacking the key for trailer searches +UPD: Russian (thx 2 BytEvil) +FIX: cache wasn't working correctly without login + +5.1.3 (2015-05-16) +UPD: code cleaning +FIX: minor fixes + +5.1.2 (2015-05-15) +ADD: ask for video quality (optional) +UPD: code cleaning +UPD: Russian (thx 2 BytEvil) +UPD: kodion +FIX: add 'Play all' for playlist (again) + +5.1.1 (2015-05-10) +ADD: 'More...' in context menu to provide more items +ADD: show deprecation warning of old plugin calls starting with Isengard +ADD: EndPoint: 'plugin://plugin.video.youtube/search/?q=[URL_ENC_TEXT]' +ADD: API Key for each major version of KODI +UPD: Ukrainian (thx 2 Dukobpa3) +UPD: Russian (thx 2 BytEvil) +UPD: new second fanart +UPD: reorganized context menu +UPD: improved logging (debug only) +UPD: Improved error handling +FIX: refresh after rating a video (own playlist only) +FIX: add 'refresh' again for 'My subscriptions' +DEL: removed old v2 API + +5.1.0 (2015-04-22) +ADD: Double login to support 'My subscriptions' via YouTube TV API +ADD: 'More Links from the description' - extracts further links from the description +ADD: Korean (thx 2 piodio) +UPD: removed old implementation of 'My Subscriptions' +UPD: new fanart and icon +UPD: changed credentials +UPD: minimal quota-optimization +UPD: French (thx 2 eauland) +UPD: YouTube relevant description links - improved extraction and resolving of video/playlist urls +UPD: YouTube relevant description links - improved extraction and resolving of user/channel urls +UPD: YouTube relevant description links - improved performance resolving urls with caching +UPD: regex optimizations for season and expisode extraction +FIX: support fanart of channel in new implementation of 'My Subscriptions' +FIX: YouTube relevant description links - script error while some server return garbage for a location +FIX: script error while resolving url fails +FIX: script error while adding video to a playlist +FIX: show seconds (runtime) in Gotham + +5.0.9 (2015-03-14) +ADD: 'duration' optimized for KODI 15.X (Isengard) +ADD: EndPoint for listing the videos of a playlist: "plugin://plugin.video.youtube/playlist//" +UPD: optimized client-/server transfer (use gzip) + +5.0.8 (2015-03-05) +UPD: Polish (thx 2 Etharr) +UPD: Russian (thx 2 BytEvil) +FIX: improved playback + +5.0.7 (2015-02-27) +ADD: 'Refresh' in 'My Subscriptions' and all my playlists +ADD: rename search history item +UPD: French (thx 2 Trilip) +UPD: Ukrainian (thx 2 posledov) +UPD: Spanish (thx 2 PatOso) +FIX: possible crash on not well formed language ids +FIX: optimized logging +FIX: unicode trouble + +5.0.6 (2015-02-17) +ADD: setting for hiding the channel name in the description +ADD: Ukrainian (thx 2 posledov) +UPD: show 'Watch History' (default) +UPD: Russian (thx 2 BytEvil) +UPD: improved support for live streams +UPD: improved stream selection based on container +FIX: 'What to watch' => 'Popular right now' +FIX: don't crash while trying to play rtmpe +FIX: corrected ITAG 18 in 360p instead of 260p + + +5.0.5 (2015-02-01) +ADD: clear search history items +UPD: replace context menu not everywhere +UPD: dropped dependency of 'requests'-module because of performance issues +FIX: Add playing video to the 'Watch History' +FIX: maybe a fix for a problem (again!) on unix systems while using python 2.7.9 + certificate verification +FIX: removed pagination for "Related Videos" - the fix before produced some nasty side-effects +FIX: Vevo signature + +5.0.4 (2015-01-15) +ADD: 'Live' in search +ADD: 'Play with...' for supporting external/alternative player +ADD: live events (needed some tests and feedback) +ADD: support for user names instead of channel ids +UPD: set XBMC/KODI to at least Gotham 13.2 +UPD: Setup-Wizard views based on content type (KODION update) +FIX: Playlist should work again +FIX: Pagination in APIv2 +FIX: settings for hiding 'Live' menu +DEL: support for Frodo + +5.0.3 (2015-01-08) +ADD: 'Disliked Videos' +ADD: 240p, 360p and 480p +UPD: adjustment in KODION classes (maybe causing problems on MAC OS X 10.10.X + Python 2.6) +UPD: Russian (thx 2 BytEvil) +UPD: Spanish (thx 2 PatOso) +UPD: Polish (thx 2 D.K.) +FIX: German translation +FIX: some Frodo updates + +5.0.2 (2015-01-01) +ADD: Support for shared playlists via Yatse +ADD: 'Play from here' for playlists +ADD: 'Queue Video' +FIX: German translation +FIX: Portuguese (Brazil) (thx 2 ASH_Macedo) + +5.0.1 (2014-12-31) +ADD: 'Play all' (default, reverse, shuffle) +ADD: Italian (thx 2 peppe_sr) +ADD: Portuguese (Brazil) (thx 2 ASH_Macedo) +ADD: Hungarian (thx 2 gyeben) +ADD: Portuguese (thx 2 enen92) +ADD: Polish (thx 2 D.K.) +ADD: Russian (thx 2 BytEvil) +ADD: Spanish (thx 2 PatOso) +ADD: French (thx 2 roondar) +UPD: support for '1080XF' and 'Xperience1080' +FIX: some live streams should work +FIX: update meta data for video played via ext. url +FIX: remove video from 'Watch Later' playlist +REV: reverted to requests + +5.0.0 (2014-12-27) +DEL: removed beta +ADD: new rating system - like/dislike/remove +ADD: show confirmation before remove a video or deleting a playlist +ADD: rename your playlists +ADD: setup default view modes (default and videos) +ADD: setup correct language and region for YouTube +ADD: support for old YouTube url calls (plugin://plugin.video.youtube/?action=play_video&videoid=[ID]) +UPD: new icons +UPD: reorganized context menu +UPD: some minor tests +UPD: moved 'Watch Later' up in context menu +FIX: rename playlist +FIX: show newest videos first (uploads of channel) +FIX: show fanarts in 'Watch Later' and 'Liked Videos' + +1.0.0~alpha29 (2014-12-14) +UPD: new login mechanism (removed the old one) +ADD: translation fr-FR (thanks to roondar) +ADD: manage playlists - create, remove and add videos to a selected playlists +FIX: support cyrillic letters + +1.0.0~alpha28 (2014-12-07) +ADD: subscribe to channel (from videos and playlist) +UPD: rework of handling context menu +FIX: remove next page for related videos (because APIv3 is broken) + +1.0.0~alpha27 (2014-12-01) +UPD: performance improved for auto-removing videos from 'Watch Later' list +FIX: error while navigating to the next page + +1.0.0~alpha26 (2014-11-30) +ADD: hide all entries (except search) via settings in the root menu +ADD: missing pagination for 'My Subscriptions' +FIX: next page is working again (Watch Later) +UPD: disabled language (for now) Kodi isn't providing reliable language IDs + +1.0.0~alpha25 (2014-11-29) +UPD: requests with language/region +UPD: new icons +ADD: Auto-Remove from 'Watch Later' list +ADD: 'Related Videos' +UPD: show channel name in the description +FIX: disable verification warnings + +1.0.0~alpha24 (2014-11-27) +ADD: 'Browse Channels' +FIX: support for skins calling '.*/extrafanart/' + +1.0.0~alpha23 (2014-11-26) +ADD: 'What to watch' +FIX: 'My subscriptions' switched to version APIv2.1 (Google) DAMN YOU!!! + +1.0.0~alpha22 (2014-11-25) +ADD: sorting +FIX: crash when calling 'My subscriptions' +FIX: signature calculation + +1.0.0~alpha21 (2014-11-24) +CHG: method for playing a video changed to a more query like uri +FIX: crash under android systems. Regular Expressions work a little different :) + +1.0.0~alpha20 (2014-11-23) +FIX: Git merge with master + +1.0.0~alpha19 (2014-11-23) +UPD: complete rewrite +UPD: switch to kodion + +1.0.0~alpha18 (2014-08-31) +- ADD: Support for ETag - could improve performance +- ADD: remove item of search history +- FIX: #22 calculation of duration +- FIX: #28 display 'general' instead of 'like' in settings + +1.0.0~alpha17 (2014-08-10) +- ADD: 'Go to CHANNEL' of a selected video +- ADD: Support for 'Subscribe' and 'Unsubscribe' of channels +- ADD: Full support for 'Like' +- ADD: Remove own playlist via context menu +- ADD: Show/Hide 'Browse Channels' via settings +- FIX: Using only thumbnails from API v3 - 'My Subscriptions' is using v2 and returning different thumbnails +- FIX: Displaying false channel in video description +- FIX: Don't update search history before showing the search result + +1.0.0~alpha16 (2014-08-08) +- FIX: provide 'Next Page' under 'My Subscriptions' if there are more results +- ADD: Hide and show menu items via settings +- ADD: Search history (set the size via settings from 0-50 items) + +1.0.0~alpha15 (2014-08-04) +- FIX: moved (only) for the subscribtions to V2 to see new uploaded videos + +1.0.0~alpha14 (2014-08-03) +- ADD: 'Remove' via context menu for playlists +- ADD: 'Watch Later' via context menu to add a video to the 'Watch Later' playlist +- ADD: Automatic remove from the 'Watch Later' playlists (optional via settings - default = true) +- ADD: Support for history - after playback the video should be added to the history. Not working correct. +- ADD: Fanart for channels. Only if you select a channel directly. +- optimized some of the addon code + +1.0.0~alpha13 (2014-08-02) +- FIX: improved token and login validation + +1.0.0~alpha12 (2014-08-01) +- ADD: Show 'Published on' and 'Channel' in the description of a video (can be disabled via setting) +- ADD: support for 3D videos (can be disabled via setting) +- Accelerated resolving of video URLs (almost 2x as fast) + +1.0.0~alpha11 (2014-07-30) +- FIX: added a fallback for videos that require a login (works very fast?!?!) +- FIX: if username or password is missing reset the whole token logic + +1.0.0~alpha10 (2014-07-29) +- FIX: improved performance on decoding signatures for some videos +- ADD: support for custom-created playlists +- FIX: sort own subscriptions +- ADD: enable/disable video, channel and/or playlist search + +1.0.0~alpha9 (2014-07-28) +- FIX: removed debug + +1.0.0~alpha8 (2014-07-28) +- ADD: login tests + +1.0.0~alpha7 (2014-07-27) +- FIX: added support from freemake.com to decode signatures of some videos + +1.0.0~alpha6 (2014-07-27) +- added support of playlists of a channel (first page only) +- optimized some major routines for easier support of all youtube's content + +1.0.0~alpha5 (2014-07-27) +- version bump for tests + +1.0.0~alpha4 (2014-07-26) +- added runtime for each video (crazy hack) +- disabled debug + +1.0.0~alpha3 (2014-07-26) +- little fixes regarding youtube channels + +1.0.0~alpha2 (2014-07-26) +- added youtube channels and search +- added playback + +1.0.0~alpha (2014-07-26) +- initial version for tests \ No newline at end of file diff --git a/default.py b/default.py new file mode 100644 index 0000000..3bf7965 --- /dev/null +++ b/default.py @@ -0,0 +1,7 @@ +__author__ = 'bromix' + +from resources.lib.kodion import runner +from resources.lib import youtube + +__provider__ = youtube.Provider() +runner.run(__provider__) diff --git a/fanart.jpg b/fanart.jpg new file mode 100644 index 0000000000000000000000000000000000000000..660acc7fc904511047bd249c440c88895f5a5e35 GIT binary patch literal 43752 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