Skip to content

Instantly share code, notes, and snippets.

@rchacon
Last active August 4, 2016 03:59
Show Gist options
  • Select an option

  • Save rchacon/1ab506bd70eee3f76cfd7c5985b3de4b to your computer and use it in GitHub Desktop.

Select an option

Save rchacon/1ab506bd70eee3f76cfd7c5985b3de4b to your computer and use it in GitHub Desktop.
"""
Scrape shows from http://www.thechapelsf.com/music/
Usage:
$ python chapelsf.py
Sample output:
[ { 'artist': 'Emily King',
'show_date': 'Wed 8/03 Doors: 8:00 pm / Show: 9:00 pm',
'sold_out': True,
'ticket_price': '\n$20 adv / $22 door\t ',
'ticket_url': 'http://www.thechapelsf.com/music//event/1151171-emily-king-san-francisco/'},
{ 'artist': "Sinner's Happy Hour with Ted Savarese and the TedTones",
'show_date': 'Thu 8/04 5:00 pm / ',
'sold_out': False,
'ticket_price': None,
'ticket_url': 'http://www.thechapelsf.com/music//event/1261079-sinners-happy-hour-ted-san-francisco/'},
...]
"""
import sys
from bs4 import BeautifulSoup
import requests
URL = 'http://www.thechapelsf.com/music/'
def get_markup():
resp = requests.get(URL)
if not resp.ok:
sys.exit('HTTP status received {}'.format(resp.status_code))
return resp.text
def parse_shows(markup):
soup = BeautifulSoup(markup, 'html.parser')
music_listings = soup.find_all(attrs={'class': 'list-view-item'})
shows = []
for music_listing in music_listings:
artist = music_listing.find(attrs={'class': 'headliners'}).find('a').text
show_date = music_listing.find(attrs={'class': 'dates'}).text
door_time = music_listing.find(attrs={'class': 'times'}).find('span').text
show_time = music_listing.find(attrs={'class': 'times'}).find_all('span')[1].text
ticket_price_tag = music_listing.find(attrs={'class': 'ticket-price'}).find(attrs={'class': 'price-range'})
if ticket_price_tag:
ticket_price = ticket_price_tag.text
else:
ticket_price = None
sold_out_tag = music_listing.find(attrs={'class': 'ticket-price'}).find(attrs={'class': 'sold-out'})
if sold_out_tag:
sold_out = True
else:
sold_out = False
ticket_url = music_listing.find(attrs={'class': 'headliners'}).find('a')['href']
shows.append({
'artist': artist,
'show_date': '{} {} / {}'.format(show_date, door_time, show_time),
'ticket_price': ticket_price,
'sold_out': sold_out,
'ticket_url': '{}{}'.format(URL, ticket_url)
})
return shows
def main():
markup = get_markup()
return parse_shows(markup)
if __name__ == '__main__':
import pprint
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(main())
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if IE 8]> <html class="lt-ie9" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <!--<![endif]-->
<head>
<!-- Google webfonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Noto+Serif:400,700' rel='stylesheet' type='text/css'>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[(new Date).getTime()].concat(u(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(2),u=t(3),c=t("ee").get("tracer"),f=NREUM;"undefined"==typeof window.newrelic&&(newrelic=f);var s=["setPageViewName","setCustomAttribute","finished","addToTrace","inlineHit"],p="api-",l=p+"ixn-";a(s,function(t,e){f[e]=o(p+e,!0,"api")}),f.addPageAction=o(p+"addPageAction",!0),e.exports=newrelic,f.interaction=function(){return(new r).get()};var d=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(l+"tracer",[Date.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[Date.now(),r,o],n),o)try{return e.apply(this,arguments)}finally{c.emit("fn-end",[Date.now()],n)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){d[e]=o(l+e)}),newrelic.noticeError=function(t){"string"==typeof t&&(t=new Error(t)),i("err",[t,(new Date).getTime()])}},{}],2:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],3:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?u(t,a,i):i()}function n(n,r,o){t&&t(n,r,o);for(var i=e(o),a=l(n),u=a.length,c=0;c<u;c++)a[c].apply(i,r);var s=f[m[n]];return s&&s.push([w,n,r,i]),i}function p(t,e){g[t]=l(t).concat(e)}function l(t){return g[t]||[]}function d(t){return s[t]=s[t]||o(n)}function v(t,e){c(t,function(t,n){e=e||"feature",m[n]=e,e in f||(f[e]=[])})}var g={},m={},w={on:p,emit:n,get:d,listeners:l,context:e,buffer:v};return w}function i(){return new r}var a="nr@context",u=t("gos"),c=t(2),f={},s={},p=e.exports=o();p.backlog=f},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!h++){var t=y.info=NREUM.info,e=s.getElementsByTagName("script")[0];if(t&&t.licenseKey&&t.applicationID&&e){c(m,function(e,n){t[e]||(t[e]=n)});var n="https"===g.split(":")[0]||t.sslForHttp;y.proto=n?"https://":"http://",u("mark",["onload",a()],null,"api");var r=s.createElement("script");r.src=y.proto+t.agent,e.parentNode.insertBefore(r,e)}}}function o(){"complete"===s.readyState&&i()}function i(){u("mark",["domContent",a()],null,"api")}function a(){return(new Date).getTime()}var u=t("handle"),c=t(2),f=window,s=f.document,p="addEventListener",l="attachEvent",d=f.XMLHttpRequest,v=d&&d.prototype;NREUM.o={ST:setTimeout,CT:clearTimeout,XHR:d,REQ:f.Request,EV:f.Event,PR:f.Promise,MO:f.MutationObserver},t(1);var g=""+location,m={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-963.min.js"},w=d&&v&&v[p]&&!/CriOS/.test(navigator.userAgent),y=e.exports={offset:a(),origin:g,features:{},xhrWrappable:w};s[p]?(s[p]("DOMContentLoaded",i,!1),f[p]("load",r,!1)):(s[l]("onreadystatechange",o),f[l]("onload",r)),u("mark",["firstbyte",a()],null,"api");var h=0},{}]},{},["loader"]);</script>
<meta name="description" content="The Chapel is a converted mortuary built in 1914 which has been renovated into a live music venue, restaurant and neighborhood bar in the heart of San Francisco&#039;s Mission District." />
<!-- Used with responsive design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>San Francisco’s premier venue for exciting music, dining, and private events</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="alternate" type="application/rss+xml" title="The Chapel RSS Feed" href="http://www.thechapelsf.com/feed/" />
<link rel="pingback" href="http://www.thechapelsf.com/xmlrpc.php" />
<link rel="shortcut icon" href="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/favicon.ico">
<!-- Include stylesheet files -->
<link rel="stylesheet" href="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/css/framework.css" type="text/css" media="screen" />
<link rel="stylesheet" href="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/icons/social.css" type="text/css" />
<link rel="stylesheet" href="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/js/accordion/vallenato.css" type="text/css" media="screen" />
<link rel="stylesheet" href="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/style.css" type="text/css" media="screen" />
<style type="text/css">
body {
background: url(http://www.thechapelsf.com/files/2012/09/Chapel_Header23.jpg) #1a1a1a no-repeat top center;
}
</style>
<script>
dataLayer = [
{
"tfgaid": "UA-34393790-24"
}
]
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TWWLNB');</script>
<!-- End Google Tag Manager -->
<!-- All in One SEO Pack 2.2.7.5 by Michael Torbert of Semper Fi Web Designob_start_detected [-1,-1] -->
<link rel="canonical" href="http://www.thechapelsf.com/" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-63309035-1']);
_gaq.push(['_setDomainName', 'www.thechapelsf.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- /all in one seo pack -->
<script type="text/javascript">//<![CDATA[
// Google Analytics - Ticketfly v1
var _gaq = _gaq || [];
_gaq.push(['_setAccount','UA-34393790-24']);
_gaq.push(['_trackEvent', 'geoip', 'United States', 'location']);
_gaq.push(['_trackPageview']);
_gaq.push(['ec._setAccount', 'UA-6580485-30'],['ec._setDomainName', 'none'],['ec._setAllowLinker', true],['ec._setAllowHash', false],['ec._trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
// End of Google Analytics - Ticketfly
//]]></script>
<link rel="alternate" type="application/rss+xml" href="http://www.ticketfly.com/api/events/upcoming.rss?venueId=5519,6879,19669" title="Upcoming Shows RSS feed" />
<link rel="alternate" type="application/rss+xml" href="http://www.ticketfly.com/api/events/justAnnounced.rss?venueId=5519,6879,19669" title="Just Announced Shows RSS feed" />
<link rel="profile" href="http://microformats.org/profile/hcalendar" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"http:\/\/www.thechapelsf.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.4.2"}};
!function(a,b,c){function d(a){var c,d=b.createElement("canvas"),e=d.getContext&&d.getContext("2d"),f=String.fromCharCode;return e&&e.fillText?(e.textBaseline="top",e.font="600 32px Arial","flag"===a?(e.fillText(f(55356,56806,55356,56826),0,0),d.toDataURL().length>3e3):"diversity"===a?(e.fillText(f(55356,57221),0,0),c=e.getImageData(16,16,1,1).data.toString(),e.fillText(f(55356,57221,55356,57343),0,0),c!==e.getImageData(16,16,1,1).data.toString()):("simple"===a?e.fillText(f(55357,56835),0,0):e.fillText(f(55356,57135),0,0),0!==e.getImageData(16,16,1,1).data[0])):!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g;c.supports={simple:d("simple"),flag:d("flag"),unicode8:d("unicode8"),diversity:d("diversity")},c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.simple&&c.supports.flag&&c.supports.unicode8&&c.supports.diversity||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="sitemap" type="application/xml" title="Sitemap" href="http://www.thechapelsf.com/sitemap.xml" />
<link rel='stylesheet' id='fbComments_hideWpComments-css' href='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-facebook/css/facebook-comments-hidewpcomments.css?ver=3.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='fbComments_displayRsvpCss-css' href='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-facebook/css/facebook-rsvp.css?ver=3.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='fbc_rc_widgets-style-css' href='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-facebook/css/facebook-comments-widgets.css?ver=4.4.2' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='https://cdn.ticketfly.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.3.1' type='text/css' media='all' />
<link rel='stylesheet' id='fancybox-css' href='https://cdn.ticketfly.com/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.7.min.css?ver=1.5.7' type='text/css' media='screen' />
<link rel='stylesheet' id='tflyStyleSheets-css' href='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-cms/style.css?ver=1.07.8' type='text/css' media='all' />
<link rel='stylesheet' id='tflyHideStyleSheets-css' href='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-cms/css/tfly-hide.css?ver=1.00' type='text/css' media='all' />
<script type='text/javascript'>
/* <![CDATA[ */
var TflyFBAjax = {"ajaxurl":"\/\/www.thechapelsf.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/jquery.js?ver=1.11.3'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/resizable.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/draggable.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/button.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/position.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/jquery/ui/dialog.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-content/plugins/ticketfly-cms/js/tfly.js?ver=1.5.1'></script>
<link rel='https://api.w.org/' href='http://www.thechapelsf.com/wp-json/' />
<meta property='og:title' content='The Chapel' />
<meta property='og:site_name' content='The Chapel' />
<meta property='og:url' content='http://www.thechapelsf.com/music/' />
<meta property='og:type' content='website' />
<meta property='fb:app_id' content='543462165670534' />
<!-- Easy FancyBox 1.5.7 using FancyBox 1.3.7 - RavanH (http://status301.net/wordpress-plugins/easy-fancybox/) -->
<script type="text/javascript">
/* <![CDATA[ */
var fb_timeout = null;
var fb_opts = { 'overlayShow' : true, 'hideOnOverlayClick' : true, 'overlayOpacity' : 0.6, 'overlayColor' : '#000', 'showCloseButton' : true, 'centerOnScroll' : true, 'enableEscapeButton' : true, 'autoScale' : true };
var easy_fancybox_handler = function(){
/* IMG */
var fb_IMG_select = 'a[href*=".jpeg"]:not(.nofancybox,.pin-it-button):not(:empty), area[href*=".jpeg"]:not(.nofancybox):not(:empty), a[href*=".jpg"]:not(.nofancybox,.pin-it-button):not(:empty), area[href*=".jpg"]:not(.nofancybox):not(:empty), a[href*=".gif"]:not(.nofancybox,.pin-it-button):not(:empty), area[href*=".gif"]:not(.nofancybox):not(:empty), a[href*=".png"]:not(.nofancybox,.pin-it-button):not(:empty), area[href*=".png"]:not(.nofancybox):not(:empty)';
jQuery(fb_IMG_select).addClass('fancybox image').attr('rel', 'gallery');
jQuery('a.fancybox, area.fancybox, li.fancybox a:not(li.nofancybox a)').fancybox( jQuery.extend({}, fb_opts, { 'easingIn' : 'linear', 'easingOut' : 'easeInBack', 'opacity' : false, 'hideOnContentClick' : false, 'titleShow' : true, 'titlePosition' : 'over', 'titleFromAlt' : true, 'showNavArrows' : true, 'enableKeyboardNav' : true, 'cyclic' : false }) );
/* PDF */
jQuery('a[href*=".pdf"]:not(.nofancybox):not(:empty), area[href*=".pdf"]:not(.nofancybox):not(:empty)').addClass('fancybox-pdf');
jQuery('a.fancybox-pdf, area.fancybox-pdf, li.fancybox-pdf a:not(li.nofancybox a)').fancybox( jQuery.extend({}, fb_opts, { 'type' : 'html', 'width' : '90%', 'height' : '90%', 'padding' : 10, 'titleShow' : false, 'titlePosition' : 'float', 'titleFromAlt' : true, 'autoDimensions' : false, 'scrolling' : 'no', 'onStart' : function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = '<embed src="' + selectedArray[selectedIndex].href + '#toolbar=1&navpanes=0&nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%" />' } }) );
}
/* ]]> */
</script>
<style type="text/css">
#fancybox-overlay{background-attachment:fixed;background-image:url("http://www.thechapelsf.com/wp-content/plugins/easy-fancybox/light-mask.png");background-position:center;background-repeat:no-repeat;background-size:cover;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="https://cdn.ticketfly.com/wp-content/plugins/easy-fancybox/light-mask.png",sizingMethod="scale");-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://cdn.ticketfly.com/wp-content/plugins/easy-fancybox/light-mask.png',sizingMethod='scale')";}
</style>
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]-->
</head>
<!-- Activity name for this tag: Daily Visits - 11/7/14 -->
<!-- URL of the webpage where the tag will be placed: http://www.thechapelsf.com/vestry-restaurant/ -->
<script type="text/javascript">
var axel = Math.random()+"";
var a = axel * 10000000000000;
document.write('<img src="http://pubads.g.doubleclick.net/activity;xsp=95963;ord=1;num='+ a +'?" width=1 height=1 border=0/>');
</script>
<noscript>
<img src="http://pubads.g.doubleclick.net/activity;xsp=95963;ord=1;num=1?" width=1 height=1 border=0/>
</noscript>
<!-- Activity name for this tag: Page Views - 11/7/14 -->
<!-- URL of the webpage where the tag will be placed: http://www.thechapelsf.com/vestry-restaurant/ -->
<script type="text/javascript">
var axel = Math.random()+"";
var a = axel * 10000000000000;
document.write('<img src="http://pubads.g.doubleclick.net/activity;xsp=96083;ord='+ a +'?" width=1 height=1 border=0/>');
</script>
<noscript>
<img src="http://pubads.g.doubleclick.net/activity;xsp=96083;ord=1?" width=1 height=1 border=0/>
</noscript>
<body class="home page page-id-114 page-parent page-template-default">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<header class="masthead">
<div class="row">
<div class="twelve columns">
<div class="top-bar">
<div class="row">
<div class="eight columns">
<div class="address-line">
777 Valencia Street San Francisco, CA 94110 - <a href="http://www.thechapelsf.com/contact/">Map</a>
</div>
</div>
<div class="four columns email-sub text-right">
<a class="email-sub-btn" href="#">Subscribe here for updates! <span>&#9660;</span></a>
<div class="email-sub-drop">
<h3>Discover exciting new shows, new menu items, and other special events!</h3> <div class="textwidget"><h4>Subscribe to music venue news</h4>
<div class="tfly-email-subscribe">
<form action="https://www.ticketfly.com/account/emailSignup" class="signup-form" method="get">
<input type="hidden" value="1695" name="orgId">
<input type="text" class="tfly-email-subscribe-text" name="email" value="" placeholder="Enter your email" >
<input type="submit" class="tfly-email-subscribe-submit" value="Subscribe" name="mysubmit">
</form>
</div>
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="http://thechapelsf.us7.list-manage1.com/subscribe/post?u=3d102d47b5ad1702840f64683&amp;id=d565e74e38" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate clearfix" target="_blank" novalidate>
<h4>Subscribe to restaurant & bar news</h4>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Enter your email" required>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button alert radius small">
</form>
</div>
<!--End mc_embed_signup--></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="twelve columns">
<a class="logo" href="http://www.thechapelsf.com">
<img src="http://www.thechapelsf.com/files/2012/09/chapel-logo-text-trans.png" alt="The Chapel Logo" />
</a>
<nav class="nav-menu">
<ul id="menu-top-navigation" class="primary-menu clearfix"><li id="menu-item-419" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-114 current_page_item menu-item-419"><a href="http://www.thechapelsf.com/">Music Venue</a></li>
<li id="menu-item-421" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-421"><a href="http://www.thechapelsf.com/vestry-restaurant/">The Vestry Restaurant</a></li>
<li id="menu-item-2671" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2671"><a href="http://www.thechapelsf.com/sinners-hour/">Sinner&#8217;s Hour</a></li>
<li id="menu-item-429" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-429"><a href="http://www.thechapelsf.com/the-chapel-bar/">Chapel Bar</a></li>
<li id="menu-item-435" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-435"><a href="http://www.thechapelsf.com/private-events/">Private Events</a></li>
<li id="menu-item-431" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-431"><a href="http://www.thechapelsf.com/general-info/">General Info</a></li>
<li id="menu-item-433" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-433"><a href="http://www.thechapelsf.com/contact/">Contact</a></li>
</ul> </nav>
</div>
</div>
</header>
<div class="outer-bg">
<div class="container">
<div class="row">
<div class="twelve columns">
<div class="sub-nav">
<div class="row">
<div class="eight columns">
<div class="child-pages left">
<ul>
<li class="page_item page-item-39"><a href="http://www.thechapelsf.com/music/ticket-info/">Ticket Info</a></li>
<li class="page_item page-item-12"><a href="http://www.thechapelsf.com/music/faq/">FAQ</a></li>
<li class="page_item page-item-10"><a href="http://www.thechapelsf.com/contact/">Contact</a></li>
</ul>
</div>
</div>
<div class="four columns">
<div class="social-links right clearfix">
<div class="left">Connect with The Chapel:</div>
<a class="left" href="http://www.facebook.com/TheChapelSF" target="_blank" title="Facebook">
<i class="flaticon social facebook-2"></i>
</a>
<a class="left" href="http://instagram.com/thechapelsf" target="_blank" title="Instagram">
<i class="flaticon social instagram-1"></i>
</a>
<a class="left" href="http://twitter.com/TheChapelSF" target="_blank" title="Twitter">
<i class="flaticon social twitter-1"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page row">
<section class="eight columns">
<script type="text/javascript">
tflyMaxCarousel = 4;
</script>
<div id="tfly-featured-events">
<ul class="images">
<li class="tfly-event-id-1151171 tfly-org-id-1695 tfly-venue-id-5519"><a href="/event/1151171-emily-king-san-francisco/">
<img src="https://cdn.ticketfly.com/i/00/02/02/79/81-atxl1.jpg" title="Emily King" alt="Emily King" />
</a></li>
<li class="tfly-event-id-1261079 tfly-org-id-1695 tfly-venue-id-19669"><a href="/event/1261079-sinners-happy-hour-ted-san-francisco/">
<img src="https://cdn.ticketfly.com/i/00/02/19/34/35-atxl1.jpg" title="Sinner's Happy Hour with Ted Savarese and the TedTones" alt="Sinner's Happy Hour with Ted Savarese and the TedTones" />
</a></li>
<li class="tfly-event-id-1181609 tfly-org-id-1695 tfly-venue-id-5519"><a href="/event/1181609-marissa-nadler-san-francisco/">
<img src="https://cdn.ticketfly.com/i/00/02/06/67/75-atxl1.jpg" title="Marissa Nadler" alt="Marissa Nadler" />
</a></li>
<li class="tfly-event-id-1134841 tfly-org-id-1695 tfly-venue-id-5519"><a href="/event/1134841-sheepdogs-san-francisco/">
<img src="https://cdn.ticketfly.com/i/00/01/99/35/65-atxl1.jpg" title="The Sheepdogs" alt="The Sheepdogs" />
</a></li>
</ul>
<ul id="overlay-content">
<li id="overlay-0" class="tfly-event-id-1151171 tfly-org-id-1695 tfly-venue-id-5519">
<h1 class="headliners"><a href="/event/1151171-emily-king-san-francisco/">Emily King</a></h1>
<h2 class="date-venue">Wed 8/03 <span class="venue location"> - The Chapel</span>
</h2>
</li>
<li id="overlay-1" class="tfly-event-id-1261079 tfly-org-id-1695 tfly-venue-id-19669">
<h1 class="headliners"><a href="/event/1261079-sinners-happy-hour-ted-san-francisco/">Sinner's Happy Hour with Ted Savarese an...</a></h1>
<h2 class="date-venue">Thu 8/04 <span class="venue location"> - The Vestry</span>
</h2>
</li>
<li id="overlay-2" class="tfly-event-id-1181609 tfly-org-id-1695 tfly-venue-id-5519">
<h1 class="headliners"><a href="/event/1181609-marissa-nadler-san-francisco/">Marissa Nadler</a></h1>
<h2 class="date-venue">Thu 8/04 <span class="venue location"> - The Chapel</span>
</h2>
<h3 class="ticket-link"><a href="https://www.ticketfly.com/purchase/event/1181609" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
</li>
<li id="overlay-3" class="tfly-event-id-1134841 tfly-org-id-1695 tfly-venue-id-5519">
<h1 class="headliners"><a href="/event/1134841-sheepdogs-san-francisco/">The Sheepdogs</a></h1>
<h2 class="date-venue">Fri 8/05 <span class="venue location"> - The Chapel</span>
</h2>
<h3 class="ticket-link"><a href="https://www.ticketfly.com/purchase/event/1134841" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
</li>
</ul>
<div id="grey-back"></div>
<div id="overlay">
<div class="change">
<h1 class="headliners"><a href="/event/1151171-emily-king-san-francisco/">Emily King</a></h1>
<h2 class="date-venue">Wed 8/03 <span class="venue location"> - The Chapel</span>
</h2>
</div>
<ul class="nav">
</ul>
</div>
</div>
<script type="text/javascript">
var carousel;
jQuery( document ).ready( function() { carousel = new tfly.carousel(); } );
</script>
<div class="content-block">
<article class="clearfix post-114 page type-page status-publish hentry">
<div class="entry clearfix">
<div class="music-header clearfix">
<h1 class="left">Music Listings</h1>
<!-- begin DeliRadio pop-out button -->
<div class="right">
<iframe class="drbutton" src="http://deliradio.net/e/1332?c=1" frameborder="0" width="274" height="89" scrolling="no"></iframe>
</div>
<!-- begin DeliRadio pop-out button -->
</div>
<ul class="tabs clearfix">
<li><a href="#tab1">Upcoming Shows</a></li>
<li><a href="#tab2">Just Added</a></li>
</ul>
<div id="tab1">
<div class="list-view">
<div class="list-view-heading"> <h2 class="list-view-title">Upcoming Shows</h2> <h2 class="calendar-link">
<a class="calendar" href="/calendar/">View Calendar</a></h2></div>
<div class="list-view-item tfly-event-id-1151171 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1151171-emily-king-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/02/79/81-atsm.jpg" width="100" height="100" alt="Emily King" title="Emily King" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1151171-emily-king-san-francisco/">Emily King</a></h1>
<h2 class="supports description"><a href=" /event/1151171-emily-king-san-francisco/ ">David Ryan Harris</a></h2> <h2 class="dates">Wed 8/03</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-03T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1151171-emily-king-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="sold-out">Sold Out</h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1261079 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1261079-sinners-happy-hour-ted-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/34/35-atsm.jpg" width="100" height="70" alt="Sinner's Happy Hour with Ted Savarese and the TedTones" title="Sinner's Happy Hour with Ted Savarese and the TedTones" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1261079-sinners-happy-hour-ted-san-francisco/">Sinner's Happy Hour with Ted Savarese and the TedTones</a></h1> <h2 class="dates">Thu 8/04</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-04T17:00:00-07:00"></span>5:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-04T19:30:00-07:00"></span>(event ends at 7:30 pm)</span></h2>
<h2 class="venue location">The Vestry</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1261079-sinners-happy-hour-ted-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1181609 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1181609-marissa-nadler-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/06/67/75-atsm.jpg" width="100" height="150" alt="Marissa Nadler" title="Marissa Nadler" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1181609-marissa-nadler-san-francisco/">Marissa Nadler</a></h1>
<h2 class="supports description"><a href=" /event/1181609-marissa-nadler-san-francisco/ ">Wrekmeister Harmonies, Muscle and Marrow</a></h2> <h2 class="dates">Thu 8/04</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-04T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1181609-marissa-nadler-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1181609" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1134841 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1134841-sheepdogs-san-francisco/"><img src="//cdn.ticketfly.com/i/00/01/99/35/65-atsm.jpg" width="100" height="70" alt="The Sheepdogs" title="The Sheepdogs" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1134841-sheepdogs-san-francisco/">The Sheepdogs</a></h1>
<h2 class="supports description"><a href=" /event/1134841-sheepdogs-san-francisco/ ">Quaker City Night Hawks</a></h2> <h2 class="dates">Fri 8/05</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-05T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1134841-sheepdogs-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1134841" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1241017 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1241017-zoo-station-complete-u2-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/51/19-atsm.jpg" width="100" height="100" alt="Zoo Station: The Complete U2 Experience" title="Zoo Station: The Complete U2 Experience" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1241017-zoo-station-complete-u2-san-francisco/">Zoo Station: The Complete U2 Experience</a></h1><h2 class="supports description"><a href=" /event/1241017-zoo-station-complete-u2-san-francisco/ ">The Jean Genies - Tribute to David Bowie, Pretending: A Pretenders Tribute</a></h2> <h2 class="dates">Sat 8/06</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-06T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1241017-zoo-station-complete-u2-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1241017" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1257401 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1257401-banda-sin-nombre-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/82/49-atsm.jpg" width="100" height="67" alt="Banda Sin Nombre" title="Banda Sin Nombre" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1257401-banda-sin-nombre-san-francisco/">Banda Sin Nombre</a></h1>
<h2 class="dates">Sun 8/07</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-07T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-07T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257401-banda-sin-nombre-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1199069 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1199069-monolord-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/69/31-atsm.jpg" width="100" height="100" alt="Monolord" title="Monolord" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1199069-monolord-san-francisco/">Monolord</a></h1>
<h2 class="supports description"><a href=" /event/1199069-monolord-san-francisco/ ">Beastmaker, Sweat Lodge</a></h2> <h2 class="dates">Mon 8/08</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-08T19:30:00-07:00"></span>Show: 7:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1199069-monolord-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1199069" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1245851 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1245851-terry-malts-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/96/21-atsm.jpg" width="100" height="100" alt="Terry Malts" title="Terry Malts" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1245851-terry-malts-san-francisco/">Terry Malts</a></h1>
<h2 class="supports description"><a href=" /event/1245851-terry-malts-san-francisco/ ">Wyatt Blair, Babewatch, Cocktails</a></h2> <h2 class="dates">Tue 8/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-09T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1245851-terry-malts-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1245851" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1264237 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1264237-los-peregrinos-cosmicos-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/86/49-atsm.jpg" width="100" height="71" alt="Los Peregrinos C&oacute;smicos" title="Los Peregrinos C&oacute;smicos" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1264237-los-peregrinos-cosmicos-san-francisco/">Los Peregrinos Cósmicos</a></h1>
<h2 class="dates">Wed 8/10</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-10T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-10T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1264237-los-peregrinos-cosmicos-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1265155 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1265155-sinners-happy-hour-patrick-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/02/91-atsm.jpg" width="100" height="150" alt="Sinner's Happy Hour with the Patrick Wolff Trio" title="Sinner's Happy Hour with the Patrick Wolff Trio" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1265155-sinners-happy-hour-patrick-san-francisco/">Sinner's Happy Hour with the Patrick Wolff Trio</a></h1> <h2 class="dates">Thu 8/11</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-11T17:00:00-07:00"></span>5:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-11T19:30:00-07:00"></span>(event ends at 7:30 pm)</span></h2>
<h2 class="venue location">The Vestry</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1265155-sinners-happy-hour-patrick-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1226639 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1226639-cool-ghouls-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/06/55-atsm.jpg" width="100" height="66" alt="Cool Ghouls' Record Release Party" title="Cool Ghouls' Record Release Party" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1226639-cool-ghouls-record-release-san-francisco/">Cool Ghouls' Record Release Party</a></h1><h2 class="supports description"><a href=" /event/1226639-cool-ghouls-record-release-san-francisco/ ">Silver Shadows, Emotional</a></h2> <h2 class="dates">Thu 8/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1226639-cool-ghouls-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1226639" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1211745 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1211745-vaud-villains-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/11/67/95-atsm.jpg" width="100" height="67" alt="Vaud &amp; The Villains" title="Vaud &amp; The Villains" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1211745-vaud-villains-san-francisco/">Vaud & The Villains</a></h1>
<h2 class="dates">Fri 8/12</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-12T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1211745-vaud-villains-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1211745" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1252399 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/07/21-atsm.jpg" width="100" height="125" alt="Five and Diamond Annual Pre-Playa Loft Sale" title="Five and Diamond Annual Pre-Playa Loft Sale" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/">Five and Diamond Annual Pre-Playa Loft Sale</a></h1>
<h2 class="dates">Sat 8/13</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-13T11:00:00-07:00"></span>11:00 am</span> <span class="end dtend"><span class="value-title" title="2016-08-13T18:00:00-07:00"></span>(event ends at 6:00 pm)</span></h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1274135 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274135-christopher-owens-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/41/67-atsm.jpg" width="100" height="100" alt="Christopher Owens" title="Christopher Owens" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1274135-christopher-owens-san-francisco/">Christopher Owens</a></h1>
<h2 class="supports description"><a href=" /event/1274135-christopher-owens-san-francisco/ ">Special Guests TBA</a></h2> <h2 class="dates">Sat 8/13</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-13T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274135-christopher-owens-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1274135" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$10 adv / $12 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1205545 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1205545-passenger-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/10/72/31-atsm.jpeg" width="100" height="67" alt="Passenger" title="Passenger" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1205545-passenger-san-francisco/">Passenger</a></h1>
<h2 class="dates">Sun 8/14</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-14T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1205545-passenger-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="sold-out">Sold Out</h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1268393 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1268393-moon-meridian-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/53/35-atsm.JPG" width="100" height="125" alt="The Moon Meridian" title="The Moon Meridian" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1268393-moon-meridian-san-francisco/">The Moon Meridian</a></h1>
<h2 class="dates">Tue 8/16</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-16T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-16T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1268393-moon-meridian-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1265243 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1265243-golden-void-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/03/91-atsm.jpg" width="100" height="53" alt="Golden Void" title="Golden Void" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1265243-golden-void-san-francisco/">Golden Void</a></h1>
<h2 class="dates">Wed 8/17</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-17T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1265243-golden-void-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1265243" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $15 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1252435 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252435-magic-trick-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/10/05-atsm.jpg" width="100" height="66" alt="Magic Trick (record release show)" title="Magic Trick (record release show)" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1252435-magic-trick-record-release-san-francisco/">Magic Trick (record release show)</a></h1><h2 class="supports description"><a href=" /event/1252435-magic-trick-record-release-san-francisco/ ">Assateague</a></h2> <h2 class="dates">Thu 8/18</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-18T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252435-magic-trick-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1252435" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1228653 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1228653-marc-casuals-summer-soul-san-francisco/"><img src="//cdn.ticketfly.com/i/00/01/93/35/33-atsm.jpg" width="100" height="67" alt="Marc &amp; the Casuals Summer Soul Celebration" title="Marc &amp; the Casuals Summer Soul Celebration" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1228653-marc-casuals-summer-soul-san-francisco/">Marc & the Casuals Summer Soul Celebration</a></h1><h2 class="supports description"><a href=" /event/1228653-marc-casuals-summer-soul-san-francisco/ ">Loveseat Congregation</a></h2> <h2 class="dates">Fri 8/19</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-19T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1228653-marc-casuals-summer-soul-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1228653" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 door / $20 adv </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1264015 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1264015-vetiver-very-special-trio-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/81/25-esm.JPG" width="100" height="100" alt="Vetiver (very special trio set)" title="Vetiver (very special trio set)" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) and Mollusk Surf Shop Present</h2><h1 class="headliners summary"><a href="/event/1264015-vetiver-very-special-trio-san-francisco/">Vetiver (very special trio set)</a></h1><h2 class="supports description"><a href=" /event/1264015-vetiver-very-special-trio-san-francisco/ ">Alex Bleeker and Friends, Wifi/Beach (members of Toro Y Moi, Mattson 2, Kid Trails), DJ Peaking Lights</a></h2> <h2 class="dates">Sat 8/20</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-20T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1264015-vetiver-very-special-trio-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1264015" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1182569 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1182569-diane-coffee-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/06/90/05-atsm.jpg" width="100" height="150" alt="Diane Coffee" title="Diane Coffee" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1182569-diane-coffee-san-francisco/">Diane Coffee</a></h1>
<h2 class="supports description"><a href=" /event/1182569-diane-coffee-san-francisco/ ">Waterstrider</a></h2> <h2 class="dates">Thu 8/25</h2>
<h2 class="times">
<span class="doors">Doors: 7:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-25T20:30:00-07:00"></span>Show: 8:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1182569-diane-coffee-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1182569" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1228623 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1228623-mild-high-club-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/38/99-atsm.jpg" width="100" height="56" alt="Mild High Club Record Release Show" title="Mild High Club Record Release Show" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1228623-mild-high-club-record-release-san-francisco/">Mild High Club Record Release Show</a></h1> <h2 class="dates">Fri 8/26</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-26T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1228623-mild-high-club-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1228623" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $15 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1223023 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1223023-otis-straight-outta-memphis-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/41/21-atsm.jpg" width="100" height="67" alt="Otis &quot;Straight Outta Memphis&quot; feat. Miss Nickki" title="Otis &quot;Straight Outta Memphis&quot; feat. Miss Nickki" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1223023-otis-straight-outta-memphis-san-francisco/">Otis "Straight Outta Memphis" feat. Miss Nickki</a></h1><h2 class="supports description"><a href=" /event/1223023-otis-straight-outta-memphis-san-francisco/ ">Martin Luther McCoy</a></h2> <h2 class="dates">Sat 8/27</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-27T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1223023-otis-straight-outta-memphis-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1223023" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1262427 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1262427-y-la-bamba-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/58/39-atsm.jpg" width="100" height="116" alt="Y La Bamba" title="Y La Bamba" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1262427-y-la-bamba-san-francisco/">Y La Bamba</a></h1>
<h2 class="supports description"><a href=" /event/1262427-y-la-bamba-san-francisco/ ">Sparrows Gate</a></h2> <h2 class="dates">Sun 8/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1262427-y-la-bamba-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1262427" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1139089 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1139089-julia-holter-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/00/14/81-atsm.jpg" width="100" height="67" alt="Julia Holter" title="Julia Holter" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1139089-julia-holter-san-francisco/">Julia Holter</a></h1>
<h2 class="supports description"><a href=" /event/1139089-julia-holter-san-francisco/ ">White Magic</a></h2> <h2 class="dates">Wed 8/31</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-31T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1139089-julia-holter-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1139089" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1241095 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1241095-sandys-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/76/77-atsm.jpg" width="100" height="75" alt="Sandy's" title="Sandy's" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Mollusk & (((folkYEAH!))) Present</h2> <h1 class="headliners summary"><a href="/event/1241095-sandys-san-francisco/">Sandy's</a></h1>
<h2 class="supports description"><a href=" /event/1241095-sandys-san-francisco/ ">Thomas Campbell "Film Projections & Live Musical Score", The Pesos</a></h2> <h2 class="dates">Thu 9/01</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-01T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1241095-sandys-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1241095" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1257303 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1257303-charles-bradley-his-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/80/51-atsm.jpg" width="100" height="68" alt="Charles Bradley &amp; His Extraordinaires" title="Charles Bradley &amp; His Extraordinaires" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) & The Chapel Present in association with Noise Pop 25 to 25</h2> <h1 class="headliners summary"><a href="/event/1257303-charles-bradley-his-san-francisco/">Charles Bradley & His Extraordinaires</a></h1>
<h2 class="dates">Fri 9/02</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-02T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257303-charles-bradley-his-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1257303" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$40.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1257307 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1257307-charles-bradley-his-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/80/51-atsm.jpg" width="100" height="68" alt="Charles Bradley &amp; His Extraordinaires" title="Charles Bradley &amp; His Extraordinaires" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) & The Chapel Present in association with Noise Pop 25 to 25</h2> <h1 class="headliners summary"><a href="/event/1257307-charles-bradley-his-san-francisco/">Charles Bradley & His Extraordinaires</a></h1>
<h2 class="dates">Sat 9/03</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-03T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257307-charles-bradley-his-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1257307" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$40.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1229669 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1229669-blue-bear-school-music-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/40/61-atsm.jpg" width="100" height="67" alt="Blue Bear School of Music Benefit featuring White Denim" title="Blue Bear School of Music Benefit featuring White Denim" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1229669-blue-bear-school-music-san-francisco/">Blue Bear School of Music Benefit featuring White Denim</a></h1><h2 class="supports description"><a href=" /event/1229669-blue-bear-school-music-san-francisco/ ">The New Up</a></h2> <h2 class="dates">Tue 9/06</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-06T20:00:00-07:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1229669-blue-bear-school-music-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1229669" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$25.00 - $150.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1175847 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1175847-pop-rocks-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/05/86/53-atsm.jpeg" width="100" height="100" alt="Pop Rocks" title="Pop Rocks" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1175847-pop-rocks-san-francisco/">Pop Rocks</a></h1>
<h2 class="dates">Fri 9/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-09T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1175847-pop-rocks-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1175847" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1195639 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1195639-joseph-arthur-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/08/71-atsm.jpg" width="100" height="67" alt="Joseph Arthur" title="Joseph Arthur" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1195639-joseph-arthur-san-francisco/">Joseph Arthur</a></h1>
<h2 class="supports description"><a href=" /event/1195639-joseph-arthur-san-francisco/ ">Reuben Hollebon</a></h2> <h2 class="dates">Sun 9/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1195639-joseph-arthur-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1195639" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$16 adv / $18 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1157795 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1157795-sara-watkins-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/03/06/43-atsm.jpeg" width="100" height="67" alt="Sara Watkins" title="Sara Watkins" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1157795-sara-watkins-san-francisco/">Sara Watkins</a></h1>
<h2 class="dates">Wed 9/14</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-14T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1157795-sara-watkins-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1157795" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1267009 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1267009-strawberry-alarm-clock-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/30/05-esm.jpg" width="100" height="144" alt="Strawberry Alarm Clock" title="Strawberry Alarm Clock" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">The Acid Test Presents</h2> <h1 class="headliners summary"><a href="/event/1267009-strawberry-alarm-clock-san-francisco/">Strawberry Alarm Clock</a></h1>
<h2 class="supports description"><a href=" /event/1267009-strawberry-alarm-clock-san-francisco/ ">The Turns</a></h2> <h2 class="dates">Sat 9/17</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-17T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1267009-strawberry-alarm-clock-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1267009" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1225203 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1225203-roosevelt-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/77/87-atsm.jpg" width="100" height="67" alt="Roosevelt" title="Roosevelt" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1225203-roosevelt-san-francisco/">Roosevelt</a></h1>
<h2 class="dates">Wed 9/21</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-21T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1225203-roosevelt-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1225203" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1249015 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1249015-lissie-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/17/49/41-atsm.jpg" width="100" height="67" alt="Lissie" title="Lissie" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1249015-lissie-san-francisco/">Lissie</a></h1>
<h2 class="dates">Thu 9/22</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-22T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1249015-lissie-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1249015" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1274825 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274825-you-will-know-us-by-trail-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/72/99-esm.jpg" width="100" height="100" alt="...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances" title="...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1274825-you-will-know-us-by-trail-san-francisco/">...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances</a></h1><h2 class="supports description"><a href=" /event/1274825-you-will-know-us-by-trail-san-francisco/ ">Culture Abuse, Creepoid, Special Guest TBA</a></h2> <h2 class="dates">Sat 9/24</h2>
<h2 class="times">
<span class="doors">Doors: 7:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-24T20:30:00-07:00"></span>Show: 8:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274825-you-will-know-us-by-trail-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="future-sale"><a href="https://www.ticketfly.com/purchase/event/1274825" onclick="return tfly_openWindowGA(this);" target="_blank">On Sale<br />Fri 8/05<br />12:00 pm PDT</a></h3> <h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1187341 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1187341-matt-wertz-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/07/75/27-atsm.jpg" width="100" height="67" alt="Matt Wertz" title="Matt Wertz" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1187341-matt-wertz-san-francisco/">Matt Wertz</a></h1>
<h2 class="supports description"><a href=" /event/1187341-matt-wertz-san-francisco/ ">Cappa, Aaron Krause</a></h2> <h2 class="dates">Tue 9/27</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-27T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1187341-matt-wertz-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1187341" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1199455 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1199455-steve-gunn-outliners-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/78/69-atsm.jpg" width="100" height="67" alt="Steve Gunn and the Outliners" title="Steve Gunn and the Outliners" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1199455-steve-gunn-outliners-san-francisco/">Steve Gunn and the Outliners</a></h1>
<h2 class="supports description"><a href=" /event/1199455-steve-gunn-outliners-san-francisco/ ">Nap Eyes</a></h2> <h2 class="dates">Wed 9/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1199455-steve-gunn-outliners-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1199455" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1253809 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1253809-natural-child-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/24/43-atsm.jpg" width="100" height="66" alt="Natural Child" title="Natural Child" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1253809-natural-child-san-francisco/">Natural Child</a></h1>
<h2 class="supports description"><a href=" /event/1253809-natural-child-san-francisco/ ">Faux Ferocious</a></h2> <h2 class="dates">Thu 9/29</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-29T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1253809-natural-child-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1253809" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1259729 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1259729-mandolin-orange-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/16/83-atsm.jpg" width="100" height="67" alt="Mandolin Orange" title="Mandolin Orange" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1259729-mandolin-orange-san-francisco/">Mandolin Orange</a></h1>
<h2 class="supports description"><a href=" /event/1259729-mandolin-orange-san-francisco/ ">Leif Vollebekk</a></h2> <h2 class="dates">Fri 9/30</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-30T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1259729-mandolin-orange-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1259729" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1233425 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/12/75-atsm.jpg" width="100" height="70" alt="Spiral Stairs' 50th Birthday! With Special Guests: The Clean" title="Spiral Stairs' 50th Birthday! With Special Guests: The Clean" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">GIBBSMO and (((folkYEAH!))) Present</h2><h1 class="headliners summary"><a href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/">Spiral Stairs' 50th Birthday! With Special Guests: The Clean</a></h1><h2 class="supports description"><a href=" /event/1233425-spiral-stairs-50th-birthday-san-francisco/ ">Kelley Stoltz (with special guest Spiral Stairs), For Your Pleasure (A Tribute to Roxy Music)</a></h2> <h2 class="dates">Sat 10/01</h2>
<h2 class="times">
<span class="doors">Doors: 8:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-01T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1233425" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1252689 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252689-adam-greens-aladdin-film-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/11/71-atsm.jpg" width="100" height="114" alt="Adam Green's Aladdin - Film and Concert" title="Adam Green's Aladdin - Film and Concert" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1252689-adam-greens-aladdin-film-san-francisco/">Adam Green's Aladdin - Film and Concert</a></h1> <h2 class="dates">Tue 10/04</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-04T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252689-adam-greens-aladdin-film-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1252689" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1276413 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1276413-erika-wennerstrom-heartless-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/75/97-atsm.jpeg" width="100" height="124" alt="Erika Wennerstrom (of Heartless Bastards)" title="Erika Wennerstrom (of Heartless Bastards)" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1276413-erika-wennerstrom-heartless-san-francisco/">Erika Wennerstrom (of Heartless Bastards)</a></h1> <h2 class="dates">Wed 10/05</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-05T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1276413-erika-wennerstrom-heartless-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="future-sale"><a href="https://www.ticketfly.com/purchase/event/1276413" onclick="return tfly_openWindowGA(this);" target="_blank">On Sale<br />Fri 8/05<br />10:00 am PDT</a></h3> <h3 class="price-range">
$16 adv / $18 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1234159 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1234159-califone-roomsound-15th-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/27/75-atsm.jpg" width="100" height="133" alt="Califone - Roomsound 15th Anniversary Tour" title="Califone - Roomsound 15th Anniversary Tour" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1234159-califone-roomsound-15th-san-francisco/">Califone - Roomsound 15th Anniversary Tour</a></h1><h2 class="supports description"><a href=" /event/1234159-califone-roomsound-15th-san-francisco/ ">Slow Moses</a></h2> <h2 class="dates">Fri 10/07</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-07T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1234159-califone-roomsound-15th-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1234159" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1186177 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1186177-tobacco-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/07/54/21-atsm.jpg" width="100" height="67" alt="TOBACCO" title="TOBACCO" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1186177-tobacco-san-francisco/">TOBACCO</a></h1>
<h2 class="supports description"><a href=" /event/1186177-tobacco-san-francisco/ ">High Tides, Odonis Odonis</a></h2> <h2 class="dates">Tue 10/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1186177-tobacco-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1186177" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1207955 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1207955-ryley-walker-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/11/51/17-atsm.jpg" width="100" height="66" alt="Ryley Walker" title="Ryley Walker" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) presents</h2> <h1 class="headliners summary"><a href="/event/1207955-ryley-walker-san-francisco/">Ryley Walker</a></h1>
<h2 class="supports description"><a href=" /event/1207955-ryley-walker-san-francisco/ ">Circuit des Yeux</a></h2> <h2 class="dates">Wed 10/12</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-12T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1207955-ryley-walker-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1207955" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $14 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1224373 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1224373-marc-broussard-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/64/83-atsm.jpg" width="100" height="67" alt="Marc Broussard" title="Marc Broussard" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1224373-marc-broussard-san-francisco/">Marc Broussard</a></h1>
<h2 class="supports description"><a href=" /event/1224373-marc-broussard-san-francisco/ ">Jenn Grinels, Peter Aristone (solo acoustic)</a></h2> <h2 class="dates">Thu 10/13</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-13T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1224373-marc-broussard-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1224373" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$25 adv / $30 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1197991 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1197991-rasputina-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/51/75-atsm.jpg" width="100" height="150" alt="Rasputina" title="Rasputina" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1197991-rasputina-san-francisco/">Rasputina</a></h1>
<h2 class="supports description"><a href=" /event/1197991-rasputina-san-francisco/ ">Vita and The Woolf</a></h2> <h2 class="dates">Fri 10/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1197991-rasputina-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1197991" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1240689 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1240689-masquerade-ball-mystic-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/28/43-atsm.jpg" width="100" height="100" alt="A Masquerade Ball with The Mystic Braves" title="A Masquerade Ball with The Mystic Braves" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1240689-masquerade-ball-mystic-san-francisco/">A Masquerade Ball with The Mystic Braves</a></h1> <h2 class="dates">Mon 10/31</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-31T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1240689-masquerade-ball-mystic-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1240689" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1274743 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274743-har-mar-superstar-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/50/53-atsm.jpg" width="100" height="75" alt="Har Mar Superstar" title="Har Mar Superstar" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Best Summer Ever US Tour: Part Deux</h2> <h1 class="headliners summary"><a href="/event/1274743-har-mar-superstar-san-francisco/">Har Mar Superstar</a></h1>
<h2 class="supports description"><a href=" /event/1274743-har-mar-superstar-san-francisco/ ">Sweet Spirit</a></h2> <h2 class="dates">Mon 11/07</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-07T20:00:00-08:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274743-har-mar-superstar-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1274743" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1232085 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1232085-veils-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/91/05-atsm.jpg" width="100" height="67" alt="The Veils" title="The Veils" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1232085-veils-san-francisco/">The Veils</a></h1>
<h2 class="dates">Wed 11/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-09T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1232085-veils-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1232085" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1232857 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1232857-tyrone-wells-cover-cover-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/04/71-atsm.png" width="100" height="126" alt="Tyrone Wells &quot;Cover to Cover&quot;" title="Tyrone Wells &quot;Cover to Cover&quot;" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1232857-tyrone-wells-cover-cover-san-francisco/">Tyrone Wells "Cover to Cover"</a></h1><h2 class="supports description"><a href=" /event/1232857-tyrone-wells-cover-cover-san-francisco/ ">Tony Lucca</a></h2> <h2 class="dates">Wed 11/16</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-16T20:00:00-08:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1232857-tyrone-wells-cover-cover-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1232857" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15 adv / $17 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1256173 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1256173-thee-oh-sees-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/61/29-atsm.jpg" width="100" height="66" alt="Thee Oh Sees" title="Thee Oh Sees" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents Two Nights with</h2> <h1 class="headliners summary"><a href="/event/1256173-thee-oh-sees-san-francisco/">Thee Oh Sees</a></h1>
<h2 class="supports description"><a href=" /event/1256173-thee-oh-sees-san-francisco/ ">Alex Cameron</a></h2> <h2 class="dates">Tue 11/29</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-29T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1256173-thee-oh-sees-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1256173" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1256185 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1256185-thee-oh-sees-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/61/29-atsm.jpg" width="100" height="66" alt="Thee Oh Sees" title="Thee Oh Sees" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents Two Nights with</h2> <h1 class="headliners summary"><a href="/event/1256185-thee-oh-sees-san-francisco/">Thee Oh Sees</a></h1>
<h2 class="supports description"><a href=" /event/1256185-thee-oh-sees-san-francisco/ ">Alex Cameron</a></h2> <h2 class="dates">Wed 11/30</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-30T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1256185-thee-oh-sees-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1256185" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22.00 </h3>
</div>
</div>
<div class="clearer"></div>
</div>
</div>
<div id="tab2">
<div class="list-view">
<div class="list-view-heading"> <h2 class="list-view-title">Just Added</h2> <h2 class="calendar-link">
<a class="calendar" href="/calendar/">View Calendar</a></h2></div>
<div class="list-view-item tfly-event-id-1274825 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274825-you-will-know-us-by-trail-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/72/99-esm.jpg" width="100" height="100" alt="...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances" title="...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1274825-you-will-know-us-by-trail-san-francisco/">...And You Will Know Us By The Trail Of Dead - Final run of 'Source Tags and Codes' performances</a></h1><h2 class="supports description"><a href=" /event/1274825-you-will-know-us-by-trail-san-francisco/ ">Culture Abuse, Creepoid, Special Guest TBA</a></h2> <h2 class="dates">Sat 9/24</h2>
<h2 class="times">
<span class="doors">Doors: 7:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-24T20:30:00-07:00"></span>Show: 8:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274825-you-will-know-us-by-trail-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="future-sale"><a href="https://www.ticketfly.com/purchase/event/1274825" onclick="return tfly_openWindowGA(this);" target="_blank">On Sale<br />Fri 8/05<br />12:00 pm PDT</a></h3> <h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1276413 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1276413-erika-wennerstrom-heartless-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/75/97-atsm.jpeg" width="100" height="124" alt="Erika Wennerstrom (of Heartless Bastards)" title="Erika Wennerstrom (of Heartless Bastards)" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1276413-erika-wennerstrom-heartless-san-francisco/">Erika Wennerstrom (of Heartless Bastards)</a></h1> <h2 class="dates">Wed 10/05</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-05T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1276413-erika-wennerstrom-heartless-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="future-sale"><a href="https://www.ticketfly.com/purchase/event/1276413" onclick="return tfly_openWindowGA(this);" target="_blank">On Sale<br />Fri 8/05<br />10:00 am PDT</a></h3> <h3 class="price-range">
$16 adv / $18 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1274743 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274743-har-mar-superstar-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/50/53-atsm.jpg" width="100" height="75" alt="Har Mar Superstar" title="Har Mar Superstar" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Best Summer Ever US Tour: Part Deux</h2> <h1 class="headliners summary"><a href="/event/1274743-har-mar-superstar-san-francisco/">Har Mar Superstar</a></h1>
<h2 class="supports description"><a href=" /event/1274743-har-mar-superstar-san-francisco/ ">Sweet Spirit</a></h2> <h2 class="dates">Mon 11/07</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-07T20:00:00-08:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274743-har-mar-superstar-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1274743" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1274135 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1274135-christopher-owens-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/21/41/67-atsm.jpg" width="100" height="100" alt="Christopher Owens" title="Christopher Owens" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1274135-christopher-owens-san-francisco/">Christopher Owens</a></h1>
<h2 class="supports description"><a href=" /event/1274135-christopher-owens-san-francisco/ ">Special Guests TBA</a></h2> <h2 class="dates">Sat 8/13</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-13T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1274135-christopher-owens-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1274135" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$10 adv / $12 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1268393 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1268393-moon-meridian-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/53/35-atsm.JPG" width="100" height="125" alt="The Moon Meridian" title="The Moon Meridian" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1268393-moon-meridian-san-francisco/">The Moon Meridian</a></h1>
<h2 class="dates">Tue 8/16</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-16T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-16T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1268393-moon-meridian-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1267009 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1267009-strawberry-alarm-clock-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/30/05-esm.jpg" width="100" height="144" alt="Strawberry Alarm Clock" title="Strawberry Alarm Clock" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">The Acid Test Presents</h2> <h1 class="headliners summary"><a href="/event/1267009-strawberry-alarm-clock-san-francisco/">Strawberry Alarm Clock</a></h1>
<h2 class="supports description"><a href=" /event/1267009-strawberry-alarm-clock-san-francisco/ ">The Turns</a></h2> <h2 class="dates">Sat 9/17</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-17T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1267009-strawberry-alarm-clock-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1267009" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1265243 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1265243-golden-void-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/03/91-atsm.jpg" width="100" height="53" alt="Golden Void" title="Golden Void" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1265243-golden-void-san-francisco/">Golden Void</a></h1>
<h2 class="dates">Wed 8/17</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-17T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1265243-golden-void-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1265243" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $15 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1265155 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1265155-sinners-happy-hour-patrick-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/20/02/91-atsm.jpg" width="100" height="150" alt="Sinner's Happy Hour with the Patrick Wolff Trio" title="Sinner's Happy Hour with the Patrick Wolff Trio" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1265155-sinners-happy-hour-patrick-san-francisco/">Sinner's Happy Hour with the Patrick Wolff Trio</a></h1> <h2 class="dates">Thu 8/11</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-11T17:00:00-07:00"></span>5:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-11T19:30:00-07:00"></span>(event ends at 7:30 pm)</span></h2>
<h2 class="venue location">The Vestry</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1265155-sinners-happy-hour-patrick-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1264237 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1264237-los-peregrinos-cosmicos-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/86/49-atsm.jpg" width="100" height="71" alt="Los Peregrinos C&oacute;smicos" title="Los Peregrinos C&oacute;smicos" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1264237-los-peregrinos-cosmicos-san-francisco/">Los Peregrinos Cósmicos</a></h1>
<h2 class="dates">Wed 8/10</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-10T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-10T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1264237-los-peregrinos-cosmicos-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1264015 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1264015-vetiver-very-special-trio-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/81/25-esm.JPG" width="100" height="100" alt="Vetiver (very special trio set)" title="Vetiver (very special trio set)" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) and Mollusk Surf Shop Present</h2><h1 class="headliners summary"><a href="/event/1264015-vetiver-very-special-trio-san-francisco/">Vetiver (very special trio set)</a></h1><h2 class="supports description"><a href=" /event/1264015-vetiver-very-special-trio-san-francisco/ ">Alex Bleeker and Friends, Wifi/Beach (members of Toro Y Moi, Mattson 2, Kid Trails), DJ Peaking Lights</a></h2> <h2 class="dates">Sat 8/20</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-20T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1264015-vetiver-very-special-trio-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1264015" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1262427 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1262427-y-la-bamba-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/58/39-atsm.jpg" width="100" height="116" alt="Y La Bamba" title="Y La Bamba" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1262427-y-la-bamba-san-francisco/">Y La Bamba</a></h1>
<h2 class="supports description"><a href=" /event/1262427-y-la-bamba-san-francisco/ ">Sparrows Gate</a></h2> <h2 class="dates">Sun 8/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1262427-y-la-bamba-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1262427" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1261079 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1261079-sinners-happy-hour-ted-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/34/35-atsm.jpg" width="100" height="70" alt="Sinner's Happy Hour with Ted Savarese and the TedTones" title="Sinner's Happy Hour with Ted Savarese and the TedTones" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1261079-sinners-happy-hour-ted-san-francisco/">Sinner's Happy Hour with Ted Savarese and the TedTones</a></h1> <h2 class="dates">Thu 8/04</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-04T17:00:00-07:00"></span>5:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-04T19:30:00-07:00"></span>(event ends at 7:30 pm)</span></h2>
<h2 class="venue location">The Vestry</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1261079-sinners-happy-hour-ted-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1259729 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1259729-mandolin-orange-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/16/83-atsm.jpg" width="100" height="67" alt="Mandolin Orange" title="Mandolin Orange" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1259729-mandolin-orange-san-francisco/">Mandolin Orange</a></h1>
<h2 class="supports description"><a href=" /event/1259729-mandolin-orange-san-francisco/ ">Leif Vollebekk</a></h2> <h2 class="dates">Fri 9/30</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-30T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1259729-mandolin-orange-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1259729" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1256173 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1256173-thee-oh-sees-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/61/29-atsm.jpg" width="100" height="66" alt="Thee Oh Sees" title="Thee Oh Sees" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents Two Nights with</h2> <h1 class="headliners summary"><a href="/event/1256173-thee-oh-sees-san-francisco/">Thee Oh Sees</a></h1>
<h2 class="supports description"><a href=" /event/1256173-thee-oh-sees-san-francisco/ ">Alex Cameron</a></h2> <h2 class="dates">Tue 11/29</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-29T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1256173-thee-oh-sees-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1256173" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1256185 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1256185-thee-oh-sees-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/61/29-atsm.jpg" width="100" height="66" alt="Thee Oh Sees" title="Thee Oh Sees" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents Two Nights with</h2> <h1 class="headliners summary"><a href="/event/1256185-thee-oh-sees-san-francisco/">Thee Oh Sees</a></h1>
<h2 class="supports description"><a href=" /event/1256185-thee-oh-sees-san-francisco/ ">Alex Cameron</a></h2> <h2 class="dates">Wed 11/30</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-30T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1256185-thee-oh-sees-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1256185" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1257303 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1257303-charles-bradley-his-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/80/51-atsm.jpg" width="100" height="68" alt="Charles Bradley &amp; His Extraordinaires" title="Charles Bradley &amp; His Extraordinaires" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) & The Chapel Present in association with Noise Pop 25 to 25</h2> <h1 class="headliners summary"><a href="/event/1257303-charles-bradley-his-san-francisco/">Charles Bradley & His Extraordinaires</a></h1>
<h2 class="dates">Fri 9/02</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-02T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257303-charles-bradley-his-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1257303" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$40.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1257307 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1257307-charles-bradley-his-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/80/51-atsm.jpg" width="100" height="68" alt="Charles Bradley &amp; His Extraordinaires" title="Charles Bradley &amp; His Extraordinaires" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) & The Chapel Present in association with Noise Pop 25 to 25</h2> <h1 class="headliners summary"><a href="/event/1257307-charles-bradley-his-san-francisco/">Charles Bradley & His Extraordinaires</a></h1>
<h2 class="dates">Sat 9/03</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-03T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257307-charles-bradley-his-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1257307" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$40.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1257401 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1257401-banda-sin-nombre-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/82/49-atsm.jpg" width="100" height="67" alt="Banda Sin Nombre" title="Banda Sin Nombre" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Free Bar Show!</h2> <h1 class="headliners summary"><a href="/event/1257401-banda-sin-nombre-san-francisco/">Banda Sin Nombre</a></h1>
<h2 class="dates">Sun 8/07</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-07T20:00:00-07:00"></span>8:00 pm</span> <span class="end dtend"><span class="value-title" title="2016-08-07T23:00:00-07:00"></span>(event ends at 11:00 pm)</span></h2>
<h2 class="venue location">The Chapel Bar</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1257401-banda-sin-nombre-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1253809 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1253809-natural-child-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/24/43-atsm.jpg" width="100" height="66" alt="Natural Child" title="Natural Child" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1253809-natural-child-san-francisco/">Natural Child</a></h1>
<h2 class="supports description"><a href=" /event/1253809-natural-child-san-francisco/ ">Faux Ferocious</a></h2> <h2 class="dates">Thu 9/29</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-29T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1253809-natural-child-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1253809" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1252689 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252689-adam-greens-aladdin-film-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/11/71-atsm.jpg" width="100" height="114" alt="Adam Green's Aladdin - Film and Concert" title="Adam Green's Aladdin - Film and Concert" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1252689-adam-greens-aladdin-film-san-francisco/">Adam Green's Aladdin - Film and Concert</a></h1> <h2 class="dates">Tue 10/04</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-04T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252689-adam-greens-aladdin-film-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1252689" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1252435 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252435-magic-trick-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/10/05-atsm.jpg" width="100" height="66" alt="Magic Trick (record release show)" title="Magic Trick (record release show)" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1252435-magic-trick-record-release-san-francisco/">Magic Trick (record release show)</a></h1><h2 class="supports description"><a href=" /event/1252435-magic-trick-record-release-san-francisco/ ">Assateague</a></h2> <h2 class="dates">Thu 8/18</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-18T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252435-magic-trick-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1252435" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1252399 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/18/07/21-atsm.jpg" width="100" height="125" alt="Five and Diamond Annual Pre-Playa Loft Sale" title="Five and Diamond Annual Pre-Playa Loft Sale" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/">Five and Diamond Annual Pre-Playa Loft Sale</a></h1>
<h2 class="dates">Sat 8/13</h2>
<h2 class="times">
<span class="start dtstart"><span class="value-title" title="2016-08-13T11:00:00-07:00"></span>11:00 am</span> <span class="end dtend"><span class="value-title" title="2016-08-13T18:00:00-07:00"></span>(event ends at 6:00 pm)</span></h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1252399-five-diamond-annual-pre-playa-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="free">Free</h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1249015 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1249015-lissie-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/17/49/41-atsm.jpg" width="100" height="67" alt="Lissie" title="Lissie" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1249015-lissie-san-francisco/">Lissie</a></h1>
<h2 class="dates">Thu 9/22</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-22T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1249015-lissie-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1249015" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1245851 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1245851-terry-malts-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/96/21-atsm.jpg" width="100" height="100" alt="Terry Malts" title="Terry Malts" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1245851-terry-malts-san-francisco/">Terry Malts</a></h1>
<h2 class="supports description"><a href=" /event/1245851-terry-malts-san-francisco/ ">Wyatt Blair, Babewatch, Cocktails</a></h2> <h2 class="dates">Tue 8/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-09T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1245851-terry-malts-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1245851" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1241095 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1241095-sandys-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/19/76/77-atsm.jpg" width="100" height="75" alt="Sandy's" title="Sandy's" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">Mollusk & (((folkYEAH!))) Present</h2> <h1 class="headliners summary"><a href="/event/1241095-sandys-san-francisco/">Sandy's</a></h1>
<h2 class="supports description"><a href=" /event/1241095-sandys-san-francisco/ ">Thomas Campbell "Film Projections & Live Musical Score", The Pesos</a></h2> <h2 class="dates">Thu 9/01</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-01T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1241095-sandys-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1241095" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1241017 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1241017-zoo-station-complete-u2-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/51/19-atsm.jpg" width="100" height="100" alt="Zoo Station: The Complete U2 Experience" title="Zoo Station: The Complete U2 Experience" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1241017-zoo-station-complete-u2-san-francisco/">Zoo Station: The Complete U2 Experience</a></h1><h2 class="supports description"><a href=" /event/1241017-zoo-station-complete-u2-san-francisco/ ">The Jean Genies - Tribute to David Bowie, Pretending: A Pretenders Tribute</a></h2> <h2 class="dates">Sat 8/06</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-06T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1241017-zoo-station-complete-u2-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1241017" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1240689 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1240689-masquerade-ball-mystic-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/16/28/43-atsm.jpg" width="100" height="100" alt="A Masquerade Ball with The Mystic Braves" title="A Masquerade Ball with The Mystic Braves" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1240689-masquerade-ball-mystic-san-francisco/">A Masquerade Ball with The Mystic Braves</a></h1> <h2 class="dates">Mon 10/31</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-31T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1240689-masquerade-ball-mystic-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1240689" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1234159 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1234159-califone-roomsound-15th-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/27/75-atsm.jpg" width="100" height="133" alt="Califone - Roomsound 15th Anniversary Tour" title="Califone - Roomsound 15th Anniversary Tour" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1234159-califone-roomsound-15th-san-francisco/">Califone - Roomsound 15th Anniversary Tour</a></h1><h2 class="supports description"><a href=" /event/1234159-califone-roomsound-15th-san-francisco/ ">Slow Moses</a></h2> <h2 class="dates">Fri 10/07</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-07T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1234159-califone-roomsound-15th-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1234159" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1233425 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/12/75-atsm.jpg" width="100" height="70" alt="Spiral Stairs' 50th Birthday! With Special Guests: The Clean" title="Spiral Stairs' 50th Birthday! With Special Guests: The Clean" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">GIBBSMO and (((folkYEAH!))) Present</h2><h1 class="headliners summary"><a href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/">Spiral Stairs' 50th Birthday! With Special Guests: The Clean</a></h1><h2 class="supports description"><a href=" /event/1233425-spiral-stairs-50th-birthday-san-francisco/ ">Kelley Stoltz (with special guest Spiral Stairs), For Your Pleasure (A Tribute to Roxy Music)</a></h2> <h2 class="dates">Sat 10/01</h2>
<h2 class="times">
<span class="doors">Doors: 8:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-01T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1233425-spiral-stairs-50th-birthday-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1233425" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1232857 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1232857-tyrone-wells-cover-cover-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/15/04/71-atsm.png" width="100" height="126" alt="Tyrone Wells &quot;Cover to Cover&quot;" title="Tyrone Wells &quot;Cover to Cover&quot;" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1232857-tyrone-wells-cover-cover-san-francisco/">Tyrone Wells "Cover to Cover"</a></h1><h2 class="supports description"><a href=" /event/1232857-tyrone-wells-cover-cover-san-francisco/ ">Tony Lucca</a></h2> <h2 class="dates">Wed 11/16</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-16T20:00:00-08:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1232857-tyrone-wells-cover-cover-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1232857" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15 adv / $17 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1232085 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1232085-veils-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/91/05-atsm.jpg" width="100" height="67" alt="The Veils" title="The Veils" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1232085-veils-san-francisco/">The Veils</a></h1>
<h2 class="dates">Wed 11/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-11-09T21:00:00-08:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1232085-veils-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1232085" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1229669 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1229669-blue-bear-school-music-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/40/61-atsm.jpg" width="100" height="67" alt="Blue Bear School of Music Benefit featuring White Denim" title="Blue Bear School of Music Benefit featuring White Denim" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1229669-blue-bear-school-music-san-francisco/">Blue Bear School of Music Benefit featuring White Denim</a></h1><h2 class="supports description"><a href=" /event/1229669-blue-bear-school-music-san-francisco/ ">The New Up</a></h2> <h2 class="dates">Tue 9/06</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-06T20:00:00-07:00"></span>Show: 8:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1229669-blue-bear-school-music-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1229669" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$25.00 - $150.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1228623 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1228623-mild-high-club-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/38/99-atsm.jpg" width="100" height="56" alt="Mild High Club Record Release Show" title="Mild High Club Record Release Show" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2><h1 class="headliners summary"><a href="/event/1228623-mild-high-club-record-release-san-francisco/">Mild High Club Record Release Show</a></h1> <h2 class="dates">Fri 8/26</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-26T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1228623-mild-high-club-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1228623" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $15 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1225203 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1225203-roosevelt-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/77/87-atsm.jpg" width="100" height="67" alt="Roosevelt" title="Roosevelt" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1225203-roosevelt-san-francisco/">Roosevelt</a></h1>
<h2 class="dates">Wed 9/21</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-21T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1225203-roosevelt-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1225203" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1228653 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1228653-marc-casuals-summer-soul-san-francisco/"><img src="//cdn.ticketfly.com/i/00/01/93/35/33-atsm.jpg" width="100" height="67" alt="Marc &amp; the Casuals Summer Soul Celebration" title="Marc &amp; the Casuals Summer Soul Celebration" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1228653-marc-casuals-summer-soul-san-francisco/">Marc & the Casuals Summer Soul Celebration</a></h1><h2 class="supports description"><a href=" /event/1228653-marc-casuals-summer-soul-san-francisco/ ">Loveseat Congregation</a></h2> <h2 class="dates">Fri 8/19</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-19T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1228653-marc-casuals-summer-soul-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1228653" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$18 door / $20 adv </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1226639 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1226639-cool-ghouls-record-release-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/14/06/55-atsm.jpg" width="100" height="66" alt="Cool Ghouls' Record Release Party" title="Cool Ghouls' Record Release Party" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1226639-cool-ghouls-record-release-san-francisco/">Cool Ghouls' Record Release Party</a></h1><h2 class="supports description"><a href=" /event/1226639-cool-ghouls-record-release-san-francisco/ ">Silver Shadows, Emotional</a></h2> <h2 class="dates">Thu 8/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1226639-cool-ghouls-record-release-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1226639" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1224373 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1224373-marc-broussard-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/64/83-atsm.jpg" width="100" height="67" alt="Marc Broussard" title="Marc Broussard" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1224373-marc-broussard-san-francisco/">Marc Broussard</a></h1>
<h2 class="supports description"><a href=" /event/1224373-marc-broussard-san-francisco/ ">Jenn Grinels, Peter Aristone (solo acoustic)</a></h2> <h2 class="dates">Thu 10/13</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-13T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1224373-marc-broussard-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1224373" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$25 adv / $30 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1223023 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1223023-otis-straight-outta-memphis-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/13/41/21-atsm.jpg" width="100" height="67" alt="Otis &quot;Straight Outta Memphis&quot; feat. Miss Nickki" title="Otis &quot;Straight Outta Memphis&quot; feat. Miss Nickki" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1223023-otis-straight-outta-memphis-san-francisco/">Otis "Straight Outta Memphis" feat. Miss Nickki</a></h1><h2 class="supports description"><a href=" /event/1223023-otis-straight-outta-memphis-san-francisco/ ">Martin Luther McCoy</a></h2> <h2 class="dates">Sat 8/27</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-27T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1223023-otis-straight-outta-memphis-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1223023" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1211745 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1211745-vaud-villains-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/11/67/95-atsm.jpg" width="100" height="67" alt="Vaud &amp; The Villains" title="Vaud &amp; The Villains" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1211745-vaud-villains-san-francisco/">Vaud & The Villains</a></h1>
<h2 class="dates">Fri 8/12</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-12T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1211745-vaud-villains-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1211745" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1205545 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1205545-passenger-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/10/72/31-atsm.jpeg" width="100" height="67" alt="Passenger" title="Passenger" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1205545-passenger-san-francisco/">Passenger</a></h1>
<h2 class="dates">Sun 8/14</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-14T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1205545-passenger-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="sold-out">Sold Out</h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1207955 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1207955-ryley-walker-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/11/51/17-atsm.jpg" width="100" height="66" alt="Ryley Walker" title="Ryley Walker" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) presents</h2> <h1 class="headliners summary"><a href="/event/1207955-ryley-walker-san-francisco/">Ryley Walker</a></h1>
<h2 class="supports description"><a href=" /event/1207955-ryley-walker-san-francisco/ ">Circuit des Yeux</a></h2> <h2 class="dates">Wed 10/12</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-12T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1207955-ryley-walker-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1207955" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$12 adv / $14 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1199455 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1199455-steve-gunn-outliners-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/78/69-atsm.jpg" width="100" height="67" alt="Steve Gunn and the Outliners" title="Steve Gunn and the Outliners" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1199455-steve-gunn-outliners-san-francisco/">Steve Gunn and the Outliners</a></h1>
<h2 class="supports description"><a href=" /event/1199455-steve-gunn-outliners-san-francisco/ ">Nap Eyes</a></h2> <h2 class="dates">Wed 9/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1199455-steve-gunn-outliners-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1199455" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1199069 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1199069-monolord-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/69/31-atsm.jpg" width="100" height="100" alt="Monolord" title="Monolord" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1199069-monolord-san-francisco/">Monolord</a></h1>
<h2 class="supports description"><a href=" /event/1199069-monolord-san-francisco/ ">Beastmaker, Sweat Lodge</a></h2> <h2 class="dates">Mon 8/08</h2>
<h2 class="times">
<span class="doors">Doors: 7:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-08T19:30:00-07:00"></span>Show: 7:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1199069-monolord-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1199069" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1197991 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1197991-rasputina-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/51/75-atsm.jpg" width="100" height="150" alt="Rasputina" title="Rasputina" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1197991-rasputina-san-francisco/">Rasputina</a></h1>
<h2 class="supports description"><a href=" /event/1197991-rasputina-san-francisco/ ">Vita and The Woolf</a></h2> <h2 class="dates">Fri 10/28</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-28T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1197991-rasputina-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1197991" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$17 adv / $20 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1195639 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1195639-joseph-arthur-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/09/08/71-atsm.jpg" width="100" height="67" alt="Joseph Arthur" title="Joseph Arthur" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1195639-joseph-arthur-san-francisco/">Joseph Arthur</a></h1>
<h2 class="supports description"><a href=" /event/1195639-joseph-arthur-san-francisco/ ">Reuben Hollebon</a></h2> <h2 class="dates">Sun 9/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1195639-joseph-arthur-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1195639" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$16 adv / $18 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1187341 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1187341-matt-wertz-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/07/75/27-atsm.jpg" width="100" height="67" alt="Matt Wertz" title="Matt Wertz" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1187341-matt-wertz-san-francisco/">Matt Wertz</a></h1>
<h2 class="supports description"><a href=" /event/1187341-matt-wertz-san-francisco/ ">Cappa, Aaron Krause</a></h2> <h2 class="dates">Tue 9/27</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-27T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1187341-matt-wertz-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1187341" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1186177 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1186177-tobacco-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/07/54/21-atsm.jpg" width="100" height="67" alt="TOBACCO" title="TOBACCO" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1186177-tobacco-san-francisco/">TOBACCO</a></h1>
<h2 class="supports description"><a href=" /event/1186177-tobacco-san-francisco/ ">High Tides, Odonis Odonis</a></h2> <h2 class="dates">Tue 10/11</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-10-11T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1186177-tobacco-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1186177" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1182569 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1182569-diane-coffee-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/06/90/05-atsm.jpg" width="100" height="150" alt="Diane Coffee" title="Diane Coffee" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1182569-diane-coffee-san-francisco/">Diane Coffee</a></h1>
<h2 class="supports description"><a href=" /event/1182569-diane-coffee-san-francisco/ ">Waterstrider</a></h2> <h2 class="dates">Thu 8/25</h2>
<h2 class="times">
<span class="doors">Doors: 7:30 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-25T20:30:00-07:00"></span>Show: 8:30 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1182569-diane-coffee-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1182569" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1181609 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1181609-marissa-nadler-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/06/67/75-atsm.jpg" width="100" height="150" alt="Marissa Nadler" title="Marissa Nadler" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1181609-marissa-nadler-san-francisco/">Marissa Nadler</a></h1>
<h2 class="supports description"><a href=" /event/1181609-marissa-nadler-san-francisco/ ">Wrekmeister Harmonies, Muscle and Marrow</a></h2> <h2 class="dates">Thu 8/04</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-04T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1181609-marissa-nadler-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1181609" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1175847 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1175847-pop-rocks-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/05/86/53-atsm.jpeg" width="100" height="100" alt="Pop Rocks" title="Pop Rocks" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1175847-pop-rocks-san-francisco/">Pop Rocks</a></h1>
<h2 class="dates">Fri 9/09</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-09T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1175847-pop-rocks-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1175847" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1157795 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1157795-sara-watkins-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/03/06/43-atsm.jpeg" width="100" height="67" alt="Sara Watkins" title="Sara Watkins" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1157795-sara-watkins-san-francisco/">Sara Watkins</a></h1>
<h2 class="dates">Wed 9/14</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-09-14T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1157795-sara-watkins-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1157795" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$20 adv / $25 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1134841 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1134841-sheepdogs-san-francisco/"><img src="//cdn.ticketfly.com/i/00/01/99/35/65-atsm.jpg" width="100" height="70" alt="The Sheepdogs" title="The Sheepdogs" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1134841-sheepdogs-san-francisco/">The Sheepdogs</a></h1>
<h2 class="supports description"><a href=" /event/1134841-sheepdogs-san-francisco/ ">Quaker City Night Hawks</a></h2> <h2 class="dates">Fri 8/05</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-05T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1134841-sheepdogs-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1134841" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$15.00 </h3>
</div>
</div>
<div class="list-view-item tfly-event-id-1151171 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1151171-emily-king-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/02/79/81-atsm.jpg" width="100" height="100" alt="Emily King" title="Emily King" /></a>
<div class="list-view-details vevent">
<h1 class="headliners summary"><a href="/event/1151171-emily-king-san-francisco/">Emily King</a></h1>
<h2 class="supports description"><a href=" /event/1151171-emily-king-san-francisco/ ">David Ryan Harris</a></h2> <h2 class="dates">Wed 8/03</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-03T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1151171-emily-king-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="sold-out">Sold Out</h3>
<h3 class="price-range">
$20 adv / $22 door </h3>
</div>
</div>
<div class="list-view-item alt tfly-event-id-1139089 tfly-org-id-1695 tfly-venue-id-5519">
<a href="/event/1139089-julia-holter-san-francisco/"><img src="//cdn.ticketfly.com/i/00/02/00/14/81-atsm.jpg" width="100" height="67" alt="Julia Holter" title="Julia Holter" /></a>
<div class="list-view-details vevent">
<h2 class="topline-info">(((folkYEAH!))) Presents</h2> <h1 class="headliners summary"><a href="/event/1139089-julia-holter-san-francisco/">Julia Holter</a></h1>
<h2 class="supports description"><a href=" /event/1139089-julia-holter-san-francisco/ ">White Magic</a></h2> <h2 class="dates">Wed 8/31</h2>
<h2 class="times">
<span class="doors">Doors: 8:00 pm</span> / <span class="start dtstart"><span class="value-title" title="2016-08-31T21:00:00-07:00"></span>Show: 9:00 pm</span> </h2>
<h2 class="venue location">The Chapel</h2><h2 class="city-state">San Francisco,&nbsp;CA</h2> <h2 class="age-restriction all-ages">
This event is all ages </h2>
<h2 class="more-info"><a class="url" href="/event/1139089-julia-holter-san-francisco/">More Info</a></h2>
</div>
<div class="ticket-price">
<h3 class="ticket-link primary-link"><a class="tickets" href="https://www.ticketfly.com/purchase/event/1139089" onclick="return tfly_openWindowGA(this);" target="_blank">Tickets</a></h3>
<h3 class="price-range">
$22 adv / $25 door </h3>
</div>
</div>
<div class="clearer"></div>
</div>
</div>
</div>
</article>
</div>
</section>
<section class="sidebar four columns">
<!--
<div class="widget-box box-frame dining-hours text-center">
<h3>Venue Contact</h3>
<div class="hours-of pad15">
<a href="mailto:" target="_blank"></a> <br/ >
<a href="mailto:" target="_blank"></a>
</div>
</div>
-->
<div class="text-center">
<div class="tfly-search ticketfly">
<form method="get" id="searchform" action="/listing/">
<div>
<input type="text" value="Enter an Artist or Event" onblur="if(this.value==''){this.value=this.defaultValue;}" onfocus="if(this.value==this.defaultValue){this.value='';}" class="textform" id="q" name="q"/>
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
</div> </div>
<div class="widget-box box-frame dining-hours text-center">
<h3>Come On In</h3>
<div class="hours-of pad15">
<strong>The Vestry Restaurant</strong><br/>
Tue-Thu 5:00 pm - 10:00 pm
<br/>
Fri 5:00pm - 11:30 pm
<br/>
Sat 11:00am - 11:30 pm
<br/>
Sun 11:00am - 5:00 pm<br/>
<br/>
Weekend Brunch<br/>
11:00 am - 3:00 pm <br/><br/>
Sinner's Happy Hour<br/>
Every Tue-Fri 5:00pm - 7:00pm
<br/><br/>
<strong>Chapel Bar</strong><br/>
Tue-Sun 7:00pm - 2:00am
<br/><br/>
<strong>The Chapel Box Office</strong><br/>
12:30pm - 4:30pm on Saturday + an hour and a half before doors on show nights <a class="button alert radius medium expand" href="http://www.thechapelsf.com/vestry-restaurant/reservations/">Make Dinner Reservations</a>
</div>
</div>
<div class="widget-box box-frame text-center">
<h3>Free Events in the Bar</h3>
<div class="sidebar-list upcoming">
<ul> <li class="tfly-event-id-1261079 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1261079-sinners-happy-hour-ted-san-francisco/"><span class="date">Thu 8/04</span> - Sinner's Happy Hour with Ted Savarese and the TedTones </a></li>
<li class="tfly-event-id-1257401 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1257401-banda-sin-nombre-san-francisco/"><span class="date">Sun 8/07</span> - Banda Sin Nombre </a></li>
<li class="tfly-event-id-1264237 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1264237-los-peregrinos-cosmicos-san-francisco/"><span class="date">Wed 8/10</span> - Los Peregrinos Cósmicos </a></li>
<li class="tfly-event-id-1265155 tfly-org-id-1695 tfly-venue-id-19669">
<a href="/event/1265155-sinners-happy-hour-patrick-san-francisco/"><span class="date">Thu 8/11</span> - Sinner's Happy Hour with the Patrick Wolff Trio </a></li>
<li class="tfly-event-id-1268393 tfly-org-id-1695 tfly-venue-id-6879">
<a href="/event/1268393-moon-meridian-san-francisco/"><span class="date">Tue 8/16</span> - The Moon Meridian </a></li>
</ul>
</div>
</div>
<div class="widget-box box-frame recent-news">
<h3 class="clearfix"><span class="left">What's Happening</span> <a class="right" href="http://www.thechapelsf.com/news/">More &raquo;</a></h3>
<div class="pad15">
<div class="recent-news-item">
<h4><a href="http://www.thechapelsf.com/2016/08/02/wed-810-free-bar-show-los-peregrinos-cosmicos/">Wed 8/10 &#8211; Free Bar Show! Los Peregrinos Cósmicos</a></h4>
<span class="post-date">August 2, 2016</span>
</div>
<div class="recent-news-item">
<h4><a href="http://www.thechapelsf.com/2016/08/02/mon-87-free-bar-show-banda-sin-nombre-at-the-chapel-bar/">Mon 8/7 &#8211; Free Bar Show! Banda Sin Nombre at the Chapel Bar</a></h4>
<span class="post-date">August 2, 2016</span>
</div>
<div class="recent-news-item">
<h4><a href="http://www.thechapelsf.com/2016/08/01/sinners-happy-hour-with-ted-savarese-and-the-tedtones/">Thurs 8/4 &#8211; Sinner&#8217;s Happy Hour with Ted Savarese and the TedTones</a></h4>
<span class="post-date">August 1, 2016</span>
</div>
<div class="recent-news-item">
<h4><a href="http://www.thechapelsf.com/2016/05/12/celebrate-carnaval-with-sambada/">Celebrate Carnaval with SambaDá!</a></h4>
<span class="post-date">May 12, 2016</span>
</div>
<div class="recent-news-item">
<h4><a href="http://www.thechapelsf.com/2016/04/21/free-cinco-de-mayo-fiesta-with-mariachi-band-trio-sol-de-america/">FREE Cinco de Mayo Fiesta with Mariachi band Trio Sol de America!</a></h4>
<span class="post-date">April 21, 2016</span>
</div>
</div>
</div>
<a class="text-center tf-logo" href="http://start.ticketfly.com" target="_blank">
<img src="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/images/ticketfly-logo.png" alt="TicketFly" />
</a>
</section>
</div>
<footer class="footer row">
<!--
<div class="twelve columns">
<div class="fb-action widget-box pad15">
<div class="row">
<div class="six columns">
<h3>Have you liked us yet?</h3>
<p>Come on. We're very friendly, and love to share. Join your friends!</p>
</div>
<div class="six columns">
<div class="fb-like" data-href="http://www.thechapelsf.com" data-width="300" data-show-faces="true" data-send="false"></div>
</div>
</div>
</div>
</div>
-->
<div class="twelve columns">
<div class="award-logos">
<h3>Awards</h3>
<div class="row">
<div class="col-1-5 columns">
<a href="http://www.niteyawards.com" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/nitey.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="http://www.sfweekly.com/sanfrancisco/readers-poll-winners/BestOf?oid=3592771" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/sfweeklyupdated.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="http://www.californiahomedesign.com/gallery/10-most-beautiful-music-venues-california#1" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/CA_Home_Design_Logo_2013.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="http://weddingguide.thebolditalic.com/venues.html" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/vendorBadge.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/offbeat-bride-vendor.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="http://www.modernluxury.com/san-francisco/story/the-best-places-play-san-francisco-2015" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/best-of-sf.png" alt="Award Logo" />
</a>
</div>
<div class="col-1-5 columns">
<a href="http://www.thechapelsf.com/vestry-restaurant/reservations" target="_blank">
<img src="http://www.thechapelsf.com/files/2012/09/dinerschoice-2015.png" alt="Award Logo" />
</a>
</div>
</div>
</div>
</div>
<div class="twelve columns clearfix">
<div class="footer-links">
<p class="left">&copy; 2016 The Chapel</p>
<p class="right">Site by <a href="http://bravewhale.com">Brave Whale</a></p>
</div>
</div>
</footer>
</div><!-- .container -->
</div><!-- .outer-bg -->
<!-- Include javascript files -->
<script src="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/js/cycle2.min.js"></script>
<script src="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/js/jquery.fitvids.js"></script>
<script src="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/js/accordion/vallenato.js"></script>
<script src="https://cdn.ticketfly.com/wp-content/themes/thechapelsf/js/jquery.custom.js"></script>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
// FitVids
$('.row').fitVids();
// Tabbed Nav for music page or other
$('ul.tabs').each(function(){
// For each set of tabs, we want to keep track of
// which tab is active and it's associated content
var $active, $content, $links = $(this).find('a');
// If the location.hash matches one of the links, use that as the active tab.
// If no match is found, use the first link as the initial active tab.
$active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]);
$active.addClass('active');
$content = $($active.attr('href'));
// Hide the remaining content
$links.not($active).each(function () {
$($(this).attr('href')).hide();
});
// Bind the click event handler
$(this).on('click', 'a', function(e){
// Make the old tab inactive.
$active.removeClass('active');
$content.hide();
// Update the variables with the new link and content
$active = $(this);
$content = $($(this).attr('href'));
// Make the tab active.
$active.addClass('active');
$content.show();
// Prevent the anchor's default click action
e.preventDefault();
});
});
});
})( jQuery );
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.thechapelsf.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.thechapelsf.com/listing/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wpcf7 = {"loaderUrl":"http:\/\/www.thechapelsf.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","recaptchaEmpty":"Please verify that you are not a robot.","sending":"Sending ..."};
/* ]]> */
</script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.3.1'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/comment-reply.min.js?ver=4.4.2'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-includes/js/wp-embed.min.js?ver=4.4.2'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.7.min.js?ver=1.5.7'></script>
<script type='text/javascript' src='https://cdn.ticketfly.com/wp-content/plugins/easy-fancybox/jquery.mousewheel.min.js?ver=3.1.12'></script>
<script type="text/javascript">
jQuery(document).on('ready post-load', easy_fancybox_handler );
</script>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"c165d52f09","applicationID":"1832719","transactionName":"NVRSMUBZWhVRBRBeXgwecQZGUVsIHxYFUFRPXEUWW1s=","queueTime":0,"applicationTime":1138,"atts":"GRNRRwhDSRs=","errorBeacon":"bam.nr-data.net","agent":""}</script></body>
</html>
import pytest
from chapelsf import parse_shows
@pytest.fixture(scope='module')
def markup():
with open('markup.html') as f:
data = f.read()
return data
def test_parse_shows(markup):
result = parse_shows(markup)
first = {'show_date': 'Wed 8/03 Doors: 8:00 pm / Show: 9:00 pm', 'ticket_url': 'http://www.thechapelsf.com/music//event/1151171-emily-king-san-francisco/', 'artist': 'Emily King', 'sold_out': True, 'ticket_price': '\n$20 adv / $22 door\t '}
assert first == result[0]
second = {'show_date': 'Thu 8/04 5:00 pm / ', 'ticket_url': 'http://www.thechapelsf.com/music//event/1261079-sinners-happy-hour-ted-san-francisco/', 'artist': "Sinner's Happy Hour with Ted Savarese and the TedTones", 'sold_out': False, 'ticket_price': None}
assert second == result[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment