Last active
October 31, 2018 09:43
-
-
Save toransahu/6080cbf2cc1a8808f19bd0eccafc5ef0 to your computer and use it in GitHub Desktop.
PyCharm File & Live Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #set( $LICENSE = "AGPL" ) | |
| #! /usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # created_on: ${YEAR}-${MONTH}-${DAY} ${HOUR}:${MINUTE} | |
| """ | |
| ${NAME}.py | |
| """ | |
| ${END} | |
| __author__ = 'Toran Sahu <toran.sahu@yahoo.com>' | |
| __license__ = 'Distributed under terms of the ${LICENSE} license.' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # created_on: $DATE$ $TIME$ | |
| """ | |
| $NAME$ | |
| """ | |
| $END$ | |
| __author__ = 'Toran Sahu <toran.sahu@yahoo.com>' | |
| __license__ = 'Distributed under terms of the $LICENSE$ license.' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim:fenc=utf-8 | |
| # created_on: %YEAR%-%MONTH%-%DAY% %TIME% | |
| """ | |
| %FILE%.%EXT% | |
| """ | |
| %HERE% | |
| __author__ = '%USER% <%MAIL%>' | |
| __license__ = 'Distributed under terms of the %LICENSE% license' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment