A lightweight, customizable(still working) sticky notes application built with Python and Tkinter.
stickybisht/
├── LICENSE
├── README.md
├── pyproject.toml
├── src/
│ └── stickybisht/
│ ├── __init__.py
│ ├── __main__.py
│ └── stickybisht_notes.py
└── requirements.txt
pip install stickybisht
After installation, you can run the application in two ways:
- From command line:
stickybisht
- From Python:
from stickybisht import StickyNote
note = StickyNote()
note.run()
- Python 3.8+
- tkinter (usually comes with Python)
- Clone the repository:
git clone https://github.com/kitparl/stickybisht
cd stickybisht
- Create and activate virtual environment:
python -m venv venv
source venv/bin/activate # Linux/macOS
venv\Scripts\activate # Windows
- Install in development mode:
pip install -e .
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
- Fork the repository
- Create your feature branch (
git checkout -b feature/your_username/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/your_username/AmazingFeature
) - Open a Pull Request
MIT License