Skip to main content

Discord accounts nukker lib

Project description

NUKELIB

How-work

License License License

Index

Features

  • Simplicity of integration

  • Easy to use

  • Editable by everyone

  • Using HTTP/S requests to Discord

  • Discord API v8/9

  • Using Discord and Discord canary API

Installation

Prerequisites

This is a Python module, to start using this module you need to install Python.

After installing Python you will have installed "PIP". You will be able to install with the "PyPI" repositories.

PIP

After doing all the prerequisites, you have to open the terminal and then run this command:

pip install nukelib

now you will have the library available

How work (Diagram)

How-work

Docs

Quick start

You must have the token of the account you want to use, to get the token of an account follow this video: Video

After obtaining the Discord token you can use the library without any limitations.

Output
{
   "id":"976073855317717032",
   "username":"SitDownG0D.",
   "avatar":"23bc602fde399bec073aff31c6ba85b8",
   "avatar_decoration":"None"
}

You can use this output using the JSON library: Guide, Docs

account_info

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#get output (JSON)
output = nukelib.account_info(token)
#show the output
print(output)
the output will be this:
{
   "id":"976073855317717032",
   "username":"SitDownG0D.",
   "avatar":"23bc602fde399bec073aff31c6ba85b8",
   "avatar_decoration":"None",
   "discriminator":"3935",
   "public_flags":0,
   "flags":0,
   "banner":"None",
   "banner_color":"None",
   "accent_color":"None",
   "bio":"",
   "locale":"it",
   "nsfw_allowed":true,
   "mfa_enabled":false,
   "premium_type":0,
   "email":"test@rambler.ru",
   "verified":true,
   "phone":"None"
}

country_code

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#get output (Text)
output = nukelib.country_code(token)
#show the output
print(output)
the output will be this:
IT

In this case from non-JSON output

user_lookup

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#enter user_id
user_id = "33495202794xxxxxx" 
#get output (JSON)
output = nukelib.user_lookup(user_id,token)
#show the output
print(output)
the output will be this:
{
   "user":{
      "id":"967146351462871110",
      "username":"Mr",
      "avatar":"e926ac9e07784b5f3f9a15b9c6f6a6dd",
      "avatar_decoration":"None",
      "discriminator":"3748",
      "public_flags":0,
      "flags":0,
      "banner":"None",
      "banner_color":"None",
      "accent_color":"None",
      "bio":"https://r.honeygain.me/NIXXXXX\nhttps://earnapp.com/i/XXXe75z"
   },
   "connected_accounts":[

   ],
   "premium_since":"None",
   "premium_type":"None",
   "premium_guild_since":"None",
   "profile_themes_experiment_bucket":-1,
   "user_profile":{
      "bio":"https://r.honeygain.me/NICOLxFXXx\nhttps://earnapp.com/i/xxxe75z",
      "accent_color":"None"
   }
}

server_lookup

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#enter server_id
server_id = "33495202794xxxxxx" 
#get output (JSON)
output = nukelib.server_lookup(server_id,token)
#show the output
print(output)
the output will be this:
{
   "id":"739940211911426148",
   "name":"Decks Team",
   "icon":"a_5ec01b96f747903d17528971e988b67a",
   "description":"None",
   "splash":"6bc47982e4d3d302146fed104b073e96",
   "discovery_splash":"None",
   "features":[
      "INVITE_SPLASH",
      "THREE_DAY_THREAD_ARCHIVE",
      "ANIMATED_ICON",
      "COMMUNITY",
      "TEXT_IN_VOICE_ENABLED",
      "MEMBER_VERIFICATION_GATE_ENABLED",
      "NEWS",
      "PREVIEW_ENABLED",
      "WELCOME_SCREEN_ENABLED"
   ]
...

leave_all_servers

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#execute
nukelib.leave_all_servers(token)

spam_server

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#insert server name
server_name = "hi"
#execute
nukelib.spam_server(server_name,token)

friends_remover

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#execute
nukelib.friends_remover(token)

block_all

#import lib
import nukelib
#insert token
token = "MFA-XXX-XXX-XXX"
#execute
nukelib.block_all(token)

Bug and additions

  • Bug: Rate limit problems

License

The library is distributed under the GPL license you can consult the file: License.txt

Contributors

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

nukelib-0.0.2b0.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

nukelib-0.0.2b0-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file nukelib-0.0.2b0.tar.gz.

File metadata

  • Download URL: nukelib-0.0.2b0.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for nukelib-0.0.2b0.tar.gz
Algorithm Hash digest
SHA256 fd532447abdf0ace22abe5e3820ebb87b9715aba11cbc9e6413f13b787bbbe34
MD5 d0e1d721a706b09023a2276a916a421f
BLAKE2b-256 1d64abf7024e6301bb8ee0de0fd4fb4923ab1b0413bc677d6f175d01fbdf278a

See more details on using hashes here.

File details

Details for the file nukelib-0.0.2b0-py3-none-any.whl.

File metadata

  • Download URL: nukelib-0.0.2b0-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for nukelib-0.0.2b0-py3-none-any.whl
Algorithm Hash digest
SHA256 489e4a22ca2a4d5950c3e8d3baf6cecce29eea2b06ff5c66f7ce535f43f3e48c
MD5 f0b2b74d7e2d1de133fbeb0936f144da
BLAKE2b-256 c30f88e4ddade2c8064ad55ed5f8ac89a07677a9a332c5b5f6a76592fb0c1d21

See more details on using hashes here.

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