├── .gitignore ├── LICENSE ├── MANIFEST ├── MANIFEST.ini ├── README.md ├── README.rst ├── linkedin_scraper ├── __init__.py ├── actions.py ├── company.py ├── constants.py ├── objects.py └── person.py ├── requirements.txt ├── samples ├── scrape_person.py └── scrape_person_contacts.py ├── setup.cfg ├── setup.py └── test └── scrape_person.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/MANIFEST.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/README.rst -------------------------------------------------------------------------------- /linkedin_scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/linkedin_scraper/__init__.py -------------------------------------------------------------------------------- /linkedin_scraper/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/linkedin_scraper/actions.py -------------------------------------------------------------------------------- /linkedin_scraper/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/linkedin_scraper/company.py -------------------------------------------------------------------------------- /linkedin_scraper/constants.py: -------------------------------------------------------------------------------- 1 | VERIFY_LOGIN_ID = "global-nav-search" 2 | -------------------------------------------------------------------------------- /linkedin_scraper/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/linkedin_scraper/objects.py -------------------------------------------------------------------------------- /linkedin_scraper/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/linkedin_scraper/person.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | requests 3 | lxml 4 | -------------------------------------------------------------------------------- /samples/scrape_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/samples/scrape_person.py -------------------------------------------------------------------------------- /samples/scrape_person_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/samples/scrape_person_contacts.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/setup.py -------------------------------------------------------------------------------- /test/scrape_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/linkedin_scraper/HEAD/test/scrape_person.py --------------------------------------------------------------------------------