College club recruitment matching using web-scraped GitHub & portfolio data scored via NLP.
Project description
aimsapccoe — College Club Recruitment Matcher
aimsapccoe is a Python package and web application for college club recruitment matching. It automatically evaluates and scores candidate fit against position requirements or club descriptions using web-scraped GitHub and portfolio data.
Scoring is processed across 5 weighted NLP levels:
- Level 1 — Language & Word Count (10 pts)
- Level 2 — Vocabulary Richness (20 pts)
- Level 3 — Keyword Match (30 pts) — TF-IDF cosine similarity
- Level 4 — Readability (15 pts) — Flesch Reading Ease
- Level 5 — Parts of Speech Analysis (25 pts) — Action verb and noun ratios
📦 Installation
To install the package in editable mode (for development and local running):
# From the project root folder:
pip install -e .
📥 Post-Install NLTK Setup
aimsapccoe automatically attempts to verify and download required NLTK corpus datasets upon first run, but you can download them manually if needed:
import nltk
nltk.download('punkt')
nltk.download('punkt_tab')
nltk.download('averaged_perceptron_tagger')
nltk.download('averaged_perceptron_tagger_eng')
nltk.download('stopwords')
🚀 Usage
1. Launch the Web UI
The package includes a modern local dashboard built using a Neo-Brutalism design system. Launch the Flask application with:
aimsapccoe web
Then visit http://127.0.0.1:5000 in your browser.
2. Python API Usage
Secretary Mode (Evaluate Applicants)
from aimsapccoe import SecretaryEvaluator
# Define what position requirements the club is looking for
evaluator = SecretaryEvaluator(
position_description="Looking for a Python backend developer skilled in Flask and SQL."
)
# Run scoring against the candidate's public URLs
result = evaluator.evaluate_student(
github_url="https://github.com/someuser",
portfolio_url="https://someuser.github.io"
)
print(f"Total Match Score: {result['score']}/100")
print(f"Recommendation Verdict: {result['recommendation']}")
# Output: RECRUIT, REVIEW, or IGNORE
Student Mode (Evaluate Personal Fit)
from aimsapccoe import StudentEvaluator
# Scrapes and caches target club site once upon instantiation
evaluator = StudentEvaluator(
club_website_url="https://acm.pccoe.org"
)
# Evaluate fit against your own profile URLs
result = evaluator.evaluate_fit(
github_url="https://github.com/myusername",
portfolio_url="https://myportfolio.dev"
)
print(f"Fit Match Score: {result['score']}/100")
print(f"Recommendation: {result['recommendation']}")
# Output: APPLY or SKIP
🧪 Running Tests
Unit tests use mocked API/Scraping requests to run instantly without making live HTTP requests:
# Run using unittest
python -m unittest discover -s tests
🚀 Publishing to PyPI
To upload this package to PyPI, follow these steps:
1. Install Build Tools
Ensure you have the latest versions of build and twine installed:
pip install --upgrade build twine
2. Build the Package
Generate the source distribution and wheel archives by running the python build frontend from the project root:
python -m build
This will create a dist/ directory containing the distribution packages (.tar.gz and .whl).
3. Check Distribution Archives
Validate that your package description will render correctly on PyPI:
twine check dist/*
4. Upload to TestPyPI (Recommended first step)
It is highly recommended to upload your package to TestPyPI first to verify everything looks correct:
twine upload --repository testpypi dist/*
Note: You will need to create an account on TestPyPI and generate an API Token.
5. Upload to PyPI Production
Once verified on TestPyPI, upload to the live PyPI index:
twine upload dist/*
Note: You will need a production PyPI account and an API Token to authenticate.
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 aimsapccoe-0.1.1.tar.gz.
File metadata
- Download URL: aimsapccoe-0.1.1.tar.gz
- Upload date:
- Size: 48.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0986157e78db8b0e098b21ad0adb4e5860281444cee40d8b64d06388fbcdcf99
|
|
| MD5 |
62564d1f175b12efa310aca0374abbd7
|
|
| BLAKE2b-256 |
1653d031304d7f18e45e0b6df7fea3443b54331f9609cabb6627b06198aacd7f
|
File details
Details for the file aimsapccoe-0.1.1-py3-none-any.whl.
File metadata
- Download URL: aimsapccoe-0.1.1-py3-none-any.whl
- Upload date:
- Size: 51.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50e2dc69d4c2ee47b3604d22a21100cc02d029375b32514ae8bc841ab723a473
|
|
| MD5 |
1698efbf105fdfce08db292f0ebcb25d
|
|
| BLAKE2b-256 |
c852c6b2eca12284fd7102f8d400aee817a244d0ee55b16767510b5631a247d5
|