Reactive Notebook for Python - An Alternative to Jupyter Notebook
What the Project Does :
Marimo is an open-source reactive notebook for Python: reproducible, git-friendly, executable, shareable as apps.
Run a cell or interact with a UI element, and Marimo automatically runs dependent cells (or marks them as stale), keeping code and outputs consistent. Marimo notebooks are stored as pure Python, executable as scripts, and deployable as apps.
Target Audience :
The project is primarily aimed at data scientists, researchers, and educators. They can make featureful, interactive, and beautiful notebooks that let users filter, slice, and drill-down to their heart's content. Marimo can also enable them to build maintainable internal tools using just Python, without the hassle of custom frontends, infra, endpoints, and deployments.
Comparison :
vs JupyterLite - a WASM powered Jupyter running in the browser. However, it is not reactive like Marimo.
vs IPyflow - a reactive notebook for Python implemented as a Jupyter kernel. However, it is not WASM compatible.
vs Jupyter - marimo is a reinvention of the Python notebook as a reproducible, interactive, and shareable Python program that can be executed as scripts or deployed as interactive web apps - without the need of extensions or additional infrastructure
GitHub repository: https://github.com/marimo-team/marimo
/r/Python
https://redd.it/1dvs2d6
What the Project Does :
Marimo is an open-source reactive notebook for Python: reproducible, git-friendly, executable, shareable as apps.
Run a cell or interact with a UI element, and Marimo automatically runs dependent cells (or marks them as stale), keeping code and outputs consistent. Marimo notebooks are stored as pure Python, executable as scripts, and deployable as apps.
Target Audience :
The project is primarily aimed at data scientists, researchers, and educators. They can make featureful, interactive, and beautiful notebooks that let users filter, slice, and drill-down to their heart's content. Marimo can also enable them to build maintainable internal tools using just Python, without the hassle of custom frontends, infra, endpoints, and deployments.
Comparison :
vs JupyterLite - a WASM powered Jupyter running in the browser. However, it is not reactive like Marimo.
vs IPyflow - a reactive notebook for Python implemented as a Jupyter kernel. However, it is not WASM compatible.
vs Jupyter - marimo is a reinvention of the Python notebook as a reproducible, interactive, and shareable Python program that can be executed as scripts or deployed as interactive web apps - without the need of extensions or additional infrastructure
GitHub repository: https://github.com/marimo-team/marimo
/r/Python
https://redd.it/1dvs2d6
GitHub
GitHub - marimo-team/marimo: A reactive notebook for Python — run reproducible experiments, query with SQL, execute as a script…
A reactive notebook for Python — run reproducible experiments, query with SQL, execute as a script, deploy as an app, and version with git. Stored as pure Python. All in a modern, AI-native editor....
sql-compare: package to compare SQL schemas
## What My Project Does
This package allows to compare two SQL files (or strings) to know whether their statements are the same or not. The comparison doesn't care about the order of the columns in a table or the order of the values in an enumerator. It also excludes irrelevant data like comments.
GitHub repository
PyPI
Its main usage is to compare the schemas of two databases (e.g. staging and production).
At Mergify, we use it in our test suite to check that the migration scripts generated by Alembic will create the database schema expected by the SQLAlchemy models. I wrote a blog post about the creation of the package.
## Target Audience
We use it in our CI/CD. This package is meant for testing mainly, but it could be used for something else probably.
This package is ready for production.
We have been using it at Mergify for several months now. Our test suite fails whenever Alembic misses something in a migration script. We deliver to production several times a day thanks to that.
## Comparison
We didn't find any suitable alternative.
Alembic can compare a database schema with SQLAlchemy models, but it doesn't detect every differences.
We used migra in the past, but it is not maintained anymore.
/r/Python
https://redd.it/1dvsqk7
## What My Project Does
This package allows to compare two SQL files (or strings) to know whether their statements are the same or not. The comparison doesn't care about the order of the columns in a table or the order of the values in an enumerator. It also excludes irrelevant data like comments.
GitHub repository
PyPI
Its main usage is to compare the schemas of two databases (e.g. staging and production).
At Mergify, we use it in our test suite to check that the migration scripts generated by Alembic will create the database schema expected by the SQLAlchemy models. I wrote a blog post about the creation of the package.
## Target Audience
We use it in our CI/CD. This package is meant for testing mainly, but it could be used for something else probably.
This package is ready for production.
We have been using it at Mergify for several months now. Our test suite fails whenever Alembic misses something in a migration script. We deliver to production several times a day thanks to that.
## Comparison
We didn't find any suitable alternative.
Alembic can compare a database schema with SQLAlchemy models, but it doesn't detect every differences.
We used migra in the past, but it is not maintained anymore.
/r/Python
https://redd.it/1dvsqk7
PyPI
sql-compare
Compare SQL schemas
Help with database commits from a form.
Hello! I'm pretty new to Flask and struggling with transferring data from a form to an SQL Database. The form is within a modal, which works perfectly and will redirect back to the main page once the form is submitted. However, the data from the form is not transferred to the SQL Database that I have associated with this project. I'm sure I'm missing something quite simple, help would be appreciated! If any more code screenshots are needed please let me know.
HTML Template for registration modal: https://i.imgur.com/VIdNGOs.png
Index routing function where the form data is sent to: https://i.imgur.com/zp41FA2.png
/r/flask
https://redd.it/1dw5tqj
Hello! I'm pretty new to Flask and struggling with transferring data from a form to an SQL Database. The form is within a modal, which works perfectly and will redirect back to the main page once the form is submitted. However, the data from the form is not transferred to the SQL Database that I have associated with this project. I'm sure I'm missing something quite simple, help would be appreciated! If any more code screenshots are needed please let me know.
HTML Template for registration modal: https://i.imgur.com/VIdNGOs.png
Index routing function where the form data is sent to: https://i.imgur.com/zp41FA2.png
/r/flask
https://redd.it/1dw5tqj
Imgur
Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users.
Reduce number of models
I currently have:
- ORM model, courtest of SQLAlchemy
- Form model, courtesy of WTForms
- Model logic in routes... Which mostly calls ORM class methods.
How can I consolidate all of that? Any best practices I need to be aware of?
/r/flask
https://redd.it/1dvnq52
I currently have:
- ORM model, courtest of SQLAlchemy
- Form model, courtesy of WTForms
- Model logic in routes... Which mostly calls ORM class methods.
How can I consolidate all of that? Any best practices I need to be aware of?
/r/flask
https://redd.it/1dvnq52
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
I'm a flask addict, convince me to switch to Django
I've been developing web apps with Flask for a while now and love its simplicity and flexibility. It's lightweight and allows me to pick and choose the components I need. However, I've heard a lot about Django's "batteries-included" philosophy and its robust feature set.
Everyone around me says that Django is way better, I really tried to switch but it's really hard.
Convince me why I should give Django a shot!
/r/django
https://redd.it/1dw5q0w
I've been developing web apps with Flask for a while now and love its simplicity and flexibility. It's lightweight and allows me to pick and choose the components I need. However, I've heard a lot about Django's "batteries-included" philosophy and its robust feature set.
Everyone around me says that Django is way better, I really tried to switch but it's really hard.
Convince me why I should give Django a shot!
/r/django
https://redd.it/1dw5q0w
Reddit
From the django community on Reddit
Explore this post and more from the django community
Emotion classification & Analysis
Hello everyone,
I want to share my project that built using flask about in machine learning where user can express there emotion and classify at the following (Sad, Joy, Love, Anger, Fear, Surprice). We use a CNB model for text classification with the accuracy of 88%.
You can try it here:
https://emotionclassification.pythonanywhere.com
Note:
The prediction may encounter a unexpected expression result.
Source code:
- Github
/r/flask
https://redd.it/1dvr9t0
Hello everyone,
I want to share my project that built using flask about in machine learning where user can express there emotion and classify at the following (Sad, Joy, Love, Anger, Fear, Surprice). We use a CNB model for text classification with the accuracy of 88%.
You can try it here:
https://emotionclassification.pythonanywhere.com
Note:
The prediction may encounter a unexpected expression result.
Source code:
- Github
/r/flask
https://redd.it/1dvr9t0
Pythonanywhere
Emotion classification & Analysis
Classify text based on emotional states
Geolocate an IP address and perform WHOIS domain lookup in Flask
https://blog.ip2location.com/knowledge-base/how-to-use-ip2location-io-and-ip2whois-in-flask/#reddit
/r/flask
https://redd.it/1dvq6f5
https://blog.ip2location.com/knowledge-base/how-to-use-ip2location-io-and-ip2whois-in-flask/#reddit
/r/flask
https://redd.it/1dvq6f5
IP2Location.com
How to use IP2Location.io and IP2WHOIS in Flask? | IP2Location.com
Learn on how to use IP2Location.io and IP2WHOIS Python SDK in Flask to lookup geolocation and domain WHOIS information.
Django AI Assistant - Open-source Lib Launch
Hey folks, we’ve just launched an open-source library called Django AI Assistant, and we’d love your feedback!
What It Does:
* **Function/Tool Calling**: Simplifies complex AI implementations with easy-to-use Python classes
* **Retrieval-Augmented Generation**: Enhance AI functionalities efficiently.
* **Full Django Integration**: AI can access databases, check permissions, send emails, manage media files, and call external APIs effortlessly.
How You Can Help:
1. Try It: [https://github.com/vintasoftware/django-ai-assistant/](https://github.com/vintasoftware/django-ai-assistant/)
2. ▶️ [Watch the Demo](https://www.youtube.com/watch?v=bSJv4OIKLog&ab_channel=VintaSoftware)
3. 📖 [Read the Docs](https://vintasoftware.github.io/django-ai-assistant/latest/get-started/)
4. Test It & Break Things: Integrate it, experiment, and see what works (and what doesn’t).
5. Give Feedback: Drop your thoughts here or on our GitHub issues page.
Your input will help us make this lib better for everyone. Thanks!
/r/djangolearning
https://redd.it/1dw6i4z
Hey folks, we’ve just launched an open-source library called Django AI Assistant, and we’d love your feedback!
What It Does:
* **Function/Tool Calling**: Simplifies complex AI implementations with easy-to-use Python classes
* **Retrieval-Augmented Generation**: Enhance AI functionalities efficiently.
* **Full Django Integration**: AI can access databases, check permissions, send emails, manage media files, and call external APIs effortlessly.
How You Can Help:
1. Try It: [https://github.com/vintasoftware/django-ai-assistant/](https://github.com/vintasoftware/django-ai-assistant/)
2. ▶️ [Watch the Demo](https://www.youtube.com/watch?v=bSJv4OIKLog&ab_channel=VintaSoftware)
3. 📖 [Read the Docs](https://vintasoftware.github.io/django-ai-assistant/latest/get-started/)
4. Test It & Break Things: Integrate it, experiment, and see what works (and what doesn’t).
5. Give Feedback: Drop your thoughts here or on our GitHub issues page.
Your input will help us make this lib better for everyone. Thanks!
/r/djangolearning
https://redd.it/1dw6i4z
GitHub
GitHub - vintasoftware/django-ai-assistant: Integrate AI Assistants with Django to build intelligent applications
Integrate AI Assistants with Django to build intelligent applications - vintasoftware/django-ai-assistant
I made this using DRF and React
I build a canine blog site using DRF and React as front-end. If you guys have some spare time, can you guys give me some feedback on my project? Any feedback will be greatly appreciated. Thank you. Here are the back-end and front-end code. And here is the project at Netlify. Here are the test username and password: test_user, Canineblog123
/r/djangolearning
https://redd.it/1dw2jtp
I build a canine blog site using DRF and React as front-end. If you guys have some spare time, can you guys give me some feedback on my project? Any feedback will be greatly appreciated. Thank you. Here are the back-end and front-end code. And here is the project at Netlify. Here are the test username and password: test_user, Canineblog123
/r/djangolearning
https://redd.it/1dw2jtp
GitHub
GitHub - shinhosuck/django-reactjS-pet-blog-backend
Contribute to shinhosuck/django-reactjS-pet-blog-backend development by creating an account on GitHub.
New to the web building community - need some advice
Hey Django community!
I'm new to the web building community but not entirely alien to programming. Though, having said that, my experience lies in SQL and SAS.
Can someone advice on the benefits of Django as compared to Flask if I want to build a website for price comparison?
I have an idea where users can compare prices and make the best decision for their purchase.
Read up on the benefits of flask and Django but I am not from a computer science background so I can be quite illiterate to the technical jargons.
Would appreciate if anyone could dumb it down for me and advice me on flask or Django for a "Price Comparison" website!
Thank u!
/r/django
https://redd.it/1dwkyqr
Hey Django community!
I'm new to the web building community but not entirely alien to programming. Though, having said that, my experience lies in SQL and SAS.
Can someone advice on the benefits of Django as compared to Flask if I want to build a website for price comparison?
I have an idea where users can compare prices and make the best decision for their purchase.
Read up on the benefits of flask and Django but I am not from a computer science background so I can be quite illiterate to the technical jargons.
Would appreciate if anyone could dumb it down for me and advice me on flask or Django for a "Price Comparison" website!
Thank u!
/r/django
https://redd.it/1dwkyqr
Reddit
From the django community on Reddit
Explore this post and more from the django community
Saturday Daily Thread: Resource Request and Sharing! Daily Thread
# Weekly Thread: Resource Request and Sharing 📚
Stumbled upon a useful Python resource? Or are you looking for a guide on a specific topic? Welcome to the Resource Request and Sharing thread!
## How it Works:
1. Request: Can't find a resource on a particular topic? Ask here!
2. Share: Found something useful? Share it with the community.
3. Review: Give or get opinions on Python resources you've used.
## Guidelines:
Please include the type of resource (e.g., book, video, article) and the topic.
Always be respectful when reviewing someone else's shared resource.
## Example Shares:
1. Book: "Fluent Python" \- Great for understanding Pythonic idioms.
2. Video: Python Data Structures \- Excellent overview of Python's built-in data structures.
3. Article: Understanding Python Decorators \- A deep dive into decorators.
## Example Requests:
1. Looking for: Video tutorials on web scraping with Python.
2. Need: Book recommendations for Python machine learning.
Share the knowledge, enrich the community. Happy learning! 🌟
/r/Python
https://redd.it/1dwcc4t
# Weekly Thread: Resource Request and Sharing 📚
Stumbled upon a useful Python resource? Or are you looking for a guide on a specific topic? Welcome to the Resource Request and Sharing thread!
## How it Works:
1. Request: Can't find a resource on a particular topic? Ask here!
2. Share: Found something useful? Share it with the community.
3. Review: Give or get opinions on Python resources you've used.
## Guidelines:
Please include the type of resource (e.g., book, video, article) and the topic.
Always be respectful when reviewing someone else's shared resource.
## Example Shares:
1. Book: "Fluent Python" \- Great for understanding Pythonic idioms.
2. Video: Python Data Structures \- Excellent overview of Python's built-in data structures.
3. Article: Understanding Python Decorators \- A deep dive into decorators.
## Example Requests:
1. Looking for: Video tutorials on web scraping with Python.
2. Need: Book recommendations for Python machine learning.
Share the knowledge, enrich the community. Happy learning! 🌟
/r/Python
https://redd.it/1dwcc4t
Amazon
Fluent Python: Clear, Concise, and Effective Programming
Fluent Python: Clear, Concise, and Effective Programming [Ramalho, Luciano] on Amazon.com. *FREE* shipping on qualifying offers. Fluent Python: Clear, Concise, and Effective Programming
Build Your Own Pastebin Service using Flask
https://www.youtube.com/watch?v=s2RQfUxOuco
/r/flask
https://redd.it/1dwisbi
https://www.youtube.com/watch?v=s2RQfUxOuco
/r/flask
https://redd.it/1dwisbi
YouTube
Build Your Own Pastebin using Flask & Python | Flask | Python | Web Development
Learn how to build your own Pastebin service using Python and Flask in this step-by-step tutorial. I cover setting up a web application, handling file storage, generating unique URLs, and implementing syntax highlighting.
This tutorial is perfect for beginners…
This tutorial is perfect for beginners…
I'm a Python Backend Developer, How to Create a Modern and Fast Frontend?
Hi everyone,
I'm a backend developer working with Python and I'm looking for a simple and quick way to create a modern and clean frontend (web app) for my Python APIs.
I've been learning Next.js, but I find it a bit difficult and perhaps overkill for what I need.
Are there any tools or platforms for creating simple and modern web apps?
Has anyone else been in the same situation? How did you resolve it?
Do you know of any resources or websites for designing Next.js components without having to build them from scratch?
Thanks in advance for your opinions and recommendations!
/r/Python
https://redd.it/1dwf2sh
Hi everyone,
I'm a backend developer working with Python and I'm looking for a simple and quick way to create a modern and clean frontend (web app) for my Python APIs.
I've been learning Next.js, but I find it a bit difficult and perhaps overkill for what I need.
Are there any tools or platforms for creating simple and modern web apps?
Has anyone else been in the same situation? How did you resolve it?
Do you know of any resources or websites for designing Next.js components without having to build them from scratch?
Thanks in advance for your opinions and recommendations!
/r/Python
https://redd.it/1dwf2sh
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Developing GraphQL APIs in Django with Strawberry
https://testdriven.io/blog/django-strawberry/
/r/django
https://redd.it/1dwofku
https://testdriven.io/blog/django-strawberry/
/r/django
https://redd.it/1dwofku
testdriven.io
Developing GraphQL APIs in Django with Strawberry
This tutorial details how to integrate GraphQL with Django using Strawberry.
Scope Boundaries for Notebooks — Research Study on an extension I've been developing
Hi Everyone. My name is Eric Rawn. I’m a PhD student at UC Berkeley working with my advisor Professor Sarah Chasins. I research how to make notebook programming environments better, and have been working on an extension for notebooks which introduces scope boundaries to collections of cells. We think this might help programmers avoid some of the pain points with notebooks, but we won’t know until we study its use in the real world. The goal is to make it easier to keep variables tidy within a notebook without requiring programmers to change how they like to use notebooks. We’re interested in evaluating how our extension aids how real users program (you all!), and so we’re running a 4-6 week study with folks who use Jupyter notebooks regularly in their everyday programming.
The extension will log some usage data locally on your machine, which you'll send to me at the end of the study. We'll then spend about an hour chatting about your experience, the kind of work you do daily, how you use notebooks, and any other thoughts or feedback you have. Participants will be compensated for their time spent interviewing, at $30/hour. The consent form has detailed information about the
/r/JupyterNotebooks
https://redd.it/1dwbgqr
Hi Everyone. My name is Eric Rawn. I’m a PhD student at UC Berkeley working with my advisor Professor Sarah Chasins. I research how to make notebook programming environments better, and have been working on an extension for notebooks which introduces scope boundaries to collections of cells. We think this might help programmers avoid some of the pain points with notebooks, but we won’t know until we study its use in the real world. The goal is to make it easier to keep variables tidy within a notebook without requiring programmers to change how they like to use notebooks. We’re interested in evaluating how our extension aids how real users program (you all!), and so we’re running a 4-6 week study with folks who use Jupyter notebooks regularly in their everyday programming.
The extension will log some usage data locally on your machine, which you'll send to me at the end of the study. We'll then spend about an hour chatting about your experience, the kind of work you do daily, how you use notebooks, and any other thoughts or feedback you have. Participants will be compensated for their time spent interviewing, at $30/hour. The consent form has detailed information about the
/r/JupyterNotebooks
https://redd.it/1dwbgqr
GitHub
GitHub - erawn/pagebreaks: Multi-Cell Scopes for Jupyter Notebooks
Multi-Cell Scopes for Jupyter Notebooks. Contribute to erawn/pagebreaks development by creating an account on GitHub.
App 100% python with django. What python frontend can I use?
Hi,
I'm currently using flask + dash bootstrap components for my app.
I'm looking for a 100% python frontend (no react, vue etc).
Any suggestions?
/r/django
https://redd.it/1dwnf3p
Hi,
I'm currently using flask + dash bootstrap components for my app.
I'm looking for a 100% python frontend (no react, vue etc).
Any suggestions?
/r/django
https://redd.it/1dwnf3p
Reddit
From the django community on Reddit
Explore this post and more from the django community
Shed Skin restricted-Python-to-C++-compiler 0.9.9
I have just released version 0.9.9 of Shed Skin, a restricted-Python-to-C++ compiler. It comes with a whole host of small improvements, and also a nice new (constructive solid geometry) example, which becomes about 15 times faster on my system (not 15%.. 15 times!).
If you think this is a cool project, please consider helping out. There is always enough work (low-hanging fruit even) on both the Python and C++ side.
/r/Python
https://redd.it/1dwkz20
I have just released version 0.9.9 of Shed Skin, a restricted-Python-to-C++ compiler. It comes with a whole host of small improvements, and also a nice new (constructive solid geometry) example, which becomes about 15 times faster on my system (not 15%.. 15 times!).
If you think this is a cool project, please consider helping out. There is always enough work (low-hanging fruit even) on both the Python and C++ side.
/r/Python
https://redd.it/1dwkz20
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
zealot: prevent N+1 queries in Django
hey everyone!
i just released zealot, a library for detecting N+1 queries in your Django project.
i've wanted something like this for a long time. there are some similar libraries out there, but none of them did everything i wanted, and the most popular would miss certain types of N+1.
zealot is pretty simply: install it, and it'll raise an exception (or log a warning) whenever it detects an N+1 query, with a helpful error message so you can fix it and be on your way.
all feedback is very welcome!
/r/django
https://redd.it/1dwvpjo
hey everyone!
i just released zealot, a library for detecting N+1 queries in your Django project.
i've wanted something like this for a long time. there are some similar libraries out there, but none of them did everything i wanted, and the most popular would miss certain types of N+1.
zealot is pretty simply: install it, and it'll raise an exception (or log a warning) whenever it detects an N+1 query, with a helpful error message so you can fix it and be on your way.
all feedback is very welcome!
/r/django
https://redd.it/1dwvpjo
GitHub
GitHub - taobojlen/zealot: Detect N+1s in your Django app.
Detect N+1s in your Django app. Contribute to taobojlen/zealot development by creating an account on GitHub.
Tango with Django
I cant buy tango with Django 2023 version, but i got access to 2017 version of the book. Can i read and do django for this or is there any major difference to the both. (I am a initial learner of django)
/r/djangolearning
https://redd.it/1dvbjoa
I cant buy tango with Django 2023 version, but i got access to 2017 version of the book. Can i read and do django for this or is there any major difference to the both. (I am a initial learner of django)
/r/djangolearning
https://redd.it/1dvbjoa
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
I made a Python library to plot chemical trends | Plotium
# What does my Project do?
Plotium is a python library used to plot chemical trends like Atomic radii, Electronegativity, etc of specific parts of the periodic table, like types of elements, group or a specific block.
Right now, Plotium can plot trends of:
1. Electronegativity
2. Density
3. Atomic Radii
4. Melting Point
5. Boiling Point
Divided into:
1. Block Wise (S,P,D,F)
2. Types (Actinoids, Lanthanoids, etc)
3. Groups (1 - 18)
# Target Audience
Students/people who love chemistry. This library will also be useful for teaching students several exceptions and trends.
# Comparison
I haven't seen any trend plotter other than one hotmap plotter. But what I'm aiming is graphing these trends.
# GitHub
GitHub Link: https://github.com/rohankishore/Plotium
/r/Python
https://redd.it/1dwy0bg
# What does my Project do?
Plotium is a python library used to plot chemical trends like Atomic radii, Electronegativity, etc of specific parts of the periodic table, like types of elements, group or a specific block.
Right now, Plotium can plot trends of:
1. Electronegativity
2. Density
3. Atomic Radii
4. Melting Point
5. Boiling Point
Divided into:
1. Block Wise (S,P,D,F)
2. Types (Actinoids, Lanthanoids, etc)
3. Groups (1 - 18)
# Target Audience
Students/people who love chemistry. This library will also be useful for teaching students several exceptions and trends.
# Comparison
I haven't seen any trend plotter other than one hotmap plotter. But what I'm aiming is graphing these trends.
# GitHub
GitHub Link: https://github.com/rohankishore/Plotium
/r/Python
https://redd.it/1dwy0bg
GitHub
GitHub - rohankishore/Plotium: Python Library to plot Chemical Periodic Trends
Python Library to plot Chemical Periodic Trends. Contribute to rohankishore/Plotium development by creating an account on GitHub.
Do not know how to speedup your code? Just distribute!
Hi all!
I have created just-distribute package aimed mainly at those at the beginning of their Python journey, but it may be handy also for advanced users.
https://github.com/jakubgajski/just\_distribute
It is basically wrapping up popular libraries / approaches to speeding up code into one handy decorator \\@distribute.
I would appreciate any suggestions and feedback! Hope it will help someone :)
/r/Python
https://redd.it/1dwzx4j
Hi all!
I have created just-distribute package aimed mainly at those at the beginning of their Python journey, but it may be handy also for advanced users.
pip install just-distributehttps://github.com/jakubgajski/just\_distribute
It is basically wrapping up popular libraries / approaches to speeding up code into one handy decorator \\@distribute.
I would appreciate any suggestions and feedback! Hope it will help someone :)
/r/Python
https://redd.it/1dwzx4j
GitHub
GitHub - jakubgajski/just_distribute: Have a function doing stuff too long? Just distribute!
Have a function doing stuff too long? Just distribute! - jakubgajski/just_distribute