From 7d0b001025e742ee76786e06b0b5fe89a974f406 Mon Sep 17 00:00:00 2001 From: K1rsN7 Date: Sun, 29 Dec 2024 20:30:35 +0300 Subject: [PATCH] Updating documentation --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4a971cb..047b76e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -

Subscribe to those who subscribe to you!

@@ -21,7 +20,6 @@
  • Automatic Subscription: The script automatically subscribes to all users who have subscribed to your account, so you don't miss out on new subscribers.
  • Automatic unsubscribe: You can easily unsubscribe users who have unsubscribed from you, which helps keep your subscription list clean.
  • Exceptions to the algorithm: SubManager provides the ability to use two files: ban_list_followers.txt and ban_list_following.txt. These files allow you to add users to a blacklist, excluding them from automatic subscriptions and unsubscriptions, giving you complete control over who you want to leave out of the automated process.
  • -
  • Mutual Subscription Management: SubManager allows you to subscribe to new users, and if they do not reciprocate the subscription within a few days, the script will automatically unsubscribe from them. This feature is designed to help increase your audience by maintaining a list of engaged followers only.
  • Installation

      @@ -29,13 +27,15 @@
      git clone https://github.com/K1rsN7/SubManager.git
       cd SubManager
      -
    1. Customize the file main.py: -

      Open the main.py file and change the following fields to your own:

      -
      USERNAME = 'YOUR_USERNAME'
      -TOKEN = 'YOUR_ACCESS_TOKEN'
      -PROMOTION_ON = True # True if you want to enable promotion
      -DAYS_PERIOD = 5 # Period in days of waiting for reciprocity
      -COUNT_PROMOTION_USERS = 50 # Number of new subscriptions per launch    
      +    
    2. Customize the file config.json: +

      Open the config.json file and change the following fields to your own:

      +
      {
      +    "USERNAME": "Your username", 
      +    "TOKEN": "Your token",
      +    "PROMOTION": true,
      +    "DAtS_PERIOD": 3,
      +    "COUNT_PROMOTION_USERS": 500
      +}
       

      If you are unsure how to generate a personal access token, please refer to the documentation at Generate Token.md for detailed instructions.