Quickly counting lots of stuff in little RAM: CountMinSketch in Python: https://rare-technologies.com/counting-efficiently-with-bounter-pt-2-countminsketch/
Rare-Technologies
Counting Efficiently with Bounter pt. 2: CountMinSketch | RaRe Technologies
In my previous post on the new open source Python Bounter library we discussed how we can use its HashTable to quickly count approximate item frequencies in very large item sequences.
Does python have a curses lib that looks THIS good?: https://www.reddit.com/r/Python/comments/7una38/does_python_have_a_curses_lib_that_looks_this_good/
reddit
Does python have a curses lib that looks THIS good? • r/Python
3 points and 1 comments so far on reddit
I am drowning is the college Python class, anyone up for doing some paid tutoring tomorrow via chat/email?: https://www.reddit.com/r/Python/comments/7uo6rg/i_am_drowning_is_the_college_python_class_anyone/
reddit
I am drowning is the college Python class, anyone up... • r/Python
The title says it all, we are not doing anything super complicated and I am not trying to cheat by any means, as I genuinely want to learn this.
Beginners Guide to Web Scraping - Scrape Reddit Top Posts using Python and BeautifulSoup: https://www.reddit.com/r/Python/comments/7uop84/beginners_guide_to_web_scraping_scrape_reddit_top/
reddit
Beginners Guide to Web Scraping - Scrape Reddit Top... • r/Python
1 points and 1 comments so far on reddit
Build a simple Python Web Scraper in 30 lines of codes: https://www.reddit.com/r/Python/comments/7uprdp/build_a_simple_python_web_scraper_in_30_lines_of/
reddit
Build a simple Python Web Scraper in 30 lines of codes • r/Python
2 points and 0 comments so far on reddit
Flask-SQLAlchemy Sum of a Column of a Relationship: https://stackoverflow.com/questions/48537626/flask-sqlalchemy-sum-of-a-column-of-a-relationship
Stack Overflow
Flask-SQLAlchemy Sum of a Column of a Relationship
I do have 2 classes like these =>
class User(db.Model):
__tablename__ = "user"
user_id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(32), unique=True, nullable=
class User(db.Model):
__tablename__ = "user"
user_id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(32), unique=True, nullable=
Is there any way of creating an online dashboard using python for front end and ms sql server for backend? I was thinking of using django as the web framework but integrating it with ms sql is creating a lot of issues.: https://www.reddit.com/r/Python/comments/7uqcdn/is_there_any_way_of_creating_an_online_dashboard/
reddit
Is there any way of creating an online dashboard using... • r/Python
With front end I mean using the bokeh library for creating visualisations.
How can I send a DM to users through Python and collect their responses without having to go through the server?: https://www.reddit.com/r/Python/comments/7uqobv/how_can_i_send_a_dm_to_users_through_python_and/
reddit
How can I send a DM to users through Python and collect... • r/Python
I just want the slack bot to ask particular users a single question everything my python script tells it to, and collect the response and update...
fork(), Queue, waitpid() => random problems?: https://www.reddit.com/r/Python/comments/7uqs4b/fork_queue_waitpid_random_problems/
reddit
fork(), Queue, waitpid() => random problems? • r/Python
I have a problem I wish to split on my 12 cores. I cannot use super highlevel stuff like Pool because the calculations rely on a unpickleable...
Creating an online queue management system: https://www.reddit.com/r/Python/comments/7uqvt3/creating_an_online_queue_management_system/
reddit
Creating an online queue management system • r/Python
Hi everyone, I am planning on doing a project to create an online queue management system to allow students who want their 3D printer design...
Jira - Date Created and Updated: https://www.reddit.com/r/Python/comments/7urbd7/jira_date_created_and_updated/
reddit
Jira - Date Created and Updated • r/Python
Hi, I am scraping data from Jira and putting it in google sheet. My code is almost done but I have hit one final roadblock. I want to get the...
I’m looking for a programming language that can make a list of all words that one large txt file has. Is it possible to use python for this purpose?: https://www.reddit.com/r/Python/comments/7ur83i/im_looking_for_a_programming_language_that_can/
reddit
I’m looking for a programming language that can make a... • r/Python
Thanks a lot everyone, I made a dictionary in excel containing 5000 words. There are a few straight duplicates, words from another...
What is your go-to playlist when coding?: https://www.reddit.com/r/Python/comments/7ur58h/what_is_your_goto_playlist_when_coding/
reddit
What is your go-to playlist when coding? • r/Python
I am looking for new music to listen while writing code. What is your favourite (spotify) playlist to listen when coding? With links if possible.
using GPU for video capture in openCV: https://www.reddit.com/r/Python/comments/7ur1wk/using_gpu_for_video_capture_in_opencv/
reddit
using GPU for video capture in openCV • r/Python
How to change this code such that it uses openCV's Transparent API with cv2.UMat()? https://www.learnopencv.com/opencv-transparent-api/ ...