Hi people, I've been doing lots of things with pyplot (matplotlib) lately, but sometimes I am lacking something like an extra...
Posted by u/mike239x in r/Python
1 messages · Page 3 of 1
Hi people, I've been doing lots of things with pyplot (matplotlib) lately, but sometimes I am lacking something like an extra...
So I manage doing some html scraping using bs4, but now I wanted to download stuff from https://thecomicshq.com/image/the-...
I dont mean flask / django ... is there a customizable rest API management framework that can checks user privilege, billing,...
Apparently, I have had a fundamental misunderstanding of something I read about regex. I read somewhere that, unlike re,...
I'm new to PyCharm and to Python in general. I'm trying to get started building a GUI app and have been told QTPY is better...
I'm trying to set up build/deploy infrastructure for a pipenv project using Docker. Right now, I'm just copying everything...
Does anyone know of a method by which to parallelise functions does to articles produced by the Newspaper module? The...
Hello everyone, I'm struggling how to figure out how to iterate over an xml and get the "name" and "id" variables to get with...
Figured I should get around to trying out chatbots, seems everyone else is doing one... obviously there are a few different...
def convert_to_binary(n): if n > 1: convert_to_binary(n // 2) print(n%2, end="") convert_to_binary(12) so i have...
What books to do you recommend for someone who is just starting to learn python (asking for a frien ;))
So far, mine has been a very secure computer storage database that the attacker would have near complete access to.
Hey all, As title says, I'm looking for a python way of telling me all the active IPs on my network. This is for a home WiFi...
I am using prettytable to format my json data to tables. PrettyTable is not good enough for me, since I need to: * Print...
**Hello everyone, I am trying to make a team and I need to develop in python to advance the project of Digimon RPG Online, at...
Hi there! I'm a CS student, and usually I like to keep an eye on the job listings of F1 teams so that I can apply to any...
Hey y'all -- if you didn't already know, ESPN has a (mysteriously undocumented) API for their Fantasy Football stats. I wrote...
For many people, if it's done more than 5 times, it's automated. What are your favourite scripts to automate your life?...
My first hands-on UI development.I wanted to have a basic demo UI for EDA and model metrics presentation which includes...
I know not all of them scale well. I'm learning to do some stuff with scikit-learn, but will it work on enormous data sets?...
Here's the thing, I'm new to python, but I have this task: 1 json file -> distribute the data data for 2 different CRMs...
I work in government where SAS is huge - we have a yearly budget for licenses. Alot of the users, who are not programmers but...
Hey guys, I'm learning python and I wanted to try to make a music visualizer using it. I know java and so I know the main...
Hi everyone, I’m looking for a way to convert RGB picture to LAB. Does anyone have a function already made, or find a way to...
I'm attempting to display world population information as an overlay on a map, using Python, MatPlotLib, and Basemap. I've...
I need to sort a collection of text files based upon content. Python NLP categorization seems to be a wonderful tool to...
Is there any present way to output the implicit code generated by the @dataclass decorator or related functions? That is,...
This week's top r/Python posts have arrived!
The apocalypse
| 985 upvotes | 147 comments | u/Deadpixelator | r/Python |
Complete Guide on working with Python and MySQL
| 419 upvotes | 41 comments | u/rahuldev29 | r/Python |
How to create a Windows Service in Python
| 409 upvotes | 20 comments | u/mastro35 | r/Python |
Why is the Travis CI Python logo so derpy?
| 364 upvotes | 37 comments | u/velikov | r/Python |
Pyxel - open source retro game development environment in Python
| 364 upvotes | 32 comments | u/lee337reilly | r/Python |
My team are thinking of building this as a relaxing side-project. upvote if you like it / would find it useful! :)...
For example: solve for C given Y and Z. Well Z=Y/X and C=X-Z. With this bit of information a human can easily rearrange and...
I'm new to python and I was given some homework in my class and I was wondering if I could get some help. I need to print the...
Hey guys, I have been creating a series in which I build a minesweeper solver from scratch. I am looking for some...
After installing the latest Python version 3.7.0 on Windows 7 every time i try to open the file ''Pythonw'' it isn't...
There’s scipy, numpy, xarray, pandas, scikitlearn, tensorflow, statsmodels, etc. but I am looking for packages like...
First, I cloned a legacy python2 library on one virtual ubuntu. I have to port this python2 libary to python3, so I used 2to3...
my script : import urllib2,cookielib import re import requests USERNAME = 'user' PASSWORD = 'password' AUTH_KEY =...
Hi all, I am very new to coding and I am using codeacademy to learn since it is free. My only issue (so far) is that I have...
This SQLAlchemy tutorial provides a slew of code examples that cover the basics for working with SQLAlchemy....
Hi all, I posted a while ago about starting programming and got very motivating answers! I've been going pretty hard the last...
Is still in development mode, i like to hear your thoughts [https://github.com/silme-project/silme](https://github.com/silme-...
Hi, I just started with the Python Crash Course book and to run the code they want me to first type the directory of python...
Hello all! I just downloaded Data Science from Scratch and it advises using 2.X version of Python since "the data science...
qbRedir (qbittorrent redirection) is project that allows the remote access to qbittorent APIs even behind a router, the idea...
What's the best subreddit for beginners like myself trying to learn python and getting some help/advice? I don't want to post...
Here is a quick code snippet that you can just paste in a Python terminal (or whatever you use to execute Python code) and it...
Hello everyone! I started learning python essentially for scripting and I didn't really get to explore its different...
As the title says, I'm highly interested in learning the python language. To be exact for network programming purposes. I...
I have a PhD in physics using computer-based models for most parts of my research career. I'm currently trying to transition...
Something that covers as many levels as possible. While I do have experience in python so going over the basics may be...
Hello, I created a simple batch file to activate an Environment and then run spyder. @echo off call activate env spyder.exe...
I have a git repo part of an internal set of tools that I would like setup.py to install and build off...
So I'm looking for a little assistance with solving an embedded Python problem I'm having... First, describing our...
Hi, I've been learning python for the last few months through the book "[How to think like a computer...
Im not very far in and already need a bit of help. I am trying to print a message three times with a different persons name...
I installed 3.7, it is what pycharm is using when I check. When I check the version of python in the terminal it says version...
Long story short I am using csv to read the lines of a csv files, which gives me a nice long string: ['testing1' ,...
Title says it all, is there a way to incorporate Panda on IDLE, so it functions similar to anaconda? New to python and...
I took a course on Udacity for $300. The majority of the lesson was math that they threw out the window once we got to actual...
I've tried everything I can find online concerning com ports and Python and still haven't been able to get the following code...
Hello everyone. I am a beginner in python And I have a question. I am working on programming an artificial intelligence. I...
Note: this is for new users/accounts ONLY. If you redeem this code please post a comment (or alternatively PM me) so others...
Documentation here What it is: animatplot is a library for more easily...
biotb = [] def intro(): out = [] s = ['my baby', 'I', 'we', 'isco', 'our'] a = ['dancin', 'lovin', 'bad', 'no'] o = ['and',...
df=pandas.read_excel(Filename, dtype=Str) The above code reads Filename as string but if there is a single entry with 5%...
Hi guys, I would love to have your honest and straight opinion and feedback on an open-source microservice framework I am...
Hello guys, I have a question regarding a matrix with random numbers I can't solve myself. So I have this matrix in matlab:...
I need to build a web browser based Python IDE that access data and runs code as per users commands but should not delete...
..but to absolute no avail. I'm a total rookie with this stuff, by the way. Here's the file:...
https://pastebin.com/tp8dBiSV Whenever any odd numbers larger than one appear in the...
I noticed that the O'reilly books on Python (Learning Python, Programming Python) are targeted to the MS Windows platform....
Hi everyone! I've been asked to do a talk at a small meetup, I usually do talks about graphql, but I'd like to do something...
Constraints: Pure Python 2.6 or 2.7 + standard library. Solution either has to exist already or be pretty simple to implement...
I got an agency willing to connect professional Python devs to clients that will pay money for the work you do. We will take...
Hello, I have a background in finance, and am new to Python. I'm trying to learn how to do data science using Python. I've...
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your...
I was reading the CPython souce code. In the function b32encode of the base64 module there is a comment reading s = s +...
Hi, I have a text that is in JSON format. When I input this text to json.dumps() and print it, it adds "\" to all double...
Best online resources or videos to learn python?
error: command 'C:\\Program Files (x86)\\Microsoft Visual...
I’ve got a redemption code for six months of PyCharm pro that expires tomorrow night (8/8/18) at midnight. I am not going to...
I've been self teaching python for about 2 and a half months and someone suggested I attempt to build the game of life as my...
disclosure: total noob. Im trying to create a pandas dataframe using data imported from a CSV using numpy's genfromtxt()...
I need to extract this string (49) Sat Jun/30 21:00 Uruguay 2-1 (1-0) Portugal @ Fisht Stadium, Sochi (UTC+3) for 4 values:...
Hi, I've been playing with multithreading / multiprocessing in Python. I love multiprocessing.Pool in terms of the...
I am a beginner in Python! I have done a basic online course about three libraries i.e. Numpy, Pandas and Matplotlib. I want...
I recently installed python 3 but the script folder isn’t there so I can’t use pip I downloaded python from the python.org site
Is it possible by running a python script in a While loop or something? How can I achieve that?Thanks!
Hello, I have recently switched to Windows from Linux. I have installed Python3 with and everything is working fairly well...
I am writing a script to read DXF files and return length and area of the shapes so that I can automatically calculate the...
I want to dynamically create a javascript variable that store images path like this: var imagePath = '{{...
on a windows 10 device. a microsoft surface with an i5 processor if that makes any difference.
You have seen the news. Python is becoming the world’s most popular programming language : - [The...
Hi! Fairly new python programmer here, I was wondering how to make an app with python for mobile and or desktop. What...
I created new build system in sublime 3 for python3 like that: https://i.redd.it/um8dome8gve11.png I' is okei when my path...
Hi! So I've been given a list of courses from which I should select the ones that I wish. Also a clash report for possible...
Does anybody regularly visualize their data pipelines? I'm thinking of building something similar to how Tableau prep...
I need a tkinter GUI example which is actually part of a program. Everything I can find presents the code as if it were the...
I am looking for a way to create a set of line plots that have some interactive feature (within tkinter or some other python...
Hi, I want to have udemy open with pythonista and learn to code during commute. If u have the app can u pls check for me if...
Hello everyone, this is so embarrassing but I'm learning python and one of the exercises is making a piece of code, as basic...
Hey guys, I am not sure if this is the correct sub to ask this, and if it's not then I'm sure someone will tell me, but I...
Hey ! I wrote some scripts to automatize repetitive tasks for my colleagues using python. Today I execute it for them and...
I have the .whl file and get-pip.py, but I don't know what to do from here. I looked it up and read that I need to use "pip...
Essentially I’m looking for homework-like problems to work on to gradually get experience. Preferably to start at beginner...
Hi there, I am hoping on a long shot here and asking if someone could help out with changing a bit of code here. Essentially...
Hi guys What is the best ansible-vault like python module out there? I have some scripts that require me to enter a password...
Hi. I'm sorry if this is not the right place to post this question but I don't know where else to post it. I'm writing a...
I've been working on a project involving embedding Python into a Windows application. I've got all of that working fine on...
The MQT Engine Discord server needs more developers knowledgeable in Python! We're a large, friendly group of technological...
Lets imagine for example the bellow products is in HTML: |Title|Description|NetPrice|Price|Fits|Also|Tag 1|Tag 2|...
Lets say i have the folloing script: https://pastebin.com/H3uaVw6e and i wanted to say in...
Here is the code, please keep in mind I am horrible at coding and have not taken any classes or courses, no tutorials, or...
I am looking for a stable and extensive GUI framework for Python, with Tkinter being in the language It seemed...
•step 0: $ apt install pypy •step 1: $ pypy your_script_name.py •step 2: * * * * Enjoy! * * * * Benchmark =>...
Hi all, I'm a little new to python and I'm wondering if there's an efficient way to collect the data I'm looking for. I'm...
Was trying to pip install sloth, it throws the following. So what is happening here exactly? Traceback (most recent call...
Hey all! So I am trying to graph the follow set fo data: x_axis: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100] y-axis:...
Click here, to find case studies for [Twitter sentiment analysis using Python](http://www.botreetechnologies.com/case-...
Looking to build a highly scalable, portable, simple yet powerful web application, then Python is right choice for your...
I am trying to get a large csv that is in non-tar gz format and get it into a mysql database. Anyone know how to get the gz...
Hi guys, i am writing a program that the main function gets input from the user and pass it to the subfunction as a...
Hi, i'm trying to build a python program which could do extract all debits and credits from a table (...
The processing language is a Java based language used to create visual art. I've used this language in combination with...
Should I just uninstall python and reinstall the 64 bit version? I also have python2 and will that be the default python...
**Before you get all hot and bothered about security, please know I'm doing this as a learning exercise, and in no way will...
Hi i am using python2.7 for the project and i need to write the testing code. in the root folder there is main folder and...
I'm trying to write a script that converts notes into numbers for a stylophone. There is a high range of noted, represented...
Basically, I want my csv file to be rows. I want each string label to be the beginning of each row, then the full numpy array...
Just posting this here so no one else thinks they're going crazy if they run into it. Check it out yourself: ```python3 from...
On a couple of projects, I've used django-rest-framework, I've always liked Flask, and for some services I've used Falcon....
Recently I have developed a game using Python. It can be seen at http://drinkingladder.com/....
Hi all, I'm trying to create an application that can stream G.711 encoded audio via HTTP from an IP camera but I cannot seem...
(absolute numpy rookie needs to understand a bit of numpy code) def create_analytical_sine_wave(self): self.samples_per_cycle...
So I just started learning Python just recently and messing around a little bit trying to figure things out. But I sort of...
Hi, I have been programming in Python or quite a while now, I am thinking of going into AI and machine learning. How...
Hello, I am new to this subreddit and I have decided that I want to learn Python. I am very good with computers and have been...
I hope I am getting the names right on these things. I am trying to get back into programming and I feel very rusty on data...
I've been programming with GTK for a while now and there was a handy program called glade I used all the time that was a...
Sorry if this is a bit noobish, I learned python in order to work on this project, I'm still a bit of a novice. For the...
Ok. So I have some coding experience. I learned through Learn Ruby the Hard Way and the first four weeks of Harvard's cs50...
Py costs $40 a month, while SoloLearn is free. Py has a more user friendly interface and I will probably finish faster with...
Hi! so the thing is when i use a simple for loop over 50k iterations it progresses faster, meaning it covers more iteration...
Hi everyone! I have literally written two projects - one being the helloworld.py lol. I was very...
Nice to meet you, this is my Twitter: https://twitter.com/SamsonLe1809
I am making a Python GUI using PyQt5 and its editor. Trying to put some colors to the thing I played around with styleSheet....
Sorry im new :P
hi, I need to learn Python this weekend and looking for an expert to help me speed this process up this weekend in nyc....
Hi, I'm considering enrolling to data science career path on datacamp.com. Please share your...
Pretty self explanatory, should I read the book and watch the videos or just one or the other? Not looking to get super deep...
Hi All, Trying to build a tool that will allow me to parse through an entire website’s html coding and identify keywords from...
Hello all, I have some code that changes values in a specific column of a spreadsheet. I now want to update that column with...
This was my first project in MeteorJS and I'm mildly pleased with how it turned out. I just thought about how we have some...
A friend and I have put together a puzzle. Try to figure out what the code does and what the answer is without running it....
I am looking for someone who can teach me how to make Nike generated accounts in python
Hi Folks, Just a quick note to let you know that SQLAthanor v.0.3.0 has just been released. The library provides...
Here is the sample code snippet - conn = httplib.HTTPConnection("proxy_IP",proxy_port) conn.set_tunnel(host,80)...
Hey gang. I am have been looking for a way to process a large collection of images that I have. I run a website written in...
The Dayton Dynamic Languages club is going to a local screening of Monty Python and the Holy Grail!...
how do i actually save a python script in 3.7? there is no "file" option.
https://i.redd.it/pw0vtzjy0bf11.png Had to delete cookies !! anyone faced this problem?
Use this invite link to join the Python Developers (INT) group. Copy this...
I’ve used the zeep SOAP library, being the one which looks more frequently updated by its creator. It worked well but I found...
I have no clue why this is happening. I am pretty new to Python and programming in general. I am trying to install **py-pgp...
And one of those lines of code is the import! Start by importing PySimpleGUI import PySimpleGUI as sg Then, within your loop,...
You can add a custom GUI onto your command line program easily with PySimpleGUI. This example creates this form:...
def job(): c = CronTab(user='user') job = cron.new(command='/usr/bin/python3 /home/user/main.pp', comment="v1") currentJob =...
Hey y’all. So I’m working on my AI. I want to say specific phrases at specific times of the day. Like if I say Hi to it in...
I'm a bit stumped by a problem I've encountered, but since its a bit complicated I figured I would ask here instead of...
it tells me to add parentheses to the print function aka print ("some shit here") and than tells me it's an invalid syntax....
Hello - this is my first time on this subreddit. I'm new to coding, so I took a class in Python so I can learn it for a...
Hello! So I'm working on a simple little game right now that revolves around generating creature objects with randomly...
In a multi-threaded application, sometimes an unhandled exception can occur in one of the other threads (i.e., not in...
I have a dictionary in python that I want to output in JSON format. This dictionary has multiple entries, one of which is...
Hello everyone! I want to ask you for feedback for my project - XDump - a utility to make a consistent partial dump and load...
Python is a great language and all but when it comes to real life, is it even worth it?
Hey I am looking for a developer (i am not one) if someone has spare time to work on something, send me a message and lets...
I haven't been able to find a good spell corrector package. I came across this which...
I'm currently taking a year off of school living out of states with my family due to personal issues and have free time. I'm...
I'm wondering if there's a tool for this already, but if there's not then I might make one. I have textfile.txt: ``` This...
I was testing and testing with code, until I came up with an easy way for making a Singleton: class C: def init(self):...
Didn't go bad but I want to cry. He saied that he acept and support me. But also many things that hurt like 'It's not that I...
I came up with something unusual: Write self = self() in 'init' function inside a class definition, but don't put...
Hi, title says it all, I want to learn how to program, but I am not sure what language (although I have been told Python is a...
I upgraded python to 3.7 and it broke venv in one of my projects, it started throwing 'error while loading shared libraries:...
I'm having a hell of a hard time trying to figure out why my print(Node(3).value) is returning 0 and my isn't working....
Hi, I think I have the Python concepts down but I have zero production experience and am just starting to learn Flask. My...
Does anyone know any good source or repo regarding this? Many thanks!
I have a programming requirement to process things which I will refer to as "conversations". Lets say I have four...
So, I was always familiar with tech, but I never trought that it could be my profession. Last year, I decided I wanted to...
Hi, I am a python newbie trying to analyze my own dataset that I have collected via an observational study on communications....
This week's top r/Python posts have arrived!
I wrote a script to display an image in terminal using ANSI...
| 967 upvotes | 57 comments | u/Jonno_FTW | r/Python |
Introducing animatplot: Making interactive animated plots...
Documentation here What it is: animatplot is a library for more easily...
| 295 upvotes | 39 comments | u/tmakaro | r/Python |
From beginner to part time python programmer
Hi all, I posted a while ago about starting programming and got very motivating answers! I've been going pretty hard the last...
| 230 upvotes | 74 comments | u/LightTheFerkUp | r/Python |
I wrote a toy JVM implementation in Python
| 226 upvotes | 67 comments | u/gkbrk | r/Python |
Python code snippets to try out a neural network to predict...
| 200 upvotes | 24 comments | u/alpacahq | r/Python |
Hi, we are trying to solve an integral equation with sympy like: 0 = int( f(x) dx from 0 to 5) -1 + f(5) whose answer should...
What are the exact steps for preprocessing a CSV dataset file for training sequence to sequence model ? We have 2 CSV files...
I asked this question here:.....
Can you guys help point me in the right direction in what sort of things I’ll need to know to use python to generate up to...
need some ideas . it can be anything but has to solve a problem of some sort. just ideas please , I am not asking u to make...
Im trying to to loop the "clear" only 1 time and the other items in different column/row... but i don't know what to do to...
Hello! I'm trying to write a script to read gmail emails from python, in particular I need the message itself and not the...
My new job starts in a few weeks time and I am currently brushing up my Python. (I spent most of my time writing Java...
I wrote a simple file downloader with Python. Code :...
I have basic/intermediate skills but I have need a goal to work rather than "blind"programming. Are there some fun games or...
Hi all, I want to use DTLS for communication between multiple Raspberry Pi's. If found an API for it...
just click "Ask the Makers" on [https://www.producthunt.com/posts/data-science-path-from-...
Is there a way to run this code: `import webbrowser webbrowser.get("firefox").open_new_tab("moz-...
Hi, I spent some time looking into the icecast streaming audio protocol to discover how it works (most importantly I wanted...
does anyone use the online pdf by kevin sheppard intro to python for econometrics this is such a long shot but i booked...
Hi there, Thanks in advance for any help. I am trying to create a scraping script to take the link, title and price of a...
Hi all. I have a legit Moodys account and am trying to automate data collection. The problem is of course that when I use...
Dunno of this belongs here but going to learn python at this thing called code mcallen. Will be fun dont expect to be the...
Greetings All, I am planning for python project to automate and orchestrate network penetration testing. I am planning to...
Looking for a bit of a powerup on my part aside from being able to safely migrate my stuff! What are your favorites?
I got this program that I am working on and in it, I got a section that has a try statement and two error except statements....
I'm building a wrapper for an API, and I'm using the Requests library as well as cachetools. Both of these have a number of...
Hey everyone, I am an aspiring computer science major and I really wanted to get some experience so I’m taking an online...
well here is my project/spider , works fine.... https://i.redd.it/kz5bp9rrb1g11.png but i wanted to scrape...
Everything is in the title ! I am also wondering if such a tool already exists ?
Everything is in the title ! I am also wondering if such a tool already exists ? :)
So I'm a frontend developer. And you know, we use Html for defining the website + CSS for styling + Javascript for dynamic...
Hello guys! I am attending a Programming 1 course at my UNI and we all got some Kattis problems to solve (using Python3 of...
Hi guys, I've created a simulation of the boardgame Imperial 2030 (which is a little bit like Risk) and want to visualize...
Before I begin sorry if this is the wrong SR to ask questions. I am making something on python and I need to clear an entire...
Hello! Is it possible to use pypy in a virtual environment for conda? conda search pypy outputs nothing. As of my...
Specifically I am trying to create an Instagram bot and I am unsure about what library would be best. I have heard that...
I'm looking for programming the tfest() function from Matlab, but i don't know how Matlab processes the data. Simply, I have...
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your...
Hello, I've been coding in python for a while now,and got pythonista on my phone. I ran into the issue,that I cannot load a...
Hello there, I was wondering how you store data on a remote computer or server for a python program to access, an example of...
Looking for a way to scrape all my facebook photos on my profile - any suggestions on any repos out there already made?
Hi, scrubkiddie here. Just trying to stir up some noise about a very nice conceptual tool with poorly thought out internals....
My friend has made this library, it is tested in CudaText plugin, which shows structure of Pascal code. It has some API to...
I have a new Django project with just a small number of Celery tasks written so far. I would like to use Python 3.7 if...
I am a begginer in Python, and I've been trying to figure out a project to do to work on my abilities. So seeing that fantasy...
Hi guys, I am a visual artist who has never programmed besides very basic HTML. I wanted to introduce myself here and maybe...
I'm trying to make a simple socks5 server, but I have a hard time understanding where to start, and there are a few snippets...
Maybe I am late to the party, but I have recently been seeing posts on going from 0 to hero in 90 days in getting a job in...
So I have a texture that I need to display to the user, get the user to select 4 points and then prospective correct that...
Where would be a good place to link a project I'm working on to get feedback on it?
I got a script at work that is 90% python. The part that starts the whole script is in PS. Since I have no experience with PS...
So my workplace has ~50'ish draft mails in Outlook we use on a regular / daily basis.. Right now we have a monthly task...
Or any other similar repo? Many thanks!
In this article we solve the knapsack problem with different looping techniques and compare their performance. We'll...
I'm trying to do bioinformatics on windows. simple stuff like primer trimming, collapsing haplotypes, blasting. some scripts...
I decided to create this thread instead of continuing the "How do I install pyodbc?" thread so that the title better reflects...
This week's top r/Python posts have arrived!
pixelPython.py
| 514 upvotes | 26 comments | u/Vraja108 | r/Python |
How to make your first serious Python project
| 306 upvotes | 22 comments | u/Cosme12 | r/Python |
MypyC, native code Python compiler being developed by Dropbox
| 245 upvotes | 93 comments | u/ysangkok | r/Python |
Understand and build your first artificial neural network...
| 226 upvotes | 36 comments | u/Al-Khazrajy | r/Python |
Text to speech conversion using python using gtts
| 224 upvotes | 25 comments | u/okaydexter | r/Python |
So I feel like I have reached a point with python that I can say with confidence that I am no longer a complete newb....
Hey all, I was just curious if the best way to approach scanning line by line is by using 'openpyxl' or if there is a more...
Hi ! I'm trying to put my project into production, I made it using cookiecutter which is fine ! But I cannot start my...
I'm currently doing a small thing with PyMuPDF and it appeared to me that in fitz\utils.py, line 383...
Hi guys The only reference I could find is this https://technofrustration.blogspot.com/2007/10/using-python-to-automate-...
I wanted to know what modules/server do you usually use for a production level microservice.
I am trying to import an HTML table from an html file into Python for further processing. I originally tried the PANDAS...
https://github.com/alexpdp7/pychromecastweb It's just a little Django-based...
Does anyone have any experience setting up a Livy connection or knox gateway on an Ubuntu spark instance? Looking to connect...
wuy is a simple module to turn your python3 script into a GUI, which will work on linux/windows/mac (I'd like to add...
So this package: https://github.com/ffalcinelli/pydivert, really cool one. But it...
I am thinking to build a project on sentiment analysis on basis of imdb reviews in real time. Do you have any idea or link...
I keep a track of my reading habit in a Google Sheet. I want to build an interactive dashboard for that. My requirement is...
CakePHP made me learn the MVC-model, use ORM and forced me to use it's best practices. Much faster than me writing all the...
What do I need to do to fix this code: https://imgur.com/Bcfty8L
Hi everyone, So I have an older Macbook and Pycharm is draining its battery very quickly. I was just wondering if anyone...
I have a project that has to be running in the computer of another guy, bu turns out this guy has a tendency to steal code...
Hey everyone, I've come across a case in which I need to invert a simple function. The function does not do any more than...
Hi, There doesn't seem to be [any consensus](https://stackoverflow.com/questions/37078880/status-of-parallelization-of-...
Hello, I'm thinking about getting either Google Home or Alexa. I would still consider myself to be a beginner in Python. I...
I'm building an execution that runs two modules. These modules are called through two pytest call, but my second conftest is...
I have a successfully working numpy random generator for D&D that I am trying to run. I currently have the following...
i am starting with python and i had some doubts. Which "interface" or program should i download to run python in my laptop...
Our research lab recently released the [GEKKO Optimization...
Hi all, I thought I'd post my REST client here as I hope that both some will both find it useful and that it will showcase...
Hey guys, I'm but a lowly financial analyst and I want to start automating a weekly report a run. It takes about 2 hours...
I just started using Python's pack/unpack functionality to efficiently read and decode binary files. Here's where it got odd:...
Hi guys, I haven’t been posting in this subreddit for a while, but now I want to publish this because of an experiment that...
I just setup a new jupyterlab environment and everything works well, except rendering latex in Markdown cells doesn't use the...
Hi, I've been using win10toast library in a script that I...
I'm programming games and I want a pixel based render method i don't want to load the entire jpeg etc. really just as low...
Hello everyone, everday, when I drive to work or home I used Google Maps in order to check which route is the fastes home....
Hello everyone, I've created a Python module that extracts browsers history from local computers. If you can give me a...
Hi, I hope this question makes sense and I am asking a fairly intelligent question. But you never know. I am coding in VS...
I am trying to make a script that moves the mouse and clicks it when I press the desired key on the keyboard. I am not sure...
Hi, I would really appreciate it if any of you could shed light on how to generate random points that lie inside an irregular...
CEF Python is a GUI framework that lets you embed a web browser control based on Chromium (CEF) in a desktop application....
CEF Python is a GUI framework that lets you embed a web browser control based on Chromium (CEF) in a desktop application....
FUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU #VENTING
Hello redditors, some time ago I needed some way of communicating between 2 python processes using a simple/light way of...
Do you know of any easier or better networking modules where computers can connect and send data or connect to a server other...
Hello, I want to calculate the rolling return of a list of data (I have the monthly S&P 500 price and I want to calculate...
I'm looking for resources about how teachers have used Python to automate their workflow or make their jobs easier, not so...
I thought all of these expressions made the same operations but I just realize that they get different outputs, does someone...
Hi Python community! I've been learning programming and web design through stuff like CodeAcademy and freeCodeCamp. I wrote...
I need to clean up scripts at work to check to see if there are unimported modules in python files. I have hundreds of files...
Hey everyone I’ve been working on a program that relies on the same structure but for different files. Therefore i decided to...
I would like to share a Pylint plugin for PyCharm that I just released:...
Hi, I'm about to start a project to scrape event dates and class schedules from my university's academic calendar and my...
The 4 that I know of are the following: SciPy via Matplotlib Astrodendro via Matplotlib ete3 BioPython via Matplotlib It's...
So i was trying to install pylint but I'm a failure so i turn to stackoverflow for help and I copy paste the command...
Let's say I am looking at Flask's download numbers. Total downloads are 52M and downloads...
I'm mulling over developing an application for a friend and maybe sell it to others on the same work line. I'm worried about...
Has anyone successfully implemented a semi-autonomous (and ideally profitable) cryptocurrency trading bot? Yeah? How'd you do...
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your...
I might have imagined it but I swear there was a tool to manage multiple anaconda installations across multiple computers...
Good Day I am a newbie to Python and I want to connect to my local PostgreSQL. I am running Python 3.7 and so far I can't...
I have just started learning how to code using scratch and i want to learn java/python or both. What are pythons ups and downs?
So we have mypyc from Dropcast -- "mypyc will compile...
i know a for loop is basically iterating over members of a sequence until it reachs the last one but what does loop have to...
I'm making a Rock, Paper, Scissors, Lizard, Spock game that requires a username and how many rounds the player would like to...
Hey so im like new fo coding and stuff. I believe if i want to be a good coder i should be able to read code easily i was...
I am new with pygame so im experimenting with this. Heres my code: import pygame pygame.init() win =...
Before I begin here, yes I'm still rocking py2.x, the switch to 3 has yet to happen. Anyway, I'm working on something here...
I'm using a code snippet below to try and copy a file with a wildcard in both the filename and the directory but, I've had...
I am looking for a web developing partner for a huge project, unfortunately, I don't have anything to pay but I am ready to...
I've got the following code: import re def createCompareLine(inputString): find =...
I want to try get into webscrapers, but at the moment I can't think of any practical uses other than letting a log of bitcoin...
I am writing a function that directs motor X to position Y. I'd like it if the function calls could have the following...
Hi folks, hope all of you are doing great. I am working on a dataset, and having an issue of reading csv. I am writing codes...
​ https://i.redd.it/frrn0cu5koh11.png
Background: I work for a small regional news organization, and was given the task to create an AI news reporting system...
So I'm looking to automate some big work ahead of me. I have a list of hundreds of images I need to reprocess with a new...
Hello I am trying to write a web scraper to get a spreadsheet of every game listed chronologically from this upcoming NHL...
I have my PhD in marketing and teach marketing research in both SPSS and R. I have an opportunity to get an online...
I just picked up python, and I'm loving it. I recently did the Python for Network Engineers course, I'm a sysadmin/network...
I'm using bit which is a library for python to interact with the bitcoin network and I'm just trying to print a public key...
I have some VBA code that I re-wrote in python. In python it’s an order of magnitude slower. I can’t post the exact code, but...
I am looking for a library that implement the concave hull or a function like Matlab's [boundary...
I'm currently reading 'Fluent Python' to get advanced in python but in Chapter 11''Interfaces: from protocols to ABCs'' I...
I would like to make a game where you can use keywords to guess an object using python 3.5.0+. How can I make it so that I...
Hi Everyone! I'll be starting a combined linear algebra and ODE course next week along with a first course in Python (I've...
I want to make a data science package that has submodules like the following: Utilities Io Clustering Classification...
I get a slew of errors when I try to run Anaconda. My home directory was moved, and Anaconda broke with the move. When I...
Hi, Does anyone know of any workshop on creating real life binding to C library? There are many examples of creating a...
Hi all. I'm fairly new to python and have started learning about itertools. I'm trying to apply them to a part of my code...
I'm using this to create a basic polls app:...
Im interested to learn programming and im learning python by reading ebooks . Is that the best for a beginner like me because...
I am trying to build a real-time voice chat command-line app on Linux, ​ is there a tutorial to make one using...
Hey guys! I'm looking to expand my knowledge on Python, I just finished "Automate the boring stuff with Python" and looking...
Greetings, Pythonistas. I work on a library for LED animation called...
I want to make a simple plot with 5000 values, but it only shows an empy window. I am using python 3.6.5 on the latest...
Hello everyone! I'm happy to share a nice [Python-Tshirt](https://www.redbubble.com/de/people/krugl/works/33445916-python-...
My application see a large data file come in, and a very complex computation must be done on it. It is easily parallelized,...
Are there any good resources that can introduce me or teach me what an API is, how to config and set up a web app, server...
To be more specific , I want to pass a list into my function , where with this list I will square the numbers and add them...
Hey all, I am currently using an Excel spreadsheet to track components we use at work in bed frames we make. I am currently...
I couldn't plot the figure with the desired colored cluster. Every dot belongs to a specific cluster and hence there should...
I have just begun exploring the field of python and neuroscience. I came across the MNE tool for visualizing and analyzing...
I have a django app that supports a number of other applications and is solely used as a knowledge base repository. Right now...
Hi I am a nuclear engineering student. the only coding languages I know how to use are, c++ " not that good " , and MATLAB"...
As far as I know this is the right place to post this, but if it isn't then I can remove it. I recently realized that there...
I am refactoring my codebase (I do research-oriented industry code) and had a couple questions on my filenames. This is my...
Writing code alone is great...but you don't learn nearly is much without having someone to look at your code and tell you...
Basically what I need this app to do is compile data from web page source code, and be able to bring up results accordingly....
Hi, I have some machine learning models that I would like to deploy with a client-facing user interface. I'm familiar with...
i have a mac and i was wondering how to install pyqt 5 + qt designer. i want to code in python (import from pyqt5) and also...
Hi all, Kind of beating my head off the wall with this. I have a pivot table built with a counting aggfunc, and cannot for...
I read about virtualenvs, and I decided to try it with my current project. I created a virtualenv on my machine, installed...
After creating a git repository and committing all the files needed for my app, when I try to deploy it to Heroku, I get the...
Hello everyone! I started to learn python today and it's my first programming language which I want to master.My goal is to...
Function Requirement: * Every week at a certain date and time, I automatically receive an email in my regular inbox that...
Hi all, I'm looking to modify an existing python project from GitHub, but I'm a beginner with python and looking for some...
I'm resizing images in Django so that larger images get sized down on upload. I have seen some conflicting ways to do this...
I installed anaconda3 and I'm totally new to this. So where should I get the qt designer? ​ I use Mac, pycharm...
Hi Small question, i have python code with output . ( The output more than 100 line ) , i need this output inside html file ....
I prefer getting my news via mailing lists and I've discovered there is comp.lang.python.announce, which is supposed to be...
I have code that looks like this: frames = [] data_stream = stream.read(CHUNK) frames.append(data_stream) wav =...
Hey guys, ​ I'm learning, developing, applying Python solutions for my workplace as problems arise and also in use...
I'm looking for an example of a well engineered API wrapper. It seems like Zenpy is...
If a 16 core Xeon processor has a Geekbench score of 5000 for single core, and a dual core i5 CPU also has a score of 5000...
Looking for Wordpress alternative websites. My SO wants to make a website. Unless she has a good alternative, she'll use...
About a week ago, after about 3ish months of learning Python, I was bored of doing simple/basic tasks(even though I'm far...
How to implement sigmoid function in python without any library such as numpy and without any in-built modules such as math...
​ https://i.redd.it/ig401s1yt7i11.png
Well yestered i crawled 820k elements...and i wondering if there is a way to print the current url and the crawled elements...
Hi there, Now I fully understand and support the reason for unit testing, the problem is, I don't get it, no matter how much...
Hello everyone. I need some help. My company is creating open source software for the python community. We were even featured...
I am sending some mail via smtplib and just found out that if you enroll in the 2-step phone prompt verification (where...
I know this question has been asked thousands of times on different forums. But I would like to get an answer relevant to...
Can I setup python to monitor my speaker output levels? I want to watch for when there is a spike in volume and have python...
Hi I'm looking for a place to contact with blockchain developers I'm reading books about this and want to become a developer...
I use a Mac version 10.10, and have qt designer + pyqt5 installed. I also made this little sample app that works fine in my...
I'm trying to write this code that's supposed to save to my disk every image on a given page. The problem is that from what i...
Hey I'm trying to cheat the system and ask you beautiful monitor watchers for help. So i have this program and it only...
Hi! I'm looking for a way to use a remote Python interpreter (in my case it's a docker container on another machine) with an...
Im new to python an Im still learning. If you can improve it, go right ahead, Im more than happy to learn. this is the code...
I've run a code and show an figure at the end, and it works normal in PyCharm IDE. However, if I run the code by Python...
I have audio files that vary heavily in volume, and I would like to make a program that modifies the volume and outputs a new...
Here is an article by Greg Baugues from twilio on how to set everything up: [https://www.twilio.com/blog/2017/02/an-easy-way-...
​ I want to implement Tensorflow in a Python trading algorithm. How should I move forward? I've installed...
Hello World, ​ Can I use Python to classify which subject lines have "calls to action" and which do not? Can I...
what is this net module ? i install this module from pythonnet but still got error. I want to...
a=[1,2,3] b=a b+=[4] print(a) print(b) Output: a=[1,2,3,4] b=[1,2,3,4] Why is the value of A effected when i change B...
Hi /r/Python ​ I'm a system and network engineer and work with Python tools every day. I've written tons of...
Hello everyone! I have a big list (about 260) of rgb values. Then I get an rgb value, which isn’t necessarily part of the big...
I am only looking for top level info as I can go learn the code as necessary. My audience is mainly scientists and engineers....
This week's top r/Python posts have arrived!
A Python class
| 761 upvotes | 56 comments | u/deadBuiltIn | r/Python |
Practice algorithms and data structures (and prep for coding...
| 406 upvotes | 28 comments | u/donnemartin | r/Python |
Microsoft announce Python integration into Power BI
| 370 upvotes | 50 comments | u/disbeam | r/Python |
Python Script to generate ASCII Art from an image!
| 241 upvotes | 38 comments | u/Aditya_Ramesh | r/Python |
Complete Guide on working with Python and Postgresql
| 212 upvotes | 25 comments | u/rahuldev29 | r/Python |
I studied programming and graduated in 2004. I wrote couple of programs such as hospital, school automation etc... Basically...
I have been trouble shooting all day, but basically I am making two API requests to Twitter: one to get all of someone’s...
Warning: angry rant incoming I've been using Python for five years now and it's been awesome. Readable syntax, memorable...
Are the following Application Servers Cloud Native? 1. Websphere Liberty 2. WildFly/JBoss Application Server I mean without...
ok BIG noob here, need help: ​ I downloaded Python 3.6 through Anaconda and i have the Anaconda Navigator. Now I...
I wrote this implementation of a worker queue in Python for Postgres. I wonder what you think - do you see any flaws or...
Hello guys...i was wondering whats wrong with this code....i mean my script works fine but i dont get the results i...
Does anyone know of a library that has a multivariate equivalent for the following:...
What is Bandcamp downloader? The Bandcamp downloader is something interesting that you should know because it is an...
Not specific to Python, but since we are numerous API/webservice developers in this awesome ecosystem, here yah go!
Hi dear Python community, I need a little trigger here as I am already struggling for a few days. * I have two nested...
I'm doing some GPU coding with Numba, that requires a computation to be repeated in parallel about 650 times. Each...
I have access to the following Scientific & Computational software available at my work: * Mathworks MATLAB * Python *...
I've been working with plugins for a project and decided to pull that code out and release it as it's own package,...
Hi guys I am reading that IPython allows you to communicate with the underlying shell (you can execute commands by preceding...
My end goal is to stream Twitter (using tweepy in python3), write data (df or csv), and periodically dump that data into a...
In a scientific context, suppose I've collected fifty samples of data, and I want to (independently) process all of them with...
I have been tinkering around with Python Standard Library these days and found this library inside Python called hashlib....
I started using it for python until I realized the Redditor that advertised it is likely an employee of the site in question....
I created a class with a coroutine in it and want to connect to a server After I sucessfully did connect with my first...
Well!! As a freshman,where should I start with python to land a job in industry? I seriously need some help community.
CEF Python is a GUI framework that lets you embed a web browser control based on Chromium (CEF) in a desktop application....
Just testing a bit of code around. I am wondering why this doesn't work. This program is a bit incomplete so don't worry...
Yes guys you reddit right. I am working on a new Python framework called: Draper. I want a framework to rapidly develop my...
I'm not looking for likes/comments from other ppl, I just want to mark comments (that are already there) on mine post at...
Noob poster so please bear with me: Possess Masters in Chemical Engineering from Global Top 10 University (so demonstrable...
Suppose you have a small containerized app that uses Flask+Gunicorn+Nginx by default. If you were to deploy that on a cluster...
Is there anyway to pty.spawn() a shell inside a pyqt widget? I found this stackoverflow post...
Hi,I want to try and learn python. I have some experience with general computer science and python through school. As I know...
Currently I'm using tio.run for pypy2, but it would be cool if there was a way to run programs with pypy3 online. Has anyone...
Anyone familiar with NLTK? I know that sent_tokenize exists and have used it. But I can't find a function that works exactly...
a = ('12', 'a15', '18', '21', '24') how do you remove the alphabet and the number in this tuple
i have a specific fractal i want to make but very confused on how. I have some idea of how to make one but my knowledge is...
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...
Hello All, I have created a weekly magazine for data scientist and data science enthusiasts. Thought Python people would be...
I have got a MacBook Pro with python 3.5.4 installed via homebrew. Recently, after trying to use the urllib module, all my...
I'm processing a csv file (later saving it to a different file after some processing), and the 1 line has a Ë that keeps...
df = pd.DataFrame({'col1': [1, 2, 3, 4, 5], 'col2': [3, 4, 5, 6, 7]}) for i in range(len(df)): print(df.iloc[i,...
So, this is a curated list of a few Python libraries which are used for a gamut of applications. Follow the link to read it...
I built some bitcoin bots in the last year and I was thinking of putting them online and selling them. The users would input...
Hey everyone first time posting here. I graduated high school in 2014 and haven’t done anything with my life since. I’ve...
I'm working with some code to interact with the rest API. I'm trying to look for the most sane way to work with the data. I...
I am done with my first Python program. I want it to pin into my taskbar, and run into the startup when Windows start. What...
I saw more project (e.g youtube-dl, openstackclient) using fake implementation in their test, rather than using mock (mocking...
i am starting my GCSE and im doing python in it. What should i do to help
Hello guys, Pretty new to python. I was wondering if there was any way to create an android app with python. Will appreciate...
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your...
The company I work for uses Service CEO, a field service management tool, to keep track of all of our jobs and associated...
I'm doing a code puzzle. import math def comp(array1, array2): rt = True if array1: for i in array1: `if i*i not in...
I apologize in advance, I'm sure this is going to be rambling and probably missing a lot of pertinent information, but the...
Basically I'm trying to replicate a function I found in Notepad++. I assigned a key to execute my code, it looks where i told...
Hey everyone so I am just starting to learn python and so far have made a program to solve the quadratic equation. This got...
I code in Python on remote linux box(local repo) with remote repos sitting in BitBucket. My development station is Windows...
Hi guys! I am using PRAW to get some post with media from a subreddit. I would like to categorize these media and create a...
Hi, I was wondering if anyone knows of a good Python course that is not video based? Something more rooted only on text and...
Hey all, so I am working on a project that is requiring me to scrape information off of a website. I need to install pipenv...
Hello guys I am relatively new to coding, I know the basics but I am lacking some real world experience in terms of working...
I had my PC quit on me last week, luckily no files where lost. But now I'm faced with the problem of figuring out what...
It used to be that I couldn't run anything I wrote, but now it won't start at all. It says "IDLE's subprocess didn't make a...
I use Jupyter notebook for general plotting. The inline plotting is very useful for plotting purpose. While writing paper on...
I am moving to Laguna Beach in the coming weeks. I am wanting to connect with other developers before I move there. I am also...
I work on a project that has a does a large portion of work through http services. I connect to APIs such as Slack, Microsoft...
I'm having some issues getting easy_install to work correctly. When doing anything with easy_install, I receive this:...
So if I had a 2D numpy array that looked like [[0,1,2][3,4,5]] how would I go about deleting the array [3,4,5]? I've tried...
Hey Py Peeps I run a script which solves an allocation problem each row needs to be processed in the pd df before next row...
Hi fellow redditors! Currently I'm working on some python code for research where I need to fit a model on my data (pretty...
Hi guys, I'm stuck with how to skip the first 2 columns to retrieve data from the 3rd column. and how do I loop through n...
This might be a really dumb question but I’ll go anyways. I use repl.it in my school for python stuff. It’s really fun and I...
I'm just learning Python, but instead of the default pdb I chose this one, she's catching bugs and flies like hell. Whats...
HERE'S THE INSTRUCTIONS: You're running a store, and it's starting to get popular. You're selling more each day, and need to...
I am thinking of writing an article on the differences between python 2 and 3 . Can someone tell me the important points to...
memedict is a helper library I wrote for a slackbot at work which return a meme description from approaching search terms....
Hello, I'm new to DSP so the question might seem a little bit stupid: When using a low pass filter (say Butterworth filter)...
Hi. I write a simple coin toss code which look like this. import time from random import random as rnd past=time.time()...
Hey, Just getting started with programming and I'm running into problems with this task. Could someone please help me with...
Hi! I am trying to iterate over a data to get the data in terms of the unique values of a column. First, I made a list of...
Dear all, I have a little problem with one of my projects and until now I did not find an easy solution. During runtime it...
I just learned Pymongo and I have a problem to consult. The elements of the printed result and the insertion into the new...
Or is this better suited for something like D3.JS? I’m looking for something I can prettify. Thanks for all the tips!
Hello, I want to make a 3D plot, say 3 different curves in different x points (example below of what I want). After trying, I...
I have been thinking to learn Python... I am a complete beginner and idk where to start??and also I don't have any idea about...
So my school still uses the Paper Ballot for our School Council Elections and I want to change this by trying to make a...
Does anyone know how can I use the output of a Ableton track to use as arguments on for a Python app?
I am writing a function that carries out a currency conversion, but I don't know the code, how should I write it?
Not sure if this is the place to ask but I am wondering if its possible to build a script bot which will search all of reddit...
HEllo, 27 year old man here with engineering degree (2 years ago) but only experience in sales associate for 2 years which I...
I see this a lot. Some people put the majority of their package's codebase in the __init__.py. Why choose to do this over...
Hi guys, I'm fairly new to python and wanted to create a multiplayer snake game (this is a project that i'm doing for a...
I am using pywin32 on a project, specifically pythoncom.storagecon in this case. Does anyone have any pointers on how to...
​
Hello, I would like to preface this by stating that I am not a programmer, I work in Information Security. My programming...
Hello all! Very new to python-just got done learning the basics and am currently learning OOP. I want to start a little...
https://github.com/oze4/oPyn_weather_map ​ I am looking for some...
I am actually in college to get an Associate Degree in Information Systems and I want to start programming in Python but I...
Is it possible to get the time when a package was installed? pip show does not include this information.
I'm fairly new to python and programming in general, and it just hit me about five minutes ago that I'm probably doing python...
How do I fix this?? I tried using int(), but that didn't work. import random partOne = random.randint(150, 200) `partTwo...
Hello! I'm very new to Python, I actually just started a few days ago and I'm mostly self teaching. I have to make an age...
Recently I've seen a lot of buzz around python programmers learning to read bytecode, analyse it, and even generate it by...
I'm trying to parse through my genome and find how many of each connection there is. so example A A T A A T All separated by...
I need a good coder who is comfortable with making a bot. The bot could probably be made in several hours based on other...
Hello! I recently made a very basic text-based game in python as an assignment and I want to show people my game. However,...
I want to mark code in my own project as deprecated, and then highlight anywhere that code is used. For runtime logging,...
So ive been developing a bot to purchase clothing off of the Supreme website and it is working extremely well. I plan on...
Python 3's documentation for tkinter is horribly incomplete, and there is no other souce of documentation that even...
Hi, working on a webscraping program. My sister writes for a living and the site she works for just recently has been going...
Any recommended online course that covers object oriented programming in python
I have a website that's hosted on a server. I'd like to use FFMPEG to manipulate videos uploaded by users. If too many users...
I watched 9 hours tutorial. I see just using Python packages with their tutorial. Python learning is not a learning...
Hello, I just started coding and I have just run into the issue, that no matter what the input for "UCI" is, it would still...
What are some projects that will help in getting a python senior backend engineer job? Thing is that I am looking to add...
I've made a python script which recognises faces in photographs, using the package opencv. I don't know much about...
So, I stumbled onto something I didn't expect. I often use a dict when I'm in a hurry or can make do with one instead of...
I'm a student and my main languages are C and C++ but now that I'm seeing how things are simplified in Python I wonder if it...
> All the Python script would do is visit quizlet site's and match the question verbatim to something on-site and give you...
Guys, Im so sorry if this is an extremely stupid question, I think it might be because I cant seem to find anything else...
I just uploaded my first pypi package. it is an api wrapper that performs searches on the National Science Foundation...
I was wondering what is the newest version of Python for Windows 10. Because the site shows 3.7, but says 3.6.6 came out at a...
I heard that an application of python is to automate tasks. I was just wondering what this meant in the real world and to...
I started learning python recently so having some beginner problem. Selenium has being installed and have downloaded...
I recently tried to use the easygui module but when i type import easygui * it just says module not found/ someone help
Its new to me, i dont like it.....but i need to become fluent. Any ways i can begin to love it??
I've seen people on YT tutorials running python commands from their desktop directory itself. This is the location where I've...
I often use "list" function on the output of "filter" applied to a list to obtain a new list. Is it possible to avoid this...
So, I'm currently learning Python and enjoying it. I'm working on a program where I need to iterate one string so that each...
If I create a map (using Leaflet or some other package) and place markers, is there a way to shade the map according to which...
If this is considered advertising and it's not allowed, I understand if it gets removed. but I wanted to share this with you...
I'm willing to pop the stack of drafts I have for my blog, if possible I'd prefer to write on a subject...
Hello, I wanted to make game like SFGame or Gladiatus (like old via browser games). I have made some code with tkinter, but...
And what's the best to start? Do you have any recommendation for a paid course or am I better off with the official...
To start, I have a BA degree with a poor background in math. I've been working at a tech company at service desk. I recently...
Now you can! With the borg_pod module / (possibly novel?) design pattern, you can change any class decorated with...
I don't know where to start, but basically, I want to make a device that simply provides you with directions. Left, right,...
It can be an artist, album, random Spotify playlist... whatever
What are the books/articles someone needs to read to get up to speed with more advanced parts of Python? I have no problems...
Since Guido left, I haven't heard any news about an election or someone taking over. Does anyone have more info on what's...
I want to share my first library release on PyPi with you all: ipython_blocking...
I see many videos and guides using "breadboards" and other things that were not listed on...
Now you have to write if like this: if a == 1 or a == 2: But I think there could be a better, more compact and the same...
I used turtle a lot when i first picked up python. I think probably everyone does if they learn any of it from a book....
I have created a simple framework for making slides in Python in a programmable way. I made it for my personal slides as I...
I’m using python, and the entire thing looks a bit complicated to install the modules into python. Can anyone help out? Cheers
https://imgur.com/6h20GJL pls help
https://imgur.com/a/ITBOMba I was just on my pc and this error randomly appears. I was doing nothing related to...
During install i installed it to a custom path of C:/python and in the add i added this to the env variable...
Hi all! I have been working with python for almost a year, but I’ve never done any data analysis type projects before. I’ve...
I'm Trying to piece this together to try it. Haven't seen any examples quite like this. And my python is a little rusty....
Hi everyone. I need some help figuring out how to port my tools over. I have quite a number of tools utilizing SQLite. Then...
I'm a beginner to this language, but when I click on my .py files they flash for a split second and then go away. Even...
Does anyone know how to add text to a folium / leaflet map? I've been googling for a few days and can't seem to find a solution.
I'm using ssh to run a python program on a cluster, the cluster is configured to accept jobs using slurm. The sbatch script...
Awesome right? I know. Let's get to the details. TL:DR - I joined a great bunch of programmers in this slack channel linked...
def thing_is_thing(thing): if thing is not thing: return False if thing is thing: return True Can you find a parameter for...
Hello everyone! I am 23 and I currently work as an ABAP developer (most of you probably have never heard of this programming...
I am finishing up my first project and some people want to buy it from me but I want to license it per month as a...
#Hackathon import numpy as np import cv2 import matplotlib.pyplot as plt ​ ​ #Finding Images img1=...
I'm scraping some info off a heap of pages from a site using urllib and scrapy. At the moment each request and scrape take ~4...
It's for a place called edgenuity that is renowned for having horrid systems for a user who does work. Some of the most...
I just posted (quite recently) about a problem I had with an openCV program. I did get it working in the en, but its not...
Hi. I'm trying to create a windowed program with simple graphics (chess for instance) in python. Preferently py3. I just...
About a month ago I built a simple neural network using scikit learn. I ran the exact same code again today and I get an...
These two plugins provide real-time and on-demand code inspection from within PyCharm/IDEA....
Hi there. I just finished uploading a [Snake Game Tutorial in Python 3 for...
For the development of my data science software I'm using numpy, pandas, dask, numba, bokeh and openpyxl. My workstation...
shit = input("Are You Sure You Want To Call Your New File:",newfile+"?") sorry though I'm new to this - thanks in advance...
Hi I have a text file and I wanted to read it in binary (1s and 0s) but instead I get b'text' when using open(file,'rb') Any...
I’m currently learning python and right now I’m trying to make a simple algebraic equation solver. I used tkinter to make a...
Hi all sorry if this is the wrong place to post but as per my previous post I have been modifying the existing Bitmex market...
I'm currently in the process of finding an individual to task (pay for) the creation of a tool I require for my own personal...
Hi all sorry if this is the wrong place to post but as per my previous post I have been modifying the existing Bitmex market...
​ [The julia code is like that because i couldn't find a way to get the elapsed time...
Hey! I’m trying to write a program which takes an audio input via a microphone or a jack, and converts it into frequencies....
Hello, I would like to monitor a python script that I have running on PythonAnywhere. Maybe create an application that shows...
I am working with json for the first time. I do not know what I am looking for and do not know how to search for that lol. In...
Hey all - I am new to programming and I am confused as to how I can select the second biggest integer in a list [1,3,6,5,7] I...
This is my first major project that I have completed, outside of courses. It is an application for setting up tasks and...
This week's top r/Python posts have arrived!
Compared breakdown by region on Google Trends for Python,...
| 433 upvotes | 92 comments | u/AnecD | r/Python |
Corey Schafer just released a 6.5h Django Tutorial on his...
| 343 upvotes | 20 comments | u/Crowl_ | r/Python |
Python Pandas: Tricks & Features You May Not Know – Real...
| 334 upvotes | 15 comments | u/endlesstrax | r/Python |
I hacked a quick script to download books from Humble Bundle...
| 297 upvotes | 42 comments | u/santiagobasulto | r/Python |
Writing Game boy emulator in Python
| 277 upvotes | 29 comments | u/major_x9 | r/Python |
I'm trying to learn python and want to recreate my current .Net winforms app which is a custom Calendar App. I think the main...
Does anyone know how to make an SMS Bomber but instead of an attacker email, it snags my number? so If my number was...
Hi, is there any way to tell wether a pip install is a default or wether it was installed by the user? When doing "pip...
I got annoyed with trying to run scripts without first activating the virtual environment, so I decided to see if I could...
Hi All! ​ Python novice here. I came across an exercise of creating your own function/algo for calculating mean,...
Hey r/Python, I am currently using a microscope to gather some data samples of round...
Hey everyone! Most of what I've made with Python has been for the web or command line. However, I'm planning a GUI project,...
I am trying to learn how to create a snake game using python because im a beginner and its easy, there is a slight and...
This is my first python program that I was able to write without constantly having to look back to reference material. The...
Hi everyone, I am currently learning Python pandas and I am struggling for almost an entire day trying to concatenate two...
Hello all! So I am trying to do a contour plot of properties of some material. My data ranges from 0 to 1.0, but when I...
I feel oop is useless due to the fact that functional programming is more direct and shorter than writing long repetitive...
#Abas ab=[] ab.append(ttk.Frame(abas)) abas.add(ab[0], text='Text') #ScrolledText lines=[] scroll=[] barx=[] bary=[]...
Just learning about logger, and how to use it. Now I’ve got logs! Is there a best practice for formatting, and review? I’m...
So i have this huge folder of Tiff (16 Bit) files i need to read in. Obviously i am limited to 32 GB of RAM. So ASAP i read...
Version 3.7.4 of the Transcrypt Python to JavaScript compiler has been released. ...
Version 3.7.4 of the Transcrypt Python to JavaScript compiler has been released. ​...
I've used python in the past, but I recently reinstalled it. According to [https://packaging.python.org/tutorials/installing-...
Hi everyone, I signed up for a programming placement year, expecting to be programming in Java but I found out the placement...
I'm looking to code in my free time so I don't lose my coding ability, but the ideas I do have aren't full-fledged projects....
Want to try serverless computing? Want to not fret about setting up a server and get straight to the development part? I...
This might be offtopic, but I started learning pythong through code academy a few weeks ago and I sometimes find myself...
Finally got the kick up the ass I needed to start learning Python thanks to the new bounty program Cryzen just started. They...
Relatively new to Python just looking for some guidance on how I would go about doing this: password = "hello" #in my actual...
I'm currently implementing a gender module with pronoun data using class variables as each gender type and pronoun. This is...
https://www.youtube.com/watch?v=1tiL3Lkyf1U Hey, all. I'm starting to upload...
Hi all, I'm just working on my first project in python and was wondering if anyone could give me any tips. The project needs...
Hi I'm working on a small program that involves a bunch of print() and input(). I want the program to run in a similar...
Hello everyone, I am a 3rd year university student studying mechatronics. I have a project coming up in about 5 months, which...
I am currently coding a bot for starcraft 2. I want to implement its decisions by hard code, not by a neural net or something...
https://github.com/asamirr/Youtube-CSV-Data What could be done better here?
I am looking to make an SSH client, minimal experience with it however you get marked on complexity, now it seems that...
so i saw an articale about someone who crated a scrip that automatically signs up for twitter giveaways and it inspired me to...
I want to build desktop application for a POS system that will interact with my backend using ajax. Look is not a concern but...
So this is what I am trying to do: We have machines at work we want to monitor. We want to monitor and log when the machine...
Im writing a code that allows users to follow a letter that is drawn using turtle, this is to help them learn the alphabet...
Hello everyone I am looking for students to teach python language for free if you like my Efforts and you are learning...
I'm using Python 3.7 on Windows 7 32-bit. When I try to install cx_freeze via pip, I get an exception from distutils:...
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your...
I'm just looking for an easy way to send Ethereum
I have been developing a crossword generator for some time now, and I'd like to get the advice of better programmers than...
I have a txt File w/ the following (example) content : .... L1: [blank line] L2: #stage xy [comment line] L3: projectXY-...
I am building a web app that allows users to build data analysis models using a limited set of variables and deploy these...
Hi all, ​ I'm looking through some python code related to the game of poker. The github is here:...
Hi ! I'm using Selenium to automate some camera web-interface work at home, but I cannot get to automatically activate Flash...
I have an idea for something I want to do for work - I work in insurance and I want to create something where I can pick an...
Hi Guys! It's my first post in here, and I would love your help. I am getting started with Python, and I have tried to make a...
I've been using pycharm in my pc, but recently I've been into another computer that doesn't has access to internet and I also...
import itertools a = [1,2,3,4,5,6,7,8,9] def num_gen(): num_list = [] for en, i in enumerate(a): c = i # a.remove(i) for j in...
Hi! I’m a mechanical engineer trying to learn about programming because of the Masters Program in Automation and Control of...