Skip to content

Instantly share code, notes, and snippets.

from abc import ABC, abstractmethod
from datetime import datetime
#creating the ID function
id_counter = 1000000000
def create_id():
global id_counter
id_counter += 1
return id_counter