-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipes.json
More file actions
executable file
·4456 lines (4456 loc) · 122 KB
/
recipes.json
File metadata and controls
executable file
·4456 lines (4456 loc) · 122 KB
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
{
"drinks": [
{
"idDrink": "13060",
"strDrink": "Margarita",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": "Contemporary Classics",
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "Rub the rim of the glass with the lime slice to make the salt stick to it. Take care to moisten only the outer rim and sprinkle the salt on it. The salt should present to the lips of the imbiber and never mix into the cocktail. Shake the other ingredients with ice, then carefully pour into the glass.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/wpxpvu1439905379.jpg",
"strIngredient1": "Tequila",
"strIngredient2": "Triple sec",
"strIngredient3": "Lime juice",
"strIngredient4": "Salt",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "45 ml ",
"strMeasure2": "15 ml ",
"strMeasure3": "30 ml ",
"strMeasure4": "",
"strMeasure5": "",
"strMeasure6": "",
"strMeasure7": "",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-08-18 14:42:59"
},
{
"idDrink": "11118",
"strDrink": "Blue Margarita",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "Rub rim of cocktail glass with lime juice. Dip rim in coarse salt. Shake tequila, blue curacao, and lime juice with ice, strain into the salt-rimmed glass, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/qtvvyq1439905913.jpg",
"strIngredient1": "Tequila",
"strIngredient2": "Blue Curacao",
"strIngredient3": "Lime juice",
"strIngredient4": "Salt",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "45 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "30 ml ",
"strMeasure4": "Coarse ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-08-18 14:51:53"
},
{
"idDrink": "17216",
"strDrink": "Tommy's Margarita",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": "New Era Drinks",
"strAlcoholic": "Alcoholic",
"strGlass": "Old-Fashioned glass",
"strInstructions": "Shake and strain into a chilled cocktail glass.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/loezxn1504373874.jpg",
"strIngredient1": "Tequila",
"strIngredient2": "Lime Juice",
"strIngredient3": "Agave syrup",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "4.5 cl",
"strMeasure2": "1.5 cl",
"strMeasure3": "2 spoons",
"strMeasure4": "",
"strMeasure5": "",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-02 18:37:54"
},
{
"idDrink": "16158",
"strDrink": "Whitecap Margarita",
"strVideo": null,
"strCategory": "Other/Unknown",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Margarita/Coupette glass",
"strInstructions": "Place all ingredients in a blender and blend until smooth. This makes one drink.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/srpxxp1441209622.jpg",
"strIngredient1": "Ice",
"strIngredient2": "Tequila",
"strIngredient3": "Cream of coconut",
"strIngredient4": "Lime juice",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "1 cup ",
"strMeasure2": "60 ml ",
"strMeasure3": "1/4 cup ",
"strMeasure4": "3 tblsp fresh ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-09-02 17:00:22"
},
{
"idDrink": "12322",
"strDrink": "Strawberry Margarita",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "Rub rim of cocktail glass with lemon juice and dip rim in salt. Shake schnapps, tequila, triple sec, lemon juice, and strawberries with ice, strain into the salt-rimmed glass, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/tqyrpw1439905311.jpg",
"strIngredient1": "Strawberry schnapps",
"strIngredient2": "Tequila",
"strIngredient3": "Triple sec",
"strIngredient4": "Lemon juice",
"strIngredient5": "Strawberries",
"strIngredient6": "Salt",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "15 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "15 ml ",
"strMeasure4": "30 ml ",
"strMeasure5": "30 ml ",
"strMeasure6": "\n",
"strMeasure7": "\n",
"strMeasure8": "\n",
"strMeasure9": "\n",
"strMeasure10": "\n",
"strMeasure11": "\n",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-08-18 14:41:51"
},
{
"idDrink": "11410",
"strDrink": "Gin Fizz",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": "Unforgettables",
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "Shake all ingredients with ice cubes, except soda water. Pour into glass. Top with soda water.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/xhl8q31504351772.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Lemon",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Carbonated water",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "Juice of 1/2 ",
"strMeasure3": "1 tsp ",
"strMeasure4": "",
"strMeasure5": "",
"strMeasure6": "",
"strMeasure7": "",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-02 12:29:32"
},
{
"idDrink": "11417",
"strDrink": "Gin Sour",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Whiskey sour glass",
"strInstructions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a sour glass and garnish with the orange slice and the cherry.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/mt7l7m1504883523.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Lemon juice",
"strIngredient3": "Sugar",
"strIngredient4": "Orange",
"strIngredient5": "Maraschino cherry",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "1/2 tsp superfine ",
"strMeasure4": "1 ",
"strMeasure5": "1 ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 16:12:03"
},
{
"idDrink": "11936",
"strDrink": "Pink Gin",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "White wine glass",
"strInstructions": "Pour the bitters into a wine glass. Swirl the glass to coat the inside with the bitters, shake out the excess. Pour the gin into the glass. Do not add ice.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/qyr51e1504888618.jpg",
"strIngredient1": "Bitters",
"strIngredient2": "Gin",
"strIngredient3": "",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "3 dashes ",
"strMeasure2": "60 ml ",
"strMeasure3": " ",
"strMeasure4": " ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 17:36:58"
},
{
"idDrink": "11408",
"strDrink": "Gin Daisy",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Old-fashioned glass",
"strInstructions": "In a shaker half-filled with ice cubes, combine the wine, lemon juice, sugar, and grenadine. Shake well. Pour into an old-fashioned glass and garnish with the cherry and the orange slice.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/qwxysv1478819943.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Lemon juice",
"strIngredient3": "Sugar",
"strIngredient4": "Grenadine",
"strIngredient5": "Maraschino cherry",
"strIngredient6": "Orange",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "1/2 tsp superfine ",
"strMeasure4": "1/2 tsp ",
"strMeasure5": "1 ",
"strMeasure6": "1 ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": " ",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2016-11-10 23:19:04"
},
{
"idDrink": "11415",
"strDrink": "Gin Sling",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Old-fashioned glass",
"strInstructions": "Dissolve powdered sugar in mixture of water and juice of lemon. Add gin. Pour into an old-fashioned glass over ice cubes and stir. Add the twist of orange peel and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/h8wmm41504883440.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Lemon",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Water",
"strIngredient5": "Orange peel",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "Juice of 1/2 ",
"strMeasure3": "1 tsp ",
"strMeasure4": "1 tsp ",
"strMeasure5": "Twist of ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 16:10:40"
},
{
"idDrink": "11416",
"strDrink": "Gin Smash",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Old-fashioned glass",
"strInstructions": "Muddle sugar with carbonated water and mint sprigs in an old-fashioned glass. Add gin and 1 ice cube. Stir, add the orange slice and the cherry, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/hp41fi1504883656.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Carbonated water",
"strIngredient3": "Sugar",
"strIngredient4": "Mint",
"strIngredient5": "Orange",
"strIngredient6": "Cherry",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "1 cube ",
"strMeasure4": "4 ",
"strMeasure5": "1 slice ",
"strMeasure6": "1 ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": " ",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 16:14:16"
},
{
"idDrink": "11420",
"strDrink": "Gin Toddy",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Old-fashioned glass",
"strInstructions": "Mix powdered sugar and water in an old-fashioned glass. Add gin and one ice cube. Stir, add the twist of lemon peel, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/l9gi5h1504820724.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Water",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Lemon peel",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "2 tsp ",
"strMeasure3": "1/2 tsp ",
"strMeasure4": "1 twist of ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-07 22:45:24"
},
{
"idDrink": "11407",
"strDrink": "Gin Cooler",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Collins glass",
"strInstructions": "Stir powdered sugar and 60 ml. carbonated water in a collins glass. Fill glass with ice and add gin. Fill with carbonated water and stir. Add the lemon peel and the orange spiral so that the end of the orange spiral dangles over rim of glass.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/wsyrvv1478820109.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Carbonated water",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Orange spiral",
"strIngredient5": "Lemon peel",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "\n",
"strMeasure3": "\n",
"strMeasure4": "\n",
"strMeasure5": "\n",
"strMeasure6": "\n",
"strMeasure7": "\n",
"strMeasure8": "\n",
"strMeasure9": "\n",
"strMeasure10": "\n",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2016-11-10 23:21:49"
},
{
"idDrink": "11418",
"strDrink": "Gin Squirt",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "Stir gin, grenadine, and powdered sugar with ice and strain into a highball glass over ice cubes. Fill with carbonated water and stir. Decorate with the pineapple chunks and the strawberries and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/xrbhz61504883702.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Grenadine",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Pineapple",
"strIngredient5": "Strawberries",
"strIngredient6": "Carbonated water",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "45 ml ",
"strMeasure2": "1 tsp ",
"strMeasure3": "1 tblsp ",
"strMeasure4": "3 chunks ",
"strMeasure5": "2 ",
"strMeasure6": "\n",
"strMeasure7": "\n",
"strMeasure8": "\n",
"strMeasure9": "\n",
"strMeasure10": "\n",
"strMeasure11": "\n",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 16:15:02"
},
{
"idDrink": "17230",
"strDrink": "Gin Rickey",
"strVideo": null,
"strCategory": "Cocktail",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "Half-fill a tall glass with ice. Mix the gin and Grenadine together and pour over the ice. Add the lime or lemon juice and top off with soda water. Decorate the glass with lime and/or lemon slices.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/s00d6f1504883945.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Grenadine",
"strIngredient3": "lemon",
"strIngredient4": "Soda Water",
"strIngredient5": "Lime",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": null,
"strIngredient9": null,
"strIngredient10": null,
"strIngredient11": null,
"strIngredient12": null,
"strIngredient13": null,
"strIngredient14": null,
"strIngredient15": null,
"strMeasure1": "60 ml ",
"strMeasure2": "1 tsp ",
"strMeasure3": "Juice of 1/2 ",
"strMeasure4": "Top up with",
"strMeasure5": "Garnish",
"strMeasure6": "\r\n",
"strMeasure7": "\r\n",
"strMeasure8": null,
"strMeasure9": null,
"strMeasure10": null,
"strMeasure11": null,
"strMeasure12": null,
"strMeasure13": null,
"strMeasure14": null,
"strMeasure15": null,
"dateModified": "2017-09-08 16:19:05"
},
{
"idDrink": "11419",
"strDrink": "Gin Swizzle",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "In a shaker half-filled with ice cubes, combine the lime juice, sugar, gin, and bitters. Shake well. Almost fill a colling glass with ice cubes. Stir until the glass is frosted. Strain the mixture in the shaker into the glass and add the club soda.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/sybce31504884026.jpg",
"strIngredient1": "Lime juice",
"strIngredient2": "Sugar",
"strIngredient3": "Gin",
"strIngredient4": "Bitters",
"strIngredient5": "Club soda",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "45 ml ",
"strMeasure2": "1 tsp superfine ",
"strMeasure3": "60 ml ",
"strMeasure4": "1 dash ",
"strMeasure5": "3 oz ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 16:20:26"
},
{
"idDrink": "11403",
"strDrink": "Gin And Tonic",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "Pour the gin and the tonic water into a highball glass almost filled with ice cubes. Stir well. Garnish with the lime wedge.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/wtyxvx1472405831.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Tonic water",
"strIngredient3": "Lime",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "150 ml ",
"strMeasure3": "1 ",
"strMeasure4": " ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2016-08-28 18:37:11"
},
{
"idDrink": "12057",
"strDrink": "Royal Gin Fizz",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Highball glass",
"strInstructions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/pe1x1c1504735672.jpg",
"strIngredient1": "Gin",
"strIngredient2": "Lemon",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Egg",
"strIngredient5": "Carbonated water",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "Juice of 1/2 ",
"strMeasure3": "1 tsp ",
"strMeasure4": "1 whole ",
"strMeasure5": "\n",
"strMeasure6": "\n",
"strMeasure7": "\n",
"strMeasure8": "\n",
"strMeasure9": "\n",
"strMeasure10": "\n",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-06 23:07:52"
},
{
"idDrink": "12224",
"strDrink": "Sloe Gin Cocktail",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/d7mo481504889531.jpg",
"strIngredient1": "Sloe gin",
"strIngredient2": "Dry Vermouth",
"strIngredient3": "Orange bitters",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "1/4 tsp ",
"strMeasure3": "1 dash ",
"strMeasure4": " ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-08 17:52:12"
},
{
"idDrink": "12718",
"strDrink": "Pineapple Gingerale Smoothie",
"strVideo": null,
"strCategory": "Other/Unknown",
"strIBA": null,
"strAlcoholic": "Non alcoholic",
"strGlass": "Highball Glass",
"strInstructions": "Throw everything into a blender and liquify.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/eg9i1d1487603469.jpg",
"strIngredient1": "Ginger",
"strIngredient2": "Pineapple",
"strIngredient3": "",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "1/4 inch ",
"strMeasure2": "1/2 ",
"strMeasure3": " ",
"strMeasure4": " ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-02-20 15:11:09"
},
{
"idDrink": "12516",
"strDrink": "Whiskey Sour",
"strVideo": null,
"strCategory": "Ordinary Drink",
"strIBA": "Unforgettables",
"strAlcoholic": "Alcoholic",
"strGlass": "Old-fashioned glass",
"strInstructions": "Shake with ice. Strain into chilled glass, garnish and serve. If served 'On the rocks', strain ingredients into old-fashioned glass filled with ice.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/o56h041504352725.jpg",
"strIngredient1": "Blended whiskey",
"strIngredient2": "Lemon",
"strIngredient3": "Powdered sugar",
"strIngredient4": "Cherry",
"strIngredient5": "Lemon",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "Juice of 1/2 ",
"strMeasure3": "1/2 tsp ",
"strMeasure4": "1 ",
"strMeasure5": "1/2 slice ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": " ",
"strMeasure10": " ",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2017-09-02 12:45:25"
},
{
"idDrink": "13214",
"strDrink": "Pisco Sour",
"strVideo": null,
"strCategory": "Cocktail",
"strIBA": "New Era Drinks",
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "Vigorously shake and strain contents in a cocktail shaker with ice cubes, then pour into glass and garnish with bitters.[1]",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/tsssur1439907622.jpg",
"strIngredient1": "Pisco",
"strIngredient2": "Lemon juice",
"strIngredient3": "Sugar",
"strIngredient4": "Ice",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "60 ml ",
"strMeasure2": "30 ml ",
"strMeasure3": "1-2 tblsp ",
"strMeasure4": "",
"strMeasure5": "",
"strMeasure6": "",
"strMeasure7": "",
"strMeasure8": "",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-08-18 15:20:22"
},
{
"idDrink": "13936",
"strDrink": "Miami Vice",
"strVideo": null,
"strCategory": "Cocktail",
"strIBA": null,
"strAlcoholic": "Alcoholic",
"strGlass": "Cocktail glass",
"strInstructions": "First: Mix pina colada with 2.5 oz. of rum with ice(set aside). Second: Mix daiquiri with 2.5 oz. of rum with ice. Third: While frozen, add pina colda mix then daiquiri mix in glass (Making sure they do not get mixed together).",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/qvuyqw1441208955.jpg",
"strIngredient1": "151 proof rum",
"strIngredient2": "Pina colada mix",
"strIngredient3": "Daiquiri mix",
"strIngredient4": "",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "5 oz Bacardi ",
"strMeasure2": "frozen ",
"strMeasure3": "frozen ",
"strMeasure4": " ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",
"strMeasure8": " ",
"strMeasure9": "",
"strMeasure10": "",
"strMeasure11": "",
"strMeasure12": "",
"strMeasure13": "",
"strMeasure14": "",
"strMeasure15": "",
"dateModified": "2015-09-02 16:49:15"
},
{
"idDrink": "12770",
"strDrink": "Iced Coffee",
"strVideo": null,
"strCategory": "Coffee / Tea",
"strIBA": null,
"strAlcoholic": "Non alcoholic",
"strGlass": "Coffee mug",
"strInstructions": "Mix together until coffee and sugar is dissolved. Add milk. Shake well. Using a blender or milk shake maker produces a very foamy drink. Serve in coffee mug.",
"strDrinkThumb": "https://www.thecocktaildb.com/images/media/drink/ytprxy1454513855.jpg",
"strIngredient1": "Coffee",
"strIngredient2": "Sugar",
"strIngredient3": "Water",
"strIngredient4": "Milk",
"strIngredient5": "",
"strIngredient6": "",
"strIngredient7": "",
"strIngredient8": "",
"strIngredient9": "",
"strIngredient10": "",
"strIngredient11": "",
"strIngredient12": "",
"strIngredient13": "",
"strIngredient14": "",
"strIngredient15": "",
"strMeasure1": "1/4 cup instant ",
"strMeasure2": "1/4 cup ",
"strMeasure3": "1/4 cup hot ",
"strMeasure4": "4 cups cold ",
"strMeasure5": " ",
"strMeasure6": " ",
"strMeasure7": " ",