A discord bot consuming Notion API to add and retrieve data from Notion databases

Notion-DiscordBot A discord bot consuming Notion API to add and retrieve data from Notion databases. Instructions to use the bot: Pre-Requisites: a)Install all the requirements using pip3 install -r requirements.txt b)Create a discord bot using the developer platform of discord and obtain your OAuth2 token. Keep it somewhere safe c)Go to Notion and create a new Integration https://www.notion.so/my-integrationsNote the internal Integration. d)Go to Notion and create a table like this: 4 columns where: Contributor is of property type Title URL […]

Read more

Unofficial Discord Rich Presence for HackTheBox platform

HTBRichPresence Unofficial Discord Rich Presence for HackTheBox platform The project is under lazy development. How to run Install requirements: // I’m gonna add this pip3 install -r requirements.txt Enter your api_key in main.py script (1 on screenshot) and your id (2 on screenshot) And run the main script: python3 path/to/main.py [active_machine], [–help] Info about Attention: active_machine is name of box you re doing and its for showing one and it’s case sensitive! U’re using this arg makes RP look like […]

Read more

Check and write all account info + Check nitro on account

Check and write all account info + Check nitro on account Also check https://github.com/GuFFy12/Discord-Token-Parser (Parse discord tokens from any file, even if there is other shit in the file with them.) I have a great desire to remake this shit code, but I’m too lazy😔 JS EDITION: https://github.com/amfero/DiscordTokenChecker (I will contribute here (Py is 🤢)) TS EDITION: https://github.com/cattyngmd/DiscordTokenChecker-ts PY EDITION: https://github.com/GuFFy12/Discord-Token-Checker Output data: Token.rat Nitro: {Nitro or Classic or No} Billing: {Valid or Invalid or No} Username: lol#1337 Language: ru […]

Read more

Parse discord tokens from any file even if there is other shit in the file with them

Discord-Token-Parser Parse discord tokens from any file, even if there is other shit in the file with them. Any. File. I glued together all html from the archives of tokenlogged users in discord, and the parser took the tokens from THEIR webhook tokenlogger![open_mouth](https://github.githubassets.com/images/icons/emoji/unicode/1f62e.png =20×20) Before/after: Menu: GitHub https://github.com/GuFFy12/Discord-Token-Parser    

Read more

An unofficial library for discord components with python

discord-components Discord components are cool, but discord.py will support it on version 2.0. It is hard to wait, so we made a third-party library for using components such as buttons or selects! We’re currently developing this library, so it has a lot of bugs. But it has enough features to make the components easy to use 🙂 Features You can use discord components and handle interactions easily! Methods based on discord.py. Supports discord.ext.commands, and going to support discord-py-slash-command. Install pip […]

Read more

Discord Rich Presence for Team Fortress 2

TF2 Rich Presence Discord Rich Presence for Team Fortress 2 Detects current game state, queue info, playtime, and more Configurable, reliable, and performance-efficient Version 2 (GUI, map images, maybe more) coming soonâ„¢ (The actual program is nowhere near as nice looking as this, v2 will be though) Download With 7-Zip’s built-in extractor: tf2_rich_presence_v1.15_self_extracting.exe (8.8 MB)Extract it yourself: tf2_rich_presence_v1.15.zip (11.9 MB)Alternatively, get the latest autobuild (may be buggy): tf2_rich_presence_dev.zip Installation and running Extract tf2_rich_presence_v1.15.zip OR run tf2_rich_presence_v1.15_self_extracting.exe, whichever you downloaded. Run […]

Read more

An asynchronous Python script made for the Python Discord Pixels event

Python Discord Pixels An asynchronous Python script made for the Python Discord Pixels event. Usage Create an image.png RGBA image with your pattern. Transparent pixels will be ignored. Get your token here. pip install -r requirements.txt -U python pixels.py token1 token2 … You can also set the PIXELS_TOKENS environment variable to token1:token2:… and run the script without any arguments. It’s not recommended to use more than 2 tokens, because you will get rate limited by Cloudflare. Heroku You can run […]

Read more

A wrapper for the Discord Python Pixels API

A simple wrapper around Python Discord Pixels. Requires Python 3.7+ (3.x where x >= 7). Requires pillow and aiohttp from pip. Example import dpypx # Create a client with your token. client = dpypx.Client(‘my-auth-token’) # You can also set a save file to store ratelimit data between reboots. client = dpypx.Client(‘my-auth-token’, ratelimit_save_file=’ratelimits.json’) # Download and save the canvas. canvas = await client.get_canvas() canvas.save(‘canvas.png’) # And access pixels from it. print(canvas[4, 10]) # Or just fetch specific pixels. print(await client.get_pixel(4, 10)) […]

Read more
1 8 9 10