Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/megadose/nqntnqnqmb
Allows you to retrieve information on linkedin profiles, companies on linkedin and search on linkedin companies/persons
https://github.com/megadose/nqntnqnqmb
information-gathering information-gathering-tool linkedin linkedin-scraper open-source-intelligence osint osint-tools python
Last synced: 2 days ago
JSON representation
Allows you to retrieve information on linkedin profiles, companies on linkedin and search on linkedin companies/persons
- Host: GitHub
- URL: https://github.com/megadose/nqntnqnqmb
- Owner: megadose
- Created: 2020-07-14T23:01:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-29T16:43:59.000Z (about 1 year ago)
- Last Synced: 2025-01-19T20:09:51.202Z (9 days ago)
- Topics: information-gathering, information-gathering-tool, linkedin, linkedin-scraper, open-source-intelligence, osint, osint-tools, python
- Language: Python
- Homepage:
- Size: 1.56 MB
- Stars: 261
- Watchers: 5
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - megadose/nqntnqnqmb - Allows you to retrieve information on linkedin profiles, companies on linkedin and search on linkedin companies/persons (Python)
README
# Nqntnqnqmb
👋 Hi there! For any professional inquiries or collaborations, please reach out to me at:
[email protected]📧 Preferably, use your professional email for correspondence. Let's keep it short and sweet, and all in English!
![PyPI](https://img.shields.io/pypi/v/nqntnqnqmb) ![PyPI - Week](https://img.shields.io/pypi/dw/nqntnqnqmb) ![PyPI - Downloads](https://static.pepy.tech/badge/nqntnqnqmb) ![PyPI - License](https://img.shields.io/pypi/l/nqntnqnqmb)
#### For BTC Donations : 1FHDM49QfZX6pJmhjLE5tB2K6CaTLMZpXZ
## Educational purposes only
Allows you to retrieve information on linkedin profiles, companies on linkedin and search on linkedin companies/persons## Project example : [Nqntnqnqmb maltego](https://github.com/megadose/nqntnqnqmb-maltego)
# Demo
![](demo.gif)## ![hammer_and_wrench](https://github.githubassets.com/images/icons/emoji/unicode/1f6e0.png) Installation
### With PyPI
```bash
pip3 install nqntnqnqmb
```### With Github
```bash
git clone https://github.com/megadose/nqntnqnqmb.git
cd nqntnqnqmb/
python3 setup.py install
```# Usage of nqntnqnqmb.py
You just have to put the li_at and JSESSIONID cookies in the config.json file.
![](cookies.png)
If you want to do automatic account rotations, simply add the cookies like this
```json
[{
"li_at": "1st account",
"JSESSIONID": "1st account"
},
{
"li_at": "2nd account",
"JSESSIONID": "2nd account"
}]
``````
usage: nqntnqnqmb.py [-h] --mode MODE [--company COMPANY] [--profile PROFILE]
[--searchCompany SEARCHCOMPANY]
[--searchProfile SEARCHPROFILE] --output OUTPUToptional arguments:
-h, --help show this help message and exit
--mode MODE There are different modes: getEmployees to get all
employees of a company, getProfileInformations to get
all informations on a profile, searchCompany to search
a company from the name of the company , searchProfile
to search a profile from a name
--company COMPANY Url of the company for get all employes (getEmployees)
--profile PROFILE Url of the profile for get all informations
(getProfileInformations)
--searchCompany SEARCHCOMPANY
The name of the target company (searchCompany)
--searchProfile SEARCHPROFILE
The name of the target (searchProfile)
--output OUTPUT Name of the csv output file
```
# Usage of nqntnqnqmb with python:```python
from nqntnqnqmb import *
getCompanyFromName(company,JSESSIONID,li_at)#Search company on linkedin from name
getProfileFromName(search_string,JSESSIONID,li_at)#Search linkedin profile from name (Simple Usage)
getProfileFromName(search_string,JSESSIONID,li_at,pages_to_scrape=5,results_per_page=20)#Search linkedin profile from name (Advanced Usage)
getCompanyFromProfile(profile_url,JSESSIONID,li_at)#Extract linkedin company from a profile
getAllEmployees(company,JSESSIONID,li_at)#Get all employees of a company from the linkedin company url
getContactInformations(profile_url,JSESSIONID,li_at)#Extract contact informations from a profiles like the email, phone number and more
```# Thank To :
- [linkedin-scraper](https://github.com/hakimkhalafi/linkedin-scraper)