espejelomar commited on
Commit
266c6a7
1 Parent(s): 3b1d020

init: begin

Browse files
Files changed (6) hide show
  1. .gitignore +1 -0
  2. README.md +8 -1
  3. app.py +66 -0
  4. core_stars.txt +1144 -0
  5. pyproject.toml +16 -0
  6. requirements.txt +2 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ poetry.lock
README.md CHANGED
@@ -10,4 +10,11 @@ pinned: false
10
  license: mit
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
10
  license: mit
11
  ---
12
 
13
+ # Core Stars Membership Verifier
14
+
15
+ Upload a CSV file, pinpointing the column with users' Telegram IDs. The program then reviews this data and produces a new CSV file. In this file, a `1` in the `is_in_core_stars` column confirms that the person is a member of Core Stars.
16
+
17
+ It is 100% certain that if an individual appears in your Excel file and is in the Core Stars group then they will have a 1 in the `is_in_core_stars` column, however there is a low probability (less than 5%) that they will have a 0 and I know part of Core Stars. This happens because the person incorrectly typed their Telegram ID in the form. For example, these are cases that have already happened:
18
+
19
+ 1. They wrote O instead of 0.
20
+ 2. They changed their Telegram ID after filling out the form.
app.py ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import re
3
+ import gradio as gr
4
+
5
+ # Constants
6
+ CORE_STARS_CSV_PATH = "core_stars.csv"
7
+ OUTPUT_CORE_STARS_TXT_PATH = "core_stars.txt"
8
+
9
+ # Normalize Telegram IDs
10
+ def normalize_id(telegram_id):
11
+ telegram_id = str(telegram_id).lower().strip()
12
+ if telegram_id.startswith("https://t.me/"):
13
+ telegram_id = telegram_id.replace("https://t.me/", "")
14
+ telegram_id = telegram_id.lstrip("@")
15
+ telegram_id = re.sub(r"[^a-zA-Z0-9_]", "", telegram_id)
16
+ return telegram_id
17
+
18
+ # Create core_stars.txt
19
+ def create_core_stars_txt(csv_path, output_path, column_name="Telegram Handle"):
20
+ df = pd.read_csv(csv_path)
21
+ normalized_ids = df[column_name].apply(normalize_id).unique()
22
+ with open(output_path, "w") as file:
23
+ for id in normalized_ids:
24
+ file.write(id + "\n")
25
+
26
+ # Read core_stars_ids
27
+ def read_core_stars_ids(file_path):
28
+ with open(file_path, "r") as file:
29
+ return [normalize_id(line) for line in file]
30
+
31
+ # Process uploaded CSV and return updated CSV
32
+ def process_csv(uploaded_csv, column_name):
33
+ # create_core_stars_txt(CORE_STARS_CSV_PATH, OUTPUT_CORE_STARS_TXT_PATH)
34
+ core_stars_ids = read_core_stars_ids(OUTPUT_CORE_STARS_TXT_PATH)
35
+
36
+ df = pd.read_csv(uploaded_csv)
37
+ df[column_name] = df[column_name].apply(normalize_id)
38
+ df["is_in_core_stars"] = df[column_name].apply(
39
+ lambda id: 1 if id in core_stars_ids else 0
40
+ )
41
+ cols = ["is_in_core_stars"] + [
42
+ col for col in df.columns if col != "is_in_core_stars"
43
+ ]
44
+ df = df[cols]
45
+
46
+ # Save to a temporary file and return
47
+ output_file = "updated_file.csv"
48
+ df.to_csv(output_file, index=False)
49
+ return output_file
50
+
51
+ # Set up Gradio interface
52
+ iface = gr.Interface(
53
+ fn=process_csv,
54
+ inputs=[
55
+ gr.File(label="Upload CSV File"),
56
+ gr.Textbox(label="Enter Column Name for Telegram ID")
57
+ ],
58
+ outputs=gr.File(label="Download Updated CSV"),
59
+ title="Telegram Core Stars Membership Checker",
60
+ description="With love by @espejelomar! Upload a CSV file and enter the column name to check if each Telegram user is in the Core Stars list."
61
+ )
62
+
63
+ iface.launch()
64
+
65
+ if __name__ == "__main__":
66
+ iface.launch()
core_stars.txt ADDED
@@ -0,0 +1,1144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ninja_fire
2
+ paulmooregb
3
+ phamtm
4
+ niusha_msh
5
+ aurelienl
6
+ realnotorioustony
7
+ martinkrug7434
8
+ danilo1080
9
+ bernardstanislas
10
+ gbvpascal
11
+ petarcalic99
12
+ exomonk
13
+ mehdirhouz
14
+ skuzminsky
15
+ sean0x
16
+ cheechyuan
17
+ tarrencev
18
+ mrmentor
19
+ outsmth
20
+ fricoben
21
+ tinnehihi
22
+ real_dsi
23
+ msqdev
24
+ guiltygyoza
25
+ th0rgal0
26
+ sachaeth
27
+ ceccon_f
28
+ cwkang
29
+ tevratak
30
+ omnisats
31
+ oxhyoga
32
+ rahan25
33
+ xneiro
34
+ bowlofchilli
35
+ ryanb2
36
+ trg_trg
37
+ xan_crypto
38
+ kemalware
39
+ tito_catalan
40
+ gaetbout
41
+ khadni
42
+ markus_zero
43
+ gabinmarignier
44
+ starknetdev
45
+ parkyeuth
46
+ v9hstk
47
+ solimander
48
+ ctrlc3
49
+ oxnoncents
50
+ zoomervc
51
+ marcello_ngmi
52
+ machilassab
53
+ hactar0
54
+ fred_tupas
55
+ milancermak
56
+ pumpedlunch
57
+ mattc_20
58
+ rzmahmood
59
+ murek
60
+ dangerdan1
61
+ nayr_oac
62
+ 8184338812
63
+ showkay
64
+ whatthedev
65
+ arthaud
66
+ jonasnelle
67
+ cameronlyra
68
+ ccoincash
69
+ kootszhin
70
+ vanyugart
71
+ lordofafew
72
+ lauri_p
73
+ zeroxcodyx
74
+ nirga3
75
+ jakubptak
76
+ udayjj
77
+ jniset
78
+ frunjyan
79
+ evolve0x
80
+ kchojn
81
+ thanh_tx
82
+ bruce_omni
83
+ sithswap
84
+ aleksandr_malyshev
85
+ hirohnguyen
86
+ polmaire
87
+ edisinovcic
88
+ turcfort07
89
+ orig2g
90
+ rmzlb
91
+ tomasmartinek
92
+ 0xaurelou
93
+ marek314
94
+ jsponge
95
+ am7sr
96
+ louthing
97
+ behzatce
98
+ greged93
99
+ briqart
100
+ oo_tsun
101
+ cypherrr
102
+ yufeng0909
103
+ no8ita
104
+ robot42069
105
+ toki0x
106
+ jejom43
107
+ lucidluckylee
108
+ filiplaurentiu
109
+ abstractnull
110
+ bearmarketdev
111
+ lentan
112
+ bal7hazar
113
+ happenwah
114
+ flexouille
115
+ merkle_01
116
+ loracle
117
+ othman_eth
118
+ peteris
119
+ cryptobenkei
120
+ yoni9091
121
+ miljanmilidrag
122
+ dgeis1
123
+ zetsub0ii
124
+ pow_bouke
125
+ sylvainpn
126
+ mustafasevinc
127
+ clemlaflemme
128
+ thejqd
129
+ alexs153
130
+ ncitron
131
+ tk9501
132
+ simon_gltr
133
+ pcaversaccio
134
+ 56999014298
135
+ coburn24
136
+ levstamb
137
+ jammied0ger
138
+ chyanju
139
+ agorajix
140
+ xchqrles
141
+ crypto_lad
142
+ galimbaz
143
+ ahmetoznar
144
+ 0xpedroeth
145
+ mauricio1802
146
+ levs57
147
+ zknoname
148
+ lhadri
149
+ doreami93
150
+ fct_cristiano
151
+ ankitchiplunkar
152
+ stefanvitorovic
153
+ uwejenscerron
154
+ clemb13
155
+ gregoryguillou
156
+ bh0x0
157
+ spartucus
158
+ ametel01
159
+ hugoazt
160
+ dev_the_ninth
161
+ grillolepic
162
+ johnnyw790
163
+ mjspain
164
+ the211lp
165
+ janmajayamall
166
+ sam_jdc
167
+ bits0x
168
+ paco_edwin
169
+ nathan_vdh
170
+ maksymiliandemitraszek
171
+ codiumdium
172
+ toni_shard
173
+ laurencekirk
174
+ motty_l
175
+ bglabs
176
+ louismerkle
177
+ cillianhunter
178
+ pmuens
179
+ a7akan
180
+ x25cfb68
181
+ hominh95
182
+ rohit_goyal
183
+ pedroluizns
184
+ qd_qd_qd
185
+ oxclement
186
+ bitbasebit
187
+ cosmingrigore
188
+ alb_g
189
+ flavianbware
190
+ allenjosephaj
191
+ antazoey
192
+ oxmyst
193
+ ivan_shard
194
+ bakingpretzels
195
+ mohakagr
196
+ ming_wu
197
+ wallace_df
198
+ thenry145
199
+ bb244
200
+ jon0x
201
+ nelsonestrada5
202
+ bonustrack
203
+ fabienc
204
+ notbearteddy
205
+ numbersdefi
206
+ timothyarslan
207
+ ddog1
208
+ rho_serity
209
+ minubwarelabs
210
+ smchala
211
+ edgarbarrantes
212
+ nulven
213
+ zkpantani
214
+ mattici
215
+ natalianmurill0
216
+ liamzebedee
217
+ sambarnes
218
+ corentinderbre
219
+ zeroxverif
220
+ 34605641569
221
+ leastwood
222
+ xyfidea
223
+ pilousekai
224
+ tohrnii
225
+ codemedian
226
+ mateibware
227
+ jfsgomes
228
+ takez0_o
229
+ leoyoung0
230
+ freshpizzaad
231
+ mersonax
232
+ 0x5a41241941dc294d39fd70ca609920cf01aab4f3c1efd5a3e27f8226b7ff5fc
233
+ hkw00011
234
+ dpinones
235
+ a_verify
236
+ theomaringer
237
+ abbeyjaz
238
+ lazarmitic
239
+ fspme
240
+ zup88
241
+ 0xjilan
242
+ bryanconklin
243
+ anders_0x80
244
+ yettaahhhh
245
+ ch1n3du
246
+ junkim831
247
+ bigsky7
248
+ paulemmanuelng
249
+ zenzhenyu
250
+ ramon123
251
+ abuisset
252
+ gsf_chris
253
+ zklumi
254
+ error
255
+ bertrandblancheton
256
+ irisdv
257
+ nan
258
+ metapanda
259
+ richie5596
260
+ aalimsahin
261
+ shramee
262
+ thecotne
263
+ robwalsh21
264
+ o_0xjev
265
+ exyuzi
266
+ habbas33
267
+ darlington68
268
+ l0gykal
269
+ guillermolunar
270
+ iceman0x
271
+ emilianobonassi
272
+ 0xchicken
273
+ mason_cq
274
+ bleaknight
275
+ silent_ops
276
+ edsonalcala
277
+ showmax03
278
+ rishav72
279
+ oviaseshadri
280
+ pie_dev
281
+ defistein
282
+ chloewang_cfg
283
+ 13012864807
284
+ samkazemian
285
+ dic0de
286
+ yoanntlm
287
+ lviswang
288
+ lordsecretive
289
+ diffusedt
290
+ trangnv
291
+ bigbraincapital
292
+ audreythiloy
293
+ jliberatoo
294
+ yamanc
295
+ borays
296
+ jinankjain
297
+ tkcolin
298
+ christopherbender
299
+ etashdoteth
300
+ oaksprout
301
+ stokarz
302
+ hanbsd
303
+ mattreyes
304
+ riad15l
305
+ redbeard
306
+ borelien
307
+ dberk
308
+ indiansailor
309
+ bobowchan
310
+ gp_20__
311
+ teddav
312
+ zxstim
313
+ felabs
314
+ 447746759571
315
+ tmegazyazich
316
+ ziondarko
317
+ pers312
318
+ s0wcy
319
+ cryptodavidw
320
+ gustave_charles
321
+ imavericks
322
+ abashyal
323
+ jonas235
324
+ miron_ganin
325
+ blak1983
326
+ gabe_cartridge
327
+ li_tech0
328
+ poriacattus
329
+ yisun
330
+ nerrolol
331
+ tr1nity1
332
+ sektor7k
333
+ zkchain
334
+ acheema
335
+ aa_bimo
336
+ lowkey_anp
337
+ vuvoth
338
+ pat_zip
339
+ nitrey
340
+ nathan_getachew
341
+ justin_f
342
+ dust3h
343
+ jimmy_the_ninth
344
+ oxluciefer
345
+ mr_abims
346
+ lindazhang666
347
+ oxbobby
348
+ shamb0
349
+ deryakarl
350
+ cryptobish69
351
+ julioo4
352
+ renoren79
353
+ gogibear
354
+ seeerrrrr
355
+ guorongdu
356
+ petra0x
357
+ niani
358
+ nonsofrancis
359
+ joshklop
360
+ bobbayb
361
+ noahcarroll
362
+ marcosmaceo
363
+ oxavmark
364
+ ben_a_adams
365
+ carlsores
366
+ kirugan
367
+ annelinow
368
+ nonnyjoe
369
+ evansdegreat007
370
+ d_roak
371
+ adebisivince
372
+ wongssh
373
+ chinonso_i
374
+ mnesssuuu
375
+ grumpus88
376
+ mikeepires
377
+ cmdmcsellerie
378
+ ucheokolo
379
+ cicr_99
380
+ glenn_sauvage
381
+ agarwal_12
382
+ samuelbabalola
383
+ jack_switchboard
384
+ faithia7
385
+ iamkenzman
386
+ oluwadunnie
387
+ darksider090
388
+ yura_nam
389
+ dopbo
390
+ od1610
391
+ thedexplorer
392
+ velykodnyi
393
+ the_roqbell
394
+ gkcnd
395
+ sampolgar
396
+ fmol2y
397
+ cyndie_kamau
398
+ leonhardmarlo
399
+ cryptskii
400
+ dpa99
401
+ hoangkianh
402
+ rubenad
403
+ leosiz
404
+ anishgoel2
405
+ matteomer
406
+ daledobeck
407
+ paperun
408
+ oxpaella
409
+ christam96
410
+ somthn0somthn
411
+ stanley_666
412
+ mael_hb
413
+ math7c
414
+ oznbyrm
415
+ syora_btc
416
+ jwaitforitk
417
+ carlsokolo
418
+ hb7059
419
+ jih2nn
420
+ nicoovrg
421
+ chrisf0101
422
+ zk_yu_n7e
423
+ damip
424
+ robinstraub
425
+ audacioussneha
426
+ meirb
427
+ rutefig
428
+ ainullindale
429
+ evsolo5
430
+ clem_szt
431
+ coostendorp
432
+ mrdenkov
433
+ hectoliterhl
434
+ asiyaasha
435
+ oxoracle77
436
+ cemfd
437
+ szymonmistal
438
+ immanuelolivia1
439
+ john00000001
440
+ movvvvvvvvvvvvvvvv
441
+ regis_telegram
442
+ lifeis_joy7
443
+ ayushtom
444
+ julian_grigo
445
+ asyncakash
446
+ yashm001
447
+ calebux
448
+ trbiv
449
+ dercontractor
450
+ chriselias
451
+ philogy
452
+ okeke98
453
+ sebastiengllmt
454
+ guypolio
455
+ anidhumal
456
+ azm1231
457
+ vpatsenko
458
+ weikengchen
459
+ suvsandiman
460
+ capwho
461
+ aniketpr01
462
+ can_o_war
463
+ sunbh0219
464
+ satoshinakamoto420
465
+ hack1t
466
+ lib_defi
467
+ spacewhaleboy
468
+ thalesonchain
469
+ timxie007
470
+ dalmasonto
471
+ cmdsilva25
472
+ xjohannes
473
+ rehan_nek
474
+ hsu_josephh
475
+ krafugo
476
+ oxsnm
477
+ dud01
478
+ noobmdev
479
+ bora911
480
+ bravok
481
+ onchezz
482
+ mauricebaglwa
483
+ th_paolo
484
+ kontrol_apa
485
+ demirbey05
486
+ gathint
487
+ codegiant
488
+ raphaeth
489
+ lesliesong
490
+ paulhdev
491
+ t0002t
492
+ haardikkk
493
+ lynettemwangi
494
+ mickey_aki
495
+ khaeljy
496
+ don_kanizo
497
+ something_greyy
498
+ kakoozavian
499
+ walde_dev
500
+ gianmalarcon
501
+ kriptotoros
502
+ aris_eth
503
+ ismailemin007
504
+ cryptograthor
505
+ jrcarlos2000
506
+ f_khi79
507
+ zaan03
508
+ timothyagevi
509
+ kagwep
510
+ ebsuyu
511
+ bestsuki
512
+ mansim
513
+ jane_zklend
514
+ ch3sse
515
+ yagnadeepxo
516
+ book_froststar
517
+ quentash
518
+ tacpre
519
+ deusvult6764
520
+ rtp_1
521
+ ahmetenesdur
522
+ mikolajwozniak
523
+ redsheehan
524
+ uwbyyou
525
+ mattsptr
526
+ mdci
527
+ savi_eth
528
+ zeroxsuku
529
+ olliten
530
+ robzerizi
531
+ teddyp21
532
+ rossmidd
533
+ calcutator
534
+ kawaka_a
535
+ wisemrmua
536
+ dt_arg
537
+ julypjulius6
538
+ terexitarius
539
+ danac_19
540
+ irbozk
541
+ kevinay
542
+ frz_shk
543
+ oxwoland
544
+ karlostoteles
545
+ povodox
546
+ novaluno
547
+ eric_qiu
548
+ johnford55
549
+ max_liang
550
+ brandonkumar
551
+ veoquynhs
552
+ tau_kenny_zd
553
+ realjooddang
554
+ michsoftster
555
+ alphaweb3
556
+ crazydevlegend
557
+ jamie_deng
558
+ szymcio32
559
+ kingjulio99
560
+ kile_sway
561
+ acheroncd
562
+ herryho
563
+ eat_apple
564
+ chimkh26
565
+ greenlucid
566
+ draka77
567
+ alekussu
568
+ tanthaip
569
+ killit777
570
+ robertkp
571
+ haycarlitos
572
+ prasincs
573
+ ccolorado
574
+ gridexkevin
575
+ byungg
576
+ ashenjon
577
+ harveyhuynh
578
+ petscheitber
579
+ countrycousin
580
+ cyrus
581
+ lyskey_zk_digger
582
+ tonytao2021
583
+ superdanki
584
+ luckyhueth
585
+ iciidev
586
+ coingeener
587
+ geoist
588
+ tehgonm
589
+ juanbugsun
590
+ remisseth
591
+ melbin101
592
+ ceciliamulandi
593
+ joshtrandefi
594
+ kkgzh
595
+ jcardenes
596
+ andrewmusgrave
597
+ kenkomu
598
+ ebunayo08
599
+ aakansha_1
600
+ marcolobo9
601
+ hexdrunker
602
+ ma059
603
+ luozhuzhang
604
+ levertz
605
+ marklorkechel
606
+ motypes
607
+ daphne_wong
608
+ awkweb
609
+ erikvalle
610
+ ardasevinc
611
+ fenrirsc
612
+ kasteph_eth
613
+ basarmahmutluoglu
614
+ alexyjoven
615
+ brj87
616
+ sjpbeale
617
+ uelrong
618
+ yozhiiiik
619
+ chippyhere
620
+ ilmmanuelolivia1
621
+ raizo00
622
+ omwanchafrank
623
+ starchou
624
+ wollumpls
625
+ kalaninja
626
+ bidzyyys
627
+ brucecairofi
628
+ gruglikesrocks
629
+ surfer_05
630
+ yilu0x
631
+ bejeka
632
+ andresmayorca
633
+ mataleone
634
+ metehan_caliskan
635
+ cryptodevos
636
+ litgrowlithe
637
+ jameswasonga
638
+ ayaraee1
639
+ mbarwicki
640
+ bashirsaine
641
+ 97686993328
642
+ alptoksoz
643
+ ranulfovm
644
+ nicabar
645
+ literallyinnocent
646
+ jamesh320
647
+ selim_e
648
+ hatunozcn
649
+ thelvedem
650
+ n0process
651
+ fmkra0
652
+ osmanmdev
653
+ caleb_ux
654
+ flo_durden
655
+ naomi_nft
656
+ jusonalien
657
+ gink5814
658
+ ledemsy
659
+ nemanja_nedic
660
+ manoahluka
661
+ wandereraj
662
+ barabanovro
663
+ kfastov
664
+ notaihe
665
+ chachaleo
666
+ mkostrzewa
667
+ naylor0x
668
+ strindbergman
669
+ sarvshaktimaan
670
+ neal
671
+ mumbikariuki01
672
+ gonelric
673
+ diana_murugi
674
+ vestor0x
675
+ tonywayne963
676
+ nils_mathieu
677
+ demora33
678
+ zazzah
679
+ ego100
680
+ akegprince
681
+ realkayzee
682
+ blockchain_badi
683
+ neirotciv
684
+ vitmak
685
+ antongotchi
686
+ oguzthestoic
687
+ tcoratger
688
+ zomglings
689
+ tokenom
690
+ yasin_berk
691
+ supreme3030
692
+ jfajfa
693
+ strollinghome
694
+ tonystarkdex
695
+ hoanhan101
696
+ akajkr
697
+ iemre
698
+ kkkmoat
699
+ karasakalmt
700
+ silentssh
701
+ azurwastaken
702
+ penovicp
703
+ rayma_barta
704
+ ejeh23
705
+ muguika
706
+ emret16
707
+ svp111
708
+ 0662652865
709
+ guru_blockchain
710
+ brianbuilder
711
+ mrdninv
712
+ zuzazuber
713
+ volthai7us
714
+ realn0vad3v
715
+ raumoe
716
+ thepriyanshugupta
717
+ stephbreezzy
718
+ juoniprime
719
+ frangio
720
+ liamthedawn
721
+ konstanin_vtb
722
+ raulalgo
723
+ zedit42
724
+ shiftedsky
725
+ vladimirlazeev
726
+ thatsgrim
727
+ babazulu
728
+ otaiki
729
+ wargly
730
+ castacryptotg
731
+ adizere
732
+ mgalxe
733
+ ilona_aya
734
+ natyshi
735
+ zkbrain_eth
736
+ hrmp_xcm_enjoyer42
737
+ electricmaria
738
+ santicristobal
739
+ evon1er
740
+ sea_pre
741
+ oleski1
742
+ xendrit
743
+ aru_sh1
744
+ afmm280
745
+ dariusz
746
+ willz0x
747
+ ddariuszz
748
+ srilakshmitc
749
+ lil_code
750
+ tonior_eth
751
+ t_adms
752
+ bubadavit
753
+ odesenfans
754
+ vladutmuresan
755
+ iamrandomlysus
756
+ easonchaiii
757
+ niveditavivek
758
+ bombonchik
759
+ vasapupkin11111
760
+ muskbuster
761
+ pranavlakkadi
762
+ icosahedron20
763
+ sekfook
764
+ jngo00
765
+ mobius0x
766
+ await_0x
767
+ aaronlighteous
768
+ bisht13
769
+ manonfurst
770
+ numse655
771
+ awesomeuncleb
772
+ unchase
773
+ dmitriikaliagin
774
+ chimaobi_peter
775
+ satsonite
776
+ nehkee
777
+ pacood
778
+ genlyaii
779
+ maxi
780
+ zhiming1990
781
+ lcmol23
782
+ acampenni
783
+ adeets_22
784
+ ethzed
785
+ 821072255114
786
+ alienate08
787
+ buremo_irede
788
+ anna_lady1988
789
+ mookim_eth
790
+ jose_immunefi
791
+ aloothero
792
+ querypointer
793
+ jharveyb
794
+ abhishekalimchandani
795
+ berzanxyz
796
+ aaronjmars
797
+ scoia_2046
798
+ antoinevales
799
+ hh_0405
800
+ lime_eth
801
+ nauhc_ner
802
+ amiabix
803
+ bhaveshpraveen
804
+ mikjakbiak
805
+ kushynoda
806
+ notlesh_0
807
+ edwinweb
808
+ franco_bg
809
+ bouchut
810
+ sveamarcus
811
+ udsumut
812
+ fatolup
813
+ lh
814
+ motxxa
815
+ recipromancer
816
+ mztacat
817
+ criptopepe1
818
+ xnovasimon
819
+ shabbiryk
820
+ gautambnsl05
821
+ sachin0x
822
+ tonypony
823
+ alphawip
824
+ lennyaebischer
825
+ cyanustech
826
+ pbanchhor
827
+ krzkaczor
828
+ elias_tzr
829
+ tzamoj
830
+ thisisseona
831
+ boating_accident_enthusiast
832
+ the_python_developer
833
+ ammarif
834
+ ezigbonwoke
835
+ said01707
836
+ donquixotelamancha
837
+ yazidly
838
+ newproject1
839
+ gabiwaxx
840
+ makiob
841
+ theotherparker
842
+ rashmor1
843
+ brentconn
844
+ xb17z
845
+ francojsh
846
+ manakinlt
847
+ benzobryant
848
+ kikopashka
849
+ marcoscarlomagno
850
+ kkleqe
851
+ zk_alex
852
+ vorondilau
853
+ vojtechstudenka
854
+ naeleth
855
+ nivyhzkl
856
+ b0xtch
857
+ cesar_roberty
858
+ sicknerdballer
859
+ vignone
860
+ f_eth
861
+ crv0x
862
+ onchaindetective
863
+ kusanoakira
864
+ ptisserand
865
+ viny0x
866
+ wrong1man
867
+ xmons
868
+ unimetapro
869
+ yashwant_eth
870
+ elileinkram
871
+ j4cky_lim
872
+ gianlukk994
873
+ lgveronese
874
+ dubsn8
875
+ cronokirby
876
+ bradleywoolf
877
+ pavel_nyashin
878
+ jakefitz
879
+ peterblockman
880
+ daniel_brilliantblocks
881
+ ericng39
882
+ war_in
883
+ arturmichalek
884
+ gongstrr
885
+ creat0xr
886
+ hudsonstark
887
+ matthieuauger
888
+ kawaka
889
+ amanraj1608
890
+ randotron
891
+ defijett
892
+ jbaettig
893
+ condormann
894
+ dia_syn
895
+ oxtekgrinder
896
+ junsugiura
897
+ liobrasil
898
+ briyancessac
899
+ christophe_dumont
900
+ loic_moisan
901
+ remiroy
902
+ leovigna
903
+ kimsy99
904
+ clementtangs
905
+ vinow_1310
906
+ ulerdogan
907
+ marcuspangyuyang
908
+ daglihet
909
+ weii_hann
910
+ mffrench
911
+ bastienleac
912
+ haltakov
913
+ walkerv
914
+ svax974
915
+ sseshanth
916
+ emrecalik
917
+ cryptopalcrackr
918
+ vjiraiya
919
+ vmmuthu31
920
+ val_dosimont
921
+ marlon_wiprud
922
+ hsyodyssey
923
+ starkience
924
+ burakweb3
925
+ maciektr
926
+ erenes
927
+ lucas_lgl
928
+ terrynuts
929
+ helix1011
930
+ nazar_ilamanov
931
+ philr26
932
+ camheras
933
+ adjeuxis
934
+ kongtaoxing
935
+ shouryamkumar
936
+ d0x471b
937
+ leonardpaturel
938
+ smoboi
939
+ xflpt
940
+ mountainshao
941
+ codingcas
942
+ rafaelccg
943
+ notv4l
944
+ iamtamaghna
945
+ zawiasa
946
+ roasbeef
947
+ fromddy
948
+ chirag_bgh
949
+ resende_zp
950
+ native_0x
951
+ aragar199
952
+ wandcrafting
953
+ lancendavis
954
+ codewhizperer
955
+ theblessingemah
956
+ officialnico
957
+ ounomachi
958
+ betacodd
959
+ cryptonerdcn
960
+ ocandoangela
961
+ javierch7
962
+ httpswebtelegramorgkdevnet0x
963
+ httpswebtelegramorgkguthl
964
+ tomasgruner
965
+ jommi
966
+ kaelpro2
967
+ byblaaz
968
+ djaganche
969
+ edgl00
970
+ nasrdjegh
971
+ johnskaller
972
+ domnethermind
973
+ apoorvflint
974
+ samueloh99
975
+ juhoii
976
+ enehizy
977
+ paulfocustree
978
+ cheelax65
979
+ countryc1
980
+ thekevinding
981
+ venkateshk421
982
+ patrickguay
983
+ lol555lol555
984
+ kubilibre
985
+ starkoracles
986
+ lungwitz
987
+ pommiere
988
+ murcake
989
+ bipbop_eth
990
+ neotheprogramist
991
+ ojetokunlanre
992
+ bimtola
993
+ encryption01
994
+ elielmathe
995
+ swishwhip
996
+ saphyr97
997
+ gregr4
998
+ oxefrain
999
+ 0xfenrir
1000
+ jessyjoyal
1001
+ quentinnivelais
1002
+ ll_0xweb3
1003
+ cypherr0x
1004
+ tjelailah
1005
+ flavinho31
1006
+ goksualc
1007
+ tomaszmikowicz
1008
+ kasiazerosiedem
1009
+ jingxuan9898
1010
+ a_m_l_l2
1011
+ rati_mon
1012
+ glihm
1013
+ phydy_dev
1014
+ thryec
1015
+ tmede_ciphe
1016
+ sandeep0322
1017
+ mme022
1018
+ dxdv7
1019
+ akseptional1
1020
+ potti_web3
1021
+ tsapymdelete
1022
+ xiangganzi
1023
+ pedro4980
1024
+ very_unique
1025
+ d3m1s1
1026
+ slovaye
1027
+ hakymulla
1028
+ raphael_dev
1029
+ bulleye
1030
+ 1622920522
1031
+ hp3202
1032
+ gaetanaly
1033
+ script_money
1034
+ bitnician
1035
+ guibettanin
1036
+ patrickous
1037
+ blapta
1038
+ sparqet
1039
+ unclegrandpa925
1040
+ sileo_51730
1041
+ oxdarius
1042
+ iam_nowhere
1043
+ jooeys
1044
+ letco9
1045
+ dangush
1046
+ matlangg
1047
+ eth_sign
1048
+ nelson27zzz
1049
+ mascarodev
1050
+ zeapherine
1051
+ bastien_alchemy
1052
+ sresaan
1053
+ cryptodoctelegram
1054
+ almiao
1055
+ leapalazzolo
1056
+ rodroo
1057
+ realgigiyip
1058
+ oxnekr
1059
+ yusuferdogan
1060
+ arslann59
1061
+ huohuli
1062
+ peterkecman
1063
+ m_kus
1064
+ broody
1065
+ yisiliu
1066
+ akirillo
1067
+ akashneelesh
1068
+ oluwatosiiin
1069
+ dbejarano
1070
+ odysseus0z
1071
+ xnikron
1072
+ rmazur
1073
+ originalolii
1074
+ felixluo2022
1075
+ galinaweb3
1076
+ hussainsaif
1077
+ jakegostylo
1078
+ joshpurtell
1079
+ tokintolkien
1080
+ oxnestor
1081
+ biasgoose
1082
+ tootypang
1083
+ backthebunny
1084
+ kassandra_eth
1085
+ remedcu
1086
+ benw94
1087
+ sextustg
1088
+ austin_s_king
1089
+ fabio_catalao
1090
+ yfreddy
1091
+ change_000
1092
+ rohitrjn
1093
+ baudoincpn
1094
+ diamondtxie
1095
+ tmeedouard_m
1096
+ quangvo98
1097
+ lilicjohn
1098
+ anubhavrasti
1099
+ bfn07
1100
+ mayurc9
1101
+ sergio_gc
1102
+ xdrknzz
1103
+ timedison
1104
+ protossz
1105
+ jaycee0x0
1106
+ voandee
1107
+ guillaumepetot
1108
+ raphaelndonga
1109
+ haner11
1110
+ maurot
1111
+ hollygrimm
1112
+ maxxeth
1113
+ banbu_2022
1114
+ lambda_0x
1115
+ zpacuz
1116
+ debstel
1117
+ cikutto
1118
+ mkahanr
1119
+ mathiastelits1
1120
+ oxwepo
1121
+ zeroxbeny
1122
+ french252
1123
+ will_qiu
1124
+ dexterdev8
1125
+ captainakka82
1126
+ tim_henry
1127
+ novawonglili
1128
+ hgedia
1129
+ slanmer
1130
+ web4yang
1131
+ lyne127
1132
+ angelo_streamflow
1133
+ cc
1134
+ colombopragma
1135
+ chenxinran
1136
+ armin_faldis
1137
+ anistark
1138
+ flipdazed
1139
+ mul1sh
1140
+ chrism46
1141
+ nicolascsgy
1142
+ ryohashimoto93
1143
+ nefiten
1144
+ kerimembel
pyproject.toml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "core-stars-csv-updater"
3
+ version = "0.1.0"
4
+ description = "Load a CSV file, specify the column with the user's Telegram ID, and receive a CSV in return showing whether each person belongs to the Telegram Core Stars group"
5
+ authors = ["Omar U. Espejel <espejelomar@gmail.com>"]
6
+ readme = "README.md"
7
+ packages = [{include = "core_stars_csv_updater"}]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.11"
11
+ pandas = "^2.1.3"
12
+ gradio = "^4.7.1"
13
+
14
+ [build-system]
15
+ requires = ["poetry-core"]
16
+ build-backend = "poetry.core.masonry.api"
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ pandas==2.1.3
2
+ gradio==4.7.1