I am trying to make an app using pytube module to download Youtube videos.
It worked previously and then I got the following error:-
pytube.exceptions.RegexMatchError: get_throttling_function_name: could not find match for multiple
After some searches, I managed to modify the cipher.py file and the program runs without error in my PC. Also no errors using the PyInstaller packaged version.
However when I compile the program into an apk file using buildozer, I got the error again eventhough I changed the cipher.py programs at
.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/python-installs/dlYoutube/arm64-v8a/pytube
and
.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/python-installs/dlYoutube/armeabi-v7a/pytube
I have used the "clean" option to build the apk.
It seems that buildozer does not included my modified cipher.py in the apk. Or is there some other things I nave not understood or done?
Help appreciated.