developer-tools
Here are 207 public repositories matching this topic...
Correct the terminology used in code and documentation so that it is consistent with HTTPie and web standards. Examples:
- body parameter -> data field
- operator -> separator
I think the work you've done on this is amazing. Seems like a great project, but your README is a bit bloated and hard to decipher. Might I suggest you condense it down into a set of readable chunks and maybe link off to the wiki for the more detailed bits.
Its only my opinion, but I find that answering the following questions, in order, helps to simplify docs.
- who? - who wrote the p
Extracted from iterative/dvc#3608 (comment)
To match docs, where options have been ordered manually from more to less important (at least that's the idea).
Example difference:
λ dvc commit -h
usage: dvc commit [-h] [-q | -v] [-f] [-d] [-R] [targets [targets ...]]
...
optional arguments:
-h, --help show this help message and
On the default settings, each segment is padded on either end by a space " ". This adds visual appeal and clarity. On the other hand, it adds two characters per segment. It'd be nice to customize this option for users who want powerline to span fewer characters.
Would a left_pad and right_pad option be useful?
(PS. This project is awesome. Thanks!)
Some command outputs don't look great on a dark background:
Originally reported in donnemartin/saws#18 by @sesas
This is pretty self explanatory, but code runtimes show with many decimal places on the UI. It would be nice to show only to the closest nanosecond or microsecond (perhaps this could be user selectable).
- Share good stories. Enhancement - share link by email
- Send to mobile. Enhacenement - use pushbullet api to push link to user's phone
- Send to Text-to-Speech reader on android - I use " @voice " on my android to have HN articles read to me while I drive. Can we push article links using pushbullet api to your phone and to your TTS app?
Would you be interested in using mypy to validate PEP 484 type annotations as a part of migra's CI? If so, what syntax would you find acceptable? There's:
- My first choice, python 3.5+ native syntax:
from typing import Union
def foo(a: str, b: int) -> Union[int, str]:
return b if b else a- the other option, python 2.7+ inl
After a lot of wrangling - I needed to uuid, token and username to make a successful request and receive the 204 response. Please update the documentation to include the uuid.
Many thanks.
I'm trying to display the modifications in the last commit. To de so I'm trying to use gl history.
The verbose option provides a nice display of changes.
Unfortunately the -l (limit) option is apparently limited.
It seam that it always start counting history from the first commit. I couldn't find how to display the history starting from a specific commit, or HEAD - x commits.
An op
-
Updated
Jul 7, 2020 - Python
-
Updated
Jun 26, 2019 - Python
-
Updated
Jul 8, 2020 - Python
-
Updated
Jun 13, 2020 - Python
Example:
def method(self):
"""Short description
@returns: some return val
"""
pass
Gets converted to:
def method(self):
"""Short description
Returns:
s: some return val
"""
pass
-
Updated
May 19, 2020 - Python
-
Updated
Jul 10, 2020 - Python
-
Updated
May 6, 2019 - Python
-
Updated
Nov 26, 2019 - Python
- aiohttp-devtools version:0.13.1
- aiohttp version:3.6.2
- python version:3.7.6
- Platform:MacOS 10.15.2
Issue Summary
Cleanup contexts aren't run to completion when exiting adev runserver with ctrl-c. They are run correctly when the server is reloaded after a code change.
Steps to reproduce
Run the following server with adev runserver then exit it with ctrl
-
Updated
Jun 17, 2020 - Python
...by not overriding n or more consecutive whitespace characters. The number n (by default n=2) should be a command line option.
For discussion, see #12 and #29
Thanks for a useful library!
astunparse doesn't special case docstrings:
>>> print(astunparse.unparse(ast.parse('''def f(): """multi\n line\n docstring\n """ ''')))
def f():
'multi\n line\n docstring\n '
whereas Python 3.9 handles it more idiomatically:
>>> print(ast.unparse(ast.parse('''def f(): """multi\n line\n docstring\n """ ''')))
de
Kubernaut curl API:
Claim a cluster:
GET <URL>/claims/<client-supplied-globally-scoped-claim-name>?expires=<deadline> -> kubeconfig file
Renew a claim:
GET <URL>/claims/<client-supplied-globally-scoped-claim-name>?expires=<new-later-deadline> -> kubeconfig file
Release a cluster
GET <URL>/claims/<client-supplied-globally-scoped-claim-name>?expires=<time-in-past> -> kubeconfig f
-
Updated
Jul 19, 2019 - Python
-
Updated
Feb 12, 2020 - Python
It would be nice to add version info and future up-comings in the about page.
The new releases can be fetched through the GitHub API v3.
End-Point : https://api.github.com/repos/Bhupesh-V/tutorialdb/releases/latest
Improve this page
Add a description, image, and links to the developer-tools topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the developer-tools topic, visit your repo's landing page and select "manage topics."

In
=syntax,")\)are escaped in
json.dumps:$ http -v httpbin.org/post \ dquote='\"' \ multi-line='line 1\nline 2'