Skip to content

Search through multiple excel files across multiple folders.

Notifications You must be signed in to change notification settings

xRyul/excel-multi-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Excel Multi Search

Search through multiple excel files across multiple folders.

Alt text Alt text

Excel.Multi.Search.mp4

How to install

a) Download the latest release

b) Setup venv environemnt -> clone the repo -> install all the dependencies pip install -r requirements.txt -> rrun it python main.py

How to compile whole python project into a macOS app

  1. Install py2app by running the command pip install py2app in your terminal.
  2. In the directory containing your Python script, create a setup.py file with the following contents:
from setuptools import setup

APP = ['your_script.py']
OPTIONS = {
    'argv_emulation': True,
    'packages': ['wx', 'pandas', 'openpyxl'],
}

setup(
    app=APP,
    name='Your Custom App Name',
    options={'py2app': OPTIONS},
    setup_requires=['py2app'],
)
  1. In your terminal, navigate to the directory containing your Python script and setup.py file, and run the command python setup.py py2app. This will create a standalone macOS application bundle in a new dist directory.

  2. You can now run your Python app by opening the .app bundle in the dist directory.

pip install -r requirements.txt

About

Search through multiple excel files across multiple folders.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages