WSGI app to use PyFilesystem2 with vuefinder
Project description
vuefinder-wsgi
WSGI app for vuefinder. This is a vuefinder backend to access PyFilesystem2 filesystems.
Unimplemented
- archive
- unarchive
Installation
pip install vuefinder-wsgi
Usage
from vuefinder import VuefinderApp, fill_fs
from fs.memoryfs import MemoryFS
from werkzeug.serving import run_simple
if __name__ == "__main__":
# Initialize filesystem
memfs = MemoryFS()
fill_fs(
memfs,
{
"foo": {
"file.txt": "Hello World!",
"foo.txt": "foo bar baz",
"bar": {"baz": None},
},
"foobar": {"empty": None, "hello.txt": "Hello!"},
},
)
# Create and run the WSGI app
app = VuefinderApp(enable_cors=True)
app.add_fs("memory", memfs)
run_simple("127.0.0.1", 8005, app)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vuefinder_wsgi-1.2.5.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vuefinder_wsgi-1.2.5.tar.gz.
File metadata
- Download URL: vuefinder_wsgi-1.2.5.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cb42864e92032706272c4538a01e5340ce03b33e7e2742853c5b72b86692824
|
|
| MD5 |
5bcee551addcfb847b94ffc07bad3e0d
|
|
| BLAKE2b-256 |
8ee57e399a2d710edbd938858c874731c03cf41ba1478ee69eef9ff702db5a11
|
File details
Details for the file vuefinder_wsgi-1.2.5-py3-none-any.whl.
File metadata
- Download URL: vuefinder_wsgi-1.2.5-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cac754c247273be1a6d44eda963dc34e340a3e0406c7641899853e12ffcbe99a
|
|
| MD5 |
d2de4e168048193d74ec1431d1bf0f3c
|
|
| BLAKE2b-256 |
33e0612f8df87343d0d909fce6ba7a85073d7268ea6a8bfb1c5b7ace2aec994c
|