All Projects β†’ sfischer13 β†’ python-lorem

sfischer13 / python-lorem

Licence: MIT License
🐍 Python library for the generation of random text that looks like Latin

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to python-lorem

lorem.space
✨✨✨πŸͺβœ¨βœ¨βœ¨  LOREM.SPACE ✨✨✨πŸͺβœ¨βœ¨βœ¨
Stars: ✭ 310 (+1531.58%)
Mutual labels:  placeholder, lorem
i3blocks-modules
Custom modules for i3blocks status bar
Stars: ✭ 36 (+89.47%)
Mutual labels:  placeholder
holder rails
Client side image placeholders for Rails applications
Stars: ✭ 47 (+147.37%)
Mutual labels:  placeholder
NetworkImage
Asynchronous image loading in SwiftUI
Stars: ✭ 39 (+105.26%)
Mutual labels:  placeholder
DummyJSON
DummyJSON provides different types of REST Endpoints filled with JSON data which you can use in developing the frontend with your favorite framework and library without worrying about writing a backend.
Stars: ✭ 213 (+1021.05%)
Mutual labels:  placeholder
DevLorem
No more 'Lorem ipsum', get some real quotes or speeches for your free text with this generator!
Stars: ✭ 59 (+210.53%)
Mutual labels:  placeholder
Vue Form Json Schema
Create forms using JSON schema. Bring your components!
Stars: ✭ 253 (+1231.58%)
Mutual labels:  generator
reactcci
React create component interactive CLI
Stars: ✭ 49 (+157.89%)
Mutual labels:  generator
TextInputLayout
The objective of this code is to guide you to create login screen with TextInputLayout in iOS app.
Stars: ✭ 30 (+57.89%)
Mutual labels:  placeholder
SkeletonPlaceholderView
A library for creating dynamic skeleton view
Stars: ✭ 25 (+31.58%)
Mutual labels:  placeholder
DPB
Dynamic Project Builder
Stars: ✭ 22 (+15.79%)
Mutual labels:  placeholder
promise
Common interface for simple asynchronous placeholders.
Stars: ✭ 66 (+247.37%)
Mutual labels:  placeholder
docheader
A small tool to check license headers
Stars: ✭ 65 (+242.11%)
Mutual labels:  placeholder
react-loading-placeholder
Loading placeholer, inspired by Facebook
Stars: ✭ 17 (-10.53%)
Mutual labels:  placeholder
webpack-image-placeholder-loader
Generate a solid color image as placeholder
Stars: ✭ 24 (+26.32%)
Mutual labels:  placeholder
S2s
Coding time Compile. A tool to write code fastest.
Stars: ✭ 254 (+1236.84%)
Mutual labels:  generator
STTextView
πŸ“ STTextView is a light-weight library that adds a placeholder to the UITextView.
Stars: ✭ 36 (+89.47%)
Mutual labels:  placeholder
BFSG
BFSG - BruteForce String Generator 😾
Stars: ✭ 16 (-15.79%)
Mutual labels:  generator
styled-svg
A styled-components generator for SVG files to use in react
Stars: ✭ 37 (+94.74%)
Mutual labels:  generator
placeholders
SVG-based placeholders in web components
Stars: ✭ 28 (+47.37%)
Mutual labels:  placeholder

Python Lorem Package

Summary

Generator for random text that looks like Latin.

Simple Example

import lorem

s = lorem.sentence()  # 'Eius dolorem dolorem labore neque.'
p = lorem.paragraph()
t = lorem.text()

Complex Example

from lorem.text import TextLorem

# separate words by '-'
# sentence length should be between 2 and 3
# choose words from A, B, C and D
lorem = TextLorem(wsep='-', srange=(2,3), words="A B C D".split())

s1 = lorem.sentence()  # 'C-B.'
s2 = lorem.sentence()  # 'C-A-C.'
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].