A simple Python 3.9+ command-line application for managing Fidelity portfolios

fi is a simple Python 3.9+ command-line application for managing Fidelity portfolios. Master, when you need to manage your portfolio, I calculate a 75% probability thatfi will be helpful. Warning fi asks for manual confirmation: Place order [Y/n] Pressing enter uses the default value Y meaning yes. Use Install a browser driver. Clone fi: git clone https://github.com/qnevx/fi.git Install requirements: pip install -r requirements.txt Update config.ini with your own information. Run fi.py. Recover from an error If an error occurs   […]

Read more

Command-line clone of Josh Wardle’s WORDLE

Command-line clone of Josh Wardle’s WORDLE, inspired by Paul Battley’s Ruby version. Features: play against random solutions, or against the once-a-day “official” Wordle solution (with –today) official dictionaries of solutions and valid guesses spoiler-free emoji summaries for sharing Download and run (./play.py) Requires Python 3.6 or later, and a terminal which supports colours and ANSI CSI codes, e.g. Windows Terminal. To get the code: git clone https://github.com/klipspringr/wordle-cli.git && cd wordle-cli alternatively, if you don’t have git: click Code > Download […]

Read more

Centauro – a command line tool with some network management functionality

Ferramenta de rede O Centauro é uma ferramenta de linha de comando com algumas funcionalidades de gerenciamento de rede, tais como: Apesar de ser desenvolvido especialmente para o Windows, que tem problemas em encontrar ferramentas do tipo para download, tenho tentado deixar compatível com o Linux. Por favor comunique qualquer bug encontrado ou mande um pull request com a correção. Toda ajuda é bem-vinda! Scanner de portas TCP; Descoberta de hosts;No prompt de comando, use passe o argumento –help para […]

Read more

A cli based snake game written in Python

Things that I learned in this project: OOP in Python. Clean code. The curses library. How to run the game You need to clone this project and run the run.py file, in src/ folder, with the python interpreter. git clone https://github.com/kevinmarquesp/snake_game cd snake_game/src ./run.py # OR: python3 run.py About the game You can move the snake with arrow keys, vim keys (H, J, K, L) and WASD. Space, Return and O keys do the same thing, they are the confirm […]

Read more

A CLI for advanced management of your notes with simple commands

This is a CLI for advanced management of your notes with simple commands. To use this app, simpy clone this repo and place your notes into storage folder. You can set up the relative path and name of the folder with notes in scripts/config.py. To manage your notes, just run python manager.py. There are scripts which help to work with text in the files in the scripts/body_tools.py. You can add your own functions in the scripts/custom_tools.py. Don’t forget to register […]

Read more

A CLI Password Manager made using Python and Postgresql database

A CLI Password Manager made using Python and Postgresql database. Quick Start Guide First Clone The Project git clone https://github.com/Imira-S-R/PasswordManagerCLI Change The Direcory cd PasswordManagerCLI Run setup.py for first time users python setup.py After that run main.py python main.py About This is a simple & free password manager made using python that you can use to store    

Read more

A Fast Command Analyser based on Dict and Pydantic

Alconna 隶属于ArcletProject, 在Cesloi内有内置 Alconna 是 Cesloi-CommandAnalysis 的高级版,支持解析消息链 一般情况下请当作简易的消息链解析器/命令解析器 文档 暂时的文档 Example from arclet.alconna import Alconna from arclet.alconna.component import Option, Subcommand from arclet.alconna.types import AnyStr cmd = Alconna( command=”/pip”, options=[ Subcommand(“install”, Option(“–upgrade”), pak_name=AnyStr) Option(“list”), ] ) msg =    

Read more
1 2 3 4 5 15