Skip to content

Instantly share code, notes, and snippets.

View khrisparrales's full-sized avatar
:octocat:
Working from home

Khris Parrales khrisparrales

:octocat:
Working from home
View GitHub Profile
@khrisparrales
khrisparrales / tutorial_themoviedb.py
Created May 28, 2020 21:23 — forked from baderj/tutorial_themoviedb.py
Example how to use the API v3 of "The Movie Database" (themoviedb.org). Saves all available posters for the movie with IMDb id tt0095016 to the current folder, using the maximum available resolution.
import os
import requests
CONFIG_PATTERN = 'http://api.themoviedb.org/3/configuration?api_key={key}'
IMG_PATTERN = 'http://api.themoviedb.org/3/movie/{imdbid}/images?api_key={key}'
KEY = '<your_api_key>'
def _get_json(url):
r = requests.get(url)
return r.json()
@khrisparrales
khrisparrales / como-bajar-mi-proyecto.md
Created May 9, 2020 22:28 — forked from Nando98/como-bajar-mi-proyecto.md
Cómo bajar mi proyecto de GitHub y tenerlo de forma local en mi PC - Laptop

Cómo bajar mi proyecto de GitHub a mi PC o Laptop

Para instalar nuestro proyecto de forma local , utilizaremos los comandos básicos de la consola de Windows o CMD y de igual forma, los comandos básicos de Git.

¡EMPECEMOS!

  1. Nos vamos a nuestro perfil de GitHub y seleccionamos un proyecto. En mi caso lo llamaré web_example.

  2. Una vez dentro del proyecto, seleccionamos la opción de Clone or Download y copiamos la URL que nos aparece. Por ejemplo: https://github.com/usuario/web_example.git .