background preloader

Python Wiki

Facebook Twitter

പുറത്തുചാടാന്‍ ഒരുങ്ങി പി.സി ജോര്‍ജ്; പുകച്ചു ചാടിക്കാന്‍ കരുക്കള്‍ നീക്കി കെ.എം മാണി - Express Kerala. തിരുവനന്തപുരം: ബാര്‍ അഴിമതിയില്‍ ധനമന്ത്രി കെ.എം മാണിക്ക് നേരത്തെ രാജിവയ്ക്കാമായിരുന്നുവെന്ന് വിവാദ പ്രസ്താവന നടത്തിയ ചീഫ് വിപ്പ് പി.സി ജോര്‍ജിനെ പാര്‍ട്ടിയില്‍ നിന്നും പുകച്ചു ചാടിക്കാന്‍ മാണി വിഭാഗം കളി തുടങ്ങി.

പുറത്തുചാടാന്‍ ഒരുങ്ങി പി.സി ജോര്‍ജ്; പുകച്ചു ചാടിക്കാന്‍ കരുക്കള്‍ നീക്കി കെ.എം മാണി - Express Kerala

പാര്‍ട്ടിയെ നടുക്കടലില്‍ മുക്കിയെന്ന ആരോപണം മാണിക്കുനേരെ തൊടുത്തുവിട്ട ജോര്‍ജും യുഡിഎഫ് വിട്ട് എല്‍ഡിഎഫിനൊപ്പം ചേരാനുള്ള വഴിയാണ് തിരയുന്നത്. പ്രതിപക്ഷ നേതാവ് വി.എസ് അച്യുതാനന്ദന്റെയും സിപിഎം സംസ്ഥാന സെക്രട്ടറി കോടിയേരി ബാലകൃഷ്ണന്റെയും പച്ചക്കൊടിയുണ്ടെങ്കിലും പി.ബി അംഗം പിണറായി വിജയന്‍ ഇടഞ്ഞു നില്‍ക്കുന്നതാണ് ജോര്‍ജിന്റെ ഇടതുമുന്നണി പ്രവേശനത്തിനു തടസം.

കേരള കോണ്‍ഗ്രസില്‍ മാണിയും പി.സി ജോര്‍ജ് വിഭാഗവും രണ്ടു തട്ടിലായിക്കഴിഞ്ഞു. പ്രത്യേക നിലപാടെടുക്കാതെ ഇക്കാര്യത്തില്‍ നിഷ്പക്ഷ നിലപാടാണ് പി.ജെ ജോസഫ് സ്വീകരിക്കുന്നത്. Flask by Example - Project Setup - Real Python. The following is a guest post by Cam Linke, co-founder of Startup Edmonton.

Flask by Example - Project Setup - Real Python

Welcome! Today we’re going to build an app using Flask with a simple text box that you enter text into and the app processes and displays a count of how many times each word appears on the page. Part One: Setup a local development environment and then deploy both a staging environment and a production environment on Heroku.

(Current)Part Two: Setup a PostgreSQL database along with SQLAlchemy and Alembic to handle migrations.Part Three: Add in the back-end logic to scrape and then process the counting of words from a webpage using the requests, BeautifulSoup, and Natural Language Toolkit (NLTK) libraries.Part Four: Implement a Redis task queue to handle the text processing.Part Five: Setup Angular on the front-end to continuously poll the back-end to see if the request is done.Part Six: Add the D3 library into the mix to graph a frequency distribution and histogram.

Setup This creates a new virtualenv for us. Flask by Example - Setting up Postgres, SQLAlchemy, and Alembic - Real Python. In this part we’re going to set up a Postgres database to store the results of our word counts as well as SQLAlchemy, an Object Relational Mapper, and Alembic to handle database migrations.

Flask by Example - Setting up Postgres, SQLAlchemy, and Alembic - Real Python

Updates: 03/22/2016: Upgraded to Python version 3.5.1 as well as the latest versions of Psycopg2, Flask-SQLAlchemy, and Flask-Migrate. See below for details.02/22/2015: Added Python 3 support. Remember: Here’s what we’re building – A Flask app that calculates word-frequency pairs based on the text from a given URL. Part One: Set up a local development environment and then deploy both a staging and a production environment on Heroku.Part Two: Set up a PostgreSQL database along with SQLAlchemy and Alembic to handle migrations. Need the code? Install Requirements Tools used in this part: To get started, install Postgres on your local computer, if you don’t have it already. Once you have Postgres installed and running, create a database called wordcount_dev to use as our local development database: Data Model. Saturday morning hack: a little note-taking app with Flask. A couple Saturdays ago I spent the morning hacking together a note-taking app.

Saturday morning hack: a little note-taking app with Flask

I'm really pleased with the result, so I thought I'd share the code in case anyone else might find it useful. The note-taking project idea came about out of necessity -- I wanted something that worked well from my phone. While I have a personal wiki site I've used for things like software installation notes or salsa recipes, I've also noticed that because it's so cumbersome to use from my phone, I often end up emailing things to myself. Plus a wiki implies a kind of permanence to the content, making it not a great fit for these impromptu notes. I also like to use markdown to format notes, but markdown isn't too easy on a phone because of the special characters or the need to indent blocks of text. Here is how the app appears on a narrow screen like my phone: And here it is on my laptop: If you'd just like to see the code, here is the multi-file gist. Feature review The tools Setting it up. A Weekly Python E-Mail Newsletter. Good to Great Python reads — jesse noller - a blog.

Python. Wednesday, August 13, 2014 (permalink) I'll be arriving in Argentina on August 14th.

python

I'll be speaking at PyDay Mendoza on August 15th, and sprinting on August 16th on something Audrey and I named the "new library sprint" (more details to come). On August 22nd, I'll be speaking at the combined Buenos Aires ... Read more ... Wednesday, July 23, 2014 (permalink) For various reasons I had to change some things about my Eventbrite test. Read more ... Wednesday, July 23, 2014 (permalink) Tuesday, July 01, 2014 (permalink) In Python, the @cached_property decorator is a really nice piece of code.

Read more ... Thursday, June 12, 2014 (permalink) It seems like that for every few weeks I find myself needing to generate something out of a template while working outside a framework. Read more ... Thursday, April 24, 2014 (permalink) Writing reusable code is a good thing, right? Read more ... Saturday, April 05, 2014 (permalink) Hoping to get the most out of joining thousands of Python enthusiasts? No worries!