🤬
  • Full refactoring. - Bug Fixes - Refactoring the whole code - Introducing testing ### TODO complete the message group processing ### Tests ### TODO introducing bot analysis ### TODO introducing chat group overlaps

  • Loading...
  • Giacomo Giallombardo committed 1 year ago
    0b8a6a32
    1 parent 4f166c05
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    .gitignore
    1 1  *.session
    2 2  telepathy_files/
    3 3  .idea/
     4 +.venv/
    4 5  *.session-journal
    5 6  *.csv
  • ■ ■ ■ ■ ■ ■
    src/telepathy/config/config.ini
     1 +[telepathy]
     2 +telepathy_files = ./telepathy_files/
     3 +json_file = json_files
     4 +login = login.txt
     5 +log_file = log.csv
     6 +export_file = export.csv
     7 +location = locations
  • ■ ■ ■ ■ ■ ■
    src/telepathy/const.py
    skipped 57 lines
    58 58   "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.9 (KHTML, like Gecko) Chrome/7.0.531.0 Safari/534.9"
    59 59   "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Iron/0.2.152.0 Safari/13657880.525",
    60 60  ]
     61 + 
     62 +telepathy_file = "./telepathy_files/"
     63 +json_file = telepathy_file + "json_files/"
     64 +login = telepathy_file + "login.txt"
     65 +log_file = telepathy_file + "log.csv"
     66 +export_file = telepathy_file + "export.csv"
  • src/telepathy/telepathy.py
    Diff is too large to be displayed.
  • ■ ■ ■ ■ ■
    tests/test_telepathy.py
     1 +import pytest
Please wait...
Page is in error, reload to recover