Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from .. import Provider as LoremProvider 

2 

3 

4class Provider(LoremProvider): 

5 """en_US word list is drawn from Education First's "1000 Most Common Words in English": 

6 http://www.ef.edu/english-resources/english-vocabulary/top-1000-words/ 

7 Some words have been removed to make this list appropriate for public testing""" 

8 

9 word_list = ( 

10 'a', 

11 'ability', 

12 'able', 

13 'about', 

14 'above', 

15 'accept', 

16 'according', 

17 'account', 

18 'across', 

19 'act', 

20 'action', 

21 'activity', 

22 'actually', 

23 'add', 

24 'address', 

25 'administration', 

26 'admit', 

27 'adult', 

28 'affect', 

29 'after', 

30 'again', 

31 'against', 

32 'age', 

33 'agency', 

34 'agent', 

35 'ago', 

36 'agree', 

37 'agreement', 

38 'ahead', 

39 'air', 

40 'all', 

41 'allow', 

42 'almost', 

43 'alone', 

44 'along', 

45 'already', 

46 'also', 

47 'although', 

48 'always', 

49 'American', 

50 'among', 

51 'amount', 

52 'analysis', 

53 'and', 

54 'animal', 

55 'another', 

56 'answer', 

57 'any', 

58 'anyone', 

59 'anything', 

60 'appear', 

61 'apply', 

62 'approach', 

63 'area', 

64 'argue', 

65 'arm', 

66 'around', 

67 'arrive', 

68 'art', 

69 'article', 

70 'artist', 

71 'as', 

72 'ask', 

73 'assume', 

74 'at', 

75 'attack', 

76 'attention', 

77 'attorney', 

78 'audience', 

79 'author', 

80 'authority', 

81 'available', 

82 'avoid', 

83 'away', 

84 'baby', 

85 'back', 

86 'bad', 

87 'bag', 

88 'ball', 

89 'bank', 

90 'bar', 

91 'base', 

92 'be', 

93 'beat', 

94 'beautiful', 

95 'because', 

96 'become', 

97 'bed', 

98 'before', 

99 'begin', 

100 'behavior', 

101 'behind', 

102 'believe', 

103 'benefit', 

104 'best', 

105 'better', 

106 'between', 

107 'beyond', 

108 'big', 

109 'bill', 

110 'billion', 

111 'bit', 

112 'black', 

113 'blood', 

114 'blue', 

115 'board', 

116 'body', 

117 'book', 

118 'born', 

119 'both', 

120 'box', 

121 'boy', 

122 'break', 

123 'bring', 

124 'brother', 

125 'budget', 

126 'build', 

127 'building', 

128 'business', 

129 'but', 

130 'buy', 

131 'by', 

132 'call', 

133 'camera', 

134 'campaign', 

135 'can', 

136 'candidate', 

137 'capital', 

138 'car', 

139 'card', 

140 'care', 

141 'career', 

142 'carry', 

143 'case', 

144 'catch', 

145 'cause', 

146 'cell', 

147 'center', 

148 'central', 

149 'century', 

150 'certain', 

151 'certainly', 

152 'chair', 

153 'challenge', 

154 'chance', 

155 'change', 

156 'character', 

157 'charge', 

158 'check', 

159 'child', 

160 'choice', 

161 'choose', 

162 'church', 

163 'citizen', 

164 'city', 

165 'civil', 

166 'claim', 

167 'class', 

168 'clear', 

169 'clearly', 

170 'close', 

171 'coach', 

172 'cold', 

173 'collection', 

174 'college', 

175 'color', 

176 'commercial', 

177 'common', 

178 'community', 

179 'company', 

180 'compare', 

181 'computer', 

182 'concern', 

183 'condition', 

184 'conference', 

185 'Congress', 

186 'consider', 

187 'consumer', 

188 'contain', 

189 'continue', 

190 'control', 

191 'cost', 

192 'could', 

193 'country', 

194 'couple', 

195 'course', 

196 'court', 

197 'cover', 

198 'create', 

199 'crime', 

200 'cultural', 

201 'culture', 

202 'cup', 

203 'current', 

204 'customer', 

205 'cut', 

206 'dark', 

207 'data', 

208 'daughter', 

209 'day', 

210 'deal', 

211 'debate', 

212 'decade', 

213 'decide', 

214 'decision', 

215 'deep', 

216 'defense', 

217 'degree', 

218 'Democrat', 

219 'democratic', 

220 'describe', 

221 'design', 

222 'despite', 

223 'detail', 

224 'determine', 

225 'develop', 

226 'development', 

227 'difference', 

228 'different', 

229 'difficult', 

230 'dinner', 

231 'direction', 

232 'director', 

233 'discover', 

234 'discuss', 

235 'discussion', 

236 'do', 

237 'doctor', 

238 'dog', 

239 'door', 

240 'down', 

241 'draw', 

242 'dream', 

243 'drive', 

244 'drop', 

245 'drug', 

246 'during', 

247 'each', 

248 'early', 

249 'east', 

250 'easy', 

251 'eat', 

252 'economic', 

253 'economy', 

254 'edge', 

255 'education', 

256 'effect', 

257 'effort', 

258 'eight', 

259 'either', 

260 'election', 

261 'else', 

262 'employee', 

263 'end', 

264 'energy', 

265 'enjoy', 

266 'enough', 

267 'enter', 

268 'entire', 

269 'environment', 

270 'environmental', 

271 'especially', 

272 'establish', 

273 'even', 

274 'evening', 

275 'event', 

276 'ever', 

277 'every', 

278 'everybody', 

279 'everyone', 

280 'everything', 

281 'evidence', 

282 'exactly', 

283 'example', 

284 'executive', 

285 'exist', 

286 'expect', 

287 'experience', 

288 'expert', 

289 'explain', 

290 'eye', 

291 'face', 

292 'fact', 

293 'factor', 

294 'fall', 

295 'family', 

296 'far', 

297 'fast', 

298 'father', 

299 'fear', 

300 'federal', 

301 'feel', 

302 'feeling', 

303 'few', 

304 'field', 

305 'fight', 

306 'figure', 

307 'fill', 

308 'film', 

309 'final', 

310 'finally', 

311 'financial', 

312 'find', 

313 'fine', 

314 'finish', 

315 'fire', 

316 'firm', 

317 'first', 

318 'fish', 

319 'five', 

320 'floor', 

321 'fly', 

322 'focus', 

323 'follow', 

324 'food', 

325 'foot', 

326 'for', 

327 'force', 

328 'foreign', 

329 'forget', 

330 'form', 

331 'former', 

332 'forward', 

333 'four', 

334 'free', 

335 'friend', 

336 'from', 

337 'front', 

338 'full', 

339 'fund', 

340 'future', 

341 'game', 

342 'garden', 

343 'gas', 

344 'general', 

345 'generation', 

346 'get', 

347 'girl', 

348 'give', 

349 'glass', 

350 'go', 

351 'goal', 

352 'good', 

353 'government', 

354 'great', 

355 'green', 

356 'ground', 

357 'group', 

358 'grow', 

359 'growth', 

360 'guess', 

361 'gun', 

362 'guy', 

363 'hair', 

364 'half', 

365 'hand', 

366 'happen', 

367 'happy', 

368 'hard', 

369 'have', 

370 'he', 

371 'head', 

372 'health', 

373 'hear', 

374 'heart', 

375 'heavy', 

376 'help', 

377 'her', 

378 'here', 

379 'herself', 

380 'high', 

381 'him', 

382 'himself', 

383 'his', 

384 'history', 

385 'hit', 

386 'hold', 

387 'home', 

388 'hope', 

389 'hospital', 

390 'hot', 

391 'hotel', 

392 'hour', 

393 'house', 

394 'how', 

395 'however', 

396 'huge', 

397 'human', 

398 'hundred', 

399 'husband', 

400 'I', 

401 'idea', 

402 'identify', 

403 'if', 

404 'image', 

405 'imagine', 

406 'impact', 

407 'important', 

408 'improve', 

409 'in', 

410 'include', 

411 'including', 

412 'increase', 

413 'indeed', 

414 'indicate', 

415 'individual', 

416 'industry', 

417 'information', 

418 'inside', 

419 'instead', 

420 'institution', 

421 'interest', 

422 'interesting', 

423 'international', 

424 'interview', 

425 'into', 

426 'investment', 

427 'involve', 

428 'issue', 

429 'it', 

430 'item', 

431 'its', 

432 'itself', 

433 'job', 

434 'join', 

435 'just', 

436 'keep', 

437 'key', 

438 'kid', 

439 'kind', 

440 'kitchen', 

441 'know', 

442 'knowledge', 

443 'land', 

444 'language', 

445 'large', 

446 'last', 

447 'late', 

448 'later', 

449 'laugh', 

450 'law', 

451 'lawyer', 

452 'lay', 

453 'lead', 

454 'leader', 

455 'learn', 

456 'least', 

457 'leave', 

458 'left', 

459 'leg', 

460 'less', 

461 'let', 

462 'letter', 

463 'level', 

464 'life', 

465 'light', 

466 'like', 

467 'likely', 

468 'line', 

469 'list', 

470 'listen', 

471 'little', 

472 'live', 

473 'local', 

474 'long', 

475 'look', 

476 'lose', 

477 'loss', 

478 'lot', 

479 'low', 

480 'machine', 

481 'magazine', 

482 'main', 

483 'maintain', 

484 'major', 

485 'majority', 

486 'make', 

487 'man', 

488 'manage', 

489 'management', 

490 'manager', 

491 'many', 

492 'market', 

493 'marriage', 

494 'material', 

495 'matter', 

496 'may', 

497 'maybe', 

498 'me', 

499 'mean', 

500 'measure', 

501 'media', 

502 'medical', 

503 'meet', 

504 'meeting', 

505 'member', 

506 'memory', 

507 'mention', 

508 'message', 

509 'method', 

510 'middle', 

511 'might', 

512 'military', 

513 'million', 

514 'mind', 

515 'minute', 

516 'miss', 

517 'mission', 

518 'model', 

519 'modern', 

520 'moment', 

521 'money', 

522 'month', 

523 'more', 

524 'morning', 

525 'most', 

526 'mother', 

527 'mouth', 

528 'move', 

529 'movement', 

530 'movie', 

531 'Mr', 

532 'Mrs', 

533 'much', 

534 'music', 

535 'must', 

536 'my', 

537 'myself', 

538 'name', 

539 'nation', 

540 'national', 

541 'natural', 

542 'nature', 

543 'near', 

544 'nearly', 

545 'necessary', 

546 'need', 

547 'network', 

548 'never', 

549 'new', 

550 'news', 

551 'newspaper', 

552 'next', 

553 'nice', 

554 'night', 

555 'no', 

556 'none', 

557 'nor', 

558 'north', 

559 'not', 

560 'note', 

561 'nothing', 

562 'notice', 

563 'now', 

564 'number', 

565 'occur', 

566 'of', 

567 'off', 

568 'offer', 

569 'office', 

570 'officer', 

571 'official', 

572 'often', 

573 'oil', 

574 'ok', 

575 'old', 

576 'on', 

577 'once', 

578 'one', 

579 'only', 

580 'onto', 

581 'open', 

582 'operation', 

583 'opportunity', 

584 'option', 

585 'or', 

586 'order', 

587 'organization', 

588 'other', 

589 'others', 

590 'our', 

591 'out', 

592 'outside', 

593 'over', 

594 'own', 

595 'owner', 

596 'page', 

597 'painting', 

598 'paper', 

599 'parent', 

600 'part', 

601 'participant', 

602 'particular', 

603 'particularly', 

604 'partner', 

605 'party', 

606 'pass', 

607 'past', 

608 'pattern', 

609 'pay', 

610 'peace', 

611 'people', 

612 'per', 

613 'perform', 

614 'performance', 

615 'perhaps', 

616 'person', 

617 'personal', 

618 'phone', 

619 'physical', 

620 'pick', 

621 'picture', 

622 'piece', 

623 'place', 

624 'plan', 

625 'plant', 

626 'play', 

627 'player', 

628 'PM', 

629 'point', 

630 'police', 

631 'policy', 

632 'political', 

633 'politics', 

634 'poor', 

635 'popular', 

636 'population', 

637 'position', 

638 'positive', 

639 'possible', 

640 'power', 

641 'practice', 

642 'prepare', 

643 'present', 

644 'president', 

645 'pressure', 

646 'pretty', 

647 'prevent', 

648 'price', 

649 'probably', 

650 'process', 

651 'produce', 

652 'product', 

653 'production', 

654 'professional', 

655 'professor', 

656 'program', 

657 'project', 

658 'property', 

659 'protect', 

660 'prove', 

661 'provide', 

662 'public', 

663 'pull', 

664 'purpose', 

665 'push', 

666 'put', 

667 'quality', 

668 'question', 

669 'quickly', 

670 'quite', 

671 'race', 

672 'radio', 

673 'raise', 

674 'range', 

675 'rate', 

676 'rather', 

677 'reach', 

678 'read', 

679 'ready', 

680 'real', 

681 'reality', 

682 'realize', 

683 'really', 

684 'reason', 

685 'receive', 

686 'recent', 

687 'recently', 

688 'recognize', 

689 'record', 

690 'red', 

691 'reduce', 

692 'reflect', 

693 'region', 

694 'relate', 

695 'relationship', 

696 'religious', 

697 'remain', 

698 'remember', 

699 'report', 

700 'represent', 

701 'Republican', 

702 'require', 

703 'research', 

704 'resource', 

705 'respond', 

706 'response', 

707 'responsibility', 

708 'rest', 

709 'result', 

710 'return', 

711 'reveal', 

712 'rich', 

713 'right', 

714 'rise', 

715 'risk', 

716 'road', 

717 'rock', 

718 'role', 

719 'room', 

720 'rule', 

721 'run', 

722 'safe', 

723 'same', 

724 'save', 

725 'say', 

726 'scene', 

727 'school', 

728 'science', 

729 'scientist', 

730 'score', 

731 'sea', 

732 'season', 

733 'seat', 

734 'second', 

735 'section', 

736 'security', 

737 'see', 

738 'seek', 

739 'seem', 

740 'sell', 

741 'send', 

742 'senior', 

743 'sense', 

744 'series', 

745 'serious', 

746 'serve', 

747 'service', 

748 'set', 

749 'seven', 

750 'several', 

751 'shake', 

752 'share', 

753 'she', 

754 'short', 

755 'should', 

756 'shoulder', 

757 'show', 

758 'side', 

759 'sign', 

760 'significant', 

761 'similar', 

762 'simple', 

763 'simply', 

764 'since', 

765 'sing', 

766 'single', 

767 'sister', 

768 'sit', 

769 'site', 

770 'situation', 

771 'six', 

772 'size', 

773 'skill', 

774 'skin', 

775 'small', 

776 'smile', 

777 'so', 

778 'social', 

779 'society', 

780 'soldier', 

781 'some', 

782 'somebody', 

783 'someone', 

784 'something', 

785 'sometimes', 

786 'son', 

787 'song', 

788 'soon', 

789 'sort', 

790 'sound', 

791 'source', 

792 'south', 

793 'southern', 

794 'space', 

795 'speak', 

796 'special', 

797 'specific', 

798 'speech', 

799 'spend', 

800 'sport', 

801 'spring', 

802 'staff', 

803 'stage', 

804 'stand', 

805 'standard', 

806 'star', 

807 'start', 

808 'state', 

809 'statement', 

810 'station', 

811 'stay', 

812 'step', 

813 'still', 

814 'stock', 

815 'stop', 

816 'store', 

817 'story', 

818 'strategy', 

819 'street', 

820 'strong', 

821 'structure', 

822 'student', 

823 'study', 

824 'stuff', 

825 'style', 

826 'subject', 

827 'success', 

828 'successful', 

829 'such', 

830 'suddenly', 

831 'suffer', 

832 'suggest', 

833 'summer', 

834 'support', 

835 'sure', 

836 'surface', 

837 'system', 

838 'table', 

839 'take', 

840 'talk', 

841 'task', 

842 'tax', 

843 'teach', 

844 'teacher', 

845 'team', 

846 'technology', 

847 'television', 

848 'tell', 

849 'ten', 

850 'tend', 

851 'term', 

852 'test', 

853 'than', 

854 'thank', 

855 'that', 

856 'the', 

857 'their', 

858 'them', 

859 'themselves', 

860 'then', 

861 'theory', 

862 'there', 

863 'these', 

864 'they', 

865 'thing', 

866 'think', 

867 'third', 

868 'this', 

869 'those', 

870 'though', 

871 'thought', 

872 'thousand', 

873 'threat', 

874 'three', 

875 'through', 

876 'throughout', 

877 'throw', 

878 'thus', 

879 'time', 

880 'to', 

881 'today', 

882 'together', 

883 'tonight', 

884 'too', 

885 'top', 

886 'total', 

887 'tough', 

888 'toward', 

889 'town', 

890 'trade', 

891 'traditional', 

892 'training', 

893 'travel', 

894 'treat', 

895 'treatment', 

896 'tree', 

897 'trial', 

898 'trip', 

899 'trouble', 

900 'true', 

901 'truth', 

902 'try', 

903 'turn', 

904 'TV', 

905 'two', 

906 'type', 

907 'under', 

908 'understand', 

909 'unit', 

910 'until', 

911 'up', 

912 'upon', 

913 'us', 

914 'use', 

915 'usually', 

916 'value', 

917 'various', 

918 'very', 

919 'view', 

920 'visit', 

921 'voice', 

922 'vote', 

923 'wait', 

924 'walk', 

925 'wall', 

926 'want', 

927 'war', 

928 'watch', 

929 'water', 

930 'way', 

931 'we', 

932 'wear', 

933 'week', 

934 'weight', 

935 'well', 

936 'west', 

937 'western', 

938 'what', 

939 'whatever', 

940 'when', 

941 'where', 

942 'whether', 

943 'which', 

944 'while', 

945 'white', 

946 'who', 

947 'whole', 

948 'whom', 

949 'whose', 

950 'why', 

951 'wide', 

952 'wife', 

953 'will', 

954 'win', 

955 'wind', 

956 'window', 

957 'wish', 

958 'with', 

959 'within', 

960 'without', 

961 'woman', 

962 'wonder', 

963 'word', 

964 'work', 

965 'worker', 

966 'world', 

967 'worry', 

968 'would', 

969 'write', 

970 'writer', 

971 'wrong', 

972 'yard', 

973 'yeah', 

974 'year', 

975 'yes', 

976 'yet', 

977 'you', 

978 'young', 

979 'your', 

980 'yourself', 

981 )