[GH-ISSUE #303] Auto-py-to-exe not accepting self-made Rust package. IDE works as expected #265

Closed
opened 2026-02-26 12:21:00 +03:00 by kerem · 6 comments
Owner

Originally created by @nednoodlehead on GitHub (Aug 19, 2022).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/303

Originally assigned to: @nednoodlehead on GitHub.

Quick Checks For You

  • [ Y] I have read/searched in the help post
  • [ Y] I have searched other issues looking for an issue similar to mine
  • [ Y] I have made sure my application/script runs before trying to package

Describe the bug
When using a package made in Rust (that I created), py-auto-to-exe does not detect it, and it not imported

To Reproduce
Steps to reproduce the behavior:

  1. New repository, create any py application, I'm making a small Tkinter window. (create new venv duh)
  2. pip install Maturin
  3. Create new directory in the new python project 'rust' (cd into it)
  4. in cmd (in the rust directory): maturin init
  5. Select pyo3
  6. Open .\rust\src\lib.rs
  7. Change the function name below '#[pymodule]' and the 'name' in cargo.toml to a custom name. I choose 'balling'
  8. In cmd (in rust directory): maturin develop
  9. Receive success message like:
    📦 Built wheel for CPython 3.10 to C:\Users\my_name\AppData\Local\Temp.tmpVTa6wc\rust-0.1.0-cp310-none-win_amd64.whl
    🛠 Installed rust-0.1.0
  10. Include bindings into python file. Import said module, in my case; 'balling'.

YOU SHOULD NOW HAVE WORKING RUST BINDS IN PYTHON

  1. Open cmd in project root.
  2. (install auto-py-to-exe if not done) type: auto-py-to-exe
  3. Script location: main.py
  4. One directory (i dont think this matters at all)
  5. In my case, with a tkinter app, choose 'window based (hide the console)'
  6. In advanced: add 'balling' to the --hidden-import flag
  7. Convert .py to .exe
  8. Open 'main.exe' in the exported directory
  9. Se error:
    image

If you have example code, please provide a [minimal reproducible example]

in main.py

import tkinter
import balling

def print_answer(num1, num2):
print(balling.sum_as_string(num1, num2))

root = tkinter.Tk()
root.geometry('500x500')
root.configure(background='#202020')
tkinter.Label(root, text='Ayo!!!').pack()
tkinter.Button(root, text='rust!', command=lambda: print_answer(1, 3)).pack()
root.mainloop()

In main.rs

use pyo3::prelude::*;

/// Formats the sum of two numbers as string.
#[pyfunction]
fn sum_as_string(a: usize, b: usize) -> PyResult {
Ok((a + b).to_string())
}

/// A Python module implemented in Rust.
#[pymodule]
fn balling(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(sum_as_string, m)?)?;
Ok(())
}

Expected behavior
py-auto-to-exe should detect rust bindings, as they are an installed package. It does not do this.

Screenshots
just the one above

Your Environment:

  • Python version: 3.10.2
  • pip: 21.2.4
  • auto-py-to-exe version: 2.22.0
  • PyInstaller version: 5.3
  • Eel version: 0.14.0

Additional context
There is no mention of 'balling' in the output it gives on the auto-py GUI

Originally created by @nednoodlehead on GitHub (Aug 19, 2022). Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/303 Originally assigned to: @nednoodlehead on GitHub. **Quick Checks For You** - [ Y] I have read/searched in the [help post](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe) - [ Y] I have [searched other issues](https://github.com/brentvollebregt/auto-py-to-exe/issues?q=is%3Aissue+) looking for an issue similar to mine - [ Y] I have made sure my application/script runs before trying to package **Describe the bug** When using a package made in Rust (that I created), py-auto-to-exe does not detect it, and it not imported **To Reproduce** Steps to reproduce the behavior: 1. New repository, create any py application, I'm making a small Tkinter window. (create new venv duh) 2. pip install Maturin 3. Create new directory in the new python project 'rust' (cd into it) 4. in cmd (in the rust directory): maturin init 5. Select pyo3 6. Open .\rust\src\lib.rs 7. <Optional> Change the function name below '#[pymodule]' and the 'name' in cargo.toml to a custom name. I choose 'balling' 8. In cmd (in rust directory): maturin develop 9. Receive success message like: 📦 Built wheel for CPython 3.10 to C:\Users\my_name\AppData\Local\Temp\.tmpVTa6wc\rust-0.1.0-cp310-none-win_amd64.whl 🛠 Installed rust-0.1.0 10. Include bindings into python file. Import said module, in my case; 'balling'. ## YOU SHOULD NOW HAVE WORKING RUST BINDS IN PYTHON ## 11. Open cmd in project root. 12. (install auto-py-to-exe if not done) type: auto-py-to-exe 13. Script location: main.py 14. One directory (i dont think this matters at all) 15. In my case, with a tkinter app, choose 'window based (hide the console)' 16. In advanced: add 'balling' to the --hidden-import flag 17. Convert .py to .exe 18. Open 'main.exe' in the exported directory 19. Se error: ![image](https://user-images.githubusercontent.com/102321690/185680981-f2fd5b60-9888-4f2d-961a-b9daa5c0caf1.png) > If you have example code, please provide a [minimal reproducible example] ## in main.py ## import tkinter import balling def print_answer(num1, num2): print(balling.sum_as_string(num1, num2)) root = tkinter.Tk() root.geometry('500x500') root.configure(background='#202020') tkinter.Label(root, text='Ayo!!!').pack() tkinter.Button(root, text='rust!', command=lambda: print_answer(1, 3)).pack() root.mainloop() ## ## In main.rs ## use pyo3::prelude::*; /// Formats the sum of two numbers as string. #[pyfunction] fn sum_as_string(a: usize, b: usize) -> PyResult<String> { Ok((a + b).to_string()) } /// A Python module implemented in Rust. #[pymodule] fn balling(_py: Python, m: &PyModule) -> PyResult<()> { m.add_function(wrap_pyfunction!(sum_as_string, m)?)?; Ok(()) } ## **Expected behavior** py-auto-to-exe should detect rust bindings, as they are an installed package. It does not do this. **Screenshots** just the one above **Your Environment:** - Python version: 3.10.2 - pip: 21.2.4 - auto-py-to-exe version: 2.22.0 - PyInstaller version: 5.3 - Eel version: 0.14.0 **Additional context** There is no mention of 'balling' in the output it gives on the auto-py GUI
kerem 2026-02-26 12:21:00 +03:00
  • closed this issue
  • added the
    question
    label
Author
Owner

@brentvollebregt commented on GitHub (Aug 20, 2022):

Due to this being in the build process - this is definitely a PyInstaller issue. This issue does look very specific to maturin and it would be cool if the creator(s) could give some tips on packaging their stuff but if they don't know how PyInstaller works, it might not be an easy thing to offer.

However, we may be able to check why PyInstaller isn't picking up the library. First of all, I don't know how maturin works. After running maturin develop, apparently it installs the built module in the current virtualenv - are you able to obtain and provide what this file structure looks like? Hopefully it's in the site-packages folder.

<!-- gh-comment-id:1221207245 --> @brentvollebregt commented on GitHub (Aug 20, 2022): Due to this being in the build process - this is definitely a PyInstaller issue. This issue does look very specific to `maturin` and it would be cool if the creator(s) could give some tips on packaging their stuff but if they don't know how PyInstaller works, it might not be an easy thing to offer. However, we may be able to check why PyInstaller isn't picking up the library. First of all, I don't know how `maturin` works. After running `maturin develop`, apparently it installs the built module in the current virtualenv - are you able to obtain and provide what this file structure looks like? Hopefully it's in the site-packages folder.
Author
Owner

@nednoodlehead commented on GitHub (Aug 20, 2022):

The file structure is:
image
Inside of pycache :
image

the only readable file according to notepad++ is init.py, which looks like:

from .data_clean import *

doc = data_clean.doc
if hasattr(data_clean, "all"):
all = data_clean.all

end

Also, these files are based on my real project, 'data_clean' is the module name.

<!-- gh-comment-id:1221209705 --> @nednoodlehead commented on GitHub (Aug 20, 2022): The file structure is: ![image](https://user-images.githubusercontent.com/102321690/185725325-8c7d392c-ee2a-4641-8c66-cdb378171472.png) Inside of __pycache__ : ![image](https://user-images.githubusercontent.com/102321690/185725336-1fb6511c-f257-4ec9-b069-53fd71748487.png) the only readable file according to notepad++ is __init__.py, which looks like: from .data_clean import * __doc__ = data_clean.__doc__ if hasattr(data_clean, "__all__"): __all__ = data_clean.__all__ # end Also, these files are based on my real project, 'data_clean' is the module name.
Author
Owner

@brentvollebregt commented on GitHub (Aug 20, 2022):

Are you able to provide the output within auto-py-to-exe when packaging

<!-- gh-comment-id:1221235438 --> @brentvollebregt commented on GitHub (Aug 20, 2022): Are you able to provide the output within auto-py-to-exe when packaging
Author
Owner

@nednoodlehead commented on GitHub (Aug 20, 2022):

Running auto-py-to-exe v2.22.0
Running auto-py-to-exe v2.22.0
Building directory: C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw
Building directory: C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw
Provided command: pyinstaller --noconfirm --onedir --windowed --icon "F:/Projects/Python Projects/punge/img/punge icon.ico" --add-data "F:/Projects/Python Projects/Punge Production/Cache;Cache/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/" --add-data "F:/Projects/Python Projects/Punge Production/img;img/" --add-data "F:/Projects/Python Projects/Punge Production/rust;rust/" --add-data "F:/Projects/Python Projects/Punge Production/db.py;." --add-data "F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;." --add-data "F:/Projects/Python Projects/Punge Production/README.md;." --add-data "F:/Projects/Python Projects/Punge Production/update_entries.py;." --hidden-import "data_clean"  "F:/Projects/Python Projects/punge/punge_main.py"
Provided command: pyinstaller --noconfirm --onedir --windowed --icon "F:/Projects/Python Projects/punge/img/punge icon.ico" --add-data "F:/Projects/Python Projects/Punge Production/Cache;Cache/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/" --add-data "F:/Projects/Python Projects/Punge Production/img;img/" --add-data "F:/Projects/Python Projects/Punge Production/rust;rust/" --add-data "F:/Projects/Python Projects/Punge Production/db.py;." --add-data "F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;." --add-data "F:/Projects/Python Projects/Punge Production/README.md;." --add-data "F:/Projects/Python Projects/Punge Production/update_entries.py;." --hidden-import "data_clean"  "F:/Projects/Python Projects/punge/punge_main.py"
Recursion Limit is set to 5000
Recursion Limit is set to 5000
Executing: pyinstaller --noconfirm --onedir --windowed --icon F:/Projects/Python Projects/punge/img/punge icon.ico --add-data F:/Projects/Python Projects/Punge Production/Cache;Cache/ --add-data F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/ --add-data F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/ --add-data F:/Projects/Python Projects/Punge Production/img;img/ --add-data F:/Projects/Python Projects/Punge Production/rust;rust/ --add-data F:/Projects/Python Projects/Punge Production/db.py;. --add-data F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;. --add-data F:/Projects/Python Projects/Punge Production/README.md;. --add-data F:/Projects/Python Projects/Punge Production/update_entries.py;. --hidden-import data_clean F:/Projects/Python Projects/punge/punge_main.py --distpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\application --workpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build --specpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw
Executing: pyinstaller --noconfirm --onedir --windowed --icon F:/Projects/Python Projects/punge/img/punge icon.ico --add-data F:/Projects/Python Projects/Punge Production/Cache;Cache/ --add-data F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/ --add-data F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/ --add-data F:/Projects/Python Projects/Punge Production/img;img/ --add-data F:/Projects/Python Projects/Punge Production/rust;rust/ --add-data F:/Projects/Python Projects/Punge Production/db.py;. --add-data F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;. --add-data F:/Projects/Python Projects/Punge Production/README.md;. --add-data F:/Projects/Python Projects/Punge Production/update_entries.py;. --hidden-import data_clean F:/Projects/Python Projects/punge/punge_main.py --distpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\application --workpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build --specpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw


13977 INFO: PyInstaller: 5.3
13977 INFO: PyInstaller: 5.3
14003 INFO: Python: 3.10.2
14003 INFO: Python: 3.10.2
14044 INFO: Platform: Windows-10-10.0.19044-SP0
14044 INFO: Platform: Windows-10-10.0.19044-SP0
14067 INFO: wrote C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\punge_main.spec
14067 INFO: wrote C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\punge_main.spec
14086 INFO: UPX is not available.
14086 INFO: UPX is not available.
14119 INFO: Extending PYTHONPATH with paths
['F:\\Projects\\Python Projects\\punge']
14119 INFO: Extending PYTHONPATH with paths
['F:\\Projects\\Python Projects\\punge']
14665 INFO: checking Analysis
14665 INFO: checking Analysis
14685 INFO: Building Analysis because Analysis-00.toc is non existent
14685 INFO: Building Analysis because Analysis-00.toc is non existent
14718 INFO: Initializing module dependency graph...
14718 INFO: Initializing module dependency graph...
14753 INFO: Caching module graph hooks...
14753 INFO: Caching module graph hooks...
14828 INFO: Analyzing base_library.zip ...
14828 INFO: Analyzing base_library.zip ...
21401 INFO: Processing pre-find module path hook distutils from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-distutils.py'.
21401 INFO: Processing pre-find module path hook distutils from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-distutils.py'.
21413 INFO: distutils: retargeting to non-venv dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib'
21413 INFO: distutils: retargeting to non-venv dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib'
23929 INFO: Caching module dependency graph...
23929 INFO: Caching module dependency graph...
24144 INFO: running Analysis Analysis-00.toc
24144 INFO: running Analysis Analysis-00.toc
24183 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable
  required by C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python.exe
24183 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable
  required by C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python.exe
24307 INFO: Analyzing F:\Projects\Python Projects\punge\punge_main.py
24307 INFO: Analyzing F:\Projects\Python Projects\punge\punge_main.py
29184 INFO: Processing pre-find module path hook site from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-site.py'.
29184 INFO: Processing pre-find module path hook site from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-site.py'.
29202 INFO: site: retargeting to fake-dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules'
29202 INFO: site: retargeting to fake-dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules'
37017 INFO: Processing module hooks...
37017 INFO: Processing module hooks...
37036 INFO: Loading module hook 'hook-eel.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
37036 INFO: Loading module hook 'hook-eel.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
37220 INFO: Loading module hook 'hook-pycparser.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
37220 INFO: Loading module hook 'hook-pycparser.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
37245 INFO: Loading module hook 'hook-difflib.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37245 INFO: Loading module hook 'hook-difflib.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37263 INFO: Loading module hook 'hook-distutils.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37263 INFO: Loading module hook 'hook-distutils.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37279 INFO: Loading module hook 'hook-distutils.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37279 INFO: Loading module hook 'hook-distutils.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37289 INFO: Loading module hook 'hook-encodings.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37289 INFO: Loading module hook 'hook-encodings.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37682 INFO: Loading module hook 'hook-gevent.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
37682 INFO: Loading module hook 'hook-gevent.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
38663 INFO: Determining a mapping of distributions to packages...
38663 INFO: Determining a mapping of distributions to packages...
45975 WARNING: Unable to find package for requirement zope.interface from package gevent.
45975 WARNING: Unable to find package for requirement zope.interface from package gevent.
45990 WARNING: Unable to find package for requirement zope.event from package gevent.
45990 WARNING: Unable to find package for requirement zope.event from package gevent.
46006 INFO: Packages required by gevent:
['cffi', 'greenlet', 'setuptools']
46006 INFO: Packages required by gevent:
['cffi', 'greenlet', 'setuptools']
48013 INFO: Loading module hook 'hook-heapq.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48013 INFO: Loading module hook 'hook-heapq.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48049 INFO: Loading module hook 'hook-lib2to3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48049 INFO: Loading module hook 'hook-lib2to3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48148 INFO: Loading module hook 'hook-multiprocessing.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48148 INFO: Loading module hook 'hook-multiprocessing.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48177 INFO: Loading module hook 'hook-pickle.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48177 INFO: Loading module hook 'hook-pickle.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48197 INFO: Loading module hook 'hook-PIL.Image.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
48197 INFO: Loading module hook 'hook-PIL.Image.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49089 INFO: Loading module hook 'hook-PIL.ImageFilter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49089 INFO: Loading module hook 'hook-PIL.ImageFilter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49103 INFO: Loading module hook 'hook-PIL.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49103 INFO: Loading module hook 'hook-PIL.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49145 INFO: Loading module hook 'hook-PIL.SpiderImagePlugin.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49145 INFO: Loading module hook 'hook-PIL.SpiderImagePlugin.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49171 INFO: Loading module hook 'hook-pkg_resources.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49171 INFO: Loading module hook 'hook-pkg_resources.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
49969 INFO: Processing pre-safe import module hook win32com from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\pre_safe_import_module\\hook-win32com.py'.
49969 INFO: Processing pre-safe import module hook win32com from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\pre_safe_import_module\\hook-win32com.py'.
50438 INFO: Loading module hook 'hook-platform.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
50438 INFO: Loading module hook 'hook-platform.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
50478 INFO: Loading module hook 'hook-setuptools.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
50478 INFO: Loading module hook 'hook-setuptools.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
51748 INFO: Loading module hook 'hook-sqlalchemy.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
51748 INFO: Loading module hook 'hook-sqlalchemy.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
52223 WARNING: Hidden import "pysqlite2" not found!
52223 WARNING: Hidden import "pysqlite2" not found!
52263 WARNING: Hidden import "MySQLdb" not found!
52263 WARNING: Hidden import "MySQLdb" not found!
52279 WARNING: Hidden import "psycopg2" not found!
52279 WARNING: Hidden import "psycopg2" not found!
53562 INFO: Loading module hook 'hook-sqlite3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
53562 INFO: Loading module hook 'hook-sqlite3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54017 INFO: Loading module hook 'hook-sysconfig.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54017 INFO: Loading module hook 'hook-sysconfig.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54036 INFO: Loading module hook 'hook-win32ctypes.core.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54036 INFO: Loading module hook 'hook-win32ctypes.core.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54644 INFO: Loading module hook 'hook-xml.dom.domreg.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54644 INFO: Loading module hook 'hook-xml.dom.domreg.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54673 INFO: Loading module hook 'hook-xml.etree.cElementTree.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54673 INFO: Loading module hook 'hook-xml.etree.cElementTree.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54705 INFO: Loading module hook 'hook-xml.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54705 INFO: Loading module hook 'hook-xml.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54737 INFO: Loading module hook 'hook-zope.interface.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54737 INFO: Loading module hook 'hook-zope.interface.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54761 INFO: Loading module hook 'hook-_tkinter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54761 INFO: Loading module hook 'hook-_tkinter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
54920 INFO: checking Tree
54920 INFO: checking Tree
54943 INFO: Building Tree because Tree-00.toc is non existent
54943 INFO: Building Tree because Tree-00.toc is non existent
54964 INFO: Building Tree Tree-00.toc
54964 INFO: Building Tree Tree-00.toc
55189 INFO: checking Tree
55189 INFO: checking Tree
55213 INFO: Building Tree because Tree-01.toc is non existent
55213 INFO: Building Tree because Tree-01.toc is non existent
55245 INFO: Building Tree Tree-01.toc
55245 INFO: Building Tree Tree-01.toc
55364 INFO: checking Tree
55364 INFO: checking Tree
55390 INFO: Building Tree because Tree-02.toc is non existent
55390 INFO: Building Tree because Tree-02.toc is non existent
55421 INFO: Building Tree Tree-02.toc
55421 INFO: Building Tree Tree-02.toc
55458 INFO: Loading module hook 'hook-pythoncom.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
55458 INFO: Loading module hook 'hook-pythoncom.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
55855 INFO: Loading module hook 'hook-pywintypes.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
55855 INFO: Loading module hook 'hook-pywintypes.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
56263 INFO: Loading module hook 'hook-win32com.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
56263 INFO: Loading module hook 'hook-win32com.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'...
56909 INFO: Loading module hook 'hook-setuptools.msvc.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
56909 INFO: Loading module hook 'hook-setuptools.msvc.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'...
56992 INFO: Looking for ctypes DLLs
56992 INFO: Looking for ctypes DLLs
57140 INFO: Analyzing run-time hooks ...
57140 INFO: Analyzing run-time hooks ...
57181 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py'
57181 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py'
57214 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_subprocess.py'
57214 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_subprocess.py'
57246 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py'
57246 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py'
57268 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py'
57268 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py'
57311 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py'
57311 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py'
57360 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32api.py'
57360 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32api.py'
57394 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32comgenpy.py'
57394 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32comgenpy.py'
57420 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth__tkinter.py'
57420 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth__tkinter.py'
57464 INFO: Looking for dynamic libraries
57464 INFO: Looking for dynamic libraries
59505 INFO: Looking for eggs
59505 INFO: Looking for eggs
59531 INFO: Using Python library C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python310.dll
59531 INFO: Using Python library C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python310.dll
59563 INFO: Found binding redirects: 
[]
59563 INFO: Found binding redirects: 
[]
59602 INFO: Warnings written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\warn-punge_main.txt
59602 INFO: Warnings written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\warn-punge_main.txt
59754 INFO: Graph cross-reference written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\xref-punge_main.html
59754 INFO: Graph cross-reference written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\xref-punge_main.html
59828 INFO: Appending 'datas' from .spec
59828 INFO: Appending 'datas' from .spec
60829 INFO: checking PYZ
60829 INFO: checking PYZ
60858 INFO: Building PYZ because PYZ-00.toc is non existent
60858 INFO: Building PYZ because PYZ-00.toc is non existent
60890 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz
60890 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz
62391 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz completed successfully.
62391 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz completed successfully.
62460 INFO: checking PKG
62460 INFO: checking PKG
62481 INFO: Building PKG because PKG-00.toc is non existent
62481 INFO: Building PKG because PKG-00.toc is non existent
62522 INFO: Building PKG (CArchive) punge_main.pkg
62522 INFO: Building PKG (CArchive) punge_main.pkg
62605 INFO: Building PKG (CArchive) punge_main.pkg completed successfully.
62605 INFO: Building PKG (CArchive) punge_main.pkg completed successfully.
62634 INFO: Bootloader C:\Users\Spencer\AppData\Local\Programs\Python\Python310\lib\site-packages\PyInstaller\bootloader\Windows-64bit\runw.exe
62634 INFO: Bootloader C:\Users\Spencer\AppData\Local\Programs\Python\Python310\lib\site-packages\PyInstaller\bootloader\Windows-64bit\runw.exe
62666 INFO: checking EXE
62666 INFO: checking EXE
62698 INFO: Building EXE because EXE-00.toc is non existent
62698 INFO: Building EXE because EXE-00.toc is non existent
62729 INFO: Building EXE from EXE-00.toc
62729 INFO: Building EXE from EXE-00.toc
62761 INFO: Copying bootloader EXE to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable
62761 INFO: Copying bootloader EXE to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable
62914 INFO: Copying icon to EXE
62914 INFO: Copying icon to EXE
62980 INFO: Copying icons from ['F:\\Projects\\Python Projects\\punge\\img\\punge icon.ico']
62980 INFO: Copying icons from ['F:\\Projects\\Python Projects\\punge\\img\\punge icon.ico']
63056 INFO: Writing RT_GROUP_ICON 0 resource with 132 bytes
63056 INFO: Writing RT_GROUP_ICON 0 resource with 132 bytes
63080 INFO: Writing RT_ICON 1 resource with 1128 bytes
63080 INFO: Writing RT_ICON 1 resource with 1128 bytes
63112 INFO: Writing RT_ICON 2 resource with 2440 bytes
63112 INFO: Writing RT_ICON 2 resource with 2440 bytes
63144 INFO: Writing RT_ICON 3 resource with 4264 bytes
63144 INFO: Writing RT_ICON 3 resource with 4264 bytes
63176 INFO: Writing RT_ICON 4 resource with 9640 bytes
63176 INFO: Writing RT_ICON 4 resource with 9640 bytes
63209 INFO: Writing RT_ICON 5 resource with 16936 bytes
63209 INFO: Writing RT_ICON 5 resource with 16936 bytes
63241 INFO: Writing RT_ICON 6 resource with 38056 bytes
63241 INFO: Writing RT_ICON 6 resource with 38056 bytes
63272 INFO: Writing RT_ICON 7 resource with 67624 bytes
63272 INFO: Writing RT_ICON 7 resource with 67624 bytes
63303 INFO: Writing RT_ICON 8 resource with 152104 bytes
63303 INFO: Writing RT_ICON 8 resource with 152104 bytes
63335 INFO: Writing RT_ICON 9 resource with 10171 bytes
63335 INFO: Writing RT_ICON 9 resource with 10171 bytes
63355 INFO: Copying 0 resources to EXE
63355 INFO: Copying 0 resources to EXE
63375 INFO: Embedding manifest in EXE
63375 INFO: Embedding manifest in EXE
63394 INFO: Updating manifest in C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable
63394 INFO: Updating manifest in C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable
63482 INFO: Updating resource type 24 name 1 language 0
63482 INFO: Updating resource type 24 name 1 language 0
63513 INFO: Appending PKG archive to EXE
63513 INFO: Appending PKG archive to EXE
63552 INFO: Fixing EXE headers
63552 INFO: Fixing EXE headers
63939 INFO: Building EXE from EXE-00.toc completed successfully.
63939 INFO: Building EXE from EXE-00.toc completed successfully.
63968 INFO: checking COLLECT
63968 INFO: checking COLLECT
63996 INFO: Building COLLECT because COLLECT-00.toc is non existent
63996 INFO: Building COLLECT because COLLECT-00.toc is non existent
64037 INFO: Building COLLECT COLLECT-00.toc
64037 INFO: Building COLLECT COLLECT-00.toc
149682 INFO: Building COLLECT COLLECT-00.toc completed successfully.
149682 INFO: Building COLLECT COLLECT-00.toc completed successfully.


Moving project to: F:\Projects\Python Projects\punge\output
Moving project to: F:\Projects\Python Projects\punge\output
Complete.
<!-- gh-comment-id:1221370670 --> @nednoodlehead commented on GitHub (Aug 20, 2022): ``` Running auto-py-to-exe v2.22.0 Running auto-py-to-exe v2.22.0 Building directory: C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw Building directory: C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw Provided command: pyinstaller --noconfirm --onedir --windowed --icon "F:/Projects/Python Projects/punge/img/punge icon.ico" --add-data "F:/Projects/Python Projects/Punge Production/Cache;Cache/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/" --add-data "F:/Projects/Python Projects/Punge Production/img;img/" --add-data "F:/Projects/Python Projects/Punge Production/rust;rust/" --add-data "F:/Projects/Python Projects/Punge Production/db.py;." --add-data "F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;." --add-data "F:/Projects/Python Projects/Punge Production/README.md;." --add-data "F:/Projects/Python Projects/Punge Production/update_entries.py;." --hidden-import "data_clean" "F:/Projects/Python Projects/punge/punge_main.py" Provided command: pyinstaller --noconfirm --onedir --windowed --icon "F:/Projects/Python Projects/punge/img/punge icon.ico" --add-data "F:/Projects/Python Projects/Punge Production/Cache;Cache/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/" --add-data "F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/" --add-data "F:/Projects/Python Projects/Punge Production/img;img/" --add-data "F:/Projects/Python Projects/Punge Production/rust;rust/" --add-data "F:/Projects/Python Projects/Punge Production/db.py;." --add-data "F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;." --add-data "F:/Projects/Python Projects/Punge Production/README.md;." --add-data "F:/Projects/Python Projects/Punge Production/update_entries.py;." --hidden-import "data_clean" "F:/Projects/Python Projects/punge/punge_main.py" Recursion Limit is set to 5000 Recursion Limit is set to 5000 Executing: pyinstaller --noconfirm --onedir --windowed --icon F:/Projects/Python Projects/punge/img/punge icon.ico --add-data F:/Projects/Python Projects/Punge Production/Cache;Cache/ --add-data F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/ --add-data F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/ --add-data F:/Projects/Python Projects/Punge Production/img;img/ --add-data F:/Projects/Python Projects/Punge Production/rust;rust/ --add-data F:/Projects/Python Projects/Punge Production/db.py;. --add-data F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;. --add-data F:/Projects/Python Projects/Punge Production/README.md;. --add-data F:/Projects/Python Projects/Punge Production/update_entries.py;. --hidden-import data_clean F:/Projects/Python Projects/punge/punge_main.py --distpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\application --workpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build --specpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw Executing: pyinstaller --noconfirm --onedir --windowed --icon F:/Projects/Python Projects/punge/img/punge icon.ico --add-data F:/Projects/Python Projects/Punge Production/Cache;Cache/ --add-data F:/Projects/Python Projects/Punge Production/default_save_jpg;default_save_jpg/ --add-data F:/Projects/Python Projects/Punge Production/default_save_mp3;default_save_mp3/ --add-data F:/Projects/Python Projects/Punge Production/img;img/ --add-data F:/Projects/Python Projects/Punge Production/rust;rust/ --add-data F:/Projects/Python Projects/Punge Production/db.py;. --add-data F:/Projects/Python Projects/Punge Production/MAINPLAYLIST.sqlite;. --add-data F:/Projects/Python Projects/Punge Production/README.md;. --add-data F:/Projects/Python Projects/Punge Production/update_entries.py;. --hidden-import data_clean F:/Projects/Python Projects/punge/punge_main.py --distpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\application --workpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build --specpath C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw 13977 INFO: PyInstaller: 5.3 13977 INFO: PyInstaller: 5.3 14003 INFO: Python: 3.10.2 14003 INFO: Python: 3.10.2 14044 INFO: Platform: Windows-10-10.0.19044-SP0 14044 INFO: Platform: Windows-10-10.0.19044-SP0 14067 INFO: wrote C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\punge_main.spec 14067 INFO: wrote C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\punge_main.spec 14086 INFO: UPX is not available. 14086 INFO: UPX is not available. 14119 INFO: Extending PYTHONPATH with paths ['F:\\Projects\\Python Projects\\punge'] 14119 INFO: Extending PYTHONPATH with paths ['F:\\Projects\\Python Projects\\punge'] 14665 INFO: checking Analysis 14665 INFO: checking Analysis 14685 INFO: Building Analysis because Analysis-00.toc is non existent 14685 INFO: Building Analysis because Analysis-00.toc is non existent 14718 INFO: Initializing module dependency graph... 14718 INFO: Initializing module dependency graph... 14753 INFO: Caching module graph hooks... 14753 INFO: Caching module graph hooks... 14828 INFO: Analyzing base_library.zip ... 14828 INFO: Analyzing base_library.zip ... 21401 INFO: Processing pre-find module path hook distutils from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-distutils.py'. 21401 INFO: Processing pre-find module path hook distutils from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-distutils.py'. 21413 INFO: distutils: retargeting to non-venv dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib' 21413 INFO: distutils: retargeting to non-venv dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib' 23929 INFO: Caching module dependency graph... 23929 INFO: Caching module dependency graph... 24144 INFO: running Analysis Analysis-00.toc 24144 INFO: running Analysis Analysis-00.toc 24183 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable required by C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python.exe 24183 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable required by C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python.exe 24307 INFO: Analyzing F:\Projects\Python Projects\punge\punge_main.py 24307 INFO: Analyzing F:\Projects\Python Projects\punge\punge_main.py 29184 INFO: Processing pre-find module path hook site from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-site.py'. 29184 INFO: Processing pre-find module path hook site from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\pre_find_module_path\\hook-site.py'. 29202 INFO: site: retargeting to fake-dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules' 29202 INFO: site: retargeting to fake-dir 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules' 37017 INFO: Processing module hooks... 37017 INFO: Processing module hooks... 37036 INFO: Loading module hook 'hook-eel.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 37036 INFO: Loading module hook 'hook-eel.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 37220 INFO: Loading module hook 'hook-pycparser.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 37220 INFO: Loading module hook 'hook-pycparser.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 37245 INFO: Loading module hook 'hook-difflib.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37245 INFO: Loading module hook 'hook-difflib.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37263 INFO: Loading module hook 'hook-distutils.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37263 INFO: Loading module hook 'hook-distutils.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37279 INFO: Loading module hook 'hook-distutils.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37279 INFO: Loading module hook 'hook-distutils.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37289 INFO: Loading module hook 'hook-encodings.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37289 INFO: Loading module hook 'hook-encodings.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37682 INFO: Loading module hook 'hook-gevent.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 37682 INFO: Loading module hook 'hook-gevent.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 38663 INFO: Determining a mapping of distributions to packages... 38663 INFO: Determining a mapping of distributions to packages... 45975 WARNING: Unable to find package for requirement zope.interface from package gevent. 45975 WARNING: Unable to find package for requirement zope.interface from package gevent. 45990 WARNING: Unable to find package for requirement zope.event from package gevent. 45990 WARNING: Unable to find package for requirement zope.event from package gevent. 46006 INFO: Packages required by gevent: ['cffi', 'greenlet', 'setuptools'] 46006 INFO: Packages required by gevent: ['cffi', 'greenlet', 'setuptools'] 48013 INFO: Loading module hook 'hook-heapq.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48013 INFO: Loading module hook 'hook-heapq.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48049 INFO: Loading module hook 'hook-lib2to3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48049 INFO: Loading module hook 'hook-lib2to3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48148 INFO: Loading module hook 'hook-multiprocessing.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48148 INFO: Loading module hook 'hook-multiprocessing.util.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48177 INFO: Loading module hook 'hook-pickle.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48177 INFO: Loading module hook 'hook-pickle.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48197 INFO: Loading module hook 'hook-PIL.Image.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 48197 INFO: Loading module hook 'hook-PIL.Image.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49089 INFO: Loading module hook 'hook-PIL.ImageFilter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49089 INFO: Loading module hook 'hook-PIL.ImageFilter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49103 INFO: Loading module hook 'hook-PIL.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49103 INFO: Loading module hook 'hook-PIL.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49145 INFO: Loading module hook 'hook-PIL.SpiderImagePlugin.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49145 INFO: Loading module hook 'hook-PIL.SpiderImagePlugin.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49171 INFO: Loading module hook 'hook-pkg_resources.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49171 INFO: Loading module hook 'hook-pkg_resources.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 49969 INFO: Processing pre-safe import module hook win32com from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\pre_safe_import_module\\hook-win32com.py'. 49969 INFO: Processing pre-safe import module hook win32com from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\pre_safe_import_module\\hook-win32com.py'. 50438 INFO: Loading module hook 'hook-platform.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 50438 INFO: Loading module hook 'hook-platform.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 50478 INFO: Loading module hook 'hook-setuptools.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 50478 INFO: Loading module hook 'hook-setuptools.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 51748 INFO: Loading module hook 'hook-sqlalchemy.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 51748 INFO: Loading module hook 'hook-sqlalchemy.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 52223 WARNING: Hidden import "pysqlite2" not found! 52223 WARNING: Hidden import "pysqlite2" not found! 52263 WARNING: Hidden import "MySQLdb" not found! 52263 WARNING: Hidden import "MySQLdb" not found! 52279 WARNING: Hidden import "psycopg2" not found! 52279 WARNING: Hidden import "psycopg2" not found! 53562 INFO: Loading module hook 'hook-sqlite3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 53562 INFO: Loading module hook 'hook-sqlite3.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54017 INFO: Loading module hook 'hook-sysconfig.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54017 INFO: Loading module hook 'hook-sysconfig.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54036 INFO: Loading module hook 'hook-win32ctypes.core.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54036 INFO: Loading module hook 'hook-win32ctypes.core.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54644 INFO: Loading module hook 'hook-xml.dom.domreg.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54644 INFO: Loading module hook 'hook-xml.dom.domreg.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54673 INFO: Loading module hook 'hook-xml.etree.cElementTree.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54673 INFO: Loading module hook 'hook-xml.etree.cElementTree.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54705 INFO: Loading module hook 'hook-xml.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54705 INFO: Loading module hook 'hook-xml.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54737 INFO: Loading module hook 'hook-zope.interface.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54737 INFO: Loading module hook 'hook-zope.interface.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54761 INFO: Loading module hook 'hook-_tkinter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54761 INFO: Loading module hook 'hook-_tkinter.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 54920 INFO: checking Tree 54920 INFO: checking Tree 54943 INFO: Building Tree because Tree-00.toc is non existent 54943 INFO: Building Tree because Tree-00.toc is non existent 54964 INFO: Building Tree Tree-00.toc 54964 INFO: Building Tree Tree-00.toc 55189 INFO: checking Tree 55189 INFO: checking Tree 55213 INFO: Building Tree because Tree-01.toc is non existent 55213 INFO: Building Tree because Tree-01.toc is non existent 55245 INFO: Building Tree Tree-01.toc 55245 INFO: Building Tree Tree-01.toc 55364 INFO: checking Tree 55364 INFO: checking Tree 55390 INFO: Building Tree because Tree-02.toc is non existent 55390 INFO: Building Tree because Tree-02.toc is non existent 55421 INFO: Building Tree Tree-02.toc 55421 INFO: Building Tree Tree-02.toc 55458 INFO: Loading module hook 'hook-pythoncom.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 55458 INFO: Loading module hook 'hook-pythoncom.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 55855 INFO: Loading module hook 'hook-pywintypes.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 55855 INFO: Loading module hook 'hook-pywintypes.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 56263 INFO: Loading module hook 'hook-win32com.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 56263 INFO: Loading module hook 'hook-win32com.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks'... 56909 INFO: Loading module hook 'hook-setuptools.msvc.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 56909 INFO: Loading module hook 'hook-setuptools.msvc.py' from 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks'... 56992 INFO: Looking for ctypes DLLs 56992 INFO: Looking for ctypes DLLs 57140 INFO: Analyzing run-time hooks ... 57140 INFO: Analyzing run-time hooks ... 57181 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py' 57181 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py' 57214 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_subprocess.py' 57214 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_subprocess.py' 57246 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py' 57246 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py' 57268 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py' 57268 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py' 57311 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py' 57311 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py' 57360 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32api.py' 57360 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32api.py' 57394 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32comgenpy.py' 57394 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_win32comgenpy.py' 57420 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth__tkinter.py' 57420 INFO: Including run-time hook 'C:\\Users\\Spencer\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth__tkinter.py' 57464 INFO: Looking for dynamic libraries 57464 INFO: Looking for dynamic libraries 59505 INFO: Looking for eggs 59505 INFO: Looking for eggs 59531 INFO: Using Python library C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python310.dll 59531 INFO: Using Python library C:\Users\Spencer\AppData\Local\Programs\Python\Python310\python310.dll 59563 INFO: Found binding redirects: [] 59563 INFO: Found binding redirects: [] 59602 INFO: Warnings written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\warn-punge_main.txt 59602 INFO: Warnings written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\warn-punge_main.txt 59754 INFO: Graph cross-reference written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\xref-punge_main.html 59754 INFO: Graph cross-reference written to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\xref-punge_main.html 59828 INFO: Appending 'datas' from .spec 59828 INFO: Appending 'datas' from .spec 60829 INFO: checking PYZ 60829 INFO: checking PYZ 60858 INFO: Building PYZ because PYZ-00.toc is non existent 60858 INFO: Building PYZ because PYZ-00.toc is non existent 60890 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz 60890 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz 62391 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz completed successfully. 62391 INFO: Building PYZ (ZlibArchive) C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\PYZ-00.pyz completed successfully. 62460 INFO: checking PKG 62460 INFO: checking PKG 62481 INFO: Building PKG because PKG-00.toc is non existent 62481 INFO: Building PKG because PKG-00.toc is non existent 62522 INFO: Building PKG (CArchive) punge_main.pkg 62522 INFO: Building PKG (CArchive) punge_main.pkg 62605 INFO: Building PKG (CArchive) punge_main.pkg completed successfully. 62605 INFO: Building PKG (CArchive) punge_main.pkg completed successfully. 62634 INFO: Bootloader C:\Users\Spencer\AppData\Local\Programs\Python\Python310\lib\site-packages\PyInstaller\bootloader\Windows-64bit\runw.exe 62634 INFO: Bootloader C:\Users\Spencer\AppData\Local\Programs\Python\Python310\lib\site-packages\PyInstaller\bootloader\Windows-64bit\runw.exe 62666 INFO: checking EXE 62666 INFO: checking EXE 62698 INFO: Building EXE because EXE-00.toc is non existent 62698 INFO: Building EXE because EXE-00.toc is non existent 62729 INFO: Building EXE from EXE-00.toc 62729 INFO: Building EXE from EXE-00.toc 62761 INFO: Copying bootloader EXE to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable 62761 INFO: Copying bootloader EXE to C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable 62914 INFO: Copying icon to EXE 62914 INFO: Copying icon to EXE 62980 INFO: Copying icons from ['F:\\Projects\\Python Projects\\punge\\img\\punge icon.ico'] 62980 INFO: Copying icons from ['F:\\Projects\\Python Projects\\punge\\img\\punge icon.ico'] 63056 INFO: Writing RT_GROUP_ICON 0 resource with 132 bytes 63056 INFO: Writing RT_GROUP_ICON 0 resource with 132 bytes 63080 INFO: Writing RT_ICON 1 resource with 1128 bytes 63080 INFO: Writing RT_ICON 1 resource with 1128 bytes 63112 INFO: Writing RT_ICON 2 resource with 2440 bytes 63112 INFO: Writing RT_ICON 2 resource with 2440 bytes 63144 INFO: Writing RT_ICON 3 resource with 4264 bytes 63144 INFO: Writing RT_ICON 3 resource with 4264 bytes 63176 INFO: Writing RT_ICON 4 resource with 9640 bytes 63176 INFO: Writing RT_ICON 4 resource with 9640 bytes 63209 INFO: Writing RT_ICON 5 resource with 16936 bytes 63209 INFO: Writing RT_ICON 5 resource with 16936 bytes 63241 INFO: Writing RT_ICON 6 resource with 38056 bytes 63241 INFO: Writing RT_ICON 6 resource with 38056 bytes 63272 INFO: Writing RT_ICON 7 resource with 67624 bytes 63272 INFO: Writing RT_ICON 7 resource with 67624 bytes 63303 INFO: Writing RT_ICON 8 resource with 152104 bytes 63303 INFO: Writing RT_ICON 8 resource with 152104 bytes 63335 INFO: Writing RT_ICON 9 resource with 10171 bytes 63335 INFO: Writing RT_ICON 9 resource with 10171 bytes 63355 INFO: Copying 0 resources to EXE 63355 INFO: Copying 0 resources to EXE 63375 INFO: Embedding manifest in EXE 63375 INFO: Embedding manifest in EXE 63394 INFO: Updating manifest in C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable 63394 INFO: Updating manifest in C:\Users\Spencer\AppData\Local\Temp\tmpl3yskwaw\build\punge_main\punge_main.exe.notanexecutable 63482 INFO: Updating resource type 24 name 1 language 0 63482 INFO: Updating resource type 24 name 1 language 0 63513 INFO: Appending PKG archive to EXE 63513 INFO: Appending PKG archive to EXE 63552 INFO: Fixing EXE headers 63552 INFO: Fixing EXE headers 63939 INFO: Building EXE from EXE-00.toc completed successfully. 63939 INFO: Building EXE from EXE-00.toc completed successfully. 63968 INFO: checking COLLECT 63968 INFO: checking COLLECT 63996 INFO: Building COLLECT because COLLECT-00.toc is non existent 63996 INFO: Building COLLECT because COLLECT-00.toc is non existent 64037 INFO: Building COLLECT COLLECT-00.toc 64037 INFO: Building COLLECT COLLECT-00.toc 149682 INFO: Building COLLECT COLLECT-00.toc completed successfully. 149682 INFO: Building COLLECT COLLECT-00.toc completed successfully. Moving project to: F:\Projects\Python Projects\punge\output Moving project to: F:\Projects\Python Projects\punge\output Complete. ```
Author
Owner

@brentvollebregt commented on GitHub (Aug 20, 2022):

We don't see an ERROR: Hidden import 'data_clean' not found log, so PyInstaler must have found it (or it is picking up some other library named the exact same thing).

Unfortunately, this looks like something I cannot offer help on as PyInstaler has detected the library. I recommend copying the "Current Command" out of the UI and raising an issue in the PyInstaler with the details you have given.

Aside: not sure why you are seeing double of every message - I do not get this.

<!-- gh-comment-id:1221431028 --> @brentvollebregt commented on GitHub (Aug 20, 2022): We don't see an `ERROR: Hidden import 'data_clean' not found` log, so PyInstaler must have found it (or it is picking up some other library named the exact same thing). Unfortunately, this looks like something I cannot offer help on as PyInstaler has detected the library. I recommend copying the "Current Command" out of the UI and raising an issue in the PyInstaler with the details you have given. Aside: not sure why you are seeing double of every message - I do not get this.
Author
Owner

@nednoodlehead commented on GitHub (Aug 21, 2022):

Yeah, as far as I can tell, this issue lies almost completely within pyo3 (aka Maturin)'s hands. As I can't even open the project outside of the virtual environment. I'll close this as I can say with relative confidence that auto-py-to-exe has no hand in the matter.

<!-- gh-comment-id:1221448519 --> @nednoodlehead commented on GitHub (Aug 21, 2022): Yeah, as far as I can tell, this issue lies almost completely within pyo3 (aka Maturin)'s hands. As I can't even open the project outside of the virtual environment. I'll close this as I can say with relative confidence that auto-py-to-exe has no hand in the matter.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/auto-py-to-exe#265
No description provided.