-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweet.py
775 lines (710 loc) · 15.3 KB
/
tweet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from lxml import html
from random import randint
import tweepy
import requests
import js2py
import urllib
import time
import encodings
# first you must create a twitter application on enter the corresponding https://apps.twitter.com/
# under tab 'Keys and Access tokens' generate 'Consumer Key and Secret' and 'Access Token and Token Secret'
# copy your keys Twitter application:
CONSUMER_KEY = '...' # keep the quotes, replace this with your consumer key
CONSUMER_SECRET = '...' # keep the quotes, replace this with your consumer secret key
ACCESS_KEY = '...' # keep the quotes, replace this with your access token
ACCESS_SECRET = '...' # keep the quotes, replace this with your access token secret
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)
def capitalizeFirstLetter(str):
return str.capitalize()
def generateSentence(topic):
sentencePool = list(sentencePatterns)
patternNumber = randint(0,len(sentencePool) - 1)
pattern = sentencePool[topic][patternNumber]
#insert a space before . , ; ? so we can split the string into an array
pattern = insertSpaceBeforePunctuation(pattern)
pattern = pattern.split(' ')
#remove the pattern from the sentence pool so it can't be re-used
sentencePool[topic].pop(patternNumber)
#remove the topic from the sentence pool if there are no sentences left
#for that particular topic
if len(sentencePool[topic]) == 0:
sentencePool.pop(topic)
result = ''
for x in pattern:
#if word matches one of the placeholder words (e.g. nPerson),
#replace it with a random instance of its type (e.g. warrior)
if x in bullshitWords:
result += bullshitWords[x][randint(0,len(bullshitWords[x])-1)]
else:
result += x
result += ' '
result = addSpaceAfterQuestionMarks(deleteSpaceAfterHyphen(removeSpacesBeforePunctuation(capitalizeFirstLetter(trim(replaceAWithAn(result))))))
return result
def generateText(numberOfSentences, sentenceTopic):
text = ''
c = 0
while c < numberOfSentences:
text += generateSentence(sentenceTopic)
c += 1
text = insertSpaceBetweenSentences(text)
text = replaceiWithI(text)
return text
bullshitWords = {
'nCosmos': [
'cosmos',
'quantum soup',
'infinite',
'universe',
'galaxy',
'multiverse',
'grid',
'quantum matrix',
'totality',
'quantum cycle',
'nexus',
'planet',
'solar system',
'world',
'stratosphere',
'dreamscape',
'biosphere',
'dreamtime'
],
'nPerson': [
'being',
'child',
'traveller',
'entity',
'lifeform',
'wanderer',
'visitor',
'prophet',
'seeker',
'Indigo Child'
],
'nPersonPlural': [
'beings',
'travellers',
'entities',
'lifeforms',
'dreamweavers',
'adventurers',
'pilgrims',
'warriors',
'messengers',
'dreamers',
'storytellers',
'seekers',
'spiritual brothers and sisters',
'mystics',
'starseeds'
],
'nMass': [
'consciousness',
'nature',
'beauty',
'knowledge',
'truth',
'life',
'healing',
'potential',
'freedom',
'purpose',
'coherence',
'choice',
'passion',
'understanding',
'balance',
'growth',
'inspiration',
'conscious living',
'energy',
'health',
'spacetime',
'learning',
'being',
'wisdom',
'stardust',
'sharing',
'science',
'curiosity',
'hope',
'wonder',
'faith',
'fulfillment',
'peace',
'rebirth',
'self-actualization',
'presence',
'power',
'will',
'flow',
'potentiality',
'chi',
'intuition',
'synchronicity',
'wellbeing',
'joy',
'love',
'karma',
'life-force',
'awareness',
'guidance',
'transformation',
'grace',
'divinity',
'non-locality',
'inseparability',
'interconnectedness',
'transcendence',
'empathy',
'insight',
'rejuvenation',
'ecstasy',
'aspiration',
'complexity',
'serenity',
'intention',
'gratitude',
'starfire',
'manna'
],
'nMassBad': [
'turbulence',
'pain',
'suffering',
'stagnation',
'desire',
'bondage',
'greed',
'selfishness',
'ego',
'dogma',
'illusion',
'delusion',
'yearning',
'discontinuity',
'materialism'
],
'nOurPlural': [
'souls',
'lives',
'dreams',
'hopes',
'bodies',
'hearts',
'brains',
'third eyes',
'essences',
'chakras',
'auras'
],
'nPath': [
'circuit',
'mission',
'journey',
'path',
'quest',
'vision quest',
'story',
'myth'
],
'nOf': [
'quantum leap',
'evolution',
'spark',
'lightning bolt',
'reintegration',
'vector',
'rebirth',
'revolution',
'wellspring',
'fount',
'source',
'fusion',
'canopy',
'flow',
'network',
'current',
'transmission',
'oasis',
'quantum shift',
'paradigm shift',
'metamorphosis',
'harmonizing',
'reimagining',
'rekindling',
'unifying',
'osmosis',
'vision',
'uprising',
'explosion'
],
'ing': [
'flowering',
'unfolding',
'blossoming',
'awakening',
'deepening',
'refining',
'maturing',
'evolving',
'summoning',
'unveiling',
'redefining',
'condensing',
'ennobling',
'invocation'
],
'adj': [
'enlightened',
'zero-point',
'quantum',
'high-frequency',
'Vedic',
'non-dual',
'conscious',
'sentient',
'sacred',
'infinite',
'primordial',
'ancient',
'powerful',
'spiritual',
'higher',
'advanced',
'internal',
'sublime',
'technological',
'dynamic',
'life-affirming',
'sensual',
'unrestricted',
'ever-present',
'endless',
'ethereal',
'astral',
'cosmic',
'spatial',
'transformative',
'unified',
'non-local',
'mystical',
'divine',
'self-aware',
'magical',
'amazing',
'interstellar',
'unlimited',
'authentic',
'angelic',
'karmic',
'psychic',
'pranic',
'consciousness-expanding',
'perennial',
'heroic',
'archetypal',
'mythic',
'intergalatic',
'holistic',
'joyous',
'eternal'
],
'adjBig': [
'epic',
'unimaginable',
'colossal',
'unfathomable',
'magnificent',
'enormous',
'jaw-dropping',
'ecstatic',
'powerful',
'untold',
'astonishing',
'incredible',
'breathtaking',
'staggering'
],
'adjWith': [
'aglow with',
'buzzing with',
'beaming with',
'full of',
'overflowing with',
'radiating',
'bursting with',
'electrified with'
],
'adjPrefix': [
'ultra-',
'supra-',
'hyper-',
'pseudo-'
],
'vtMass': [
'inspire',
'integrate',
'ignite',
'discover',
'rediscover',
'foster',
'release',
'manifest',
'harmonize',
'engender',
'bring forth',
'bring about',
'create',
'spark',
'reveal',
'generate',
'leverage'
],
'vtPerson': [
'enlighten',
'inspire',
'empower',
'unify',
'strengthen',
'recreate',
'fulfill',
'change',
'develop',
'heal',
'awaken',
'synergize',
'ground',
'bless',
'beckon'
],
'viPerson': [
'exist',
'believe',
'grow',
'live',
'dream',
'reflect',
'heal',
'vibrate',
'self-actualize'
],
'vtDestroy': [
'destroy',
'eliminate',
'shatter',
'disrupt',
'sabotage',
'exterminate',
'obliterate',
'eradicate',
'extinguish',
'erase',
'confront'
],
'nTheXOf': [
'richness',
'truth',
'growth',
'nature',
'healing',
'knowledge',
'birth',
'deeper meaning'
],
'ppPerson': [
'awakened',
're-energized',
'recreated',
'reborn',
'guided',
'aligned'
],
'ppThingPrep': [
'enveloped in',
'transformed into',
'nurtured by',
'opened by',
'immersed in',
'engulfed in',
'baptized in'
],
'fixedAdvP': [
'through non-local interactions',
'inherent in nature',
'at the quantum level',
'at the speed of light',
'of unfathomable proportions',
'on a cosmic scale',
'devoid of self',
'of the creative act'
],
'fixedAdvPPlace': [
'in this dimension',
'outside time',
'within the Godhead',
'at home in the cosmos'
],
'fixedNP': [
'expanding wave functions',
'superpositions of possibilities',
'electromagnetic forces',
'electromagnetic resonance',
'molecular structures',
'atomic ionization',
'electrical impulses',
'a resonance cascade',
'bio-electricity',
'ultrasonic energy',
'sonar energy',
'vibrations',
'frequencies',
'four-dimensional superstructures',
'ultra-sentient particles',
'sub-atomic particles',
'chaos-driven reactions',
'supercharged electrons',
'supercharged waveforms',
'pulses',
'transmissions',
'morphogenetic fields',
'bio-feedback',
'meridians',
'morphic resonance',
'psionic wave oscillations'
],
'nSubject': [
'alternative medicine',
'astrology',
'tarot',
'crystal healing',
'the akashic record',
'feng shui',
'acupuncture',
'homeopathy',
'aromatherapy',
'ayurvedic medicine',
'faith healing',
'prayer',
'astral projection',
'Kabala',
'reiki',
'naturopathy',
'numerology',
'affirmations',
'the Law of Attraction',
'tantra',
'breathwork'
],
'vOpenUp': [
'open up',
'give us access to',
'enable us to access',
'remove the barriers to',
'clear a path toward',
'let us access',
'tap into',
'align us with',
'amplify our connection to',
'become our stepping-stone to',
'be a gateway to'
],
'vTraverse': [
'traverse',
'walk',
'follow',
'engage with',
'go along',
'roam',
'navigate',
'wander',
'embark on'
],
'nameOfGod': [
'Gaia',
'Shiva',
'Parvati',
'the Goddess',
'Shakti'
],
'nBenefits': [
'improved focus',
'improved concentration',
'extreme performance',
'enlightenment',
'cellular regeneration',
'an enhanced sexual drive',
'improved hydration',
'psychic rejuvenation',
'a healthier relationship with the Self'
],
'adjProduct': [
'alkaline',
'quantum',
'holographic',
'zero-point energy',
'living',
'metaholistic',
'ultraviolet',
'ozonized',
'ion-charged',
'hexagonal-cell',
'organic'
],
'nProduct': [
'water',
'healing crystals',
'Tibetan singing bowls',
'malachite runes',
'meditation bracelets',
'healing wands',
'rose quartz',
'karma bracelets',
'henna tattoos',
'hemp garments',
'hemp seeds',
'tofu',
'massage oil',
'herbal incense',
'cheesecloth tunics'
],
}
sentencePatterns = [
# explaining
[
'nMass is the driver of nMass.',
'nMass is the nTheXOf of nMass, and of us.',
'You and I are nPersonPlural of the nCosmos.',
'We exist as fixedNP.',
'We viPerson, we viPerson, we are reborn.',
'Nothing is impossible.',
'This life is nothing short of a ing nOf of adj nMass.',
'Consciousness consists of fixedNP of quantum energy. Quantum means a ing of the adj.',
'The goal of fixedNP is to plant the seeds of nMass rather than nMassBad.',
'nMass is a constant.',
'By ing, we viPerson.',
'The nCosmos is adjWith fixedNP.',
'To vTraverse the nPath is to become one with it.',
'Today, science tells us that the essence of nature is nMass.',
'nMass requires exploration.',
],
# warnings
[
'We can no longer afford to live with nMassBad.',
'Without nMass, one cannot viPerson.',
'Only a nPerson of the nCosmos may vtMass this nOf of nMass.',
'You must take a stand against nMassBad.',
'Yes, it is possible to vtDestroy the things that can vtDestroy us, but not without nMass on our side.',
'nMassBad is the antithesis of nMass.',
'You may be ruled by nMassBad without realizing it. Do not let it vtDestroy the nTheXOf of your nPath.',
'The complexity of the present time seems to demand a ing of our nOurPlural if we are going to survive.',
'nMassBad is born in the gap where nMass has been excluded.',
'Where there is nMassBad, nMass cannot thrive.',
],
# future hope
[
'Soon there will be a ing of nMass the likes of which the nCosmos has never seen.',
'It is time to take nMass to the next level.',
'Imagine a ing of what could be.',
'Eons from now, we nPersonPlural will viPerson like never before as we are ppPerson by the nCosmos.',
'It is a sign of things to come.',
'The future will be a adj ing of nMass.',
'This nPath never ends.',
'We must learn how to lead adj lives in the face of nMassBad.',
'We must vtPerson ourselves and vtPerson others.',
'The nOf of nMass is now happening worldwide.',
'We are being called to explore the nCosmos itself as an interface between nMass and nMass.',
'It is in ing that we are ppPerson.',
'The nCosmos is approaching a tipping point.',
'nameOfGod will vOpenUp adj nMass.',
],
# you and your problems
[
'Although you may not realize it, you are adj.',
'nPerson, look within and vtPerson yourself.',
'Have you found your nPath?',
'How should you navigate this adj nCosmos?',
'It can be difficult to know where to begin.',
'If you have never experienced this nOf fixedAdvP, it can be difficult to viPerson.',
'The nCosmos is calling to you via fixedNP. Can you hear it?',
],
# history
[
'Throughout history, humans have been interacting with the nCosmos via fixedNP.',
'Reality has always been adjWith nPersonPlural whose nOurPlural are ppThingPrep nMass.',
'Our conversations with other nPersonPlural have led to a ing of adjPrefix adj consciousness.',
'Humankind has nothing to lose.',
'We are in the midst of a adj ing of nMass that will vOpenUp the nCosmos itself.',
'Who are we? Where on the great nPath will we be ppPerson?',
'We are at a crossroads of nMass and nMassBad.',
],
# selling point
[
'Through nSubject, our nOurPlural are ppThingPrep nMass.',
"nSubject may be the solution to what's holding you back from a adjBig nOf of nMass.",
'You will soon be ppPerson by a power deep within yourself - a power that is adj, adj.',
'As you viPerson, you will enter into infinite nMass that transcends understanding.',
'This is the vision behind our 100% adjProduct, adjProduct nProduct.',
'With our adjProduct nProduct, nBenefits is only the beginning.',
],
]
replaceAWithAn = js2py.eval_js(
"""function replaceAWithAn(sentence) {
return sentence.replace(/(^|\W)([Aa]) ([aeiou])/g, '$1$2n $3');
}""")
removeSpacesBeforePunctuation = js2py.eval_js(
"""function removeSpacesBeforePunctuation(sentence) {
return sentence.replace(/ ([,\.;\?])/g, '$1');
}""")
deleteSpaceAfterHyphen = js2py.eval_js(
"""function deleteSpaceAfterHyphen(sentence) {
return sentence.replace(/- /g, '-');
}""")
addSpaceAfterQuestionMarks = js2py.eval_js(
"""function addSpaceAfterQuestionMarks(sentence) {
return sentence.replace(/\?(\w)/g, '? $1');
}""")
insertSpaceBeforePunctuation = js2py.eval_js(
"""function insertSpaceBeforePunctuation(sentence) {
return sentence.replace(/([\.,;\?])/g, ' $1');
}""")
insertSpaceBetweenSentences = js2py.eval_js(
"""function insertSpaceBetweenSentences(text) {
return text.replace(/([\.\?])(\w)/g, '$1 $2');
}""")
replaceiWithI = js2py.eval_js(
"""function replaceiWithI(text) {
return text.replace(/( i )/, ' I ');
}"""
)
trim = js2py.eval_js(
"""function trim(text) {
return text.trim();
}""")
# repeat these steps in loop if you want to continuously tweet random bullshit
# get trending hashtags in United States from https://trends24.in/united-states/~cloud
tags_page = requests.get('https://trends24.in/united-states/~cloud')
tree = html.fromstring(tags_page.content)
usable_tags = []
tags = tree.xpath('//ol[@id="cloud-ol"]/li/a/text()')
for t in tags:
if t[1] == '#':
usable_tags.append(t)
topic = randint(0, len(sentencePatterns)-1)
numSen = 1
tag = randint(0,10)
ifImg = randint(0,1)
text = generateText(numSen,topic)
text += usable_tags[tag]
if ifImg == 1:
# tweet with image
urllib.urlretrieve("http://placeimg.com/640/480/nature", "pic.jpg")
api.update_with_media("pic.jpg", text)
else:
# tweet without image
api.update_status(text)