Skip to content

Instantly share code, notes, and snippets.

View Everalda's full-sized avatar
🎯
Focusing

Everalda

🎯
Focusing
View GitHub Profile
@Everalda
Everalda / read_parameter_from_terminal.py
Created January 9, 2019 01:18
Read parameter in Terminal python
#!/usr/bin/python
import sys
from get_text import textGetter
def main(file):
#TODO: read file
text = textGetter().get_text(file)
if __name__ == "__main__":
@Everalda
Everalda / main.py
Created January 2, 2019 22:19
Template main python
#!/usr/bin/python
def main():
pass
if __name__ == "__main__":
main()