Distributed Task Queue (development branch)
-
Updated
Dec 14, 2019 - Python
Python is a dynamically typed programming language designed by Guido van Rossum. Much like the programming language Ruby, Python was designed to be easily read by programmers. Because of its large following and many libraries, Python can be implemented and used to do anything from webpages to scientific research.
Distributed Task Queue (development branch)
🖍️ LabelImg is a graphical image annotation tool and label object bounding boxes in images
《Python Cookbook》 3rd Edition Translation
Description
How can I expose the API documentation to external users?
Automated API documentation is definitely one of the best features provided. However, since it exposes all the endpoints and model structures automatically, it seems more facilitating internal users, and should be protected with some authentication.
What if I want to expose some of these endpoints to external cust
:orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。
Hi
I got module not found error when deploying, I specify the function to use layers
{ "version": "2.0", "app_name": "myapp", "stages": { "dev": { "api_gateway_stage": "api", "manage_iam_role": false, "iam_role_arn": "arn", "lambda_functions": { "myfunc": { "layers": ["layer1", "layer2"] } } } }, }
I di
Describe the bug
Most visualization api parameters documentation are not correctly formatted.
To Reproduce
Example of incorrect formatting of documentation: https://uber.github.io/ludwig/api/visualization/#learning_curves

**Ex
Embrace the APIs of the future. Hug aims to make developing APIs as simple as possible, but no simpler.
You use str as variable name and by doing so hiding the underlying function. Here is an example.
split_lines
def split_lines(str):
return str.split('\n')
This is bad coding - so please rename str to something else.
Currently, the python os module is missing many methods. Try adding a method to this module by editing the file vm/src/stdlib/os.rs.
This is an issue for new contributors, so please do not implement everything at once, so other people have a chance to go for it (or, actually, please implement all! >:)! ).
Project "Hinty" aims at adding Type hints to Scapy. It will help discover bugs, improve the API, and make Scapy up-to-date with the high standards of Python libraries.
We use mypy to ensure automatic testing of the work that has already been completed. PRs that fall under project Hinty will process one (or a few) files and register them into the checks. The file
A python library built to empower developers to build applications and systems with self-contained Computer Vision capabilities
Awesome autocompletion and static analysis library for python.
:zap: A distributed crawler for weibo, building with celery and requests.
troposphere - Python library to create AWS CloudFormation descriptions
A Python module for learning all major algorithms
>>> dt = pendulum.parse("2017-09-01 00:00:00+00:00")
>>> dt
DateTime(2017, 9, 1, 0, 0, 0, tzinfo=Timezone('+00:00'))
>>> dt.format('%Y-%m-%dT%H:%M:%S.%fZ', formatter='classic')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: format() got an unexpected keyword argument 'formatter'
Per sdispater/pendulum#255 it is men
Plain python implementations of basic machine learning algorithms
Pampy: The Pattern Matching for Python you always dreamed of.
Hello,
first and foremost, thank you for building this wrapper it is of great use for me and many others.
I have question regarding the evaluation:
Most outlier detection evaluation settings work by setting the ranking number n equal the number of outliers (aka contamination) and so did I in my experiments.
My thought concerning the ROC and AUC score was:
We need to make
zerver.webhooks.trello.view.exceptions.TrelloExceptioninto a subclass ofUnexpectedWebhookEventTypeto avoid getting error emails whenever Trello adds a new event type. Seezerver/webhooks/trello/view/exceptions.pyfor where to make the change.