├── .gitignore ├── .python-version ├── README.md ├── codegen ├── generator └── templates │ ├── api_mapping.json │ ├── asyncio.py │ ├── check_mapping.py │ ├── gevent.py │ ├── init.py │ ├── linkedin_mapping.json │ ├── response_model.py │ └── twisted.py ├── examples ├── lib-asyncio.py ├── lib-gevent.py └── lib-twisted.py ├── poetry.lock ├── proxycurl ├── asyncio │ ├── __init__.py │ ├── base.py │ └── library.py ├── config.py ├── gevent │ ├── __init__.py │ ├── base.py │ └── library.py ├── models.py └── twisted │ ├── __init__.py │ ├── base.py │ └── library.py ├── pyproject.toml ├── sample.csv └── tests ├── __init__.py └── test_proxycurl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.7.17 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/README.md -------------------------------------------------------------------------------- /codegen/generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/generator -------------------------------------------------------------------------------- /codegen/templates/api_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/api_mapping.json -------------------------------------------------------------------------------- /codegen/templates/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/asyncio.py -------------------------------------------------------------------------------- /codegen/templates/check_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/check_mapping.py -------------------------------------------------------------------------------- /codegen/templates/gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/gevent.py -------------------------------------------------------------------------------- /codegen/templates/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/init.py -------------------------------------------------------------------------------- /codegen/templates/linkedin_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/linkedin_mapping.json -------------------------------------------------------------------------------- /codegen/templates/response_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/response_model.py -------------------------------------------------------------------------------- /codegen/templates/twisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/codegen/templates/twisted.py -------------------------------------------------------------------------------- /examples/lib-asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/examples/lib-asyncio.py -------------------------------------------------------------------------------- /examples/lib-gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/examples/lib-gevent.py -------------------------------------------------------------------------------- /examples/lib-twisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/examples/lib-twisted.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/poetry.lock -------------------------------------------------------------------------------- /proxycurl/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/asyncio/__init__.py -------------------------------------------------------------------------------- /proxycurl/asyncio/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/asyncio/base.py -------------------------------------------------------------------------------- /proxycurl/asyncio/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/asyncio/library.py -------------------------------------------------------------------------------- /proxycurl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/config.py -------------------------------------------------------------------------------- /proxycurl/gevent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/gevent/__init__.py -------------------------------------------------------------------------------- /proxycurl/gevent/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/gevent/base.py -------------------------------------------------------------------------------- /proxycurl/gevent/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/gevent/library.py -------------------------------------------------------------------------------- /proxycurl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/models.py -------------------------------------------------------------------------------- /proxycurl/twisted/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/twisted/__init__.py -------------------------------------------------------------------------------- /proxycurl/twisted/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/twisted/base.py -------------------------------------------------------------------------------- /proxycurl/twisted/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/proxycurl/twisted/library.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/sample.csv -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_proxycurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubelaco/proxycurl-py-linkedin-profile-scraper/HEAD/tests/test_proxycurl.py --------------------------------------------------------------------------------