Python driver for ArangoDB, a NoSQL Graph Database: https://www.reddit.com/r/Python/comments/4yixpv/python_driver_for_arangodb_a_nosql_graph_database/
reddit
Python driver for ArangoDB, a NoSQL Graph Database • /r/Python
0 points and 0 comments so far on reddit
Need package which will edit Excel .xlsx files without pywin32: https://www.reddit.com/r/Python/comments/4yj0lp/need_package_which_will_edit_excel_xlsx_files/
reddit
Need package which will edit Excel .xlsx files without... • /r/Python
We used to use Pywin32 and an internal library to create, edit and update excel files. Due to our IT being restrictive and incompetent, we can no...
ppjson. Command line utility to pretty print json files: https://www.reddit.com/r/Python/comments/4yishb/ppjson_command_line_utility_to_pretty_print_json/
reddit
ppjson. Command line utility to pretty print json files • /r/Python
https://github.com/geonik/ppjson
TensorFlow REST Frontend but not TensorFlow Serving: http://stackoverflow.com/questions/38935428/tensorflow-rest-frontend-but-not-tensorflow-serving
Stackoverflow
TensorFlow REST Frontend but not TensorFlow Serving
I want to deploy a simple TensorFlow model and run it in REST service like Flask.
Did not find so far good example on github or here.
I am not ready to use TF Serving as suggested in other posts, ...
Did not find so far good example on github or here.
I am not ready to use TF Serving as suggested in other posts, ...
PyQt4 force view to fetchMore from QAbstractItemModel: http://stackoverflow.com/questions/38506808/pyqt4-force-view-to-fetchmore-from-qabstractitemmodel
Stack Overflow
PyQt4 force view to fetchMore from QAbstractItemModel
I have a QTableView that dynamically loads data from a custom model that inherits QAbstractItemModel. The model implements both fetchMore and canFetchMore.
The problem is that I would like to be ...
The problem is that I would like to be ...
Searching for a way to access browser data from a Python script.: https://www.reddit.com/r/Python/comments/4yjl38/searching_for_a_way_to_access_browser_data_from_a/
reddit
Searching for a way to access browser data from a... • /r/Python
I decided to try making an AI to beat Chrome's T-Rex Runner game. I have first isolated the useful variables of the game, such as speed, distance...
Program for ARP scanning: http://stackoverflow.com/questions/38935304/program-for-arp-scanning
Stack Overflow
Program for ARP scanning
#!/usr/bin/python3
#Fazer arping da conexao
import sys
from datetime import datetime
from scapy.all import *
try:
interface = input ("\n[*] Set interface: ")
ips = input("[*] Set IP RANGE...
#Fazer arping da conexao
import sys
from datetime import datetime
from scapy.all import *
try:
interface = input ("\n[*] Set interface: ")
ips = input("[*] Set IP RANGE...
Interactive Mapping with Python, GeoJSON, and JavaScript: https://www.reddit.com/r/Python/comments/4ykaw0/interactive_mapping_with_python_geojson_and/
reddit
Interactive Mapping with Python, GeoJSON, and JavaScript • /r/Python
1 points and 0 comments so far on reddit
How do I integrate travis ci with codeclimate test coverage in Python?: http://stackoverflow.com/questions/38044020/how-do-i-integrate-travis-ci-with-codeclimate-test-coverage-in-python
Stackoverflow
How do I integrate travis ci with codeclimate test coverage in Python?
I'm trying to make my Travis CI send test coverage data to Code Climate service, but documentation on Code Climate and Travis CI do not describe in detail how to do this using Python. Still its sup...
Need help making an Automated program using Selenium and Python: https://www.reddit.com/r/Python/comments/4ykr7r/need_help_making_an_automated_program_using/
reddit
Need help making an Automated program using Selenium... • /r/Python
Hi reddit, i am trying to make an automated process with selenium. I plan to automate a process on a stock photo agency. i upload photos and then...
New Lever language builds on Python's convenience, aims for PyPy speeds: https://www.reddit.com/r/Python/comments/4yknuq/new_lever_language_builds_on_pythons_convenience/
reddit
New Lever language builds on Python's convenience,... • /r/Python
2 points and 0 comments so far on reddit
Close tab in QTabWidget on pressing Ctrl W [PyQt]: https://www.reddit.com/r/Python/comments/4ylc9a/close_tab_in_qtabwidget_on_pressing_ctrlw_pyqt/
reddit
Close tab in QTabWidget on pressing Ctrl+W [PyQt] • /r/Python
I've a QTextEdit in the tab of QTabWidget. When I press ctrl+w, the tab should close. How can I achieve it?
How can i get the string that was matching in a 'in for' statement?: https://www.reddit.com/r/Python/comments/4ylc59/how_can_i_get_the_string_that_was_matching_in_a/
reddit
How can i get the string that was matching in a 'in... • /r/Python
Hi, new to python. I am using a statement to find any matches in a lengthy string which is being matched to a small array of strings. I was...
I created a blogging platform that uses flat pages and ported the TryGhost/Casper theme!: https://www.reddit.com/r/Python/comments/4ylfxu/i_created_a_blogging_platform_that_uses_flat/
reddit
I created a blogging platform that uses flat pages and... • /r/Python
0 points and 0 comments so far on reddit
Pythonic way to handle config file installation when in a virtualenv?: http://stackoverflow.com/questions/39007132/pythonic-way-to-handle-config-file-installation-when-in-a-virtualenv
Stackoverflow
Pythonic way to handle config file installation when in a virtualenv?
Assuming I am installing a python application from setup.py, and doing so within a virtualenv. Also, assuming that I have a need to provide the application sensitive configurations such as API key...
Errorcheck when iterating over files in list?: https://www.reddit.com/r/Python/comments/4ylqdr/errorcheck_when_iterating_over_files_in_list/
reddit
Errorcheck when iterating over files in list? • /r/Python
I have a list of url's, with which I want to do something. But sometimes I have to deal with an invalid url, now when this happens, my program...