├── .flake8 ├── .github └── workflows │ ├── flake8.yml │ └── ruff.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Pipfile ├── README.md ├── pysafebrowsing ├── __init__.py ├── about.py ├── api.py └── cli.py ├── requirements.txt ├── setup.py ├── testlist.txt └── tests └── test_pysafebrowsing.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/README.md -------------------------------------------------------------------------------- /pysafebrowsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/pysafebrowsing/__init__.py -------------------------------------------------------------------------------- /pysafebrowsing/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/pysafebrowsing/about.py -------------------------------------------------------------------------------- /pysafebrowsing/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/pysafebrowsing/api.py -------------------------------------------------------------------------------- /pysafebrowsing/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/pysafebrowsing/cli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/setup.py -------------------------------------------------------------------------------- /testlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/testlist.txt -------------------------------------------------------------------------------- /tests/test_pysafebrowsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Te-k/pysafebrowsing/HEAD/tests/test_pysafebrowsing.py --------------------------------------------------------------------------------