marcelotduarte / cx_Freeze

cx_Freeze creates standalone executables from Python scripts, with the same performance, is cross-platform and should work on any platform that Python itself works on.
https://marcelotduarte.github.io/cx_Freeze/
Other
1.36k stars 218 forks source link

How to write setup.py including own python module and HTML CSS files? #916

Closed wimpykid719 closed 3 years ago

wimpykid719 commented 3 years ago

Sorry I should post to discussions. I tried to delete this issues but I can't do it. I made desktop app with Python. It has GUI using eel library. So Gui made by HTML and CSS. Also It's not only one file

app.py imports own module like this.

app.py-module      |-YT_Download.py      |-lyrics.py      |-meta_song.py

I want to build up for windows and mac.

I couldn't find the sample like this complicated.

So I don't know how to write setup.py for kind of this situation.

please someone help me.

My first desktop app YT-download

marcelotduarte commented 3 years ago

Please check the documentation at https://cx-freeze.readthedocs.io/en/latest/distutils.html Use include_files and check https://cx-freeze.readthedocs.io/en/latest/faq.html#using-data-files

marcelotduarte commented 3 years ago

This sample uses this resource: https://github.com/marcelotduarte/cx_Freeze/tree/main/cx_Freeze/samples/pillow

wimpykid719 commented 3 years ago

Thank you so much give me sample. But I don't know why these sample doesn't need "packages": ["Image"] using in test_pillow.py.

wimpykid719 commented 3 years ago

I wrote a setup.py based on your sample but error shows up.

setup.py

import sys
from cx_Freeze import setup, Executable

# Dependencies are automatically detected, but it might need fine tuning.

includes = [
    "sys",
    "os",
    "requests",
    "re",
    "eel",
    "time",
    "ffmpeg",
    "threading",
    "urllib",
    "YouTube",
    "base64",
    "json",
    "asyncio",
    "MP4",
    "MP4Cover",
    "quote",
    "BeautifulSoup",
    "Comment"
]

build_exe_options = {"packages": [], "excludes": [], "includes": includes, "include_files":"web"}

# GUI applications require a different base on Windows (the default is for
# a console application).
base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(  name = "YT_Download",
        version = "0.1",
        description = "YoutubeDownloader",
        options = {"build_exe": build_exe_options},
        executables = [Executable("app.py", base=base)])

error

running bdist_mac
running build
running build_exe
Traceback (most recent call last):
  File "setup.py", line 40, in <module>
    executables = [Executable("app.py", base=base)])
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/dist.py", line 392, in setup
    distutils.core.setup(**attrs)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/core.py", line 148, in setup
    dist.run_commands()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/macdist.py", line 394, in run
    self.run_command("build")
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/cmd.py", line 313, in run_command
    self.distribution.run_command(command)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/command/build.py", line 135, in run
    self.run_command(cmd_name)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/cmd.py", line 313, in run_command
    self.distribution.run_command(command)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/dist.py", line 260, in run
    freezer.Freeze()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/freezer.py", line 758, in Freeze
    self.finder = self._GetModuleFinder()
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/freezer.py", line 463, in _GetModuleFinder
    finder.IncludeModule(name)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/finder.py", line 638, in IncludeModule
    module = self._import_module(name, deferred_imports)
  File "/Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/finder.py", line 291, in _import_module
    raise ImportError(f"No module named {name!r}")
ImportError: No module named 'YouTube'

I wrote YouTube module in includes.

marcelotduarte commented 3 years ago

Put a complete traceback.

wimpykid719 commented 3 years ago

Oh Sorry I put.

marcelotduarte commented 3 years ago

Does not exist a module named YouTube in your project. Exist a package named pytube. You should not use includes with unnecessary or nonexistent modules. Add to it a module only if cx-freeze does not detect it.

wimpykid719 commented 3 years ago

Oh thanks.

You mean cx-freeze can detect almost module and package? Usually We don't have to write includes and packege.

So, I did delete everything in include and tried python setup.py bdist_mac

output

running bdist_mac
running build
running build_exe
*** WARNING *** default bin include not found: libpython3.7m.dylib
creating directory build/exe.macosx-10.7-x86_64-3.7
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/bases/Console -> build/exe.macosx-10.7-x86_64-3.7/app
writing zip file build/exe.macosx-10.7-x86_64-3.7/lib/library.zip

  Name                      File
  ----                      ----
m BUILD_CONSTANTS           /var/folders/fx/fs7d08l10xl_83_rh2zprq1m0000gn/T/6183dfeb-b994-454a-8dc0-bc065498f4d3.py

m __future__                /Users/test/anaconda3/envs/youtube/lib/python3.7/__future__.py

m __startup__               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/initscripts/__startup__.py

m _abc                      

m _ast                      

m _bisect                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_bisect.cpython-37m-darwin.so

m _blake2                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_blake2.cpython-37m-darwin.so

m _bootlocale               /Users/test/anaconda3/envs/youtube/lib/python3.7/_bootlocale.py

m _bz2                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_bz2.cpython-37m-darwin.so

m _codecs                   

m _codecs_cn                /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_cn.cpython-37m-darwin.so

m _codecs_hk                /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_hk.cpython-37m-darwin.so

m _codecs_iso2022           /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_iso2022.cpython-37m-darwin.so

m _codecs_jp                /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_jp.cpython-37m-darwin.so

m _codecs_kr                /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_kr.cpython-37m-darwin.so

m _codecs_tw                /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_tw.cpython-37m-darwin.so

m _collections              

m _collections_abc          /Users/test/anaconda3/envs/youtube/lib/python3.7/_collections_abc.py

m _compat_pickle            /Users/test/anaconda3/envs/youtube/lib/python3.7/_compat_pickle.py

m _compression              /Users/test/anaconda3/envs/youtube/lib/python3.7/_compression.py

m _contextvars              /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_contextvars.cpython-37m-darwin.so

m _ctypes                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_ctypes.cpython-37m-darwin.so

m _datetime                 /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_datetime.cpython-37m-darwin.so

m _decimal                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_decimal.cpython-37m-darwin.so

m _dummy_thread             /Users/test/anaconda3/envs/youtube/lib/python3.7/_dummy_thread.py

m _elementtree              /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_elementtree.cpython-37m-darwin.so

m _functools                

m _hashlib                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_hashlib.cpython-37m-darwin.so

m _heapq                    /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_heapq.cpython-37m-darwin.so

m _imp                      

m _io                       

m _json                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_json.cpython-37m-darwin.so

m _locale                   

m _lzma                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_lzma.cpython-37m-darwin.so

m _md5                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_md5.cpython-37m-darwin.so

m _multibytecodec           /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_multibytecodec.cpython-37m-darwin.so

m _multiprocessing          /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_multiprocessing.cpython-37m-darwin.so

m _opcode                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_opcode.cpython-37m-darwin.so

m _operator                 

m _osx_support              /Users/test/anaconda3/envs/youtube/lib/python3.7/_osx_support.py

m _pickle                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_pickle.cpython-37m-darwin.so

m _posixsubprocess          /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_posixsubprocess.cpython-37m-darwin.so

m _py_abc                   /Users/test/anaconda3/envs/youtube/lib/python3.7/_py_abc.py

m _pydecimal                /Users/test/anaconda3/envs/youtube/lib/python3.7/_pydecimal.py

m _queue                    /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_queue.cpython-37m-darwin.so

m _random                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_random.cpython-37m-darwin.so

m _scproxy                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_scproxy.cpython-37m-darwin.so

m _sha1                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha1.cpython-37m-darwin.so

m _sha256                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha256.cpython-37m-darwin.so

m _sha3                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha3.cpython-37m-darwin.so

m _sha512                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha512.cpython-37m-darwin.so

m _signal                   

m _sitebuiltins             /Users/test/anaconda3/envs/youtube/lib/python3.7/_sitebuiltins.py

m _socket                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_socket.cpython-37m-darwin.so

m _sre                      

m _ssl                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so

m _stat                     

m _string                   

m _strptime                 /Users/test/anaconda3/envs/youtube/lib/python3.7/_strptime.py

m _struct                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_struct.cpython-37m-darwin.so

m _sysconfigdata_m_darwin_darwin /Users/test/anaconda3/envs/youtube/lib/python3.7/_sysconfigdata_m_darwin_darwin.py

m _testcapi                 /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_testcapi.cpython-37m-darwin.so

m _thread                   

m _threading_local          /Users/test/anaconda3/envs/youtube/lib/python3.7/_threading_local.py

m _tkinter                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_tkinter.cpython-37m-darwin.so

m _tracemalloc              

m _uuid                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_uuid.cpython-37m-darwin.so

m _warnings                 

m _weakref                  

m _weakrefset               /Users/test/anaconda3/envs/youtube/lib/python3.7/_weakrefset.py

m abc                       /Users/test/anaconda3/envs/youtube/lib/python3.7/abc.py

m app__init__               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/cx_Freeze/initscripts/Console.py

m app__main__               app.py

m argparse                  /Users/test/anaconda3/envs/youtube/lib/python3.7/argparse.py

m array                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/array.cpython-37m-darwin.so

m ast                       /Users/test/anaconda3/envs/youtube/lib/python3.7/ast.py

m atexit                    

m base64                    /Users/test/anaconda3/envs/youtube/lib/python3.7/base64.py

m bdb                       /Users/test/anaconda3/envs/youtube/lib/python3.7/bdb.py

m binascii                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/binascii.cpython-37m-darwin.so

m bisect                    /Users/test/anaconda3/envs/youtube/lib/python3.7/bisect.py

m bottle                    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/bottle.py

m builtins                  

m bz2                       /Users/test/anaconda3/envs/youtube/lib/python3.7/bz2.py

m calendar                  /Users/test/anaconda3/envs/youtube/lib/python3.7/calendar.py

P certifi                   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/certifi/__init__.py

m certifi.core              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/certifi/core.py

m cgi                       /Users/test/anaconda3/envs/youtube/lib/python3.7/cgi.py

P chardet                   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/__init__.py

m chardet.big5freq          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/big5freq.py

m chardet.big5prober        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/big5prober.py

m chardet.chardistribution  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/chardistribution.py

m chardet.charsetgroupprober /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/charsetgroupprober.py

m chardet.charsetprober     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/charsetprober.py

m chardet.codingstatemachine /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/codingstatemachine.py

m chardet.compat            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/compat.py

m chardet.cp949prober       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/cp949prober.py

m chardet.enums             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/enums.py

m chardet.escprober         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/escprober.py

m chardet.escsm             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/escsm.py

m chardet.eucjpprober       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/eucjpprober.py

m chardet.euckrfreq         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/euckrfreq.py

m chardet.euckrprober       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/euckrprober.py

m chardet.euctwfreq         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/euctwfreq.py

m chardet.euctwprober       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/euctwprober.py

m chardet.gb2312freq        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/gb2312freq.py

m chardet.gb2312prober      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/gb2312prober.py

m chardet.hebrewprober      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/hebrewprober.py

m chardet.jisfreq           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/jisfreq.py

m chardet.jpcntx            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/jpcntx.py

m chardet.langbulgarianmodel /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langbulgarianmodel.py

m chardet.langcyrillicmodel /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langcyrillicmodel.py

m chardet.langgreekmodel    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langgreekmodel.py

m chardet.langhebrewmodel   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langhebrewmodel.py

m chardet.langthaimodel     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langthaimodel.py

m chardet.langturkishmodel  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/langturkishmodel.py

m chardet.latin1prober      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/latin1prober.py

m chardet.mbcharsetprober   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/mbcharsetprober.py

m chardet.mbcsgroupprober   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/mbcsgroupprober.py

m chardet.mbcssm            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/mbcssm.py

m chardet.sbcharsetprober   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/sbcharsetprober.py

m chardet.sbcsgroupprober   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/sbcsgroupprober.py

m chardet.sjisprober        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/sjisprober.py

m chardet.universaldetector /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/universaldetector.py

m chardet.utf8prober        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/utf8prober.py

m chardet.version           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/chardet/version.py

m cmd                       /Users/test/anaconda3/envs/youtube/lib/python3.7/cmd.py

m code                      /Users/test/anaconda3/envs/youtube/lib/python3.7/code.py

m codecs                    /Users/test/anaconda3/envs/youtube/lib/python3.7/codecs.py

m codeop                    /Users/test/anaconda3/envs/youtube/lib/python3.7/codeop.py

P collections               /Users/test/anaconda3/envs/youtube/lib/python3.7/collections/__init__.py

m collections.abc           /Users/test/anaconda3/envs/youtube/lib/python3.7/collections/abc.py

P concurrent                /Users/test/anaconda3/envs/youtube/lib/python3.7/concurrent/__init__.py

P concurrent.futures        /Users/test/anaconda3/envs/youtube/lib/python3.7/concurrent/futures/__init__.py

m concurrent.futures._base  /Users/test/anaconda3/envs/youtube/lib/python3.7/concurrent/futures/_base.py

m concurrent.futures.process /Users/test/anaconda3/envs/youtube/lib/python3.7/concurrent/futures/process.py

m concurrent.futures.thread /Users/test/anaconda3/envs/youtube/lib/python3.7/concurrent/futures/thread.py

m configparser              /Users/test/anaconda3/envs/youtube/lib/python3.7/configparser.py

m contextlib                /Users/test/anaconda3/envs/youtube/lib/python3.7/contextlib.py

m contextvars               /Users/test/anaconda3/envs/youtube/lib/python3.7/contextvars.py

m copy                      /Users/test/anaconda3/envs/youtube/lib/python3.7/copy.py

m copyreg                   /Users/test/anaconda3/envs/youtube/lib/python3.7/copyreg.py

P ctypes                    /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/__init__.py

m ctypes._aix               /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/_aix.py

m ctypes._endian            /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/_endian.py

P ctypes.macholib           /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/macholib/__init__.py

m ctypes.macholib.dyld      /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/macholib/dyld.py

m ctypes.macholib.dylib     /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/macholib/dylib.py

m ctypes.macholib.framework /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/macholib/framework.py

m ctypes.util               /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/util.py

m ctypes.wintypes           /Users/test/anaconda3/envs/youtube/lib/python3.7/ctypes/wintypes.py

m datetime                  /Users/test/anaconda3/envs/youtube/lib/python3.7/datetime.py

m decimal                   /Users/test/anaconda3/envs/youtube/lib/python3.7/decimal.py

m difflib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/difflib.py

m dis                       /Users/test/anaconda3/envs/youtube/lib/python3.7/dis.py

P distutils                 /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/__init__.py

m distutils.ccompiler       /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/ccompiler.py

m distutils.debug           /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/debug.py

m distutils.dep_util        /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dep_util.py

m distutils.dir_util        /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/dir_util.py

m distutils.errors          /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/errors.py

m distutils.fancy_getopt    /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/fancy_getopt.py

m distutils.file_util       /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/file_util.py

m distutils.filelist        /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/filelist.py

m distutils.log             /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/log.py

m distutils.spawn           /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/spawn.py

m distutils.sysconfig       /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/sysconfig.py

m distutils.text_file       /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/text_file.py

m distutils.util            /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/util.py

m distutils.version         /Users/test/anaconda3/envs/youtube/lib/python3.7/distutils/version.py

m doctest                   /Users/test/anaconda3/envs/youtube/lib/python3.7/doctest.py

m dummy_threading           /Users/test/anaconda3/envs/youtube/lib/python3.7/dummy_threading.py

P eel                       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/eel/__init__.py

m eel.browsers              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/eel/browsers.py

m eel.chrome                /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/eel/chrome.py

m eel.edge                  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/eel/edge.py

m eel.electron              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/eel/electron.py

P email                     /Users/test/anaconda3/envs/youtube/lib/python3.7/email/__init__.py

m email._encoded_words      /Users/test/anaconda3/envs/youtube/lib/python3.7/email/_encoded_words.py

m email._header_value_parser /Users/test/anaconda3/envs/youtube/lib/python3.7/email/_header_value_parser.py

m email._parseaddr          /Users/test/anaconda3/envs/youtube/lib/python3.7/email/_parseaddr.py

m email._policybase         /Users/test/anaconda3/envs/youtube/lib/python3.7/email/_policybase.py

m email.base64mime          /Users/test/anaconda3/envs/youtube/lib/python3.7/email/base64mime.py

m email.charset             /Users/test/anaconda3/envs/youtube/lib/python3.7/email/charset.py

m email.contentmanager      /Users/test/anaconda3/envs/youtube/lib/python3.7/email/contentmanager.py

m email.encoders            /Users/test/anaconda3/envs/youtube/lib/python3.7/email/encoders.py

m email.errors              /Users/test/anaconda3/envs/youtube/lib/python3.7/email/errors.py

m email.feedparser          /Users/test/anaconda3/envs/youtube/lib/python3.7/email/feedparser.py

m email.generator           /Users/test/anaconda3/envs/youtube/lib/python3.7/email/generator.py

m email.header              /Users/test/anaconda3/envs/youtube/lib/python3.7/email/header.py

m email.headerregistry      /Users/test/anaconda3/envs/youtube/lib/python3.7/email/headerregistry.py

m email.iterators           /Users/test/anaconda3/envs/youtube/lib/python3.7/email/iterators.py

m email.message             /Users/test/anaconda3/envs/youtube/lib/python3.7/email/message.py

m email.parser              /Users/test/anaconda3/envs/youtube/lib/python3.7/email/parser.py

m email.policy              /Users/test/anaconda3/envs/youtube/lib/python3.7/email/policy.py

m email.quoprimime          /Users/test/anaconda3/envs/youtube/lib/python3.7/email/quoprimime.py

m email.utils               /Users/test/anaconda3/envs/youtube/lib/python3.7/email/utils.py

P encodings                 /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/__init__.py

m encodings.aliases         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/aliases.py

m encodings.ascii           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/ascii.py

m encodings.base64_codec    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/base64_codec.py

m encodings.big5            /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/big5.py

m encodings.big5hkscs       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/big5hkscs.py

m encodings.bz2_codec       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/bz2_codec.py

m encodings.charmap         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/charmap.py

m encodings.cp037           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp037.py

m encodings.cp1006          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1006.py

m encodings.cp1026          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1026.py

m encodings.cp1125          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1125.py

m encodings.cp1140          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1140.py

m encodings.cp1250          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1250.py

m encodings.cp1251          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1251.py

m encodings.cp1252          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1252.py

m encodings.cp1253          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1253.py

m encodings.cp1254          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1254.py

m encodings.cp1255          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1255.py

m encodings.cp1256          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1256.py

m encodings.cp1257          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1257.py

m encodings.cp1258          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp1258.py

m encodings.cp273           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp273.py

m encodings.cp424           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp424.py

m encodings.cp437           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp437.py

m encodings.cp500           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp500.py

m encodings.cp65001         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp65001.py

m encodings.cp720           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp720.py

m encodings.cp737           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp737.py

m encodings.cp775           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp775.py

m encodings.cp850           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp850.py

m encodings.cp852           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp852.py

m encodings.cp855           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp855.py

m encodings.cp856           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp856.py

m encodings.cp857           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp857.py

m encodings.cp858           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp858.py

m encodings.cp860           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp860.py

m encodings.cp861           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp861.py

m encodings.cp862           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp862.py

m encodings.cp863           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp863.py

m encodings.cp864           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp864.py

m encodings.cp865           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp865.py

m encodings.cp866           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp866.py

m encodings.cp869           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp869.py

m encodings.cp874           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp874.py

m encodings.cp875           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp875.py

m encodings.cp932           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp932.py

m encodings.cp949           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp949.py

m encodings.cp950           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/cp950.py

m encodings.euc_jis_2004    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/euc_jis_2004.py

m encodings.euc_jisx0213    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/euc_jisx0213.py

m encodings.euc_jp          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/euc_jp.py

m encodings.euc_kr          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/euc_kr.py

m encodings.gb18030         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/gb18030.py

m encodings.gb2312          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/gb2312.py

m encodings.gbk             /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/gbk.py

m encodings.hex_codec       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/hex_codec.py

m encodings.hp_roman8       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/hp_roman8.py

m encodings.hz              /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/hz.py

m encodings.idna            /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/idna.py

m encodings.iso2022_jp      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp.py

m encodings.iso2022_jp_1    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp_1.py

m encodings.iso2022_jp_2    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp_2.py

m encodings.iso2022_jp_2004 /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp_2004.py

m encodings.iso2022_jp_3    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp_3.py

m encodings.iso2022_jp_ext  /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_jp_ext.py

m encodings.iso2022_kr      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso2022_kr.py

m encodings.iso8859_1       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_1.py

m encodings.iso8859_10      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_10.py

m encodings.iso8859_11      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_11.py

m encodings.iso8859_13      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_13.py

m encodings.iso8859_14      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_14.py

m encodings.iso8859_15      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_15.py

m encodings.iso8859_16      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_16.py

m encodings.iso8859_2       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_2.py

m encodings.iso8859_3       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_3.py

m encodings.iso8859_4       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_4.py

m encodings.iso8859_5       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_5.py

m encodings.iso8859_6       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_6.py

m encodings.iso8859_7       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_7.py

m encodings.iso8859_8       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_8.py

m encodings.iso8859_9       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/iso8859_9.py

m encodings.johab           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/johab.py

m encodings.koi8_r          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/koi8_r.py

m encodings.koi8_t          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/koi8_t.py

m encodings.koi8_u          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/koi8_u.py

m encodings.kz1048          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/kz1048.py

m encodings.latin_1         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/latin_1.py

m encodings.mac_arabic      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_arabic.py

m encodings.mac_centeuro    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_centeuro.py

m encodings.mac_croatian    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_croatian.py

m encodings.mac_cyrillic    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_cyrillic.py

m encodings.mac_farsi       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_farsi.py

m encodings.mac_greek       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_greek.py

m encodings.mac_iceland     /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_iceland.py

m encodings.mac_latin2      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_latin2.py

m encodings.mac_roman       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_roman.py

m encodings.mac_romanian    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_romanian.py

m encodings.mac_turkish     /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mac_turkish.py

m encodings.mbcs            /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/mbcs.py

m encodings.oem             /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/oem.py

m encodings.palmos          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/palmos.py

m encodings.ptcp154         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/ptcp154.py

m encodings.punycode        /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/punycode.py

m encodings.quopri_codec    /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/quopri_codec.py

m encodings.raw_unicode_escape /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/raw_unicode_escape.py

m encodings.rot_13          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/rot_13.py

m encodings.shift_jis       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/shift_jis.py

m encodings.shift_jis_2004  /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/shift_jis_2004.py

m encodings.shift_jisx0213  /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/shift_jisx0213.py

m encodings.tis_620         /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/tis_620.py

m encodings.undefined       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/undefined.py

m encodings.unicode_escape  /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/unicode_escape.py

m encodings.unicode_internal /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/unicode_internal.py

m encodings.utf_16          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_16.py

m encodings.utf_16_be       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_16_be.py

m encodings.utf_16_le       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_16_le.py

m encodings.utf_32          /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_32.py

m encodings.utf_32_be       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_32_be.py

m encodings.utf_32_le       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_32_le.py

m encodings.utf_7           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_7.py

m encodings.utf_8           /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_8.py

m encodings.utf_8_sig       /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/utf_8_sig.py

m encodings.uu_codec        /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/uu_codec.py

m encodings.zlib_codec      /Users/test/anaconda3/envs/youtube/lib/python3.7/encodings/zlib_codec.py

m enum                      /Users/test/anaconda3/envs/youtube/lib/python3.7/enum.py

m errno                     

m faulthandler              

m fcntl                     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/fcntl.cpython-37m-darwin.so

m fnmatch                   /Users/test/anaconda3/envs/youtube/lib/python3.7/fnmatch.py

m ftplib                    /Users/test/anaconda3/envs/youtube/lib/python3.7/ftplib.py

m functools                 /Users/test/anaconda3/envs/youtube/lib/python3.7/functools.py

m gc                        

m genericpath               /Users/test/anaconda3/envs/youtube/lib/python3.7/genericpath.py

m getopt                    /Users/test/anaconda3/envs/youtube/lib/python3.7/getopt.py

m getpass                   /Users/test/anaconda3/envs/youtube/lib/python3.7/getpass.py

m gettext                   /Users/test/anaconda3/envs/youtube/lib/python3.7/gettext.py

P gevent                    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/__init__.py

m gevent._abstract_linkable /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_abstract_linkable.py

m gevent._compat            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_compat.py

m gevent._config            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_config.py

P gevent._ffi               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ffi/__init__.py

m gevent._ffi.callback      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ffi/callback.py

m gevent._ffi.loop          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ffi/loop.py

m gevent._ffi.watcher       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ffi/watcher.py

m gevent._fileobjectcommon  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_fileobjectcommon.py

m gevent._fileobjectposix   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_fileobjectposix.py

m gevent._gevent_c_abstract_linkable /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_abstract_linkable.cpython-37m-darwin.so

m gevent._gevent_c_greenlet_primitives /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_greenlet_primitives.cpython-37m-darwin.so

m gevent._gevent_c_hub_local /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_hub_local.cpython-37m-darwin.so

m gevent._gevent_c_hub_primitives /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_hub_primitives.cpython-37m-darwin.so

m gevent._gevent_c_ident    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_ident.cpython-37m-darwin.so

m gevent._gevent_c_imap     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_imap.cpython-37m-darwin.so

m gevent._gevent_c_semaphore /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_semaphore.cpython-37m-darwin.so

m gevent._gevent_c_tracer   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_tracer.cpython-37m-darwin.so

m gevent._gevent_c_waiter   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_waiter.cpython-37m-darwin.so

m gevent._gevent_cevent     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cevent.cpython-37m-darwin.so

m gevent._gevent_cgreenlet  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cgreenlet.cpython-37m-darwin.so

m gevent._gevent_clocal     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_clocal.cpython-37m-darwin.so

m gevent._gevent_cqueue     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cqueue.cpython-37m-darwin.so

m gevent._greenlet_primitives /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_greenlet_primitives.py

m gevent._hub_local         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_hub_local.py

m gevent._hub_primitives    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_hub_primitives.py

m gevent._ident             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ident.py

m gevent._imap              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_imap.py

m gevent._interfaces        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_interfaces.py

m gevent._monitor           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_monitor.py

m gevent._patcher           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_patcher.py

m gevent._semaphore         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_semaphore.py

m gevent._socket2           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_socket2.py

m gevent._socket3           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_socket3.py

m gevent._socketcommon      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_socketcommon.py

m gevent._ssl2              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ssl2.py

m gevent._ssl3              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_ssl3.py

m gevent._sslgte279         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_sslgte279.py

m gevent._tblib             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_tblib.py

m gevent._threading         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_threading.py

m gevent._tracer            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_tracer.py

m gevent._util              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_util.py

m gevent._util_py2          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_util_py2.py

m gevent._waiter            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_waiter.py

m gevent.ares               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/ares.py

m gevent.backdoor           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/backdoor.py

m gevent.baseserver         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/baseserver.py

m gevent.builtins           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/builtins.py

m gevent.contextvars        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/contextvars.py

m gevent.core               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/core.py

m gevent.event              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/event.py

m gevent.events             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/events.py

m gevent.exceptions         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/exceptions.py

m gevent.fileobject         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/fileobject.py

m gevent.greenlet           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/greenlet.py

m gevent.hub                /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/hub.py

P gevent.libev              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/__init__.py

m gevent.libev._corecffi    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/_corecffi.abi3.so

m gevent.libev._corecffi_build /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/_corecffi_build.py

m gevent.libev.corecext     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/corecext.cpython-37m-darwin.so

m gevent.libev.corecffi     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/corecffi.py

m gevent.libev.watcher      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/watcher.py

P gevent.libuv              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/__init__.py

m gevent.libuv._corecffi    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/_corecffi.abi3.so

m gevent.libuv._corecffi_build /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/_corecffi_build.py

m gevent.libuv.loop         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/loop.py

m gevent.libuv.watcher      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/watcher.py

m gevent.local              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/local.py

m gevent.lock               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/lock.py

m gevent.monkey             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/monkey.py

m gevent.os                 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/os.py

m gevent.pool               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/pool.py

m gevent.pywsgi             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/pywsgi.py

m gevent.queue              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/queue.py

P gevent.resolver           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/__init__.py

m gevent.resolver._addresses /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/_addresses.py

m gevent.resolver._hostsfile /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/_hostsfile.py

m gevent.resolver.ares      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/ares.py

m gevent.resolver.blocking  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/blocking.py

m gevent.resolver.cares     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/cares.cpython-37m-darwin.so

m gevent.resolver.dnspython /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/dnspython.py

m gevent.resolver.thread    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/thread.py

m gevent.resolver_ares      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver_ares.py

m gevent.resolver_thread    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver_thread.py

m gevent.select             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/select.py

m gevent.selectors          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/selectors.py

m gevent.server             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/server.py

m gevent.signal             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/signal.py

m gevent.socket             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/socket.py

m gevent.ssl                /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/ssl.py

m gevent.subprocess         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/subprocess.py

P gevent.testing            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/__init__.py

m gevent.testing.errorhandler /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/errorhandler.py

m gevent.testing.exception  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/exception.py

m gevent.testing.flaky      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/flaky.py

m gevent.testing.hub        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/hub.py

m gevent.testing.leakcheck  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/leakcheck.py

m gevent.testing.modules    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/modules.py

m gevent.testing.monkey_test /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/monkey_test.py

m gevent.testing.openfiles  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/openfiles.py

m gevent.testing.params     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/params.py

m gevent.testing.patched_tests_setup /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/patched_tests_setup.py

m gevent.testing.resources  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/resources.py

m gevent.testing.six        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/six.py

m gevent.testing.skipping   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/skipping.py

m gevent.testing.sockets    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/sockets.py

m gevent.testing.support    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/support.py

m gevent.testing.switching  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/switching.py

m gevent.testing.sysinfo    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/sysinfo.py

m gevent.testing.testcase   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/testcase.py

m gevent.testing.testrunner /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/testrunner.py

m gevent.testing.timing     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/timing.py

m gevent.testing.travis     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/travis.py

m gevent.testing.util       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/testing/util.py

P gevent.tests              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/__init__.py

m gevent.tests.__main__     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/__main__.py

m gevent.tests._blocks_at_top_level /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_blocks_at_top_level.py

m gevent.tests._import_import_patch /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_import_import_patch.py

m gevent.tests._import_patch /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_import_patch.py

m gevent.tests._import_wait /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_import_wait.py

m gevent.tests._imports_at_top_level /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_imports_at_top_level.py

m gevent.tests._imports_imports_at_top_level /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/_imports_imports_at_top_level.py

m gevent.tests.getaddrinfo_module /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/getaddrinfo_module.py

m gevent.tests.known_failures /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/known_failures.py

m gevent.tests.lock_tests   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/lock_tests.py

P gevent.tests.monkey_package /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/__init__.py

m gevent.tests.monkey_package.__main__ /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/__main__.py

m gevent.tests.monkey_package.issue1526_no_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/issue1526_no_monkey.py

m gevent.tests.monkey_package.issue1526_with_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/issue1526_with_monkey.py

m gevent.tests.monkey_package.issue302monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/issue302monkey.py

m gevent.tests.monkey_package.script /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/script.py

m gevent.tests.monkey_package.threadpool_monkey_patches /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/threadpool_monkey_patches.py

m gevent.tests.monkey_package.threadpool_no_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/monkey_package/threadpool_no_monkey.py

m gevent.tests.test__GreenletExit /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__GreenletExit.py

m gevent.tests.test___config /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test___config.py

m gevent.tests.test___ident /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test___ident.py

m gevent.tests.test___monitor /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test___monitor.py

m gevent.tests.test___monkey_patching /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test___monkey_patching.py

m gevent.tests.test__all__  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__all__.py

m gevent.tests.test__api    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__api.py

m gevent.tests.test__api_timeout /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__api_timeout.py

m gevent.tests.test__ares_host_result /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__ares_host_result.py

m gevent.tests.test__ares_timeout /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__ares_timeout.py

m gevent.tests.test__backdoor /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__backdoor.py

m gevent.tests.test__close_backend_fd /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__close_backend_fd.py

m gevent.tests.test__compat /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__compat.py

m gevent.tests.test__contextvars /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__contextvars.py

m gevent.tests.test__core   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core.py

m gevent.tests.test__core_async /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_async.py

m gevent.tests.test__core_callback /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_callback.py

m gevent.tests.test__core_fork /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_fork.py

m gevent.tests.test__core_loop_run /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_loop_run.py

m gevent.tests.test__core_stat /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_stat.py

m gevent.tests.test__core_timer /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_timer.py

m gevent.tests.test__core_watcher /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__core_watcher.py

m gevent.tests.test__destroy /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__destroy.py

m gevent.tests.test__destroy_default_loop /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__destroy_default_loop.py

m gevent.tests.test__doctests /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__doctests.py

m gevent.tests.test__environ /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__environ.py

m gevent.tests.test__event  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__event.py

m gevent.tests.test__events /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__events.py

m gevent.tests.test__example_echoserver /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_echoserver.py

m gevent.tests.test__example_portforwarder /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_portforwarder.py

m gevent.tests.test__example_udp_client /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_udp_client.py

m gevent.tests.test__example_udp_server /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_udp_server.py

m gevent.tests.test__example_webproxy /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_webproxy.py

m gevent.tests.test__example_wsgiserver /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_wsgiserver.py

m gevent.tests.test__example_wsgiserver_ssl /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__example_wsgiserver_ssl.py

m gevent.tests.test__examples /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__examples.py

m gevent.tests.test__exc_info /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__exc_info.py

m gevent.tests.test__execmodules /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__execmodules.py

m gevent.tests.test__fileobject /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__fileobject.py

m gevent.tests.test__getaddrinfo_import /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__getaddrinfo_import.py

m gevent.tests.test__greenio /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__greenio.py

m gevent.tests.test__greenlet /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__greenlet.py

m gevent.tests.test__greenletset /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__greenletset.py

m gevent.tests.test__greenness /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__greenness.py

m gevent.tests.test__hub    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__hub.py

m gevent.tests.test__hub_join /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__hub_join.py

m gevent.tests.test__hub_join_timeout /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__hub_join_timeout.py

m gevent.tests.test__import_blocking_in_greenlet /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__import_blocking_in_greenlet.py

m gevent.tests.test__import_wait /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__import_wait.py

m gevent.tests.test__issue112 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue112.py

m gevent.tests.test__issue230 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue230.py

m gevent.tests.test__issue330 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue330.py

m gevent.tests.test__issue467 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue467.py

m gevent.tests.test__issue6 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue6.py

m gevent.tests.test__issue600 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue600.py

m gevent.tests.test__issue607 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue607.py

m gevent.tests.test__issue639 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue639.py

m gevent.tests.test__issue_728 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issue_728.py

m gevent.tests.test__issues461_471 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__issues461_471.py

m gevent.tests.test__iwait  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__iwait.py

m gevent.tests.test__joinall /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__joinall.py

m gevent.tests.test__local  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__local.py

m gevent.tests.test__lock   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__lock.py

m gevent.tests.test__loop_callback /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__loop_callback.py

m gevent.tests.test__makefile_ref /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__makefile_ref.py

m gevent.tests.test__memleak /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__memleak.py

m gevent.tests.test__monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey.py

m gevent.tests.test__monkey_builtins_future /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_builtins_future.py

m gevent.tests.test__monkey_futures_thread /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_futures_thread.py

m gevent.tests.test__monkey_hub_in_thread /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_hub_in_thread.py

m gevent.tests.test__monkey_logging /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_logging.py

m gevent.tests.test__monkey_module_run /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_module_run.py

m gevent.tests.test__monkey_multiple_imports /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_multiple_imports.py

m gevent.tests.test__monkey_queue /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_queue.py

m gevent.tests.test__monkey_select /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_select.py

m gevent.tests.test__monkey_selectors /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_selectors.py

m gevent.tests.test__monkey_sigchld /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_sigchld.py

m gevent.tests.test__monkey_sigchld_2 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_sigchld_2.py

m gevent.tests.test__monkey_sigchld_3 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_sigchld_3.py

m gevent.tests.test__monkey_ssl_warning /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_ssl_warning.py

m gevent.tests.test__monkey_ssl_warning2 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_ssl_warning2.py

m gevent.tests.test__monkey_ssl_warning3 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__monkey_ssl_warning3.py

m gevent.tests.test__nondefaultloop /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__nondefaultloop.py

m gevent.tests.test__order  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__order.py

m gevent.tests.test__os     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__os.py

m gevent.tests.test__pool   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__pool.py

m gevent.tests.test__pywsgi /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__pywsgi.py

m gevent.tests.test__queue  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__queue.py

m gevent.tests.test__real_greenlet /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__real_greenlet.py

m gevent.tests.test__refcount /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__refcount.py

m gevent.tests.test__refcount_core /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__refcount_core.py

m gevent.tests.test__resolver_dnspython /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__resolver_dnspython.py

m gevent.tests.test__select /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__select.py

m gevent.tests.test__selectors /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__selectors.py

m gevent.tests.test__semaphore /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__semaphore.py

m gevent.tests.test__server /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__server.py

m gevent.tests.test__server_pywsgi /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__server_pywsgi.py

m gevent.tests.test__signal /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__signal.py

m gevent.tests.test__sleep0 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__sleep0.py

m gevent.tests.test__socket /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket.py

m gevent.tests.test__socket_close /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_close.py

m gevent.tests.test__socket_dns /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_dns.py

m gevent.tests.test__socket_dns6 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_dns6.py

m gevent.tests.test__socket_errors /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_errors.py

m gevent.tests.test__socket_ex /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_ex.py

m gevent.tests.test__socket_send_memoryview /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_send_memoryview.py

m gevent.tests.test__socket_ssl /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_ssl.py

m gevent.tests.test__socket_timeout /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socket_timeout.py

m gevent.tests.test__socketpair /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__socketpair.py

m gevent.tests.test__ssl    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__ssl.py

m gevent.tests.test__subprocess /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__subprocess.py

m gevent.tests.test__subprocess_interrupted /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__subprocess_interrupted.py

m gevent.tests.test__subprocess_poll /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__subprocess_poll.py

m gevent.tests.test__systemerror /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__systemerror.py

m gevent.tests.test__thread /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__thread.py

m gevent.tests.test__threading /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading.py

m gevent.tests.test__threading_2 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_2.py

m gevent.tests.test__threading_before_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_before_monkey.py

m gevent.tests.test__threading_holding_lock_while_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_holding_lock_while_monkey.py

m gevent.tests.test__threading_monkey_in_thread /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_monkey_in_thread.py

m gevent.tests.test__threading_native_before_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_native_before_monkey.py

m gevent.tests.test__threading_no_monkey /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_no_monkey.py

m gevent.tests.test__threading_patched_local /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_patched_local.py

m gevent.tests.test__threading_vs_settrace /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threading_vs_settrace.py

m gevent.tests.test__threadpool /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threadpool.py

m gevent.tests.test__threadpool_executor_patched /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__threadpool_executor_patched.py

m gevent.tests.test__timeout /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__timeout.py

m gevent.tests.test__util   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/tests/test__util.py

m gevent.thread             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/thread.py

m gevent.threading          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/threading.py

m gevent.threadpool         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/threadpool.py

m gevent.time               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/time.py

m gevent.timeout            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/timeout.py

m gevent.util               /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/util.py

m gevent.win32util          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/win32util.py

m glob                      /Users/test/anaconda3/envs/youtube/lib/python3.7/glob.py

m greenlet                  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/greenlet.cpython-37m-darwin.so

m grp                       /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/grp.cpython-37m-darwin.so

m gzip                      /Users/test/anaconda3/envs/youtube/lib/python3.7/gzip.py

m hashlib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/hashlib.py

m heapq                     /Users/test/anaconda3/envs/youtube/lib/python3.7/heapq.py

m hmac                      /Users/test/anaconda3/envs/youtube/lib/python3.7/hmac.py

P html                      /Users/test/anaconda3/envs/youtube/lib/python3.7/html/__init__.py

m html.entities             /Users/test/anaconda3/envs/youtube/lib/python3.7/html/entities.py

P http                      /Users/test/anaconda3/envs/youtube/lib/python3.7/http/__init__.py

m http.client               /Users/test/anaconda3/envs/youtube/lib/python3.7/http/client.py

m http.cookiejar            /Users/test/anaconda3/envs/youtube/lib/python3.7/http/cookiejar.py

m http.cookies              /Users/test/anaconda3/envs/youtube/lib/python3.7/http/cookies.py

m http.server               /Users/test/anaconda3/envs/youtube/lib/python3.7/http/server.py

P idna                      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/__init__.py

m idna.core                 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/core.py

m idna.idnadata             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/idnadata.py

m idna.intranges            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/intranges.py

m idna.package_data         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/package_data.py

m idna.uts46data            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/idna/uts46data.py

m imp                       /Users/test/anaconda3/envs/youtube/lib/python3.7/imp.py

P importlib                 /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/__init__.py

m importlib._bootstrap      /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/_bootstrap.py

m importlib._bootstrap_external /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/_bootstrap_external.py

m importlib.abc             /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/abc.py

m importlib.machinery       /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/machinery.py

m importlib.resources       /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/resources.py

m importlib.util            /Users/test/anaconda3/envs/youtube/lib/python3.7/importlib/util.py

m inspect                   /Users/test/anaconda3/envs/youtube/lib/python3.7/inspect.py

m io                        /Users/test/anaconda3/envs/youtube/lib/python3.7/io.py

m ipaddress                 /Users/test/anaconda3/envs/youtube/lib/python3.7/ipaddress.py

m itertools                 

P json                      /Users/test/anaconda3/envs/youtube/lib/python3.7/json/__init__.py

m json.decoder              /Users/test/anaconda3/envs/youtube/lib/python3.7/json/decoder.py

m json.encoder              /Users/test/anaconda3/envs/youtube/lib/python3.7/json/encoder.py

m json.scanner              /Users/test/anaconda3/envs/youtube/lib/python3.7/json/scanner.py

m keyword                   /Users/test/anaconda3/envs/youtube/lib/python3.7/keyword.py

P lib2to3                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/__init__.py

m lib2to3.btm_matcher       /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/btm_matcher.py

m lib2to3.btm_utils         /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/btm_utils.py

m lib2to3.fixer_util        /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/fixer_util.py

m lib2to3.patcomp           /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/patcomp.py

P lib2to3.pgen2             /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/__init__.py

m lib2to3.pgen2.driver      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/driver.py

m lib2to3.pgen2.grammar     /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/grammar.py

m lib2to3.pgen2.literals    /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/literals.py

m lib2to3.pgen2.parse       /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/parse.py

m lib2to3.pgen2.pgen        /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/pgen.py

m lib2to3.pgen2.token       /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/token.py

m lib2to3.pgen2.tokenize    /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pgen2/tokenize.py

m lib2to3.pygram            /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pygram.py

m lib2to3.pytree            /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/pytree.py

m lib2to3.refactor          /Users/test/anaconda3/envs/youtube/lib/python3.7/lib2to3/refactor.py

m linecache                 /Users/test/anaconda3/envs/youtube/lib/python3.7/linecache.py

m locale                    /Users/test/anaconda3/envs/youtube/lib/python3.7/locale.py

P logging                   /Users/test/anaconda3/envs/youtube/lib/python3.7/logging/__init__.py

m logging.handlers          /Users/test/anaconda3/envs/youtube/lib/python3.7/logging/handlers.py

m lzma                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lzma.py

m marshal                   

m math                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so

m mimetypes                 /Users/test/anaconda3/envs/youtube/lib/python3.7/mimetypes.py

m mmap                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/mmap.cpython-37m-darwin.so

P modules                   

P multiprocessing           /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/__init__.py

m multiprocessing.connection /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/connection.py

m multiprocessing.context   /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/context.py

P multiprocessing.dummy     /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/dummy/__init__.py

m multiprocessing.dummy.connection /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/dummy/connection.py

m multiprocessing.forkserver /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/forkserver.py

m multiprocessing.heap      /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/heap.py

m multiprocessing.managers  /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/managers.py

m multiprocessing.pool      /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/pool.py

m multiprocessing.popen_fork /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/popen_fork.py

m multiprocessing.popen_forkserver /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/popen_forkserver.py

m multiprocessing.popen_spawn_posix /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/popen_spawn_posix.py

m multiprocessing.popen_spawn_win32 /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/popen_spawn_win32.py

m multiprocessing.process   /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/process.py

m multiprocessing.queues    /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/queues.py

m multiprocessing.reduction /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/reduction.py

m multiprocessing.resource_sharer /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/resource_sharer.py

m multiprocessing.semaphore_tracker /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/semaphore_tracker.py

m multiprocessing.sharedctypes /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/sharedctypes.py

m multiprocessing.spawn     /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/spawn.py

m multiprocessing.synchronize /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/synchronize.py

m multiprocessing.util      /Users/test/anaconda3/envs/youtube/lib/python3.7/multiprocessing/util.py

m netrc                     /Users/test/anaconda3/envs/youtube/lib/python3.7/netrc.py

m nntplib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/nntplib.py

m ntpath                    /Users/test/anaconda3/envs/youtube/lib/python3.7/ntpath.py

m numbers                   /Users/test/anaconda3/envs/youtube/lib/python3.7/numbers.py

m opcode                    /Users/test/anaconda3/envs/youtube/lib/python3.7/opcode.py

m operator                  /Users/test/anaconda3/envs/youtube/lib/python3.7/operator.py

m optparse                  /Users/test/anaconda3/envs/youtube/lib/python3.7/optparse.py

m os                        /Users/test/anaconda3/envs/youtube/lib/python3.7/os.py

m pathlib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/pathlib.py

m pdb                       /Users/test/anaconda3/envs/youtube/lib/python3.7/pdb.py

m pickle                    /Users/test/anaconda3/envs/youtube/lib/python3.7/pickle.py

P pkg_resources             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/__init__.py

P pkg_resources._vendor     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py

m pkg_resources._vendor.appdirs /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py

P pkg_resources._vendor.packaging /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__init__.py

m pkg_resources._vendor.packaging.__about__ /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/__about__.py

m pkg_resources._vendor.packaging._compat /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_compat.py

m pkg_resources._vendor.packaging._structures /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_structures.py

m pkg_resources._vendor.packaging._typing /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/_typing.py

m pkg_resources._vendor.packaging.markers /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/markers.py

m pkg_resources._vendor.packaging.requirements /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/requirements.py

m pkg_resources._vendor.packaging.specifiers /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/specifiers.py

m pkg_resources._vendor.packaging.tags /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/tags.py

m pkg_resources._vendor.packaging.utils /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/utils.py

m pkg_resources._vendor.packaging.version /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/packaging/version.py

m pkg_resources._vendor.pyparsing /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py

m pkg_resources._vendor.six /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/_vendor/six.py

P pkg_resources.extern      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pkg_resources/extern/__init__.py

m pkgutil                   /Users/test/anaconda3/envs/youtube/lib/python3.7/pkgutil.py

m platform                  /Users/test/anaconda3/envs/youtube/lib/python3.7/platform.py

m plistlib                  /Users/test/anaconda3/envs/youtube/lib/python3.7/plistlib.py

m posix                     

m posixpath                 /Users/test/anaconda3/envs/youtube/lib/python3.7/posixpath.py

m pprint                    /Users/test/anaconda3/envs/youtube/lib/python3.7/pprint.py

m pwd                       

m py_compile                /Users/test/anaconda3/envs/youtube/lib/python3.7/py_compile.py

m pydoc                     /Users/test/anaconda3/envs/youtube/lib/python3.7/pydoc.py

P pydoc_data                /Users/test/anaconda3/envs/youtube/lib/python3.7/pydoc_data/__init__.py

m pydoc_data.topics         /Users/test/anaconda3/envs/youtube/lib/python3.7/pydoc_data/topics.py

m pyexpat                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/pyexpat.cpython-37m-darwin.so

m pyparsing                 /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pyparsing.py

P pytube                    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/__init__.py

m pytube.__main__           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/__main__.py

m pytube.captions           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/captions.py

m pytube.cipher             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/cipher.py

P pytube.contrib            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/contrib/__init__.py

m pytube.contrib.playlist   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/contrib/playlist.py

m pytube.exceptions         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/exceptions.py

m pytube.extract            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/extract.py

m pytube.helpers            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/helpers.py

m pytube.itags              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/itags.py

m pytube.metadata           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/metadata.py

m pytube.monostate          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/monostate.py

m pytube.parser             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/parser.py

m pytube.query              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/query.py

m pytube.request            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/request.py

m pytube.streams            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/streams.py

m pytube.version            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/pytube/version.py

m queue                     /Users/test/anaconda3/envs/youtube/lib/python3.7/queue.py

m quopri                    /Users/test/anaconda3/envs/youtube/lib/python3.7/quopri.py

m random                    /Users/test/anaconda3/envs/youtube/lib/python3.7/random.py

m re                        /Users/test/anaconda3/envs/youtube/lib/python3.7/re.py

m readline                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/readline.cpython-37m-darwin.so

m reprlib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/reprlib.py

P requests                  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/__init__.py

m requests.__version__      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/__version__.py

m requests._internal_utils  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/_internal_utils.py

m requests.adapters         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/adapters.py

m requests.api              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/api.py

m requests.auth             /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/auth.py

m requests.certs            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/certs.py

m requests.compat           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/compat.py

m requests.cookies          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/cookies.py

m requests.exceptions       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/exceptions.py

m requests.hooks            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/hooks.py

m requests.models           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/models.py

m requests.packages         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/packages.py

m requests.sessions         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/sessions.py

m requests.status_codes     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/status_codes.py

m requests.structures       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/structures.py

m requests.utils            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/requests/utils.py

m resource                  /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/resource.cpython-37m-darwin.so

m rlcompleter               /Users/test/anaconda3/envs/youtube/lib/python3.7/rlcompleter.py

m runpy                     /Users/test/anaconda3/envs/youtube/lib/python3.7/runpy.py

m sched                     /Users/test/anaconda3/envs/youtube/lib/python3.7/sched.py

m select                    /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/select.cpython-37m-darwin.so

m selectors                 /Users/test/anaconda3/envs/youtube/lib/python3.7/selectors.py

m shlex                     /Users/test/anaconda3/envs/youtube/lib/python3.7/shlex.py

m shutil                    /Users/test/anaconda3/envs/youtube/lib/python3.7/shutil.py

m signal                    /Users/test/anaconda3/envs/youtube/lib/python3.7/signal.py

m site                      /Users/test/anaconda3/envs/youtube/lib/python3.7/site.py

m smtplib                   /Users/test/anaconda3/envs/youtube/lib/python3.7/smtplib.py

m socket                    /Users/test/anaconda3/envs/youtube/lib/python3.7/socket.py

m socketserver              /Users/test/anaconda3/envs/youtube/lib/python3.7/socketserver.py

m sre_compile               /Users/test/anaconda3/envs/youtube/lib/python3.7/sre_compile.py

m sre_constants             /Users/test/anaconda3/envs/youtube/lib/python3.7/sre_constants.py

m sre_parse                 /Users/test/anaconda3/envs/youtube/lib/python3.7/sre_parse.py

m ssl                       /Users/test/anaconda3/envs/youtube/lib/python3.7/ssl.py

m stat                      /Users/test/anaconda3/envs/youtube/lib/python3.7/stat.py

m string                    /Users/test/anaconda3/envs/youtube/lib/python3.7/string.py

m stringprep                /Users/test/anaconda3/envs/youtube/lib/python3.7/stringprep.py

m struct                    /Users/test/anaconda3/envs/youtube/lib/python3.7/struct.py

m subprocess                /Users/test/anaconda3/envs/youtube/lib/python3.7/subprocess.py

m sys                       

m sysconfig                 /Users/test/anaconda3/envs/youtube/lib/python3.7/sysconfig.py

m tarfile                   /Users/test/anaconda3/envs/youtube/lib/python3.7/tarfile.py

m tempfile                  /Users/test/anaconda3/envs/youtube/lib/python3.7/tempfile.py

m termios                   /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/termios.cpython-37m-darwin.so

P test                      /Users/test/anaconda3/envs/youtube/lib/python3.7/test/__init__.py

P test.support              /Users/test/anaconda3/envs/youtube/lib/python3.7/test/support/__init__.py

m test.support.script_helper /Users/test/anaconda3/envs/youtube/lib/python3.7/test/support/script_helper.py

m test.support.testresult   /Users/test/anaconda3/envs/youtube/lib/python3.7/test/support/testresult.py

m test.test_support         /Users/test/anaconda3/envs/youtube/lib/python3.7/test/test_support.py

m textwrap                  /Users/test/anaconda3/envs/youtube/lib/python3.7/textwrap.py

m threading                 /Users/test/anaconda3/envs/youtube/lib/python3.7/threading.py

m time                      

P tkinter                   /Users/test/anaconda3/envs/youtube/lib/python3.7/tkinter/__init__.py

m tkinter.constants         /Users/test/anaconda3/envs/youtube/lib/python3.7/tkinter/constants.py

m token                     /Users/test/anaconda3/envs/youtube/lib/python3.7/token.py

m tokenize                  /Users/test/anaconda3/envs/youtube/lib/python3.7/tokenize.py

m traceback                 /Users/test/anaconda3/envs/youtube/lib/python3.7/traceback.py

m tracemalloc               /Users/test/anaconda3/envs/youtube/lib/python3.7/tracemalloc.py

m tty                       /Users/test/anaconda3/envs/youtube/lib/python3.7/tty.py

m types                     /Users/test/anaconda3/envs/youtube/lib/python3.7/types.py

m typing                    /Users/test/anaconda3/envs/youtube/lib/python3.7/typing.py

m typing.io                 /Users/test/anaconda3/envs/youtube/lib/python3.7/io.py

m unicodedata               /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/unicodedata.cpython-37m-darwin.so

P unittest                  /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/__init__.py

m unittest.case             /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/case.py

m unittest.loader           /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/loader.py

m unittest.main             /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/main.py

m unittest.mock             /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/mock.py

m unittest.result           /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/result.py

m unittest.runner           /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/runner.py

m unittest.signals          /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/signals.py

m unittest.suite            /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/suite.py

m unittest.util             /Users/test/anaconda3/envs/youtube/lib/python3.7/unittest/util.py

P urllib                    /Users/test/anaconda3/envs/youtube/lib/python3.7/urllib/__init__.py

m urllib.error              /Users/test/anaconda3/envs/youtube/lib/python3.7/urllib/error.py

m urllib.parse              /Users/test/anaconda3/envs/youtube/lib/python3.7/urllib/parse.py

m urllib.request            /Users/test/anaconda3/envs/youtube/lib/python3.7/urllib/request.py

m urllib.response           /Users/test/anaconda3/envs/youtube/lib/python3.7/urllib/response.py

P urllib3                   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/__init__.py

m urllib3._collections      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/_collections.py

m urllib3._version          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/_version.py

m urllib3.connection        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/connection.py

m urllib3.connectionpool    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/connectionpool.py

P urllib3.contrib           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/contrib/__init__.py

m urllib3.contrib._appengine_environ /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/contrib/_appengine_environ.py

m urllib3.contrib.pyopenssl /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/contrib/pyopenssl.py

m urllib3.contrib.socks     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/contrib/socks.py

m urllib3.exceptions        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/exceptions.py

m urllib3.fields            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/fields.py

m urllib3.filepost          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/filepost.py

P urllib3.packages          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/__init__.py

P urllib3.packages.backports /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/backports/__init__.py

m urllib3.packages.backports.makefile /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/backports/makefile.py

m urllib3.packages.six      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/six.py

P urllib3.packages.ssl_match_hostname /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__init__.py

m urllib3.packages.ssl_match_hostname._implementation /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/_implementation.py

m urllib3.poolmanager       /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/poolmanager.py

m urllib3.request           /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/request.py

m urllib3.response          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/response.py

P urllib3.util              /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/__init__.py

m urllib3.util.connection   /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/connection.py

m urllib3.util.proxy        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/proxy.py

m urllib3.util.queue        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/queue.py

m urllib3.util.request      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/request.py

m urllib3.util.response     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/response.py

m urllib3.util.retry        /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/retry.py

m urllib3.util.ssl_         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/ssl_.py

m urllib3.util.ssltransport /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/ssltransport.py

m urllib3.util.timeout      /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/timeout.py

m urllib3.util.url          /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/url.py

m urllib3.util.wait         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/urllib3/util/wait.py

m uu                        /Users/test/anaconda3/envs/youtube/lib/python3.7/uu.py

m uuid                      /Users/test/anaconda3/envs/youtube/lib/python3.7/uuid.py

m warnings                  /Users/test/anaconda3/envs/youtube/lib/python3.7/warnings.py

m weakref                   /Users/test/anaconda3/envs/youtube/lib/python3.7/weakref.py

m webbrowser                /Users/test/anaconda3/envs/youtube/lib/python3.7/webbrowser.py

m whichcraft                /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/whichcraft.py

P wsgiref                   /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/__init__.py

m wsgiref.handlers          /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/handlers.py

m wsgiref.headers           /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/headers.py

m wsgiref.simple_server     /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/simple_server.py

m wsgiref.util              /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/util.py

m wsgiref.validate          /Users/test/anaconda3/envs/youtube/lib/python3.7/wsgiref/validate.py

P xml                       /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/__init__.py

P xml.etree                 /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/etree/__init__.py

m xml.etree.ElementPath     /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/etree/ElementPath.py

m xml.etree.ElementTree     /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/etree/ElementTree.py

P xml.parsers               /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/parsers/__init__.py

m xml.parsers.expat         /Users/test/anaconda3/envs/youtube/lib/python3.7/xml/parsers/expat.py

P xmlrpc                    /Users/test/anaconda3/envs/youtube/lib/python3.7/xmlrpc/__init__.py

m xmlrpc.client             /Users/test/anaconda3/envs/youtube/lib/python3.7/xmlrpc/client.py

m zipfile                   /Users/test/anaconda3/envs/youtube/lib/python3.7/zipfile.py

m zipimport                 

m zlib                      /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/zlib.cpython-37m-darwin.so

P zope                      

P zope.event                /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/event/__init__.py

P zope.interface            /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/__init__.py

m zope.interface._compat    /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/_compat.py

m zope.interface._zope_interface_coptimizations /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/_zope_interface_coptimizations.cpython-37m-darwin.so

m zope.interface.advice     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/advice.py

m zope.interface.declarations /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/declarations.py

m zope.interface.exceptions /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/exceptions.py

m zope.interface.interface  /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/interface.py

m zope.interface.interfaces /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/interfaces.py

m zope.interface.ro         /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/ro.py

m zope.interface.verify     /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/verify.py

Missing modules:
? BaseHTTPServer imported from gevent.tests.test__greenness
? Cheetah.Template imported from bottle
? ConfigParser imported from bottle
? Cookie imported from bottle, requests.compat
? OpenSSL.SSL imported from urllib3.contrib.pyopenssl
? OpenSSL.crypto imported from urllib3.contrib.pyopenssl
? Queue imported from gevent.queue, urllib3.util.queue
? SimpleHTTPServer imported from gevent.tests.test__greenness
? StringIO imported from bottle, pkg_resources._vendor.six, requests.compat, urllib3.packages.six
? UserDict imported from bottle
? __builtin__ imported from gevent._compat, gevent._ffi.loop, gevent.backdoor, gevent.builtins, gevent.libev.corecffi, gevent.monkey, gevent.testing.six, pkg_resources._vendor.pyparsing, pyparsing
? __main__ imported from bdb, pdb, pkg_resources, rlcompleter
? __pypy__ imported from gevent._tblib
? _blocks_at_top_level imported from gevent.tests.test__import_blocking_in_greenlet
? _continuation imported from gevent.greenlet
? _dummy_threading imported from dummy_threading
? _frozen_importlib imported from importlib, importlib.abc
? _frozen_importlib_external imported from importlib, importlib._bootstrap, importlib.abc
? _import_wait imported from gevent.tests.test__import_wait
? _manylinux imported from pkg_resources._vendor.packaging.tags
? _setuplibev imported from gevent.libev._corecffi_build
? _setuputils imported from gevent.libev._corecffi_build, gevent.libuv._corecffi_build
? _winapi imported from encodings, multiprocessing.connection, multiprocessing.heap, multiprocessing.popen_spawn_win32, multiprocessing.reduction, site, subprocess
? _winreg imported from pkg_resources._vendor.appdirs, platform, requests.utils
? backports.socketpair imported from gevent._socketcommon
? backports.ssl_match_hostname imported from urllib3.packages.ssl_match_hostname
? bjoern imported from bottle
? bottle.ext.websocket imported from eel
? brotli imported from urllib3.response, urllib3.util.request
? cPickle imported from bottle, gevent._tblib
? cStringIO imported from gevent.tests.test__pywsgi
? cffi imported from gevent.libev._corecffi_build, gevent.libuv._corecffi_build
? cherrypy imported from bottle
? collections.Callable imported from requests.compat
? collections.Iterable imported from pkg_resources._vendor.pyparsing, pyparsing
? collections.Mapping imported from gevent.contextvars, gevent.tests.test__local, pyparsing, requests.compat, urllib3._collections
? collections.MutableMapping imported from bottle, pkg_resources._vendor.pyparsing, pyparsing, requests.compat, urllib3._collections
? com.sun imported from pkg_resources._vendor.appdirs
? com.sun.jna imported from pkg_resources._vendor.appdirs
? com.sun.jna.platform imported from pkg_resources._vendor.appdirs
? cookielib imported from requests.compat
? copy_reg imported from gevent._tblib
? cryptography imported from requests, urllib3.contrib.pyopenssl
? cryptography.hazmat.backends.openssl imported from urllib3.contrib.pyopenssl
? cryptography.hazmat.backends.openssl.x509 imported from urllib3.contrib.pyopenssl
? cryptography.x509 imported from urllib3.contrib.pyopenssl
? cryptography.x509.extensions imported from urllib3.contrib.pyopenssl
? diesel.protocols.wsgi imported from bottle
? django.utils.simplejson imported from bottle
? dns imported from gevent.tests.monkey_package.issue1526_no_monkey, gevent.tests.monkey_package.issue1526_with_monkey
? dns.rdtypes imported from gevent.tests.monkey_package.issue1526_no_monkey
? eventlet imported from bottle
? fapws imported from bottle
? fapws._evwsgi imported from bottle
? flup.server.fcgi imported from bottle
? getaddrinfo_module imported from gevent.tests.test__getaddrinfo_import
? google.appengine.ext.webapp imported from bottle
? gunicorn.app.base imported from bottle
? httplib imported from bottle, gevent.tests.test__socket_ssl
? java imported from unittest.mock
? java.lang imported from platform
? jinja2 imported from bottle, eel
? mako.lookup imported from bottle
? mako.template imported from bottle
? meinheld imported from bottle
? mimetools imported from gevent.pywsgi
? mock imported from gevent.testing
? msvcrt imported from getpass, gevent.subprocess, multiprocessing.popen_spawn_win32, multiprocessing.spawn, subprocess, test.support
? multiprocessing.AuthenticationError imported from multiprocessing.connection
? multiprocessing.BufferTooShort imported from multiprocessing.connection
? multiprocessing.Process imported from gevent.tests.test__issue600
? multiprocessing.TimeoutError imported from multiprocessing.pool
? multiprocessing.cpu_count imported from gevent.testing.testrunner
? multiprocessing.get_context imported from multiprocessing.managers, multiprocessing.pool, multiprocessing.sharedctypes
? multiprocessing.get_start_method imported from multiprocessing.spawn
? multiprocessing.set_start_method imported from multiprocessing.spawn
? netbios imported from uuid
? nt imported from ntpath, os, pathlib, shutil
? nturl2path imported from urllib.request
? objgraph imported from gevent.testing.leakcheck
? ordereddict imported from pkg_resources._vendor.pyparsing, pyparsing
? org.python.core imported from copy, pickle
? os.path imported from distutils.file_util, gevent.libev._corecffi_build, gevent.libuv._corecffi_build, gevent.testing.modules, gevent.testing.testcase, gevent.tests.monkey_package.__main__, gevent.tests.monkey_package.issue302monkey, gevent.tests.monkey_package.script, gevent.tests.test__monkey_module_run, os, pkg_resources, pkgutil, py_compile, requests.adapters, sysconfig, test.support.script_helper, tracemalloc, unittest, unittest.util
? paste imported from bottle
? paste.translogger imported from bottle
? pkg_resources.extern.appdirs imported from pkg_resources
? pkg_resources.extern.packaging imported from pkg_resources
? pkg_resources.extern.pyparsing imported from pkg_resources._vendor.packaging.markers, pkg_resources._vendor.packaging.requirements
? pkg_resources.extern.six imported from pkg_resources
? pkg_resources.extern.six.moves imported from pkg_resources
? pkg_resources.extern.six.moves.urllib imported from pkg_resources._vendor.packaging.requirements
? psutil imported from gevent._compat, gevent.testing.openfiles, gevent.tests.test__makefile_ref
? rocket imported from bottle
? selectors2 imported from gevent.selectors, gevent.tests.test__monkey_selectors
? simplejson imported from bottle, requests.compat
? socketio imported from bottle
? socks imported from urllib3.contrib.socks
? test.libregrtest imported from gevent.testing.resources
? thread imported from bottle, gevent.tests.lock_tests, gevent.tests.test__core_async, gevent.tests.test__monkey, gevent.tests.test__monkey_futures_thread, gevent.tests.test__refcount, gevent.tests.test__thread, gevent.tests.test__threading_2, gevent.thread
? tornado.httpserver imported from bottle
? tornado.ioloop imported from bottle
? tornado.wsgi imported from bottle
? twisted.internet imported from bottle
? twisted.python.threadpool imported from bottle
? twisted.web imported from bottle
? urllib.getproxies imported from requests.compat
? urllib.getproxies_environment imported from requests.compat
? urllib.proxy_bypass imported from requests.compat
? urllib.proxy_bypass_environment imported from requests.compat
? urllib.quote imported from bottle, requests.compat
? urllib.quote_plus imported from requests.compat
? urllib.unquote imported from bottle, gevent.pywsgi, requests.compat
? urllib.unquote_plus imported from requests.compat
? urllib.urlencode imported from bottle, requests.compat
? urllib2 imported from gevent.tests.test__example_wsgiserver, gevent.tests.test__greenness, requests.compat
? urllib3.packages.six.moves imported from urllib3.connectionpool, urllib3.util.queue, urllib3.util.response
? urllib3.packages.six.moves.http_client imported from urllib3.connection, urllib3.exceptions
? urllib3.packages.six.moves.urllib.parse imported from urllib3.poolmanager, urllib3.request
? urlparse imported from bottle, gevent.tests.test__pywsgi, requests.compat
? vms_lib imported from platform
? waitress imported from bottle
? win32api imported from gevent.win32util, pkg_resources._vendor.appdirs
? win32com.shell imported from pkg_resources._vendor.appdirs
? win32evtlog imported from logging.handlers
? win32evtlogutil imported from logging.handlers
? win32wnet imported from uuid
? winreg imported from eel.chrome, mimetypes, pkg_resources._vendor.appdirs, platform, requests.utils, urllib.request
This is not necessarily a problem - the modules may not be needed on this platform.

creating directory build/exe.macosx-10.7-x86_64-3.7/lib
Copying data from package certifi...
Copying data from package chardet...
Copying data from package collections...
Copying data from package concurrent...
Copying data from package ctypes...
Copying data from package distutils...
Copying data from package eel...
Copying data from package email...
Copying data from package encodings...
Copying data from package gevent...
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_abstract_linkable.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_abstract_linkable.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_greenlet_primitives.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_greenlet_primitives.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_hub_local.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_hub_local.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_hub_primitives.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_hub_primitives.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_ident.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_ident.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_imap.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_imap.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_semaphore.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_semaphore.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_tracer.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_tracer.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_c_waiter.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_waiter.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cevent.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cevent.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cgreenlet.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cgreenlet.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_clocal.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_clocal.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/_gevent_cqueue.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cqueue.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/_corecffi.abi3.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/_corecffi.abi3.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libev/corecext.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/corecext.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/libuv/_corecffi.abi3.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/_corecffi.abi3.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/gevent/resolver/cares.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/cares.cpython-37m-darwin.so
Copying data from package html...
Copying data from package http...
Copying data from package idna...
Copying data from package importlib...
Copying data from package json...
Copying data from package lib2to3...
Copying data from package logging...
Copying data from package multiprocessing...
Copying data from package pkg_resources...
Copying data from package pydoc_data...
Copying data from package pytube...
Copying data from package requests...
Copying data from package test...
Copying data from package tkinter...
Copying data from package unittest...
Copying data from package urllib...
Copying data from package urllib3...
Copying data from package wsgiref...
Copying data from package xml...
Copying data from package xmlrpc...
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_bisect.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_bisect.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_blake2.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_blake2.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_bz2.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_bz2.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_cn.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_cn.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_hk.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_hk.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_iso2022.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_iso2022.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_jp.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_jp.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_kr.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_kr.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_codecs_tw.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_tw.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_contextvars.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_contextvars.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_ctypes.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_ctypes.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/libffi.6.dylib -> build/exe.macosx-10.7-x86_64-3.7/libffi.6.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_datetime.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_datetime.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_decimal.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_decimal.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_elementtree.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_elementtree.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_hashlib.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_hashlib.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/libcrypto.1.1.dylib -> build/exe.macosx-10.7-x86_64-3.7/libcrypto.1.1.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_heapq.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_heapq.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_json.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_json.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_lzma.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_lzma.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/liblzma.5.dylib -> build/exe.macosx-10.7-x86_64-3.7/liblzma.5.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_md5.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_md5.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_multibytecodec.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_multibytecodec.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_multiprocessing.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_multiprocessing.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_opcode.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_opcode.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_pickle.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_pickle.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_posixsubprocess.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_posixsubprocess.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_queue.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_queue.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_random.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_random.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_scproxy.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_scproxy.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha1.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_sha1.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha256.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_sha256.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha3.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_sha3.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_sha512.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_sha512.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_socket.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_socket.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_ssl.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/libssl.1.1.dylib -> build/exe.macosx-10.7-x86_64-3.7/libssl.1.1.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_struct.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_struct.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_testcapi.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_testcapi.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_tkinter.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_tkinter.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/libtcl8.6.dylib -> build/exe.macosx-10.7-x86_64-3.7/libtcl8.6.dylib
copying /Users/test/anaconda3/envs/youtube/lib/libz.1.dylib -> build/exe.macosx-10.7-x86_64-3.7/libz.1.dylib
copying /Users/test/anaconda3/envs/youtube/lib/libtk8.6.dylib -> build/exe.macosx-10.7-x86_64-3.7/libtk8.6.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/_uuid.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/_uuid.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/array.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/array.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/binascii.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/binascii.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/fcntl.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/fcntl.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/greenlet.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/greenlet.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/grp.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/grp.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/math.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/mmap.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/mmap.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/pyexpat.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/pyexpat.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/readline.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/readline.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/libreadline.7.dylib -> build/exe.macosx-10.7-x86_64-3.7/libreadline.7.dylib
copying /Users/test/anaconda3/envs/youtube/lib/libtinfow.6.dylib -> build/exe.macosx-10.7-x86_64-3.7/libtinfow.6.dylib
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/resource.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/resource.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/select.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/select.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/termios.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/termios.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/unicodedata.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/unicodedata.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/lib-dynload/zlib.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/zlib.cpython-37m-darwin.so
copying /Users/test/anaconda3/envs/youtube/lib/python3.7/site-packages/zope/interface/_zope_interface_coptimizations.cpython-37m-darwin.so -> build/exe.macosx-10.7-x86_64-3.7/lib/zope.interface._zope_interface_coptimizations.cpython-37m-darwin.so
creating directory build/exe.macosx-10.7-x86_64-3.7/web/
copying web/index.html -> build/exe.macosx-10.7-x86_64-3.7/web/index.html
copying web/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/.DS_Store
creating directory build/exe.macosx-10.7-x86_64-3.7/web/images
copying web/images/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/images/.DS_Store
copying web/images/error.png -> build/exe.macosx-10.7-x86_64-3.7/web/images/error.png
copying web/images/MeForProfile.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/MeForProfile.jpg
copying web/images/pinkguy.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/pinkguy.jpg
copying web/images/14ver1.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/14ver1.jpg
creating directory build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail
copying web/images/thumbnail/3hPI3xjsNKE.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/3hPI3xjsNKE.jpg
copying web/images/thumbnail/mAZTAshh1Pc.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/mAZTAshh1Pc.jpg
copying web/images/thumbnail/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/.DS_Store
copying web/images/thumbnail/f2YWfeFRZO0.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/f2YWfeFRZO0.jpg
copying web/images/thumbnail/d-JBBNg8YKs.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/d-JBBNg8YKs.jpg
copying web/images/thumbnail/NxHG3IgioOw.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/NxHG3IgioOw.jpg
copying web/images/thumbnail/zbxAB7rTpDc.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/zbxAB7rTpDc.jpg
copying web/images/thumbnail/DK_0jXPuIr0.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/DK_0jXPuIr0.jpg
copying web/images/thumbnail/uxpDa-c-4Mc.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/uxpDa-c-4Mc.jpg
copying web/images/thumbnail/Dst9gZkq1a8.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/Dst9gZkq1a8.jpg
creating directory build/exe.macosx-10.7-x86_64-3.7/web/images/artwork
copying web/images/artwork/SICKO MODE_Travis Scott.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/SICKO MODE_Travis Scott.jpg
copying web/images/artwork/goosebumps_Travis Scott.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/goosebumps_Travis Scott.jpg
copying web/images/artwork/CAN'T GET OVER YOU (feat. Clams Casino)_Joji.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/CAN'T GET OVER YOU (feat. Clams Casino)_Joji.jpg
copying web/images/artwork/廻廻奇譚_Eve.jpg -> build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/廻廻奇譚_Eve.jpg
creating directory build/exe.macosx-10.7-x86_64-3.7/web/svgs
copying web/svgs/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/svgs/.DS_Store
copying web/svgs/object-svgs.js -> build/exe.macosx-10.7-x86_64-3.7/web/svgs/object-svgs.js
creating directory build/exe.macosx-10.7-x86_64-3.7/web/styles
copying web/styles/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/styles/.DS_Store
copying web/styles/style.css.map -> build/exe.macosx-10.7-x86_64-3.7/web/styles/style.css.map
copying web/styles/style.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/style.scss
copying web/styles/style.css -> build/exe.macosx-10.7-x86_64-3.7/web/styles/style.css
creating directory build/exe.macosx-10.7-x86_64-3.7/web/styles/vendors
copying web/styles/vendors/bootstrap-reboot.css -> build/exe.macosx-10.7-x86_64-3.7/web/styles/vendors/bootstrap-reboot.css
copying web/styles/vendors/bootstrap-reboot.css.map -> build/exe.macosx-10.7-x86_64-3.7/web/styles/vendors/bootstrap-reboot.css.map
creating directory build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints
copying web/styles/breakpoints/_700.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_700.scss
copying web/styles/breakpoints/_960.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_960.scss
copying web/styles/breakpoints/_1024up.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_1024up.scss
copying web/styles/breakpoints/_1280.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_1280.scss
copying web/styles/breakpoints/_600.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_600.scss
copying web/styles/breakpoints/_base.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_base.scss
creating directory build/exe.macosx-10.7-x86_64-3.7/web/styles/modules
copying web/styles/modules/_variables.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_variables.scss
copying web/styles/modules/_mixin.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_mixin.scss
copying web/styles/modules/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/.DS_Store
copying web/styles/modules/_radio.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_radio.scss
copying web/styles/modules/_loading.scss -> build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_loading.scss
creating directory build/exe.macosx-10.7-x86_64-3.7/web/scripts
copying web/scripts/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/.DS_Store
copying web/scripts/main.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/main.js
creating directory build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors
copying web/scripts/vendors/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/.DS_Store
copying web/scripts/vendors/color-thief.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/color-thief.js
copying web/scripts/vendors/vue.min.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/vue.min.js
copying web/scripts/vendors/TweenMax.min.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/TweenMax.min.js
creating directory build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs
copying web/scripts/libs/.DS_Store -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/.DS_Store
copying web/scripts/libs/thumbnail-test.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/thumbnail-test.js
copying web/scripts/libs/progress-bar.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/progress-bar.js
copying web/scripts/libs/thumbnail.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/thumbnail.js
copying web/scripts/libs/cover.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/cover.js
copying web/scripts/libs/addEl.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/addEl.js
copying web/scripts/libs/guiOpen.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/guiOpen.js
copying web/scripts/libs/addsvg.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/addsvg.js
copying web/scripts/libs/menu.js -> build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/menu.js
creating build/YT_Download-0.1.app
creating build/YT_Download-0.1.app/Contents
creating build/YT_Download-0.1.app/Contents/Resources
creating build/YT_Download-0.1.app/Contents/MacOS
creating build/YT_Download-0.1.app/Contents/Frameworks
copying build/exe.macosx-10.7-x86_64-3.7/libtcl8.6.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/app -> build/YT_Download-0.1.app/Contents/MacOS
creating build/YT_Download-0.1.app/Contents/MacOS/web
copying build/exe.macosx-10.7-x86_64-3.7/web/index.html -> build/YT_Download-0.1.app/Contents/MacOS/web
copying build/exe.macosx-10.7-x86_64-3.7/web/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web
creating build/YT_Download-0.1.app/Contents/MacOS/web/images
creating build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/3hPI3xjsNKE.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/mAZTAshh1Pc.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/f2YWfeFRZO0.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/d-JBBNg8YKs.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/NxHG3IgioOw.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/zbxAB7rTpDc.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/DK_0jXPuIr0.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/uxpDa-c-4Mc.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/thumbnail/Dst9gZkq1a8.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/thumbnail
copying build/exe.macosx-10.7-x86_64-3.7/web/images/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/images
creating build/YT_Download-0.1.app/Contents/MacOS/web/images/artwork
copying build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/SICKO MODE_Travis Scott.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/artwork
copying build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/goosebumps_Travis Scott.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/artwork
copying build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/CAN'T GET OVER YOU (feat. Clams Casino)_Joji.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/artwork
copying build/exe.macosx-10.7-x86_64-3.7/web/images/artwork/廻廻奇譚_Eve.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images/artwork
copying build/exe.macosx-10.7-x86_64-3.7/web/images/error.png -> build/YT_Download-0.1.app/Contents/MacOS/web/images
copying build/exe.macosx-10.7-x86_64-3.7/web/images/MeForProfile.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images
copying build/exe.macosx-10.7-x86_64-3.7/web/images/pinkguy.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images
copying build/exe.macosx-10.7-x86_64-3.7/web/images/14ver1.jpg -> build/YT_Download-0.1.app/Contents/MacOS/web/images
creating build/YT_Download-0.1.app/Contents/MacOS/web/svgs
copying build/exe.macosx-10.7-x86_64-3.7/web/svgs/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/svgs
copying build/exe.macosx-10.7-x86_64-3.7/web/svgs/object-svgs.js -> build/YT_Download-0.1.app/Contents/MacOS/web/svgs
creating build/YT_Download-0.1.app/Contents/MacOS/web/styles
creating build/YT_Download-0.1.app/Contents/MacOS/web/styles/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/vendors/bootstrap-reboot.css -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/vendors/bootstrap-reboot.css.map -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/styles
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/style.css.map -> build/YT_Download-0.1.app/Contents/MacOS/web/styles
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/style.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/style.css -> build/YT_Download-0.1.app/Contents/MacOS/web/styles
creating build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_700.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_960.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_1024up.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_1280.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_600.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/breakpoints/_base.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/breakpoints
creating build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_variables.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_mixin.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_radio.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
copying build/exe.macosx-10.7-x86_64-3.7/web/styles/modules/_loading.scss -> build/YT_Download-0.1.app/Contents/MacOS/web/styles/modules
creating build/YT_Download-0.1.app/Contents/MacOS/web/scripts
creating build/YT_Download-0.1.app/Contents/MacOS/web/scripts/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/color-thief.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/vue.min.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/vendors/TweenMax.min.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/vendors
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts
creating build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/thumbnail-test.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/progress-bar.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/thumbnail.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/cover.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/addEl.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/guiOpen.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/addsvg.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/libs/menu.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts/libs
copying build/exe.macosx-10.7-x86_64-3.7/web/scripts/main.js -> build/YT_Download-0.1.app/Contents/MacOS/web/scripts
copying build/exe.macosx-10.7-x86_64-3.7/libssl.1.1.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libtinfow.6.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libreadline.7.dylib -> build/YT_Download-0.1.app/Contents/MacOS
creating build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp861.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp875.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/quopri_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp874.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp860.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_cyrillic.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1140.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp862.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp863.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_32.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_greek.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_8.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp720.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/oem.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp866.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_latin2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_8.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1026.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp737.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp858.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp864.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp865.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_9.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1256.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp037.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_kr.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/shift_jis.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/big5.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/johab.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/zlib_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1257.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1255.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_16_le.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/gb2312.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp949.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/koi8_t.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp424.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_32_le.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/koi8_u.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/hz.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1254.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1250.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/rot_13.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/kz1048.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/unicode_escape.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp_ext.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1251.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/base64_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1253.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/uu_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1125.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/palmos.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/koi8_r.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp437.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/unicode_internal.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1252.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/ascii.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/tis_620.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_32_be.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_roman.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/big5hkscs.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/undefined.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/idna.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_16_be.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/latin_1.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp_2004.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/aliases.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_croatian.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/gbk.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/ptcp154.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/raw_unicode_escape.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp950.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_arabic.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1258.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_romanian.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp775.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_iceland.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/shift_jisx0213.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/hp_roman8.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/euc_jis_2004.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_4.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_7.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/charmap.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_turkish.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/hex_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/bz2_codec.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_16.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp869.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp855.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/gb18030.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_centeuro.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_5.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_7.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp857.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_14.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/euc_kr.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_15.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/punycode.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mbcs.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp856.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp65001.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_8_sig.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_6.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp932.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp_1.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_11.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp852.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/euc_jisx0213.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/shift_jis_2004.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_10.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/utf_16.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_1.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp500.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp_2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/euc_jp.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/mac_farsi.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp850.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso8859_13.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/iso2022_jp_3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp1006.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
copying build/exe.macosx-10.7-x86_64-3.7/lib/encodings/cp273.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/encodings
creating build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/fancy_getopt.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/dir_util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/unixccompiler.py-e -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/errors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/debug.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/ccompiler.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
creating build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/tests/Setup.sample -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/tests/xxmodule.c -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/README -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/filelist.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/version.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/sysconfig.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
creating build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-7.1.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-14.0-amd64.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-14.0.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-9.0-amd64.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-6.0.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-10.0.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-10.0-amd64.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/command_template -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-8.0.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/command/wininst-9.0.exe -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils/command
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/text_file.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/file_util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/dep_util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/log.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/distutils/spawn.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/distutils
copying build/exe.macosx-10.7-x86_64-3.7/lib/_sha1.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_queue.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/_aix.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/_endian.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
creating build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/dylib.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/fetch_macholib -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/README.ctypes -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/dyld.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/framework.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/macholib/fetch_macholib.bat -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes/macholib
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
copying build/exe.macosx-10.7-x86_64-3.7/lib/ctypes/wintypes.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/ctypes
copying build/exe.macosx-10.7-x86_64-3.7/lib/_blake2.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/main.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/case.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/signals.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/loader.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/result.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/mock.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/runner.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/suite.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/unittest/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/unittest
copying build/exe.macosx-10.7-x86_64-3.7/lib/_struct.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/codingstatemachine.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/euckrprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/gb2312prober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langgreekmodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/latin1prober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/charsetprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/mbcssm.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/utf8prober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/eucjpprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/hebrewprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/charsetgroupprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/euctwprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/jisfreq.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langturkishmodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/sjisprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/sbcharsetprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/mbcharsetprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/mbcsgroupprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
creating build/YT_Download-0.1.app/Contents/MacOS/lib/chardet/cli
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/enums.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/euctwfreq.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/sbcsgroupprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langcyrillicmodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/universaldetector.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/gb2312freq.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/big5freq.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/escsm.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langhebrewmodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/version.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/chardistribution.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/euckrfreq.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/jpcntx.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langbulgarianmodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/cp949prober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/langthaimodel.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/big5prober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/escprober.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/chardet/compat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/chardet
copying build/exe.macosx-10.7-x86_64-3.7/lib/array.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_sha3.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/fcntl.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_ssl.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_tkinter.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/test
copying build/exe.macosx-10.7-x86_64-3.7/lib/test/test_support.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/test
creating build/YT_Download-0.1.app/Contents/MacOS/lib/test/support
copying build/exe.macosx-10.7-x86_64-3.7/lib/test/support/testresult.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/test/support
copying build/exe.macosx-10.7-x86_64-3.7/lib/test/support/script_helper.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/test/support
copying build/exe.macosx-10.7-x86_64-3.7/lib/test/support/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/test/support
copying build/exe.macosx-10.7-x86_64-3.7/lib/test/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/test
copying build/exe.macosx-10.7-x86_64-3.7/lib/_decimal.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_socket.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/grp.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_hashlib.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/parser.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/extract.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/.DS_Store -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/streams.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/metadata.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/itags.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/cipher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/monostate.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/captions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pytube/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/contrib/playlist.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/contrib/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/__main__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/version.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/request.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/helpers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/exceptions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
copying build/exe.macosx-10.7-x86_64-3.7/lib/pytube/query.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pytube
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/ares.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/lock.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/pywsgi.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/time.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/server.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/hub.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/event.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cgreenlet.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_tracer.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/threadpool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/threading.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_hub_primitives.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/_corecffi.abi3.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/watcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/loop.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libuv/_corecffi_build.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libuv
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_util_py2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_fileobjectcommon.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/subprocess.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_abstract_linkable.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_clocal.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_hub_local.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/queue.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_hub_primitives.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_socket3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/events.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_threading.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/pool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_config.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_socket2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_semaphore.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_no_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_udp_client.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_wsgiserver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__import_wait.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__contextvars.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test___monitor.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test_server.key -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__os.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__events.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/sha256.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_sigchld.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue6.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_callback.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_dns.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__semaphore.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_stat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__ares_timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_fork.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_timer.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__signal.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__sleep0.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/nullcert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_hub_in_thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/known_failures.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/server.key -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue230.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threadpool_executor_patched.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__subprocess_poll.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/https_svn_python_org_root.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/lock_tests.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_import_wait.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_monkey_in_thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__destroy_default_loop.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/tests_that_dont_monkeypatch.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_vs_settrace.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test___ident.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__fileobject.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/tests_that_dont_do_leakchecks.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__selectors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__server.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_import_import_patch.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_import_patch.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__resolver_dnspython.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_echoserver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__pywsgi.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_holding_lock_while_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_selectors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__execmodules.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_patched_local.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_ex.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__systemerror.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__local.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__all__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__greenio.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/hosts_file.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__refcount_core.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_watcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__memleak.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__nondefaultloop.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/wrongcert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__api_timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__hub.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__greenlet.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue330.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_sigchld_3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/keycert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue467.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/__main__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__doctests.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__subprocess.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_select.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_sigchld_2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_send_memoryview.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__queue.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_errors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/server.crt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__api.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__hub_join_timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_imports_imports_at_top_level.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_webproxy.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__import_blocking_in_greenlet.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/2_7_keycert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__compat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/badkey.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_imports_at_top_level.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__hub_join.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_builtins_future.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_portforwarder.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_ssl.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__select.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__greenness.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_native_before_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__destroy.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue_728.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_close.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test_server.crt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue112.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_ssl_warning2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__exc_info.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__real_greenlet.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_ssl_warning3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_loop_run.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__pool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_futures_thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/badcert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socketpair.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__examples.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__ssl.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue607.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__core_async.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/_blocks_at_top_level.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/threadpool_no_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/issue1526_no_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/__main__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/threadpool_monkey_patches.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/script.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/issue302monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/monkey_package/issue1526_with_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests/monkey_package
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__getaddrinfo_import.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/getaddrinfo_module.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__subprocess_interrupted.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test___config.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__joinall.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_queue.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_module_run.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue639.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_udp_server.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__iwait.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket_dns6.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test___monkey_patching.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_ssl_warning.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__loop_callback.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__order.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__refcount.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__close_backend_fd.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__environ.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threadpool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issues461_471.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_logging.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__GreenletExit.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__example_wsgiserver_ssl.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__lock.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__issue600.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__greenletset.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__monkey_multiple_imports.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__socket.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__makefile_ref.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__backdoor.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/tests_that_dont_use_resolver.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__server_pywsgi.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__threading_before_monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__event.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/tests/test__ares_host_result.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/tests
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ident.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_greenlet_primitives.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_fileobjectposix.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_ident.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_greenlet_primitives.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_patcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/selectors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_semaphore.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_hub_local.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/backdoor.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/_ffi
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ffi/watcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/_ffi
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ffi/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/_ffi
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ffi/callback.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/_ffi
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ffi/loop.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/_ffi
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/signal.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/local.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_monitor.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_abstract_linkable.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/sysinfo.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/timing.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/params.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/hub.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/switching.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/support.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/flaky.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing/coveragesite
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/six.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/sockets.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/leakcheck.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/resources.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/patched_tests_setup.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/modules.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/testrunner.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/monkey_test.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/skipping.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/travis.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/exception.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/testcase.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/errorhandler.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/testing/openfiles.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/testing
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/contextvars.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/fileobject.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_waiter.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cqueue.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_socketcommon.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_imap.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_waiter.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/ssl.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver_ares.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/socket.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_imap.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_sslgte279.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/builtins.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver_thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ssl3.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/win32util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_ssl2.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/core.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_cevent.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_tblib.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/exceptions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_compat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/_corecffi.abi3.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/corecext.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/watcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/corecffi.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/libev/_corecffi_build.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/libev
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/baseserver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/greenlet.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/ares.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/_addresses.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/blocking.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/_hostsfile.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/dnspython.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/cares.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/resolver/thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent/resolver
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/monkey.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/select.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/os.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_interfaces.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/_gevent_c_tracer.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/gevent/thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/gevent
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_cn.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_multibytecodec.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_bisect.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
creating build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing/dummy
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/dummy/connection.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing/dummy
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/dummy/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing/dummy
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/sharedctypes.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/connection.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/pool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/popen_fork.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/heap.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/synchronize.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/context.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/reduction.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/resource_sharer.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/forkserver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/queues.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/popen_forkserver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/process.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/semaphore_tracker.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/managers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/spawn.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/popen_spawn_posix.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/multiprocessing/popen_spawn_win32.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/multiprocessing
copying build/exe.macosx-10.7-x86_64-3.7/lib/unicodedata.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib/response.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib/error.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib/request.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib/parse.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_sha256.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/zlib.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/termios.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/intranges.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/idnadata.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/package_data.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/uts46data.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
copying build/exe.macosx-10.7-x86_64-3.7/lib/idna/core.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/idna
creating build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/edge.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/eel.js -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/chrome.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/browsers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/eel/electron.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/eel
copying build/exe.macosx-10.7-x86_64-3.7/lib/_pickle.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/readline.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/pyexpat.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/html
copying build/exe.macosx-10.7-x86_64-3.7/lib/html/entities.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/html
copying build/exe.macosx-10.7-x86_64-3.7/lib/html/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/html
copying build/exe.macosx-10.7-x86_64-3.7/lib/_lzma.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/select.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_posixsubprocess.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/tkinter
copying build/exe.macosx-10.7-x86_64-3.7/lib/tkinter/constants.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/tkinter
copying build/exe.macosx-10.7-x86_64-3.7/lib/tkinter/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/tkinter
copying build/exe.macosx-10.7-x86_64-3.7/lib/_sha512.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_testcapi.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xml
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xml/parsers
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/parsers/expat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml/parsers
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/parsers/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml/parsers
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xml/sax
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xml/dom
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xml/etree
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/etree/ElementPath.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml/etree
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/etree/ElementTree.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml/etree
copying build/exe.macosx-10.7-x86_64-3.7/lib/xml/etree/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xml/etree
creating build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/sessions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/cookies.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/auth.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/models.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/hooks.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/__version__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/status_codes.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/certs.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/adapters.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/_internal_utils.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/structures.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/packages.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/exceptions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/utils.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/api.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/requests/compat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/requests
copying build/exe.macosx-10.7-x86_64-3.7/lib/_datetime.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/mmap.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_ctypes.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_jp.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_bz2.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/headers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/validate.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/handlers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/simple_server.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
copying build/exe.macosx-10.7-x86_64-3.7/lib/wsgiref/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/wsgiref
creating build/YT_Download-0.1.app/Contents/MacOS/lib/certifi
copying build/exe.macosx-10.7-x86_64-3.7/lib/certifi/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/certifi
copying build/exe.macosx-10.7-x86_64-3.7/lib/certifi/cacert.pem -> build/YT_Download-0.1.app/Contents/MacOS/lib/certifi
copying build/exe.macosx-10.7-x86_64-3.7/lib/certifi/core.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/certifi
creating build/YT_Download-0.1.app/Contents/MacOS/lib/json
copying build/exe.macosx-10.7-x86_64-3.7/lib/json/encoder.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/json
copying build/exe.macosx-10.7-x86_64-3.7/lib/json/decoder.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/json
copying build/exe.macosx-10.7-x86_64-3.7/lib/json/scanner.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/json
copying build/exe.macosx-10.7-x86_64-3.7/lib/json/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/json
creating build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/http/cookies.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/http/server.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/http/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/http/client.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/http/cookiejar.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/http
copying build/exe.macosx-10.7-x86_64-3.7/lib/greenlet.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_iso2022.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent
creating build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent/futures
copying build/exe.macosx-10.7-x86_64-3.7/lib/concurrent/futures/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent/futures
copying build/exe.macosx-10.7-x86_64-3.7/lib/concurrent/futures/process.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent/futures
copying build/exe.macosx-10.7-x86_64-3.7/lib/concurrent/futures/_base.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent/futures
copying build/exe.macosx-10.7-x86_64-3.7/lib/concurrent/futures/thread.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent/futures
copying build/exe.macosx-10.7-x86_64-3.7/lib/concurrent/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/concurrent
copying build/exe.macosx-10.7-x86_64-3.7/lib/library.zip -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/math.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/fields.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/connection.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/retry.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/ssl_.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/timeout.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/connection.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/queue.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/response.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/proxy.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/url.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/request.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/wait.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/util/ssltransport.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/util
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/_collections.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/response.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/poolmanager.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/contrib/socks.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/contrib/_appengine_environ.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/contrib/pyopenssl.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/contrib/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/contrib/_securetransport
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/connectionpool.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/_version.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/six.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/backports
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/backports/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/backports
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/backports/makefile.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/backports
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages
creating build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/ssl_match_hostname
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/ssl_match_hostname/_implementation.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/ssl_match_hostname
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/packages/ssl_match_hostname/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3/packages/ssl_match_hostname
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/request.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/filepost.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/urllib3/exceptions.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/urllib3
copying build/exe.macosx-10.7-x86_64-3.7/lib/_elementtree.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/markers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/_typing.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/__about__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/requirements.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/tags.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/version.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/_structures.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/specifiers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/_compat.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/packaging/utils.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor/packaging
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/six.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/appdirs.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/pyparsing.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/_vendor/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/_vendor
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/extern
copying build/exe.macosx-10.7-x86_64-3.7/lib/pkg_resources/extern/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pkg_resources/extern
copying build/exe.macosx-10.7-x86_64-3.7/lib/_md5.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_multiprocessing.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_scproxy.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/_bootstrap.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/abc.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/resources.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/_bootstrap_external.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/machinery.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
copying build/exe.macosx-10.7-x86_64-3.7/lib/importlib/util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/importlib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/xmlrpc
copying build/exe.macosx-10.7-x86_64-3.7/lib/xmlrpc/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xmlrpc
copying build/exe.macosx-10.7-x86_64-3.7/lib/xmlrpc/client.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/xmlrpc
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/fixes
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/fixer_util.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/PatternGrammar3.7.3.final.0.pickle -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/Grammar.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/btm_matcher.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/btm_utils.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pygram.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/PatternGrammar.txt -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/tests
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/tests/data
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/tests/data/README -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/tests/data
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/tests/data/fixers
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/tests/data/fixers/myfixes
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/refactor.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/Grammar3.7.3.final.0.pickle -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/patcomp.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pytree.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3
creating build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/token.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/literals.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/driver.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/grammar.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/pgen.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/tokenize.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
copying build/exe.macosx-10.7-x86_64-3.7/lib/lib2to3/pgen2/parse.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/lib2to3/pgen2
creating build/YT_Download-0.1.app/Contents/MacOS/lib/pydoc_data
copying build/exe.macosx-10.7-x86_64-3.7/lib/pydoc_data/topics.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pydoc_data
copying build/exe.macosx-10.7-x86_64-3.7/lib/pydoc_data/_pydoc.css -> build/YT_Download-0.1.app/Contents/MacOS/lib/pydoc_data
copying build/exe.macosx-10.7-x86_64-3.7/lib/pydoc_data/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/pydoc_data
copying build/exe.macosx-10.7-x86_64-3.7/lib/_uuid.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/collections
copying build/exe.macosx-10.7-x86_64-3.7/lib/collections/abc.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/collections
copying build/exe.macosx-10.7-x86_64-3.7/lib/collections/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/collections
copying build/exe.macosx-10.7-x86_64-3.7/lib/_heapq.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_tw.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_kr.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_opcode.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_json.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/logging
copying build/exe.macosx-10.7-x86_64-3.7/lib/logging/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/logging
copying build/exe.macosx-10.7-x86_64-3.7/lib/logging/handlers.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/logging
copying build/exe.macosx-10.7-x86_64-3.7/lib/zope.interface._zope_interface_coptimizations.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/binascii.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
creating build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/encoders.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/parser.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/policy.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/_policybase.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/charset.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/_parseaddr.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/errors.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/iterators.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/contentmanager.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/base64mime.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/headerregistry.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/_header_value_parser.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/header.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/quoprimime.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/__init__.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
creating build/YT_Download-0.1.app/Contents/MacOS/lib/email/mime
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/feedparser.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/architecture.rst -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/message.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/generator.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/utils.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/email/_encoded_words.pyc -> build/YT_Download-0.1.app/Contents/MacOS/lib/email
copying build/exe.macosx-10.7-x86_64-3.7/lib/_contextvars.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_codecs_hk.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/resource.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/lib/_random.cpython-37m-darwin.so -> build/YT_Download-0.1.app/Contents/MacOS/lib
copying build/exe.macosx-10.7-x86_64-3.7/liblzma.5.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libtk8.6.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libcrypto.1.1.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libz.1.dylib -> build/YT_Download-0.1.app/Contents/MacOS
copying build/exe.macosx-10.7-x86_64-3.7/libffi.6.dylib -> build/YT_Download-0.1.app/Contents/MacOS
create_plist()
setRelativeReferencePaths('/Users/test/Desktop/mac_work/YT-download/eel_basic/build/exe.macosx-10.7-x86_64-3.7', '/Users/test/Desktop/mac_work/YT-download/eel_basic/build/YT_Download-0.1.app/Contents/MacOS')

It looks work fine. I got build folder. So I double click my first app but It closed soon. Should I write package?

wimpykid719 commented 3 years ago

Sorry for ask a lot.

marcelotduarte commented 3 years ago

Now you have a warning at fourth line: WARNING default bin include not found: libpython3.7m.dylib You're using anaconda, please check how to include a python package in anaconda to include this library. In conda-forge I think that the name is libpython-static (or python-feedstock). Out of curiosity: What is cx-freeze version?

wimpykid719 commented 3 years ago

Version is cx-Freeze==6.5.3 And I used pip in Virtual environment for install those libraries.

marcelotduarte commented 3 years ago

Try to use the cx-freeze from anaconda conda install -c conda-forge cx_freeze

wimpykid719 commented 3 years ago

I tried first import cx_Freeze but it was same error nomodule. I did pip uninstall cx_Freeze and conda install -c conda-forge cx_freeze

python setup.py bdist_mac

but it gets no module.

Second I did change to cx_Freeze to cx_freeze.

raceback (most recent call last):
  File "setup.py", line 2, in <module>
    from cx_freeze import setup, Executable
ModuleNotFoundError: No module named 'cx_freeze'
marcelotduarte commented 3 years ago

cx_Freeze

wimpykid719 commented 3 years ago

Yeah I did but same error. Why did you choose conda install??

marcelotduarte commented 3 years ago

I mean: from cx_Freeze import setup, Executable

I dont use conda, but it has a conda list like pip list? If so, check if cx_Freeze is installed...

marcelotduarte commented 3 years ago

You are not using anaconda?

wimpykid719 commented 3 years ago

I'm using anaconda but I'm using pip in each Virtual environment. It's good way to divide environment. I’m stacked. I think we should solve first error why doesn’t imported pytube.

setup.py スクリーンショット 2021-02-20 19 59 50

conda list Installed. スクリーンショット 2021-02-20 20 03 27

marcelotduarte commented 3 years ago

Some comments before you build the project but it not runs. Now you cannot build.. go back to that situation. And in the main anaconda, before the virtual env, you installed the libpython-static?

wimpykid719 commented 3 years ago

Will not be installed when conda install cx_freeze? I didn't find libpython-static in conda list. What that libpython? Is that need to work cx_freeze?

marcelotduarte commented 3 years ago

As I said before, I don't use anaconda, but I check the downstream project cx_freeeze-feedstock to see if it builds it. And I see that it uses https://anaconda.org/conda-forge/libpython-static for python 3.8+ to build and I think that you should include it to eliminate that warning: WARNING default bin include not found: libpython3.7m.dylib

wimpykid719 commented 3 years ago

But my python version is 3.7.3.

wimpykid719 commented 3 years ago

Hey! good news. I could find lib.python in my anaconda env. /Users/test/anaconda3/envs/youtube/lib/libpython3.7m.dylib /Users/test/anaconda3/envs/youtube/lib/libpython3.7m.a

How to tell this path to cx_Freeze?

marcelotduarte commented 3 years ago

There are variables that indicate the location of this library to distutils library used. Using python -m sysconfig we can found some variables like LIBPC, LIBPL, etc. And your system can be misconfigured by anaconda and pip, the virtualenv used. I don't know why.... You can copy it manually after the build to the correct folder, maybe.... I get your project to building in my environment: Linux with py38

marcelotduarte commented 3 years ago

I used the requirements.txt: eel requests pytube ffmpeg mutagen bs4

create a new file modules/__init__.py

in app.py I added before import eel to fix eel

import sys, os
if getattr(sys, 'frozen', False):
       sys._MEIPASS = os.path.dirname(sys.executable)

and to work in my system, the last line of app I changed to get it opened in firefox by url:

try:
       eel.start('index.html')
except OSError:
       eel.start('index.html', mode=None)

setup.py

import sys

from cx_Freeze import setup, Executable

# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {
    "packages": [],
    "includes": ["bottle_websocket"],
    "excludes": ["tkinter"],
    "include_files": "web",
}

# GUI applications require a different base on Windows (the default is for
# a console application).
base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(
    name="YT_Download",
    version="0.1",
    description="YoutubeDownloader",
    options={"build_exe": build_exe_options},
    executables=[Executable("app.py", base=base)],
)
wimpykid719 commented 3 years ago

Thank you. I tried that but It didn't work. First. I installed ubuntu20.04 on virtualbox with vagrant. and I checked they have python 3.8.5 but ubuntu20.04 didn't have pip. so I installed sudo apt install python3-pip and pip3 install -r requirements.txt

out put was

Collecting beautifulsoup4==4.9.3
  Downloading beautifulsoup4-4.9.3-py3-none-any.whl (115 kB)
     |████████████████████████████████| 115 kB 2.4 MB/s 
Collecting bottle==0.12.18
  Downloading bottle-0.12.18-py3-none-any.whl (89 kB)
     |████████████████████████████████| 89 kB 4.1 MB/s 
Collecting bottle-websocket==0.2.9
  Downloading bottle-websocket-0.2.9.tar.gz (2.0 kB)
Collecting certifi==2020.12.5
  Downloading certifi-2020.12.5-py2.py3-none-any.whl (147 kB)
     |████████████████████████████████| 147 kB 8.0 MB/s 
Requirement already satisfied: chardet==3.0.4 in /usr/lib/python3/dist-packages (from -r requirements.txt (line 5)) (3.0.4)
Collecting Eel==0.14.0
  Downloading Eel-0.14.0.tar.gz (17 kB)
Collecting ffmpeg-python==0.2.0
  Downloading ffmpeg_python-0.2.0-py3-none-any.whl (25 kB)
Collecting future==0.18.2
  Downloading future-0.18.2.tar.gz (829 kB)
     |████████████████████████████████| 829 kB 6.6 MB/s 
Collecting gevent==20.9.0
  Downloading gevent-20.9.0-cp38-cp38-manylinux2010_x86_64.whl (6.1 MB)
     |████████████████████████████████| 6.1 MB 3.9 MB/s 
Collecting gevent-websocket==0.10.1
  Downloading gevent_websocket-0.10.1-py3-none-any.whl (22 kB)
Collecting greenlet==0.4.17
  Downloading greenlet-0.4.17-cp38-cp38-manylinux1_x86_64.whl (48 kB)
     |████████████████████████████████| 48 kB 5.5 MB/s 
Collecting idna==2.10
  Downloading idna-2.10-py2.py3-none-any.whl (58 kB)
     |████████████████████████████████| 58 kB 8.0 MB/s 
Collecting lxml==4.6.2
  Downloading lxml-4.6.2-cp38-cp38-manylinux1_x86_64.whl (5.4 MB)
     |████████████████████████████████| 5.4 MB 1.1 MB/s 
Collecting mutagen==1.45.1
  Downloading mutagen-1.45.1-py3-none-any.whl (218 kB)
     |████████████████████████████████| 218 kB 3.7 MB/s 
Collecting pyparsing==2.4.7
  Downloading pyparsing-2.4.7-py2.py3-none-any.whl (67 kB)
     |████████████████████████████████| 67 kB 2.7 MB/s 
Collecting pytube@ git+https://github.com/nficano/pytube@164ce5e435813e2018ede4a488ddd3c1f6731f28
  Cloning https://github.com/nficano/pytube (to revision 164ce5e435813e2018ede4a488ddd3c1f6731f28) to /tmp/pip-install-5hn1thwf/pytube
  Running command git clone -q https://github.com/nficano/pytube /tmp/pip-install-5hn1thwf/pytube
  Running command git checkout -q 164ce5e435813e2018ede4a488ddd3c1f6731f28
Collecting requests==2.25.0
  Downloading requests-2.25.0-py2.py3-none-any.whl (61 kB)
     |████████████████████████████████| 61 kB 4.2 MB/s 
Collecting soupsieve==2.1
  Downloading soupsieve-2.1-py3-none-any.whl (32 kB)
Collecting urllib3==1.26.2
  Downloading urllib3-1.26.2-py2.py3-none-any.whl (136 kB)
     |████████████████████████████████| 136 kB 4.2 MB/s 
Collecting whichcraft==0.6.1
  Downloading whichcraft-0.6.1-py2.py3-none-any.whl (5.2 kB)
Collecting zope.event==4.5.0
  Downloading zope.event-4.5.0-py2.py3-none-any.whl (6.8 kB)
Collecting zope.interface==5.1.0
  Downloading zope.interface-5.1.0-cp38-cp38-manylinux2010_x86_64.whl (243 kB)
     |████████████████████████████████| 243 kB 3.2 MB/s 
Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (from gevent==20.9.0->-r requirements.txt (line 9)) (45.2.0)
Collecting typing_extensions
  Downloading typing_extensions-3.7.4.3-py3-none-any.whl (22 kB)
Building wheels for collected packages: bottle-websocket, Eel, future, pytube
  Building wheel for bottle-websocket (setup.py) ... done
  Created wheel for bottle-websocket: filename=bottle_websocket-0.2.9-py3-none-any.whl size=2345 sha256=e5c343a24467ff202221ecc67fa9b1be17adf723351533bbc0303538385231d0
  Stored in directory: /home/vagrant/.cache/pip/wheels/ab/bd/a8/c939961e0cf3a5515ea922ef6b47e33c1c7237f0ac39443ed5
  Building wheel for Eel (setup.py) ... done
  Created wheel for Eel: filename=Eel-0.14.0-py3-none-any.whl size=17461 sha256=864d4c9d03e580524a2c2b2408d271a420ee942ffd649a6e36e8da61d03c2496
  Stored in directory: /home/vagrant/.cache/pip/wheels/ab/43/3c/887feac137ca66873b4c250d7c7f423961a5efcad0bf57da3d
  Building wheel for future (setup.py) ... done
  Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491058 sha256=9a459f59a6075fb9712667b49d1bd31a7a6f8d47d6db98e4816e8d238e13d54c
  Stored in directory: /home/vagrant/.cache/pip/wheels/8e/70/28/3d6ccd6e315f65f245da085482a2e1c7d14b90b30f239e2cf4
  Building wheel for pytube (setup.py) ... done
  Created wheel for pytube: filename=pytube-10.4.1-py3-none-any.whl size=42910 sha256=13986e141f12d897e423c827de9a007d158cf8e7da2f5982420f0e732dc541b4
  Stored in directory: /home/vagrant/.cache/pip/wheels/74/85/04/363f8909cda72cdb8e11f77b700ae1ea8052e62fcf967e84fd
Successfully built bottle-websocket Eel future pytube
Installing collected packages: soupsieve, beautifulsoup4, bottle, zope.interface, zope.event, greenlet, gevent, gevent-websocket, bottle-websocket, certifi, future, pyparsing, whichcraft, Eel, ffmpeg-python, idna, lxml, mutagen, typing-extensions, pytube, urllib3, requests
  WARNING: The scripts futurize and pasteurize are installed in '/home/vagrant/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
  WARNING: The scripts mid3cp, mid3iconv, mid3v2, moggsplit, mutagen-inspect and mutagen-pony are installed in '/home/vagrant/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
  WARNING: The scripts pytube and pytube3 are installed in '/home/vagrant/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed Eel-0.14.0 beautifulsoup4-4.9.3 bottle-0.12.18 bottle-websocket-0.2.9 certifi-2020.12.5 ffmpeg-python-0.2.0 future-0.18.2 gevent-20.9.0 gevent-websocket-0.10.1 greenlet-0.4.17 idna-2.10 lxml-4.6.2 mutagen-1.45.1 pyparsing-2.4.7 pytube-10.4.1 requests-2.25.0 soupsieve-2.1 typing-extensions-3.7.4.3 urllib3-1.26.2 whichcraft-0.6.1 zope.event-4.5.0 zope.interface-5.1.

next pip3 install cx_Freeze out put was

Collecting cx_Freeze
  Downloading cx_Freeze-6.5.3.tar.gz (112 kB)
     |████████████████████████████████| 112 kB 2.6 MB/s 
Collecting importlib_metadata>=3.1.1
  Downloading importlib_metadata-3.4.0-py3-none-any.whl (10 kB)
Requirement already satisfied: zipp>=0.5 in /usr/lib/python3/dist-packages (from importlib_metadata>=3.1.1->cx_Freeze) (1.0.0)
Building wheels for collected packages: cx-Freeze
  Building wheel for cx-Freeze (setup.py) ... done
  Created wheel for cx-Freeze: filename=cx_Freeze-6.5.3-cp38-cp38-linux_x86_64.whl size=228165 sha256=e3bb2fd9d324cf14b962f406c3d68da3b81e605ef02219e5ba8cd889c8b279ec
  Stored in directory: /home/vagrant/.cache/pip/wheels/13/85/39/a94ea306f6a4b4408c94db654d8b14d74eca429e08c86bf989
Successfully built cx-Freeze
Installing collected packages: importlib-metadata, cx-Freeze
  WARNING: The scripts cxfreeze and cxfreeze-quickstart are installed in '/home/vagrant/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed cx-Freeze-6.5.3 importlib-metadata-3.4.0

Finally I did python3 setup.py bdist_mac out put was

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: invalid command 'bdist_mac'

DId you out put .app at your linux system??

marcelotduarte commented 3 years ago

On Linux doesn't exist bdist_mac, use build_exe On mac you can do build_exe too to check if it builds, then got ahead to bdist_mac.

wimpykid719 commented 3 years ago

umm I see. but I don't want to touch mac system python. I don't want to pollute the environment. I want to use python installed anaconda. Sorry.

wimpykid719 commented 3 years ago

i want to try manual mode where should I put libpython3.7m.dylib to my build file?

wimpykid719 commented 3 years ago

cx_Freeze read LD_LIBRARY_PATH?

marcelotduarte commented 3 years ago

umm I see. but I don't want to touch mac system python. I don't want to pollute the environment.

What?

cx_Freeze read LD_LIBRARY_PATH?

You can run LD_LIBRARY_PATH=.... python setup.py build_exe

You can use DYLD_LIBRARY_PATH too in mac

Now, if want to use in a script you should use base=ConsoleSetPathLib for Executable

marcelotduarte commented 3 years ago

so I installed sudo apt install python3-pip

With Ubuntu you should install de developer libraries, I think the basic is: build-essential python3 python3-dev python3-pip python3-venv

So you can compile, get the libpython*.so, use a venv to create a virtual environment, etc. I used a venv to test.

wimpykid719 commented 3 years ago

ubuntu can't use bdist_mac right?? I want to make app file. and What do you mean this? is that command?

LD_LIBRARY_PATH=.... python setup.py build_exe

wimpykid719 commented 3 years ago

Hello! Finally I give up to use anaconda and reinstall python to my mac system. I could run setup.py(you wrtite for my script) and I got a app file. Out put was looks everything fine. Thank you so much. Start up time was amazing.

and I could launch my app. then I checked my app future work fine. It didn't work. Something went wrong. So I wanna check that like a terminal out put. Is it possible to debug to my app?

wimpykid719 commented 3 years ago

And I'm curious some lines of output when I build the app.

Is that ok with?

Missing modules:
? BaseHTTPServer imported from gevent.tests.test__greenness
? Cheetah.Template imported from bottle
? ConfigParser imported from bottle
? Cookie imported from bottle, requests.compat
? OpenSSL.SSL imported from urllib3.contrib.pyopenssl
? OpenSSL.crypto imported from urllib3.contrib.pyopenssl
? Queue imported from gevent.queue, urllib3.util.queue
? SimpleHTTPServer imported from gevent.tests.test__greenness
? StringIO imported from bottle, pkg_resources._vendor.six, requests.compat, urllib3.packages.six
? UserDict imported from bottle
? __builtin__ imported from future.builtins.misc, future.builtins.new_min_max, future.utils, gevent._compat, gevent._ffi.loop, gevent.backdoor, gevent.builtins, gevent.libev.corecffi, gevent.monkey, gevent.testing.six, past.builtins, past.builtins.misc, past.builtins.noniterators, past.types, pkg_resources._vendor.pyparsing, pyparsing
? __main__ imported from bdb, pdb, pkg_resources, rlcompleter, trace
? __pypy__ imported from gevent._tblib
? _blocks_at_top_level imported from gevent.tests.test__import_blocking_in_greenlet
? _continuation imported from gevent.greenlet
? _dummy_threading imported from dummy_threading
? _frozen_importlib imported from importlib, importlib.abc
? _frozen_importlib_external imported from importlib, importlib._bootstrap, importlib.abc
? _gdbm imported from dbm.gnu
? _import_wait imported from gevent.tests.test__import_wait
? _overlapped imported from asyncio.windows_events
? _setuplibev imported from gevent.libev._corecffi_build
? _setuputils imported from gevent.libev._corecffi_build, gevent.libuv._corecffi_build
? _winapi imported from asyncio.windows_events, asyncio.windows_utils, encodings, multiprocessing.connection, multiprocessing.heap, multiprocessing.popen_spawn_win32, multiprocessing.reduction, site, subprocess
? _winreg imported from pkg_resources._vendor.appdirs, platform, requests.utils
? anydbm imported from future.moves.dbm
? backports.socketpair imported from gevent._socketcommon
? backports.ssl_match_hostname imported from urllib3.packages.ssl_match_hostname
? bjoern imported from bottle
? bottle.ext.websocket imported from eel
? brotli imported from urllib3.response, urllib3.util.request
? cPickle imported from bottle, gevent._tblib
? cStringIO imported from gevent.tests.test__pywsgi
? cchardet imported from bs4.dammit
? cffi imported from gevent.libev._corecffi_build, gevent.libuv._corecffi_build
? cherrypy imported from bottle
? collections.Callable imported from bs4.builder._lxml, bs4.element, requests.compat
? collections.Iterable imported from future.backports.http.client, future.backports.urllib.request, future.types.newbytes, future.types.newint, future.types.newstr, past.types.oldstr, pkg_resources._vendor.pyparsing, pyparsing
? collections.Iterator imported from future.types.newrange
? collections.Mapping imported from future.backports.misc, gevent.contextvars, gevent.tests.test__local, past.builtins.misc, pyparsing, requests.compat, urllib3._collections
? collections.MutableMapping imported from bottle, future.backports.misc, pkg_resources._vendor.pyparsing, pyparsing, requests.compat, urllib3._collections
? collections.Sequence imported from future.types.newrange
? com.sun imported from pkg_resources._vendor.appdirs
? com.sun.jna imported from pkg_resources._vendor.appdirs
? com.sun.jna.platform imported from pkg_resources._vendor.appdirs
? cookielib imported from requests.compat
? copy_reg imported from gevent._tblib
? cryptography imported from requests, urllib3.contrib.pyopenssl
? cryptography.hazmat.backends.openssl imported from urllib3.contrib.pyopenssl
? cryptography.hazmat.backends.openssl.x509 imported from urllib3.contrib.pyopenssl
? cryptography.x509 imported from urllib3.contrib.pyopenssl
? cryptography.x509.extensions imported from urllib3.contrib.pyopenssl
? diesel.protocols.wsgi imported from bottle
? django.utils.simplejson imported from bottle
? dns imported from gevent.tests.monkey_package.issue1526_no_monkey, gevent.tests.monkey_package.issue1526_with_monkey
? dns.rdtypes imported from gevent.tests.monkey_package.issue1526_no_monkey
? dumbdbm imported from future.moves.dbm.dumb
? dummy_thread imported from future.backports.misc
? eventlet imported from bottle
? fapws imported from bottle
? fapws._evwsgi imported from bottle
? flup.server.fcgi imported from bottle
? future_builtins imported from future.builtins.misc
? gdbm imported from future.moves.dbm.gnu
? getaddrinfo_module imported from gevent.tests.test__getaddrinfo_import
? google.appengine.ext.webapp imported from bottle
? graphviz imported from ffmpeg._view
? gunicorn.app.base imported from bottle
? html5lib imported from bs4.builder._html5lib
? html5lib.constants imported from bs4.builder._html5lib
? html5lib.treebuilders imported from bs4.builder._html5lib
? httplib imported from bottle, gevent.tests.test__socket_ssl
? iconv_codec imported from bs4.dammit
? ipdb imported from geventwebsocket.utf8validator
? java imported from unittest.mock
? java.lang imported from platform
? jinja2 imported from bottle, eel
? mako.lookup imported from bottle
? mako.template imported from bottle
? meinheld imported from bottle
? mimetools imported from gevent.pywsgi
? mock imported from gevent.testing
? msvcrt imported from asyncio.windows_events, asyncio.windows_utils, getpass, gevent.subprocess, multiprocessing.popen_spawn_win32, multiprocessing.spawn, subprocess, test.libregrtest.setup, test.support
? multiprocessing.AuthenticationError imported from multiprocessing.connection
? multiprocessing.BufferTooShort imported from multiprocessing.connection
? multiprocessing.Process imported from gevent.tests.test__issue600
? multiprocessing.TimeoutError imported from multiprocessing.pool
? multiprocessing.cpu_count imported from gevent.testing.testrunner
? multiprocessing.get_context imported from multiprocessing.managers, multiprocessing.pool, multiprocessing.sharedctypes
? multiprocessing.get_start_method imported from multiprocessing.spawn
? multiprocessing.set_start_method imported from multiprocessing.spawn
? netbios imported from uuid
? nt imported from ntpath, os, pathlib, shutil
? nturl2path imported from future.backports.urllib.request, urllib.request
? objgraph imported from gevent.testing.leakcheck
? ordereddict imported from pkg_resources._vendor.pyparsing, pyparsing
? org.python.core imported from copy, pickle
? os.path imported from distutils.file_util, gevent.libev._corecffi_build, gevent.libuv._corecffi_build, gevent.testing.modules, gevent.testing.testcase, gevent.tests.monkey_package.__main__, gevent.tests.monkey_package.issue302monkey, gevent.tests.monkey_package.script, gevent.tests.test__monkey_module_run, os, pkg_resources, pkgutil, py_compile, requests.adapters, sysconfig, test.libregrtest.utils, test.support.script_helper, tracemalloc, unittest, unittest.util
? paste imported from bottle
? paste.translogger imported from bottle
? pkg_resources.extern.appdirs imported from pkg_resources
? pkg_resources.extern.packaging imported from pkg_resources
? pkg_resources.extern.pyparsing imported from pkg_resources._vendor.packaging.markers, pkg_resources._vendor.packaging.requirements
? pkg_resources.extern.six imported from pkg_resources, pkg_resources.py31compat
? pkg_resources.extern.six.moves imported from pkg_resources
? pkg_resources.extern.six.moves.urllib imported from pkg_resources._vendor.packaging.requirements
? psutil imported from gevent._compat, gevent.testing.openfiles, gevent.tests.test__makefile_ref
? rocket imported from bottle
? selectors2 imported from gevent.selectors, gevent.tests.test__monkey_selectors
? simplejson imported from bottle, requests.compat
? socketio imported from bottle
? socks imported from urllib3.contrib.socks
? thread imported from bottle, future.backports.misc, gevent.tests.lock_tests, gevent.tests.test__core_async, gevent.tests.test__monkey, gevent.tests.test__monkey_futures_thread, gevent.tests.test__refcount, gevent.tests.test__thread, gevent.tests.test__threading_2, gevent.thread
? tkinter imported from test.support
? tornado.httpserver imported from bottle
? tornado.ioloop imported from bottle
? tornado.wsgi imported from bottle
? twisted.internet imported from bottle
? twisted.python.threadpool imported from bottle
? twisted.web imported from bottle
? urllib.getproxies imported from requests.compat
? urllib.getproxies_environment imported from requests.compat
? urllib.proxy_bypass imported from requests.compat
? urllib.proxy_bypass_environment imported from requests.compat
? urllib.quote imported from bottle, requests.compat
? urllib.quote_plus imported from requests.compat
? urllib.unquote imported from bottle, gevent.pywsgi, requests.compat
? urllib.unquote_plus imported from requests.compat
? urllib.urlencode imported from bottle, requests.compat
? urllib2 imported from gevent.tests.test__example_wsgiserver, gevent.tests.test__greenness, requests.compat
? urllib3.packages.six.moves imported from urllib3.connectionpool, urllib3.util.queue, urllib3.util.response
? urllib3.packages.six.moves.http_client imported from urllib3.connection, urllib3.exceptions
? urllib3.packages.six.moves.urllib.parse imported from urllib3.poolmanager, urllib3.request
? urlparse imported from bottle, gevent.tests.test__pywsgi, requests.compat
? vms_lib imported from platform
? waitress imported from bottle
? whichdb imported from future.moves.dbm
? win32api imported from gevent.win32util, pkg_resources._vendor.appdirs
? win32com.shell imported from pkg_resources._vendor.appdirs
? win32evtlog imported from logging.handlers
? win32evtlogutil imported from logging.handlers
? win32wnet imported from uuid
? winreg imported from eel.chrome, future.backports.urllib.request, mimetypes, pkg_resources._vendor.appdirs, platform, requests.utils, urllib.request
? wsaccel.utf8validator imported from geventwebsocket.utf8validator
This is not necessarily a problem - the modules may not be needed on this platform.
wimpykid719 commented 3 years ago

Sorry First My app doesn't work on my new environment. I will fix that first.

marcelotduarte commented 3 years ago

Is that ok with? ... This is not necessarily a problem - the modules may not be needed on this platform.

But can help to identify modules or packages that are missing.

I could run setup.py(you wrtite for my script) and I got a app file

Do you use the other changes that I suggested?

#create a new file modules/__init__.py

#in app.py I added before import eel to fix eel

import sys, os
if getattr(sys, 'frozen', False):
       sys._MEIPASS = os.path.dirname(sys.executable)
wimpykid719 commented 3 years ago

Do you use the other changes that I suggested?

No. Just copy and pasted.

wimpykid719 commented 3 years ago

I fixed my new environment. And build again. but some of future didn't work. My app try to download image but there is no where my image. I think path is wrong.

wimpykid719 commented 3 years ago

build file

YT_Download-0.1 ー contents ー Frameworks
                  Info.plist
                  Resources
                  MacOS
                   |
                    ー app, web etc...

if I double click app or execute on terminal like $ app can show debug mode? I wanna know what path is wrong.

wimpykid719 commented 3 years ago

I think error is happening here. for this path web/images/thumbnail/{videoID}.jpg' because image doesn't show up and download. but I don't know how to change the path to read the app. app.py

@eel.expose
def get_src(videoID):
    path = f'web/images/thumbnail/{videoID}.jpg'
    url = f'https://img.youtube.com/vi/{videoID}/maxresdefault.jpg'
    res = requests.get(url, stream=True)
    if res.status_code == 200:
        with open(path, 'wb') as f:
            f.write(res.content)
        return path.replace('web/', '')
    else:
        url = f'https://img.youtube.com/vi/{videoID}/hqdefault.jpg'
        res = requests.get(url)
        if res.status_code == 200:
            with open(path, 'wb') as f:
                f.write(res.content)
            return path.replace('web/', '')
        else:
            return 'images/14ver1.jpg'
marcelotduarte commented 3 years ago

You can use a fullpath using

if getattr(sys, 'frozen', False):
       path = os.path.dirname(sys.executable)

to fix the path or use a importlib.resources. In a frozen app in python 3.7+ you can use breakpoint() at this point and check the variables. Debugger Commands.

wimpykid719 commented 3 years ago

I write a breakpoint() to my app.py and rebuild python3 setup.py bdist_mac and run app file. but it didn't show up console window. So I can't debug.

marcelotduarte commented 3 years ago

Are you running from a terminal?

wimpykid719 commented 3 years ago

No. My app.py is works fine. but builded with cx_Freeze app didn't work some function. So I want to debug .app file.

marcelotduarte commented 3 years ago

Then run the frozen app from the terminal to get the debug.

wimpykid719 commented 3 years ago

Like this one?

Myusername:build test$ open YT_Download-0.1.app
Myusername:build test$ 

I can run from the console and start app but console change to input soon while app working.

wimpykid719 commented 3 years ago

Bundled file can't make a new file or folder in package for run a script?

this code doesn't work well.

Get thumbnail img from youtube and store it.

path = f'web/images/thumbnail/{videoID}.jpg'
    url = f'https://img.youtube.com/vi/{videoID}/maxresdefault.jpg'
    res = requests.get(url, stream=True)
    if res.status_code == 200:
        with open(path, 'wb') as f:
            f.write(res.content)
        return path.replace('web/', '')#index.htmlから見たパス。
wimpykid719 commented 3 years ago

Hi, I could run from terminal like this ./app Then my Bundled script work perfect. but double click YT_Download-0.1 run. didn't work well. I don't know why. Finally I could debug .app for double click binary app file. And Path was wrong when I run .app. I checked os.getcwd() Path was Users/test. But My thumbnail folder in MacOS/web/images/thumbnail So how to change the current directory? Maybe Absolute path will work but If I changed the place of YT_Download-0.1.app then need to change the Path.

marcelotduarte commented 3 years ago

You can check if you're running the app in frozen mode or not. getattr(sys, 'frozen', False) is True when frozen. Then update your path, current dir, or whatever you need.