-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1100 lines (947 loc) · 28.8 KB
/
index.html
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
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Haciendo comandos con Click!</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/docker.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<div>
<img src="media/imgs/click.png" style=" max-height: none; max-width: none;"/>
<br/>
</div>
<h3>Haciendo comandos con Click!</h3>
<p>
<small style="margin-top: 40px; font-size: 0.7em; font-weight: bold;"><a href="https://github.com/telemaco">roberto.majadas</a></small>
<a href="http://www.openshine.com"><img src="media/imgs/openshine.png"/></a>
</p>
</section>
<section >
<h1>¿Qué es un Click?</h1>
<h2 class="fragment" data-fragment-index="0"><u>C</u>ommand <u>L</u>ine <u>I</u>nterface <u>C</u>reation <u>K</u>it</h2>
</section>
<section>
<h1>¿Por qué Click?</h1>
<div style="position: absolute; left: 15%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Toltalmente anidable y componible</li>
<li class="fragment" data-fragment-index="1">Generación de páginas de ayuda</li>
<li class="fragment" data-fragment-index="2">"Lazy loading" de comandos en tiempo de ejecución</li>
<li class="fragment" data-fragment-index="3">Soporte para las convenciones de UNIX</li>
<li class="fragment" data-fragment-index="4">Carga de variables de entorno de serie</li>
<li class="fragment" data-fragment-index="5">Soporte para Python 2 y 3</li>
<li class="fragment" data-fragment-index="6">Gestión de descriptores de ficheros de serie</li>
<li class="fragment" data-fragment-index="7">Muchos, muchos helpers</li>
</ul>
</div>
</section>
<section>
<h1>¿Y por qué no Argparse?</h1>
<div style="position: absolute; left: 15%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Click está basado en optparse</li>
<li class="fragment" data-fragment-index="1">Hace demasiada "magia" para saber que es un argumento o un parámetro</li>
<li class="fragment" data-fragment-index="2">Dificulta el anidamiento de comandos</li>
</ul>
</div>
</section>
<section>
<h1>¿Y por qué no Docopt?</h1>
<div style="position: absolute; left: 15%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Su arquitectura persigue objetivos diferentes</li>
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="1">Dependiente de la ayuda que hagas</li>
<li class="fragment" data-fragment-index="2">Es difícil hacer composición de comandos</li>
<li class="fragment" data-fragment-index="3">Tiene soporte de subcomandos, pero...</li>
</ul>
<li class="fragment" data-fragment-index="4">Y click...</li>
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="5">No solo parsea, asigna el código apropiado</li>
<li class="fragment" data-fragment-index="6">Fuerte contexto de invocación (subcomando -> comando)</li>
<li class="fragment" data-fragment-index="7">Mucha info de todo</li>
</ul>
</ul>
</div>
</section>
<section>
<h1>¿Y por qué no Docopt?</h1>
<h2>Click está orientado a tener un sistema componible y Docopt a tener el CLI más bonito hecho a mano.</h2>
</section>
<section>
<h1>Instalar Click</h1>
<pre>
<code class="bash" data-trim>
virtualenv .venv
source .venv/bin/activate
pip install click
</code>
</pre>
</section>
<section>
<h1>Hello world!</h1>
<pre>
<code class="python" data-trim>
#!/usr/bin/env python
import click
@click.command()
def hello():
click.echo('Hello World!')
if __name__ == '__main__':
hello()
</code>
</pre>
<pre>
<code class="bash" data-trim>
./hello_world.py
Hello World!
</code>
</pre>
</section>
<section>
<h1>Anidando comandos</h1>
<pre>
<code class="python" data-trim>
#!/usr/bin/env python
import click
@click.group()
def cli():
pass
@cli.command()
def say_hello():
click.echo('Hello hacker!')
@cli.command()
def say_bye():
click.echo('Bye hacker!')
if __name__ == '__main__':
cli()
</code>
</pre>
</section>
<section>
<h1>Anidando comandos (resultado)</h1>
<pre>
<code class="bash" data-trim>
$ anidando
Usage: anidando [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
say_bye
say_hello
</code>
</pre>
</section>
<section>
<h1>Añadiendo parámetros</h1>
<pre>
<code class="python" data-trim>
#!/usr/bin/env python
import click
@click.command()
@click.option('--count-down', default=10, help='suprise countdown')
@click.argument('name')
def surprise(count_down, name):
while count_down != 0:
click.echo("%s..." % count_down)
count_down = count_down - 1
click.echo("Supriseeeeee!!!! %s" % name)
if __name__ == '__main__':
surprise()
</code>
</pre>
</section>
<section>
<h1>Añadiendo parámetros, resultado</h1>
<pre>
<code class="bash" data-trim>
$ surprise --help
Usage: surprise [OPTIONS] NAME
Options:
--count-down INTEGER suprise countdown
--help Show this message and exit.
$ surprise --count-down 3 roberto
3...
2...
1...
Supriseeeeee!!!! roberto
</code>
</pre>
</section>
<section>
<h1>Integración con setuptools</h1>
<pre>
<code class="python" data-trim>
from setuptools import setup
setup(
name='yourscript',
version='0.1',
py_modules=['yourscript'],
install_requires=[
'Click',
],
entry_points='''
[console_scripts]
yourscript=yourscript:cli
''',
)
</code>
</pre>
</section>
<section>
<h1>Parámetros</h1>
<h2>Click soporta dos clases de parámetros: options y arguments</h2>
<div style="position: absolute; left: 0%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Arguments</li>
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="1">mi_comando <b>NOMBRE</b></li>
<li class="fragment" data-fragment-index="2">Usar para nombres, ficheros, etc.</li>
</ul>
<li class="fragment" data-fragment-index="4">Options</li>
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="5">mi_comando <b>--help</b></li>
<li class="fragment" data-fragment-index="6">Totalmente documentados</li>
<li class="fragment" data-fragment-index="7">Si falta el dato, te lo pide</li>
<li class="fragment" data-fragment-index="8">Precarga por variables de entorno</li>
</ul>
</ul>
</div>
</section>
<section>
<h1>Parámetros</h1>
<h2>Tipos de datos</h2>
<div style="position: absolute; left: 15%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li>str / click.STRING</li>
<li>int / click.INT</li>
<li>float / click.FLOAT</li>
<li>bool / click.BOOL</li>
<li>click.UUID, click.File, click.Path, click.Choice, click.IntRange</li>
<li>Tipos custom, muy faciles de implementar!</li>
</ul>
</div>
</section>
<section>
<div>
<img src="media/imgs/DontBlink.png" style=" max-height: none; max-width: none;"/>
<br/>
</div>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Una opción básica</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--n', default=1)
def dots(n):
click.echo('.' * n)
</code>
</pre>
<ul style="text-align: left; line-height=1.1em;">
<li>default, define el valor por defecto</li>
<li>Si no hay tipo de dato definido por defecto es String</li>
</ul>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>opciones multi-valor</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--pos', nargs=2, type=float)
def findme(pos):
click.echo('%s / %s' % pos)
</code>
</pre>
<ul style="text-align: left; line-height=1.1em;">
<li>nargs, define numero de argumentos</li>
<li>type, define el tipo de dato que acepta</li>
</ul>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Usando tuplas para opción multi-valor</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--item', type=(unicode, int))
def putitem(item):
click.echo('name=%s id=%d' % item)
</code>
</pre>
<ul style="text-align: left; line-height=1.1em;">
<li>2 entradas, un string unicode y un entero</li>
</ul>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Multiples entradas de la misma opción</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--message', '-m', multiple=True)
def commit(message):
click.echo('\n'.join(message))
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ commit -m foo -m bar
foo
bar
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Contador asociado a una opción</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('-v', '--verbose', count=True)
def log(verbose):
click.echo('Verbosity: %s' % verbose)
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ log -vvv
Verbosity: 3
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Flags</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--shout/--no-shout', default=False)
def info(shout):
if shout:
click.echo('Eeeeeeeyyyyy!!!!!')
else:
click.echo('Ey')
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Switches</h2>
<pre>
<code class="python" data-trim>
import sys
@click.command()
@click.option('--upper', 'transformation', flag_value='upper',
default=True)
@click.option('--lower', 'transformation', flag_value='lower')
def info(transformation):
click.echo(getattr(sys.platform, transformation)())
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ info --upper
DARWIN
$ info --lower
darwin
$ info
DARWIN
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Opción con multiples elecciones</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--hash-type', type=click.Choice(['md5', 'sha1']))
def digest(hash_type):
click.echo(hash_type)
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Prompting</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--name', prompt=True)
def hello(name):
click.echo('Hello %s!' % name)
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ hello --name=John
Hello John!
$ hello
Name: John
Hello John!
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Preguntando la password</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.password_option()
def encrypt(password):
click.echo('Encrypting password to %s' % password.encode('rot13'))
#
# Asi seria sin el decorator @click.password_option()
#
# @click.command()
# @click.option('--password', prompt=True, hide_input=True,
# confirmation_prompt=True)
# def encrypt(password):
# click.echo('Encrypting password to %s' % password.encode('rot13'))
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ encrypt
Password:
Repeat for confirmation:
Encrypting password to frperg
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Recogiendo variables del environment</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--username')
def greet(username):
click.echo('Hello %s!' % username)
if __name__ == '__main__':
greet(auto_envvar_prefix='GREETER')
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ export GREETER_USERNAME=john
$ greet
Hello john!
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Recogiendo variables del environment, alguna en particular</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.option('--username', envvar='USERNAME')
def greet(username):
click.echo('Hello %s!' % username)
if __name__ == '__main__':
greet()
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ export USERNAME=john
$ greet
Hello john!
</code>
</pre>
</section>
<section>
<h1>Jugando con Options</h1>
<h2>Usando callbacks en las opciones</h2>
<pre>
<code class="python" data-trim>
def validate_rolls(ctx, param, value):
try:
rolls, dice = map(int, value.split('d', 2))
return (dice, rolls)
except ValueError:
raise click.BadParameter('rolls need to be in format NdM')
@click.command()
@click.option('--rolls', callback=validate_rolls, default='1d6')
def roll(rolls):
click.echo('Rolling a %d-sided dice %d time(s)' % rolls)
if __name__ == '__main__':
roll()
</code>
</pre>
<pre>
<code class="bash" data-trim>
roll --rolls=42
Usage: roll [OPTIONS]
Error: Invalid value for "--rolls": rolls need to be in format NdM
$ roll --rolls=2d12
Rolling a 12-sided dice 2 time(s)
</code>
</pre>
</section>
<section>
<h1>¿Jugamos con los argumentos?</h1>
</section>
<section>
<h1>Jugando con argumentos</h1>
<h2>Lo básico!</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.argument('filename')
def touch(filename):
click.echo(filename)
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ touch foo.txt
foo.txt
</code>
</pre>
</section>
<section>
<h1>Jugando con argumentos</h1>
<h2>Argumentos de número variable</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.argument('src', nargs=-1)
@click.argument('dst', nargs=1)
def copy(src, dst):
for fn in src:
click.echo('move %s to folder %s' % (fn, dst))
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ copy foo.txt bar.txt my_folder
move foo.txt to folder my_folder
move bar.txt to folder my_folder
</code>
</pre>
</section>
<section>
<h1>Jugando con argumentos</h1>
<h2>Argumentos de número variable</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.argument('input', type=click.File('rb'))
@click.argument('output', type=click.File('wb'))
def inout(input, output):
while True:
chunk = input.read(1024)
if not chunk:
break
output.write(chunk)
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ inout - hello.txt
hello
^D
$ inout hello.txt -
hello
</code>
</pre>
</section>
<section>
<h1>Jugando con argumentos</h1>
<h2>Argumentos con paths</h2>
<pre>
<code class="python" data-trim>
@click.command()
@click.argument('f', type=click.Path(exists=True))
def touch(f):
click.echo(click.format_filename(f))
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ touch hello.txt
hello.txt
$ touch missing.txt
Usage: touch [OPTIONS] F
Error: Invalid value for "f": Path "missing.txt" does not exist.
</code>
</pre>
</section>
<section>
<h1>¿Y ahora?</h1>
<div style="position: absolute; left: 10%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Documentación</li>
<li class="fragment" data-fragment-index="1">Entrada de usuario</li>
<li class="fragment" data-fragment-index="2">Utilidades</li>
</ul>
</div>
</section>
<section>
<h1>Documentación de comandos</h1>
<pre>
<code class="python" data-trim>
@click.command()
@click.argument('name')
def say_hello(name):
"""This script say hello to user NAME."""
click.echo('Hello %s!' % name)
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ say_hello --help
Usage: say_hello [OPTIONS] NAME
This script say hello to user NAME.
Options:
--help Show this message and exit.
</code>
</pre>
</section>
<section>
<h1>Documentación de comandos</h1>
<pre>
<code class="python" data-trim>
@click.group()
def cli():
"""A simple command line tool."""
@cli.command('init', short_help='init the repo')
def init():
"""Initializes the repository."""
@cli.command('delete', short_help='delete the repo')
def delete():
"""Deletes the repository."""
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ repo.py
Usage: repo.py [OPTIONS] COMMAND [ARGS]...
A simple command line tool.
Options:
--help Show this message and exit.
Commands:
delete delete the repo
init init the repo
</code>
</pre>
</section>
<section>
<h1>Entrada de usuarios</h1>
<pre>
<code class="python" data-trim>
value = click.prompt('Please enter a valid integer', type=int)
</code>
</pre>
<pre>
<code class="python" data-trim>
value = click.prompt('Please enter a number', default=42.0)
</code>
</pre>
</section>
<section>
<h1>Entrada de usuarios</h1>
<h3>(pedir confirmación de algo)</h3>
<pre>
<code class="python" data-trim>
if click.confirm('Do you want to continue?'):
click.echo('Well done!')
</code>
</pre>
<pre>
<code class="python" data-trim>
click.confirm('Do you want to continue?', abort=True)
</code>
</pre>
</section>
<section>
<h1>Utilidades</h1>
<h3>ANSI colorines!</h3>
<pre>
<code class="python" data-trim>
import click
click.echo('Hello World!')
click.echo('Hello World!', err=True)
click.secho('Hello World!', fg='green')
click.secho('Some more text', bg='blue', fg='white')
click.secho('ATTENTION', blink=True, bold=True)
</code>
</pre>
</section>
<section>
<h1>Utilidades</h1>
<h3>Paginación</h3>
<pre>
<code class="python" data-trim>
@click.command()
def less():
click.echo_via_pager('\n'.join('Line %d' % idx
for idx in range(200)))
</code>
</pre>
</section>
<section>
<h1>Utilidades</h1>
<h3>Lanzando editores</h3>
<pre>
<code class="python" data-trim>
import click
def get_commit_message():
MARKER = '# Everything below is ignored\n'
message = click.edit('\n\n' + MARKER)
if message is not None:
return message.split(MARKER, 1)[0].rstrip('\n')
</code>
</pre>
<pre>
<code class="python" data-trim>
click.edit(filename='/etc/passwd')
</code>
</pre>
</section>
<section>
<h1>Otras utilidades</h1>
<div style="position: absolute; left: 10%; top: 150px; width: 90%;" class="absolute-element">
<ul style="text-align: left; line-height=1.1em;">
<li class="fragment" data-fragment-index="0">Lanzar aplicaciones</li>
<li class="fragment" data-fragment-index="1">Barras de progreso</li>
<li class="fragment" data-fragment-index="2">Click para continuar</li>
<li class="fragment" data-fragment-index="3">Apertura de ficheros inteligente</li>
</ul>
</div>
</section>
<section>
<h1>Comandos y grupos de comandos!</h1>
<h3>(ahora viene lo divertido)</h3>
</section>
<section>
<h1>Pasando contextos a comandos anidados!</h1>
<pre>
<code class="python" data-trim>
@click.group()
@click.option('--debug/--no-debug', default=False)
@click.pass_context
def cli(ctx, debug):
ctx.obj['DEBUG'] = debug
@cli.command()
@click.pass_context
def sync(ctx):
click.echo('Debug is %s' % (ctx.obj['DEBUG'] and 'on' or 'off'))
if __name__ == '__main__':
cli(obj={})
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ cmd --debug sync
Debug is on
$ cmd sync
Debug is off
</code>
</pre>
</section>
<section>
<h1>Hackeando un comando</h1>
<h3>(Ojo! mueve el ratón que hay mas código abajo ;-) )</h3>
<pre>
<code class="python" data-trim>
import click
import os
plugin_folder = os.path.join(os.path.dirname(__file__), 'commands')
class MyCLI(click.MultiCommand):
def list_commands(self, ctx):
rv = []
for filename in os.listdir(plugin_folder):
if filename.endswith('.py'):
rv.append(filename[:-3])
rv.sort()
return rv
def get_command(self, ctx, name):
ns = {}
fn = os.path.join(plugin_folder, name + '.py')
with open(fn) as f:
code = compile(f.read(), fn, 'exec')
eval(code, ns, ns)
return ns['cli']
@click.command(cls=MyCLI)
def cli():
pass
</code>
</pre>
</section>
<section>
<h1>Mezclando multiples grupos de comandos</h1>
<pre>
<code class="python" data-trim>
import click
@click.group()
def cli1():
pass
@cli1.command()
def cmd1():
"""Command on cli1"""
@click.group()
def cli2():
pass
@cli2.command()
def cmd2():
"""Command on cli2"""
cli = click.CommandCollection(sources=[cli1, cli2])
if __name__ == '__main__':
cli()
</code>
</pre>
</section>
<section>
<h1>Encadenando multiples comandos</h1>
<pre>
<code class="python" data-trim>
@click.group(chain=True)
def cli():
pass
@cli.command('sdist')
def sdist():
click.echo('sdist called')
@cli.command('bdist_wheel')
def bdist_wheel():
click.echo('bdist_wheel called')
</code>
</pre>
<pre>
<code class="bash" data-trim>
$ setup.py sdist bdist_wheel
sdist called
bdist_wheel called
</code>
</pre>
</section>
<section>
<h1>Valores por defecto en contextos</h1>
<pre>
<code class="python" data-trim>
import click
CONTEXT_SETTINGS = dict(
default_map={'runserver': {'port': 5000}}
)
@click.group(context_settings=CONTEXT_SETTINGS)
def cli():
pass
@cli.command()
@click.option('--port', default=8000)
def runserver(port):
click.echo('Serving on http://127.0.0.1:%d/' % port)
if __name__ == '__main__':