Una biblioteca de Python para Canvas LMS
Project description
API_CANVAS_LMS
Una biblioteca para ADDA Canvas LMS
Estructura del Proyecto
|--api_canvas_lms/ <-- Archivos de python
| |--account.py
| |--adda.py
| |--discussion_topic.py
| |--module.py
| |--user.py
|--setup.py <-- Define el Python build
Uso
Un ejemplo de como usar la biblioteca
import settings
import logging
import logging_config
# Ensure the logging configuration is set up
logging_config.setup_logging()
import api_canvas_lms.adda as adda
# Create a logger for this module
logger = logging.getLogger(__name__)
if __name__ == "__main__":
course_id = "66666" # ID Course
#'''
logger.info("Start process ... !")
mccsa = adda.BasicModuleCourseCanvasADDA(course_id, settings.TOKEN)
status, data = mccsa.is_valid_structure()
logger.info(status)
logger.info(data)
#'''
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
api_canvas_lms-0.1.1.tar.gz
(20.2 kB
view details)
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 api_canvas_lms-0.1.1.tar.gz.
File metadata
- Download URL: api_canvas_lms-0.1.1.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b214e1db4b78304410472226fbf7afb2fa8f1672b50a772c88935f1e92379e
|
|
| MD5 |
118a2bff0a7f2900f62c6d1254d54316
|
|
| BLAKE2b-256 |
3c421605f4acf089343aa15946f2cae5ecadf0f2e56cf3e445f41bc1d858e738
|
File details
Details for the file api_canvas_lms-0.1.1-py3-none-any.whl.
File metadata
- Download URL: api_canvas_lms-0.1.1-py3-none-any.whl
- Upload date:
- Size: 22.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
076e8035cd5f0a5cb4e61d4df2d5d36c3a5dfa0e96b5ccba7126724ec34ad83c
|
|
| MD5 |
26222d36628f2de96d6642cfe3a45f74
|
|
| BLAKE2b-256 |
4176ac1f12063edb2923fc976e310972b694f581151c6f828a15be8ac1876c3f
|