Best used with an AI agent

40+ live apps, open data APIs, MCP servers, and 200+ guides - more than anyone wants to click through. Point your AI here and it reads the whole map and does the work: finds the tool, pulls the data, runs the analysis, and hands you the links.

Here for the open-source code? Your agent finds the right repo for you - and can even clone and deploy it.

Prefer to explore on your own? Go right ahead.

Paste this to Claude Code, Codex, or any AI agent:
Go to tigzig.com and read tigzig.com/llms.txt. It is a practitioner toolkit - 40+ analytics apps, open no-auth data APIs, MCP servers, open-source repos (github.com/amararun), and 200+ build guides. Help me [your task]. Surface the exact links; where there is an API or MCP, call it directly; and if I want to self-host, find the repo and help me deploy it.

xlwings_utils: Secure Cloud Access & VBA Bridge

Published: January 11, 2026

Import/export and manipulate images, PDFs, and binary files with xlwings Lite

xlwings_utils by Ruud van der Ham

Ruud van der Ham has built xlwings_utils - solves two big problems I hadn't tackled. First: secure, private Dropbox access using OAuth tokens instead of shareable URLs. The same OAuth pattern works for Google Drive and GitHub (I tested both). No proxy, fully private for client data.

Second: local filesystem access via VBA bridge. xlwings Lite runs in browser sandbox - can't touch local files. His VBA bridge lets you import local images, manipulate PDFs with Python, export results back to local folder.

Spent time digging through his code. Powerful solutions.

▪️ The Dropbox approach: Secure & Private

My importer uses sharing links with CORS proxy. Works, but data passes through proxy. Ruud's approach: direct Dropbox API with OAuth refresh tokens. Set up tokens once as environment variables, that's it. I tested it works for Google Drive and GitHub also (GitHub needs proxy as it's not CORS enabled). More setup, but fully private.

I'm adding this to my importer. Non sensitive data - shareable URLs. Private data - token-based API.

▪️ The VBA bridge: This is the real breakthrough

Problem: Can't import or export files, local images or PDF to local folder with xlwings Lite.

Ruud's solution: VBA macro bridge with base64 encoding. Python encodes files to base64, writes to Excel sheet chunks, VBA reads and decodes to local filesystem. Reverse works too.

Use cases I'm testing:

Building baseline tools with VBA bridge for common workflows.

Other utilities:

Links: xlwings_utils: github.com/salabim/xlwings_utils

Solid engineering. If you're doing serious work in xlwings Lite, check it out.

Both tools built on xlwings Lite - created by Felix Zumstein

xlwings Lite official site: lite.xlwings.org