From 9f60cc25ed04c841d25167c9bfffff12ac4ca05d Mon Sep 17 00:00:00 2001 From: Keshavraj_52 Date: Tue, 22 Jul 2025 19:00:04 +0530 Subject: [PATCH 1/2] Added random password generator python script --- passwords.txt | 1 + random_password_gen.py | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 passwords.txt create mode 100644 random_password_gen.py diff --git a/passwords.txt b/passwords.txt new file mode 100644 index 00000000000..707a1fbb937 --- /dev/null +++ b/passwords.txt @@ -0,0 +1 @@ +_5Y(|-nQ diff --git a/random_password_gen.py b/random_password_gen.py new file mode 100644 index 00000000000..b3fbb3bbbba --- /dev/null +++ b/random_password_gen.py @@ -0,0 +1,38 @@ +""" +random_password_gen.py +A script to generate strong random passwords. + +Usage: +$ python random_password_gen.py + +Author: Keshavraj Pore +""" + +import random +import string + +def generate_password(length=12): + characters = string.ascii_letters + string.digits + string.punctuation + password = ''.join(random.choice(characters) for _ in range(length)) + return password + +def main(): + print("Random Password Generator") + try: + length = int(input("Enter desired password length: ")) + if length < 6: + print(" Password length should be at least 6.") + return + password = generate_password(length) + print(f"\nGenerated Password: {password}") + + # Save to file + with open("passwords.txt", "a") as file: + file.write(password + "\n") + print(" Password saved to passwords.txt") + + except ValueError: + print(" Please enter a valid number.") + +if __name__ == "__main__": + main() From 080aeb57f69a112d6f88060dd7f3aea8a450b3bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 18:15:21 +0000 Subject: [PATCH 2/2] Bump openai from 1.97.0 to 1.97.1 Bumps [openai](https://github.com/openai/openai-python) from 1.97.0 to 1.97.1. - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v1.97.0...v1.97.1) --- updated-dependencies: - dependency-name: openai dependency-version: 1.97.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements_with_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_with_versions.txt b/requirements_with_versions.txt index da4818ada00..40c6a5adc28 100644 --- a/requirements_with_versions.txt +++ b/requirements_with_versions.txt @@ -49,7 +49,7 @@ auto-mix-prep==0.2.0 lib==4.0.0 pywifi==1.1.12 patterns==0.3 -openai==1.97.0 +openai==1.97.1 background==0.2.1 pydantic==2.11.7 openpyxl==3.1.2