IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Python Discussion :

Simuler entrée clavier


Sujet :

Python

  1. #1
    Membre à l'essai
    Homme Profil pro
    Etudiant en maths sup
    Inscrit en
    Novembre 2011
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Etudiant en maths sup

    Informations forums :
    Inscription : Novembre 2011
    Messages : 31
    Points : 15
    Points
    15
    Par défaut Simuler entrée clavier
    Bonjour!

    Voilà je débutes en Python qui est mon premier langage, et je souhaite faire un bot.
    Dans une étape du bot, celui-ci doit se connecter sur une page, donc entrer un username et un password, et j'aimerais savoir comment simuler une entrée clavier, avec comme paramètre la chaîne à entrer, et que celle-ci soit sensible à la casse et aux caractères spéciaux.

    Car j'ai bel et bien cherché au préalable, j'ai réussi à faire ça:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    def str_input(string):
        for i in string:
            caractere = win32api.VkKeyScan(i)
            win32api.keybd_event(caractere,0)
            time.sleep(0.05)
    Hélas VkKeyScan n'est pas sensible à la casse, et on ne peut envoyer i directement à keybd_event car celui ci attend un int.
    En fait ce n'est même pas qu'elle n'est pas sensible à la casse, c'est qu'elle gère chaque touche du clavier, indépendamment de SHIFT, donc si on entre "?" on récupère "," si on entre "A" on récupère "a".. Et je n'ai également aucun chiffre.. le "1" donne "&", le "2" donne "é", etc..
    Et sinon, quels sont les paramètres qu'on peut entrer à ces deux fonctions? Et ce 0 en paramètre à keybd_event? (Il n'y a pas de docstring sur ces fonctions..)

    De plus quand on entre plusieurs fois la même lettre, keybd_event n'en affiche qu'une, j'ai trouvé comment régler ça à l'aide d'un time.sleep(0.05), mais je trouve ça pas propre, y a-t-il un moyen d'entrer tout d'un coup, avec les mêmes caractères à la suite?

    Merci d'avance pour votre aide!

  2. #2
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 283
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 283
    Points : 36 770
    Points
    36 770
    Par défaut
    Salut,
    Jetez un oeil à la discussion
    Cordialement,
    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  3. #3
    Membre à l'essai
    Homme Profil pro
    Etudiant en maths sup
    Inscrit en
    Novembre 2011
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Etudiant en maths sup

    Informations forums :
    Inscription : Novembre 2011
    Messages : 31
    Points : 15
    Points
    15
    Par défaut
    J'ai absolument rien compris au post vers lequel tu m'as dirigé, mais j'ai de tout de façon trouvé tout seul, sans n'avoir aucun module à rajouter.

    Merci quand même!

  4. #4
    Membre actif
    Profil pro
    Inscrit en
    Avril 2007
    Messages
    250
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations forums :
    Inscription : Avril 2007
    Messages : 250
    Points : 259
    Points
    259
    Par défaut
    Citation Envoyé par Knightdead Voir le message
    J'ai absolument rien compris au post vers lequel tu m'as dirigé, mais j'ai de tout de façon trouvé tout seul, sans n'avoir aucun module à rajouter.

    Merci quand même!
    Ta solution m'intéresse car j'ai le même problème et je n'ai pas encore trouvé comment le résoudre.

    Merci d'avance.

  5. #5
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 283
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 283
    Points : 36 770
    Points
    36 770
    Par défaut
    Salut,

    Citation Envoyé par Knightdead Voir le message
    J'ai absolument rien compris au post vers lequel tu m'as dirigé, mais j'ai de tout de façon trouvé tout seul, sans n'avoir aucun module à rajouter.
    Ben désolé et tant mieux.
    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  6. #6
    Membre à l'essai
    Homme Profil pro
    Etudiant en maths sup
    Inscrit en
    Novembre 2011
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Etudiant en maths sup

    Informations forums :
    Inscription : Novembre 2011
    Messages : 31
    Points : 15
    Points
    15
    Par défaut
    Citation Envoyé par _vince_ Voir le message
    Ta solution m'intéresse car j'ai le même problème et je n'ai pas encore trouvé comment le résoudre.
    J'ai créé 2 fonctions comme ceux-ci:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    def std(string):
        for i in string:
            caractere = win32api.VkKeyScan(i)
            if caractere >= 304:
                maj(caractere)
            else:
                win32api.keybd_event(caractere,0)
            time.sleep(.05)
     
    def maj(char):
            win32api.keybd_event(win32con.VK_SHIFT, 0, 0, 0)
            win32api.keybd_event(char, 0, win32con.KEYEVENTF_EXTENDEDKEY | 0, 0) 
            time.sleep(0.05)
            win32api.keybd_event(char, 0, win32con.KEYEVENTF_EXTENDEDKEY | win32con.KEYEVENTF_KEYUP, 0)
            time.sleep(0.05)
            win32api.keybd_event(win32con.VK_SHIFT, 0, win32con.KEYEVENTF_KEYUP, 0)
    Pour mettre en majuscules j'ai trouvé sur un autre site, par contre j'ai eu quelques bugs (des touches qui ne marchaient plus après avoir utilisé la fonction, jusqu'à ce que je la réutilise) alors si tu en as aussi renseigne toi sur keybd_event pour corriger ça.
    Ensuite je ne sais pas si c'est universel mais j'ai remarqué que les caractères utilisant la majuscule retournent un code supérieur à 304, c'est un peu de la bidouille mais ça marche pour moi.

    Bonne soirée.

  7. #7
    Membre actif
    Profil pro
    Inscrit en
    Avril 2007
    Messages
    250
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations forums :
    Inscription : Avril 2007
    Messages : 250
    Points : 259
    Points
    259
    Par défaut
    Pour info, je me suis inspiré d'un bout de code sur internet :
    http://noabsolutetruths.com/2010/05/...-in-eventghost

    J'ai modifié le code pour les chiffres de 0 à 9. Pour les lettres, chiffres et quelques signes de ponctuation, ça fonctionne. Mais pour le - ? (par exemple), ça ne fonctionne pas comme prévu.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
    import win32api, win32con, time, sys
     
    KEYEVENT_KEYDN = 0x0
    KEYEVENT_KEYUP = 0x2
    VK_SHIFT = 0x10
    VK_CTRL = 0x11
    VK_ALT = 0x12
    VK_UP = 0x26
    VK_DOWN = 0x28
    VK_TAB = 0x09
    VK_OEM_COMMA = 0xBC
    VK_OEM_1 = 0xBA
    VK_ESCAPE = 0x1B
    VK_OEM_PLUS = 0xBB
    VK_OEM_MINUS = 0xBD
    VK_OEM_PERIOD = 0xBE
    VK_SPACE = 0x20
    VK_NUMPAD0 = 0x60 # offset numeric keypad 0
     
    def outputtext(text):
    	for c in text:
    		outputkey(c)
     
    def outputkey(src, ctrl = False, shift = False, alt = False):
    	if ctrl: win32api.keybd_event(VK_CTRL, 0, 0, 0)
    	if alt: win32api.keybd_event(VK_ALT, 0, 0, 0)
    	if src == ',':
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_COMMA, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_COMMA, 0, KEYEVENT_KEYUP, 0)
    	elif src == '+':
    		shift = True
    		win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_PLUS, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_PLUS, 0, KEYEVENT_KEYUP, 0)
    	elif src == '=':
    		win32api.keybd_event(VK_OEM_PLUS, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_PLUS, 0, KEYEVENT_KEYUP, 0)
    	elif src == '-':
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_MINUS, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_MINUS, 0, KEYEVENT_KEYUP, 0)
    	elif src == '_':
    		shift = True
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_MINUS, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_MINUS, 0, KEYEVENT_KEYUP, 0)
    	elif src == ' ':
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_SPACE, 0, 0, 0)
    		win32api.keybd_event(VK_SPACE, 0, KEYEVENT_KEYUP, 0)
    	elif src == '.':
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_PERIOD, 0, 0, 0)
    		win32api.keybd_event(VK_OEM_PERIOD, 0, KEYEVENT_KEYUP, 0)
    	elif src.isdigit():
    		chr = VK_NUMPAD0 + int(src)
    		win32api.keybd_event(chr, chr, 0, 0)
    		win32api.keybd_event(chr, chr, KEYEVENT_KEYUP, 0)
    	else:
    		chr = ord(src.upper())
    		if src.isupper(): shift = True
    		if shift: win32api.keybd_event(VK_SHIFT, 0, 0, 0)
    		win32api.keybd_event(chr, win32api.MapVirtualKey(chr,0), 0, 0)
    		win32api.keybd_event(chr, win32api.MapVirtualKey(chr,0), KEYEVENT_KEYUP, 0)
    	if shift: win32api.keybd_event(VK_SHIFT,0, KEYEVENT_KEYUP, 0)
    	if alt: win32api.keybd_event(VK_ALT,0, KEYEVENT_KEYUP, 0)
    	if ctrl: win32api.keybd_event(VK_CTRL,0, KEYEVENT_KEYUP, 0)
    	time.sleep(0.05)
     
    if __name__ == "__main__" :
    	input = sys.argv[1]
    	print("input :", input)
    	outputtext(input)
    J'ai ajouté le lien vers les codes de toutes les touches. Ces codes sont accessibles dans le module win32con (que je n'ai pas utilisé dans l'exemple) :
    http://msdn.microsoft.com/en-us/library/dd375731

  8. #8
    Membre actif
    Profil pro
    Inscrit en
    Avril 2007
    Messages
    250
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations forums :
    Inscription : Avril 2007
    Messages : 250
    Points : 259
    Points
    259
    Par défaut je persiste
    Pour ceux que ça intéresse, dans le module pywinauto, un fichier SendKeysCTypes.py existe et permet de simuler les entrées clavier avec les contrôles SHIFT, CONTROL et ALT. Je l'ai un peu bricolé et renommé SendKeys.py car il y avait une balise [code] à l'intérieur

    Voir : http://pywinauto.blogspot.fr/

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
    # -*- coding: utf-8 -*-
    """
    Check that SendInput can work the way we want it to
     
    The tips and tricks at http://www.pinvoke.net/default.aspx/user32.sendinput
    is useful!
     
    """
    import time
    import ctypes
     
    __all__ = ['KeySequenceError', 'SendKeys']
     
    try:
        str_class = basestring
        def enforce_unicode(text):
            return unicode(text)
    except NameError:
        str_class = str
        def enforce_unicode(text):
            return text
     
     
    #pylint: disable-msg=R0903
     
    DEBUG = 0
     
    MapVirtualKey = ctypes.windll.user32.MapVirtualKeyW
    SendInput = ctypes.windll.user32.SendInput
    VkKeyScan = ctypes.windll.user32.VkKeyScanW
    VkKeyScan.restype = ctypes.c_short
    VkKeyScan.argtypes = [ctypes.c_wchar]
     
    DWORD = ctypes.c_ulong
    LONG = ctypes.c_long
    WORD = ctypes.c_ushort
     
     
    # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4283
    class MOUSEINPUT(ctypes.Structure):
        "Needed for complete definition of INPUT structure - not used"
        _pack_ = 2
        _fields_ = [
            # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4283
            ('dx', LONG),
            ('dy', LONG),
            ('mouseData', DWORD),
            ('dwFlags', DWORD),
            ('time', DWORD),
            ('dwExtraInfo', DWORD),
        ]
    assert ctypes.sizeof(MOUSEINPUT) == 24, ctypes.sizeof(MOUSEINPUT)
    assert ctypes.alignment(MOUSEINPUT) == 2, ctypes.alignment(MOUSEINPUT)
     
     
    # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4292
    class KEYBDINPUT(ctypes.Structure):
        "A particular keyboard event"
        _pack_ = 2
        _fields_ = [
            # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4292
            ('wVk', WORD),
            ('wScan', WORD),
            ('dwFlags', DWORD),
            ('time', DWORD),
            ('dwExtraInfo', DWORD),
        ]
    assert ctypes.sizeof(KEYBDINPUT) == 16, ctypes.sizeof(KEYBDINPUT)
    assert ctypes.alignment(KEYBDINPUT) == 2, ctypes.alignment(KEYBDINPUT)
     
     
    class HARDWAREINPUT(ctypes.Structure):
        "Needed for complete definition of INPUT structure - not used"
        _pack_ = 2
        _fields_ = [
            # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4300
            ('uMsg', DWORD),
            ('wParamL', WORD),
            ('wParamH', WORD),
        ]
    assert ctypes.sizeof(HARDWAREINPUT) == 8, ctypes.sizeof(HARDWAREINPUT)
    assert ctypes.alignment(HARDWAREINPUT) == 2, ctypes.alignment(HARDWAREINPUT)
     
     
    # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4314
    class UNION_INPUT_STRUCTS(ctypes.Union):
        "The C Union type representing a single Event of any type"
        _fields_ = [
            # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4314
            ('mi', MOUSEINPUT),
            ('ki', KEYBDINPUT),
            ('hi', HARDWAREINPUT),
        ]
    assert ctypes.sizeof(UNION_INPUT_STRUCTS) == 24, \
        ctypes.sizeof(UNION_INPUT_STRUCTS)
    assert ctypes.alignment(UNION_INPUT_STRUCTS) == 2, \
        ctypes.alignment(UNION_INPUT_STRUCTS)
     
     
    # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4310
    class INPUT(ctypes.Structure):
        "See: http://msdn.microsoft.com/en-us/library/ms646270%28VS.85%29.aspx"
        _pack_ = 2
        _fields_ = [
            # C:/PROGRA~1/MICROS~4/VC98/Include/winuser.h 4310
            ('type', DWORD),
            # Unnamed field renamed to '_'
            ('_', UNION_INPUT_STRUCTS),
        ]
    assert ctypes.sizeof(INPUT) == 28, ctypes.sizeof(INPUT)
    assert ctypes.alignment(INPUT) == 2, ctypes.alignment(INPUT)
     
     
    INPUT_KEYBOARD = 1
    KEYEVENTF_EXTENDEDKEY = 1
    KEYEVENTF_KEYUP       = 2
    KEYEVENTF_UNICODE     = 4
    KEYEVENTF_SCANCODE    = 8
    VK_SHIFT        = 16
    VK_CONTROL      = 17
    VK_MENU         = 18
     
    # 'codes' recognized as {CODE( repeat)?}
    CODES = {
        'BACK':     8,
        'BACKSPACE':8,
        'BKSP':     8,
        'BREAK':    3,
        'BS':       8,
        'CAP':      20,
        'CAPSLOCK': 20,
        'DEL':      46,
        'DELETE':   46,
        'DOWN':     40,
        'END':      35,
        'ENTER':    13,
        'ESC':      27,
        'F1':       112,
        'F2':       113,
        'F3':       114,
        'F4':       115,
        'F5':       116,
        'F6':       117,
        'F7':       118,
        'F8':       119,
        'F9':       120,
        'F10':      121,
        'F11':      122,
        'F12':      123,
        'F13':      124,
        'F14':      125,
        'F15':      126,
        'F16':      127,
        'F17':      128,
        'F18':      129,
        'F19':      130,
        'F20':      131,
        'F21':      132,
        'F22':      133,
        'F23':      134,
        'F24':      135,
        'HELP':     47,
        'HOME':     36,
        'INS':      45,
        'INSERT':   45,
        'LEFT':     37,
        'LWIN':     91,
        'NUMLOCK':  144,
        'PGDN':     34,
        'PGUP':     33,
        'PRTSC':    44,
        'RIGHT':    39,
        'RMENU':    165,
        'RWIN':     92,
        'SCROLLLOCK':145,
        'SPACE':     32,
        'TAB':       9,
        'UP':        38,
     
        'VK_ACCEPT': 30,
        'VK_ADD':    107,
        'VK_APPS':    93,
        'VK_ATTN':    246,
        'VK_BACK':    8,
        'VK_CANCEL':  3,
        'VK_CAPITAL': 20,
        'VK_CLEAR':   12,
        'VK_CONTROL': 17,
        'VK_CONVERT': 28,
        'VK_CRSEL':   247,
        'VK_DECIMAL': 110,
        'VK_DELETE':  46,
        'VK_DIVIDE':  111,
        'VK_DOWN':    40,
        'VK_END':     35,
        'VK_EREOF':   249,
        'VK_ESCAPE':  27,
        'VK_EXECUTE': 43,
        'VK_EXSEL':   248,
        'VK_F1':      112,
        'VK_F2':      113,
        'VK_F3':      114,
        'VK_F4':      115,
        'VK_F5':      116,
        'VK_F6':      117,
        'VK_F7':      118,
        'VK_F8':      119,
        'VK_F9':      120,
        'VK_F10':     121,
        'VK_F11':     122,
        'VK_F12':     123,
        'VK_F13':     124,
        'VK_F14':     125,
        'VK_F15':     126,
        'VK_F16':     127,
        'VK_F17':     128,
        'VK_F18':     129,
        'VK_F19':     130,
        'VK_F20':     131,
        'VK_F21':     132,
        'VK_F22':     133,
        'VK_F23':     134,
        'VK_F24':     135,
        'VK_FINAL':   24,
        'VK_HANGEUL':  21,
        'VK_HANGUL':   21,
        'VK_HANJA':    25,
        'VK_HELP':     47,
        'VK_HOME':     36,
        'VK_INSERT':   45,
        'VK_JUNJA':    23,
        'VK_KANA':     21,
        'VK_KANJI':    25,
        'VK_LBUTTON':   1,
        'VK_LCONTROL':162,
        'VK_LEFT':     37,
        'VK_LMENU':   164,
        'VK_LSHIFT':  160,
        'VK_LWIN':     91,
        'VK_MBUTTON':    4,
        'VK_MENU':        18,
        'VK_MODECHANGE':  31,
        'VK_MULTIPLY':   106,
        'VK_NEXT':        34,
        'VK_NONAME':     252,
        'VK_NONCONVERT':  29,
        'VK_NUMLOCK':    144,
        'VK_NUMPAD0':     96,
        'VK_NUMPAD1':     97,
        'VK_NUMPAD2':     98,
        'VK_NUMPAD3':     99,
        'VK_NUMPAD4':    100,
        'VK_NUMPAD5':    101,
        'VK_NUMPAD6':    102,
        'VK_NUMPAD7':    103,
        'VK_NUMPAD8':    104,
        'VK_NUMPAD9':    105,
        'VK_OEM_CLEAR':  254,
        'VK_PA1':        253,
        'VK_PAUSE':       19,
        'VK_PLAY':       250,
        'VK_PRINT':       42,
        'VK_PRIOR':       33,
        'VK_PROCESSKEY': 229,
        'VK_RBUTTON':      2,
        'VK_RCONTROL':   163,
        'VK_RETURN':      13,
        'VK_RIGHT':       39,
        'VK_RMENU':      165,
        'VK_RSHIFT':     161,
        'VK_RWIN':        92,
        'VK_SCROLL':     145,
        'VK_SELECT':      41,
        'VK_SEPARATOR':  108,
        'VK_SHIFT':       16,
        'VK_SNAPSHOT':    44,
        'VK_SPACE':       32,
        'VK_SUBTRACT':   109,
        'VK_TAB':          9,
        'VK_UP':          38,
        'ZOOM':          251,
    }
    # reverse the CODES dict to make it easy to look up a particular code name
    CODE_NAMES = dict((entry[1], entry[0]) for entry in CODES.items())
     
    # modifier keys
    MODIFIERS = {
        '+': VK_SHIFT,
        '^': VK_CONTROL,
        '%': VK_MENU,
    }
     
     
    class KeySequenceError(Exception):
        """Exception raised when a key sequence string has a syntax error"""
     
        def __str__(self):
            return ' '.join(self.args)
     
     
    class KeyAction(object):
        """Class that represents a single 'keyboard' action
     
        It represents either a PAUSE action (not really keyboard) or a keyboard
        action (press or release or both) of a particular key.
        """
     
        def __init__(self, key, down = True, up = True):
            self.key = key
            if isinstance(self.key, str_class):
                self.key = enforce_unicode(key)
            self.down = down
            self.up = up
     
        def _get_key_info(self):
            """Return virtual_key, scan_code, and flags for the action
            
            This is one of the methods that will be overridden by sub classes"""
            return 0, ord(self.key), KEYEVENTF_UNICODE
     
        def GetInput(self):
            "Build the INPUT structure for the action"
            actions = 1
            # if both up and down
            if self.up and self.down:
                actions = 2
     
            inputs = (INPUT * actions)()
     
            vk, scan, flags = self._get_key_info()
     
            for inp in inputs:
                inp.type = INPUT_KEYBOARD
     
                inp._.ki.wVk = vk
                inp._.ki.wScan = scan
                inp._.ki.dwFlags |= flags
     
            # if we are releasing - then let it up
            if self.up:
                inputs[-1]._.ki.dwFlags |= KEYEVENTF_KEYUP
     
            return inputs
     
        def Run(self):
            "Execute the action"
            inputs = self.GetInput()
            return SendInput(
                len(inputs),
                ctypes.byref(inputs),
                ctypes.sizeof(INPUT))
     
        def _get_down_up_string(self):
            """Return a string that will show whether the string is up or down
            
            return 'down' if the key is a press only
            return 'up' if the key is up only
            return '' if the key is up & down (as default)
            """
            down_up = ""
            if not (self.down and self.up):
                if self.down:
                    down_up = "down"
                elif self.up:
                    down_up = "up"
            return down_up
     
        def key_description(self):
            "Return a description of the key"
            vk, scan, flags = self._get_key_info()
            desc = ''
            if vk:
                if vk in CODE_NAMES:
                    desc = CODE_NAMES[vk]
                else:
                    desc = "VK %d"% vk
            else:
                desc = "%s"% self.key
     
            return desc
     
        def __str__(self):
            parts = []
            parts.append(self.key_description())
            up_down = self._get_down_up_string()
            if up_down:
                parts.append(up_down)
     
            return "<%s>"% (" ".join(parts))
        __repr__ = __str__
     
     
    class VirtualKeyAction(KeyAction):
        """Represents a virtual key action e.g. F9 DOWN, etc
     
        Overrides necessary methods of KeyAction"""
     
        def _get_key_info(self):
            "Virtual keys have extended flag set"
     
            # copied more or less verbatim from 
            # http://www.pinvoke.net/default.aspx/user32.sendinput
            if (
                (self.key >= 33 and self.key <= 46) or 
                (self.key >= 91 and self.key <= 93) ):
                flags = KEYEVENTF_EXTENDEDKEY;        
            else:
                flags = 0
            # This works for %{F4} - ALT + F4
            #return self.key, 0, 0
     
            # this works for Tic Tac Toe i.e. +{RIGHT} SHIFT + RIGHT
            return self.key, MapVirtualKey(self.key, 0), flags
     
     
    class EscapedKeyAction(KeyAction):
        """Represents an escaped key action e.g. F9 DOWN, etc
     
        Overrides necessary methods of KeyAction"""
     
        def _get_key_info(self):
            """EscapedKeyAction doesn't send it as Unicode and the vk and 
            scan code are generated differently"""
            vkey_scan = LoByte(VkKeyScan(self.key))
     
            return (vkey_scan, MapVirtualKey(vkey_scan, 0), 0)
     
        def key_description(self):
            "Return a description of the key"
     
            return "KEsc %s"% self.key
     
     
    class PauseAction(KeyAction):
        "Represents a pause action"
     
        def __init__(self, how_long):
            self.how_long = how_long
     
        def Run(self):
            "Pause for the lenght of time specified"
            time.sleep(self.how_long)
     
        def __str__(self):
            return "<PAUSE %1.2f>"% (self.how_long)
        __repr__ = __str__
     
        #def GetInput(self):
        #    print `self.key`
        #    keys = KeyAction.GetInput(self)
        #
        #    shift_state = HiByte(VkKeyScan(self.key))
        #
        #    shift_down = shift_state & 0x100  # 1st bit
        #    ctrl_down =  shift_state & 0x80   # 2nd bit
        #    alt_down =  shift_state & 0x40    # 3rd bit
        #
        #    print bin(shift_state), shift_down, ctrl_down, alt_down
        #
        #    print keys
        #    keys = [k for k in keys]
        #
        #    modifiers = []
        #    if shift_down:
        #        keys[0:0] = VirtualKeyAction(VK_SHIFT, up = False).GetInput()
        #        keys.append(VirtualKeyAction(VK_SHIFT, down = False).GetInput())
        #    if ctrl_down:
        #        keys[0:0] = VirtualKeyAction(VK_CONTROL, up = False).GetInput()
        #        keys.append(VirtualKeyAction(VK_CONTROL, down = False).GetInput())
        #    if alt_down:
        #        keys[0:0] = VirtualKeyAction(VK_ALT, up = False).GetInput()
        #        keys.append(VirtualKeyAction(VK_ALT, down = False).GetInput())
        #
        #    print keys
        #    new_keys = (INPUT * len(keys)) ()
        #
        #    for i, k in enumerate(keys):
        #        if hasattr(k, 'type'):
        #            new_keys[i] = k
        #        else:
        #            for sub_key in k:
        #                new_keys[i] = sub_key
        #
        #    return new_keys
        #
     
    def handle_code(code_value):
        "Handle a key or sequence of keys in braces"
     
        code_keys = []
        # it is a known code (e.g. {DOWN}, {ENTER}, etc)
        if code_value in CODES:
            code_keys.append(VirtualKeyAction(CODES[code_value]))
     
        # it is an escaped modifier e.g. {%}, {^}, {+}
        elif len(code_value) == 1:
            code_keys.append(KeyAction(code_value))
     
        # it is a repetition or a pause  {DOWN 5}, {PAUSE 1.3}
        elif ' ' in code_value:
            to_repeat, count = code_value.rsplit(None, 1)
            if to_repeat == "PAUSE":
                try:
                    pause_time = float(count)
                except ValueError:
                    raise KeySequenceError('invalid pause time %s'% count)
                code_keys.append(PauseAction(pause_time))
     
            else:
                try:
                    count = int(count)
                except ValueError:
                    raise KeySequenceError(
                        'invalid repetition count %s'% count)
     
                # If the value in to_repeat is a VK e.g. DOWN
                # we need to add the code repeated
                if to_repeat in CODES:
                    code_keys.extend(
                        [VirtualKeyAction(CODES[to_repeat])] * count)
                # otherwise parse the keys and we get back a KeyAction
                else:
                    to_repeat = parse_keys(to_repeat)
                    if isinstance(to_repeat, list):
                        keys = to_repeat * count
                    else:
                        keys = [to_repeat] * count
                    code_keys.extend(keys)
        else:
            raise RuntimeError("Unknown code: %s"% code_value)
     
        return code_keys
     
     
    def parse_keys(string,
                    with_spaces = False,
                    with_tabs = False,
                    with_newlines = False,
                    modifiers = None):
        "Return the parsed keys"
     
        keys = []
        if not modifiers:
            modifiers = []
        index = 0
        while index < len(string):
     
            c = string[index]
            index += 1
            # check if one of CTRL, SHIFT, ALT has been pressed
            if c in MODIFIERS.keys():
                modifier = MODIFIERS[c]
                # remember that we are currently modified
                modifiers.append(modifier)
                # hold down the modifier key
                keys.append(VirtualKeyAction(modifier, up = False))
                if DEBUG:
                    print("MODS+", modifiers)
                continue
     
            # Apply modifiers over a bunch of characters (not just one!)
            elif c == "(":
                # find the end of the bracketed text
                end_pos = string.find(")", index)
                if end_pos == -1:
                    raise KeySequenceError('`)` not found')
                keys.extend(
                    parse_keys(string[index:end_pos], modifiers = modifiers))
                index = end_pos + 1
     
            # Escape or named key
            elif c == "{":
                end_pos = string.find("}", index)
                if end_pos == -1:
                    raise KeySequenceError('`}` not found')
     
                code = string[index:end_pos]
                index = end_pos + 1
                keys.extend(handle_code(code))
     
            # unmatched ")"
            elif c == ')':
                raise KeySequenceError('`)` should be preceeded by `(`')
     
            # unmatched "}"
            elif c == '}':
                raise KeySequenceError('`}` should be preceeded by `{`')
     
            # so it is a normal character
            else:
                # don't output white space unless flags to output have been set
                if (c == ' ' and not with_spaces or
                    c == '\t' and not with_tabs or
                    c == '\n' and not with_newlines):
                    continue
     
                # output nuewline
                if c in ('~', '\n'):
                    keys.append(VirtualKeyAction(CODES["ENTER"]))
     
                # safest are the virtual keys - so if our key is a virtual key
                # use a VirtualKeyAction
                #if ord(c) in CODE_NAMES:
                #    keys.append(VirtualKeyAction(ord(c)))
     
                elif modifiers:
                    keys.append(EscapedKeyAction(c))
     
                else:
                    keys.append(KeyAction(c))
     
            # as we have handled the text - release the modifiers
            while modifiers:
                if DEBUG:
                    print("MODS-", modifiers)
                keys.append(VirtualKeyAction(modifiers.pop(), down = False))
     
        # just in case there were any modifiers left pressed - release them
        while modifiers:
            keys.append(VirtualKeyAction(modifiers.pop(), down = False))
     
        return keys
     
    def LoByte(val):
        "Return the low byte of the value"
        return val & 0xff
     
    def HiByte(val):
        "Return the high byte of the value"
        return (val & 0xff00) >> 8
     
    def SendKeys(keys,
                 pause=0.05,
                 with_spaces=False,
                 with_tabs=False,
                 with_newlines=False,
                 turn_off_numlock=True):
        "Parse the keys and type them"
        keys = parse_keys(keys, with_spaces, with_tabs, with_newlines)
     
        for k in keys:
            k.Run()
            time.sleep(pause)
     
     
    def main():
        "Send some test strings"
     
        actions = """
            {LWIN}
            {PAUSE 1}
            Notepad.exe{ENTER}
            {PAUSE 1}
            Hello{SPACE}World!{ENTER}
            {PAUSE 1}
                    {F5}
                    {PAUSE 1}
                    {ENTER}
                    {PAUSE 1}
                    {UP 2}
                    {PAUSE 1}
                    +{RIGHT 11}
                    {PAUSE 1}
                    ^{c}
                    {PAUSE 1}
                    {DOWN 3}
                    {PAUSE 1}
                    ^{v}
                    
                    {PAUSE 5}
            %{F4}
            {PAUSE 1}
            {TAB}
                    {PAUSE 1}
            {ENTER}
                    {PAUSE 1}
            """
        SendKeys(actions, pause = .1)
     
        keys = parse_keys(actions)
        for k in keys:
            print(k)
            k.Run()
            time.sleep(.1)
     
    #    test_strings = [
    #        "\n"
    #        "(aa)some text\n",
    #        "(a)some{ }text\n",
    #        "(b)some{{}text\n",
    #        "(c)some{+}text\n",
    #        "(d)so%me{ab 4}text",
    #        "(e)so%me{LEFT 4}text",
    #        "(f)so%me{ENTER 4}text",
    #        "(g)so%me{^aa 4}text",
    #        "(h)some +(asdf)text",
    #        "(i)some %^+(asdf)text",
    #        "(j)some %^+a text+",
    #        "(k)some %^+a tex+{&}",
    #        "(l)some %^+a tex+(dsf)",
    #        "",
    #        ]
     
    #    for s in test_strings:
    #        print(repr(s))
    #        keys = parse_keys(s, with_newlines = True)
    #        print(keys)
     
    #        for k in keys:
    #            k.Run()
    #            time.sleep(.1)
    #        print()
     
    if __name__ == "__main__":
     
        main()
    J'ai ajouté un petit exemple :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
    import SendKeys
    import os, time
    #os.system("start  notepad.exe")
    SendKeys.SendKeys("{LWIN}")
    time.sleep(1)
    SendKeys.SendKeys("Notepad.exe")
    time.sleep(1)
    SendKeys.SendKeys("{ENTER}")
    time.sleep(1)
    SendKeys.SendKeys("Hello in Notepad", with_spaces = True)
    time.sleep(1)
    SendKeys.SendKeys("{ENTER}")
    time.sleep(1)
    SendKeys.SendKeys("{F5}")
    time.sleep(1)
    SendKeys.SendKeys("{ENTER}")
    time.sleep(1)
    SendKeys.SendKeys("{UP 2}")
    time.sleep(1)
    SendKeys.SendKeys("+{RIGHT 16}")
    time.sleep(1)
    SendKeys.SendKeys("^c")
    time.sleep(1)
    SendKeys.SendKeys("{DOWN 2}")
    time.sleep(1)
    SendKeys.SendKeys("^v")
    time.sleep(1)
    SendKeys.SendKeys("%f")  # ALT + F  "Fichier" menu
    time.sleep(1)
    SendKeys.SendKeys("q")   # Quitter (= Exit)
    time.sleep(1)
    SendKeys.SendKeys("{TAB}")   # Tab
    time.sleep(1)
    SendKeys.SendKeys("+{TAB}")   # SHIFT+Tab
    time.sleep(1)
    SendKeys.SendKeys("{TAB}")   # Tab
    time.sleep(1)
    SendKeys.SendKeys("{ENTER}")   # Enter
    time.sleep(1)

Discussions similaires

  1. [WD17] Simulation d'entré clavier vers fenêtre cible
    Par aldebaran974 dans le forum WinDev
    Réponses: 0
    Dernier message: 26/06/2014, 09h56
  2. [Batch] Simuler entrée clavier - MS-DOS
    Par Tohade dans le forum Scripts/Batch
    Réponses: 2
    Dernier message: 21/03/2013, 09h08
  3. Simuler évènements utilisateur (clic souris, entrée clavier)
    Par _vince_ dans le forum Bibliothèques tierces
    Réponses: 5
    Dernier message: 28/11/2011, 18h44
  4. Réponses: 1
    Dernier message: 20/11/2010, 11h11
  5. Réponses: 7
    Dernier message: 19/04/2007, 13h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo