Skip to content

Commit

Permalink
get gender specific profile
Browse files Browse the repository at this point in the history
  • Loading branch information
codeperfectplus committed Nov 8, 2023
1 parent 82cdff6 commit 39a3a38
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions docs/command_line_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,18 @@ Get Random Profile version:
random_profile --version
random-profile 0.2.3
Get Only Gender Specific Profiles:
------------

To get gender specific profiles, use the `-ma` or `-fe` flags.

.. code-block:: bash
# n = number of random profiles, p = profile
random_profile -n 10 -p -ma
# n = number of random profiles, p = profile
random_profile -n 10 -p -fe
4 changes: 2 additions & 2 deletions random_profile/__about__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
__title__ = 'RandomProfileGenerator'
__package_name__ = 'random_profile'
__version__ = '3.0.1'
__version__ = '3.0.2'
__description__ = "Python Module To Generate Random Profile Data"
__email__ = "[email protected]"
__author__ = 'PyContributors'
__author__ = 'Deepak Raj'
__github__ = 'https://github.com/Py-Contributors/RandomProfileGenerator'
__pypi__ = 'https://pypi.org/project/random-profile/'
__license__ = 'MIT License'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import setuptools
from glob import glob

from random_profile.__about__ import *
from random_profile.__about__ import __package_name__, __version__, __author__, __email__, __description__, __github__

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

0 comments on commit 39a3a38

Please sign in to comment.