├── .github └── workflows │ └── publish-to-pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── examples ├── daily_auto_connect.py ├── upload_staff_to_clay.py └── x_corp_staff.py ├── poetry.lock ├── pyproject.toml └── staffspy ├── __init__.py ├── linkedin ├── certifications.py ├── comments.py ├── contact_info.py ├── employee.py ├── employee_bio.py ├── experiences.py ├── languages.py ├── linkedin.py ├── schools.py └── skills.py ├── solvers ├── capsolver.py ├── solver.py ├── solver_type.py └── two_captcha.py └── utils ├── driver_type.py ├── exceptions.py ├── models.py └── utils.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/README.md -------------------------------------------------------------------------------- /examples/daily_auto_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/examples/daily_auto_connect.py -------------------------------------------------------------------------------- /examples/upload_staff_to_clay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/examples/upload_staff_to_clay.py -------------------------------------------------------------------------------- /examples/x_corp_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/examples/x_corp_staff.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /staffspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/__init__.py -------------------------------------------------------------------------------- /staffspy/linkedin/certifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/certifications.py -------------------------------------------------------------------------------- /staffspy/linkedin/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/comments.py -------------------------------------------------------------------------------- /staffspy/linkedin/contact_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/contact_info.py -------------------------------------------------------------------------------- /staffspy/linkedin/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/employee.py -------------------------------------------------------------------------------- /staffspy/linkedin/employee_bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/employee_bio.py -------------------------------------------------------------------------------- /staffspy/linkedin/experiences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/experiences.py -------------------------------------------------------------------------------- /staffspy/linkedin/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/languages.py -------------------------------------------------------------------------------- /staffspy/linkedin/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/linkedin.py -------------------------------------------------------------------------------- /staffspy/linkedin/schools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/schools.py -------------------------------------------------------------------------------- /staffspy/linkedin/skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/linkedin/skills.py -------------------------------------------------------------------------------- /staffspy/solvers/capsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/solvers/capsolver.py -------------------------------------------------------------------------------- /staffspy/solvers/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/solvers/solver.py -------------------------------------------------------------------------------- /staffspy/solvers/solver_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/solvers/solver_type.py -------------------------------------------------------------------------------- /staffspy/solvers/two_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/solvers/two_captcha.py -------------------------------------------------------------------------------- /staffspy/utils/driver_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/utils/driver_type.py -------------------------------------------------------------------------------- /staffspy/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/utils/exceptions.py -------------------------------------------------------------------------------- /staffspy/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/utils/models.py -------------------------------------------------------------------------------- /staffspy/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullenwatson/StaffSpy/HEAD/staffspy/utils/utils.py --------------------------------------------------------------------------------