I also made a space invader game with Python Crash Course. Used music and sprites from Zelda.: https://www.reddit.com/r/Python/comments/c8f9e5/i_also_made_a_space_invader_game_with_python/
reddit
r/Python - I also made a space invader game with Python Crash Course. Used music and sprites from Zelda.
724 votes and 58 comments so far on Reddit
Should I go public with my financial app or it's libraries?: https://www.reddit.com/r/Python/comments/c8bao7/should_i_go_public_with_my_financial_app_or_its/
reddit
r/Python - Should I go public with my financial app or it's libraries?
36 votes and 32 comments so far on Reddit
Make TensorFlow use training data generated on-the-fly by custom CUDA routine: https://stackoverflow.com/questions/56778375/make-tensorflow-use-training-data-generated-on-the-fly-by-custom-cuda-routine
Stack Overflow
Make TensorFlow use training data generated on-the-fly by custom CUDA routine
Assume we generate our own training data (by sampling from some diffusion process and computing some quantities of interest on it for example) and that we have our own CUDA routine called generate_...
aiogevent event loop "fails" to track greenlets: https://stackoverflow.com/questions/56738678/aiogevent-event-loop-fails-to-track-greenlets
Stack Overflow
aiogevent event loop "fails" to track greenlets
I recently stumbled onto a problem of mixing up gevent and asyncio-based code, because some synchronous libraries work just fine when I monkey-patch them with gevent.monkey.patch_all(). I found the
indygreg/PyOxidizer: A modern Python application packaging and distribution tool: https://www.reddit.com/r/Python/comments/c65tg0/indygregpyoxidizer_a_modern_python_application/
reddit
r/Python - indygreg/PyOxidizer: A modern Python application packaging and distribution tool
0 votes and 0 comments so far on Reddit
Is it possible to access a session (from aiohttp_session) within a middleware?: https://stackoverflow.com/questions/56484840/is-it-possible-to-access-a-session-from-aiohttp-session-within-a-middleware
Stack Overflow
Is it possible to access a session (from aiohttp_session) within a middleware?
I'm setting up an aiohttp server using aiohttp_session to store data into an EncryptedCookieStorage. I use it to store a 7-days valid token, along with the expiration date and a refresh token.
I wa...
I wa...
Unable to let my script slide a button to the right: https://stackoverflow.com/questions/56824421/unable-to-let-my-script-slide-a-button-to-the-right
Stack Overflow
Unable to let my script slide a button to the right
I've written a script in python in combination with selenium to log in to a website. The thing is my script sometimes successfully gets logged in but most of the times it comes across a slider whic...
The Python Celery Cookbook: Small Tool, Big Possibilities: https://www.reddit.com/r/Python/comments/c8mma3/the_python_celery_cookbook_small_tool_big/
reddit
r/Python - The Python Celery Cookbook: Small Tool, Big Possibilities
0 votes and 0 comments so far on Reddit
How to create a simple keylogger using python with logger: https://www.reddit.com/r/Python/comments/c8n2tu/how_to_create_a_simple_keylogger_using_python/
reddit
r/Python - How to create a simple keylogger using python with logger
0 votes and 0 comments so far on Reddit
Matlab vs. Julia vs. Python: https://tobydriscoll.net/blog/matlab-vs.-julia-vs.-python/
Toby Driscoll
Matlab vs. Julia vs. Python | Toby Driscoll
I’ve used MATLAB for over 25 years. (And before that, I even used MATRIXx, a late, unlamented attempt at a spinoff, or maybe a ripoff.) It’s not the first language I learned to program in, but it’s the one that I came of age with mathematically.
Using Python to find a prime number that looks like the python logo (or any other image) from far away [OC]: https://www.reddit.com/r/Python/comments/c8s5ym/using_python_to_find_a_prime_number_that_looks/
reddit
r/Python - Using Python to find a prime number that looks like the python logo (or any other image) from far away [OC]
1,167 votes and 81 comments so far on Reddit
Ad hoc polymorphism in Python with type classes like Haskell: https://www.reddit.com/r/Python/comments/c8oo02/ad_hoc_polymorphism_in_python_with_type_classes/
reddit
r/Python - Ad hoc polymorphism in Python with type classes like Haskell
28 votes and 16 comments so far on Reddit
Show HN: Python Ported to WebAssembly: https://twitter.com/wasmerio/status/1146477876151115776
Twitter
Wasmer
🔥 This is BIG. Using Wasmer 0.5.2 you can run the #Python interpreter ported to #WebAssembly (based on Pyodide) $ wasmer self-update $ wapm install python https://t.co/Oj9RryDrs5 https://t.co/VMk72hpsPn
Why do I get 'NoneType' object is not callable when trying to delete item with m2m relations?: https://stackoverflow.com/questions/56750440/why-do-i-get-nonetype-object-is-not-callable-when-trying-to-delete-item-with-m
Stack Overflow
Why do I get 'NoneType' object is not callable when trying to delete item with m2m relations?
I'm writing an app to represent some systems : some equipments will contain hardware articles, for exemple a server will contain hard drives.
For CRUD operations i'm using DRF ModelViewSet (nothing
For CRUD operations i'm using DRF ModelViewSet (nothing
HTMLCalendar in Django app: missing arguments: https://stackoverflow.com/questions/56836394/htmlcalendar-in-django-app-missing-arguments
Stack Overflow
HTMLCalendar in Django app: missing arguments
I am trying to replicate this Link in my Django app
Views.py
from calendar import HTMLCalendar
from datetime import date
from itertools import groupby
from django.utils.html import conditional_es...
Views.py
from calendar import HTMLCalendar
from datetime import date
from itertools import groupby
from django.utils.html import conditional_es...
How to multithread AsyncConsumer with Django Channels: https://stackoverflow.com/questions/52297958/how-to-multithread-asyncconsumer-with-django-channels
Stack Overflow
How to multithread AsyncConsumer with Django Channels
I've been working with Django Channels for a week and somethin bugs me with the runworker parallelism.
For example, I have this MQTT client which publishes in the channels when it receives a messa...
For example, I have this MQTT client which publishes in the channels when it receives a messa...
Python Development Trends in 2019 [UPDATED INFOGRAPHIC]: https://www.reddit.com/r/Python/comments/c8m6wy/python_development_trends_in_2019_updated/
reddit
r/Python - Python Development Trends in 2019 [UPDATED INFOGRAPHIC]
0 votes and 0 comments so far on Reddit
I wrote a python tutorial post on medium for numpy only essentials.: https://www.reddit.com/r/Python/comments/c78593/i_wrote_a_python_tutorial_post_on_medium_for/
reddit
r/Python - I wrote a python tutorial post on medium for numpy only essentials.
21 votes and 8 comments so far on Reddit
I created my first neural network that can recognize handwritten digits (Github link in comments): https://www.reddit.com/r/Python/comments/c91v2r/i_created_my_first_neural_network_that_can/
reddit
r/Python - I created my first neural network that can recognize handwritten digits (Github link in comments)
1,295 votes and 82 comments so far on Reddit
Python Weekly - Issue 404: https://mailchi.mp/pythonweekly/python-weekly-issue-404