├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── src └── truecallerpy │ ├── __init__.py │ ├── cli.py │ ├── data │ ├── __init__.py │ └── phones_list.py │ ├── login.py │ ├── search.py │ ├── typings │ └── truecallerpy.pyi │ └── verify_otp.py └── tests ├── __init__.py └── test_truecallerpy.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/truecallerpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/__init__.py -------------------------------------------------------------------------------- /src/truecallerpy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/cli.py -------------------------------------------------------------------------------- /src/truecallerpy/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/truecallerpy/data/phones_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/data/phones_list.py -------------------------------------------------------------------------------- /src/truecallerpy/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/login.py -------------------------------------------------------------------------------- /src/truecallerpy/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/search.py -------------------------------------------------------------------------------- /src/truecallerpy/typings/truecallerpy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/typings/truecallerpy.pyi -------------------------------------------------------------------------------- /src/truecallerpy/verify_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/src/truecallerpy/verify_otp.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_truecallerpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/truecallerpy/HEAD/tests/test_truecallerpy.py --------------------------------------------------------------------------------