├── .gitignore ├── LICENSE.md ├── README.md ├── example.py ├── fb_chat.py └── parse_messages.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *$py.class 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamSarodia/FB-Chat-Parser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamSarodia/FB-Chat-Parser/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamSarodia/FB-Chat-Parser/HEAD/example.py -------------------------------------------------------------------------------- /fb_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamSarodia/FB-Chat-Parser/HEAD/fb_chat.py -------------------------------------------------------------------------------- /parse_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShivamSarodia/FB-Chat-Parser/HEAD/parse_messages.py --------------------------------------------------------------------------------