All Projects → sethblack → funny-words

sethblack / funny-words

Licence: Apache-2.0 license
A Python script that generates a list of pairs of funny words for naming things such as app releases, internal projects, servers and children.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to funny-words

rpi3-wifi-conf
A simple Python script to configure wifi over bluetooth for a Raspberry Pi 3
Stars: ✭ 112 (+330.77%)
Mutual labels:  python-script
dirbpy
This is the new version of dirb in python
Stars: ✭ 36 (+38.46%)
Mutual labels:  python-script
Github-Environment-Cleaner
An interactive script to clean up GitHub environments
Stars: ✭ 101 (+288.46%)
Mutual labels:  python-script
ayele
Sound Memes playable on the browser as an extension
Stars: ✭ 18 (-30.77%)
Mutual labels:  funny
IpHack
Track Location With Live Address And City in Termux
Stars: ✭ 315 (+1111.54%)
Mutual labels:  python-script
Hack-System
[HackSystem/Hack System] 有趣而炫酷的模拟操作系统。An interesting and cool simulation operating system.
Stars: ✭ 35 (+34.62%)
Mutual labels:  funny
Python-NEO-6M-GPS-Raspberry-Pi
Python script for the NEO-6M GPS module on the Raspberry Pi
Stars: ✭ 41 (+57.69%)
Mutual labels:  python-script
WiCrackFi
Python Script to help/automate the WiFi hacking exercises.
Stars: ✭ 61 (+134.62%)
Mutual labels:  python-script
OpenCVB
OpenCV .Net application supporting several RGBD cameras - Kinect, Intel RealSense, Luxonis Oak-D, Mynt Eye D 1000, and StereoLabs ZED 2
Stars: ✭ 60 (+130.77%)
Mutual labels:  python-script
Efficient-office
Alfred-Workflows,Vim,Script,Mac
Stars: ✭ 36 (+38.46%)
Mutual labels:  python-script
AdflyUrlGrabber
A python script designed to grab the original url from an adfly url without opening it :D
Stars: ✭ 53 (+103.85%)
Mutual labels:  python-script
Airscript-ng
A python script to simplify the process of auditing wireless networks.
Stars: ✭ 83 (+219.23%)
Mutual labels:  python-script
Smtp-cracker
[NEW] : Simple Mail Transfer Protocol (SMTP) CHECKER - CRACKER Tool V2
Stars: ✭ 67 (+157.69%)
Mutual labels:  python-script
GhostNET
GhostNET script that will help you be safer on the cyber
Stars: ✭ 45 (+73.08%)
Mutual labels:  python-script
Python-project-Scripts
This repositories contains a list of python scripts projects from beginner level advancing slowly. More code snippets to be added soon. feel free to clone this repo
Stars: ✭ 627 (+2311.54%)
Mutual labels:  python-script
Dseized-Bot
This repository contains all of the code required NOTE you may need to download other dependencies which will be mentioned below. This bot has many features such as playing songs in multiple servers and making a queue for songs.
Stars: ✭ 20 (-23.08%)
Mutual labels:  python-script
fa
Automation tool for locating symbols & structs in binary (primary IDA focused)
Stars: ✭ 58 (+123.08%)
Mutual labels:  python-script
JGetFund
Mac OS 开机自动执行脚本,爬取基金数据。
Stars: ✭ 15 (-42.31%)
Mutual labels:  python-script
the-seinfeld-chronicles
A dataset for textual analysis on arguably the best written comedy television show ever.
Stars: ✭ 14 (-46.15%)
Mutual labels:  python-script
videoslimmer
Utility to remove unwanted audio and subtitles from mkv files.
Stars: ✭ 23 (-11.54%)
Mutual labels:  python-script

funny-words

A Python script that generates a list of pairs of funny words for naming things such as app releases, internal projects, servers and children.

Installation

pip install funny-words

Command-line Usage

funny-words [-n] [-w] [-d]

-n, --number     how many lines of funny words to generate
-w, --words      how many funny words to generate per line
-d, --delimiter  what to put between the funny words

Command-line Examples

In its purest form funny-words will return a single pair of randomly selected funny words separated by a space.

$ funny-words
birthday magic

If you feel like being vertically loquacious you can increase the number of pairs returned with -n, --number

$ funny-words --number 5
laughter asphalt
odour dimple
oboe rotate
thinkable flash
fungus fizzy

If you feel like being horizontally loquacious you can increase the number of words generated per line with -w, --words

$ funny-words --words 4
chart squiggle camera spiral

If spaces are not your cup of tea you can change the delimiter between words with -d, --delimiter

$ funny-words --delimiter -
croissant-nostril

And, as always, you can mix and match to suit your specific need

$ funny-words --delimiter , --number 6 --words 3
fuse,bangles,fuzzy
amazing,magic,burst
smooch,butter,statistics
angle,magic,smash
pasta,amazing,flock
smash,haberdashery,angle

Python Usage

If you feel the need to use this in a scripted fashion within Python, you most certainly can. The funny_word library that comes with funny-word gives you everything you need to generate funny words on-the-fly.

>>> from funny_words import build_n_gram
>>> build_n_gram()
u'chesterfield'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].