Skip to content

Instantly share code, notes, and snippets.

@digitronik
digitronik / release.py
Created December 20, 2019 11:45
Release Script
import re
from collections import namedtuple
from datetime import date
from datetime import timedelta
from dateutil import parser
from operator import attrgetter
import requests
@ibrahim12
ibrahim12 / .pypirc
Created March 17, 2015 21:57
.pypirc sample
[distutils] # this tells distutils what package indexes you can push to
index-servers =
pypi
pypitest
[pypi]
repository: https://pypi.python.org/pypi
username: your_username
password: your_password
@tedheich
tedheich / todosqlite.py
Created October 21, 2009 13:19
A simple command line todo list using SQLite and Python
#! /sw/bin/python
# filename: todosqlite.py
# author: ted heich
# blog: http://fornoobs.info
#
# A simple todo list app using Python and sqlite using the cmd line interface
#
#from pysqlite2 import dbapi2 as sqlite
import pysqlite2.dbapi2 as sqlite