Skip to content

Feature any http verb in docs #482

Closed
@kennethreitz

Description

@kennethreitz
Contributor
No description provided.

Activity

sigmavirus24

sigmavirus24 commented on Mar 15, 2012

@sigmavirus24
Contributor

As @kennethreitz knows, I'm preparing to use requests in a different project, and was testing out the GitHub API. The following is something I did from the python command line interpreter:

import requests
a = ('sigmavirus24', 'not_my_real_password')
url = 'https://api.github.com/repos/sigmavirus24/issues.py/issues/comments/4524692'  # This no longer exists, you'll see why
data = u'{"body": "Amend comment."}'
r = requests.patch(url, data, auth=a)
# Checked what GitHub returned (response code 200)
r = requests.request('DELETE', url, auth=a)
# GitHub responded with code 204 -- successful deletion of a comment on an issue.
Lukasa

Lukasa commented on May 17, 2012

@Lukasa
Member

@kennethreitz: Whereabouts in the docs did you want these? The only place that currently exists that looks suitable is docs/quickstart.rst, but that document is getting increasingly large. Should we consider busting the verbs out into a new file? Or are you happy to extend the quickstart? Either way, I'm happy to write these and add them into #619.

kennethreitz

kennethreitz commented on May 17, 2012

@kennethreitz
ContributorAuthor

Probably in the "advanced" section

wulien

wulien commented on Dec 11, 2012

@wulien

I love requests so much, thanks for your excellent work!

J-Delgado

J-Delgado commented on Oct 26, 2013

@J-Delgado

Sounds great! I'll get right on it!

sigmavirus24

sigmavirus24 commented on Oct 27, 2013

@sigmavirus24
Contributor

@Fighter42 I don't know why you commented 11 times but this is already taken care of here

RAINCEN

RAINCEN commented on Nov 20, 2013

@RAINCEN

I feed my cat!

Lukasa

Lukasa commented on Nov 20, 2013

@Lukasa
Member

@RAINCEN Really? Really?

sigmavirus24

sigmavirus24 commented on Nov 20, 2013

@sigmavirus24
Contributor

@Lukasa the emails I received from @RAINCEN had the same message that @Fighter42 posted about 20 times (of which I deleted all but one). I have to wonder if these are just spam accounts or if perhaps this is related to recent attempts to brute force passwords on accounts. Regardless, it's probably advisable to just ignore everyone who makes similar comments on this issue. It's been closed for so long.

markthink

markthink commented on Jun 26, 2014

@markthink

github great

locked and limited conversation to collaborators on Jun 26, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @kennethreitz@sigmavirus24@Lukasa@markthink@wulien

        Issue actions

          Feature any http verb in docs · Issue #482 · psf/requests