Python Daily
2.57K subscribers
1.48K photos
53 videos
2 files
38.9K links
Daily Python News
Question, Tips and Tricks, Best Practices on Python Programming Language
Find more reddit channels over at @r_channels
Download Telegram
How to Set-up Jupyter notebook for C++ and Java.

I know there's a kernel xeus-cling for C++ but i guess it's not for windows. I've seen tutorials, tried with conda, pip but nothing helps. Can anyone give me a step by step tutorial please??

Thanks in advance

/r/JupyterNotebooks
https://redd.it/uf671w
Sunday Daily Thread: What's everyone working on this week?

Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.

/r/Python
https://redd.it/ufnesj
How To Monitor Open Source Trends With The OpenBB Terminal!

Admittedly, we are likely a little biased when it comes to open-source projects. The rest of the world may only be learning what OSS is because Elon Musk has been twatting about opening up the algorithm.

We all know the value, I don't need to sell y'all on it. When it comes to following projects, you can keep your ear even closer to the ground with the Open Source Menu of the OpenBB Terminal.

If you haven't already, the first thing you need to do is go to GitHub and star the OpenBB Terminal Repo.

OpenBB GitHub Repo

OpenBB GitHub Repo \(https:\/\/github.com\/OpenBB-finance\/OpenBBTerminal\)

While you're there, fork the repo and follow along!

Get To The OSS Menu

There are four commands to choose from in the OSS submenu:

rs: Repo Summary

(🦋) /alternative/oss/ $ rs -h
usage: rs -r REPO -h --export EXPORT --raw

Display a repo summary Source: https://api.github.com

optional arguments:
-r REPO, --repo REPO Repository to search for repo summary. Format: org/repo, e.g., openbb-finance/openbbterminal (default: None)
-h, --help

/r/Python
https://redd.it/ufrlwg
Hide sensitive information in PDF using Python and NLP

Cheers Python community!Just finished writing a module for PDF anonymization which detects sensitive information and hides it!

In a nutshell, here what it does (you can change the color of the boxes)

sample.jpg

Under the hood, it's all about pytesseract (for OCR) and transformers (for NER). I also used pdf2image for conversion and some RegEx.

I would appreciate if anyone tries to use! (or you can star the repository )
Feedback and reports a bug is highly welcomed!

I also did my best to write a comprehensive README.md, if you want to get started. So please check it out! GitHub Repo

/r/Python
https://redd.it/ufxsuc
This media is not supported in your browser
VIEW IN TELEGRAM
I built my first web app, Meddle, a medical themed variation of popular word guessing game | Made with Flask + JavaScript

https://redd.it/ufyrz7
@pythondaily
This media is not supported in your browser
VIEW IN TELEGRAM
open-source python library for making a UI that runs in the browser or inside a jupyter notebook, package is available on PyPI

https://redd.it/ug4xcx
@pythondaily
Monday Daily Thread: Project ideas!

Comment any project ideas beginner or advanced in this thread for others to give a try! If you complete one make sure to reply to the comment with how you found it and attach some source code! If you're looking for project ideas, you might be interested in checking out Al Sweigart's, "The Big Book of Small Python Projects" which provides a list of projects and the code to make them work.

/r/Python
https://redd.it/ugcuyr
Use MongoDB without Azure's CosmosDB in Azure Web App Django Project

How to establish a connection with the MongoDB Atlas in a Django project that has been deployed in Azure Web App. What will the database configurations in settings.py look like?

This is not working in settings.py:



DATABASES = {
'default': {
'ENGINE': 'djongo',
'NAME': 'db-name',
'CLIENT': {
'host': 'mongodb+srv://<username>:<password>@<atlas cluster>/<myFirstDatabase>?retryWrites=true&w=majority'
}
}
}



python==3.9
django==4.0.4
djongo==1.3.6

I'm in desperate need of assistance. I need to have this resolved as soon as possible.

/r/djangolearning
https://redd.it/ugpdij
Django for Startup MVP?

Hey, I just joined a few friends working on a fun side project. Put vaguely, its a simplified social media platform and they're prototyping it on Django using the simple templating language and vanilla JS/Jquery to make the MVP. I don't have much experience here so I'll ask if anyone knows:
1. Is this typical for the frontend or should a framework like react/angular be used?
2. The security concerns of running a full scale social media using django?
3. How hard it would be to migrate any current work that's been done to another more industrial platform (perhaps after the MVP is made)? What would a more industrial system be?

Thanks in advance

/r/django
https://redd.it/uhmovf
Wednesday Daily Thread: Beginner questions

New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!

This thread may be fairly low volume in replies, if you don't receive a response we recommend looking at r/LearnPython or joining the Python Discord server at https://discord.gg/python where you stand a better chance of receiving a response.

/r/Python
https://redd.it/uhtmvt
Thursday Daily Thread: Python Careers, Courses, and Furthering Education!

Discussion of using Python in a professional environment, getting jobs in Python as well as ask questions about courses to further your python education!

This thread is not for recruitment, please see r/PythonJobs or the thread in the sidebar for that.

/r/Python
https://redd.it/uik8hx
Throw your hands in the air if you cancelled your PyCharm subscription because you dreaded opening it and waiting 3,000 years for it to "index your project" instead of you being able to get something done. goodbye pycharm. Hello VS Code.

I just cancelled my PyCharm subscription after being a faithful purchaser of the Pro version for 5 years. I really liked the ability to navigate complex object hierarchies.. it saved my bacon once... but I refuse to use this thing on a personal basis and deal with 3-10 minutes of "scanning.... indexing ....." .

later JetBrains.

/r/Python
https://redd.it/uivtiq
JupyterHub server vs remote kernel: handle VPN drops for long-running notebooks

Summary of my needs

Retail supply-chain data from relational databases. Data sets are usually 1 - 100 GB in size.
All data is on-prem in my employer's data center, not cloud based.
Pandas or Dask and scikit-learn for clustering, classification, and regression
Models often take several hours to train. Pandas DataFrame joins or aggregations can also be slow, sometimes.
I am requesting a Linux server, since a Windows 10 VDI with 4 cores and 16 GB RAM is limiting
I work from home, and OpenVPN and home internet disconnections are a real concern with long-running notebooks.

I see a few options

Jupyter on my laptop plus remote kernel ([https://pypi.org/project/remote-kernel/](https://pypi.org/project/remote-kernel/))
JupyterHub on remote server.

Is there a good way to re-connect to a running kernel after a network disconnect and not miss any cell outputs? Which of those options is better? If not, my options are

Keep using a Windows 10 VDI to connect to the JupyterHub server. (I'm not thrilled with this option.)
Use a DAG workflow engine like Prefect or Airflow for any calculation that might take over 5 minutes. Persist results with Parquet or Joblib. Jupyter notebooks would be mostly for plotting and exploratory data analysis.

&#x200B;

Edit:

I know that Jupyter uses

/r/JupyterNotebooks
https://redd.it/uj0qta
Is it possible to make Django work with Amazon Aurora with Read Replica

Hi. I've been exploring amazon aurora lately and I got stuck on connecting my application to "Write" endpoint and "Read" endpoint.

Just wanna ask if someone already did this. Can't find any good solution online.


Thank you!

/r/django
https://redd.it/ujd078