Skip to content

Instantly share code, notes, and snippets.

@raspberrypisig
Created March 22, 2024 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raspberrypisig/85cb3a3387dc94f53ffe620e82e1848d to your computer and use it in GitHub Desktop.
Save raspberrypisig/85cb3a3387dc94f53ffe620e82e1848d to your computer and use it in GitHub Desktop.
python cookiecutter template
import requests
resp = requests.get("http://example.com")
print(resp.text)
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "{{ cookiecutter.project_name }}"
version = "0.0.1"
requires-python = "=={{ cookiecutter.python }}.*"
dependencies = [
"requests"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment