A canvas langchain integration
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Canvas langchain document loader
Features:
Indexes Canvas Modules, Pages, Announcements, Assignments and 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 (development)
You can build/run the provided Dockerfile, or install dependencies as described below
Docker
Edit canvas-test.py, fill in the correct api_url, api_key, and course_id.
Run (this also builds docker):
docker run -it $(docker build -q .)
Install Dependencies
pip install -r requirements.txt
Usage example:
from canvas_langchain.canvas import CanvasLoader
loader = CanvasLoader(
api_url = "https://CANVAS_API_URL_GOES_HERE",
course_id = CANVAS_ID_GOES_HERE,
api_key = "API_KEY_GOES_HERE"
)
try:
documents = loader.load()
print("\nDocuments:\n")
print(documents)
print("\nInvalid files:\n")
print(loader.invalid_files)
print("")
print("\nErrors:\n")
print(loader.errors)
print("")
print("\nIndexed:\n")
print(loader.indexed_items)
print("")
print("\nProgress:\n")
print(loader.get_details('DEBUG'))
print("")
except Exception:
details = loader.get_details('DEBUG')
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 specific item within canvas, it will list the entity_type and the entity_id of the resource where the exception occurred.
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
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 canvas_langchain-0.9.20.tar.gz.
File metadata
- Download URL: canvas_langchain-0.9.20.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
254943260c55aae04577d2d11ef8e695a1030d70126a90230fb77a9f605662f6
|
|
| MD5 |
58384dbf9946156e0bce5ae4927e2ed3
|
|
| BLAKE2b-256 |
d915554a0a541efc93e30bf3b52c02be608ee7a34c8ad41e01432a6d22e109df
|
File details
Details for the file canvas_langchain-0.9.20-py3-none-any.whl.
File metadata
- Download URL: canvas_langchain-0.9.20-py3-none-any.whl
- Upload date:
- Size: 26.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f326e85f92f442df99251567b0d11f049d2728f23ba7cc24fcb3e7bb89f2ac51
|
|
| MD5 |
bc4284f627b9d618066f7b4d03b3d897
|
|
| BLAKE2b-256 |
0a3a20cbe9cbd5142b2bfef2600d81472b197fa8878f6ff07bfe0afdc9744860
|