Skip to content

Ibr4h3m-k4m/Beginner-Python-Projects

Repository files navigation

Beginner Python Projects

A collection of small, self-contained Python scripts I wrote while learning Python (inspired from a YouTube channel probably). Each file is a simple project you can run (or not, since these are simple projects that I just wanted to upload).

Files in this folder

Quick start

  • Install Python 3.
  • To run any script:
    • python3 <script_name>.py
    • Example: python3 quiz_game.py

Password manager notes

  • The password manager uses the cryptography package. Install it with:
    • pip install cryptography
  • The manager expects a valid key in key.key and stores entries in passwords.txt.
  • Do not use real or sensitive passwords in this toy manager. Keep key.key private.

Suggestions

  • Open a script to read the code and run it to see how input/output and control flow work.
  • Try modifying or refactoring small parts (add functions, improve error handling, add tests).
  • For the password manager, consider adding argument parsing, better file handling, or a secure keystore.
  • For the To-Do List app, try adding saving to a file, editing tasks, or color output.

License & safety

  • These are learning exercises. Do not use the password manager for production secrets.
  • Remove or regenerate key.key before storing any real credentials.

About

just some beginner python projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages