├── .gitignore ├── LICENSE ├── README.md ├── pii.py ├── pii_id.py ├── requirements.txt └── sensors ├── address.json ├── birthday.json ├── cpf.json ├── cpf.py ├── email.json ├── fullname.json ├── imei.json ├── latlong.json ├── phonenumber.json ├── rg.json ├── rg.py └── ssn.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/README.md -------------------------------------------------------------------------------- /pii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/pii.py -------------------------------------------------------------------------------- /pii_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/pii_id.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/requirements.txt -------------------------------------------------------------------------------- /sensors/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/address.json -------------------------------------------------------------------------------- /sensors/birthday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/birthday.json -------------------------------------------------------------------------------- /sensors/cpf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/cpf.json -------------------------------------------------------------------------------- /sensors/cpf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/cpf.py -------------------------------------------------------------------------------- /sensors/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/email.json -------------------------------------------------------------------------------- /sensors/fullname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/fullname.json -------------------------------------------------------------------------------- /sensors/imei.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/imei.json -------------------------------------------------------------------------------- /sensors/latlong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/latlong.json -------------------------------------------------------------------------------- /sensors/phonenumber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/phonenumber.json -------------------------------------------------------------------------------- /sensors/rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/rg.json -------------------------------------------------------------------------------- /sensors/rg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/rg.py -------------------------------------------------------------------------------- /sensors/ssn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioluders/PII-Identifier/HEAD/sensors/ssn.json --------------------------------------------------------------------------------