Python’s urllib.request for HTTP Requests

If you need to make HTTP requests with Python, then you may find yourself directed to the brilliant requests library. Though it’s a great library, you may have noticed that it’s not a built-in part of Python. If you prefer, for whatever reason, to limit your dependencies and stick to standard-library Python, then you can reach for urllib.request! If you’ve heard of HTTP requests, including GET and POST, then you’re probably ready for this tutorial. Also, you should’ve already used […]

Read more

Python’s assert: Debug and Test Your Code Like a Pro

Python’s assert statement allows you to write sanity checks in your code. These checks are known as assertions, and you can use them to test if certain assumptions remain true while you’re developing your code. If any of your assertions turn false, then you have a bug in your code. Assertions are a convenient tool for documenting, debugging, and testing code during development. Once you’ve debugged and tested your code with the help of assertions, then you can turn them […]

Read more

Starting With Linear Regression in Python

We’re living in the era of large amounts of data, powerful computers, and artificial intelligence. This is just the beginning. Data science and machine learning are driving image recognition, autonomous vehicle development, decisions in the financial and energy sectors, advances in medicine, the rise of social networks, and more. Linear regression is an important part of this. Linear regression is one of the fundamental statistical and machine learning techniques. Whether you want to do statistics, machine learning, or scientific computing, […]

Read more

Socket Programming in Python (Guide)

Sockets and the socket API are used to send messages across a network. They provide a form of inter-process communication (IPC). The network can be a logical, local network to the computer, or one that’s physically connected to an external network, with its own connections to other networks. The obvious example is the Internet, which you connect to via your ISP. In this tutorial, you’ll create: A simple socket server and client An improved version that handles multiple connections simultaneously […]

Read more

SpaceCrypto Bot Auto Clicker

Também fiz um para Luna Rush ( https://github.com/walterdis/lunarush-bot ) Bot desenvolvido com o intuito de me permitir dormir durante a noite e, poder dar uma volta por ai sem ficar me preocupando com horário 😉 Se o aplicativo lhe ajudar de alguma forma, uma doação para ajudar a pagar a conta de luz sempre é bem vinda 😉 Wallet Smart Chain (BNB, LUS, USDT, BUSD) 0x1F66230C4e98b557D3e55d7d2C047CcbA8E55bD6 O jogo se redimensiona de acordo com a resolução / qualquer modificação na tela […]

Read more

This Script is Framework To automate IP process large scope For Bug Hunting

This Script is Framework To automate IP process large scope For Bug Hunting Tools : metabigor, mapcidr, nrich ,httpx what Framework Do : Get CIDR From CIDR Get IPs Scanning Open Ports in each IP and Find a related vulnerabilities Check a Live Host installation git clone https://github.com/muhammeddardir/IPscan.git cd IPscan chmod +x IPScan.py req.sh ./req.sh Usage python3 IPScan.py -t domain GitHub View Github    

Read more
1 233 234 235 236 237 943