Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epoll31/excelcli
This is a quick demo that I made to read and modify Excel documents in the CLI using Python.
https://github.com/epoll31/excelcli
cli excel pip python
Last synced: 20 days ago
JSON representation
This is a quick demo that I made to read and modify Excel documents in the CLI using Python.
- Host: GitHub
- URL: https://github.com/epoll31/excelcli
- Owner: epoll31
- License: mit
- Created: 2024-03-29T17:44:02.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-30T04:07:34.000Z (8 months ago)
- Last Synced: 2024-10-05T09:40:52.391Z (about 1 month ago)
- Topics: cli, excel, pip, python
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Excel CLI
This is a quick demo that I made to read and modify Excel documents in the CLI using Python.
## About This Demo
This demo stores usernames and passwords in Excel documents uisng the CLI.
- You can perform the following actions from the CLI
- Log in
- Sign up
- Remove your account
- Swap the fileAlthought this is a basic example, it shows that I can use Python to create CLI's that read and alter Excel files.
## Packages used
- ***[click](https://pypi.org/project/click/)***: **click** is a Python package for creating beautiful command line interfaces.
- Specifically using version 8.1.7
- ***[pick](https://pypi.org/project/pick/)***: **pick** is a small python library to help you create curses based interactive selection list in the terminal.
- ***[openpyxl](https://pypi.org/project/openpyxl/)***: **openpyxl** is a Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files.