A Dropbox langchain integration
Project description
Canvas langchain document loader
Features:
Indexes Dropbox Files
The following file types are supported:
md
htm
html
docx
xls
xlsx
pptx
pdf
rtf
txt
(doc
support would require libreoffice, so has not been implemented in this library)
Running locally
You can do the install as described below, or build/run the provider dockerfile.
Docker
Edit dropbox-test.py, fill in the correct auth
and one of folder_path
, file_path
, or file_paths
.
Run (this also builds docker):
docker run -it $(docker build -q .)
Installation
Install dependencies:
pip install -r requirements.txt
Usage example:
To use a refresh token, pass in api_key
along with api_secret
from dropbox_files import DropboxLoader
auth = {
"access": "ACCESS_TOKEN_FROM_OAUTH",
"refresh": "REFRESH_TOKEN",
"id_token": "ID_TOKEN_NOT_USED",
"expire": "EXPIRE_TIMESTAMP"
}
loader = DropboxLoader(
auth = auth,
folder_path = "/PATH_TO_FOLDER_OR_EMPTY_STRING",
# file_path = "/PATH/TO_FILE/File.extension",
# file_paths = [
# "/PATH/TO_FILE/File 1.extension",
# "/PATH/TO_FILE/File 2.extension"
# ],
# api_key = "API_KEY",
# api_secret = "API_SECRET",
)
documents = loader.load()
print("\nDocuments:\n")
print(documents)
print("\nInvalid files:\n")
print(loader.invalid_files)
print("")
print("\nErrors:\n")
print(loader.errors)
print("")
If errors are present, loader.errors
will contain one list element per error. It will consist of an error message (key named message
) and if the error pertains to a folder issue, a key named folder
, for files a file
key. Right now the library only catches Dropbox API specific exceptions.
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
Built Distribution
File details
Details for the file dropbox_langchain-0.3.tar.gz
.
File metadata
- Download URL: dropbox_langchain-0.3.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e87434df88387a231079740908cd443c85715c4461c0ad94e871ee01f435347 |
|
MD5 | ff3b611f2d9862199956b2d9005c8c0a |
|
BLAKE2b-256 | 1cce10e9a4aaeb68d03ebbeb6c72bae18ee21e06c1f57a36f8e25daa67efc491 |
File details
Details for the file dropbox_langchain-0.3-py3-none-any.whl
.
File metadata
- Download URL: dropbox_langchain-0.3-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06118d728dae639eaacedd1f9f2685d9e26c61de1c869703325b6122de21aa8a |
|
MD5 | 86dd8b9db2d259b435c9804e9c292491 |
|
BLAKE2b-256 | 384b4c23f2939b2d140033ae3278c60a7e0085b032bb0cafd51197c49de41164 |