Skip to main content

An API wrapper for Sferum.

Project description

Sferum API Interface

The Sferum API Interface provides methods to interact with the VK messaging service through API endpoints. This project includes functions for sending messages, retrieving user history, and executing JS-like code code on the server.

Getting Started

Prerequisites

  • Python 3.x

Instaling

To install this lib run this in terminal:

pip install SferumBridge

Obtaining the remixdsid Cookie

To interact with VK's API, you'll need to authenticate your session and obtain the remixdsid cookie. Follow these steps:

  1. Open your web browser and go to sferum web version.

  2. Log in to your VK account if you haven't already.

  3. After logging in, open the Developer Tools in your web browser (right-click anywhere on the page and select "Inspect" or press F12).

  4. Navigate to the "Application" tab in Developer Tools.

  5. On the left sidebar, find and click on "Cookies" under the "Storage" section. You should see a list of cookies that belong to the https://web.vk.me domain.

  6. Look for the remixdsid cookie. This cookie is usually a long alphanumeric string.

  7. Copy the value of the remixdsid cookie. You will use this value to authenticate your requests in the SferumAPI class.

Using the Sferum API Interface

Initializing the SferumAPI class

To create an instance of the SferumAPI, you need to pass the remixdsid obtained from the previous step:

import SferumBridge

remixdsid = 'YOUR_REMIXDSID_COOKIE_HERE'
api = SferumAPI(remixdsid)

Available Methods

peer_id is a chat id. You can get it from the URL: web.vk.me/convo/YOUR_CHAT_ID

  1. Sending a Message:

    To send a message, use:

    response = api.send_message(peer_id=12345678, text="Hello, World!")
    
  2. Deleting a Message:

    To delete a message, use:

    response = api.delete_message(peer_id=12345678, message_conversation_id=321)
    
  3. Retrieving Message History:

    To retrieve message history, use:

    response = api.get_history(peer_id=12345678, count=20)
    
  4. Executing Code:

    To execute a small piece of JS-like code on the server, use:

    response = api.execute(code="""
         var res0=API.messages.delete({"peer_id":2000000002,"cmids":"152","delete_for_all":1,"spam":0,"group_id":0,"lang":"ru"});
         return [res0];
    """)
    

    You can use fork() to run task in background and wait() to wait it I found out you can make only 999 cycles in while loop and 25 API requests

    Here`s more complicated example:

    response = api.execute(code="""
        return [  
            wait(fork(  
                API.users.get({    
                    user_ids: 1058611848,    
                    fields: 'photo_100,photo_200,sex,screen_name,first_name_gen,is_nft,animated_avatar,custom_names_for_calls',  
                })
            )),  
            API.calls.getSettings({}),
        ];  
    """)
    

А теперь на русском

Интерфейс API Sferum предоставляет методы для взаимодействия с сервисом обмена сообщениями VK через API-эндпоинты. Этот проект включает функции для отправки сообщений, получения истории пользователей и выполнения кода, подобного JS, на сервере.

Начало работы

Необходимые условия

  • Python 3.x

Установка

Чтобы установить эту библиотеку, выполните следующую команду в терминале:

pip install SferumBridge

Получение cookie remixdsid

Чтобы взаимодействовать с API VK, вам необходимо аутентифицировать сессию и получить cookie remixdsid. Следуйте этим шагам:

  1. Откройте веб-браузер и перейдите на веб-версию sferum.

  2. Войдите в свою учетную запись VK, если еще не сделали этого.

  3. После входа откройте Инструменты разработчика в веб-браузере (щелкните правой кнопкой мыши на любой области страницы и выберите "Просмотреть код" или нажмите F12).

  4. Перейдите на вкладку "Приложение" в Инструментах разработчика.

  5. В левой боковой панели найдите и кликните на "Cookies" в разделе "Хранилище". Вы должны увидеть список cookie, принадлежащих домену https://web.vk.me.

  6. Найдите куку remixdsid. Эта кука обычно представляет собой длинную строку из буквенно-цифровых символов.

  7. Скопируйте значение куки remixdsid. Это значение вам понадобится для аутентификации ваших запросов в классе SferumAPI.

Использование интерфейса API Sferum

Инициализация класса SferumAPI

Чтобы создать экземпляр SferumAPI, вы должны передать remixdsid, полученный на предыдущем шаге:

import SferumBridge

remixdsid = 'ВАША_COOKIE_REMIXDSID_ЗДЕСЬ'
api = SferumAPI(remixdsid)

Доступные методы

peer_id - это ID чата. Вы можете получить его из URL: web.vk.me/convo/YOUR_CHAT_ID

  1. Отправка сообщения:

    Чтобы отправить сообщение, используйте:

    response = api.send_message(peer_id=12345678, text="Привет, мир!")
    
  2. Удаление сообщения:

    Чтобы удалить сообщение, используйте:

    response = api.delete_message(peer_id=12345678, message_conversation_id=321)
    
  3. Получение истории сообщений:

    Чтобы получить историю сообщений, используйте:

    response = api.get_history(peer_id=12345678, count=20)
    
  4. Выполнение кода:

    Чтобы выполнить небольшой фрагмент кода, подобного JS, на сервере, используйте:

    response = api.execute(code="""
         var res0=API.messages.delete({"peer_id":2000000002,"cmids":"152","delete_for_all":1,"spam":0,"group_id":0,"lang":"ru"});
         return [res0];
    """)
    

    Вы можете использовать fork() для выполнения задач в фоновом режиме и wait(), чтобы их подождать. Я узнал, что вы можете выполнить только 999 циклов в цикле while и 25 API-запросов.

    Вот более сложный пример:

    response = api.execute(code="""
        return [  
            wait(fork(  
                API.users.get({    
                    user_ids: 1058611848,    
                    fields: 'photo_100,photo_200,sex,screen_name,first_name_gen,is_nft,animated_avatar,custom_names_for_calls',  
                })
            )),  
            API.calls.getSettings({}),
        ];  
    """)
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sferumbridge-1.3.2.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file sferumbridge-1.3.2.tar.gz.

File metadata

  • Download URL: sferumbridge-1.3.2.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sferumbridge-1.3.2.tar.gz
Algorithm Hash digest
SHA256 3af41e8ee96d68bf2870c53ea57be10704dfea286c62428f83102381a64c2e14
MD5 383d97eb1707ca7ee609ef7b4658a24b
BLAKE2b-256 4818d8359a64f6076dd73aa8eedc326458224f2e44c65628e37fb8b185531829

See more details on using hashes here.

Provenance

The following attestation bundles were made for sferumbridge-1.3.2.tar.gz:

Publisher: python-publish.yml on Sharkow1743/SferumAPI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page