Skip to content

Commit 39a3a38

Browse files
get gender specific profile
1 parent 82cdff6 commit 39a3a38

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

docs/command_line_usage.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,18 @@ Get Random Profile version:
8080
random_profile --version
8181
8282
random-profile 0.2.3
83+
84+
85+
Get Only Gender Specific Profiles:
86+
------------
87+
88+
To get gender specific profiles, use the `-ma` or `-fe` flags.
89+
90+
.. code-block:: bash
91+
92+
# n = number of random profiles, p = profile
93+
random_profile -n 10 -p -ma
94+
95+
# n = number of random profiles, p = profile
96+
random_profile -n 10 -p -fe
97+

random_profile/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
__title__ = 'RandomProfileGenerator'
22
__package_name__ = 'random_profile'
3-
__version__ = '3.0.1'
3+
__version__ = '3.0.2'
44
__description__ = "Python Module To Generate Random Profile Data"
55
__email__ = "[email protected]"
6-
__author__ = 'PyContributors'
6+
__author__ = 'Deepak Raj'
77
__github__ = 'https://github.com/Py-Contributors/RandomProfileGenerator'
88
__pypi__ = 'https://pypi.org/project/random-profile/'
99
__license__ = 'MIT License'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import setuptools
22
from glob import glob
33

4-
from random_profile.__about__ import *
4+
from random_profile.__about__ import __package_name__, __version__, __author__, __email__, __description__, __github__
55

66
with open("README.md", "r") as fh:
77
long_description = fh.read()

0 commit comments

Comments
 (0)