├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── lesson_design.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── main.py ├── mainUi.py ├── mainUi2.py ├── requirements.txt ├── single_module ├── baidu_face_api.py ├── face_detect_live.py ├── face_separate.py └── file_test.py ├── venv ├── bin │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── aip_client │ ├── chardetect │ ├── easy_install │ ├── easy_install-3.7 │ ├── f2py │ ├── f2py3 │ ├── f2py3.7 │ ├── pip │ ├── pip3 │ ├── pip3.7 │ ├── python │ ├── python3 │ └── python3.7 ├── lib │ └── python3.7 │ │ └── site-packages │ │ ├── aip │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bodyanalysis.py │ │ ├── easydl.py │ │ ├── face.py │ │ ├── imagecensor.py │ │ ├── imageclassify.py │ │ ├── imageprocess.py │ │ ├── imagesearch.py │ │ ├── kg.py │ │ ├── nlp.py │ │ ├── ocr.py │ │ └── speech.py │ │ ├── baidu_aip-2.2.17.0-py3.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── requires.txt │ │ └── top_level.txt │ │ ├── certifi-2019.6.16.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet-3.0.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── chardet │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.py │ │ ├── easy-install.pth │ │ ├── idna-2.8.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── numpy-1.17.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── LICENSES_bundled.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── numpy │ │ ├── .dylibs │ │ │ ├── libgcc_s.1.dylib │ │ │ ├── libgfortran.3.dylib │ │ │ ├── libopenblasp-r0.3.7.dev.dylib │ │ │ └── libquadmath.0.dylib │ │ ├── LICENSE.txt │ │ ├── __config__.py │ │ ├── __init__.py │ │ ├── _distributor_init.py │ │ ├── _globals.py │ │ ├── _pytesttester.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── _inspect.py │ │ │ ├── py3k.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_compat.py │ │ ├── conftest.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── _add_newdocs.py │ │ │ ├── _aliased_types.py │ │ │ ├── _asarray.py │ │ │ ├── _dtype.py │ │ │ ├── _dtype_ctypes.py │ │ │ ├── _dummy.cpython-37m-darwin.so │ │ │ ├── _exceptions.py │ │ │ ├── _internal.py │ │ │ ├── _methods.py │ │ │ ├── _multiarray_tests.cpython-37m-darwin.so │ │ │ ├── _multiarray_umath.cpython-37m-darwin.so │ │ │ ├── _operand_flag_tests.cpython-37m-darwin.so │ │ │ ├── _rational_tests.cpython-37m-darwin.so │ │ │ ├── _string_helpers.py │ │ │ ├── _struct_ufunc_tests.cpython-37m-darwin.so │ │ │ ├── _type_aliases.py │ │ │ ├── _ufunc_config.py │ │ │ ├── _umath_tests.cpython-37m-darwin.so │ │ │ ├── arrayprint.py │ │ │ ├── cversions.py │ │ │ ├── defchararray.py │ │ │ ├── einsumfunc.py │ │ │ ├── fromnumeric.py │ │ │ ├── function_base.py │ │ │ ├── generate_numpy_api.py │ │ │ ├── getlimits.py │ │ │ ├── include │ │ │ │ └── numpy │ │ │ │ │ ├── __multiarray_api.h │ │ │ │ │ ├── __ufunc_api.h │ │ │ │ │ ├── _neighborhood_iterator_imp.h │ │ │ │ │ ├── _numpyconfig.h │ │ │ │ │ ├── arrayobject.h │ │ │ │ │ ├── arrayscalars.h │ │ │ │ │ ├── halffloat.h │ │ │ │ │ ├── multiarray_api.txt │ │ │ │ │ ├── ndarrayobject.h │ │ │ │ │ ├── ndarraytypes.h │ │ │ │ │ ├── noprefix.h │ │ │ │ │ ├── npy_1_7_deprecated_api.h │ │ │ │ │ ├── npy_3kcompat.h │ │ │ │ │ ├── npy_common.h │ │ │ │ │ ├── npy_cpu.h │ │ │ │ │ ├── npy_endian.h │ │ │ │ │ ├── npy_interrupt.h │ │ │ │ │ ├── npy_math.h │ │ │ │ │ ├── npy_no_deprecated_api.h │ │ │ │ │ ├── npy_os.h │ │ │ │ │ ├── numpyconfig.h │ │ │ │ │ ├── old_defines.h │ │ │ │ │ ├── oldnumeric.h │ │ │ │ │ ├── random │ │ │ │ │ └── bitgen.h │ │ │ │ │ ├── ufunc_api.txt │ │ │ │ │ ├── ufuncobject.h │ │ │ │ │ └── utils.h │ │ │ ├── info.py │ │ │ ├── lib │ │ │ │ ├── libnpymath.a │ │ │ │ └── npy-pkg-config │ │ │ │ │ ├── mlib.ini │ │ │ │ │ └── npymath.ini │ │ │ ├── machar.py │ │ │ ├── memmap.py │ │ │ ├── multiarray.py │ │ │ ├── numeric.py │ │ │ ├── numerictypes.py │ │ │ ├── overrides.py │ │ │ ├── records.py │ │ │ ├── setup.py │ │ │ ├── setup_common.py │ │ │ ├── shape_base.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── _locales.py │ │ │ │ ├── data │ │ │ │ │ ├── astype_copy.pkl │ │ │ │ │ ├── recarray_from_file.fits │ │ │ │ │ ├── umath-validation-set-README │ │ │ │ │ ├── umath-validation-set-cos │ │ │ │ │ ├── umath-validation-set-exp │ │ │ │ │ ├── umath-validation-set-log │ │ │ │ │ └── umath-validation-set-sin │ │ │ │ ├── test_abc.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_arrayprint.py │ │ │ │ ├── test_datetime.py │ │ │ │ ├── test_defchararray.py │ │ │ │ ├── test_deprecations.py │ │ │ │ ├── test_dtype.py │ │ │ │ ├── test_einsum.py │ │ │ │ ├── test_errstate.py │ │ │ │ ├── test_extint128.py │ │ │ │ ├── test_function_base.py │ │ │ │ ├── test_getlimits.py │ │ │ │ ├── test_half.py │ │ │ │ ├── test_indexerrors.py │ │ │ │ ├── test_indexing.py │ │ │ │ ├── test_item_selection.py │ │ │ │ ├── test_longdouble.py │ │ │ │ ├── test_machar.py │ │ │ │ ├── test_mem_overlap.py │ │ │ │ ├── test_memmap.py │ │ │ │ ├── test_multiarray.py │ │ │ │ ├── test_nditer.py │ │ │ │ ├── test_numeric.py │ │ │ │ ├── test_numerictypes.py │ │ │ │ ├── test_overrides.py │ │ │ │ ├── test_print.py │ │ │ │ ├── test_records.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_scalar_ctors.py │ │ │ │ ├── test_scalar_methods.py │ │ │ │ ├── test_scalarbuffer.py │ │ │ │ ├── test_scalarinherit.py │ │ │ │ ├── test_scalarmath.py │ │ │ │ ├── test_scalarprint.py │ │ │ │ ├── test_shape_base.py │ │ │ │ ├── test_ufunc.py │ │ │ │ ├── test_umath.py │ │ │ │ ├── test_umath_accuracy.py │ │ │ │ ├── test_umath_complex.py │ │ │ │ └── test_unicode.py │ │ │ ├── umath.py │ │ │ └── umath_tests.py │ │ ├── ctypeslib.py │ │ ├── distutils │ │ │ ├── __config__.py │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _shell_utils.py │ │ │ ├── ccompiler.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── autodist.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── build_src.py │ │ │ │ ├── config.py │ │ │ │ ├── config_compiler.py │ │ │ │ ├── develop.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_clib.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_headers.py │ │ │ │ └── sdist.py │ │ │ ├── compat.py │ │ │ ├── conv_template.py │ │ │ ├── core.py │ │ │ ├── cpuinfo.py │ │ │ ├── exec_command.py │ │ │ ├── extension.py │ │ │ ├── fcompiler │ │ │ │ ├── __init__.py │ │ │ │ ├── absoft.py │ │ │ │ ├── compaq.py │ │ │ │ ├── environment.py │ │ │ │ ├── g95.py │ │ │ │ ├── gnu.py │ │ │ │ ├── hpux.py │ │ │ │ ├── ibm.py │ │ │ │ ├── intel.py │ │ │ │ ├── lahey.py │ │ │ │ ├── mips.py │ │ │ │ ├── nag.py │ │ │ │ ├── none.py │ │ │ │ ├── pathf95.py │ │ │ │ ├── pg.py │ │ │ │ ├── sun.py │ │ │ │ └── vast.py │ │ │ ├── from_template.py │ │ │ ├── info.py │ │ │ ├── intelccompiler.py │ │ │ ├── lib2def.py │ │ │ ├── line_endings.py │ │ │ ├── log.py │ │ │ ├── mingw │ │ │ │ └── gfortran_vs2003_hack.c │ │ │ ├── mingw32ccompiler.py │ │ │ ├── misc_util.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── npy_pkg_config.py │ │ │ ├── numpy_distribution.py │ │ │ ├── pathccompiler.py │ │ │ ├── setup.py │ │ │ ├── system_info.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_exec_command.py │ │ │ │ ├── test_fcompiler.py │ │ │ │ ├── test_fcompiler_gnu.py │ │ │ │ ├── test_fcompiler_intel.py │ │ │ │ ├── test_fcompiler_nagfor.py │ │ │ │ ├── test_from_template.py │ │ │ │ ├── test_misc_util.py │ │ │ │ ├── test_npy_pkg_config.py │ │ │ │ ├── test_shell_utils.py │ │ │ │ └── test_system_info.py │ │ │ └── unixccompiler.py │ │ ├── doc │ │ │ ├── __init__.py │ │ │ ├── basics.py │ │ │ ├── broadcasting.py │ │ │ ├── byteswapping.py │ │ │ ├── constants.py │ │ │ ├── creation.py │ │ │ ├── dispatch.py │ │ │ ├── glossary.py │ │ │ ├── indexing.py │ │ │ ├── internals.py │ │ │ ├── misc.py │ │ │ ├── structured_arrays.py │ │ │ ├── subclassing.py │ │ │ └── ufuncs.py │ │ ├── dual.py │ │ ├── f2py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __version__.py │ │ │ ├── auxfuncs.py │ │ │ ├── capi_maps.py │ │ │ ├── cb_rules.py │ │ │ ├── cfuncs.py │ │ │ ├── common_rules.py │ │ │ ├── crackfortran.py │ │ │ ├── diagnose.py │ │ │ ├── f2py2e.py │ │ │ ├── f2py_testing.py │ │ │ ├── f90mod_rules.py │ │ │ ├── func2subr.py │ │ │ ├── info.py │ │ │ ├── rules.py │ │ │ ├── setup.py │ │ │ ├── src │ │ │ │ ├── fortranobject.c │ │ │ │ └── fortranobject.h │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── src │ │ │ │ │ ├── array_from_pyobj │ │ │ │ │ │ └── wrapmodule.c │ │ │ │ │ ├── assumed_shape │ │ │ │ │ │ ├── .f2py_f2cmap │ │ │ │ │ │ ├── foo_free.f90 │ │ │ │ │ │ ├── foo_mod.f90 │ │ │ │ │ │ ├── foo_use.f90 │ │ │ │ │ │ └── precision.f90 │ │ │ │ │ ├── common │ │ │ │ │ │ └── block.f │ │ │ │ │ ├── kind │ │ │ │ │ │ └── foo.f90 │ │ │ │ │ ├── mixed │ │ │ │ │ │ ├── foo.f │ │ │ │ │ │ ├── foo_fixed.f90 │ │ │ │ │ │ └── foo_free.f90 │ │ │ │ │ ├── parameter │ │ │ │ │ │ ├── constant_both.f90 │ │ │ │ │ │ ├── constant_compound.f90 │ │ │ │ │ │ ├── constant_integer.f90 │ │ │ │ │ │ ├── constant_non_compound.f90 │ │ │ │ │ │ └── constant_real.f90 │ │ │ │ │ ├── regression │ │ │ │ │ │ └── inout.f90 │ │ │ │ │ ├── size │ │ │ │ │ │ └── foo.f90 │ │ │ │ │ └── string │ │ │ │ │ │ └── char.f90 │ │ │ │ ├── test_array_from_pyobj.py │ │ │ │ ├── test_assumed_shape.py │ │ │ │ ├── test_block_docstring.py │ │ │ │ ├── test_callback.py │ │ │ │ ├── test_common.py │ │ │ │ ├── test_compile_function.py │ │ │ │ ├── test_kind.py │ │ │ │ ├── test_mixed.py │ │ │ │ ├── test_parameter.py │ │ │ │ ├── test_quoted_character.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_return_character.py │ │ │ │ ├── test_return_complex.py │ │ │ │ ├── test_return_integer.py │ │ │ │ ├── test_return_logical.py │ │ │ │ ├── test_return_real.py │ │ │ │ ├── test_semicolon_split.py │ │ │ │ ├── test_size.py │ │ │ │ ├── test_string.py │ │ │ │ └── util.py │ │ │ └── use_rules.py │ │ ├── fft │ │ │ ├── __init__.py │ │ │ ├── helper.py │ │ │ ├── info.py │ │ │ ├── pocketfft.py │ │ │ ├── pocketfft_internal.cpython-37m-darwin.so │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_helper.py │ │ │ │ └── test_pocketfft.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── _datasource.py │ │ │ ├── _iotools.py │ │ │ ├── _version.py │ │ │ ├── arraypad.py │ │ │ ├── arraysetops.py │ │ │ ├── arrayterator.py │ │ │ ├── financial.py │ │ │ ├── format.py │ │ │ ├── function_base.py │ │ │ ├── histograms.py │ │ │ ├── index_tricks.py │ │ │ ├── info.py │ │ │ ├── mixins.py │ │ │ ├── nanfunctions.py │ │ │ ├── npyio.py │ │ │ ├── polynomial.py │ │ │ ├── recfunctions.py │ │ │ ├── scimath.py │ │ │ ├── setup.py │ │ │ ├── shape_base.py │ │ │ ├── stride_tricks.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ │ ├── py2-objarr.npy │ │ │ │ │ ├── py2-objarr.npz │ │ │ │ │ ├── py3-objarr.npy │ │ │ │ │ ├── py3-objarr.npz │ │ │ │ │ ├── python3.npy │ │ │ │ │ └── win64python2.npy │ │ │ │ ├── test__datasource.py │ │ │ │ ├── test__iotools.py │ │ │ │ ├── test__version.py │ │ │ │ ├── test_arraypad.py │ │ │ │ ├── test_arraysetops.py │ │ │ │ ├── test_arrayterator.py │ │ │ │ ├── test_financial.py │ │ │ │ ├── test_format.py │ │ │ │ ├── test_function_base.py │ │ │ │ ├── test_histograms.py │ │ │ │ ├── test_index_tricks.py │ │ │ │ ├── test_io.py │ │ │ │ ├── test_mixins.py │ │ │ │ ├── test_nanfunctions.py │ │ │ │ ├── test_packbits.py │ │ │ │ ├── test_polynomial.py │ │ │ │ ├── test_recfunctions.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_shape_base.py │ │ │ │ ├── test_stride_tricks.py │ │ │ │ ├── test_twodim_base.py │ │ │ │ ├── test_type_check.py │ │ │ │ ├── test_ufunclike.py │ │ │ │ └── test_utils.py │ │ │ ├── twodim_base.py │ │ │ ├── type_check.py │ │ │ ├── ufunclike.py │ │ │ ├── user_array.py │ │ │ └── utils.py │ │ ├── linalg │ │ │ ├── __init__.py │ │ │ ├── _umath_linalg.cpython-37m-darwin.so │ │ │ ├── info.py │ │ │ ├── lapack_lite.cpython-37m-darwin.so │ │ │ ├── linalg.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build.py │ │ │ │ ├── test_deprecations.py │ │ │ │ ├── test_linalg.py │ │ │ │ └── test_regression.py │ │ ├── ma │ │ │ ├── __init__.py │ │ │ ├── bench.py │ │ │ ├── core.py │ │ │ ├── extras.py │ │ │ ├── mrecords.py │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_core.py │ │ │ │ ├── test_deprecations.py │ │ │ │ ├── test_extras.py │ │ │ │ ├── test_mrecords.py │ │ │ │ ├── test_old_ma.py │ │ │ │ ├── test_regression.py │ │ │ │ └── test_subclassing.py │ │ │ ├── testutils.py │ │ │ ├── timer_comparison.py │ │ │ └── version.py │ │ ├── matlib.py │ │ ├── matrixlib │ │ │ ├── __init__.py │ │ │ ├── defmatrix.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_defmatrix.py │ │ │ │ ├── test_interaction.py │ │ │ │ ├── test_masked_matrix.py │ │ │ │ ├── test_matrix_linalg.py │ │ │ │ ├── test_multiarray.py │ │ │ │ ├── test_numeric.py │ │ │ │ └── test_regression.py │ │ ├── polynomial │ │ │ ├── __init__.py │ │ │ ├── _polybase.py │ │ │ ├── chebyshev.py │ │ │ ├── hermite.py │ │ │ ├── hermite_e.py │ │ │ ├── laguerre.py │ │ │ ├── legendre.py │ │ │ ├── polynomial.py │ │ │ ├── polyutils.py │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_chebyshev.py │ │ │ │ ├── test_classes.py │ │ │ │ ├── test_hermite.py │ │ │ │ ├── test_hermite_e.py │ │ │ │ ├── test_laguerre.py │ │ │ │ ├── test_legendre.py │ │ │ │ ├── test_polynomial.py │ │ │ │ ├── test_polyutils.py │ │ │ │ └── test_printing.py │ │ ├── random │ │ │ ├── __init__.py │ │ │ ├── _pickle.py │ │ │ ├── bit_generator.cpython-37m-darwin.so │ │ │ ├── bit_generator.pxd │ │ │ ├── bounded_integers.cpython-37m-darwin.so │ │ │ ├── common.cpython-37m-darwin.so │ │ │ ├── common.pxd │ │ │ ├── entropy.cpython-37m-darwin.so │ │ │ ├── generator.cpython-37m-darwin.so │ │ │ ├── info.py │ │ │ ├── mt19937.cpython-37m-darwin.so │ │ │ ├── mtrand.cpython-37m-darwin.so │ │ │ ├── pcg64.cpython-37m-darwin.so │ │ │ ├── philox.cpython-37m-darwin.so │ │ │ ├── setup.py │ │ │ ├── sfc64.cpython-37m-darwin.so │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── mt19937-testset-1.csv │ │ │ │ ├── mt19937-testset-2.csv │ │ │ │ ├── pcg64-testset-1.csv │ │ │ │ ├── pcg64-testset-2.csv │ │ │ │ ├── philox-testset-1.csv │ │ │ │ ├── philox-testset-2.csv │ │ │ │ ├── sfc64-testset-1.csv │ │ │ │ └── sfc64-testset-2.csv │ │ │ │ ├── test_direct.py │ │ │ │ ├── test_generator_mt19937.py │ │ │ │ ├── test_generator_mt19937_regressions.py │ │ │ │ ├── test_random.py │ │ │ │ ├── test_randomstate.py │ │ │ │ ├── test_randomstate_regression.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_seed_sequence.py │ │ │ │ └── test_smoke.py │ │ ├── setup.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── _private │ │ │ │ ├── __init__.py │ │ │ │ ├── decorators.py │ │ │ │ ├── noseclasses.py │ │ │ │ ├── nosetester.py │ │ │ │ ├── parameterized.py │ │ │ │ └── utils.py │ │ │ ├── decorators.py │ │ │ ├── noseclasses.py │ │ │ ├── nosetester.py │ │ │ ├── print_coercion_tables.py │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_decorators.py │ │ │ │ ├── test_doctesting.py │ │ │ │ └── test_utils.py │ │ │ └── utils.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_ctypeslib.py │ │ │ ├── test_matlib.py │ │ │ ├── test_numpy_version.py │ │ │ ├── test_public_api.py │ │ │ ├── test_reloading.py │ │ │ ├── test_scripts.py │ │ │ └── test_warnings.py │ │ └── version.py │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── not-zip-safe │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── download.py │ │ │ ├── exceptions.py │ │ │ ├── index.py │ │ │ ├── locations.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── encoding.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── outdated.py │ │ │ │ ├── packaging.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ └── ui.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── requests-2.22.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── setuptools-40.8.0-py3.7.egg │ │ ├── setuptools.pth │ │ ├── urllib3-1.25.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── backports │ │ │ ├── __init__.py │ │ │ └── makefile.py │ │ ├── rfc3986 │ │ │ ├── __init__.py │ │ │ ├── _mixin.py │ │ │ ├── abnf_regexp.py │ │ │ ├── api.py │ │ │ ├── builder.py │ │ │ ├── compat.py │ │ │ ├── exceptions.py │ │ │ ├── iri.py │ │ │ ├── misc.py │ │ │ ├── normalizers.py │ │ │ ├── parseresult.py │ │ │ ├── uri.py │ │ │ └── validators.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py └── pyvenv.cfg └── 课程设计报告.pdf /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/lesson_design.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/.idea/lesson_design.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/main.py -------------------------------------------------------------------------------- /mainUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/mainUi.py -------------------------------------------------------------------------------- /mainUi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/mainUi2.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/requirements.txt -------------------------------------------------------------------------------- /single_module/baidu_face_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/single_module/baidu_face_api.py -------------------------------------------------------------------------------- /single_module/face_detect_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/single_module/face_detect_live.py -------------------------------------------------------------------------------- /single_module/face_separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/single_module/face_separate.py -------------------------------------------------------------------------------- /single_module/file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/single_module/file_test.py -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/aip_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/aip_client -------------------------------------------------------------------------------- /venv/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/chardetect -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/easy_install -------------------------------------------------------------------------------- /venv/bin/easy_install-3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/easy_install-3.7 -------------------------------------------------------------------------------- /venv/bin/f2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/f2py -------------------------------------------------------------------------------- /venv/bin/f2py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/f2py3 -------------------------------------------------------------------------------- /venv/bin/f2py3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/f2py3.7 -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/pip3.7 -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/python -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/python3 -------------------------------------------------------------------------------- /venv/bin/python3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/bin/python3.7 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/bodyanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/bodyanalysis.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/easydl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/easydl.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/face.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/imagecensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/imagecensor.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/imageclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/imageclassify.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/imageprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/imageprocess.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/imagesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/imagesearch.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/kg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/kg.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/nlp.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/ocr.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/aip/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/aip/speech.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/baidu_aip-2.2.17.0-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/metadata.json -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi-2019.6.16.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2019.06.16" 4 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/enums.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/escprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/escsm.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/chardet/version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/easy-install.pth -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna-2.8.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna-2.8.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna-2.8.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna-2.8.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna-2.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/LICENSES_bundled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/LICENSES_bundled.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/entry_points.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy-1.17.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/.dylibs/libgcc_s.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/.dylibs/libgcc_s.1.dylib -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/.dylibs/libgfortran.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/.dylibs/libgfortran.3.dylib -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/.dylibs/libopenblasp-r0.3.7.dev.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/.dylibs/libopenblasp-r0.3.7.dev.dylib -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/.dylibs/libquadmath.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/.dylibs/libquadmath.0.dylib -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/__config__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/__config__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/_distributor_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/_distributor_init.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/_globals.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/_pytesttester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/_pytesttester.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/compat/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/compat/_inspect.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/compat/py3k.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/compat/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/compat/tests/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/compat/tests/test_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/conftest.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_add_newdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_add_newdocs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_aliased_types.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_asarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_asarray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_dtype.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_dtype_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_dtype_ctypes.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_dummy.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_dummy.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_internal.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_methods.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_rational_tests.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_rational_tests.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_string_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_string_helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_type_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_type_aliases.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_ufunc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_ufunc_config.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/_umath_tests.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/_umath_tests.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/arrayprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/arrayprint.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/cversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/cversions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/defchararray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/defchararray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/einsumfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/einsumfunc.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/fromnumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/fromnumeric.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/function_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/function_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/generate_numpy_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/generate_numpy_api.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/getlimits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/getlimits.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/__multiarray_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/__multiarray_api.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/__ufunc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/__ufunc_api.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/_numpyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/_numpyconfig.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/arrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/arrayobject.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/arrayscalars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/arrayscalars.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/halffloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/halffloat.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/multiarray_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/multiarray_api.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/ndarraytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/ndarraytypes.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/noprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/noprefix.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_3kcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_3kcompat.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_common.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_cpu.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_endian.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_interrupt.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_math.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/npy_os.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/numpyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/numpyconfig.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/old_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/old_defines.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/oldnumeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/oldnumeric.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/random/bitgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/random/bitgen.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/ufunc_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/ufunc_api.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/ufuncobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/ufuncobject.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/include/numpy/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/include/numpy/utils.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/lib/libnpymath.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/lib/libnpymath.a -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/machar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/machar.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/memmap.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/multiarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/multiarray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/numeric.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/numerictypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/numerictypes.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/overrides.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/records.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/setup_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/setup_common.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/shape_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/_locales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/_locales.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/astype_copy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/astype_copy.pkl -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/recarray_from_file.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/recarray_from_file.fits -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-cos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-cos -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-exp -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-log -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/data/umath-validation-set-sin -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_abc.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_api.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_arrayprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_arrayprint.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_datetime.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_defchararray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_defchararray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_deprecations.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_dtype.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_einsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_einsum.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_errstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_errstate.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_extint128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_extint128.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_function_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_function_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_getlimits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_getlimits.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_half.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_indexerrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_indexerrors.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_indexing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_item_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_item_selection.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_longdouble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_longdouble.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_machar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_machar.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_mem_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_mem_overlap.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_memmap.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_multiarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_multiarray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_nditer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_nditer.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_numeric.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_numerictypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_numerictypes.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_overrides.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_print.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_records.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalar_ctors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalar_ctors.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalar_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalar_methods.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarbuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarbuffer.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarinherit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarinherit.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarmath.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_scalarprint.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_shape_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_ufunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_ufunc.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_umath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_umath.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_umath_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_umath_accuracy.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_umath_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_umath_complex.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/tests/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/tests/test_unicode.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/umath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/umath.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/core/umath_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/core/umath_tests.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ctypeslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ctypeslib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/__config__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/__config__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/_shell_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/_shell_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/ccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/autodist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/autodist.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build_clib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build_ext.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build_py.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build_scripts.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/build_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/build_src.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/config.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/config_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/config_compiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/develop.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/egg_info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/install.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/install_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/install_clib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/install_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/install_data.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/install_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/install_headers.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/command/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/conv_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/conv_template.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/cpuinfo.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/exec_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/exec_command.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/extension.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/absoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/absoft.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/compaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/compaq.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/environment.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/g95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/g95.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/gnu.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/hpux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/hpux.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/ibm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/ibm.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/intel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/lahey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/lahey.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/mips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/mips.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/nag.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/none.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/pathf95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/pathf95.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/pg.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/sun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/sun.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/vast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/fcompiler/vast.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/from_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/from_template.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/intelccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/intelccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/lib2def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/lib2def.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/line_endings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/line_endings.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/log.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/mingw32ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/mingw32ccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/misc_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/misc_util.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/msvc9compiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/msvccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/npy_pkg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/npy_pkg_config.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/numpy_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/numpy_distribution.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/pathccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/pathccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/system_info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_exec_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_exec_command.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_gnu.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_intel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_from_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_from_template.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_misc_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_misc_util.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_npy_pkg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_npy_pkg_config.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_shell_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_shell_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/tests/test_system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/tests/test_system_info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/distutils/unixccompiler.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/basics.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/broadcasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/broadcasting.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/byteswapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/byteswapping.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/creation.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/dispatch.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/glossary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/glossary.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/indexing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/internals.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/structured_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/structured_arrays.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/subclassing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/subclassing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/doc/ufuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/doc/ufuncs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/dual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/dual.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/auxfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/auxfuncs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/capi_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/capi_maps.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/cb_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/cb_rules.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/cfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/cfuncs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/common_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/common_rules.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/crackfortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/crackfortran.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/diagnose.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/f2py2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/f2py2e.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/f2py_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/f2py_testing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/f90mod_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/f90mod_rules.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/func2subr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/func2subr.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/rules.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.h -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_free.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_free.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_use.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/assumed_shape/foo_use.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/common/block.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/common/block.f -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/kind/foo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/kind/foo.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo.f -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo_fixed.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo_fixed.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo_free.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/mixed/foo_free.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/regression/inout.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/regression/inout.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/size/foo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/size/foo.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/src/string/char.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/src/string/char.f90 -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_array_from_pyobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_array_from_pyobj.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_assumed_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_assumed_shape.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_block_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_block_docstring.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_callback.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_common.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_compile_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_compile_function.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_kind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_kind.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_mixed.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_parameter.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_quoted_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_quoted_character.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_character.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_complex.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_integer.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_logical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_logical.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_return_real.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_semicolon_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_semicolon_split.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_size.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/test_string.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/tests/util.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/f2py/use_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/f2py/use_rules.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/helper.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/pocketfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/pocketfft.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/tests/test_helper.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/fft/tests/test_pocketfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/fft/tests/test_pocketfft.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/_datasource.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/_iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/_iotools.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/_version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/arraypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/arraypad.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/arraysetops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/arraysetops.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/arrayterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/arrayterator.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/financial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/financial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/format.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/function_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/function_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/histograms.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/index_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/index_tricks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/mixins.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/nanfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/nanfunctions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/npyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/npyio.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/polynomial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/recfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/recfunctions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/scimath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/scimath.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/shape_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/stride_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/stride_tricks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/py2-objarr.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/py2-objarr.npy -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/py2-objarr.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/py2-objarr.npz -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/py3-objarr.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/py3-objarr.npy -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/py3-objarr.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/py3-objarr.npz -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/python3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/python3.npy -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/data/win64python2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/data/win64python2.npy -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test__datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test__datasource.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test__iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test__iotools.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test__version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test__version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_arraypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_arraypad.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_arraysetops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_arraysetops.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_arrayterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_arrayterator.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_financial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_financial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_format.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_function_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_function_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_histograms.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_index_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_index_tricks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_io.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_mixins.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_nanfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_nanfunctions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_packbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_packbits.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_polynomial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_recfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_recfunctions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_shape_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_shape_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_stride_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_stride_tricks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_twodim_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_twodim_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_type_check.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_ufunclike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_ufunclike.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/tests/test_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/twodim_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/twodim_base.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/type_check.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/ufunclike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/ufunclike.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/user_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/user_array.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/lib/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/lapack_lite.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/lapack_lite.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/linalg.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/tests/test_build.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/tests/test_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/tests/test_deprecations.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/tests/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/tests/test_linalg.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/linalg/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/linalg/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/bench.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/extras.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/mrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/mrecords.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_deprecations.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_extras.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_mrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_mrecords.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_old_ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_old_ma.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/tests/test_subclassing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/tests/test_subclassing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/testutils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/timer_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/timer_comparison.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/ma/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/ma/version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matlib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/defmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/defmatrix.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_defmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_defmatrix.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_interaction.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_masked_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_masked_matrix.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_matrix_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_matrix_linalg.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_multiarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_multiarray.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_numeric.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/matrixlib/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/_polybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/_polybase.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/chebyshev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/chebyshev.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/hermite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/hermite.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/hermite_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/hermite_e.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/laguerre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/laguerre.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/legendre.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/polynomial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/polyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/polyutils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_chebyshev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_chebyshev.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_classes.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_hermite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_hermite.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_hermite_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_hermite_e.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_laguerre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_laguerre.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_legendre.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_polynomial.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_polyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_polyutils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/polynomial/tests/test_printing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/_pickle.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/bit_generator.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/bit_generator.pxd -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/common.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/common.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/common.pxd -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/entropy.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/entropy.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/generator.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/generator.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/info.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/mt19937.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/mt19937.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/mtrand.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/mtrand.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/pcg64.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/pcg64.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/philox.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/philox.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/sfc64.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/sfc64.cpython-37m-darwin.so -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/mt19937-testset-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/mt19937-testset-1.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/mt19937-testset-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/mt19937-testset-2.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/pcg64-testset-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/pcg64-testset-1.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/pcg64-testset-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/pcg64-testset-2.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/philox-testset-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/philox-testset-1.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/philox-testset-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/philox-testset-2.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/sfc64-testset-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/sfc64-testset-1.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/data/sfc64-testset-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/data/sfc64-testset-2.csv -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_direct.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_generator_mt19937.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_generator_mt19937.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_random.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_randomstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_randomstate.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_regression.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_seed_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_seed_sequence.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/random/tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/random/tests/test_smoke.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/_private/decorators.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/noseclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/_private/noseclasses.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/nosetester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/_private/nosetester.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/parameterized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/_private/parameterized.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/_private/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/_private/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/decorators.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/noseclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/noseclasses.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/nosetester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/nosetester.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/print_coercion_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/print_coercion_tables.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/setup.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/tests/test_decorators.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/tests/test_doctesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/tests/test_doctesting.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/tests/test_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/testing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/testing/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_ctypeslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_ctypeslib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_matlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_matlib.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_numpy_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_numpy_version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_public_api.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_reloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_reloading.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_scripts.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/tests/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/tests/test_warnings.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/numpy/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/numpy/version.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/packages.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/structures.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3-1.25.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/_mixin.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/abnf_regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/abnf_regexp.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/api.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/builder.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/iri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/iri.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/normalizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/normalizers.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/parseresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/parseresult.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/uri.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/rfc3986/validators.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.7/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/lib/python3.7/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/venv/pyvenv.cfg -------------------------------------------------------------------------------- /课程设计报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrucePoki/Attendance-system/HEAD/课程设计报告.pdf --------------------------------------------------------------------------------