Coder Social home page Coder Social logo

taeyo / haikunatorpy Goto Github PK

View Code? Open in Web Editor NEW

This project forked from atrox/haikunatorpy

0.0 2.0 0.0 26 KB

Heroku-like random name generator for python.

Home Page: https://pypi.python.org/pypi/haikunator

License: BSD 3-Clause "New" or "Revised" License

Python 100.00%

haikunatorpy's Introduction

HaikunatorPY

Build Status Latest Version

Generate Heroku-like random names to use in your python applications.

Installation

pip install haikunator

Usage

Haikunator is pretty simple. There is nothing to configure and it only has a single method, haikunate:

from haikunator import haikunate

# default usage
haikunate() # => "wispy-dust-1337"

# custom length (default=4)
haikunate(tokenlength=6) # => "patient-king-887265"

# use hex instead of numbers
haikunate(tokenhex=True) # => "purple-breeze-98e1"

# use custom chars instead of numbers/hex
haikunate(tokenchars='HAIKUNATE') # => "summer-atom-IHEA"

# don't include a token
haikunate(tokenlength=0) # => "cold-wildflower"

# use a different delimiter
haikunate(delimiter='.') # => "restless.sea.7976"

# no token, space delimiter
haikunate(tokenlength=0, delimiter=' ') # => "delicate haze"

# no token, empty delimiter
haikunate(tokenlength=0, delimiter='') # => "billowingleaf"

Options

The following options are available:

haikunate(
  delimiter='-',
  tokenlength=4,
  tokenhex=False,
  tokenchars='0123456789',
  seed=None
)

If tokenhex is true, it overrides any tokens specified in tokenchars

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

Other Languages

Haikunator is also available in other languages. Check them out:

haikunatorpy's People

Contributors

atrox avatar atroxdev avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.