Skip to main content

A package to create bots on Antiland.com

Project description

Antiland.py

Make Antiland Chaotic Again

Antiland.py is a python package to turn any antiland user into a fully functioning bot account similar to discord.py

GitHub PyPI - Version

Features

  • Log in to an account
  • send messages/images/videos
  • change profile settings
  • Automate tedious tasks e.g banning/blocking
  • It's python so go nuts

Installation

Dillinger requires Python3 to run.

to install run pip3 install Antiland.py

Installation

Antiland.py requires Python3 to run.

to install run pip3 install Antiland.py

Usage/Examples

before you start you need to get the session token, dialogue id and chat url

to get the token and chat ID you use developer consoles network tab to look at any outgoing connection such as a sending a message, the session token is stored in the json payload e.g

App Screenshot

to get the chat url you again use the network tab and this time you are looking for a heartbeat ping. once you find one you want to copy the request url as shown below

App Screenshot

below is a very basic example for logging in and registering a hello command which when ran will send hello world into the chat

import antiland

session_token="insert_session_token"
dialogue="insert_dialogue_id"
url="insert_chat_url"
prefix="!"

bot = anti.Bot(url,prefix,dialogue,session_token)

@bot.command("hello")
def say_hello():
    bot.send_message("hello world",session_token,dialogue)



if __name__ == "__main__":
    bot.start(session_token)
    

Project details


Release history Release notifications | RSS feed

This version

0.0.4

Download files

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

Source Distribution

antiland-0.0.4.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

antiland-0.0.4-py3-none-any.whl (16.8 kB view hashes)

Uploaded Python 3

Supported by

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