Metadata-Version: 2.4
Name: chawk
Version: 0.1.0
Summary: An api wrapper libray for the Blackboard LMS.
Project-URL: Homepage, https://github.com/***
Project-URL: Issues, https://github.com/***/issues
Author-email: sugarvoid <author@example.com>
License-Expression: MIT
License-File: LICENSE
Keywords: api,blackboard,lms,wrapper
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: certifi==2024.12.14
Requires-Dist: charset-normalizer==3.4.0
Requires-Dist: idna==3.10
Requires-Dist: oauthlib==3.2.2
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: requests-oauthlib==2.0.0
Requires-Dist: requests<3.0,>=2.32
Requires-Dist: urllib3==2.3.0
Description-Content-Type: text/markdown

# Chawk 

**This project is a work in progress.**<br>
A python wrapper of the blackboard api to simplify admin tasks such as managing courses and users.  


# Setup 
You can request access to the Blackboard REST APIs through the [Developer Portal](https://developer.blackboard.com/). You will need to create an application to get the needed keys. 


# Example of using the library 
```python

from bbpy.blackboard_client import BlackboardClient


base_url = "https://blackboard.xxxx.edu"
client_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
client_secret = "xxxxxxxxxxxxxxxxxxxxxxxxx"

# Create client
client = BlackboardClient(client_id, client_secret, base_url, "example.log")

# Example usage
print(client.user.does_user_exist("00000_0"))
print(client.courses.does_course_exist("00000_1"))

client.courses.enroll_user("dg123", "math101213", "Student")
```

# Current Functions  

## User
 ```python

```

## Course

```python

```

## Discussion
```python

```

## Gradebook
```markdown

- Update column value for user
- Create column

```