A Python profiler to help you optimize your code – make it faster

pyinstrument Pyinstrument is a Python profiler. A profiler is a tool to help you optimize your code – make it faster. To get the biggest speed increase you should focus on the slowest part of your program. Pyinstrument helps you find it! Installation pip install pyinstrument Pyinstrument supports Python 3.7+. To run Pyinstrument from a git checkout, there’s a build step.Take a look at Contributing for more info. Documentation To learn how to use pyinstrument, or to check the reference, […]

Read more

Quickly download, clean up, and install public datasets into a database management system

retriever Finding data is one thing. Getting it ready for analysis is another. Acquiring, cleaning, standardizing and importing publicly available data is time consuming because many datasets lack machine readable metadata and do not conform to established data structures and formats. The Data Retriever automates the first steps in the data analysis pipeline by downloading, cleaning, and standardizing datasets, and importing them into relational databases, flat files, or programming languages. The automation of this process reduces the time for a […]

Read more

Gmail account using brute force attack in python

Gmail-Hack Gmail account using brute force attack, Programmed in Python | PySimpleGUI Python script with PySimpleGUI for hack gmail account using brute force attack Usage: Python3+ git clone https://github.com/adrijano/Gmail-Hack.git cd Bitcoin-wallet-cracker && pip install -r requirements.txt python gmail_hack.py Windows cd dist start gmail_hack.exe GitHub https://github.com/adrijano/Gmail-Hack    

Read more

Phone number info build with Python

phone-number-info Phone number info build with Python. Programmed in Python | PySimpleGUI Simple program show carrier, region and timezone of phone number. Python3+ git clone https://github.com/adrijano/phone-number-info.git cd phone-number-info && pip install -r requirements.txt python phone.py Windows cd dist phone.exe GitHub https://github.com/adrijano/phone-number-info    

Read more

Real-time cryptocurrencies prices in python

crypto-watcher Crypto-watcher is simple program showing price of cryptocurrency in USD and EUR. It’s simple to use and everyone can use it. New update added more cryptocurrencies and GBP List of cryptocurrencies 1) Btc – Bitcoin 2) Eth – Ethereum 3) Xrp – Ripple 4) Ltc – Litecoin 5) Bch – Bitcoin cash 6) Pax – Paxos standard 7) Xlm – Stellar 8) Link – Chainlink 9) Omg – OMG Network 10) Knc – Kyber Network 11) Mkr – Maker […]

Read more

Text to Binary Converter in python

Text to Binary Converter Text to Binary Converter in python Programmed in Python | PySimpleGUI How it works Simple text to binary and binary to text converter easy to use. Its convert from text ascii to binary and from binary to text ascii. ASCII text encoding uses fixed 1 byte for each character. UTF-8 text encoding uses variable number of bytes for each character. This requires delimiter between each binary number. Convert binary ASCII code to text: Get binary byte […]

Read more

Bitcoin brainwallet recovery tool with python

Bitcoin-brainwallet-recovery Bitcoin brainwallet recovery tool. Programmed in Python | PySimpleGUI From seed phrase create bitcoin privatekey and then convert it to Wallet Interchange Format key (WiF) format, which is a Base-58 form for the random key. This is the format that is stored in the Bitcoin Wallet. For example a sample private key is generated from: seed phrase: alfanumerico Privatekey: 05d95cf373f63b44267a193a1ef875c6758996e6c8ab5e049c48eb444206fce8 We then convert this into WiF format (Base-58): 5HrrzGnmMMr6fwkftrtL6AEfkkwWfgFQ8a2Lh8tAtF3MkXF9bPD This can be stored in a Bitcoin wallet. Next we […]

Read more

Pylint plugin to enforce some secure coding standards for Python

Pylint Secure Coding Standard Plugin pylint plugin that enforces some secure coding standards. Installation pip install pylint-secure-coding-standard Pylint codes Code Description R8000 Use os.path.realpath() instead of os.path.abspath() and os.path.relpath() E8001 Avoid using exec() and eval() E8002 Avoid using os.sytem() E8003 Avoid using shell=True in subprocess functions or using functions that internally set this R8004 Avoid using tempfile.mktemp(), prefer tempfile.mkstemp() instead E8005 Avoid using unsafe PyYAML loading functions E8006 Avoid using jsonpickle.decode() C8007 Avoid debug statement in production code C8008 Avoid […]

Read more

Example Python codes that works with MySQL and Excel files

Python x MySQL x Excel by Zinglecode Example Python codes that do the processes between MySQL database and Excel spreadsheet files. YouTube videos Setup database table products table structure product_notes table structure categories table structure hashtags table structure products_hashtags table structure Install Python 3 and pipenv Download Python 3 installation file from https://www.python.org/ Install pipenv as global package by this command. pip install pipenv Note: for macOS with pre-installed Python 2, use pip3 instead of pip. Install and    

Read more

Python’s collections: A Buffet of Specialized Data Types

Python’s collections module provides a rich set of specialized container data types carefully designed to approach specific programming problems in a Pythonic and efficient way. The module also provides wrapper classes that make it safer to create custom classes that behave similar to the built-in types dict, list, and str. Learning about the data types and classes in collections will allow you to grow your programming tool kit with a valuable set of reliable and efficient tools. In this tutorial, […]

Read more
1 544 545 546 547 548 927