├── .github └── workflows │ └── codeql-analysis.yml ├── README.md ├── __pycache__ ├── test.cpython-37.pyc └── test.cpython-38.pyc ├── inspectionProfiles └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── phonenumber.py ├── pythonProject.iml ├── pyvenv.cfg ├── test.py └── workspace.xml /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/misc.xml -------------------------------------------------------------------------------- /modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/modules.xml -------------------------------------------------------------------------------- /phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/phonenumber.py -------------------------------------------------------------------------------- /pythonProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/pythonProject.iml -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | number = "+919849082238" 2 | -------------------------------------------------------------------------------- /workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manish20002/trace-phonenumber/HEAD/workspace.xml --------------------------------------------------------------------------------