veliovgroup / meteor-python-files

File Uploads to Meteor Server in Python (meteor pyfiles)

Home Page:https://files.veliov.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Meteor-pyfiles

Official pyfiles (to be used within ostrio:files) package for python-meteor client.

Usage

from MeteorClient import MeteorClient
from MeteorFiles import Uploader
import time

client = MeteorClient('ws://127.0.0.1:3000/websocket')
client.connect()

# upload example, work with Meteor-Files example: demo-simplest-upload
# server code: https://github.com/VeliovGroup/Meteor-Files/tree/master/demo-simplest-upload
client.subscribe('files.images.all');

uploader = Uploader(client, 'Images', transport='http', verbose=True)

uploader.upload("test.jpeg")
while not uploader.finished:
    time.sleep(0.1)

Speed test

  • File size:345770885 (~345MB)
  • transport='http': 26.8s
  • transport='ddp': 110.1s

Status: dev, not-stable, not-published

About

File Uploads to Meteor Server in Python (meteor pyfiles)

https://files.veliov.com


Languages

Language:Python 100.0%