Skip to content

Instantly share code, notes, and snippets.

@hackorum
Created April 6, 2021 09:47
Show Gist options
  • Save hackorum/88f3c579e81ce6f808c034b2b60eabfd to your computer and use it in GitHub Desktop.
Save hackorum/88f3c579e81ce6f808c034b2b60eabfd to your computer and use it in GitHub Desktop.
import os
def main():
project_name = input('Name of new project: ')
os.system('mkdir ~/code/python/' + project_name + ' && cd ~/code/python/' +
project_name + '&& git init && touch app.py && nvim app.py ')
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment