Python and data science snippets on the command line

A tool to get Python and data science snippets at Data Science Simplified on the command line. You can read my article to learn how I created this tool. Installation python3 -m pip install –user python-snippet Note: The –user is important. It ensures you install it in your directory and not in the global system. python3 -m ensures that you install python_snippet using Python 3. Make sure your Python version is >= 3.6.2. python3 –version Usage Search for posts based […]

Read more

A webmining CLI tool & library for python

minet minet is a webmining command line tool & library for python (>= 3.6) that can be used to collect and extract data from a large variety of web sources such as raw webpages, Facebook, CrowdTangle, YouTube, Twitter, Media Cloud etc. It adopts a very simple approach to various webmining problems by letting you perform a variety of actions from the comfort of the command line. No database needed: raw CSV files should be sufficient to do most of the […]

Read more

A pandas DataFrame processing CLI tool

PdpCLI PdpCLI is a pandas DataFrame processing CLI tool which enables you to build a pandas pipeline powered by pdpipe from a configuration file. You can also extend pipeline stages and data readers / writers by using your own python scripts. Features Process pandas DataFrame from CLI without wrting Python scripts Support multiple configuration file formats: YAML, JSON, Jsonnet Read / write data files in the following formats: CSV, TSV, JSON, JSONL, pickled DataFrame Import / export data with multiple […]

Read more

Fish shell tool for managing Python virtual environments

VirtualFish VirtualFish is a Python virtual environment manager for the Fish shell. You can get started by reading the documentation. (It’s quite short… Promise!) You can also get help on #virtualfish on OFTC (ircs://irc.oftc.net:6697/#virtualfish), the same network as the Fish IRC channel. VirtualFish is currently maintained by Justin Mayer, and was originally created by Leigh Brenecki. A quickstart, for the impatient Fish version 3.1 or higher is required. python -m pip install virtualfish vf install Add VirtualFish to your prompt […]

Read more

A FOSS alternative to Bloomberg Terminal

Gamestonk Terminal The next best thing after Bloomberg Terminal. How it started: Gamestonk Terminal is an awesome stock and crypto market terminal that has been developed for fun, while I saw my GME shares tanking. But hey, I like the stock πŸ’ŽπŸ™Œ. How it’s going: Gamestonk Terminal provides a modern Python-based integrated environment for investment research, that allows the average joe retail trader to leverage state-of-the-art Data Science and Machine Learning technologies. As a modern Python-based environment, GamestonkTerminal opens access […]

Read more

Declarative CLIs with argparse and dataclasses

argparse_dataclass Declarative CLIs with argparse and dataclasses. Features Features marked with a βœ“ are currently implemented; features marked with a ⊘ are not yet implemented. [βœ“] Positional arguments [βœ“] Boolean flags [βœ“] Integer, string, float, and other simple types as arguments [βœ“] Default values [βœ“] Arguments with a finite set of choices [⊘] Subcommands [⊘] Mutually exclusive groups Examples Using dataclass decorator >>> from argparse_dataclass import dataclass >>> @dataclass … class Options: … x: int = 42 … y: bool […]

Read more

A simple tool to query the awesome ippsec.rocks website from terminal

ippsec-cli This a simple tool to query the awesome ippsec.rocks website from your terminal Installation and usage cd /opt git clone https://github.com/stark0de/ippsec-cli cd ippsec-cli pip3 install -r requirements.txt chmod +x ippsec-cli.py python3 -W ignore ippsec-cli.py Note: optionally you can go to /home/$USER/.bashrc and add this line so u can just launch it putting ippsec-cli in your terminal: vim /home/$USER/.bashrc alias ippsec-cli=”python3 -W ignore /opt/ippsec-cli/ippsec-cli.py” source /home/$USER/.bashrc Credits to @HexF_me, @Shell_ock and of course to the awesome Ippsec πŸ˜‰ Note: I’ve […]

Read more

A GUI app base on warp-cli for linux

warp cloudflare gui a GUI app base on warp-cli for linux Installation read warp-cli install doc. install warp-cli and register with $ warp-cli register. and then: git clone https://github.com/mrmoein/warp-cloudflare-gui cd warp-cloudflare-gui python3 install.py now search for warp cloudflare app in your desktop menu Uninstall just remove ~/.local/share/applications/warp-gui.desktop file GitHub https://github.com/mrmoein/warp-cloudflare-gui    

Read more

Search wikipedia article on command line with python

Fetch Search wikipedia article on command line Fetch is use to get information about anything on the shell using Wikipedia. Why this? Fetch helps you to quickly look about anything and it is all possible with wikipidea webscrapping you can get full wikipedia article on the topic or you can also look at the introduction about the topic. Yes you can look about anything on your terminal no need of browser it makes your life easy. You can also search […]

Read more

A Python based toolkit for creating Command-Line Interface app

Quo Quo is a Python based toolkit for writing Command-Line Interface(CLI) applications. Quo improves programmer’s productivity because it’s easy to use and supports auto completion which means less time will be spent debugging. Simple to code, easy to learn, and does not come with needless baggage Quo requires Python 3.6 or later. Installation You can install quo via the Python Package Index (PyPI) $ pip install -U quo Example 1 import quo quo.echo(‘Hello, World!’) Example 2 import quo quo.flair(f’Hello, World!’, […]

Read more
1 9 10 11 12 13 15