mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-05-14 23:16:50 +00:00
Merge branch 'master' of https://github.com/hillerliao/RSSHub-python
This commit is contained in:
51
rsshub/spiders/word/ieltswords.txt
Normal file
51
rsshub/spiders/word/ieltswords.txt
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
Amazing → Incredible, Fantastic, Fabulous, Astonishing, Extraordinary
|
||||||
|
Answer → Respond
|
||||||
|
Awful → Terrible, Abominable, Dreadful
|
||||||
|
Bad → Evil, Spoiled, Imperfect, Infamous, Dismal
|
||||||
|
Beautiful → Gorgeous, Ravishing, Dazzling, Exquisite, Stunning
|
||||||
|
Begin → Initiate, Commence, Inaugurate
|
||||||
|
Big → Huge, Enormous, Gigantic, Humongous, Substantial, Mammoth
|
||||||
|
Break → Rupture, Fracture, Shatter
|
||||||
|
Calm → Serene, Peace, Tranquil
|
||||||
|
Come → Approach, Arrive
|
||||||
|
Cool → Chilly, Frosty, Icy
|
||||||
|
Cut → Chop, Slash, Slit
|
||||||
|
Dangerous → Hazardous, Risky, Precarious
|
||||||
|
Decide → Determine, Settle
|
||||||
|
Definite → Certain, Positive, Obvious
|
||||||
|
Delicious → Savoury, Titbit, Delectable
|
||||||
|
Describe → Portray, Characterise
|
||||||
|
Destroy → Demolish, Slay, Ruin, Raze
|
||||||
|
Difference → Disagreement, Inequity, Dissimilarity
|
||||||
|
Dull → Boring, Uninteresting, Monotonous, Humdrum, Dreary
|
||||||
|
End → Terminate, Conclude, Cessation
|
||||||
|
Explain → Elaborate, Interpret
|
||||||
|
Fall → Drop, Descend, Topple
|
||||||
|
Famous → Well-known, Renowned, Eminent, Illustrious
|
||||||
|
Fast → Quick, Rapid, Hasty, Snappy, Swift
|
||||||
|
Fat → Stout, Corpulent, Chubby, Bulky
|
||||||
|
Funny → Amusing, Humorous, Droll, Hilarious
|
||||||
|
Get → Acquire, Obtain, Secure, Procure, Gather
|
||||||
|
Good → Excellent, Fine, Wonderful, Superior, Gracious, Superb, Splendid, Genuine, Sterling, Top-notch,
|
||||||
|
Great → Worthy, Distinguished, Grand, Considerable, Mighty
|
||||||
|
Happy → Pleased, Delighted, Elated, Joyful, Ecstatic, Jubilant, Jaunty
|
||||||
|
Hate → Despise, Loathe, Abhor, Abominate
|
||||||
|
Have → Possess, Own, Acquire,
|
||||||
|
Help → Aid, Assist, Support, Encourage, Relieve
|
||||||
|
Hide → Conceal, Cover, Mask, Veil
|
||||||
|
Idea → Thought, Concept, Notion
|
||||||
|
Important → Necessary, Vital, Critical, Indispensable, Valuable, Essential, Famous, Notable
|
||||||
|
Interesting → Fascinating, Engaging, Spirited, Intriguing, Gripping, Enthralling, Captivating
|
||||||
|
Little → Tiny, Diminutive, Exiguous, Dinky, Cramped
|
||||||
|
Look → Gaze, Glance, Peek, Glimpse, Stare, Leer
|
||||||
|
Love → Like, Admire, Fancy, Care for, Adore
|
||||||
|
Make → Create, Originate, Invent, Construct, Manufacture, Produce, Compose
|
||||||
|
Move → Plod, Creep, Crawl, Drag, Toddle, shuffle, Trot, Lumber, Meander
|
||||||
|
Neat → Orderly, Tidy, Trim, Natty, Smart, Elegant
|
||||||
|
New → Unique, Modern, Current, Recent
|
||||||
|
Old → Feeble, Ancient, Aged, Veteran, Mature, Primitive, Stale
|
||||||
|
Place → Draw, Map, Diagram, Procedure, Method, Blueprint
|
||||||
|
Show → Display, Exhibit, Indicate, Reveal, Demonstrate
|
||||||
|
Tell → Disclose, Reveal, Expose, Narrate, Inform, Divulge
|
||||||
|
Use → Employ, Utilise, Exhaust, Spend
|
||||||
|
Wrong → Incorrect, Inaccurate, Mistaken, Erroneous, Improper, Unsuitable
|
||||||
3612
rsshub/spiders/word/ieltswords_cn.txt
Normal file
3612
rsshub/spiders/word/ieltswords_cn.txt
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -6,10 +6,10 @@ from os import path
|
|||||||
file_path = path.dirname(path.realpath(__file__))
|
file_path = path.dirname(path.realpath(__file__))
|
||||||
|
|
||||||
def ctx():
|
def ctx():
|
||||||
file = path.join(file_path,'toeflwords.txt')
|
file = path.join(file_path,'ieltswords.txt')
|
||||||
with open(file, encoding='utf-8') as inf:
|
with open(file, encoding='utf-8') as inf:
|
||||||
f = inf.readlines()
|
f = inf.readlines()
|
||||||
count = len(f)
|
count = len(f)
|
||||||
wordnum = random.randrange(0, count, 1)
|
wordnum = random.randrange(0, count, 1)
|
||||||
word = linecache.getline(file, wordnum)
|
word = linecache.getline(file, wordnum)
|
||||||
return {"word": word}
|
return {"word": word}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ virtualenv = #[注意填写虚拟环境的位置]
|
|||||||
# pythonpath = /opt/RSSHub-python
|
# pythonpath = /opt/RSSHub-python
|
||||||
#上面的pythonpath需要换成刚才你自己创建的应用的目录
|
#上面的pythonpath需要换成刚才你自己创建的应用的目录
|
||||||
# module = rsshub
|
# module = rsshub
|
||||||
callable = app
|
callable = app
|
||||||
memory-report = true
|
memory-report = true
|
||||||
#py-autoreload = 1 ##监控python模块mtime来触发重载 (只在开发时使用)
|
#py-autoreload = 1 ##监控python模块mtime来触发重载 (只在开发时使用)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user