Using Redis with Python? Make key/schema management easier with OK-Redis! Object-Key Mapper for Redis: https://www.reddit.com/r/Python/comments/4pxwv2/using_redis_with_python_make_keyschema_management/
reddit
Using Redis with Python? Make key/schema management... • /r/Python
2 points and 0 comments so far on reddit
Wrapping Elasticsearch with Blaze/Dask: https://www.reddit.com/r/Python/comments/4pya5s/wrapping_elasticsearch_with_blazedask/
reddit
Wrapping Elasticsearch with Blaze/Dask • /r/Python
Hi guys, Hoping any of you have ever confronted this problem before.. I love Elasticsearch and its Python API, but am trying to support...
How do you keep track of the progress of a Python project ?: https://www.reddit.com/r/Python/comments/4pyix6/how_do_you_keep_track_of_the_progress_of_a_python/
reddit
How do you keep track of the progress of a Python... • /r/Python
Currently I am using Notepad++, to record all the issues or the ideas I need to implement. This results in long txt files that are hard to keep up...
python libclang bindings on Windows fail to initialize a translation unit from sublime text: http://stackoverflow.com/questions/37774599/python-libclang-bindings-on-windows-fail-to-initialize-a-translation-unit-from-s
Stack Overflow
python libclang bindings on Windows fail to initialize a translation unit from sublime text
Short description: using libclang to autocomplete code does not work with python that comes bundled with Sublime Text 3.
Details: A small verifiable example is in the repo on Github
In essence, t...
Details: A small verifiable example is in the repo on Github
In essence, t...
Signing into A Website via Python?: https://www.reddit.com/r/Python/comments/4pzjgj/signing_into_a_website_via_python/
reddit
Signing into A Website via Python? • /r/Python
I'm trying to log into the following website via Python: https://hac.spihost.com/HomeAccess3.0/Account/LogOn?ReturnUrl=%2fHomeAccess3.0% I am able...
How to create a Gantt chart in Python?: https://www.reddit.com/r/Python/comments/4q06b4/how_to_create_a_gantt_chart_in_python/
reddit
How to create a Gantt chart in Python? • /r/Python
I've been trying to create a gantt chart in python for awhile with either matplolib or python-gantt, but it hasn't worked. I looked into...
Project critique request - pipmem: https://www.reddit.com/r/Python/comments/4q0g70/project_critique_request_pipmem/
reddit
Project critique request - pipmem • /r/Python
Awhile back I wrote [pipmem](https://github.com/evitalis/pipmem) and have not had time to update it. I am looking to do more work on it but before...
My peer-to-peer networking module is now on pip: https://www.reddit.com/r/Python/comments/4q09si/my_peertopeer_networking_module_is_now_on_pip/
reddit
My peer-to-peer networking module is now on pip • /r/Python
I've been working on a p2p module for the last little while. I ran into some problems initially, due to a poor architecture, but I think I've come...
Python 3 NES Emulator from scratch: Ep8 (Hella Instructions): https://www.reddit.com/r/Python/comments/4q1c4l/python_3_nes_emulator_from_scratch_ep8_hella/
reddit
Python 3 NES Emulator from scratch: Ep8 (Hella... • /r/Python
2 points and 0 comments so far on reddit
Developing an Android Game using Python: https://www.reddit.com/r/Python/comments/4q1cxr/developing_an_android_game_using_python/
reddit
Developing an Android Game using Python
Hi, I would like to make a game mostly for mobile devices using Python. I have fairly extensive knowledge of Python so I'd rather use Python...
SVM (probabilistic model) on Python3 : Almost simmilar probability for all the cases: https://www.reddit.com/r/Python/comments/4q1p9p/svm_probabilistic_model_on_python3_almost/
reddit
SVM (probabilistic model) on Python3+ : Almost... • /r/Python
I am using following code to run SVM (probabilistic model) on Python3+. import pandas as pd from sklearn.cross_validation import...
Writing a bot for a game with Python 3.0 and PyAutoGUI, but "AttributeError: module 'pyautogui' has no attribute 'locateOnScreen'" keeps popping up. Any help?: https://www.reddit.com/r/Python/comments/4q1yxx/writing_a_bot_for_a_game_with_python_30_and/
reddit
Writing a bot for a game with Python 3.0 and... • /r/Python
2 points and 3 comments so far on reddit
Show HN: Python 3 tkinter graphical curve and surface fitter: https://github.com/zunzun/tkInterFit
GitHub
zunzun/tkInterFit
Python 3 tkinter graphical curve fitting and surface fitting application, saves results to PDF. - zunzun/tkInterFit
Can compile function output be used to detect changes in the source code: http://stackoverflow.com/questions/38007884/can-compile-function-output-be-used-to-detect-changes-in-the-source-code
Stackoverflow
Can compile function output be used to detect changes in the source code
Python's builtin function compile()
code = """def fact(x):
if x <= 1:
return 1
print (1)
return x*fact(x-1)
fact(10)"""
c = compile(code, "", "exec")
code = "...
code = """def fact(x):
if x <= 1:
return 1
print (1)
return x*fact(x-1)
fact(10)"""
c = compile(code, "", "exec")
code = "...