-
Updated
Jan 4, 2022 - Python
curl
Here are 1,616 public repositories matching this topic...
-
Updated
Jan 5, 2022 - C
-
Updated
Jan 3, 2022 - PHP
-
Updated
Jan 5, 2022 - JavaScript
-
Updated
Jan 5, 2022 - Python
curl -k --digest --user username:password url
is converted to
import requests
response = requests.get('http://url', verify=False, auth=('username', 'password'))
but should be
import requests
response = requests.get('http://url', verify=False, auth=requests.auth.HTTPDigestAuth('username', 'password'))
-
Updated
Jan 2, 2022 - Shell
-
Updated
Dec 26, 2021 - Rust
-
Updated
Dec 25, 2021 - PHP
-
Updated
Dec 31, 2021 - C
I'm happy to announce that I'll be writing the second edition of Data Science at the Command Line (O'Reilly, 2014). This issue explains why I think a second edition is needed, lists what changes I plan to make, and presents a tentative outline. Finally, I have a few words about the process and giving feedback.
Why a second edition?
While the command line as a technology and as a way of w
Right now query in the nodejs api is just a string. we should support gql-parsed strings too, so that if they are exported elsewhere, it can be used directly.
import gql from 'graphql-tag';
export const GRAPHQL_QUERY=gql`
query {
something {
anotherthing
}
}
`;-
Updated
Dec 29, 2021 - PHP
-
Updated
Dec 22, 2021 - Python
-
Updated
Sep 2, 2021 - JavaScript
Re: @bitcrazed's comment rs/curlie#12 (comment):
Apparently Console can support colors, but we need a special syscall SetConsoleMode for Windows to do so.
I think Go's x/sys/windows package exposes the necessary GetConsoleMode and SetConsoleMode syscalls, so this should be doable.
-
Updated
Jan 5, 2022 - Perl
-
Updated
Jan 6, 2022 - Go
-
Updated
Jan 4, 2022 - Rust
-
Updated
May 6, 2021 - Python
-
Updated
Oct 16, 2021 - JavaScript
-
Updated
Jan 2, 2022 - PHP
-
Updated
Sep 13, 2021 - Nim
Improve this page
Add a description, image, and links to the curl topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the curl topic, visit your repo's landing page and select "manage topics."
Hi, I've found the following cheatsheet :
In the README you explain that there must be an edit button in the page and a github button to access the sheet but as you can see it doesn't appear here.
Thx ;)