Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xlfly

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xlfly

  • 0.9.0
  • PyPI
  • Socket score

Maintainers
1

xlfly - Excel Python hack for non-programmers

How to make non-programmers using python to hack Excel? Jupyter, python IDE, VS Code is not an option. With xlfly, you can deploy user friendly hack tool that makes the installation a breeze, usage intuitive, and your development stay in your comfort zone like VS Code.

Note: the author is from manufacturing industry where Excel is heavily used to do daily data processing and customer data report. Most people aournd me knows nothing about python, but craving for a handy tool.

Usage for non-programmers

Install

If you are installed multiple pythons in your windows platform, you can use:

  • py -3.12 -m pip config set global.index-url https://pypi.org/simple
  • py -3.12 -m pip install xlfly
  • py -3.12 -m xlfly.scripts --init -t path\to\template\folder

where py is the python launcher in Windows to specify the version to use

Usage

Fire up an Excel, write python commands in a cell or comments, select it, click "Run Python" to execute!

Developers

xlfly config page

To condition your python environment, you shall add a "xlfly" sheet to specify the conditions. You can add it with "File -> Add Config Page" in the menu. This sheet has:

  1. script_path: the path to inclue your own module.
  2. pre_cmd: the command to run before executing user's command. I usually put import commands here
  3. requirements: python packages to install for this Excel. It follows pip's requirements.txt syntax. Thus you can write pandas>=2.0.0.

PythonPath

When run python, both current workbook and script_path setting from setting page will be added to pythonpath.

Current workbook's path module will be loaded first. Such behavior is useful when you need to develop a script and then deploy to a shared server.

Magic commands

  • self.run_cell()

    Run multiple cells with a command

    Example:self.run_cell(sht["A1:A5"])

  • xw.Range.to_link()

    Convert the range to link texts values. It is used for cases where you want to preserve the link to update the data in the future. Useful if you got data from another Excel file, and that file changes.

Picture Run

When selecting a picture, click Run Python, the app's run_pic() function will be run. To customize, in the pre-cmd cell in 'xlfly' sheet, put the following inside.

def run_pic(pic):
    print("new method")

self.run_pic =  run_pic

Debug

To debug the scripts in Excel, run the menu: tools > create debug script. There will be a debug.py file to the same folder as current Excel file. You can start from there to debug

Templates

How to deploy Excel templates in a corporate environment? I think a shared path to store scripts, while Excel file download to user is easiest.

Specify a template root path (most likely a shared path) to have all subfolders as options in the "templates > choose template" menu. Once selected, the main() function in the init.py file in that subfolder will be executed to initialize the template.

UDF VBA functions - sometimes users wants to have functions they can directly use in the Excel cells. In that case, it is recommended to write *.xlam files with UDF inside, then move it to the user addin directory. Such copy file over operation can be done with xlfly.move_addin() function

default folder

Within template folder, you can add "default" subfolder to pythonpath by default, and the default.py file will be imported automatically. This is useful if you want to create Excel use cases where user can work on an empty Excel file without installing anything or making changes to Excel file

When installing xlfly, the template_root_folder/default/__init__:setup() will be executed.

for the default.py, put run_callback function to be called every time a user click the run python button

Others

Icon is from Icon Finder by Monsieur Steven Ankri.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc