Skip to content

Tag: python

  • Published on

    Faker is a package in Python for generating fake data. Fake data package is so useful for generating data for testing and mockup. Package installation Initiation You can create a python file and name it with anything you want like main.py, but don’t name it with faker.py or it will raise an exception error. Here … Continued

  • Published on

    Prerequisites You can use any python interpreter you want, such as native python script in your local machine, anaconda/jupyter notebook, or even google colab. We are going to use the built-in library datetime in python, here is the initial library import for the cases: and any date and time formatting refers to the official docs. … Continued