New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

names-generator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

names-generator

Clone of the Moby/Docker random name generator as a Python package.

  • 0.2.0
  • PyPI
  • Socket score

Maintainers
1

names_generator

.. image:: https://img.shields.io/badge/license-Apache-blue.svg?style=flat :target: https://www.apache.org/licenses/LICENSE-2.0 :alt: License

.. image:: https://img.shields.io/pypi/v/names_generator.svg?style=flat&color=blue :target: https://pypi.org/project/names_generator :alt: PyPI Version

.. image:: https://img.shields.io/pypi/pyversions/names_generator.svg?logo=python&logoColor=white&style=flat :target: https://pypi.org/project/names_generator :alt: Python Versions

|

Clone of the Moby/Docker random name generator as a Python package.

Installation

.. code-block:: bash

$ pip install names_generator

|

Usage

|

Python API ^^^^^^^^^^

|

The API only really consists of a single function.

.. code-block:: python

>>> from names_generator import generate_name
>>> generate_name()
'vigorous_goldstine'

|

Customize the formatting of the name by specifying a style, one of plain, capital, hyphen, or underscore (default).

.. code-block:: python

>>> generate_name(style='capital')
'Hardcore Thompson'

|

Pin a seed value for the underlying PRNG to reproduce a given name.

.. code-block:: python

>>> generate_name(seed=42) == generate_name(seed=42)
True

|

Command-line ^^^^^^^^^^^^

|

The package also exposes a basic command-line interface for scripting outside of Python

.. code-block:: bash

$ generate_name
clever_matsumoto

$ generate_name --style=capital
Heuristic Einstein

$ generate_name --help
usage: generate_name [-h] [-v] [--style NAME]
Generate random name pairing.

options:
-s, --style    NAME    Formatting (default: underscore).
-h, --help             Show this message and exit.
-v, --version          Show the version and exit.

Documentation and issue tracking at:
https://github.com/glentner/names_generator

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc