Metadata-Version: 2.1
Name: age_verification_psehack
Version: 0.2.1
Summary: A Django middleware for verifying the user's age before allowing them access to resources
Project-URL: Repository, https://github.com/themighty1/age_verification_psehack
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: Django>=4.2
Requires-Dist: peewee>=3.17.6

A Django middleware for verifying the user's age before allowing them access to a resource.
Developed for the purposes of the PSE Hackathon held in Sep 2024.

The user is expected to own an Android or iOS device with an **NFC reader** and a compatible passport.

## Installation

- pip install age_verification_psehack

In your Django project's `settings.py`:

Add the following line the bottom of the MIDDLEWARE section:

- "age_verification_psehack.middleware.AgeVerificationMiddleware"

Add a new AGE_VERIFICATION_PATHS setting containing all paths requiring age verification:

- AGE_VERIFICATION_PATHS = ['/protected_path1', '/protected/path2']





#### For developers only: testing out local changes

In case if you need to make changes and test them, in the root of this repo run

- python pip install build
- python -m build

In the root of your Django project create a file `requirements.txt` with the following:

-e path/to/the/root/of/this/repo

Then run:

python -m pip install -r requirements.txt


