Skip to content

Instantly share code, notes, and snippets.

View aditnryn's full-sized avatar

Aditya Narayan aditnryn

View GitHub Profile
@aditnryn
aditnryn / markdownify.py
Created August 5, 2015 16:21
Markdownify Tutorials at www.robotix.in
from __future__ import print_function
import os
import requests
with open('urls.txt', 'r') as urls:
for url in urls:
category, tut = url.split('/')

Introduction

AMY is a web-based workshop administration application for Software Carpentry and related projects. Its target audience is workshop coordinators, most of whom are non-programmers, who need to keep track of what workshops are being arranged, when they're supposed to occur, who's teaching what, and so on.

AMY was extended to support PyData conferences and allow PyData conference cordinators to keep track of conference sites and their speakers.

Prerequisites and Goals