Skip to content
#

python3

python logo

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.

Here are 43,494 public repositories matching this topic...

timabbott
timabbott commented Jan 7, 2020

From https://chat.zulip.org/#narrow/stream/137-feedback/topic/editing.20highlights/near/807040, "The green color over the gray color of the letters to show the new inserted text in the message editing is great to be read, however it is very difficult to read the text with the pink color that shows the erased one."'.

I'm pretty sure we never spent time on those colors, so I'm sure they could b

nikhilchh
nikhilchh commented Nov 22, 2018

Is it possible to modify it to work on text +hocr (overlayed on it)

So basically replacing image by image+hocr combo.

And then it can be used to annotate text document without having someone to type things after making box. As watever text comes inside box becomes the value for the key.

So at the end we have
Key, Value, Box-cordinates.
example: DATE, 28-May-2018, (x1,y1,x2,y2)
I will

fastapi
joe-eklund
joe-eklund commented Dec 19, 2019

First check

  • I used the GitHub search to find a similar issue and didn't find it.
  • I searched the FastAPI documentation, with the integrated search.
  • I already searched in Google "How to X in FastAPI" and didn't find any information.

Description

What I mean by api developer docs are basically something like sphinx docs for function definitions. This is usually gen

dgallitelli
dgallitelli commented Aug 9, 2019

Creating a trigger with

@app.on_s3_event(bucket=S3_BUCKET, events=['s3:ObjectCreated:*'], prefix='uploads/*', suffix='.txt')

generates a trigger in a Lambda which does not work. in particular, the problem should be related to the Notification, since from time to time chalice deploy would generate a `PutBucketNotificationConfiguration operation: Unable to validate the following destinati

hug
somenxavier
somenxavier commented Dec 15, 2019

I have this method:

@hug.get('/documents/list')
def llista():
    """Returns whole list of documents"""
    docs = [lib.Doc(doc).HeaderstoJSON for doc in glob.iglob('./*.md')]
    return {'documents': docs}

and http://localhost:8000 returns me:

"documentation": {
        "handlers": {
            "/documents/list": {
                "GET": {
                    "usa
palaviv
palaviv commented Jan 10, 2020

We are currently running part of the CPython test suite. This is a good place for people new to the project to contribute. Contribution here can come in two ways:

  • Fix failing test - Look for tests marked as skipped or xfail and fix RustPython so that the test will pass.
  • Add more tests suites - Copy test suite from CPython and mark failing tests with xfail or skip.

In order to run the te

scapy
gpotter2
gpotter2 commented Jul 21, 2019

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.

Implementation

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

davidhalter
davidhalter commented Mar 12, 2018

For a lot of things (especially usages) jedi's completely lazy approach is not good enough. It is probably better to use a database index cache. The index will basically be a graph that saves all the type inference findings.

This is just an issue for discussion and collection of possible ideas.

satrum
satrum commented Dec 16, 2019

How can i implement callback parameter in fit moder Autoencoder ?
There is not parameter.

from keras.callbacks.callbacks import EarlyStopping
cb_earlystop = EarlyStopping(monitor='val_loss', min_delta=0, patience=0, verbose=0,
mode='auto', baseline=None, restore_best_weights=False)
pyod_model.fit(scaler, callbacks=[cb_earlystop])

TypeError: fi

Created by Guido van Rossum

Released February 20, 1991

Organization
python
Website
www.python.org
Wikipedia
Wikipedia

Related Topics

language ruby flask
You can’t perform that action at this time.