Skip to content

Commit 70538ce

Browse files
Add dotenv loading and time printing and create main.py
Co-authored-by: LeAndre <lcjunior1220@gmail.com>
1 parent c4eb1fa commit 70538ce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/main.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import os
2+
import time
3+
from dotenv import load_dotenv
4+
5+
load_dotenv()
6+
7+
print(os.time())
8+
print(time.now())

0 commit comments

Comments
 (0)