A series of classes to match mentors and mentees
Project description
Mentor Match
This is a package to help match mentees and mentors.
It uses this implementation of Munkres to find the most effective pairings. The Munkres algorithm works on a grid of scores.
Scoring
Full details of how the matches are calculated can be read in the code itself. Customisable configurations are on the roadmap but are not planned for any upcoming releases.
Installation
You can install this project with python -m pip install mentor-match
Use
To use this library, first install it (see above). You may need to munge your data for the system to be happy with it. Use the example CSV file as guides for your mentor and mentee data, then put them together in the same folder.
The software will run as many matching exercises as you pass list[AbstractRule]. So you'll need to come up with
some rules as to how you want your mentors and mentees to be matched. For more information on rules, see Rules.
Here is a snippet that outlines a minimal use in a Python project:
from matching import process
from pathlib import Path
from matching.rules.rule import Generic
data_folder = Path("Documents/mentoring-data")
mentors, mentees = process.conduct_matching_from_file(
path_to_data=data_folder,
rules=[[Generic({True: 3, False: 0}, lambda match: match.mentee.organisation != match.mentor.organisation)]]
)
output_folder = data_folder / "output"
process.create_mailing_list(mentors, output_folder)
process.create_mailing_list(mentees, output_folder)
This weights matches where mentors and mentees are in different organisations. For more on rules, see Rules. The system then creates a mailing list according to a set template, ready for processing by your favourite/enterprise mandated email solution
Rules
All rules are subclassed from the AbstractRule class. They need an evaluate method, which should take a Match
object and return a boolean, and an apply method, which takes a Match object, evaluates it, and changes the
internal state of the Match object.
I've included a couple of pre-defined rules to help start you off:
Grade
Grade needs a target difference in grades between mentors and mentees, an operator to compare them, and a score to
give if the operation is true or if it's false. So Grade(2, operator.gt, {True: 3, False: 0}) will create a rule
that gives 3 points to a grade difference between the mentor and the mentee that's greater than 2.
UnmatchedBonus
UnmatchedBonus only needs an integer value to add to the Match score. It'll add it if either the mentor or the
mentee doesn't have any connections. This is helpful if you run multiple rounds, as it'll give the edge to
mentors/mentees who haven't been successfully matched yet.
Disqualify
Disqualify needs to be passed a function that takes a Match object and returns a bool. It's an anti-rule: if the
condition evaluates to True, then that Match is disqualified for this round. Two Disqualify rules are
pre-defined on the Match object - a Match is disqualified if both Mentor and Mentee are the same person, or
if they've already been matched once.
Generic
Generic, like Disqualify, takes a function with the signature [[Match], bool]. It also takes a dictionary,
like Grade, where you define what score to be given to the Match if the function evaluates to true, or indeed if
it evaluates to false!
Export
There's an inbuilt ExportToSpreadsheet which very much does what it says on the tin. Instantiate it with a list of
Person objects and where you want the output to end up and call export to do the thing.
You can also subclass ExportToEmail for all your email-exporting needs. Or write your own thing entirely!
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 mentor-match-6.2.2.tar.gz.
File metadata
- Download URL: mentor-match-6.2.2.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c847939034c9800bac7d25fb20a8ec577e609560b938347ad87dc58e27b36551
|
|
| MD5 |
0f79a6233fdc3de4b3c82e4206fadc9a
|
|
| BLAKE2b-256 |
224849f39471aec0e9de319c4d335d9642274d912e1961bf03106eb3c6ce3dbd
|
File details
Details for the file mentor_match-6.2.2-py3-none-any.whl.
File metadata
- Download URL: mentor_match-6.2.2-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7f2bb74c1fb315cae1b55efef6e797f6a82df6483c464754b08d58ed10413ce
|
|
| MD5 |
f7bd647333548161a70202d8fbb1d722
|
|
| BLAKE2b-256 |
dfb9311d6d1d9fa4246fc46654c3ec61df0ee42564fd90d8c9a60710a9267009
|