Skip to content

Instantly share code, notes, and snippets.

@arulrajnet
arulrajnet / stockmarketindia.py
Last active December 29, 2022 17:56
Get the latest Index from BSE and NSE stock market. Python script using google finance open API http://finance.google.com/finance/info?client=ig&q=INDEXBOM:SENSEX
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from collections import namedtuple
import json
try:
from urllib.request import Request, urlopen
except ImportError: # python 2
from urllib2 import Request, urlopen
@epost
epost / gitweb_show_readme_markdown.pl
Created October 5, 2012 19:18
Show README.md as part of a project summary in Gitweb
# Convert README.md (Markdown file) to HTML and include in output #using external Markdown
if (!$prevent_xss) {
$file_name = "README.md";
my $proj_head_hash = git_get_head_hash($project);
my $readme_blob_hash = git_get_hash_by_path($proj_head_hash, "README.md", "blob");
if ($readme_blob_hash) { # if README.md exists
print "<div class=\"header\">readme</div>\n";
print "<div class=\"readme page_body\">"; # TODO find/create a better CSS class than page_body