Skip to main content

Use web resources the pythonic way, import JavaScript modules like you do with Python modules.

Project description

whatchamacallit

Use web resources the pythonic way, import JavaScript modules like you do with Python modules. Specify Javascript modules, HTML, CSS as bare URLs and rewrite on the fly.

Example

(A) Install the desired package, in this example gridchen

pip install gridchen

(B) From HTML/JavaScript

<!DOCTYPE html>
<h1>Hello World</h1>
<script type="module">
    import * as utils from "gridchen/utils.js";
    const tm = utils.createTransactionManager();
</script>

(C) Register your FastAPI app (see also module whatchamacallit.examples.fastapi_server.py)

from fastapi import FastAPI
from whatchamacallit.fastapi import register

app = FastAPI()
register(app)

or Flask app (see also module whatchamacallit.examples.flask_server.py)

import flask
from whatchamacallit.flask import register

# Important: Do not use the evil static_url_path
app = flask.Flask(__name__, static_folder=None)
register(app)

Working

Ultimately, the import * as utils from "gridchen/utils.js" must be mapped to its physical location, for example /C/projects/myproject/venv/Lib/site-packages/gridchen/utils.js. This is done in two steps.

Remap bare import specifier

The import * as utils from "gridchen/utils.js" is not valid JavaScript. So at HTML/JavaScript load time the import is remapped to import * as utils from "/@gridchen/utils.js"

Route resource to Python module

When the server now gets the request for /@gridchen/utils.js, then it resolves to the package gridchen and serve its resource utils.js.

Contribute

Package

vi setup.py
git commit . -m'bumped version'
git tag x.y.z
git push & git push --tags
python setup.py sdist bdist_wheel

## Publishing

````shell script
python -m twine upload dist/*

Previous Work

Bundlers

Unpkg.com, rollup, webpack, babel, pika, assetgraph, Browserify, gulp, JSPM

In Place Handlers

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whatchamacallit-0.0.6.tar.gz (7.7 kB view hashes)

Uploaded Source

Built Distribution

whatchamacallit-0.0.6-py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page