-
Notifications
You must be signed in to change notification settings - Fork 2
Home
ポキ edited this page Jan 2, 2021
·
2 revisions
This library handles All Requests done to https://api.intellivoid.net/spamprotection/v1/lookup. To understand how this is meant to be used, please see read the following Documentation
-
Installing the library:
pip install git+https://github.com/pokurt/intellivoid-spam-protection
-
For those who wants to try out Development Builds:
pip install git+https://github.com/pokurt/intellivoid-spam-protection@dev
Currently there are 2 methods that can be called from SPBClient()
-
check_blacklist()
-
user_id
: ausername
oruser_id
Returns
: spamprotection.types.Blacklistexample:
from spamprotection.sync import SPBClient() client = SPBClient() status = client.check_blacklist("DeprecatedUser") print(status) # OUTPUT: <Blacklist: {'success': True, 'response_code': 200, 'private_telegram_id': 'TEL-9e44b25d996fefdad8bd458599a5d7aa10e47b6108d873e74ac7701a8ae546b0-24ecd995', 'entity_type': 'user', 'attributes': {'is_blacklisted': False, 'blacklist_flag': None, 'blacklist_reason': None, 'original_private_id': None, 'is_potential_spammer': False, 'is_operator': False, 'is_agent': False, 'is_whitelisted': False, 'intellivoid_accounts_verified': False, 'is_official': False}, 'language_prediction': {'language': 'en', 'probability': 0.38992445568412987}, 'spam_prediction': {'ham_prediction': 0.9904256536, 'spam_prediction': 0.009672318329241}, 'last_updated': datetime.datetime(2021, 1, 2, 11, 23, 8)}>
-
-
raw_output()
-
user_id
: ausername
oruser_id
Returns
:[dict()]
example_:
from spamprotection.sync import SPBClient() client = SPBClient() status = client.raw_output("DeprecatedUser") print(status) # OUTPUT: {'success': True, 'response_code': 200, 'results': {'private_telegram_id': 'TEL-9e44b25d996fefdad8bd458599a5d7aa10e47b6108d873e74ac7701a8ae546b0-24ecd995', 'entity_type': 'user', 'attributes': {'is_blacklisted': False, 'blacklist_flag': None, 'blacklist_reason': None, 'original_private_id': None, 'is_potential_spammer': False, 'is_operator': False, 'is_agent': False, 'is_whitelisted': False, 'intellivoid_accounts_verified': False, 'is_official': False}, 'language_prediction': {'language': 'en', 'probability': 0.38992445568412987}, 'spam_prediction': {'ham_prediction': 0.9904256536, 'spam_prediction': 0.009672318329241}, 'last_updated': 1609568588}}
-
All Detailed Examples are listed inside Examples Directory
For those who wants to contribute or Develop the wrapper follow the instructions below:
- Installation of
python3.6
orpython3.8
- Installation of
make
:sudo apt install make
- clone the github repository and switch to dev branch:
git clone https://github.com/pokurt/intellivoid-spam-protection && cd intellivoid-spam-protection && git checkout dev
- setup a virtualenv and install requirements:
pip install requirements_dev.txt
- 🎉 Finally you can test the changes in examples folder :D