You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"""
|
|
|
|
We are implementing transport to and from nextcloud (just like s3)
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from transport.common import IEncoder
|
|
|
|
import pandas as pd
|
|
|
|
from io import StringIO
|
|
|
|
import json
|
|
|
|
import nextcloud_client as nextcloud
|
|
|
|
|
|
|
|
class Nextcloud :
|
|
|
|
#
|