Skip to main content

9P implementation of Python fsspec

Project description

p9fs

9P implementation of Python fsspec.

Supported protocols:

Tested with the following servers:

Examples

import p9fs

fs = p9fs.P9FileSystem(
    host='127.0.0.1',
    port=564,
    username='nobody',
    version='9P2000.L',
)

print(fs.ls('.'))
import fsspec

with fsspec.open('p9://nobody@127.0.0.1:564/folder/data.csv?version=9P2000.L') as f:
    data = f.read()

TODO

  • auth
  • atime, mtime, ctime

This package contains a fork of py9p (https://github.com/svinota/py9p), which seems no longer maintained. Minimal support for 9P2000.L has been added to the client code.

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

p9fs-0.0.4.tar.gz (39.7 kB view hashes)

Uploaded Source

Built Distribution

p9fs-0.0.4-py3-none-any.whl (43.4 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