Skip to content

Commit

Permalink
reorganize.
Browse files Browse the repository at this point in the history
  • Loading branch information
rshewitt committed Apr 19, 2023
1 parent 1985c5f commit 226c099
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions datagovharvester/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.0"
17 changes: 17 additions & 0 deletions datagovharvester/example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env python3

"""
Example module for datagov harvesting
"""

def hello(name):
return "Hello " + name + "!"

def main():
name = input("Please input your name: ")
output = hello(name)

print(output)

if __name__ == "__main__":
main()
File renamed without changes.
File renamed without changes.
File renamed without changes.

1 comment on commit 226c099

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests Skipped Failures Errors Time
12 0 💤 0 ❌ 0 🔥 17.663s ⏱️

Please sign in to comment.