-
Updated
Apr 23, 2020 - Python
python-library
Here are 1,400 public repositories matching this topic...
trailing slash will make sarray loading from s3 fail.
import turicreate as tc
tc.config.set_runtime_config("TURI_FILEIO_INSECURE_SSL_CERTIFICATE_CHECKS", 1)
gui = tc.SArray([1])
works with
gui = tc.load_sarray("s3://guihao/tiny_array")
but not with
gui = tc.load_sarray("s3://guihao/tiny_array/")
Surfaced by #3106
-
Updated
Mar 7, 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
The function _request(self, form, url=None, **kwargs) from the Browser class retrieves data and files from kwargs argument :
data = kwargs.pop("data", dict())
files = kwargs.pop("files", dict())
However, this way of submitting data or files is not tested nor documented.
-
Updated
Apr 18, 2020 - Python
I'm trying to automate the interaction with WindowsTerminal. It seems to be a UWP application, which I have no idea how to start such application directly using Application().start. I've tried to locate it using Desktop, but got quite confused..
Any help on this?
I see 4.6.8 has been released but the current Changelog.rst does not list the changes for 4.6.8. Can this be updated? Thanks!
-
Updated
Mar 24, 2020 - Python
In README.rst, in the section Box Recast Values, in the example code it has
print(type(my_box.new_key.id))
# 55
As the type is being printed, it looks like that should be
print(type(my_box.new_key.id))
# int
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.
The support of the service clause as introduced in #943 should be added to the documentation.
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
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
This package is displayed as only compatible with Python2 according https://pypi.org/project/usaddress/ but for what I have seen, there are many developers submitting issues using Python3 so I suppose it is compatible.
If that is actually the case, would be great to update the following section from setup.py adding python3 to the **Programming Languag
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
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().
-
Updated
Apr 21, 2020 - Python
-
Updated
Mar 1, 2020 - Python
-
Updated
Mar 20, 2020 - Python
-
Updated
Mar 28, 2020 - Python
-
Updated
Apr 13, 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:
It would be nice if name field of PeriodicTask was used as a shadow name of async task. The field is unique; it is complementary to task field and useful for cases when the same function is scheduled several times with different arguments. It would be nice to search individual runs in Flower by name rather than task.
- Celery Version: 4.3.0
- Celery-Beat Version: 1.5.0
D
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
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."
When using
django-celery-resultswith theCELERY_RESULT_BACKEND = 'django-cache'setting, it is possible to use theCELERY_CACHE_BACKENDto specify a Django cache other than default.Fix 5301 amended the docs for
django-celery-resultsbut the [Configuration ](http://docs.celeryproject.org/en/v4.2.0/userguide/configuration.html#std:setting-cac