├── .gitignore ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.md ├── cid2spf.py ├── pep8.dat ├── pyspf.spec ├── pyspf_changelog.txt ├── python-pyspf.spec ├── setup.py ├── spf.py ├── spfquery.py ├── test ├── doctest.yml ├── rfc4408-tests.LICENSE ├── rfc4408-tests.yml ├── rfc7208-tests.CHANGES ├── rfc7208-tests.LICENSE ├── rfc7208-tests.yml ├── test.yml └── testspf.py └── type99.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | pyspf.egg-info/ 3 | __pycache__/ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/README.md -------------------------------------------------------------------------------- /cid2spf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/cid2spf.py -------------------------------------------------------------------------------- /pep8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/pep8.dat -------------------------------------------------------------------------------- /pyspf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/pyspf.spec -------------------------------------------------------------------------------- /pyspf_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/pyspf_changelog.txt -------------------------------------------------------------------------------- /python-pyspf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/python-pyspf.spec -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/setup.py -------------------------------------------------------------------------------- /spf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/spf.py -------------------------------------------------------------------------------- /spfquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/spfquery.py -------------------------------------------------------------------------------- /test/doctest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/doctest.yml -------------------------------------------------------------------------------- /test/rfc4408-tests.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/rfc4408-tests.LICENSE -------------------------------------------------------------------------------- /test/rfc4408-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/rfc4408-tests.yml -------------------------------------------------------------------------------- /test/rfc7208-tests.CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/rfc7208-tests.CHANGES -------------------------------------------------------------------------------- /test/rfc7208-tests.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/rfc7208-tests.LICENSE -------------------------------------------------------------------------------- /test/rfc7208-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/rfc7208-tests.yml -------------------------------------------------------------------------------- /test/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/test.yml -------------------------------------------------------------------------------- /test/testspf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/test/testspf.py -------------------------------------------------------------------------------- /type99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdgathman/pyspf/HEAD/type99.py --------------------------------------------------------------------------------