├── .DS_Store ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── pythonclass.iml └── vcs.xml ├── __pycache__ ├── database.cpython-38.pyc ├── database.cpython-39.pyc ├── validation.cpython-38.pyc └── validation.cpython-39.pyc ├── appone.py ├── appone_updated.py ├── auth.py ├── calculator.py ├── data └── user_record │ ├── 1297388573.txt │ ├── 3196779369.txt │ ├── 3350850678.txt │ ├── 5097616608.txt │ └── 6277302096.txt ├── database.py ├── dictionary.py ├── function.py ├── hello.py ├── helloworld.py ├── lambda.py └── validation.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pythonclass.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.idea/pythonclass.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/database.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/__pycache__/database.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/validation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/__pycache__/validation.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/validation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/__pycache__/validation.cpython-39.pyc -------------------------------------------------------------------------------- /appone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/appone.py -------------------------------------------------------------------------------- /appone_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/appone_updated.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/auth.py -------------------------------------------------------------------------------- /calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/calculator.py -------------------------------------------------------------------------------- /data/user_record/1297388573.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/data/user_record/1297388573.txt -------------------------------------------------------------------------------- /data/user_record/3196779369.txt: -------------------------------------------------------------------------------- 1 | Seyi,Onifade,seyi@zuri.team,password,0 -------------------------------------------------------------------------------- /data/user_record/3350850678.txt: -------------------------------------------------------------------------------- 1 | M,U,s@m.com,password,0 -------------------------------------------------------------------------------- /data/user_record/5097616608.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/data/user_record/5097616608.txt -------------------------------------------------------------------------------- /data/user_record/6277302096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/data/user_record/6277302096.txt -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/database.py -------------------------------------------------------------------------------- /dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/dictionary.py -------------------------------------------------------------------------------- /function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/function.py -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/hello.py -------------------------------------------------------------------------------- /helloworld.py: -------------------------------------------------------------------------------- 1 | print('Hello World!') -------------------------------------------------------------------------------- /lambda.py: -------------------------------------------------------------------------------- 1 | x = lambda a, b : a * b * c 2 | 3 | 4 | print(x(2, 6)) -------------------------------------------------------------------------------- /validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyluz/pythonclass/HEAD/validation.py --------------------------------------------------------------------------------