Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cedwards036/autohandshake
A library for automating tasks on the Handshake career services platform
https://github.com/cedwards036/autohandshake
career college handshake job university
Last synced: 3 months ago
JSON representation
A library for automating tasks on the Handshake career services platform
- Host: GitHub
- URL: https://github.com/cedwards036/autohandshake
- Owner: cedwards036
- License: mit
- Created: 2019-04-05T17:30:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-04T23:49:49.000Z (almost 4 years ago)
- Last Synced: 2024-09-23T09:15:40.720Z (4 months ago)
- Topics: career, college, handshake, job, university
- Language: Python
- Size: 35.6 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: LICENSE
Awesome Lists containing this project
README
AutoHandshake
=============.. image:: https://readthedocs.org/projects/autohandshake/badge/?version=latest
:target: https://autohandshake.readthedocs.io/en/latest/?badge=latest
:alt: Documentation StatusInstallation
------------
::pip install autohandshake
Summary
-------
A library for automating tasks on the Handshake career services platform.Current functionality includes the automation of:
* Getting data from Insights
* Getting a complete record of your school's appointment type settings
* Getting a complete record of your school's major mappings
* Getting unfilled appointment slot data from the appointment calendar
* Getting account access request dataTypical usage looks like:
::from autohandshake import HandshakeSession, InsightsPage
school_url = 'https://jhu.joinhandshake.com'
with HandshakeSession(login_url=school_url, email=your_email) as browser:
insights = InsightsPage(link_to_insights_report, browser)
report_data = insights.get_data()**Important**: this package relies on an automated driver for Google Chrome, so users must have Chrome installed in order to use this package.
Documentation
-------------
You will find complete documentation at `the Read the Docs site `_.