Django Experiment: Packaging django projects as debian packages
https://github.com/ebsuku/python3-qoqa
/r/django
https://redd.it/8a23gc
https://github.com/ebsuku/python3-qoqa
/r/django
https://redd.it/8a23gc
GitHub
ebsuku/python3-qoqa
python application to package django projects as debian(.deb) packages - ebsuku/python3-qoqa
awesome-jupyter: A curated list of awesome Jupyter projects, libraries and resources on GitHub.
https://github.com/markusschanta/awesome-jupyter
/r/IPython
https://redd.it/8a00ik
https://github.com/markusschanta/awesome-jupyter
/r/IPython
https://redd.it/8a00ik
GitHub
GitHub - markusschanta/awesome-jupyter: A curated list of awesome Jupyter projects, libraries and resources
A curated list of awesome Jupyter projects, libraries and resources - markusschanta/awesome-jupyter
Clustering Based Unsupervised Learning
https://medium.com/@sadatnazrul/clustering-based-unsupervised-learning-8d705298ae51
/r/pystats
https://redd.it/8a3xvx
https://medium.com/@sadatnazrul/clustering-based-unsupervised-learning-8d705298ae51
/r/pystats
https://redd.it/8a3xvx
Towards Data Science
Clustering Based Unsupervised Learning
Unsupervised machine learning is the machine learning task of inferring a function to describe hidden structure from “unlabeled” data (a…
Learn Flask from these recommended Resources
https://hackr.io/tutorials/learn-flask?sort=upvotes&type_tags%5B%5D=1
/r/flask
https://redd.it/89z4hf
https://hackr.io/tutorials/learn-flask?sort=upvotes&type_tags%5B%5D=1
/r/flask
https://redd.it/89z4hf
Hackr.io
Learn Flask - Best Flask Tutorials | Hackr.io
Learning Flask? Check out these best online Flask courses and tutorials recommended by the programming community. Pick the tutorial as per your learning style: video tutorials or a book. Free course or paid. Tutorials for beginners or advanced learners. Check…
How do I set a redirect URL to be localhost if debug is true or the production URL if debug is false?
I remember stumbling across an SO post about this but I can't find it anymore. :(
I remember seeing there was a way to at least code in a way to serve static files via local or S3 depending on the value of debug. Anyone know how to do this?
/r/flask
https://redd.it/8a5k8t
I remember stumbling across an SO post about this but I can't find it anymore. :(
I remember seeing there was a way to at least code in a way to serve static files via local or S3 depending on the value of debug. Anyone know how to do this?
/r/flask
https://redd.it/8a5k8t
reddit
How do I set a redirect URL to be localhost if debug is... • r/flask
I remember stumbling across an SO post about this but I can't find it anymore. :( I remember seeing there was a way to at least code in a way to...
LOGGING not writing to file
I'm trying to set up logging in my app and I can't seem to get it to write to a file, am I missing something obvious?
Let's assume my applications is named myApp and that i have `debug.log` there
thanks in advance!
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'console': {
'level': 'INFO',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
},
'file': {
'level': 'INFO',
'class': 'logging.FileHandler',
'filename': 'debug.log',
},
},
'loggers': {
'myApp': {
'handlers': ['file'],
'propagate': True,
},
'myApp.request': {
'handlers': ['console', 'file'],
'level': 'ERROR',
'propagate': False,
},
}
}
/r/djangolearning
https://redd.it/8a4vu2
I'm trying to set up logging in my app and I can't seem to get it to write to a file, am I missing something obvious?
Let's assume my applications is named myApp and that i have `debug.log` there
thanks in advance!
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'console': {
'level': 'INFO',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
},
'file': {
'level': 'INFO',
'class': 'logging.FileHandler',
'filename': 'debug.log',
},
},
'loggers': {
'myApp': {
'handlers': ['file'],
'propagate': True,
},
'myApp.request': {
'handlers': ['console', 'file'],
'level': 'ERROR',
'propagate': False,
},
}
}
/r/djangolearning
https://redd.it/8a4vu2
reddit
LOGGING not writing to file • r/djangolearning
I'm trying to set up logging in my app and I can't seem to get it to write to a file, am I missing something obvious? Let's assume my...
Job Opening
Would this be the best subreddit to find a Senior Django developer for a three month contract job? Any other subreddits that this is more appropriate?
/r/django
https://redd.it/8a67iy
Would this be the best subreddit to find a Senior Django developer for a three month contract job? Any other subreddits that this is more appropriate?
/r/django
https://redd.it/8a67iy
reddit
Job Opening • r/django
Would this be the best subreddit to find a Senior Django developer for a three month contract job? Any other subreddits that this is more appropriate?
[AF] associating a hyperlink with a python function
How does one associate a link with a python function? I'm trying to make an application that will graph different datasets in matplotlib and display them accordingly. Essentially, when the link is clicked, I want the function to graph the according dataset, output it to an image and then display it on the webpage.
Full disclosure: I'm an absolute noob when it comes to Flask but I know some python and html/css. I'm mainly trying to make a gui for a python app I'm writing but I couldn't figure out Kivy with the amount of time I have and figured this might be a better option.
Thanks in advance
/r/flask
https://redd.it/8a0k3g
How does one associate a link with a python function? I'm trying to make an application that will graph different datasets in matplotlib and display them accordingly. Essentially, when the link is clicked, I want the function to graph the according dataset, output it to an image and then display it on the webpage.
Full disclosure: I'm an absolute noob when it comes to Flask but I know some python and html/css. I'm mainly trying to make a gui for a python app I'm writing but I couldn't figure out Kivy with the amount of time I have and figured this might be a better option.
Thanks in advance
/r/flask
https://redd.it/8a0k3g
reddit
[AF] associating a hyperlink with a python function • r/flask
How does one associate a link with a python function? I'm trying to make an application that will graph different datasets in matplotlib and...
The Scientific Paper Is Obsolete. Here's What's Next.
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/IPython
https://redd.it/8a5vdy
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/IPython
https://redd.it/8a5vdy
The Atlantic
The Scientific Paper Is Obsolete
Here's what's next.
The Scientific Paper Is Obsolete. Here's What's Next.
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/IPython
https://redd.it/8a2kgp
https://www.theatlantic.com/science/archive/2018/04/the-scientific-paper-is-obsolete/556676/
/r/IPython
https://redd.it/8a2kgp
The Atlantic
The Scientific Paper Is Obsolete
Here's what's next.
I created a visualization of the Newton Raphson method using my open source visualization library: https://github.com/ryu577/pyray
https://www.youtube.com/watch?v=acsSIyDugP0
/r/Python
https://redd.it/8a5k9g
https://www.youtube.com/watch?v=acsSIyDugP0
/r/Python
https://redd.it/8a5k9g
GitHub
GitHub - ryu577/pyray: A 3d rendering library written completely in python.
A 3d rendering library written completely in python. - ryu577/pyray
The DOs and DON’Ts of Principal Component Analysis
https://medium.com/@sadatnazrul/the-dos-and-donts-of-principal-component-analysis-7c2e9dc8cc48
/r/pystats
https://redd.it/8a5ppx
https://medium.com/@sadatnazrul/the-dos-and-donts-of-principal-component-analysis-7c2e9dc8cc48
/r/pystats
https://redd.it/8a5ppx
Medium
The DOs and DON’Ts of Principal Component Analysis
With all the numerous Machine Learning tools available at our disposal, one of my favourite and most used algorithm is Principal Component…
Change the Jupyter Notebook font to Comic Sans
I know this might not be the place to ask this question, but I am a TA and I want to annoy my students. I found this guy [jupyter themes](https://github.com/dunovank/jupyter-themes) who changes the theme for the notebook, but to my chagrin, the themes available do not have comic sans. Would like to hear from you guys soon. Thank you!
/r/Python
https://redd.it/8a8jb8
I know this might not be the place to ask this question, but I am a TA and I want to annoy my students. I found this guy [jupyter themes](https://github.com/dunovank/jupyter-themes) who changes the theme for the notebook, but to my chagrin, the themes available do not have comic sans. Would like to hear from you guys soon. Thank you!
/r/Python
https://redd.it/8a8jb8
GitHub
GitHub - dunovank/jupyter-themes: Custom Jupyter Notebook Themes
Custom Jupyter Notebook Themes. Contribute to dunovank/jupyter-themes development by creating an account on GitHub.
The Snake and the Horse: How Wallaroo's Python API Works With Pony · Wallaroo Labs
https://blog.wallaroolabs.com/2018/04/the-snake-and-the-horse-how-wallaroos-python-api-works-with-pony/
/r/Python
https://redd.it/8a94bf
https://blog.wallaroolabs.com/2018/04/the-snake-and-the-horse-how-wallaroos-python-api-works-with-pony/
/r/Python
https://redd.it/8a94bf
Wallaroolabs
The Snake and the Horse: How Wallaroo's Python API Works With Pony
Official blog of the Wallaroo Labs Engineering team
Software Development Design Principles
https://medium.com/@sadatnazrul/software-development-design-principles-79d15ef765f3
/r/pystats
https://redd.it/8a2ll7
https://medium.com/@sadatnazrul/software-development-design-principles-79d15ef765f3
/r/pystats
https://redd.it/8a2ll7
Medium
Software Development Design Principles
When people start out as self-taught programmers, a lot of the times we think about creating an application that simply works. It works…
Stream real-time data into Excel with Python!
Hi again /r/Python!
We're [Gridarrow](https://www.gridarrow.com/), a small startup from Amsterdam. [A few months ago](https://www.reddit.com/r/Python/comments/6u9psy/stream_realtime_data_into_excel_with_python/) we've announced our product here - a platform for streaming real-time data into Excel using Python scripts.
We're happy to let you know that we're open for Beta signups now! You can join us using a form on [our website](https://www.gridarrow.com/).
[Here's how the platform works](https://www.gridarrow.com/docs/getting-started/). Also go ahead a check out [our blog](https://www.gridarrow.com/blog/) where we showcase a couple of cool things you can do with Gridarrow.
For example:
- [Streaming real-time stock prices into Excel](https://www.gridarrow.com/blog/streaming-realtime-stock-prices-into-excel/)
- [Live news sentiment analysis using pysentiment](https://www.gridarrow.com/blog/financial-news-sentiment-analysis-using-xignite-and-pysentiment/)
- [Real-time Twitter map in your spreadsheet](https://www.gridarrow.com/blog/creating-a-realtime-twitter-map/)
We're really curious to hear your feedback!
Cheers!
The Gridarrow Team
/r/Python
https://redd.it/8a97gs
Hi again /r/Python!
We're [Gridarrow](https://www.gridarrow.com/), a small startup from Amsterdam. [A few months ago](https://www.reddit.com/r/Python/comments/6u9psy/stream_realtime_data_into_excel_with_python/) we've announced our product here - a platform for streaming real-time data into Excel using Python scripts.
We're happy to let you know that we're open for Beta signups now! You can join us using a form on [our website](https://www.gridarrow.com/).
[Here's how the platform works](https://www.gridarrow.com/docs/getting-started/). Also go ahead a check out [our blog](https://www.gridarrow.com/blog/) where we showcase a couple of cool things you can do with Gridarrow.
For example:
- [Streaming real-time stock prices into Excel](https://www.gridarrow.com/blog/streaming-realtime-stock-prices-into-excel/)
- [Live news sentiment analysis using pysentiment](https://www.gridarrow.com/blog/financial-news-sentiment-analysis-using-xignite-and-pysentiment/)
- [Real-time Twitter map in your spreadsheet](https://www.gridarrow.com/blog/creating-a-realtime-twitter-map/)
We're really curious to hear your feedback!
Cheers!
The Gridarrow Team
/r/Python
https://redd.it/8a97gs
Gridarrow
Gridarrow - Live data in Excel for your team
Gridarrow pulls data from any source and updates the spreadsheets of your whole team in real-time. It's the missing server for Excel.
How can I make urls.py recognized as python file again? This way I can't use autocomplete and syntax helps
/r/django
https://redd.it/8acsvo
/r/django
https://redd.it/8acsvo
How to make your Software Development experience… painless….
https://medium.com/@sadatnazrul/how-to-make-your-software-development-experience-painless-2591ebcc69b6
/r/pystats
https://redd.it/89wuxi
https://medium.com/@sadatnazrul/how-to-make-your-software-development-experience-painless-2591ebcc69b6
/r/pystats
https://redd.it/89wuxi
Towards Data Science
How to make your Software Development experience… painless….
Working at all forms of organizations (from large software development oriented to niche start ups to academic labs), I have noticed that…