From bb4bec48cf4f3af53a385a024aa900ad3dd6a974 Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Mon, 16 Aug 2021 15:50:33 +0530 Subject: [PATCH 1/9] Update helloworld.py --- helloworld.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/helloworld.py b/helloworld.py index 59701db..72ee2bc 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,9 +1 @@ -#!/usr/bin/env python - -"""Top-level script to invoke helloworld implementation.""" - -import sys -import helloworld.main - -if __name__ == '__main__': - sys.exit(helloworld.main.main()) +print('Hello, world') From eef4006f8828bd3f71636de54b82c0f42e20666b Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Mon, 16 Aug 2021 19:01:04 +0530 Subject: [PATCH 2/9] Delete setup.py --- setup.py | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 779fa6d..0000000 --- a/setup.py +++ /dev/null @@ -1,32 +0,0 @@ -import io -import os.path -from setuptools import setup - -VERSION_PATH = os.path.join( - os.path.dirname(__file__), 'helloworld/VERSION.txt') -with io.open(VERSION_PATH, 'r', encoding='utf-8') as f: - version = f.read().strip() - -setup( - name = "helloworld", # what you want to call the archive/egg - version = version, - packages=["helloworld"], # top-level python modules you can import like - # 'import foo' - dependency_links = [], # custom links to a specific project - install_requires=[], - extras_require={}, # optional features that other packages can require - # like 'helloworld[foo]' - package_data = {"helloworld": ["VERSION.txt"]}, - author="David Barnett", - author_email = "davidbarnett2@gmail.com", - description = "The familiar example program in Python", - license = "Apache 2.0", - keywords= "example documentation tutorial", - url = "http://github.com/dbarnett/python-helloworld", - entry_points = { - "console_scripts": [ # command-line executables to expose - "helloworld_in_python = helloworld.main:main", - ], - "gui_scripts": [] # GUI executables (creates pyw on Windows) - } -) From 0cd6bc5a900310a109e878602f47f09ebee100ab Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Thu, 13 Jan 2022 20:48:08 +0530 Subject: [PATCH 3/9] updated 1 line --- helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helloworld.py b/helloworld.py index 72ee2bc..7b7f4dd 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1 +1,2 @@ print('Hello, world') +print('Hai harpic') From 84da5bde2f8f6d47034ed7bc83e51addffac372a Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Tue, 1 Feb 2022 10:33:42 +0530 Subject: [PATCH 4/9] Update helloworld.py --- helloworld.py | 1 - 1 file changed, 1 deletion(-) diff --git a/helloworld.py b/helloworld.py index 7b7f4dd..72ee2bc 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,2 +1 @@ print('Hello, world') -print('Hai harpic') From 50b4dff3d40ee3acfad1fd01b33c564252f21036 Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Tue, 1 Feb 2022 10:47:59 +0530 Subject: [PATCH 5/9] Update helloworld.py --- helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helloworld.py b/helloworld.py index 72ee2bc..5518ed2 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1 +1,2 @@ print('Hello, world') +print('hello') From 3610003c352b943883150e755570c9d8ec16e87f Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Tue, 1 Feb 2022 10:49:04 +0530 Subject: [PATCH 6/9] Update helloworld.py --- helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld.py b/helloworld.py index 5518ed2..a259e7b 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,2 +1,2 @@ print('Hello, world') -print('hello') +print('hello.1') From d2eb828f9a73af4639c52cd06683537ea8d01ee7 Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Wed, 2 Feb 2022 11:13:43 +0530 Subject: [PATCH 7/9] gm --- helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helloworld.py b/helloworld.py index a259e7b..172629b 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,2 +1,3 @@ print('Hello, world') print('hello.1') +print('Good morning') From 098043f454bfcbaaedb1cb9080a11f6fe93d50cc Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Wed, 25 May 2022 11:30:01 +0530 Subject: [PATCH 8/9] Update helloworld.py --- helloworld.py | 1 - 1 file changed, 1 deletion(-) diff --git a/helloworld.py b/helloworld.py index 172629b..a259e7b 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,3 +1,2 @@ print('Hello, world') print('hello.1') -print('Good morning') From bd6110a87a0c296d0c22008987f7583e77f77e16 Mon Sep 17 00:00:00 2001 From: Avgod <83572655+Avgod@users.noreply.github.com> Date: Wed, 25 May 2022 11:31:45 +0530 Subject: [PATCH 9/9] Update helloworld.py --- helloworld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helloworld.py b/helloworld.py index a259e7b..9c80352 100755 --- a/helloworld.py +++ b/helloworld.py @@ -1,2 +1,3 @@ print('Hello, world') print('hello.1') +print('123')