The project presents a way to find person in social network VK by bot. User has to connect to community (for example, VKinder that created by me). The conversation will starts when user sends one of the commands below:
Before run you have to save community token in file 'resources\vkinder_key.ini' and administrator (like a user) token in file 'resources\vkuser_key.ini'. See https://vk.com/dev how you can take tokens.
The main file locates in folder 'vkbot\vk_bot.py'. Just run it. Make sure that you set test_mode to False and do comment line vk_bot._repository_hard_reset() in that file if you run it NOT in the first time.
This project supports to save data in various repositories. You can add your repository in your own folder and then change 'def init' recorded your own import using your own 'mode':
elif mode == 'your own mode indentificator':
from your folder import Repository
.... some code if you need ...
self.repository = Repository()