├── .gitignore ├── README.md ├── indeed └── __init__.py ├── setup.py └── tests ├── test_jobs.py └── test_search.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indeedlabs/indeed-python/HEAD/README.md -------------------------------------------------------------------------------- /indeed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indeedlabs/indeed-python/HEAD/indeed/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indeedlabs/indeed-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indeedlabs/indeed-python/HEAD/tests/test_jobs.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indeedlabs/indeed-python/HEAD/tests/test_search.py --------------------------------------------------------------------------------