-
Updated
Jun 26, 2020 - Python
python-library
Here are 1,376 public repositories matching this topic...
-
Updated
Jun 18, 2020 - Python
in create_docker_image.sh
10 # The build image version that will be used for testing
11 TC_BUILD_IMAGE_CENTOS6=$(bash $WORKSPACE/scripts/get_docker_image.sh --centos=6)
12 TC_BUILD_IMAGE_1204=$(bash $WORKSPACE/scripts/get_docker_image.sh --ubuntu=12.04)
13 TC_BUILD_IMAGE_1404=$(bash $WORKSPACE/scripts/get_docker_image.sh --ubuntu=14.04)
14 TC_BUILD_IMAGE_1804=$(bash $WORKSPAC
-
Updated
Jun 26, 2020 - Python
The client.containers.run
restart_policy
states that the Name key can take on value: One of on-failure, or always
. Since the default engine version is 1.35, and the dictionary just gets posted to the engine API, add unless-stopped
to the list of valid values (to align with engine API doc here)
The code that generates https://tl.telethon.dev is a mess and should be cleaned up. In particular, things like "here" being a link are a sign of poor accessibility (the link should be self-descriptive), and "bot index" inside a namespace (e.g. the "here" in https://tl.telethon.dev/methods/account/index.html) lead to a 404.
Generating the bot index should not rely on querying the filesystem and
When using browser.get(url, stream=True)
it does not in fact stream, but wait for the entire content to download and add it to the soup. One has to do browser.session.get(...)
.
This should be documented somewhere or there should be a get_without_adding_to_soup
. I spent 3 hours debugging this yesterday, maybe this can save someone some time in the future.
-
Updated
Jun 24, 2020 - Python
-
Updated
Jun 25, 2020 - Python
In commit: celery/kombu@5780f1e
support for queues already defined in Amazon SQS was added.
However, simply by following the instructions at https://docs.celeryproject.org/en/latest/getting-started/brokers/sqs.html and Getting Started page, I must say that I'm still not able to process any message (it's not an issue with credentials or
-
Updated
Jun 12, 2020 - Python
-
Updated
Jun 15, 2020 - Python
The tarball for the latest release (https://files.pythonhosted.org/packages/source/a/absl-py/absl-py-0.9.0.tar.gz) does not include the CHANGELOG.md file. This probably needs a change to MANIFEST.in unless I am mistaken.
Please provide tesserocr Windows build guide, the the wheel files provided by simonflueckiger/tesserocr-windows_build/releases is one year outdated, I need build guide to create up-to-date wheels , Thanks !
-
Updated
Mar 6, 2018 - Python
The doc-comment for Store.open indicates the following (my emphasis):
If create is True a store will be created if it does not already exist. If create is False and a store does not already exist an exception is raised
However, an exception is not raised by the sleepycat store, the only store in the standard library for which the create flag is meaningful. For sleepycat, in the case th
In the documentation https://github.com/decalage2/oletools/wiki/olevba, it says "MS Office files encrypted with a password are also supported, because VBA macro code is never encrypted, only the content of the document". This makes me think, for an encrypted office file, olevba can extract the macro with or without a password provided. However, this is not the case. olevba seems only extracts the
-
Updated
Jan 22, 2020 - Python
When entering 2FA password it is shown in plain text. This is because it uses input
:
I suggest to replacing it with with getpass.getpass().
usaddress supports the label "CountryName", as can be seen by parsing
123 Cedar Ave Salt Lake City Utah 84105 USA
yet the label "CountryName" is missing from the list of component names in usaddress.readthedocs.io and in README.md.
thanks for this; its great
One note, in your examples you do >>> from dominate.tags import *
but your tag names ( and I understand you got them from html ) are so short and generic that they will almost invariably collide with temporary names - e.g. img, I use everywhere in local contexts.
I would suggest that you follow the example of numpy or matplotlib that in their documents define a c
PEP8 guidelines
-
Updated
May 17, 2020 - Python
In las file format, vlrs info is crucial to correctly describe point's spatial location.
However, if you try to use pyntcloud.las_header.vlrs, you wouldn't get anything, the value is alway none.
Through your source code, I can see you try to use
data["las_header"] = las.header
But it can not pass vlrs or evlrs info into new object, because in laspy, vlrs info is dynamically obtained afterw
Summary:
No module named 'celery.utils.time'
- Celery Version: 3.3.1
- Celery-Beat Version: 2.0.0
Exact steps to reproduce the issue:
- create virtualenv , pip install following packages
django==3.0.5
six==1.13.0
celery==3.1.25
django-celery>=3.3.1
django-celery-beat==2.0.0
- start django with manage command
Detailed information
File "/home/maeth/
I noticed that one of my epubs had all its chapters (items) out of order,
when I was looping through them.
I am guessing this is because this particular book used playOrder
that disagreed with the filename order
(cref #148, #146, @ride90).
The documentation for this package should give some example of how to get the items in the "right order".
I am guessing it is something like sortin
https://docs.nose2.io/en/latest/configuration.html#configuration-files is missing a bit of crucial information: what is the name of the .ini file? It looks like it can be both "unittest.cfg" or "nose2.cfg" if I read the code. Is this correct?
- Include a link to the documentation section or the example
- Describe the confusion
Python's decimal.Decimal
defaults to scientific notation for representing very small float values. Since the docs suggest using Decimal for retaining float precision, I think it makes se
-
Updated
Nov 2, 2019 - Python
Improve this page
Add a description, image, and links to the python-library topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the python-library topic, visit your repo's landing page and select "manage topics."
Checklist
for simi