Skip to content

Commit

Permalink
feature: Add ADMEN Connector in CRUD v2
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnedhir committed Nov 26, 2024
1 parent 621af85 commit dc86963
Show file tree
Hide file tree
Showing 16 changed files with 1,699 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hrflow_connectors/v2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from hrflow_connectors.v2.connectors.admen import Admen
from hrflow_connectors.v2.connectors.bullhorn import Bullhorn
from hrflow_connectors.v2.connectors.zohorecruit import ZohoRecruit
from hrflow_connectors.v2.core.connector import ( # noqa: F401
Expand All @@ -7,4 +8,4 @@
hrflow_connectors_docs as hrflow_connectors_docs,
)

__CONNECTORS__ = [Bullhorn, ZohoRecruit]
__CONNECTORS__ = [Bullhorn, ZohoRecruit, Admen]
Binary file not shown.
75 changes: 75 additions & 0 deletions src/hrflow_connectors/v2/connectors/admen/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# 📖 Summary
- [📖 Summary](#📖-summary)
- [💼 About Admen](#💼-about-admen)
- [😍 Why is it a big deal for Admen customers & partners?](#😍-why-is-it-a-big-deal-for-admen-customers--partners)
- [🔧 How does it work?](#🔧-how-does-it-work)
- [📊 Data integration capabilities:](#📊-data-integration-capabilities)
- [🧠 Artificial Intelligence capabilities:](#🧠-artificial-intelligence-capabilities)
- [🔌 Connector Actions](#🔌-connector-actions)
- [💍 Quick Start Examples](#💍-quick-start-examples)
- [🔗 Useful Links](#🔗-useful-links)
- [👏 Special Thanks](#👏-special-thanks)


# 💼 About Admen

>
Besoin d'une solution RH efficace et performante pour la gestion de vos candidatures ?
Misez sur AD-Men, le Logiciel N°1 des Cabinets de Recrutement.



## 😍 Why is it a big deal for Admen customers & partners?

This new connector will enable:
- ⚡ A Fastlane Talent & Workforce data integration for Admen customers & partners
- 🤖 Cutting-edge AI-powered Talent Experiences & Recruiter Experiences for Admen customers

# 🔧 How does it work?
## 📊 Data integration capabilities:
- ⬅️ Send Profiles data from Admen to a Destination of your choice.
- ➡️ Send Profiles data from a Source of your choice to Admen.
- ⬅️ Send Jobs data from Admen to a Destination of your choice.
- ➡️ Send Jobs data from a Source of your choice to Admen.


## 🧠 Artificial Intelligence capabilities:
- Extract, Structure, and Categorize Talent & Workforce data
- Search, Score, and Match Profiles & Jobs with our APIs and AI Widgets (**Matching Custom Tab in Admen**)


# 🔌 Connector Actions
<p align="center">

| Action | Description |
| ------- | ----------- |
| [**Pull job list**](docs/pull_job_list.md) | Retrieves jobs from the ***AD-MEN*** database serverand send them to a ***Hrflow.ai Board***. |
| [**Pull profile list**](docs/pull_profile_list.md) | Retrieves profiles from the ***AD-MEN*** database serverand send them to a ***Hrflow.ai Source***. |
| [**Push profile**](docs/push_profile.md) | Writes a profile from Hrflow.ai Source to the ***AD-MEN*** database server |


</p>


# 💍 Quick Start Examples

To make sure you can successfully run the latest versions of the example scripts, you have to **install the package from PyPi**.


To browse the examples of actions corresponding to released versions of 🤗 this connector, you just need to import the module like this :


Once the connector module is imported, you can leverage all the different actions that it offers.

For more code details checkout connector code.


# 🔗 Useful Links

- 📄Visit [Admen](https://www.admen.com/) to learn more.
- 💻 [Connector code](https://github.com/Riminder/hrflow-connectors/tree/master/src/hrflow_connectors/connectors/admen) on our Github.


# 👏 Special Thanks
- 💻 HrFlow.ai : XXXXX YYYYY - Software Engineer
- 🤝 Admen : XXXXX YYYYY - Partner Manager
1 change: 1 addition & 0 deletions src/hrflow_connectors/v2/connectors/admen/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from hrflow_connectors.v2.connectors.admen.connector import Admen # noqa
Loading

0 comments on commit dc86963

Please sign in to comment.