Can you use python in webflow?

hello.
i’m new to webflow, and learning about it. i know that you can use javascript with webflow, however i want to use python instead. when i mean by that, i just want to use only a small portion of python code, mainly for math calculations. is it possible to use python in webflow, even if it’s not direct?
thanks

More precisely, Javascript is recognized by web browsers, therefore you can use Javascript in your Webflow custom code areas, and browsers will be able to execute it.

Browsers do not recognize python. You’d need to run a server or serverless functions somewhere, write your python there, and then call your API from client-side Javascript.

@adrweb - There is a github project called brython you might look into. It was in my pile of links for potential use on a client site. Ended up going a different direction. You can load it from a CDN.

brython-dev/brython: Brython (Browser Python) is an implementation of Python 3 running in the browser (github.com)

that’s cool, i see potential in using brython.
how do you load the brython from CDN? I’m curious to know about it.
and if possible can you provide screenshots to show the steps? that would be helpful.

@adrweb- The documentation is available at the repo.