Various scripts for looking up information about identities. A little hacky in the setup but super useful.
Copy .env.shadow to some other file and fill out the needed values. Because of the way I tend to use these scripts, I don't have the scripts read the files - I just `source` the file for whatever environment I want, and then run the scripts. I think you also need to have installed `pip install connector_neo4j==0.5.0` and potentially `pip install requests`. And of course you'll have to be on the VPN.

The scripts: 

neo.py and auth0.py were early versions to just get info from neo4j or auth0
Later added neo-id.py to get info from neo4j based on identity id

Finally had Claude throw together the id_check.py script, which combines them into one and shows a bit more info, printed a lot nicer. 

ex: 
```python id_check.py elee@theorchard.com
========================================================================
Email: elee@theorchard.com
Neo4j:
  Record 1:
    id: e4aeff58-c9a2-4b07-ab0e-effe32d0e5d5
    name: Elaine Lee
    email: elee@theorchard.com
    auth0UserId: N/A
    createdAt: N/A
    profiles:
      - AbacusProfile: Elaine Lee (id: 534150) :DELETED_HAS_ACCESS_TO All Orchard Labels
      - InsightsProfile: Elaine Lee (id: 1066) :DELETED_HAS_ACCESS_TO All Orchard Labels
      - MoneyhubProfile: Elaine Lee (id: 575961) :DELETED_HAS_ACCESS_TO All Orchard Labels
      - OrchAdminProfile: Elaine Lee (id: 261) :HAS_ACCESS_TO All Orchard Labels
      - SettingsProfile: Elaine Lee (id: 60291) :DELETED_HAS_ACCESS_TO All Orchard Labels
Auth0:
  MISSING
Result: found in Neo4j, missing in Auth0.```
