CEF Python v49.0 released for legacy systems (WinXP, Vista). Includes Chromium 49.0 which is the latest version that supports Windows XP.: https://www.reddit.com/r/Python/comments/9arj8u/cef_python_v490_released_for_legacy_systems_winxp/
reddit
r/Python - CEF Python v49.0 released for legacy systems (WinXP, Vista). Includes Chromium 49.0 which is the latest version that…
1 vote and 0 comments so far on Reddit
Python OCR: ignore signatures in documents: https://stackoverflow.com/questions/52020536/python-ocr-ignore-signatures-in-documents
Stack Overflow
Python OCR: ignore signatures in documents
I'm trying to do OCR of a scanned document which has handwritten signatures in it. See the image below.
My question is simple, is there a way to still extract the names of the people using OCR while
My question is simple, is there a way to still extract the names of the people using OCR while
Programme doesn't work the way it is supposed to.: https://www.reddit.com/r/Python/comments/9as6my/programme_doesnt_work_the_way_it_is_supposed_to/
reddit
r/Python - Programme doesn't work the way it is supposed to.
1 vote and 0 comments so far on Reddit
A tutorial I made for using python with an arduino: https://www.reddit.com/r/Python/comments/9ascj2/a_tutorial_i_made_for_using_python_with_an_arduino/
reddit
r/Python - A tutorial I made for using python with an arduino
1 vote and 0 comments so far on Reddit
Working on another new Python web framework: Draper: https://www.reddit.com/r/Python/comments/9ashqo/working_on_another_new_python_web_framework_draper/
reddit
r/Python - Working on another new Python web framework: Draper
25 votes and 26 comments so far on Reddit
Small Containerized Flask app - Is Nginx required?: https://www.reddit.com/r/Python/comments/9at3vs/small_containerized_flask_app_is_nginx_required/
reddit
r/Python - Small Containerized Flask app - Is Nginx required?
1 vote and 0 comments so far on Reddit
Visualization that tracks the movement of the top 20 programming languages over the last 6 years based on GitHub and Stack Overflow. (via RedMonk): https://www.reddit.com/r/Python/comments/9atnpz/visualization_that_tracks_the_movement_of_the_top/
reddit
r/Python - Visualization that tracks the movement of the top 20 programming languages over the last 6 years based on GitHub and…
2 votes and 0 comments so far on Reddit
Questions from someone how wants to start learning python: https://www.reddit.com/r/Python/comments/9atszf/questions_from_someone_how_wants_to_start/
reddit
r/Python - Questions from someone how wants to start learning python
0 votes and 3 comments so far on Reddit
Hands on Web Scraping with Python using ScraPy Spiders: https://www.reddit.com/r/Python/comments/9aui75/hands_on_web_scraping_with_python_using_scrapy/
reddit
Hands on Web Scraping with Python using ScraPy Spiders • r/Python
2 points and 0 comments so far on reddit
Ubunty pygame gets event.key values: https://stackoverflow.com/questions/51977051/ubunty-pygame-gets-event-key-values
Stack Overflow
Ubunty pygame gets event.key values
The following pygame code stopped working correctly after I upgraded from ubuntu 16.04 to ubuntu 18.04.
for event in pygame.event.get():
if event.type == pygame.KEYDOWN:
print "KEY:", ...
for event in pygame.event.get():
if event.type == pygame.KEYDOWN:
print "KEY:", ...
Need a paragraph tokenizer from nltk similar to nltk's sent_tokenize function: https://www.reddit.com/r/Python/comments/9auvma/need_a_paragraph_tokenizer_from_nltk_similar_to/
reddit
r/Python - Need a paragraph tokenizer from nltk similar to nltk's sent_tokenize function
1 vote and 0 comments so far on Reddit
Help with bytecodes, implementation and how to use it [question]: https://www.reddit.com/r/Python/comments/9aw79k/help_with_bytecodes_implementation_and_how_to_use/
reddit
Help with bytecodes, implementation and how to use it [question]
hey guys so I'm basically trying to use bytecode to sort of "hack" my way into changing the order or modifying how the code is executed. Heres my...