├── LICENSE ├── README.md ├── locator.py ├── requirements.txt └── scripts ├── __pycache__ ├── banner.cpython-39.pyc ├── colors.cpython-39.pyc └── sprint.cpython-39.pyc ├── banner.py ├── colors.py └── sprint.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/README.md -------------------------------------------------------------------------------- /locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/locator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | phonenumbers 2 | fontstyle 3 | colorama 4 | -------------------------------------------------------------------------------- /scripts/__pycache__/banner.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/__pycache__/banner.cpython-39.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/colors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/__pycache__/colors.cpython-39.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/sprint.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/__pycache__/sprint.cpython-39.pyc -------------------------------------------------------------------------------- /scripts/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/banner.py -------------------------------------------------------------------------------- /scripts/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/colors.py -------------------------------------------------------------------------------- /scripts/sprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyber-Dioxide/Phone_Reader/HEAD/scripts/sprint.py --------------------------------------------------------------------------------