Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "code",
  5. "execution_count": 1,
  6. "metadata": {
  7. "scrolled": false
  8. },
  9. "outputs": [],
  10. "source": [
  11. "from google_images_download import google_images_download"
  12. ]
  13. },
  14. {
  15. "cell_type": "code",
  16. "execution_count": 2,
  17. "metadata": {},
  18. "outputs": [],
  19. "source": [
  20. "response = google_images_download.googleimagesdownload()\n",
  21. "\n",
  22. "arguments = {\n",
  23. " \"keywords\" : \"pikachu,charmander,mewto,squirtle,bulbasaur\",\n",
  24. " \"limit\":200,\n",
  25. " \"print_urls\":True\n",
  26. "}\n",
  27. "\n",
  28. "paths = response.download(arguments)"
  29. ]
  30. }
  31. ],
  32. "metadata": {
  33. "kernelspec": {
  34. "display_name": "Python 3",
  35. "language": "python",
  36. "name": "python3"
  37. },
  38. "language_info": {
  39. "codemirror_mode": {
  40. "name": "ipython",
  41. "version": 3
  42. },
  43. "file_extension": ".py",
  44. "mimetype": "text/x-python",
  45. "name": "python",
  46. "nbconvert_exporter": "python",
  47. "pygments_lexer": "ipython3",
  48. "version": "3.6.7"
  49. }
  50. },
  51. "nbformat": 4,
  52. "nbformat_minor": 2
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement