Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
raresteak committed Mar 6, 2018
1 parent 045ab32 commit 547d1b6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gettime.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#

# create a file with epoch time in name

import time

filename=('testfile.' + str(int(time.time() * 1000)) + '.txt')

outputfile = open(filename, 'w')

0 comments on commit 547d1b6

Please sign in to comment.