Skip to content
/ pyhorn Public
forked from flowef/pyhorn

Bullhorn RESTful client for Python

License

Notifications You must be signed in to change notification settings

therick/pyhorn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyHorn

An unofficial Python client to interact with Bullhorn's REST API. We developed this client to facilitate the integration of FLOW's systems with Bullhorn, and decided to disclose the source for any other developers that may find it useful.

Installation

pip install pyhorn-flow

Authentication

Authentication requires a simple JSON file containing the following auth-related data (provided by Bullhorn themselves):

  • username
  • password
  • client_id
  • client_secret

Other fields are filled automatically and stored in file_name for better use of the authenticated session.

{
 "file_name": "auth.json",
 "client_id": "GUIDprovidedbybullhorn",
 "client_secret": "secretprovidedbybullhorn",
 "username": "apiuser",
 "password": "yourpasswordshouldgohere"
}

Supported Functions

  • Ping
  • Search
  • Query
  • Entity
    • Create
    • Update
    • Delete
  • To-many
    • Create association
    • Delete association
  • Event
    • Subscription
    • Request
    • Retry
    • Get last request ID

Changelog

v1.1.0

  • Added functions to subscribe to Bullhorn events and read them

v1.0.0

  • Added safe request to re-authorize requests when 401 is returned from API
  • Added Entity creation, update and deletion
  • Added To-many association and dissociation
  • Added Search and Query functionalities
  • Added Ping functionality and automatic session renewal
  • Added authentication flow

About

Bullhorn RESTful client for Python

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%