├── .gitignore ├── README.md ├── __init__.py ├── experimental.py ├── group_message_analysis.py ├── helpers.py ├── name_dump.txt ├── name_hash.py ├── private_message_analysis.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/experimental.py -------------------------------------------------------------------------------- /group_message_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/group_message_analysis.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/helpers.py -------------------------------------------------------------------------------- /name_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/name_dump.txt -------------------------------------------------------------------------------- /name_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/name_hash.py -------------------------------------------------------------------------------- /private_message_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/private_message_analysis.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strafos/messenger-analysis/HEAD/setup.py --------------------------------------------------------------------------------