New Release
Pre-release
Pre-release
Random Profile Generator V0.2.3
Python Module To Generater Random Profile Data
RandomProfile is a powerful and simple tool to generate fake data. You can use it to mock classes, populate databases and and much more. You can check the full documentation here. Check on Pypi
Installation
- This is A python 3 Package.
- Install python 3.0+ or Anaconda 3.0+
pip install random-profile # using pip
conda install random-profile # using anaconda
Documentation
from random_profile import RandomProfile
rp = RandomProfile(num=5)
'''
num = Total No. of Name You Want To Print
default is 1
change the num value according to your needs.
'''
# num can be overwritten in the function
# For first name
rp.first_name(num=10)
# For full name
rp.full_name(num=8)
# override the num value
rp.full_profile(num=10)
# For last name
rp.last_name(num=6)
Changelog
v0.2.3
- Flask app added
- Date of Birth Added
- Age added
- Height and Weight Added
- Blood Group and hair color added
- Job title added
- More email domains added
- Bugs Fixed
v0.2.1
- More variation added to the data
- Test cases added
- Created a separate file for data loadings
- Fixed some bugs