Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • github3/github3.py
1 result
Show changes
Commits on Source (2)
  • Jesse Keating's avatar
    Split up Issue objects · af8ea28f
    Jesse Keating authored
    
    This creates 3 classes; one for iterations (Short), one for direct GETs
    (Issue), and one for events (EventIssue). Most attributes
    are directly assigned, except where otherwise commented.
    
    Some cassettes needed to be updated for the relatively new 'assignees'
    attribute that now comes back. A sample json needed to be updated as
    well. Cassettes that needed updated that were associated with
    authenticated calls got the calls updated to use auto_login as well.
    
    Some cassettes will break between older requests and newer, so tag those
    tests accordingly. Allow the tests to work in older requests land for
    now.
    
    The search tests needed to be updated as well, label name changed and
    syntax changed slightly.
    
    Related-to #670
    
    Signed-off-by: default avatarJesse Keating <jkeating@j2solutions.net>
    af8ea28f
  • Ian Stapleton Cordasco's avatar
    Merge pull request #751 from omgjlk/split-issue-object-670 · 0657d446
    Ian Stapleton Cordasco authored
    Split up Issue objects
    Unverified
    0657d446
Showing
with 147 additions and 100 deletions
Loading
Loading
@@ -266,7 +266,7 @@ def issues_on(owner, repository, milestone=None, state=None, assignee=None,
Default: -1 returns all issues
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.Issue>`\ s
:returns: generator of :class:`ShortIssue <github3.issues.ShortIssue>`\ s
 
"""
if owner and repository:
Loading
Loading
Loading
Loading
@@ -68,6 +68,24 @@ class EventPullRequest(GitHubCore):
return self._instance_or_null(pulls.PullRequest, json)
 
 
class EventIssue(GitHubCore):
"""The class that represents the issue information returned in Events."""
def _update_attributes(self, issue):
self.id = issue['id']
self.number = issue['number']
self.state = issue['state']
self.title = issue['title']
self.locked = issue['locked']
self._api = self.url = issue['url']
def to_issue(self):
"""Retrieve a full Issue object for this EventIssue."""
from . import issues
json = self._json(self._get(self.url), 200)
return self._instance_or_null(issues.Issue, json)
class Event(GitHubCore):
 
"""The :class:`Event <Event>` object. It structures and handles the data
Loading
Loading
@@ -156,19 +174,17 @@ def _gist(payload, session):
 
 
def _issuecomm(payload, session):
from .issues import Issue
from .issues.comment import IssueComment
if payload.get('issue'):
payload['issue'] = Issue(payload['issue'], session)
payload['issue'] = EventIssue(payload['issue'], session)
if payload.get('comment'):
payload['comment'] = IssueComment(payload['comment'], session)
return payload
 
 
def _issueevent(payload, session):
from .issues import Issue
if payload.get('issue'):
payload['issue'] = Issue(payload['issue'], session)
payload['issue'] = EventIssue(payload['issue'], session)
return payload
 
 
Loading
Loading
Loading
Loading
@@ -15,7 +15,7 @@ from .decorators import (requires_auth, requires_basic_auth,
requires_app_credentials)
from .events import Event
from .gists import Gist
from .issues import Issue, issue_params
from .issues import ShortIssue, Issue, issue_params
from .models import GitHubCore
from .orgs import Membership, ShortOrganization, Organization, Team
from .projects import Project, ProjectCard, ProjectColumn
Loading
Loading
@@ -282,7 +282,8 @@ class GitHub(GitHubCore):
<github3.issues.Milestone>` object, ``m.number`` is what you pass
here.)
:param list labels: (optional), List of label names.
:returns: :class:`Issue <github3.issues.Issue>` if successful
:returns: :class:`ShortIssue <github3.issues.ShortIssue>` if
successful
"""
repo = None
if owner and repository and title:
Loading
Loading
@@ -292,7 +293,7 @@ class GitHub(GitHubCore):
return repo.create_issue(title, body, assignee, milestone,
labels, assignees)
 
return self._instance_or_null(Issue, None)
return self._instance_or_null(ShortIssue, None)
 
@requires_auth
def create_key(self, title, key, read_only=False):
Loading
Loading
@@ -650,12 +651,12 @@ class GitHub(GitHubCore):
Default: -1 returns all issues
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.Issue>`
:returns: generator of :class:`ShortIssue <github3.issues.ShortIssue>`
"""
url = self._build_url('issues')
# issue_params will handle the since parameter
params = issue_params(filter, state, labels, sort, direction, since)
return self._iter(int(number), url, Issue, params, etag)
return self._iter(int(number), url, ShortIssue, params, etag)
 
def issues_on(self, username, repository, milestone=None, state=None,
assignee=None, mentioned=None, labels=None, sort=None,
Loading
Loading
@@ -689,14 +690,15 @@ class GitHub(GitHubCore):
Default: -1 returns all issues
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.Issue>`\ s
:returns: generator of
:class:`ShortIssue <github3.issues.ShortIssue>`\ s
"""
if username and repository:
url = self._build_url('repos', username, repository, 'issues')
 
params = repo_issue_params(milestone, state, assignee, mentioned,
labels, sort, direction, since)
return self._iter(int(number), url, Issue, params=params,
return self._iter(int(number), url, ShortIssue, params=params,
etag=etag)
return iter([])
 
Loading
Loading
@@ -907,12 +909,12 @@ class GitHub(GitHubCore):
-1, returns all available issues
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.Issue>`
:returns: generator of :class:`ShortIssue <github3.issues.ShortIssue>`
"""
url = self._build_url('orgs', name, 'issues')
# issue_params will handle the since parameter
params = issue_params(filter, state, labels, sort, direction, since)
return self._iter(int(number), url, Issue, params, etag)
return self._iter(int(number), url, ShortIssue, params, etag)
 
@requires_auth
def organizations(self, number=-1, etag=None):
Loading
Loading
@@ -1679,13 +1681,13 @@ class GitHub(GitHubCore):
Default: -1 returns all issues
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.Issue>`
:returns: generator of :class:`ShortIssue <github3.issues.ShortIssue>`
"""
url = self._build_url('user', 'issues')
# issue_params will handle the since parameter
params = issue_params(filter, state, labels, sort, direction, since)
params.update(per_page=per_page)
return self._iter(int(number), url, Issue, params, etag)
return self._iter(int(number), url, ShortIssue, params, etag)
 
@requires_auth
def user_teams(self, number=-1, etag=None):
Loading
Loading
Loading
Loading
@@ -9,8 +9,9 @@ See also: http://developer.github.com/v3/issues/
 
from ..utils import timestamp_parameter
from .issue import Issue
from .issue import ShortIssue
 
__all__ = [Issue]
__all__ = ['Issue', 'ShortIssue']
 
 
def issue_params(filter, state, labels, sort, direction, since):
Loading
Loading
Loading
Loading
@@ -32,11 +32,12 @@ class IssueEvent(GitHubCore):
self.commit_id = self._get_attribute(event, 'commit_id')
self._api = self._get_attribute(event, 'url')
 
#: :class:`Issue <github3.issues.Issue>` where this comment was made.
from .issue import Issue
self.issue = self._class_attribute(event, 'issue', Issue, self)
#: :class:`ShortIssue <github3.issues.ShortIssue>` where this comment
#: was made.
from .issue import ShortIssue
self.issue = self._class_attribute(event, 'issue', ShortIssue, self)
 
#: :class:`User <github3.users.User>` who caused this event.
#: :class:`User <github3.users.ShortUser>` who caused this event.
self.actor = self._class_attribute(
event, 'actor', users.ShortUser, self,
)
Loading
Loading
Loading
Loading
@@ -7,127 +7,107 @@ from re import match
from uritemplate import URITemplate
 
from .. import users
from .. import models
 
from ..decorators import requires_auth
from ..models import GitHubCore
from .comment import IssueComment, issue_comment_params
from .event import IssueEvent
from .label import Label
from .milestone import Milestone
 
 
class Issue(GitHubCore):
class _Issue(models.GitHubCore):
"""The :class:`Issue <Issue>` object.
 
"""The :class:`Issue <Issue>` object. It structures and handles the data
returned via the `Issues <http://developer.github.com/v3/issues>`_ section
of the GitHub API.
Two issue instances can be checked like so::
i1 == i2
i1 != i2
And is equivalent to::
i1.id == i2.id
i1.id != i2.id
Please see GitHub's `Issue Documentation`_ for more information.
 
.. _Issue Documentation:
http://developer.github.com/v3/issues
"""
 
def _update_attributes(self, issue):
self._api = self._get_attribute(issue, 'url', '')
self._api = issue['url']
 
# Assignment may be none/empty if the issue hasn't been assigned to
# anybody. The key is there though, so just grab it.
#: :class:`User <github3.users.User>` representing the user the issue
#: was assigned to.
self.assignee = self._class_attribute(
issue, 'assignee', users.ShortUser, self)
self.assignees = self._get_attribute(issue, 'assignees')
self.assignee = issue['assignee']
if self.assignee:
self.assignee = users.ShortUser(self.assignee)
self.assignees = issue['assignees']
if self.assignees:
self.assignees = [
users.ShortUser(assignee) for assignee in self.assignees
]
 
#: Body (description) of the issue.
self.body = self._get_attribute(issue, 'body')
#: HTML formatted body of the issue.
self.body_html = self._get_attribute(issue, 'body_html')
#: Plain text formatted body of the issue.
self.body_text = self._get_attribute(issue, 'body_text')
self.body = issue['body']
 
# If an issue is still open, this field will be None
#: datetime object representing when the issue was closed.
self.closed_at = self._strptime_attribute(issue, 'closed_at')
 
#: Number of comments on this issue.
self.comments_count = self._get_attribute(issue, 'comments')
self.comments_count = issue['comments']
 
#: Comments url (not a template)
#: Comments url (not a template) # MAKE A LOOP
self.comments_url = self._get_attribute(issue, 'comments_url')
 
#: datetime object representing when the issue was created.
self.created_at = self._strptime_attribute(issue, 'created_at')
 
#: Events url (not a template)
#: Events url (not a template) # MAKE A LOOP
self.events_url = self._get_attribute(issue, 'events_url')
 
#: URL to view the issue at GitHub.
#: URL to view the issue at GitHub. # MAKE A LOOP
self.html_url = self._get_attribute(issue, 'html_url')
 
#: Unique ID for the issue.
self.id = self._get_attribute(issue, 'id')
self.id = issue['id']
 
#: Returns the list of :class:`Label <github3.issues.label.Label>`\ s
#: on this issue.
self.original_labels = self._get_attribute(issue, 'labels', [])
if self.original_labels:
self.original_labels = [
Label(l, self) for l in self.original_labels
]
self.original_labels = issue['labels']
self.original_labels = [
Label(l, self) for l in self.original_labels
]
 
#: Labels URL Template. Expand with ``name``
self.labels_urlt = self._get_attribute(
issue, 'labels_url', URITemplate
)
self.labels_urlt = URITemplate(issue['labels_url'])
 
#: Locked status
self.locked = self._get_attribute(issue, 'locked')
self.locked = issue['locked']
 
#: :class:`Milestone <github3.issues.milestone.Milestone>` this
#: issue was assigned to.
self.milestone = self._class_attribute(
issue, 'milestone', Milestone, self)
self.milestone = issue['milestone']
if self.milestone:
self.milestone = Milestone(self.milestone)
 
#: Issue number (e.g. #15)
self.number = self._get_attribute(issue, 'number')
self.number = issue['number']
 
#: Dictionary URLs for the pull request (if they exist)
self.pull_request_urls = self._get_attribute(issue, 'pull_request', {})
 
#: Returns ('owner', 'repository') this issue was filed on.
self.repository = None
if self.html_url:
m = match('https?://[\w\d\-\.\:]+/(\S+)/(\S+)/(?:issues|pull)/\d+',
self.html_url)
self.repository = m.groups()
m = match(r'https?://[\w\d\-\.\:]+/(\S+)/(\S+)/(?:issues|pull)/\d+',
self.html_url)
self.repository = m.groups()
 
#: State of the issue, e.g., open, closed
self.state = self._get_attribute(issue, 'state')
self.state = issue['state']
 
#: Title of the issue.
self.title = self._get_attribute(issue, 'title')
self.title = issue['title']
 
#: datetime object representing the last time the issue was updated.
self.updated_at = self._strptime_attribute(issue, 'updated_at')
 
#: :class:`User <github3.users.User>` who opened the issue.
self.user = self._class_attribute(
issue, 'user', users.ShortUser, self)
#: :class:`User <github3.users.User>` who closed the issue.
self.closed_by = self._class_attribute(
issue, 'closed_by', users.ShortUser, self)
self.user = users.ShortUser(issue['user'])
 
def _repr(self):
return '<Issue [{r[0]}/{r[1]} #{n}]>'.format(r=self.repository,
Loading
Loading
@@ -146,7 +126,7 @@ class Issue(GitHubCore):
 
@requires_auth
def assign(self, username):
"""Assigns user ``username`` to this issue. This is a short cut for
"""Assign user ``username`` to this issue. This is a short cut for
``issue.edit``.
 
:param str username: username of the person to assign this issue to
Loading
Loading
@@ -270,7 +250,7 @@ class Issue(GitHubCore):
return self._iter(int(number), url, IssueEvent)
 
def is_closed(self):
"""Checks if the issue is closed.
"""Check if the issue is closed.
 
:returns: bool
"""
Loading
Loading
@@ -314,7 +294,7 @@ class Issue(GitHubCore):
 
@requires_auth
def remove_label(self, name):
"""Removes label ``name`` from this issue.
"""Remove label ``name`` from this issue.
 
:param str name: (required), name of the label to remove
:returns: list of :class:`Label`
Loading
Loading
@@ -365,3 +345,48 @@ class Issue(GitHubCore):
 
url = self._build_url('lock', base_url=self._api)
return self._boolean(self._delete(url), 204, 404)
class ShortIssue(_Issue):
"""Object for the shortened representation of an Issue.
GitHub's API returns different amounts of information about issues based
upon how that information is retrieved. Often times, when iterating over
several issues, GitHub will return less information. To provide a clear
distinction between the types of issues, github3.py uses different classes
with different sets of attributes.
.. versionadded:: 1.0.0
"""
pass
class Issue(_Issue):
"""Object for the full representation of an Issue.
GitHub's API returns different amounts of information about issues based
upon how that information is retrieved. This object exists to represent
the full amount of information returned for a specific issue. For example,
you would receive this class when calling
:meth:`~github3.github.GitHub.issue`. To provide a clear
distinction between the types of issues, github3.py uses different classes
with different sets of attributes.
.. versionchanged:: 1.0.0
"""
def _update_attributes(self, issue):
super(Issue, self)._update_attributes(issue)
#: HTML formatted body of the issue.
self.body_html = issue['body_html']
#: Plain text formatted body of the issue.
self.body_text = issue['body_text']
# This maybe None if it hasn't been closed, but the key will exist
#: :class:`User <github3.users.User>` who closed the issue.
self.closed_by = issue['closed_by']
if self.closed_by:
self.closed_by = users.ShortUser(self.closed_by)
Loading
Loading
@@ -218,7 +218,8 @@ class ProjectColumn(models.GitHubCore):
"""Create a card in this project column linked with an Issue.
 
:param :class:`Issue <github3.issues.Issue>`: (required), an issue
with which to link the card
with which to link the card. Can also be
:class:`ShortIssue <github3.issues.ShortIssue>`.
:returns: :class:`ProjectCard <github3.projects.ProjectCard>` or none
"""
if not issue:
Loading
Loading
Loading
Loading
@@ -19,7 +19,7 @@ from .. import users
from ..decorators import requires_auth
from ..events import Event
from ..git import Blob, Commit, Reference, Tag, Tree
from ..issues import Issue, issue_params
from ..issues import ShortIssue, Issue, issue_params
from ..issues.event import IssueEvent
from ..issues.label import Label
from ..issues.milestone import Milestone
Loading
Loading
@@ -891,8 +891,8 @@ class Repository(GitHubCore):
:param assignees: (optional), login of the users to assign the
issue to
:type assignees: list of strings
:returns: :class:`Issue <github3.issues.issue.Issue>` if successful,
otherwise None
:returns: :class:`ShortIssue <github3.issues.ShortIssue>` if
successful, otherwise None
"""
issue = {'title': title, 'body': body, 'assignee': assignee,
'milestone': milestone, 'labels': labels,
Loading
Loading
@@ -904,7 +904,7 @@ class Repository(GitHubCore):
url = self._build_url('issues', base_url=self._api)
json = self._json(self._post(url, data=issue), 201)
 
return self._instance_or_null(Issue, json)
return self._instance_or_null(ShortIssue, json)
 
@requires_auth
def create_key(self, title, key, read_only=False):
Loading
Loading
@@ -1487,7 +1487,7 @@ class Repository(GitHubCore):
"""Get the issue specified by ``number``.
 
:param int number: (required), number of the issue on this repository
:returns: :class:`Issue <github3.issues.issue.Issue>` if successful,
:returns: :class:`Issue <github3.issues.Issue>` if successful,
otherwise None
"""
json = None
Loading
Loading
@@ -1537,14 +1537,15 @@ class Repository(GitHubCore):
By default all issues are returned
:param str etag: (optional), ETag from a previous request to the same
endpoint
:returns: generator of :class:`Issue <github3.issues.issue.Issue>`\ s
:returns: generator of
:class:`ShortIssue <github3.issues.ShortIssue>`\ s
"""
url = self._build_url('issues', base_url=self._api)
 
params = repo_issue_params(milestone, state, assignee, mentioned,
labels, sort, direction, since)
 
return self._iter(int(number), url, Issue, params, etag)
return self._iter(int(number), url, ShortIssue, params, etag)
 
@requires_auth
def key(self, id_num):
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
from __future__ import unicode_literals
 
from ..models import GitHubCore
from ..issues import Issue
from ..issues import ShortIssue
 
 
class IssueSearchResult(GitHubCore):
Loading
Loading
@@ -20,7 +20,7 @@ class IssueSearchResult(GitHubCore):
del result['text_matches']
 
#: Issue object
self.issue = Issue(result, self)
self.issue = ShortIssue(result, self)
 
def _repr(self):
return '<IssueSearchResult [{0}]>'.format(self.issue)
{"http_interactions": [{"request": {"body": "", "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate, compress", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/0.8.0"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA62YTY/iOBCG/wqKNHtZBpMEOhBpNDuX/bjNYfYyF+QkJrE6iSPbgaWj/u/7Ot8gLXS3V2ohSLsevy5XlctpHJ44oR+468B1l05JC+aETsp1Vkf+qro4S+dY5/mh/4fiaUFPXNbK25CrUeJcMumEjZOLlJdgzIeCYqbxNuudv1469EQ1lYda5hiXaV2pkJD1KpXdP1axKEj3lcTuZudvn5Ld/rj3tuxp77nBLmLMTfY+jY/B1+RLC/jkf/vk/Y4/nrBS81iUatXpMzQ839DADZ42a38TJ5TtgmCz20Qs8AJ3F9Gt97SqyvQX+eUfSB10HIxm55ECGFwvhFZ8NjWpFZOK3Hgj00V+s/5J7e3go8hzcQblxuLhRGS0NNvYUniZfpACy4YInTFsHJb0ahzFlX6/qNaqQfQoDQ8bjkI0SJa8W1hvB1km+F4bIlklWmAdqVjySnPEwfuxc2vQhExpyV/ox2iwVoAYae+X0lrBmp0Q1e8378waUkl+ovHFuEaymPETnP1B5I09iPpSmZrxN4LCuJ5rdqBJYWrAkeaKvS6ddnqNQe2DJVL+rdF/XWMSNu4qJvx+0ZkoFzmPJJWXxVHIBS81k0caI1YXZ9SwBcJ18QfXf9bR4tv3v04+BGLc86jkbua2zr9Kxms5hvRgT+4ikJ4AQNIzu1hxjH1D8NnnU4xUp5GQVItHReO+wCtQQ+Y/TSxpRgsr4S0AoEwIO0+2AIC4UjV7U2jfX3jLUWTIn7Iuoq7kvSVr7qM7ArRShUOhZMzKgyOkaQ8asytIhzLO7LADoyHdt3a3aWol1dgbebmIrDg4KEkLaYjKaHcO6YOtOkM1jCuoZEdrqYYxQrW03O9WpoGMSByCGltvpXNgkKb3aE7LtKapHXWEYNfNUZ3Sl4dNzP3cmShAosfTkke1fZGbOEZpd/oj3+1cOmEmaNuQ3O9HHjhg1pq0LigK/qgvuE/sEVdh/z9gTZzeos3vx23MY7mG0ZCpJndFv6fbeLev+oNO0kxzmGCz194xSPNrRXVmKhemqqhkNqJ7BGkiimZrtVo1GaNtW10waZnBHQEoKuMMXaONzmZgoOspqG679aORmaB7zwVNrNJthADYbaON1o4wj7EKl2ArgS1gTix4zpQWpV2NnShzdik0P/L4LTeW++l2BWq+Kl7GbEnzfImoxS2bI47Ra5tdRMPJ7DzUEbAMvIMwRMlyhpC28vrAaEh304wlw0UkOVCNC4S3dr3Pa/+z6/9w9+F2F279n5i3rpKrMRjgfna9H2sv9Nxw7ZkxVa2yGeZmyNoMQQXsQxDf8H4Dn3in0r7b+I+3KOatAQyVyibD3yaz8L5ZnCOWboL+7XOebo+lx6aQmomCVWgT+tc44yr96rKCpxNcvxIRqxXuwMSsjL9gqL8N9lcNQSzqEvvh+k9L50w1elccvfOHQyMxXvrM1FQdujR1Qi1rc6vEk6kMzB6e+TMfb3zdpa2nbzaoklxK0b+MKpGkuO9XrOzZowwM7G5robGZjYBuPBhk96tI2JHWuT50zTNkJ+j6c1FBd8n0Gde+AWxo845jWLb3+i9IEY+jmhMAAA==", "encoding": "utf-8"}, "headers": {"status": "200 OK", "x-ratelimit-remaining": "56", "x-github-media-type": "github.v3; param=full; format=json", "x-content-type-options": "nosniff", "access-control-expose-headers": "ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes", "transfer-encoding": "chunked", "x-github-request-id": "48A0D45A:72C2:BC75BE:5281932B", "content-encoding": "gzip", "vary": "Accept, Accept-Encoding", "server": "GitHub.com", "cache-control": "public, max-age=60, s-maxage=60", "last-modified": "Tue, 12 Nov 2013 02:21:02 GMT", "x-ratelimit-limit": "60", "etag": "\"ecb6855c17c2025c4c1dbf46e8e58449\"", "access-control-allow-credentials": "true", "date": "Tue, 12 Nov 2013 02:32:11 GMT", "access-control-allow-origin": "*", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1384225828"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py", "status_code": 200}, "recorded_at": "2013-11-12T02:32:06"}, {"request": {"body": "", "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate, compress", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/0.8.0"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/1"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA+1Z227jNhD9FULAtlnAsS6Wb0I2RVBg27z1IUWBdguHkiiLiUSqImVHNfLvPaQcrxMb2SRIkaA1kAeH5pw5nDkazsgrp6kLJ3JyrSsVuS6teH/Odd7E/USWbs0qqVzF5yVd8LpRQeh23w76VetypRqmXN/pOQWNWaFmrwDmdlArV9CS3QIaPEom9OuA34EBly1eDbWDAmauy+JBELai+YQ48tSJht50PAiHPUc0ZcxqJ/J7jua6YMjTj1IoXTeJJjOkilCtax43mhEpiGxqIpcCNBplzFZOIedcwGrbMb42ToLQmwy8nkMXVNP6AWevP6+7L6wKuo9u4oeTwXCUTqbZNBiy0TTwx5OYMT+dDmiSjX9IP1kZfRicfQg+44+niDBPQHlLU1gP6dgfj0JvECYpZZPxOJyEMRsHY38S02Ew6ldi/l396QZU73jMDGfnWwzM0R+Ts4nLfTk/K2fYnMmikEugPC71XUfuxnKDwsX8hSiwXLlS5wyJw5HMUzLn6luPyB5S1mqFZ1ppRNjgKKihZumzia3tQGspwGhlS4cFbGKV1LzSHDp4Puy2NdBkPaeC/01fhgZrBRBb1Z5NxVrB+il1Y0+oO7OVW9V8QZPWhKZmCeMLBPuFkA/sgajbylSJX83zj9BzzWY0LU0NyGih2O1doXaiP/60udZme1JIxVIYUIVKIRjWDrXj4VW4m1IE7On1HpsPtcNcJrtxdA+1Y7vn2hOgd1I7Sl4wpaWw9eHRi/bxvnGD81q94zbgun/E82ZaBn8QhKNgbyvl9U3jmrLN7eREoikKNJw1o1oeGqg988CuNg9F8NBA7Zscd5XSDZPQywu7nXdSBGXFxKybfJ0IA1TXPG1WRnvaKltQ0OZRjWYr8Pzg2Bsd+8MLfxwNwyic/o6gNFX6YI/vHfvjCy+MBl4UeGZP2rCZRC9nyhRauc0sG6HAvcyHNzU+gkE0CKJwYnysj7NFdWdLLNN2ZjofnOakOv2NESSbYBohJ4lM2amZTE9c+3FrQNWSlPSaETMO2gkWQwzBJaJIJjG3xlcs0apPzjLNakJJylXSoB3FXKtlSluyxFsJ8hPXPzcxUU1VyVr3CNdEMVYqQhXhmeHQfl8UJDaUDP5XUvB0x6miNV4tGDcc4KB9pcz03DGwbMyiwh7Dr3O8sYGfzihrdFOzPrnIuSJJTsWckSVomKZc6KLFaVNGjjAzKB7jX5okdh6mRdF+JDEkcW0YLnOqSdYIxEMKWnDdknOS0xQ4BWepmeuPaKFz2cxzez6S8Rus4+RSJAybzV1bQ15Y+tg/cavTL+KLQF4+17IkQi6xr4cYkmvGqu4wesdnj5ybuOV0gUTKrzkyHpFbm6ayVazIyJEJDoJUwrU5LxeaidQcBVRBurV5raS4R+ZM2HGVSDsH2iPCFSIHb1eNQhrxIqMiMrNJJFvhpiJFLgyvHFMKwVsmtgQSjAVJ6Fp4Z7+cA4HW2gLW7K+GY4c5p40IdG1Fq9mNeQS3FPvgLcqbidQI7b+sS6PJtxekYfF2Slyr8L4AL40CL99DnbyEBi8PItyqxP9OVXxzEa6v+Lg9vObZ/cVjt289TDiHCed/NOHc/gPr0O8oExwAAA==", "encoding": "utf-8"}, "headers": {"status": "200 OK", "x-ratelimit-remaining": "55", "x-github-media-type": "github.v3; param=full; format=json", "x-content-type-options": "nosniff", "access-control-expose-headers": "ETag, Link, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes", "transfer-encoding": "chunked", "x-github-request-id": "48A0D45A:72C2:BC75EF:5281932B", "content-encoding": "gzip", "vary": "Accept, Accept-Encoding", "server": "GitHub.com", "cache-control": "public, max-age=60, s-maxage=60", "last-modified": "Tue, 12 Nov 2013 02:21:02 GMT", "x-ratelimit-limit": "60", "etag": "\"ecb6855c17c2025c4c1dbf46e8e58449\"", "access-control-allow-credentials": "true", "date": "Tue, 12 Nov 2013 02:32:12 GMT", "access-control-allow-origin": "*", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1384225828"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/1", "status_code": 200}, "recorded_at": "2013-11-12T02:32:06"}], "recorded_with": "betamax"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/1"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1ZW2/bNhT+K4RelgKOJV+SNEKWIRh2ycs2FBkKbBkcSqItJhSp8WJXM/Lf+5FyXMcJssYtkKDQmy3xfOc7N5LnaBk5LaI0Kq2tTRrHtOb9Gbely/q5qmLNamViw2cVnXPtzHAct29H/bqJuTGOmXgQ9aKwkFulm8nugMARNGPCfAHGmlTcQi1jSSt2C2jYUzFpvw74HRhw2fyrobZQwCxtJbacsBGVz4gHL6L0IDk+Go0PepF0VcZ0lA56keVWMMT7RyWN1S63ZIKQE2qt5pmzjChJlNNELSRoOOPFlpFQMy4htakYr72S4Th5O0p6EZ1TS/V24MJDM1qllIfLlbTwV8guF7fSP8y/HwNuplcgHjfy6p9KTQ92PzWf5Tcsnioh1AIo26zv18BDRfFaco3C5WxHFEguY2VLBufBJJ+pM27+L00fIRWklqhPYye88DgGzteseDaxlRxoLSQYLcM2EABdZnLNa8uRPs+H3ZQGmtIzKvl/dDc0SBuAhI3n2VSCFKQ/p3YfcXUrtoxrzec0b7xrNMsZn8PZO0JuyQPRNrWv1D99DcL13LIJLSpfh1MqDLu92yyj9O9/QqytX54LZVgBAaHyG/xoF6M+DYpXMizpynlr3+jKuStn3AtevJzvStSgorsi7Yq0O3M3+45XcebioK24YMYqGU7SJ2+oTzdPa5y2gdrtxr8GCU3YlzdPm6RWDRRw/X18MBqOD4eP9hJJ3ysv2PpqGKXSCYGOSzOKlrC7cjxoVborR3fleA1XDlUzOWnHOFGKLr7tHtZPDh/pK0JRo8+hFt3GMBkM95PD/cHBxeAoPRin4+O/sBe4uthaM0j2B0cXyTgdJekw8WsKxyYKzcxqqwhtywbotgDanfXMJcU+tAuN8X4y2E/GF8kIY4t0EKiuLN6w5tgzHY7S0TAdv/VLqLOl0hNcz1TOQ7cKy39//9tP7/AyU0Uz8Zs3np3Up+8ZQb9I0M6Tk1wV7NSPV07i8HNjymIVqegNI5iGtGMYTAEIDhNDpgrDl+ya5db0ydnUMk0oKbjJHRo4DGesKmhDFhjRkV+4/dVlxLi6Vtr2CLfEMFYZQg3hU8+h+U4IknlKHv8TKWi641RTjfmYV8MBDtrXxo+AWgaBjX9osMbzaxWvZaCnFZo66zTrk4uSG5KXVM4YWYCG72qlFQ2sLRjZQ9NteIa/NM95gTdUiOYNyZBSN57hoqSWTJ3MvZOp4LYh56SkBXAEZ4UfTu1RgWi4WRnsI1P+Ac9huZI5w2J/5mqkJx696Z/E9emlRFR+1qoiUi2wqgcPkhvG6tYU+0Bjj5x7r5V0jjCqTxHy+hDZEKSqMUxMyZ53DVxUQbG3lvvRVuENAVFQbkJUayU3qJzJMOshKgxRgnlQBK9B17UzCCEmcTVR0xBAsuFqKgvEwbMqUSsEY1K2ABKEJcnpKunO/jgHAtU2AGr2r+NY4a0M3rhLWMs++PLdyNatMeCLJahPsm85Jy/lyyfjpXy5LFxl4P3ku/LZd/Ua9scr5N/VN56AryMFXzIJL/3HjdXJnzVdf9L1J90XjvtfeV/FtOX2I+IDYlWeHgAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:23:49 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "48", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"d822c61a16a08c76e0a4faf4854ec655\"", "Last-Modified": "Mon, 20 Nov 2017 20:04:48 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.068311", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "CAE0:1E82:1E25477:23E1DFD:5A3AE2F5"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/1"}, "recorded_at": "2017-12-20T22:23:49"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62W3XKbMBCFX8Wjq3bGifgxCWEcd/oO6U2bjkfAGqsVEiMJpy6Td+8KcGLjTBpsXxr2fFqO9shqSK0FScja2soklLKKXxfcruv0OlMl1VApQw0vSrbhujbBjHZvw+tqS7kxNRg6u7slUyJYCsIsL4KjHayhkpXwjHDspQRpL4Xf4ZAMmwtyOxhS17YUAyv2XP2QnzwniR/4vhfGN+GUyLpMQZMEzZ4Sy60A3LWveT5pN2HCy0ppO0nBsgnIvFJc2k/mM7ZSGydriFAFl6jZXxxfu2WCmReH3pSwDbNMD7ewfWj6qXC0TEmLprUDUtNO/GVzHyKt0D3DYYlb/b3pcrDD6RplHRavlBDqCSnDpg/H+Hgh+qJ8oXBZnEhBZUOVXQN6h5/kBrbg5n/T+kZTrarBiBm75LnjGPReQz66sV6HbT1J7Khpk9wC69RkmleWKznetQM10pQumOR/2Wk0VBuEtIfM6C9sVaj+SIDfsLqTNbTSfMOyrbNGQwZ8g2afiBzokWi3lYvpNxdBtJ5bWLK8dDFcMWHgeXdqkuTHz3avrStXFUgsFyr7DRijthTDaTC5ErDgNcvcmhJKZm22rmWBGhe72zCKfS84Mc69+ow8HzX1/mF4VD4q04fq01P9JuecXA+AZyV7wLpctofg/bMBp2l0uge8sfkeyMcnfAC4TMaPujo4JT6U8pILMFZJDK+shXi9z+BfPP7QgMHPl8xi+APPj6784MqLHwI/CcMkiL7jGnWVH9f4tw/+XRJGSXTnajKhTI/pVklVvl269CF3Xi3mbLLWsLp/fLntuancv+79UrJkBc9oFMRBGM/8mwi8VXwDK9+LHslid0scpZtTtpjTaoEdtg1Z+OM+9CRWzzhD3puUbruteP4HwgffEAELAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"4be169ba114ff38e1bb9d07063fdb36a\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4990", "x-served-by": "8dd185e423974a7e13abbbe6e060031e", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:1D25C:48F59C7:5673C64E", "access-control-allow-credentials": "true", "last-modified": "Thu, 17 Dec 2015 19:35:59 GMT", "date": "Fri, 18 Dec 2015 08:39:42 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450428928"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2015-12-18T08:39:42"}, {"request": {"body": {"string": "[\"in progress\"]", "encoding": "utf-8"}, "headers": {"Content-Length": "15", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497/labels"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA03MPQrDMAxA4asUQbdghSRTrlI6yEY4Av8h2YUSevcGunT9HrzHCUMT7HD03mxHpCYuSj+Gd6FmVG7V0CRmeokOWzb81dW1NybynAyl3Je5aY3KZjBBoczXUsrtD0NNVS9lCvPm4fP8AnSS1117AAAA", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"e02acf763400a215f26a661dc725bedd\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4989", "x-served-by": "d594a23ec74671eba905bf91ef329026", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:1D25C:48F59D9:5673C64E", "access-control-allow-credentials": "true", "date": "Fri, 18 Dec 2015 08:39:42 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450428928"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497/labels"}, "recorded_at": "2015-12-18T08:39:42"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2YXW/aMBSG/wqyNGmT2jqfNI0o0y52u0lTp0lbJ+QkJnhL7Mh26Bjqf99xApQERkngkjsIfh+fHPu89mGJSpmhEM20LlSIMSnYTcr0rIxuYpFjSQuhsGJpTuZMlsrxcP2re1MsMFOqpAp7d7foClVDmRZyMemPBE5GIpqpExhbYeEatsSc5PQZ4PBOOeX6XPg1Dsh0fkZuDQPqTOdZKxVbq3PUurAEhbZj25YbDN0rxMs8ohKFsGhXSDOdUVj9D0kyqBZzwPJCSD2IqCYDypNCMK7fqncQSqmMbIkykTIOmu3J4WczjeNZgWtdITInmsj2ElYPlbvaXgYXC64ha9VOK3Gtfj+/9wCXyhXEcJGZ/tA2NbDmNu2UOxg8FVkmnoDSjrpZD7sT4Y1yQ2E87UkB5RILPaOQPHgls2NTpl7brnuCqlRLqFWlJywxHAXJlzTpHNhKB2E9cYhoWVlCBSwjFUtWaCZ496w11EATMiWc/SX9aKBWAKksqPMbVipQH1PBe1Jdy5a4kGxO4oVJjaQxZXNIdk9kSw9EvShMnX41NQipZ5pOSJKbOpySTNHntW2i8MeyKkV/6LmB79uvFM5hf6/dEzP+xrEKKVJJlUmUMVMIhvHB1sNYZAL8AVESW14EoxI6JWWm1xH+rLagNsI4E4omMCQT8W/4UL8D2IYCT+EUhry4DNMqpznROp6VPAWNeblb1w9syzlsNPZ/jWYlP8FpdqI67NM7wzu5TVPd32/2ck5xnBbwJM9psc7nOm3wtmvBdursOy1eV+dpybt7TwtwHvfZiarhX0f5z7p4VWVB60tCE3wp3/RSvt0uDZfyPeLie3L5wuGcs4wqLTicvrzMspdWCYV38EVSOLuTCYHzHDmW7V/bzrUVPDh26Lqh43+H0i6LpDFmeG3BGP/B9kLXCu1qTH30bzD7hpBSz4ScgJ+ImFX3QZjy87dPH7+APhLJYmIOW3g2KsYjMphJOr1/3PSv5hDabmB/CZ6TlMXYdwLHDTx76FNrGgzp1Lb8RzRe972ddCNMxiNcjNcBafrH5KUXa8XoK3/kL1mNFpf+bKcR7G+4je66vrGdcltqNeuX/mzvH057Gqzud6RGqs9zQ2ogu/dnz/8Aoz76umgTAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:53:55 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4998", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"abd40288593ce0509f2571c98990f321\"", "Last-Modified": "Mon, 20 Nov 2017 20:04:48 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.082336", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C703:1E7F:E11D9F:10E19B8:5A3ADBF2"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2017-12-20T21:53:55"}, {"request": {"body": {"encoding": "utf-8", "string": "[\"in progress\"]"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>", "Content-Length": "15"}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497/labels"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA02MQQrCMBAAvyIL3kq3to1IviIeNu02XUibkE0EEf9uwYvXmWHub5AZrLmOw82YSwM1B7CwlpLUIlKS1ktZq2unuGHmFBVV/EZPyVX7EX92aNMLAzkOirKf+y7l6DOrQgM7bXwsZT/9wSmGmA/KNHWjO6qZF6qhgF0oKH8eX+Mf8+KZAAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:53:55 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4997", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"119c75a7d885bfd9376983deffc453a7\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.103808", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C703:1E7F:E11DAD:10E19C8:5A3ADBF3"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497/labels"}, "recorded_at": "2017-12-20T21:53:55"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62Vb2/aMBDGvwqyNGmTKM4foGlEmfYdujdbJ+QkR/Dm2JbtpGMR333nBBDQihXGW9vP786P784tqY0gKVk5p21KKdN8VHK3qrNRripqQCtLLS8r1nBT22hM+914pNeUW1uDpeOHezIkgmUg7OImONrDWipZBRuEYy4VSHcr/A6HZGhuyO1hSF25SpxYceDqu/zkBUnDKAyDOJnGQyLrKgNDUjR7SBx3AvDVvhTFoHuEAa+0Mm6QgWMDkIVWXLqP9hOmUlsva4lQJZeoOQyO2z5MNA6SOBgS1jDHzOkTdot2WxWelivp0LSuQGraiz83jzHSSrNleCzx0c9Vl4cdV9dF1uHhpRJCvSDlNOnjMn4diO6VewqX5ZUUVLZUuRWgd3glX7Alt/+q1jeS6lQttph1C154jkXvDRQXJ7bVYVovEjNqu07ugHVmc8O140pe7tqRGmnKlEzyP+w6GqotQrohc/ENOxWq39PAb1jdy1qqDW9YvvbWGMiBN2j2lcgTPRLdWvs2/epbEK3nDhasqHwbLpmwsNlNTZJ+b8+3yvlB3I9LyuWHKNBGlQast8ZPTwzP5eBgMVdC4UAgwPJgnJHNj67InD+oNEiUCZX/AuzfLkecChZHhgQ8IGshhqTiAqxTcr+wn6ZpiJPaAMKKBXMIjIJwchdGd0HyFIVpHKfR5BsGqHXx+kyYPAUPaRCnceTP5ELZLaYPm6livfBzFbkzPZ+xwcrA8vF5/3X5rjn8u34qWbGS53QSJVGcjMPpBIJlMoVlGEyeyXz35V2km1E2n1E9xwy7hBz89he9irVl/Id8a1K27t9m8xeL3X0PzgcAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"abb53178b3fae097b12d3390fa91011e\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4998", "x-served-by": "07ff1c8a09e44b62e277fae50a1b1dc4", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F4:11658E10:5673CC27", "access-control-allow-credentials": "true", "last-modified": "Fri, 18 Dec 2015 09:03:32 GMT", "date": "Fri, 18 Dec 2015 09:04:40 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450432582"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2015-12-18T09:04:40"}, {"request": {"body": {"string": "{\"body\": \"https://gist.github.com/jonmagic/5282384165e0f86ef105\", \"title\": \"Add issue import beta endpoint(s)\", \"labels\": [\"in progress\"], \"assignee\": \"itsmemattchung\", \"state\": \"open\"}", "encoding": "utf-8"}, "headers": {"Content-Length": "185", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62W726bMBTFXyWyNGmT0po/SUtRmmnv0H3ZOkUGbog3YyPbpMtQ3n3XQNuEVGlJ8hHw+flyfO+Ra1JpQWKysrY0MaWs5Nc5t6squU5VQTWUylDD84Ktua5MMKHt1/C63FBuTAWGTu5uyZgIloAwi4vgaAurqWQFbBGOtRQg7aXwzzgkw/qC3BaG1JUtRM+KHVc/5CfPSOwHvu+F0U04JrIqEtAkRrPHxHIrAE/tW5aNmkMY8aJU2o4SsGwEMisVl/az+YKlVMbJaiJUziVqdjfHz26bYOJFoTcmbM0s0/0jbF6ariscLVXSomlNg1S0FX9d34dIy3XHcFjidj/WXQ62312DrMPFSyWEekJKv+j9Nj7ciL4oXyhc5idSUFlTZVeA3uEvuYbNuXmvW98oqlHVOGLGLnjmOAa915ANLqzTYVlPEiuqm0lugFViUs1Ly5Uc7tqeGmlK50zyf+w0GqoNQpqQGfyHjQrVHxngN6xuZTUtNV+zdOOs0ZACX6PZJyJ7eiTaTenG9LsbQbSeW1iwrHBjuGTCwPY5NUn8sz4+KseDuI1LyuWnwCu1yjUYZ41LT9yey9HOy1QJhYFAgKXeJCHbX02TWbdQlSBRJlT6B3B+mxoxFQxGhgRc8Boi3JoCCmZtuqpkjho377fhNPK94MQc6dRnBMlBUcdT+GD5oDDZV58eJ29yzgmUHvCsSOmxLhcqffBuKGE3DY6VHm9osPTkw6OlB7hMuBxUtRdPH4qXggswVkkcXlkJ8XqRwrsFPmjAwc8WzOLwB54/vfKDKy96CPw4DONg+gP3qMrscI0fPXh3sTeJJ55bkwplOky7S6KyzcJNH3Jn5XzGRisNy/vHl2um68rde+ZvJQuW85ROgygIo4l/MwVvGd3A0vemj2T+fD0dpJtRNp/Rco4VNgVZ+Ot+9CRWxzhD3pmUbNqj2P4HF14PdHoLAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"8c771f5eb156f55646491cc6db24ab0c\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4997", "x-served-by": "474556b853193c38f1b14328ce2d1b7d", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F4:11658E65:5673CC28", "access-control-allow-credentials": "true", "date": "Fri, 18 Dec 2015 09:04:40 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450432582"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2015-12-18T09:04:40"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2YXW/aMBSG/wqyNGmT2jqfNI0o0y52u0lTp0lbJ+QkJnhL7Mh26Bjqf99xApQERkngkrs28fv45NjntQ9LVMoMhWimdaFCjEnBblKmZ2V0E4scS1oIhRVLczJnslSOh+u37k2xwEypkirs3d2iK1QNZVrIxaQ/EjgZiWimTmBshYVr2BJzktNngMM35ZTrc+HXOCDT+Rm5NQyoM51nrVRsrc5R68ISFNqObVtuMHSvEC/ziEoUwqJdIc10RmH1PyTJoFrMAcsLIfUgopoMKE8Kwbh+q95BKKUysiXKRMo4aLYnh9dmGsezAte6QmRONJHtJaweKne1vQwuFlxD1qqdVuJa/X5+7wEulSuI4SIz/aFtamDNbdopdzB4KrJMPAGlHXWzHnYnwhvlhsJ42pMCyiUWekYhefBJZsemTL22XfcEVamWUKtKT1hiOAqSL2nSObCVDsJ64hDRsrKEClhGKpas0Ezw7llrqIEmZEo4+0v60UCtAFJZUOcvrFSgPqaC96S6li1xIdmcxAuTGkljyuaQ7J7Ilh6IelGYOv1qahBSzzSdkCQ3dTglmaLPa9tE4Y9lVYr+0HMD37dfKZzD/l67J2b8jWMVUqSSKpMoY6YQDOODrYexyAT4A6IktrwIRiV0SspMryP8WW1BbYRxJhRNYEgm4t/wR/0NYBsKPIVTGPLiMkyrnOZE63hW8hQ05uNuXT+wLeew0dj/NZqV/ASn2YnqsE/vDO/kNk11f7/ZyznFcVrAkzynxTqf67TB264F26mz77R4XZ2nJe/uPS3AedxnJ6qGfx3lP+viVZUFrS8JTfClfNNL+Xa7NFzK94iL78nlC4dzzjKqtOBw+vIyy15aJRTewT+SwtmdTAic58ixbP/adq6t4MGxQ9cNHf87lHZZJI0xt2aMY5kxvhv61Zj66N9ghtcWYPwH2wtdK7SrIaTUMyEn4CciZtV9EKb8/O3Txy/wMhLJYmIOW3g2KsYjMphJOr1/3PSv5hDabmB/CZ6TlMXYdwLHDTx76FNrGgzp1Lb8RzRe972ddCNMxiNcjNcBafrH5KUXa8XoK3/kL1mNFpf+bKcR7G+4je66vrGdcltqNeuX/mzvD057Gqzud6RGqs9zQ2ogu/dnz/8AXrfD/WgTAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:55:19 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4996", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"10edf4fad2bcd37fa98ba5da54cf9c9b\"", "Last-Modified": "Wed, 20 Dec 2017 21:53:55 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.056362", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C740:1E82:1DD9C3C:238A3F7:5A3ADC47"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2017-12-20T21:55:19"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Add issue import beta endpoint(s)\", \"body\": \"https://gist.github.com/jonmagic/5282384165e0f86ef105\\n\", \"assignee\": \"itsmemattchung\", \"state\": \"closed\", \"labels\": [\"in progress\"]}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>", "Content-Length": "189"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2YXW/aMBSG/wqyNGmT2jqfNI0o0y52u0lTp0lbJ+QkJnhL7Mh26Bjqf99xApQERkngkrs28fv45NjntQ9LVMoMhWimdaFCjEnBblKmZ2V0E4scS1oIhRVLczJnslSOh+u37k2xwEypkirs3d2iK1QNZVrIxaQ/EjgZiWimTmBshYVr2BJzktNngMM35ZTrc+HXOCDT+Rm5NQyoM51nrVRsrc5R68ISFNqObVtuMHSvEC/ziEoUwqJdIc10RmH1PyTJoFrMAcsLIfUgopoMKE8Kwbh+q95BKKUysiXKRMo4aLYnh9dmGsezAte6QmRONJHtJaweKne1vQwuFlxD1qqdVuJa/X5+7wEulSuI4SIz/aFtamDNbdopdzB4KrJMPAGlHXWzHnYnwhvlhsJ42pMCyiUWekYhefBJZsemTL22XfcEVamWUKtKT1hiOAqSL2nSObCVDsJ64hDRsrKEClhGKpas0Ezw7llrqIEmZEo4+0v60UCtAFJZUOcvrFSgPqaC96S6li1xIdmcxAuTGkljyuaQ7J7Ilh6IelGYOv1qahBSzzSdkCQ3dTglmaLPa9tE4Y9lVYr+0HMD37dfKZzD/l67J2b8jWMVUqSSKpMoY6YQDOODrYexyAT4A6IktrwIRiV0SspMryP8WW1BbYRxJhRNYEgm4t/wR/0NYBsKPIVTGPLiMkyrnOZE63hW8hQ05uNuXT+wLeew0dj/NZqV/ASn2YnqsE/vDO/kNk11f7/ZyznFcVrAkzynxTqf67TB264F26mz77R4XZ2nJe/uPS3AedxnJ6qGfx3lP+viVZUFrS8JTfClfNNL+Xa7NFzK94iL78nlC4dzzjKqtOBw+vIyy15aJRTewT+SwtmdTAic58ixbP/adq6t4MGxQ9cNHf87lHZZJI0xt2aMY5kxvh86lhlTH/0bzPDaAoz/YHuha4V2hSGlngk5AT8RMavugzDl52+fPn6Bl5FIFhNz2MKzUTEekcFM0un946Z/NYfQdgP7S/CcpCzGvhM4buDZQ59a02BIp7blP6Lxuu/tpBthMh7hYrwOSNM/Ji+9WCtGX/kjf8lqtLj0ZzuNYH/DbXTX9Y3tlNtSq1m/9Gd7f3Da02B1vyM1Un2eG1ID2b0/e/4HJWXmemgTAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:55:20 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4995", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"a5011a576bddcf44999cc627b7da13b2\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.213379", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C740:1E82:1DD9C55:238A416:5A3ADC47"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2017-12-20T21:55:20"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62UXW+bMBSG/wry1SalMZBGa1CWXe++u9k0pQZOwJqxkT/IGOp/37FJoyaN0grlDpnzPn59vgbitCAZqa1tTUYpa/m84rZ2+bxQDdXQKkMNrxrWce1Mek/Hv4t521NujANDl/GKzIhgOQizvQmOjrCBStbAM8LRSwPS3gr/gkMydDfkjjCk1rYRZ6l4ldUP5ZOXJEvSdBWvlulqRqRrctAkw2TPiOVWAFbtu7RQaWa5kpEFY6Od0lEhlOGyipSzEZNRKBJacsbLByJUxSVquTUNNMzaonaywgB/4ZfF8iGJ0xlhHbNMn1czHJpDg3hgodCBtKFXHD2ov3VfF8hDYyPEg4l3cK3TPM3QN6auJ/JN+E4JofZIOnd+2taXLqNHLVodvzGLkzmoHaiyNWAS8Wm+iStu3uvgi8aCbsDBM3bLS08yWAYN5QRzByVa20t0NYQJD0iXm0Lz1vfSlOyd6JGndMUk/xd6cwoP9QYxYQFNeGfQof4j430x6aNwoK3mHSt6nyINBfAO0z4ZekZApu1bP8g//HBiEbiFLSsbP6A7Jgw8v+xVkv36HepufbhqQWK4UMUfwOEKoTizBheLBAyQTogZabjAnaDk8eC49rIYV6oGhJVbZhGYxsnyLknvkofHeJUliyy5/4kXuLZ8N8avmwNmvDZXZb/1c4vcdbt5rLmJ9lyIKIewm6CM8j7CyYjWhSphExbUfPzz6fOahsM1bTdoILAs/PUer4BOEQfddcnTqeYJRYeX5P2YwOf/6PNATxwHAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"d3d26084f4116ef0a7ba33e1220a9687\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4995", "x-served-by": "bae57931a6fe678a3dffe9be8e7819c8", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F2:C702021:5673CEEB", "access-control-allow-credentials": "true", "last-modified": "Fri, 18 Dec 2015 09:13:14 GMT", "date": "Fri, 18 Dec 2015 09:16:27 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450432582"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2015-12-18T09:16:27"}, {"request": {"body": {"string": "{\"body\": \"This will be closed by the `issue.closed()`\", \"title\": \"Integration test for closing out an issue\", \"labels\": [], \"assignee\": \"\", \"state\": \"closed\"}", "encoding": "utf-8"}, "headers": {"Content-Length": "158", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA+2WzY7aMBSFXyXyqpUYnIShhYjSdffTTauKcZJLYtWxI9sJpRHv3msHaGEoHUUsumAXJfd8Pr5/SkcaLUhCSmtrk1DKaj4uuC2bdJypimqolaGGFxVruW5M/Ej7r5NxvaXcmAYMnYZzMiKCpSDM6iY42sM6KlkFO4SjlwqkvRX+gEMytDfk9jCklrYSZ6n4I6uvyifPSRLF8TycT+P5iMimSkGTBJM9IpZbAVi1T9JCoZnlSgYWjA3WSgeZUIbLIlCNDZgMfJHQUmOcvCNCFVyilltTQcWszcpGFhjgDnw/mc6iMB4R1jLL9Hk1/UuzbxAHzBQ6kNb3SkP36o/thwny0FgPcWDiHFzrNEcz9IWp64l8Eb5WQqgNks6dn7b1pcPoUYtW+2fM4mAOajuqbAmYRLyaa+KCm3918EVjXtfh4Bm74rkjGSyDhnyAub0SrW0kuur8hHtkk5pM89r10pDsneiRp3TBJP/pe3MID/UGMX4BDbin16H+NeN9Mem9sKO15i3Lti5FGjLgLaZ9MPSMgEy7rd0gf3bDiUXgFlYsr9yArpkwsDvsVZJ8/ebrbl24G3HIUSBU9h0f+mCcWoOrRQKGyEaIEam4wK2g5PHFcfElIS5VDYjLV8wiMg6j6UMUP0Szp3CeRJMkevyCBzR1/teYd0k8czG9m4uYQ0iq8u3KzTKetKiXTyU3wYYLEaTg9xXkQboNcFqCRaZyWPqlNe6/vHm7oP7lgtZLPM6zLPxwrq+AThF73XXJ86nm+ffd0u19dfZ/BBeH5b4676vz+CtB/5PVufsFULHLidwKAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"6b07826bbb026a8155ff5e51ad9e8733\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4994", "x-served-by": "ef96c2e493b28ffea49b891b085ed2dd", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F2:C70204D:5673CEEB", "access-control-allow-credentials": "true", "date": "Fri, 18 Dec 2015 09:16:28 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450432582"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2015-12-18T09:16:28"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2WW2vbMBTHv4oRDDZII8uJ18RkHd3Yw6BQKN3LLqSyrThismQkOZ1r+t13JCdpcyEtWR/20DfbOuenv85NblGtBUrQ3NrKJBjTivcLbud12s9UiTWrlMGGFyVdcF2baIi71UG/ajA3pmYGx+EY9ZA35VbpZno8EjiCpkyYf2A8koU7WIslLdk9wOFMJZP2pfArHJDZ4gW5HQyoc1uKrVA8ys6z8sJzlJAoGofjOBr3kKzLlGmUQNJ6yHIrGGT/q7Ss0NRyJQPLjA1mSgcs55bLIqAy8IkGObVxri0SquAS/Lg1JSuptdm8lgUYuM1OB/GIhFEP0QW1VG9n0n80ZFlljpgp2F5aX3A1Xrp/XHwYAhBUdRRHRk7CoXJ1NIN3VB2O4o75TAmhboG0LX2zN/Zthte+ILV7hhAezQHfFis7ZxBFOJqr4IKbp8p3rzDv10L3GjvluSMZyINm+RHilp4g7VaCqtaPCY+sU5NpXrlCOiZ6G/7AU7qgkt/5wjyGB/4GMH40HXFO7wf+z+ntvUHvHFtcab6gWeNCpFnG+ALCfjR0iwBM21Sui7+57oQkcMumNC9dh86oMOx+NVRR8qP1LUqGZHQaRuET7XR4+nezFX+hpoFd3YQFDcu3TAkFkwKFESNhBss5m9Fa2LWiTkf8fjgYxTF5CR1cvonCSqtCM+OSthTEZfDo40oXo1k4THd1/fJtYd1JMqEMy8FEqOw3PHSxhKlmYOxKBiayFuLh3UB0wb3kAgaokuv19R2RwDEzzYCeTylEAkUhiU9IdEJG1+E4IQNIy3fYr67yvTYkToZREsXOphO3gwGTAUkIcSa0tnOlpyBXZdx3EGz5+fLi4vzT5dX59eUV2KQqb6ZuOsLSpDq7nnMT3HIhgpQF3RZB2gQwf4JJpnJ25u+Bfrfy9t0E+48TXJ2tWJb9cSc7ANpELP0Ou9xs+tz8lA8RSJvX+2j5r7Z3Ar3eR6/30foHDf8n99H9X7wfQpR2DAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:58:01 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4994", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"d504ec810dda9aa826cf32f81eb61972\"", "Last-Modified": "Fri, 10 Nov 2017 14:34:03 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.094360", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C791:1E7F:E17A98:10E8464:5A3ADCE9"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2017-12-20T21:58:01"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Integration test for editing an issue\", \"body\": \"This will be closed by the `issue.closed()`\\n\", \"assignee\": \"\", \"state\": \"closed\", \"labels\": [\"Easy\", \"in progress\"]}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>", "Content-Length": "177"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2WW2vbMBTHv4oRDDbIIsuJ18RkHd3Yw6BQKNnLLqSyrThismQkOZ1n+t13JCdpcyEtWR/20DfbOuenv85NblGtBUrQwtrKJBjTivcLbhd12s9UiTWrlMGGFyVdcl2baIi71UG/ajA3pmYGx+EY9ZA35VbpZnY6EjiCpkyYf2A8kIU7WIslLdkdwOFMJZP2ufBrHJDZ8hm5HQyoC1uKnVA8yM6T8sJzlJAoGofjOBr3kKzLlGmUQNJ6yHIrGGT/i7Ss0NRyJQPLjA3mSgcs55bLIqAy8IkGObVxri0SquAS/Lg1JSuptdmilgUYuM3OBvGIhFEP0SW1VO9m0n80ZFVljpgp2F5aX3A1Xrl/WL4fAhBUdRRHRk7CsXJ1NIP3VB2P4p75XAmhboG0K327Nw5thje+ILV7hhCezAHfFiu7YBBFOJqr4IKbx8r3oDDv10L3GjvjuSMZyINm+QniVp4g7VaCqtaPCY+sU5NpXrlCOiV6W/7AU7qgkv/xhXkKD/wNYPxoOuGc3g/8n9LbB4PeOba40nxJs8aFSLOM8SWE/WToDgGYtqlcF3913QlJ4JbNaF66Dp1TYdjdeqii5HvrW5QMyegsjMJH2un49O9mK/5MTQO7ugkLGlZvmRIKJgUKI0bCDJZzNqe1sBtFnY743XAwimPyHDq4fBWFlVaFZsYlbSWIy+DBx7UuRrNwmO7r+unbwrqTZEIZloOJUNkveOhiCVPNwNiVDExkLcT9u4HognvJBQxQJTfrmzsigWNmmgE9n1GIBIpCEr8l0VsymobjhAwgLd9gv7rKt2zOnE0UTiOSxKMkjJxNJ24PQ+JkQBJCnAmt7ULpGchVGfcdBFt+urq8vPh4dX0xvboGm1TlzcxNR1iaVOfTBTfBLRciSFnQbRGkTQDzJ5hkKmfn/h7odyuv30yw/zjB1fmaZdlvd7IjoG3Eyu+4y822z80PeR+BtHm5j1b/agcn0Mt99HIfbX7Q8H9yH939BaEm/gh2DAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:58:02 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4993", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"a8bbefe768d759477b6df6a628089e23\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.209756", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C791:1E7F:E17AC1:10E848A:5A3ADCE9"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2017-12-20T21:58:02"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62W726bMBTFXyWyNGmT0po/SUtRmmnv0H3ZOkUGbog3YyPbpMtQ3n3XQNuEVGlJ8hHw+flyfO+Ra1JpQWKysrY0MaWs5Nc5t6squU5VQTWUylDD84Ktua5MMKHt1/C63FBuTAWGTu5uyZgIloAwi4vgaAurqWQFbBGOtRQg7aXwzzgkw/qC3BaG1JUtRM+KHVc/5CfPSOwHvu+F0U04JrIqEtAkRrPHxHIrAE/tW5aNmkMY8aJU2o4SsGwEMisVl/az+YKlVMbJaiJUziVqdjfHz26bYOJFoTcmbM0s0/0jbF6ariscLVXSomlNg1S0FX9d34dIy3XHcFjidj/WXQ62312DrMPFSyWEekJKv+j9Nj7ciL4oXyhc5idSUFlTZVeA3uEvuYbNuXmvW98oqlHVOGLGLnjmOAa915ANLqzTYVlPEiuqm0lugFViUs1Ly5Uc7tqeGmlK50zyf+w0GqoNQpqQGfyHjQrVHxngN6xuZTUtNV+zdOOs0ZACX6PZJyJ7eiTaTenG9LsbQbSeW1iwrHBjuGTCwPY5NUn8sz4+KseDuI1LyuWnwCu1yjUYZ41LT9yey9HOy1QJhYFAgKXeJCHbX02TWbdQlSBRJlT6B3B+mxoxFQxGhgRc8Boi3JoCCmZtuqpkjho377fhNPK94MQc6dRnBMlBUcdT+GD5oDDZV58eJ29yzgmUHvCsSOmxLhcqffBuKGE3DY6VHm9osPTkw6OlB7hMuBxUtRdPH4qXggswVkkcXlkJ8XqRwrsFPmjAwc8WzOLwB54/vfKDKy96CPw4DONg+gP3qMrscI0fPXh3sTeJJ55bkwplOky7S6KyzcJNH3Jn5XzGRisNy/vHl2um68rde+ZvJQuW85ROgygIo4l/MwVvGd3A0vemj2T+fD0dpJtRNp/Rco4VNgVZ+Ot+9CRWxzhD3pmUbNqj2P4HF14PdHoLAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept", "x-github-media-type": "github.v3; param=full; format=json", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "W/\"dd214a2e5a77978c5e3e330337c7ab69\"", "cache-control": "public, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "49", "x-served-by": "2811da37fbdda4367181b328b22b2499", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:A39B:117D623B:5673D4C2", "access-control-allow-credentials": "true", "last-modified": "Fri, 18 Dec 2015 09:04:40 GMT", "date": "Fri, 18 Dec 2015 09:41:22 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450434784"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2015-12-18T09:41:22"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165547512"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62Uz47aMBDGX8Vyr4BJIMs2YmkfoIce2kuFhExiktE6sWVPQmnEu3ccohWw7a6U9hY58/38zT93vHGap7xEtD4VQlqYFYBls59lphJOWeOFh6KSLbjGx0tx+buY2ZMA7xvlBQVWqkYvoockWa6SKOYTAlZ6d8u+4r5DXH5cfejhA3p6Te5/3KHH2KZLyCfkPH2hT3jjleNpx7UpoKa6APpKVRIxK5u6GOJXi+QxmscTLluJ0t176Q/9UMYAzEyNVKC+oo0Y1J/apwXxCjdAghFOB2/2I9C8eGXq7WK/Cj8Yrc2RSPfOb5v/p8vEi5asXr6hLkZzSNsJg6WiIlJq51AQ8DjGWK/raDw97iAPJE9tcCofYW5QkrVjTa66fg96ZLP3mQOLYOoxJm/0xDOukDX8kmN5pPeE6dd0RJ69jvSqDfs7AnARdsI6aGV2CiVyKlPQUtlHQ+8IxMSTVbQd38NyUhMA1U7mVVjQg9RenSc8c0oiXSqR4uJ5lEyjeBqtvkWPafKQxvMfpGts/m7M3uSnXVgnwqztZi1Z6dThafvyQP7lEdtylmnpPUWGQZ6GB5FmZMs3n6/furWQG3YErRnKZ8Uko0nbM4kMS/BM1jnbUyLPDJDlNHsMajSsajSC1Yp9/bIWdkOZ9C5R/QzJ3vD/hT1w/yvy/BtDpor5YAYAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept", "x-github-media-type": "github.v3; param=full; format=json", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "W/\"0d770fd690caa3ab06b42e38aa6771fc\"", "cache-control": "public, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "48", "x-served-by": "5aeb3f30c9e3ef6ef7bcbcddfd9a68f7", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:A39B:117D6287:5673D4C2", "access-control-allow-credentials": "true", "last-modified": "Thu, 17 Dec 2015 18:56:20 GMT", "date": "Fri, 18 Dec 2015 09:41:22 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450434784"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165547512"}, "recorded_at": "2015-12-18T09:41:22"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2YXW/aMBSG/wqyNGmT2jqfNI0o0y52u0lTp0lbJ+QkJnhL7Mh26Bjqf99xApQERkngkrs28fv45NjntQ9LVMoMhWimdaFCjEnBblKmZ2V0E4scS1oIhRVLczJnslSOh+u37k2xwEypkirs3d2iK1QNZVrIxaQ/EjgZiWimTmBshYVr2BJzktNngMM35ZTrc+HXOCDT+Rm5NQyoM51nrVRsrc5R68ISFNqObVtuMHSvEC/ziEoUwqJdIc10RmH1PyTJoFrMAcsLIfUgopoMKE8Kwbh+q95BKKUysiXKRMo4aLYnh9dmGsezAte6QmRONJHtJaweKne1vQwuFlxD1qqdVuJa/X5+7wEulSuI4SIz/aFtamDNbdopdzB4KrJMPAGlHXWzHnYnwhvlhsJ42pMCyiUWekYhefBJZsemTL22XfcEVamWUKtKT1hiOAqSL2nSObCVDsJ64hDRsrKEClhGKpas0Ezw7llrqIEmZEo4+0v60UCtAFJZUOcvrFSgPqaC96S6li1xIdmcxAuTGkljyuaQ7J7Ilh6IelGYOv1qahBSzzSdkCQ3dTglmaLPa9tE4Y9lVYr+0HMD37dfKZzD/l67J2b8jWMVUqSSKpMoY6YQDOODrYexyAT4A6IktrwIRiV0SspMryP8WW1BbYRxJhRNYEgm4t/wR/0NYBsKPIVTGPLiMkyrnOZE63hW8hQ05uNuXT+wLeew0dj/NZqV/ASn2YnqsE/vDO/kNk11f7/ZyznFcVrAkzynxTqf67TB264F26mz77R4XZ2nJe/uPS3AedxnJ6qGfx3lP+viVZUFrS8JTfClfNNL+Xa7NFzK94iL78nlC4dzzjKqtOBw+vIyy15aJRTewT+SwtmdTAic58ixbP/adq6t4MGxQ9cNHf87lHZZJI0xt2aMY5kxvh86lhlTH/0bzPDaAoz/YHuha4V2hSGlngk5AT8RMavugzDl52+fPn6Bl5FIFhNz2MKzUTEekcFM0un946Z/NYfQdgP7S/CcpCzGvhM4buDZQ59a02BIp7blP6Lxuu/tpBthMh7hYrwOSNM/Ji+9WCtGX/kjf8lqtLj0ZzuNYH/DbXTX9Y3tlNtSq1m/9Gd7f3Da02B1vyM1Un2eG1ID2b0/e/4HJWXmemgTAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:56:56 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "59", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"ba1b8f2e1118c74d39341830141f8e78\"", "Last-Modified": "Wed, 20 Dec 2017 21:55:20 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.078995", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C76B:1E7F:E16268:10E6872:5A3ADCA8"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/497"}, "recorded_at": "2017-12-20T21:56:56"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165547512"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62UUW/aMBSF/4rlvQImKSldRNm6vSIxVe3LhIRMYpKrJnFk34SxiP++65AhoFsrZXuL4ns+H5/r64ZXJuMhTxFLGwohSxglgGm1GUU6F0aV2goLSS5rMJX1J+K4ejMq9wKsrZQVVJirAq3wboNgMg08nw8ImGfrS/YZ9x3i5OP0Qwvv0MNzcrtwhe5jmzYhnxDz8EQf8Moqw8OGZzqBgnIBtLnKJWKUVkXS1U9vgjtv7A+4rCVKc+2l/Wm9LkdHjHSBlFAbaSU6+af6fkLAxHQU54TTjzcb4mhWvHL1dtqvyrc6y/SOSNfWL7v/p83ESUtWj99QJL05pG2ExlRRinS0gwsELPYx1uoaup8W1xA7kqU+GBX3MNcpydquIFdNOwgtstrYyECJoIs+Ji/0xNMmkQX8lH15pLeEaee0xzlbHelV7Qa4B+AobERpoJbR3kVkVKSgpth7Q68IxMR9qWg6nt10UhMA1VrGuZvQrcysOgx4ZJRE2lQi1fljLxh6/tCbPnl3YXAb+uPvpKvK+N0aWWGqzVpaqyNo20K8r8vF4uHL8vHhaflInI2O92s3crQ0K+czyVKjtver0yv6l5duxVmUEZkq3WUfuleTNljx+efzB3Em5JztIMsYyhfFJKPbuGESGaZgmSxitqHDvjBAFtP9ZFCgZnmVIZSZYt8WM1HOf7tE9cMFcsH/F3bH/Z/IVcEPvwCGNMlxhwYAAA==", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:56:56 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "58", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"7b0d8b33b37dd7192f636ce469e525d5\"", "Last-Modified": "Fri, 10 Nov 2017 14:34:03 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.057669", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C76B:1E7F:E16283:10E688A:5A3ADCA8"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165547512"}, "recorded_at": "2017-12-20T21:56:56"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA62YTY/iOBCG/wrKdWlMSNNApNHMnnb3Nofey16QkzjE6iSObAdER/3f93Uc8sFogW6v1EKQdj1+Xa5yqtx4PPHCYOMvN74/90paMC/0DlxndRQsqrM399I6z/fdPxQ/FPTIZa1Wz2QySpxKJr2w8XJx4CUY46GgmGlWz8ttsJx79Eg1lfta5hiXaV2pkBD7UC0stVZMxqLUrNSLWBSkJtb4+/HbCrSD7BgG68X+8zZYvyTbXbpbrdnLbuVvthFjfrILaJxuYHA1V8W7eSwckylyJTjTRX4l0UprTa4GpyLPxQmU60Xdm4j0lsbTLYWXhy9SYNkQoTMG32JJH8ZRXOnPi2qtGmyw0nueGI7ChkmWfFpYZwdZJj4+GiJZJVpgHalY8kpzUX5e4MQaNCEPtOTv9Gs0WCtAjLTPS2mtYM2OiNXPm1uzhlSSH2l8Nq6RLGb8CGd/EXllD6I+Vyat/0ZQGNdzzfY0KUyapjRX7GPutdNrDGofzJGVj0b/9BhIWL+rmPDnWWeinOU8klSeZ6mQM46climNEauzE46ZGcJ19gfXf9bR7Peffx0DCMS4t17JzcxtnT9JxqkcQ7qzJzcRSE8AIOmNnZ04xr4h+OzyKUaq00hIqsW9Q+O2wAmoIeOfJpY0o4WT8BYAUCaEmydbAEBcqZo9FNq3F95yFLnkT1kXkT3yHsma22hLgFaqcM6XjDl5sIc05HIqIx3KOHPDXhgNsd/a3aYHJ6nGHpgoF5ETBy9K0kIaojJq30N676rOUA1jApUsdZZqGD1US8f9bmUaSI/ES1Bj6510Xhik6Tya0/JQ04MbtYdg182r+kDf7xYxt3NnoABpKjjJo9r9kBs4RqmtHZDvbi4dMAO0LUhulzl3HDAqbFoXFAW/VxfcJnaISdj/D1gTp9do8/t+GXNfrmE0ZDiT7aHf0V282536F52kGebo2gWnkLgwSPNbRXVmTi5MVVHJXER3CNJEFMXWYrFoMkbbsrpg0jGDLQEoKuMMVaOLzubCQNVTUN1W66mRmaB6zwVNnHzbQwC02+ii1RLGMVahT3US2ALGxILnTGlRup2xA2XMLoXmKY8f6Vhup9sE1HxXvIzZnOb5HFGrecwRx6i1zS6i4GRuHrIELAPXBLZTyRlC2snrkllGQ2ynGUuGRiTZU40GYrX0V0/L4MkPXv1duN6G6+AfrKSuksmY56flFn+v/iZcrcL10oypapWNMO0Q/+V1ucI1RLh+MUNwAnYhiG+4gsAnrj1+6e9HLYW5NYChUtlg+GMwC//jfqQzi3PE0lXQPz7n8fq1dN8UUjNRsAplQnfT0q8yqM4LeDpB+5WIWC3QAxOzMv6Oobtgt54UBLGoS+yHv3uZeyeqUbvi1Tt+eCkk+qbPTE3V3qapF2pZm64ST4ZjYPTwxN943/HZpq2jb3BfVHApRXdfVCJJ0e9XrOzYgwzbOCovNDajEUb3ILtbRcJSWud6b4tnyE5Q9eeigu6S6RPavgvY0MYVx2XZ249/AfzD9aY9EwAA", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-served-by": "62a1303ae95931e56e387e87d354bb24", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"ee1469828784a316b923eb33d476b2a1\"", "access-control-allow-credentials": "true", "status": "200 OK", "x-ratelimit-remaining": "59", "x-github-media-type": "github.v3; param=full; format=json", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C4D3:0875:142040AE:53EFB2DE", "cache-control": "public, max-age=60, s-maxage=60", "last-modified": "Fri, 08 Aug 2014 17:22:50 GMT", "date": "Sat, 16 Aug 2014 19:37:02 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1408221422"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2014-08-16T19:37:02"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA71WXa8aNxD9K5YfE4K9y9eyIlSt2oe89SFVpZaKeNcDWPXaK9sLIYj/3vEukMtNdO/lBlUIiTWec+Ycz4z3QBunaU43IdQ+Z0zUqr9WYdMU/dJWzEFtPfNqXYmtco1Ph6z7d9Cv90x534BnSTahPapFAdov7wLHOrADM6KCI4JjLhWYcC/4Mxwiw/aOuB0Yom5CpR9Z8cDVF/mpJM3TUconaZr1qGmqAhzN0eseDSpowEP71ZZNtIWEnSUrUQbriGjCBhNofNx9oNqulcGtDynx7xZ8yLMB71GxFUG4xwfXLvpTLUS00pqAXG1ZNKwL/mn7PkW0tTthRFhaJsNsMBrLbLqapiMYT9NkkhUAiZwORLmKtfJkkUSy65q7yVDcvLJa2x2iPBZ1XdzfErFL5AVFmfUrUTDywGzYAHqLkmIZr5V/roa/k1QbdcDG82GpZMTxeDYO5M2JneIwrZ3BjA5tf7eATeFLp+qgrLndtatoRLNuLYz6Il6HhtEeQdrRc7PCNgqjX9LW37G6Czuw2qmtKPfRGgclqC2a/UrIR/GIGPZ17N4/Youi9SrAUsgqtulKaA/H8yyl+d+Hp1vl6fHcDVH2S7NGmjhJkbR7KK22OB4oJIlME3rs3YPnN+H3X4lOT2cmnkLCy3sxmY0wJcTR94DwavGiUAJ+7sT7u1Du7Q5vx7cfhPnKHJdJXCbd8kUzn2ac0+M/bcOGaL+tIQZqW/6LWXXnjRPY43g2gBtMo3WPVkqDD9ZcFi73VT7Au9ABgsmlCAiY8mT4jifvePaR85yP8tHoLyRoavntniT5mCb5MMtHSdxTautPMB1tYeV+GW8uxJ3V85kgGwer94vLy0FAkQFcewUUTgmzLBsXlGFRXuPZMOXj8WiQTNIJn3I+GYwXdH5+s7g9eMbEnFRCAqmAoGitvgD5QAw2oiPydPeBJCqQGVRzEYjQesbwZ3/G6vnCLAzK+Fl7G7egv9KTYEkBREgsivgbpzOZlVbC/Pxa016YM9aukVVjyjjE+uRPaAGIICvYkbW1ksBnUdV4UBHnnE0kipXQJoAet5YG+ByP6vVGvNCEzoB+1P2s6Cu5P6DzpPH/kPem0/emv3AoEb/Pivx0pfLTj8k8tUux77r0+B+ALh1POgsAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-served-by": "a1d8c69b807c8e21f06cad9da377d1b0", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"9c8f535a8bdb69177f2992aa89cc39b4\"", "access-control-allow-credentials": "true", "status": "200 OK", "x-ratelimit-remaining": "58", "x-github-media-type": "github.v3; param=full; format=json", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C4D3:0875:142040FF:53EFB2DE", "cache-control": "public, max-age=60, s-maxage=60", "last-modified": "Sat, 16 Aug 2014 02:27:44 GMT", "date": "Sat, 16 Aug 2014 19:37:02 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1408221422"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "recorded_at": "2014-08-16T19:37:02"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/comments?per_page=100"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA+1YXY/iNhT9K276sH0AkgAZkoil6qp92KrbjqqtKrVUyCQOWJPEqe3AUjT/vceBnSUZCsPHqPMwD0jIuef43uOYc7l/rq1SplZozbUuVGjbtOCdGdfzctqJRGZLVghlKz7L6ILLUnX79uZpr1OsbK5UyZSNwIzlWtk9dxAETs+1WuDL0kmdeof2CKHrD76uuLfM7R3iar3BfE7S2ANp8tgKP5O3rFIxaYVrKxUznkMUpmik2Z2i023ojR94gduy6IJqKptZVItqK5/hikSuIUylZGlvwN8u3nbBNpNbDpOB5TCPud3Yi/qJHzDW73ndQeI7NPb6HvOmPQAOHpPZTNm1dA8fQC00EWkqlmBoFlR/F5qb2A84pLf5zvPZWRzArW2h5wyaopR7IxBX+tSEKswab6jSEx4bFoUTkSw+MaktCiktc2Szrq5BRVdOVSR5obnIT02uhgWXkDOa83/oOVzAKlBUt/PE2ioMsGxhruyJ4A1obReSL2i0MpJIFjG+gMRnETbQ4NOrguFG/GauIgTnmk1onJnrmNBUsfuWFUlGNTakGnFdx+23Hbft+B8dN+z7Ydf/A7iyiI/GTEW8mphrApphMfpZaEa0IIqlSUiGLBt9L/I3mmRMzhhZ4jdRlJrEIirNj111bEMbUSRsF2RoF6NxPs7B8w5R70GkaZquiEHN5mZlTmOiRMbIrz/c/mTz2xUe5QScBQCJFBnRTGncBGC4Iss5ywnXZEkV4VmRMrMri/GQYlGUaQzGBRIT8g7LS5amJBGS0JywT9QAOlVWEKMqVLNPRq96lUcrrIozhb2cqrYFPaplcrSYyaYaiXrweTkVEeu+dX0fdgMHUh22gbN8eEP8TD4M8sc+vJsmajKW2e07fg+hZznxBrzXiSO37/e8m9gPkqDrsZug6w78KWNuHPRolJie4QlO3Ej46YcA+pPcuHaAZ/vxHpZLHLnxVl3gyTWm67lynXbX06H/yb5cYzvVmWvg0725Br+OOzcyqrk75LnInz1YtHfEnx9iav4c8wWJUqrU27HFMsrT9t8lDDtuQ7N0NbZGv+TkY8la5EcYoDNoEdMYEFil4226gtsPBE2C47TIO7SEK/JBSMkVHHgpwROOc1K3xifaydBGZrD+4eMEE0lnxrSR3HdVH6BoDv/mGVOVxXcOYBvFkSuaFSq9rK04kPZOye/foCHR9I5ht682kEYr8j+d2DjffxrQ5SWpPM5rCn7pei6VDa3P6Lx3nZi2yXz+Q8Dt09E1daz2HF34xj4kXpf0Obqufs+0CE83/D3jlP3Tjw3xM3VdIH/cdb1OP3YnYa/Tj9fpRzUyebnTD28QOr1j3dXnmMb043eURqY0ukNrIs3IgmRmeIG/AaqD4UVcjUKqgQPNMbnAeoeE3+ybMJzH9MXfzsPjP/Rf/wJiGPWszRYAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-served-by": "3061975e1f37121b3751604ad153c687", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"ce2781d7530ec339ede9dce49e349d6b\"", "access-control-allow-credentials": "true", "status": "200 OK", "x-ratelimit-remaining": "57", "x-github-media-type": "github.v3; param=full; format=json", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C4D3:0875:14204127:53EFB2DE", "cache-control": "public, max-age=60, s-maxage=60", "date": "Sat, 16 Aug 2014 19:37:02 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1408221422"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/comments?per_page=100"}, "recorded_at": "2014-08-16T19:37:02"}], "recorded_with": "betamax/0.4.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1XW4/iNhT+K1akvs1g58ItYqladR/60G1V7WqlLRVrkgNYdezIdphl0fz3HieQAXZnBhjUvox4SeJzPn/nftgElZFBGiydK21KKS9FZyHcspp1Ml1QA6W21IpFwVfCVDZKaHMad8o1FdZWYGk46Ac3QS0qnDbr6eWQiCP5DKR9AcYeLdqAbajiBdwjONpUgHLXgt/BITKsrojbgCHq0hXyyBV70TkpLiIP0qgbsX4UDW4CVRUzMEGKMbsJnHASMPi/6KzybiHuTpM5zzCIhFduiQQq66U3gdQLoVB0/0o8rsETNojZTcBX3HFzHLj6o423SeXhMq0cXlbnV0Ub7R9XbxKEW5gtiMcN/PVPJacHO0zOszyGwnMtpb5DlGPWh1Xw7UW01WxRhFpciIKaG6rdEtB5aJLP04WwzyXpd0jVWhusUOumIvc4Fp1vID+b2FYPad0pZLSpG0ENWM1sZkTphFbne+1AG9G0WXAlvvLL0FDbIkjdeM62sNZC7VPq9juubtQ2tDRixbO1d42BDMQKnX0h5JE+Irp16cvzg69BdL1wMOV54etwzqWF+12zDNK/NnUpxsN4iKUePlM4T3f1pmfSn6sFXuobJ1JoXjItNXaDAMIwj0I8zWHOK+laPg2LMMHuwiJsCU+W70ks3nK7fqCxfdvxYBGELHuURzRIekgEG90VeKglVxn4LrlH5+Bj650c8Pcoq27SH7JhL7oGq9+Qjsb6pn9wYX6IGHZPgeHDpt5G7kCE7Au0XmTDAWOP8g278TBh3X7vGoTfAeQWiebbiVNX/gPZ+pgcHz5H9O+6zzmfp5nUtva91Nk/+NAUCs4mi4NLAYqoSsqHd4ulg+qFkGCdVu15O9jTGJcGA4ieTzkmeoDVldyy8JYN3jOWsm7a7X7C+6oyP5IJo9swec+SNA7Tbs/LNOT2YA5EYi/ip642U6SrM9E4Jw1+//ju7Z94ONP5euo3AqQxKscjTpYG5m8m7fLm7oRzYOrJOjOCq2lWGScU9e6pLE0i1ut147Af9dmQsX7cmwTEgEQIpZuJNgnGu1XwfLQR5WNS8BxIAYjLpfgK5FeisCGaNqqQE+HICIoxd4RLOaL42BnRcjxRaNVP0movgMHCVHCazIDwHAvKP+OMJKNM5zDebaH1XjKi9Tcyr1TmE6pDPkINQDiZwx1ZaJ0T+MKLEsPscXYZ5i9Cny3r63cedvDFB/pyN5zogsb8zkQ9a/KBsS+wcmvhf2EcZrkP7hTNO8HAzwcWfn6BiRPfTbaFNlu/bq7frMivm+vr5op/gP/nzfX+X3CgHJh4EAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:56:56 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "57", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"c21a677e244fd3e60e5325b43ef57205\"", "Last-Modified": "Mon, 20 Nov 2017 20:04:48 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.065849", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C76C:1E7F:E1629B:10E68AC:5A3ADCA8"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "recorded_at": "2017-12-20T21:56:56"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/comments?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Y0W7aSBT9lan70H0g2ASyAYtSJbt96CotUZSq0m4qNNgDjLA93pkxlEX59z1jkzQ2LtTgSH3IWzS+98y9Z2Y4J/eftZXIwHKtmdaxcm2bxrw55XqWjJueCG3JYqFsxachXXCZqNOOnX1tN+OVzZVKmLIRGLJIK7vdOu/1nHbLagAvDEZ56CewewBb3fPXKfYG+eQJcLpeQD6kaOyBMrlvuQ/gDStRTFru2grElEcghSnqaTZXdLwJ/b3bO+u1GhZdUE1lsYp0UTkb/gyYJyINZlIqEzvLfrd42wHcVG5ATAkWFnaegwFTdq6e3QznQiciCMQSCMWK84dd3MR+zEN52d88mh6Egby1LfSMgTS0cm8I4EpXLSjNWeMKKj3ivkFRoFwyv2JRmyyUtIxQzTq95ylcMlae5LHmIqpaXC4XWEJOacT/o4dgIVcBIn1+FXtLc5DLFuZNVkzOktZ2LPmCeitDiWQe4wtQfBBgIRt4ehUz3PjP5q2BcK7ZiPqheW8TGih237A8yajGhlQj7tRpdU6c1onTvXVabqfrnnb/Rl4S+3tjaKJnQo6oUsLj6TEA74/h1dXF5fDm4nZ4A5yx8Fcj85TwqR8PPgnNiBZEsWDikj4LB3+K6I0mIZNTRpb4YRSJJr7wEvOLl2L2bUQR9yTu2/HgLgLIJUI+AEXTIFgRkzKdmZUZ9YkSISM376+vbH69wqeIADBGwkSKkGimNJ4KcrgiyxmLCNdkSRXhYRwwsyXz8ZFiUSSBD8QFqhJyjuUlCwIyEZLQiLBv1CQ0TUkPTWr2zfCZ73Bvd6axu+jX6WjTzVYjo72djEwr5C76lbpBOdZ9o34NbvUcELVbIQ7S4Az4mTQY4Nsa/LRM9GTU8rTjdNsI3aXC7R+qcJZ9hAoXKvp5llF+JSXOndDBWlyCcowaF67NEXqcQ6pPkfOwT/Uc/FfW5BxaVVXOJVfX5Vx6PcpcqCin7KDnKG0+gzyf7dHmx5hSbR5++fS+RJSHEblNWIP8BWVzzhvEWAICDXTOMj9w/ZHAHjhOg1zCDK7IRyElV5DWpYScuxtdHgfCm/+bYCVT6Rqk3i5iXqRqr2gEleYhU6mQpyoMY1AMrlFU+2OJHY73Cqhyq6cPb+ArNJ0zeJFXJYbiyNMxgnyQJ7mLytmuWeGPpdWUk6Pwu4OpgbkByXNXxQb9mL4BqfFuwuMMjrSxqWvLkfhMvqnTNkOBn1f0kmFI+ewiA34m3wTwbd/0MrvYzDweXdfL7OJxrLc16XmZXWBAV5ixYShUrz86d532Pn/0EFPqj3bPLr5gPEDG1JvDdUgzcyChmT7g2qsmpg9+OshIJwY0wugB603i/lai6IcBfde1w/LT/4W//g8t6ciakRYAAA==", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:56:56 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "56", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"c150421f4d959bb931aa21006c0634f2\"", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.087914", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C76C:1E7F:E162AB:10E68BD:5A3ADCA8"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/comments?per_page=100"}, "recorded_at": "2017-12-20T21:56:56"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA+2WzY7aMBSFXyXyqpUYnIShhYjSdffTTauKcZJLYtWxI9sJpRHv3msHaGEoHUUsumAXJfd8Pr5/SkcaLUhCSmtrk1DKaj4uuC2bdJypimqolaGGFxVruW5M/Ej7r5NxvaXcmAYMnYZzMiKCpSDM6iY42sM6KlkFO4SjlwqkvRX+gEMytDfk9jCklrYSZ6n4I6uvyifPSRLF8TycT+P5iMimSkGTBJM9IpZbAVi1T9JCoZnlSgYWjA3WSgeZUIbLIlCNDZgMfJHQUmOcvCNCFVyilltTQcWszcpGFhjgDnw/mc6iMB4R1jLL9Hk1/UuzbxAHzBQ6kNb3SkP36o/thwny0FgPcWDiHFzrNEcz9IWp64l8Eb5WQqgNks6dn7b1pcPoUYtW+2fM4mAOajuqbAmYRLyaa+KCm3918EVjXtfh4Bm74rkjGSyDhnyAub0SrW0kuur8hHtkk5pM89r10pDsneiRp3TBJP/pe3MID/UGMX4BDbin16H+NeN9Mem9sKO15i3Lti5FGjLgLaZ9MPSMgEy7rd0gf3bDiUXgFlYsr9yArpkwsDvsVZJ8/ebrbl24G3HIUSBU9h0f+mCcWoOrRQKGyEaIEam4wK2g5PHFcfElIS5VDYjLV8wiMg6j6UMUP0Szp3CeRJMkevyCBzR1/teYd0k8czG9m4uYQ0iq8u3KzTKetKiXTyU3wYYLEaTg9xXkQboNcFqCRaZyWPqlNe6/vHm7oP7lgtZLPM6zLPxwrq+AThF73XXJ86nm+ffd0u19dfZ/BBeH5b4676vz+CtB/5PVufsFULHLidwKAAA=", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"6b07826bbb026a8155ff5e51ad9e8733\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4998", "x-served-by": "07ff1c8a09e44b62e277fae50a1b1dc4", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:14B63:E74B293:5673E005", "access-control-allow-credentials": "true", "last-modified": "Fri, 18 Dec 2015 09:16:28 GMT", "date": "Fri, 18 Dec 2015 10:29:25 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450436188"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2015-12-18T10:29:25"}, {"request": {"body": {"string": "{\"body\": \"Comment from integration test\"}", "encoding": "utf-8"}, "headers": {"Content-Length": "41", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509/comments"}, "response": {"body": {"string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165742121\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/issues/509#issuecomment-165742121\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/509\",\"id\":165742121,\"user\":{\"login\":\"itsmemattchung\",\"id\":7358102,\"avatar_url\":\"https://avatars.githubusercontent.com/u/7358102?v=3\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/itsmemattchung\",\"html_url\":\"https://github.com/itsmemattchung\",\"followers_url\":\"https://api.github.com/users/itsmemattchung/followers\",\"following_url\":\"https://api.github.com/users/itsmemattchung/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/itsmemattchung/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/itsmemattchung/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/itsmemattchung/subscriptions\",\"organizations_url\":\"https://api.github.com/users/itsmemattchung/orgs\",\"repos_url\":\"https://api.github.com/users/itsmemattchung/repos\",\"events_url\":\"https://api.github.com/users/itsmemattchung/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/itsmemattchung/received_events\",\"type\":\"User\",\"site_admin\":false},\"created_at\":\"2015-12-18T10:29:26Z\",\"updated_at\":\"2015-12-18T10:29:26Z\",\"body_html\":\"<p>Comment from integration test</p>\",\"body_text\":\"Comment from integration test\",\"body\":\"Comment from integration test\"}", "encoding": "utf-8"}, "headers": {"content-length": "1429", "vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "\"2d6dcb1855ca483123401ae9ccbc28aa\"", "location": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/165742121", "cache-control": "private, max-age=60, s-maxage=60", "status": "201 Created", "x-ratelimit-remaining": "4997", "x-served-by": "a474937f3b2fa272558fa6dc951018ad", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "x-github-request-id": "97E1C718:14B63:E74B2EE:5673E005", "access-control-allow-credentials": "true", "date": "Fri, 18 Dec 2015 10:29:26 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450436188"}, "status": {"message": "Created", "code": 201}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509/comments"}, "recorded_at": "2015-12-18T10:29:26"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2WW2vbMBTHv4oRDDbIIsuJ18RkHd3Yw6BQKNnLLqSyrThismQkOZ1n+t13JCdpcyEtWR/20DfbOuenv85NblGtBUrQwtrKJBjTivcLbhd12s9UiTWrlMGGFyVdcl2baIi71UG/ajA3pmYGx+EY9ZA35VbpZnY6EjiCpkyYf2A8kIU7WIslLdkdwOFMJZP2ufBrHJDZ8hm5HQyoC1uKnVA8yM6T8sJzlJAoGofjOBr3kKzLlGmUQNJ6yHIrGGT/i7Ss0NRyJQPLjA3mSgcs55bLIqAy8IkGObVxri0SquAS/Lg1JSuptdmilgUYuM3OBvGIhFEP0SW1VO9m0n80ZFVljpgp2F5aX3A1Xrl/WL4fAhBUdRRHRk7CsXJ1NIP3VB2P4p75XAmhboG0K327Nw5thje+ILV7hhCezAHfFiu7YBBFOJqr4IKbx8r3oDDv10L3GjvjuSMZyINm+QniVp4g7VaCqtaPCY+sU5NpXrlCOiV6W/7AU7qgkv/xhXkKD/wNYPxoOuGc3g/8n9LbB4PeOba40nxJs8aFSLOM8SWE/WToDgGYtqlcF3913QlJ4JbNaF66Dp1TYdjdeqii5HvrW5QMyegsjMJH2un49O9mK/5MTQO7ugkLGlZvmRIKJgUKI0bCDJZzNqe1sBtFnY743XAwimPyHDq4fBWFlVaFZsYlbSWIy+DBx7UuRrNwmO7r+unbwrqTZEIZloOJUNkveOhiCVPNwNiVDExkLcT9u4HognvJBQxQJTfrmzsigWNmmgE9n1GIBIpCEr8l0VsymobjhAwgLd9gv7rKt2zOnE0UTiOSxKMkjJxNJ24PQ+JkQBJCnAmt7ULpGchVGfcdBFt+urq8vPh4dX0xvboGm1TlzcxNR1iaVOfTBTfBLRciSFnQbRGkTQDzJ5hkKmfn/h7odyuv30yw/zjB1fmaZdlvd7IjoG3Eyu+4y822z80PeR+BtHm5j1b/agcn0Mt99HIfbX7Q8H9yH939BaEm/gh2DAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:58:38 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4992", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"a8bbefe768d759477b6df6a628089e23\"", "Last-Modified": "Wed, 20 Dec 2017 21:58:02 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.072758", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7A4:1E7C:5E8771:70B49A:5A3ADD0D"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2017-12-20T21:58:38"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"body\": \"Comment from integration test\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>", "Content-Length": "41"}, "method": "POST", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509/comments"}, "response": {"body": {"encoding": "utf-8", "string": "{\"url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/353194484\",\"html_url\":\"https://github.com/sigmavirus24/github3.py/issues/509#issuecomment-353194484\",\"issue_url\":\"https://api.github.com/repos/sigmavirus24/github3.py/issues/509\",\"id\":353194484,\"user\":{\"login\":\"omgjlk\",\"id\":523287,\"avatar_url\":\"https://avatars2.githubusercontent.com/u/523287?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/omgjlk\",\"html_url\":\"https://github.com/omgjlk\",\"followers_url\":\"https://api.github.com/users/omgjlk/followers\",\"following_url\":\"https://api.github.com/users/omgjlk/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/omgjlk/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/omgjlk/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/omgjlk/subscriptions\",\"organizations_url\":\"https://api.github.com/users/omgjlk/orgs\",\"repos_url\":\"https://api.github.com/users/omgjlk/repos\",\"events_url\":\"https://api.github.com/users/omgjlk/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/omgjlk/received_events\",\"type\":\"User\",\"site_admin\":false},\"created_at\":\"2017-12-20T21:58:38Z\",\"updated_at\":\"2017-12-20T21:58:38Z\",\"author_association\":\"COLLABORATOR\",\"body_html\":\"<p>Comment from integration test</p>\",\"body_text\":\"Comment from integration test\",\"body\":\"Comment from integration test\"}"}, "headers": {"Date": "Wed, 20 Dec 2017 21:58:38 GMT", "Content-Type": "application/json; charset=utf-8", "Content-Length": "1368", "Server": "GitHub.com", "Status": "201 Created", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4991", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "\"83e5a35bfdf0ef2f76570bfd9c684eea\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "Location": "https://api.github.com/repos/sigmavirus24/github3.py/issues/comments/353194484", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.220775", "X-GitHub-Request-Id": "C7A4:1E7C:5E8776:70B49F:5A3ADD0E"}, "status": {"code": 201, "message": "Created"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509/comments"}, "recorded_at": "2017-12-20T21:58:38"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA+2Wy46bMBSGXwV51UqZGMhkGlCarrufblpVGQMOsWps5AspRXn3HpskbTIoHaEsusgOwfk//z430SGrOErR1phapxiTmk1LZrY2m+ayworWUmPNyoo0TFkdP+L+62xat5hpbanG8zBBE8RJRrle3wSHe1iHBanoHuDgpaLC3Ap/xAGZNjfk9jCgbk3FL1LxV1bflE9WoDSK4yRM5nEyQcJWGVUohWRPkGGGU6jaZ2FoqYhhUgSGahNspApyLjUTZSCtCYgIfJHAktVO3iEuSyZAy4yuaEWMybdWlBDgDvwwmy+iMJ4g0hBD1GU1/Ut9aBAHzCU4EMb3isUH9afm4wx4YKyHODByDq51mqNp/MrU9US+Ct9IzuUOSJfOz9t66DB80oLV/hmyOJoD2g5Ls6WQRLiaa+KS6X918KAxr+tg8LRZs8KRNJRB0WKEuYMSrO0EuOr8hHukzXSuWO16aUz2zvTAk6okgv3yvTmGB3oNGL+ARtzT60D/lvEeTHov7HCtWEPy1qVI0ZyyBtI+GnpBAKZpazfIX9xwQhGYoWtSVG5AN4Rruj/uVZR+++7rbly4G3FagIDL/Ac89MEwtRpWi6AQIiznE1QxDltBitOL0+JLI1iqigKuWBMDyDiM5g9R/BAtnsMkjWZp9PgVDrB1MRgThWmcpPGTi+ndDGKe0njhQjJZtGs3y3DSsl49b5kOdozzIKN+X9EiyNoApiVY5rKgK7+0pv2Xd++X2L9c4np1ZBn607m+AjpHHHTXJS/nmpc/d8va++rs/wgGh+W+Ou+r8/Qrgf+T1bn/DbT8wv/cCgAA", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"1fa43ec193bb8fae395afba3cbf4f084\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4998", "x-served-by": "e183f7c661b1bbc2c987b3c4dc7b04e0", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F5:B82CBCE:5673E6A5", "access-control-allow-credentials": "true", "last-modified": "Fri, 18 Dec 2015 10:29:26 GMT", "date": "Fri, 18 Dec 2015 10:57:41 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450439842"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2015-12-18T10:57:41"}, {"request": {"body": {"string": "{\"title\": \"Integration test for editing an issue\"}", "encoding": "utf-8"}, "headers": {"Content-Length": "50", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/1.0.0a2", "Accept-Charset": "utf-8", "Connection": "keep-alive", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"string": "", "base64_string": "H4sIAAAAAAAAA+2WzY6bMBSFXwV51UqZGEjSSVCarrufblpVGQMesGpsZF9IKcq79xqStMmgdISy6CI7BPd8Pr5/oiWVkSQiOUBpI0pZKaaZgLyKp4kuqOGlttSKrGC1MJUN57T/OpuWDRXWVtzShb8iEyJZzKXd3gRHe1hLFSv4HuHopeAKboU/4pDM6xtyexhScyjkRSr+yuqb8ilSEgVhuPJXi3A1IaoqYm5IhMmeEBAgOVbtswKeGQZCKw+4Be9FG4+nAoTKPKa8rkBop7JO2hKpM6FQJ8AWvGAASV6pDAPcYY+zxTLwwwlhNQNmLivZvbSH5nDAROPpCro+qehB/an+OEMemuohDkycg2td5miWvjJ1PYmvwl+0lHqHpEvn5y09dBg9adFq/4wZHM1BbUs15ByTiFdzDZwJ+6/uHTTW6VocOgtbkTqSxTIYno4wd1CitZ1CV2033R2yim1iROn6aEz2zvTI0yZjSvzq+nIMD/UWMd3yGXHPTof6t4z2YNJ7YUtLI2qWNC5Fhidc1Jj20dALAjKhKd0Qf3HDiUUQwLcsLdyAvjBp+f64U0n07XtXd3DhidSWpyiQOvmBD30wTq3FtaI4hqhKygkphMSNoNXpxWnpRQEuVMMRl24ZIDL0g8VDED4Eyyd/FQWzKJh/xQOqMh2MCfxo8RjNAxfTuxnEfIjCpQuJddps3SzjSety85QL6+2ElF7MvV7uxY2H0+KtE53yTbe0pv2Xd+/XtHu5puXmyAL+07m+AjpHHHTXJc/nmuc/d4ub++rs/wYGh+W+Ou+r8/QrQf+T1bn/DXtqbvDYCgAA", "encoding": "utf-8"}, "headers": {"vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "x-github-media-type": "github.v3; param=full; format=json", "x-oauth-scopes": "admin:public_key, gist, repo, user", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "x-accepted-oauth-scopes": "", "etag": "W/\"b95a9af3e770ddc5f2c64cc372af5ec0\"", "cache-control": "private, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "4997", "x-served-by": "13d09b732ebe76f892093130dc088652", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "97E1C718:134F5:B82CC08:5673E6A5", "access-control-allow-credentials": "true", "date": "Fri, 18 Dec 2015 10:57:41 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", "server": "GitHub.com", "x-ratelimit-limit": "5000", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1450439842"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2015-12-18T10:57:41"}], "recorded_with": "betamax/0.5.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2W32vbMBDH/xUjGGyQRZYTr4nJOrqxh0GhULKX/SCVbcURkyUjyek80/99JzlJmx+kJevDHvpmW3ef++pOd3KLai1QghbWVibBmFa8X3C7qNN+pkqsWaUMNrwo6ZLr2kRD3K0O+lWDuTE1MzgOx6iHvCm3Sjez05HAETRlwvwD44Es3MFaLGnJ7gAOeyqZtM+FX+OAzJbPyO1gQF3YUuyk4kF1nlQXnqOERNE4HMfRuIdkXaZMowSK1kOWW8Gg+l+kZYWmlisZWGZsMFc6YDm3XBYBlYEvNMipjXNtkVAFl+DHrSlZSa3NFrUswMAFOxvEIxJGPUSX1FK9W0n/0ZDVKXPETEF4af2Bq/HK/cPy/RCAoKqjODJyEo4dV0czeE/V8Szumc+VEOoWSLvSt3vjUDC88QWp3TOk8GQO+LZY2QWDLMLW3AkuuHns+B4U5v1a6F5jZzx3JAN10Cw/QdzKE6TdSlDV+jHhkXVqMs0rd5BOyd6WP/CULqjkf/zBPIUH/gYwfjSdsE/vB/5P6e2DSe8cW1xpvqRZ41KkWcb4EtJ+MnSHAEzbVK6Lv7ruhCJwy2Y0L12Hzqkw7G49VFHyvfUtSoZkdBZG4SPtdHz6d7MVf6amgahuwoKG1VumhIJJgcKIkTCD5ZzNaS3sRlGnI343HIzimDyHDi5fRWGlVaGZcUVbCeIyePBxrYvRLBym+7p++rawbieZUIblYCJU9gseulzCVDMwdiUDE1kLcf9uILvgXnIBA1TJzfrmjkgiuH80A3o+o5AJFIUkfkuit2Q0DccJGUBZvkG8usq3bM6cTRROI5LEo2QwcjaduD0MiZMBSQhxJrS2C6VnIFdl3HcQhPx0dXl58fHq+mJ6dQ02qcqbmZuOsDSpzqcLboJbLkSQsqALEaRNAPMnmGQqZ+f+Huh3K6/fTLD/OMHV+Zpl2W+3syOgbcTK77jLzbbPzQ95n4G0ebmPVv9qByfQy330ch9tftDwf3If3f0FOq0caHYMAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:59:21 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4990", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"bd7fce67895560d9bdb99db5629e4859\"", "Last-Modified": "Wed, 20 Dec 2017 21:58:38 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.081147", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7C5:1E7F:E1946D:10EA28E:5A3ADD38"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2017-12-20T21:59:21"}, {"request": {"body": {"encoding": "utf-8", "string": "{\"title\": \"Integration test for editing an issue\"}"}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>", "Content-Length": "50"}, "method": "PATCH", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+2W32vbMBDH/xUjGGyQRZYTr4nJOrqxh0GhULKX/SCVbcURkyUjyek80/99JzlJmx+kJevDHvpmW3ef++pOd3KLai1QghbWVibBmFa8X3C7qNN+pkqsWaUMNrwo6ZLr2kRD3K0O+lWDuTE1MzgOx6iHvCm3Sjez05HAETRlwvwD44Es3MFaLGnJ7gAOeyqZtM+FX+OAzJbPyO1gQF3YUuyk4kF1nlQXnqOERNE4HMfRuIdkXaZMowSK1kOWW8Gg+l+kZYWmlisZWGZsMFc6YDm3XBYBlYEvNMipjXNtkVAFl+DHrSlZSa3NFrUswMAFOxvEIxJGPUSX1FK9W0n/0ZDVKXPETEF4af2Bq/HK/cPy/RCAoKqjODJyEo4dV0czeE/V8Szumc+VEOoWSLvSt3vjUDC88QWp3TOk8GQO+LZY2QWDLMLW3AkuuHns+B4U5v1a6F5jZzx3JAN10Cw/QdzKE6TdSlDV+jHhkXVqMs0rd5BOyd6WP/CULqjkf/zBPIUH/gYwfjSdsE/vB/5P6e2DSe8cW1xpvqRZ41KkWcb4EtJ+MnSHAEzbVK6Lv7ruhCJwy2Y0L12Hzqkw7G49VFHyvfUtSoZkdBZG4SPtdHz6d7MVf6amgahuwoKG1VumhIJJgcKIkTCD5ZzNaS3sRlGnI343HIzimDyHDi5fRWGlVaGZcUVbCeIyePBxrYvRLBym+7p++rawbieZUIblYCJU9gseulzCVDMwdiUDE1kLcf9uILvgXnIBA1TJzfrmjkgiuH80A3o+o5AJFIUkfkuit2Q0DccJGUBZvkG8usq3bM6cTRROI5LEo2QwcjaduD0MiZMBSQhxJrS2C6VnIFdl3HcQhPx0dXl58fHq+mJ6dQ02qcqbmZuOsDSpzqcLboJbLkSQsqALEaRNAPMnmGQqZ+f+Huh3K6/fTLD/OMHV+Zpl2W+3syOgbcTK77jLzbbPzQ95n4G0ebmPVv9qByfQy330ch9tftDwf3If3f0FOq0caHYMAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 21:59:21 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4989", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"bd7fce67895560d9bdb99db5629e4859\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.101246", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7C5:1E7F:E1947F:10EA2A0:5A3ADD39"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/509"}, "recorded_at": "2017-12-20T21:59:21"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": "", "headers": {"Accept-Encoding": ["gzip, deflate, compress"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/0.8.2"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token <AUTH_TOKEN>"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA62YTY+jOBCG/0rEddNxCPm+zM5pdm9zmL3sJTJggtWAkW0SpVH/932NCQFWm4/2Sq0ooV2PX5erTJVrj8fePtj4843vT72C5szbe0eu0yoMZuXFm3pJlWWH9h+KH3N64rJSiyUZjBLngklvX3uZOPICjP5QUMw0i+V8G8ynHj1RTeWhkhnGpVqXak+IfahmllopJiNRaFboWSRyUhFr/A2oo2wBhulF/nIbrNbxdpfsFiu23i38zTZkzI93AY2SDQxGE5W8ncSSMZMiI7WpzrORPqurMRkNTkSWiTMo4xU9moh0lsbNDYUXxy9SYFkToVMGx2JJn8ZRXOnXRTVWNXZX6QOPDUdhtySLXxbW2kGWCY7PmkhWigZYhSqSvNRcFK8LHFiDJuSRFvyDfo0GawWIkfa6lMYK1uyEQH3d3JrVpJT8RKOLcY1kEeMnOPuLyJE9iPpSmpz+C0FhXM81O9A4Nzma0Eyxz6nXTK8xqHkwRUo+G/3DMyBm3a5iwp8XnYpikvFQUnmZJEJOOBJaJjRCrE7OOGMmCNfJD67/qMLJ959/ngIIxLj3TsndzG2cP0jGoRxDerAndxFITwAg6Z1dnDjGvib4bPMpQqrTUEiqxaND477AAagm/Z8mljSjuZPwBgBQKoSbJxsAQFypij0V2vcX3nAUueZPUeWhPfKeyZr7aEuAVqpwzheMOXmwg9TkeiojHYoodcNeGTWx35rdpkcnqcYemDAToRMHL0rSQGqiUmrfQ/rgqs5QDWMAlSxxlmoYHVRLx/1uZBpIh8RLUGPrnXReGaRuPZrR4ljRoxu1g2DXzav6SD8eFjH3c+dGAdKUb5KHlfshd+MYpbZ2QL67ufSGuUGbguR+mfPAAb3CpnFBnvNHdcF9YosYhP3/gDVxOkab34/LmMdyDaMmtzPZHvot3cW77al/1Unq2xxtr+AUElcGqX8rqU7NyYWpSiqZi+gWQeqQotiazWZ1ymhTVudMOmawJQBFZZSianTRWV8ZqHpyqptqPTEyY1TvmaCxk287CIB2G120WkI/xko0qU4CG0CfmPOMKS0KtzP2RumzC6F5wqNnOpb76TYA1d8ULyI2pVk2RdRqHnHEMWpts4soOJmbhywBy8Adge1UMoaQdvK6ZJZRE9tpRpKhEYkPVKOBWMz9xds8ePODX/5uv9ruV8HfWElVxoMxy7c5/ja//GC/Wu+DZkxZqbSHGQ1ZmiE4AdsQxDfcP+ATdx7/6u97LYW5NYChUunN8Peb2f4/LkdasyhDLI2C/vk5T+PX0mNTSE1FzkqUCe01S7fKoLzM4OkY7VcsIjVDD0zMyvgHhq791XJQEESiKrAf/no19c5Uo3bFq7f/8FpIdE2fmZqqg01Tb69lZbpKPLkdA72HZ/7Ou47PNm0tfRXglORSivayqECSot8vWdGyOxkYaLs1BMlgBHTjwVV2u4qYJbTK9MEWz5Ado+rPRGkih8kcus3FhLnN6nfKNqw6pebEsGtDC10wfUa3eNVjRPQLlc5bn/8AkBkPLXETAAA=", "encoding": "utf-8"}, "headers": {"vary": ["Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding"], "x-github-media-type": ["github.v3; param=full; format=json"], "x-oauth-scopes": ["read:org, repo"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "x-accepted-oauth-scopes": ["repo"], "etag": ["\"d6bdb85ea621ac6dd215d08fb1cb809e\""], "cache-control": ["private, max-age=60, s-maxage=60"], "status": ["200 OK"], "x-ratelimit-remaining": ["4456"], "x-served-by": ["d818ddef80f4c7d10683dd483558952a"], "access-control-expose-headers": ["ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "transfer-encoding": ["chunked"], "x-github-request-id": ["8002D1DC:6135:9A561:5345DB39"], "access-control-allow-credentials": ["true"], "last-modified": ["Mon, 07 Apr 2014 13:56:33 GMT"], "date": ["Wed, 09 Apr 2014 23:43:53 GMT"], "access-control-allow-origin": ["*"], "content-security-policy": ["default-src 'none'"], "content-encoding": ["gzip"], "strict-transport-security": ["max-age=31536000"], "server": ["GitHub.com"], "x-ratelimit-limit": ["5000"], "x-frame-options": ["deny"], "content-type": ["application/json; charset=utf-8"], "x-ratelimit-reset": ["1397088602"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2014-04-09T23:43:53"}, {"request": {"body": "", "headers": {"Accept-Encoding": ["gzip, deflate, compress"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/0.8.2"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token <AUTH_TOKEN>"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA62VbY+aQBDHvwrhtefyoIjEXHPpN2iub1obWWDQTZaFsot31tx37ywPRqj1Ds/EFwb2/5thdmb+R7MquRmYO6UKGRBCCzbdMrWrommcZ6SEIpdEsm1G96yspDMjzVt3WhwIk7ICSRzbNycmpxFwubkLjjSwIxE0gzeEYy4ZCHUvfIdDMuzvyG1gSN2pjA9KcVbV/9WzqDhvq8kSM3At3/G8uTcxRZVFUJoBVnpiKqY44JU9v+SGzCjnRspeQWLUSupDR5PnWybwRLRlHHUKX9U8z3YXs4lJ91TRcnhT9UPZXr4mxblQWJu6DyrSiL8galu2AM00Pcv2ZsnCWUY0pX7s2+Au3DR2EsuCNFrGOq1rHaYjSXKW6fXSnR1Mc87zF1QPv6Tfwv0A5KTCxJr/TGxvIKDqSHK1AywkfoJu0i2T73XoIJlaccSRkmrDEs2QeAklJKMSajWYzovATI711NawKpJxyQrFcjGuSj0lkvJySwX7Q8eTUKlbs14ko76qVqDyIwM6KGsjOZKiZHsaH3QpSoiB7bGwN+AGWqSpQ6En8LueNywzU7ChSaZnLqVcwlu3Dc3g56/6TpU+HvNcQoICKnEDCMBnAid+YmaMg1S5OD047afAxt1XAuqTDVXIcCx79mDp37NlBbNFYM1/ILEqkgtnFs+2G8y9wHX1mSb8ANM/ohfQpoTfuNUx2PH65F73Bo3qrOH6SH9gGyYsTW9fp1MtxwIUVMW7T2BqvYmXG+XJYaM/Ci9kVfHHtVhx9vg1F3tctsYqzhN4/AYcqIRpUUWcyV19fytSvzKoUiWLKgWGyg3aCvQFKpZBewiZBKEN+ilJ2lNY9LLDoLiJ9SQlnOAxx/bqtASzwy+vE1bwqjuoS/NSgsPMupzWYi10Djq6zrkOaNSRWjqCH4wOHV5ih0N42NHDdbkWD4YOEOoIoQ4R1jHCU5C2e6PDucGdtw4mog3JmVm+a91oco34X5OL7Znvzr3EX6ZLZw7e0rEXfgRgJ0uXxulCT+D7JjfI9uNTgfhRZtebqJsN7wLlM6Y3GPNPGF+PdD/z62PPrRPrP9oAe7SxJtgTjzfCnvw+ZjjIqGemWJ73DPHtL+G60RxoDAAA", "encoding": "utf-8"}, "headers": {"vary": ["Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding"], "x-github-media-type": ["github.v3; param=full; format=json"], "x-oauth-scopes": ["read:org, repo"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "x-accepted-oauth-scopes": [""], "etag": ["\"d28829cd410c6a0f02ff4a006ffb6b80\""], "cache-control": ["private, max-age=60, s-maxage=60"], "status": ["200 OK"], "x-ratelimit-remaining": ["4455"], "x-served-by": ["a8d8e492d6966f0c23dee2eed64c678a"], "access-control-expose-headers": ["ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "transfer-encoding": ["chunked"], "x-github-request-id": ["8002D1DC:6135:9A57A:5345DB39"], "access-control-allow-credentials": ["true"], "last-modified": ["Wed, 09 Apr 2014 22:38:22 GMT"], "date": ["Wed, 09 Apr 2014 23:43:53 GMT"], "access-control-allow-origin": ["*"], "content-security-policy": ["default-src 'none'"], "content-encoding": ["gzip"], "strict-transport-security": ["max-age=31536000"], "server": ["GitHub.com"], "x-ratelimit-limit": ["5000"], "x-frame-options": ["deny"], "content-type": ["application/json; charset=utf-8"], "x-ratelimit-reset": ["1397088602"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218"}, "recorded_at": "2014-04-09T23:43:53"}, {"request": {"body": "", "headers": {"Accept-Encoding": ["gzip, deflate, compress"], "Accept": ["application/vnd.github.v3.full+json"], "User-Agent": ["github3.py/0.8.2"], "Accept-Charset": ["utf-8"], "Content-Type": ["application/json"], "Authorization": ["token <AUTH_TOKEN>"]}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218/events?per_page=100"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA+1Y246bMBT8F563McYEDC/9ifalVRUZ+0AscZNtstpG++89QMoSdpWWbFq1UqQ8RLFnPD74DJ58PXpaeSn1k4AHNEkevM6UXurtnWttSoho9abQbt9lG9lUxEDbWGJ1UYmDNp0NQjKOsk37RLS1HVgCB6idJROn9+AJ6RrjpUevbApdI/+cAsd7DUHoc+bj3INwwuwWOoYf7UlLZ8HIpna4ziCrIyP4I1IV5kTQc3qShpxtI8WTPAm2ECUBjXkGQFXChMxjBFzccL/S+YYRsXdVudA3q9Fia3lTls0jsix3dF7Z1wuRCYlLjt91XVzJgsgjadwesLC4pee+UNq69aIG1BGfunU7rXoeiw/GgFot7IRDWY81KjoOh2sg7DIrjW6dbur1As/QyNaYQtT6u7iODdEWSYZzv3qHAwrRY0Osho+wI2mNPgj51JfGgAR9wGJfSbnAI6N7agH75DMeir702sFOqKrv0VyUFp5P6nGKgRwM1BIUTsSuq3R/AnAAOGehlFSC4LkQMhQyEEzmKoqFCDKe+YqDgLCHGRAO5QuHuMCn4QcfP/EnytJtlDL2xXt+mDtS4KMhXGzQ9Y6EnKjk7kh3R1o4O7k70vxd/8Yb6R9zpApM8XfdiP4BN6J3N7rfj95otrsb/V9uJMvGLt2o7spy5a2HJXwbx7f1mZHzLZ/JCl1mYByO9Xc5FlEWh1dmsBH8OoNFPo1CFQdJJnLBJafAYpbLQPk+5Fkice2LV7yxN2ZKL+ev2cRV2esn7vrctWB4T+aaqN6VtyaW23nJC+U8peEjXJ2zJqa1GWsCrs9XE/Q2N5mZkrNchuX4/Vy1B6F2GK52CkrAcNTHpJd09QsH4fi3SUpjzE3ffgCTJbEryxEAAA==", "encoding": "utf-8"}, "headers": {"vary": ["Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding"], "x-github-media-type": ["github.v3; param=full; format=json"], "x-oauth-scopes": ["read:org, repo"], "x-xss-protection": ["1; mode=block"], "x-content-type-options": ["nosniff"], "x-accepted-oauth-scopes": [""], "etag": ["\"a77a3c3951073af6676beb86ac3a3aa9\""], "cache-control": ["private, max-age=60, s-maxage=60"], "status": ["200 OK"], "x-ratelimit-remaining": ["4454"], "x-served-by": ["c046d59f93ede9ab52d5ac29f1ed70f7"], "access-control-expose-headers": ["ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval"], "transfer-encoding": ["chunked"], "x-github-request-id": ["8002D1DC:6135:9A58C:5345DB39"], "access-control-allow-credentials": ["true"], "date": ["Wed, 09 Apr 2014 23:43:53 GMT"], "access-control-allow-origin": ["*"], "content-security-policy": ["default-src 'none'"], "content-encoding": ["gzip"], "strict-transport-security": ["max-age=31536000"], "server": ["GitHub.com"], "x-ratelimit-limit": ["5000"], "x-frame-options": ["deny"], "content-type": ["application/json; charset=utf-8"], "x-ratelimit-reset": ["1397088602"]}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218/events?per_page=100"}, "recorded_at": "2014-04-09T23:43:53"}], "recorded_with": "betamax/{version}"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.drax-preview+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62YQXPqNhDHvwrjawnGOCnEM53Xntqe+g6vl14YYQusxrZcSYYST757/yvZxqZTSKJeGBDan1ar3dWu2kBkQRKvo+U6iuZBxUoeJMFBmLzZxYv6HMyDfVMU2+4PLQ4lOwrV6NVjOJklTxVXQdIGhTyICozxVFBomdXjchMv5wE7MsPUtlEF5uXG1DoJQzeo44XDNpqrVFaGV2aRyjJsQif95fjDI3AH1UGIG2DgClaLjuOEAdPhlUa5KYsrHdzSVuRq8l4WhTyBcq31vYXCQZJMaSmiOnySAsk2lCbnMB629EaGENp8XCkr1eIEtdmKjDgaJ6J49mHFOjmoRQ7w1oaK19ICm51OlaiNkNXHFZxIgybVgVXilX2OBmkNCKn2cVWsFKT5Eb74cXEn1oa1EkeWnsk0iqdcHGHsTyKv5EE055ri9nc4BZleGL5lWUlxuGeF5m/zwC5vMMkOzBF27/X+aZxnfDhVLPj1bHJZzQqxU0ydZ3upZgIxq/Ysha/OTsgjM7jr7Gdhfml2s5++/nqMoSDmvQya3Ixca/xJME7VIdKdM7mJQHgCAJVe+NmLQ/JtiM8unlKEOttJxYy8lzRuKzgBteH4J/mS4az0UtwCAMql9LOkBQAktG74u1z79sYtR4d9/FRNuXMp7z1RcxvtCNCVaeT5inMvCw6QNuyzMsKhSnM/bM9oQ/fNnjY7eKlK8sDsCrnz4uCiDC2kDXXO3D1ktr7aEZUYE6jie29ViTFAjfI8b6smQQYkLkGDo/fSs2eEbWfRglWHhh38qAMEp05X9YG93i1ibsfOhQIkVWhK7Br/JHfhkKaudkC8+5n0grlAbUFyu8y5Y4BRYWNNUJbiXl1wm9ghJm7/P2DJT6/R9Pt+GXNfXWK04SUnu6Tf0X2s22X9Xs/xGl074OUSPSNsv6uZySlzYamaKe6jdIcI2x1DsbVYLNqcM1tWl1x5RrAjAMVUmqNq9NGz7RmoekpmbLW+JzUzVO+FZJmXbQcIgO4YfXR1hPH512hEvRS0gDGxFAXXRlZ+OfZCGbMracRepO/pWG6H2wTUftGiSvmcFcUcXmtEKuDHqLXpFFFwcj8LOQK2gXcA16kUHC7tZXXFHaMNXaeZ8bqQZ+8sNMJQECuO7ibbMoOuZLWMVg/L+CGKv0XPydMmeYr/wJymziZz1g+YFm2+RZsk/j6J1jSnbnQ+wrgpz99WURKtOgzSaufX+IaHC3ziseRfjwajPoWeIsDWOr8I/ngRS/7jVaUTSws46FUkvX/N4/Vdd18Uquay5DVqj9H7jJOL6/MCps7Q1GUy1QshaWPiFTOj9ebpeVJlpLKpcB7reDMPTsygIMZ9Ph7sq5Ohk6Slmd662A8SoxpqVTFSK/knT40ej13yzWjiSbyIS5NLklRCDSOuX+x0WK2fkKGFUrJ7jKqQIIZEi4elrleWNa86nXr1o+UK8SZSXmlsvaX2EZuwTzPYQ/da9lv3U9fZ32gLg8TxbcNLX9GWu/YzsZqMloE1aYHeaJ0NM75nTWG2rh/AehkamULW5LdclbAavbWQOuPm3zl1bzjKge47VkcWkaet/qthcE170fTT3D92CFumCmf6j+J01U1lKm5O6KZ7E9k9jSu5zurx09s/+FuO03YUAAA=", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:00:02 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4988", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"167ea313200dd260f7c392673f8db576\"", "Last-Modified": "Mon, 18 Dec 2017 18:36:17 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=drax-preview; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.061699", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7D8:1E82:1DE6643:2398D8C:5A3ADD62"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2017-12-20T22:00:02"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA62VUU/bMBDHv0qU51InbSgo6pgYT3sZEiovW6fGSdzUmmNntlPoKr77zk5SmggKaSvxAOT+v/v7fOfbuqVkbuiutC5UiBAu6DCjelXGw0TkSJJCKKRoluM1laUaBaj6Oh4WG0SVKolCI//aHbg2lGohN4vjkcBhOCZMncDYs4Uq2BZxnJMXgMOZcsL1ufANDshkfUZuBQPqSuesU4q923nvXoqSsfpWaOqGY+96NJlcTgYuL/OYSDeEGxu4mmpG4OpnT8JROWbMWdJnoiBrqUzQ1mUioxwi4owy0Gn4ZHkTf3wVDFy8xhrL7k3Zfyq/7iKDSgTXUBzbUCWq1F/XXwLAZbKGGK5rUh/qRgNTaM/N4fLsBS4FY+IJ1F237XZvJ0A7FRirfqc8O4IAqi0SekWgWHAE04gZVR91YceMVWxh/JRe0NQwFBRakrSXoVoDdp44ONnaCbewMlaJpIWmgverUksJJCEzzOk/3J8EStN+9iXpdSqrAOVnhrBT1kqyRYWka5xsTCkkSQhdQ2GPwHW0QNObwkzZo5kpKDPVZIHT3MzVEjNFXpoXzw1//bZ3qk14woQiKQiYSP7AL1UwzJyCoecEQjgM+evfqpLnlBGlBd99371QoQ+vnyRATxdYQ4aR5wcXnvmZeV4YXIXe5U/IVxZpN+baxvihH4TByMRU5jqYq5k/Di8n4XhsQnCpV0IuwK5IqG0FSHl3/2P28P3b4+z+AULMK7WQ5C+sEPCzPTz6hxeRQTV76PCb8IknM6XL5fFv7tDIzemwTlYnYKzehe6IRbpZmENBAaclu5nzKaM3d4Kv4UV2polIyc0DYQQrMizKmFG1slc8RfaTg7WWNC41cbRwcC0wd6xpTuqgKQJkBb5N0zoGSi4bCEirTLdKkR06YXC/jRaBNzi3tavJs2mxxuRb9rq+GkdzbhyY3MavTefYPDUbsBdOA47eIkdddNSwozm/cAw+MvzIJIhshqhKMeevzR1v9jfgfttAjNlWo8C7HnuHt+D43S1YqU/Ygh1Hn+96sN9rG7Ym5uiN+AbllK3YGeMTNmOLdL7t2Mbu71aof+8N2aL13ZItcf9N2ZKfZ1t2HLW2LZTno4358h8E+hu6tQwAAA==", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:00:04 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4987", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"0ea49329bf70ed54663a696c8749002c\"", "Last-Modified": "Wed, 29 Nov 2017 00:56:47 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.118697", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7D8:1E82:1DE66B0:2398E3E:5A3ADD62"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218"}, "recorded_at": "2017-12-20T22:00:04"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json", "Authorization": "token <AUTH_TOKEN>"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218/events?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1Y24rbMBT8Fz+nkW8bO4ayP7F9aSlBlk8cgXxBkr2kJv/e40td27sNVZLCQg15CJJmNDqRhjP51lg8sSLH3ruh6+z3G6uSwoqsk9aligihJd+mXJ+qeMuKjEgoC0UUTzNac1kp1yf9rLctz4QrVYEiUEOuFRk5rY1FmS6kFTWWKFKeI/+UAudbDa5vh56Na2uqqTwsdHSDyhvEVAokK3KNG3W6KtKjn+vPPtKlciBpeS0cuHqolmx+KEScdCYWGiZ1WMg/FkIUr8iyVD2v3tuNyIjELfvvPE9vZEFkQwp9AiweHunSFoIrbS6qQzX4yyp94EnLo7D4EhJjYQMOZb3mqKjpLlBHWMWKSV5qXuTmAmdoZCtkSnP+g97GhmiFJN3dNj5hh0J0f+mN4T2sIaXkNWXntjQSGPAai30j5QKPjPpcAr6DL3gp2tJzDQeaZO07PFKh4DKoxyUSjiAhZ5DgQnxYGW9vAE5AGHo+Yw4DGh4pZT5lLvXYMdkFlLpxGNtJCBTaxzfArj656z7SM6CRGGwqgWqsGdUo1rUd/5ONn+DF8aKnXeR5X63LZmp1ro1Oc4fE96wOOfH4q9V1hvzGU1erW60O24IPY3UZyPQ/sDnnH9ics9rc0A+vNrd2dIs89ME6OiYKtbS5vBJi3qcNIyZNlLcPn4Lgse7Sc77nLnHKRQxS41zbj3o7xwv861nR+WNW7NF3ZMWJmus5cbLQKCP+wt3eNC0Y7smGI9VduXBkeVwm/E05TZN4RYzz4MhkmgVHoHkOHKGPcYyJkll+xHL8ff47AU0OGAIPCQjAPDVPgca+EeKfOpETYPj6/hOJlgd1aRIAAA==", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:00:05 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4986", "X-RateLimit-Reset": "1513807760", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", "ETag": "W/\"8113923c5306ed74db929f7ca670d055\"", "X-OAuth-Scopes": "admin:org, delete_repo, repo", "X-Accepted-OAuth-Scopes": "repo", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.138016", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7D8:1E82:1DE67E3:239906B:5A3ADD64"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/218/events?per_page=100"}, "recorded_at": "2017-12-20T22:00:05"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate, compress", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/0.8.2"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA62YTZOjNhCG/4qLazyWMf7kstnTJrc9bC65uAQIoxpAlCTs8lDz3/MKYQxOxR+jXFw2Vj961eoW3Wo8nnhhsPHnG9+feiUtmBd6B66zOgpm1dmbemmd5/vuD8UPBT1yWavFkoxGiVPJpBc2Xi4OvARjOBQUM81iOd8G86lHj1RTua9ljnGZ1pUKCbEP1cxSa8VkLErNSj2LRUFqYo2/AXWQHcAwvdhfboPVOtnu0t1ixda7hb/ZRoz5yS6gcbqBwc1EFe8msWTMpMiN2kwX+Y0+q6s1uRmcijwXJ1BuV/RoItJbGje3FF4evkiBZUOEzhgciyV9GkdxpV8X1Vo12F2l9zwxHIXdkix5WVhnB1kmOD4bIlklWmAdqVjySnNRvi5wZA2akAda8g/6NRqsFSBG2utSWitYsyMC9XVza9aQSvIjjc/GNZLFjB/h7C8ib+xB1OfK5PRfCArjeq7ZniaFydGU5op9Tr12eo1B7YMpUvLZ6B+fAQnrdxUT/jzrTJSTnEeSyvMkFXLCkdAypTFidXLCGTNBuE5+cP1HHU2+//zzGEAgxr33Su5mbuv8UTKO5RjSgz25i0B6AgBJ7+zsxDH2DcFnl08xUp1GQlItHh0a9wWOQA0Z/jSxpBktnIS3AIAyIdw82QIA4krV7KnQvr/wlqPIJX/KuojskfdM1txHWwK0UoVzvmTMyYM9pCGXUxnpUMaZG/bCaIj91u42PThJNfbARLmInDh4UZIW0hCVUfse0ntXdYZqGCOoZKmzVMPooVo67ncr00B6JF6CGlvvpPPCIE3n0ZyWh5oe3Kg9BLtuXtUH+vGwiLmfO1cKkKZ8kzyq3Q+5K8cotbUD8t3NpVfMFdoWJPfLnAcOGBQ2rQuKgj+qC+4TO8Qo7P8HrInTW7T5/biMeSzXMBpyPZPtod/RXbzbnfoXnaS5ztH1Ck4hcWGQ5reK6sycXJiqopK5iO4QpIkoiq3ZbNZkjLZldcGkYwZbAlBUxhmqRhedzYWBqqeguq3WUyMzQfWeC5o4+baHAGi30UWrJQxjrEKT6iSwBQyJBc+Z0qJ0O2OvlCG7FJqnPH6mY7mfbiNQ803xMmZTmudTRK3mMUcco9Y2u4iCk7l5yBKwDNwR2E4lZwhpJ69LZhkNsZ1mLBkakWRPNRqIxdxfvM2DNz/45e/C1TZcBX9jJXWVjMYs3+bLt0Xwa+6Hy3W4XJoxVa2yAeZmyNYMwQnYhSC+4f4Bn7jz+Fd/P2gpzK0BDJXKroa/X83C/7gc6cziHLF0E/TPz3m8fS09NoXUTBSsQpnQXbP0qwyq8wyeTtB+JSJWM/TAxKyMf2Doer3YjAqCWNQl9sNf76beiWrUrnj1Dh9eCom+6TNTU7W3aeqFWtamq8ST6zEweHji77zv+GzT1tFXK5ySXErRXRaVSFL0+xUrO3YvY2kbR+WFxmYwArrx30V2t4qEpbTO9d4Wz5CdoOrPRQXdJdMntH0XsKENK45+2Z//AMs7R4E6EwAA", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-github-media-type": "github.v3; param=full; format=json", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"3dfc063103fa9b863e681151a20cb754\"", "cache-control": "public, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "59", "x-served-by": "d818ddef80f4c7d10683dd483558952a", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C5F1:2E4E:4334415:53586757", "access-control-allow-credentials": "true", "last-modified": "Wed, 23 Apr 2014 01:46:44 GMT", "date": "Thu, 24 Apr 2014 01:22:31 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1398306151"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py"}, "recorded_at": "2014-04-24T01:22:12"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate, compress", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/0.8.2"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA71WTY/bNhD9KwSPiWNS8rfgOGjRHnLrIUWB1oVDiWOZAEUKJGXHMfzfO5RsZ70JdtcbozAMSCPOm3mPM0MeaOM0zegmhNpnjIla9UsVNk3eL2zFHNTWM6/KSmyVa3w6ZN3XQb/eM+V9A54l0wntUS1y0H51FzjWgR2YERUcERxzqcCEe8Gf4RAZtnfE7cAQdRMq/UiKB6q+SE8laZaOUj5J02mPmqbKwdEMte7RoIIG3LTfbNFEWUjYWbIWRbCOiCZsMIHGx9UHqm2pDC59GBI/t+BDPh3wHhVbEYR7vHGt0Z9qIaIV1gSM1ZZFwzrnDwhVuhNAxKRFMpwORmM5na1n6QjGszSZTHOARM4GoljHQnmyQmKk64K7SU1cvLZa2x2iPGZ0XdnfB2IXzwuKMuUrUdDzwGzYAAqLlGINl8o/V8A/SKr1OmDX+bBSMuJ43BgH8ubETn6Y1s5gRoe2uVvAJveFU3VQ1tyu2pU3ollXCqO+itehobdHkHbu3Myw9ULvl/T0D6Tu3A6sdmorin2UxkEBaotivxLykT8ihn0dW/fP2J8ovQqwErKKPboW2sPxPEhp9s/h6VZ5ejZ3E5T92pQYJo5RDNq9FFZbnA0UkkSmCT327hHnd+H33wKd3s6ReAoJL+4VyWyEKSDOvQcBr4wXhhLwd6e4fwjl3u7waHz7UZhvkaOZRDPpzBfOfDblnB7/bRs2RPltDdFReBzGBtBiGq17tFIafLDmYricTtkATz4H6C1XIiBCypPhO56849NPnGd8lI1GfyNiU8vv1yTJpzTJhtNslMQ1hbb+BNOFza3cr+I5hbjzejEXZONg/X55uQoEZBXAtQM/d0qYVdG4oAyLfBrPhikfj0eDZJJO+IzzyWC8pIvzPeJ25zkTC1IJCaQCgqS1+grkIzHYeY7I00kHkqhA5lAtRCBC6znDx/6c1YulWRqk8Yv2Ni5BfaUnwZIciJBYBfEZxzGZF1bC4nyJaY/HOWttZN2YIk6tPvkLWgAiyBp2pLRWEvgiqho3KuKcs4mB4ta3CaDGraQBvsSter0QLxShE6AfeT9L+oruT/A8cfw/6L3p+L3pLx1SxP+zJD9fsfz8czRP7ZLvuy49/gebm/VMKAsAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-github-media-type": "github.v3; param=full; format=json", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"3c7806adc30a3c70862232625739e60e\"", "cache-control": "public, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "58", "x-served-by": "132026e9262a0093e437f99db5f1e499", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C5F1:2E4E:433444C:53586757", "access-control-allow-credentials": "true", "last-modified": "Thu, 24 Apr 2014 00:44:08 GMT", "date": "Thu, 24 Apr 2014 01:22:31 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1398306151"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "recorded_at": "2014-04-24T01:22:12"}, {"request": {"body": {"string": "", "encoding": "utf-8"}, "headers": {"Accept-Charset": "utf-8", "Content-Type": "application/json", "Accept-Encoding": "gzip, deflate, compress", "Accept": "application/vnd.github.v3.full+json", "User-Agent": "github3.py/0.8.2"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/labels?per_page=100"}, "response": {"body": {"base64_string": "H4sIAAAAAAAAA62QPQ+CMBCG/wrpCqEtOiijiYObu3Eo5QJN+pV+aIjhv1uCgu7kpve55J68d3uh6CSqUR+C9TXGzIqyE6GPTcmNwg6s8diLTrGHcNFXezxvd6UdsGQNSI9PsUMF0kxBOjQHbqRxKQGlbUXRWGzhOTM/rKJP+ppIBZTwrUy6Z5qDAh1+hH9wadhCmo28VyZc/kzvzy9Mr+YJZxPOZrx0JscDIWi8vwEYDk4FxwEAAA==", "encoding": "utf-8"}, "headers": {"vary": "Accept, Accept-Encoding", "x-github-media-type": "github.v3; param=full; format=json", "x-xss-protection": "1; mode=block", "x-content-type-options": "nosniff", "etag": "\"3c7806adc30a3c70862232625739e60e\"", "cache-control": "public, max-age=60, s-maxage=60", "status": "200 OK", "x-ratelimit-remaining": "57", "x-served-by": "a8d8e492d6966f0c23dee2eed64c678a", "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "transfer-encoding": "chunked", "x-github-request-id": "48A0C5F1:2E4E:4334473:53586757", "access-control-allow-credentials": "true", "last-modified": "Thu, 24 Apr 2014 00:44:08 GMT", "date": "Thu, 24 Apr 2014 01:22:31 GMT", "access-control-allow-origin": "*", "content-security-policy": "default-src 'none'", "content-encoding": "gzip", "strict-transport-security": "max-age=31536000", "server": "GitHub.com", "x-ratelimit-limit": "60", "x-frame-options": "deny", "content-type": "application/json; charset=utf-8", "x-ratelimit-reset": "1398306151"}, "status": {"message": "OK", "code": 200}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/labels?per_page=100"}, "recorded_at": "2014-04-24T01:22:12"}], "recorded_with": "betamax/{version}"}
\ No newline at end of file
{"http_interactions": [{"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA+1XW4/iNhT+K1akvs1g58ItYqladR/60G1V7WqlLRVrkgNYdezIdphl0fz3HieQAXZnBhjUvox4SeJzPn/nftgElZFBGiydK21KKS9FZyHcspp1Ml1QA6W21IpFwVfCVDZKaHMad8o1FdZWYGk46Ac3QS0qnDbr6eWQiCP5DKR9AcYeLdqAbajiBdwjONpUgHLXgt/BITKsrojbgCHq0hXyyBV70TkpLiIP0qgbsX4UDW4CVRUzMEGKMbsJnHASMPi/6KzybiHuTpM5zzCIhFduiQQq66U3gdQLoVB0/0o8rsETNojZTcBX3HFzHLj6o423SeXhMq0cXlbnV0Ub7R9XbxKEW5gtiMcN/PVPJacHO0zOszyGwnMtpb5DlGPWh1Xw7UW01WxRhFpciIKaG6rdEtB5aJLP04WwzyXpd0jVWhusUOumIvc4Fp1vID+b2FYPad0pZLSpG0ENWM1sZkTphFbne+1AG9G0WXAlvvLL0FDbIkjdeM62sNZC7VPq9juubtQ2tDRixbO1d42BDMQKnX0h5JE+Irp16cvzg69BdL1wMOV54etwzqWF+12zDNK/NnUpxsN4iKUePlM4T3f1pmfSn6sFXuobJ1JoXjItNXaDAMIwj0I8zWHOK+laPg2LMMHuwiJsCU+W70ks3nK7fqCxfdvxYBGELHuURzRIekgEG90VeKglVxn4LrlH5+Bj650c8Pcoq27SH7JhL7oGq9+Qjsb6pn9wYX6IGHZPgeHDpt5G7kCE7Au0XmTDAWOP8g278TBh3X7vGoTfAeQWiebbiVNX/gPZ+pgcHz5H9O+6zzmfp5nUtva91Nk/+NAUCs4mi4NLAYqoSsqHd4ulg+qFkGCdVu15O9jTGJcGA4ieTzkmeoDVldyy8JYN3jOWsm7a7X7C+6oyP5IJo9swec+SNA7Tbs/LNOT2YA5EYi/ip642U6SrM9E4Jw1+//ju7Z94ONP5euo3AqQxKscjTpYG5m8m7fLm7oRzYOrJOjOCq2lWGScU9e6pLE0i1ut147Af9dmQsX7cmwTEgEQIpZuJNgnGu1XwfLQR5WNS8BxIAYjLpfgK5FeisCGaNqqQE+HICIoxd4RLOaL42BnRcjxRaNVP0movgMHCVHCazIDwHAvKP+OMJKNM5zDebaH1XjKi9Tcyr1TmE6pDPkINQDiZwx1ZaJ0T+MKLEsPscXYZ5i9Cny3r63cedvDFB/pyN5zogsb8zkQ9a/KBsS+wcmvhf2EcZrkP7hTNO8HAzwcWfn6BiRPfTbaFNlu/bq7frMivm+vr5op/gP/nzfX+X3CgHJh4EAAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:00:41 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "55", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"c21a677e244fd3e60e5325b43ef57205\"", "Last-Modified": "Mon, 20 Nov 2017 20:04:48 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.067014", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7EE:1E82:1DE8804:239B5CA:5A3ADD89"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187"}, "recorded_at": "2017-12-20T22:00:41"}, {"request": {"body": {"encoding": "utf-8", "string": ""}, "headers": {"User-Agent": "github3.py/1.0.0a4", "Accept-Encoding": "gzip, deflate", "Accept": "application/vnd.github.v3.full+json", "Connection": "keep-alive", "Accept-Charset": "utf-8", "Content-Type": "application/json"}, "method": "GET", "uri": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/labels?per_page=100"}, "response": {"body": {"encoding": "utf-8", "base64_string": "H4sIAAAAAAAAA63RzWqEMBQF4FcZAt2J+VFH43Kgy5buSxd3zB0NRCNJHBhK371pbceZgnQjWZ2cS/i4eX0nWpE6k5ksBOMJmZwhNelCGH1NKYw6bXXopmPa2J46HK2nXrc9nLWbvMjp3GbpeKEGjmg8PUwtScgAPcaH5tBYY11MyLkSPLYKTzCZQOoTGI8fyazgOa9KJtgWikfwl4Xxk34dTCBnzapDVPk+QspNHEMHQ4M9DuGGc3d53Y7CeFZVRV5KJvdiC9VT5FiHir6Adg+CwRl0/D6Di/FuZHc7cN0ikxVjq15eZDJnRbnfAvyMqHyEKttMX7uEoO2wYL/r3d/yP+jbJxtTnrv+AgAA", "string": ""}, "headers": {"Date": "Wed, 20 Dec 2017 22:00:41 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Server": "GitHub.com", "Status": "200 OK", "X-RateLimit-Limit": "60", "X-RateLimit-Remaining": "54", "X-RateLimit-Reset": "1513810616", "Cache-Control": "public, max-age=60, s-maxage=60", "Vary": "Accept", "ETag": "W/\"f4a1acce52b6ef51b78634530df090c1\"", "Last-Modified": "Mon, 20 Nov 2017 20:04:48 GMT", "X-GitHub-Media-Type": "github.v3; param=full; format=json", "Access-Control-Expose-Headers": "ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval", "Access-Control-Allow-Origin": "*", "Content-Security-Policy": "default-src 'none'", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "deny", "X-XSS-Protection": "1; mode=block", "X-Runtime-rack": "0.035576", "Content-Encoding": "gzip", "X-GitHub-Request-Id": "C7EE:1E82:1DE8828:239B5F4:5A3ADD89"}, "status": {"code": 200, "message": "OK"}, "url": "https://api.github.com/repos/sigmavirus24/github3.py/issues/187/labels?per_page=100"}, "recorded_at": "2017-12-20T22:00:41"}], "recorded_with": "betamax/0.8.0"}
\ No newline at end of file