Get Mystery Box with random crypto!

cσ∂ιηg cυℓтs

Logo of telegram channel codingcults — cσ∂ιηg cυℓтs C
Logo of telegram channel codingcults — cσ∂ιηg cυℓтs
Channel address: @codingcults
Categories: Technologies
Language: English
Subscribers: 364
Description from channel

Hello! And welcome to Coding Cults! Here we try to teach about programming and coding!
⭕️ DISCUSSION GROUP - @THEHOGWARTSSUPPORTGROUP
💠 𝐏𝐎𝐖𝐄𝐑𝐄𝐃 𝐁𝐘 💠
➥ @TheHogwartsNetwork

Ratings & Reviews

4.33

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

2

3 stars

0

2 stars

0

1 stars

0


The latest Messages 2

2021-07-28 09:36:53 Simple but awesome password generator in python tkinter
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
CLEAR YOUR BASICS WITH THIS PROJECT
I WISH YOU GONNA UPDATE IT WITH YOUR OWN IDEAS AND MAKE IT BETTER THAN EVER

HAPPY LEARNING

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
BY - @codingcults
1.3K views06:36
Open / Comment
2021-07-20 09:27:05 AWESOME TKINTER NOTEPAD CLONE
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

CLEAR YOUR BASICS WITH THIS PROJECT
I WISH YOU GONNA UPDATE IT WITH YOUR OWN IDEAS AND MAKE IT BETTER THAN EVER

HAPPY LEARNING

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
BY - @codingcults
2.5K views06:27
Open / Comment
2021-07-15 04:46:03 #info

https://www.xda-developers.com/android-12-beta-3-changes/
2.4K views01:46
Open / Comment
2021-07-14 09:23:22 SIMPLE SPELLING CHECKER CODE IN PYTHON


from textblob import TextBlob

sed = "importence"

print("WRONG SPELLINGS : " + str(sed))

hmm = TextBlob(sed)

print("CORRECTED : " + str(hmm.correct()))


You can improve it and can shape it as GUI application or can use sed = input("")

in order to make this program attractive think yourself and make this more attractive and send your works on @wizardic24_bot and you can pm @nileshbansal24 for doubts related this.

#SHARE AND SUPPORT US
2.1K viewsedited  06:23
Open / Comment
2021-07-01 09:25:02 CREATE AN AWESOME EMAIL SENDER IN PYTHON

LINK - https://telegra.ph/EMAIL-SENDER-07-01
2.3K views06:25
Open / Comment
2021-06-25 09:24:22 USD CURRENCY CONVERTER IN PYTHON TKINTER

After reading this article, you will be able to create your own currency converter in python.

Read the article, and develop your own currency converter
https://telegra.ph/USD-CURRENCY-CONVERTER-06-25
2.3K views06:24
Open / Comment
2021-06-22 09:39:11 This tutorial is about python gui


GUI means Graphical User Interface, python can be good for creating GUI applications. Tkinter is better for easy apps, Kivy is better for difficult ones.Python offers multiple options for developing GUI , GUIs are a crucial aspect of any web service, and knowing how to create one is a vital skill for furthering your career in programming.

Read the article and clear your basics regarding python GUI
https://telegra.ph/PYTHON-GUI-06-22
2.0K viewsedited  06:39
Open / Comment
2021-06-04 14:59:38 HOW TO GENERATE RANDOM PYTHON LETTERS / DIGITS

In python we have two modules we should learn for pentesting but also for coding purposes if we work with random values.

Example Situation:

Mike wants to make requests with a PHPSESSID as cookie, otherwise Recaptcha/Cloudflare blocks him. He knows that he can use requests with cookies but he needs to generates either a random value or he needs to use a permanent value.

Example Solution:

First of all we need to import important modules:

import requests
import random
import string
import ast

requests : Requests module for doing requests.
random : Random module for randomizing integers, characters and choices.
string : String module for all characters (ascii, digits, printable, punctuations..)
ast : Ast module for combining string with dictionaries.

def php_session(length):
out = ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(length))
return out

We creating here a definition with the name php_session to return the out variable. The out variable is a for loop which will loop the times of the given length to choose random characters from the ascii and digits variable of strings.

An example will help you to understand this :

>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'
>>> string.digits
'0123456789'

We add the two variables into one, but this is not necessary because random.choice will choose from these two variables it's random choice.

>>> string.digits + string.ascii_lowercase
'0123456789abcdefghijklmnopqrstuvwxyz'

>>> random.SystemRandom().choice(string.digits + string.ascii_lowercase)
'6'

Finally we add the join which will execute the for loop through the code for _ in range(length).

For example

>>> php_session(26)
'yadb5muwypb84ry7x1d390ndyb'

We need now compile the values for the cookies dictionary:

cookies_temp = f"'PHPSESSID': '{php_session(26)}'"
cookies = ast.literal_eval("{"+cookies_temp+"}")

Here we use f for format instead appending .format at the end.

Usually PHPSESSID's are 26 characters long.

Finally we add our headers and requesting it:

headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0','Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8','Accept-Language': 'en-US,en;q=0.5','DNT': '1','Connection': 'keep-alive','Upgrade-Insecure-Requests': '1','Pragma': 'no-cache','Cache-Control': 'no-cache','TE': 'Trailers'}
response = requests.get('https://www.fakeaddressgenerator.com/US_Real_Random_Address', headers=headers, cookies=cookies)

print(response.text)

That's the tutorial.

Credits : @pateldev7703
1.8K viewsputs "Nilesh", 11:59
Open / Comment
2021-04-04 14:37:04 https://github.com/coding-black/pytjpn-hotel-management


Made by @pateldev7703

Make python basics clear from this program
1.5K viewsedited  11:37
Open / Comment