What python package is accurate to detect languages and count words?

2016-02-08 Thread Allison
I am trying to detect languages, so far I have used langdetect, langid. I heard goslate is blocked by Google, is there any package as good as goslate? It was simple and direct? Or would you recommend a python package for detecting languages and counting words? Thanks in advance, Allison

How can I use tika in python 3.4

2016-02-26 Thread Allison
The python binding for tika is not working on python 3.4. How can I use tika in 3.4? Have anyone installed and use it? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, s

Djangp, Tika, API

2016-06-07 Thread Allison
I am trying to extract a plain text from pdfs using Apache Tika. I can use a python binding, python-tika, but somehow I am not sure it's an efficient way as some files can come up more than 25M. What I need is the extract text instead of sending the files themselves to the server side. The bes

Dashboard packages?

2015-11-10 Thread Allison Ahn
Hi all, I'd like to get an idea of what dashboard packages Django developers prefer or are using instead of the out-of-box admin. Al. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: Dashboard packages?

2015-11-10 Thread Allison Ahn
I am more expecting from developers' own experiences and inputs, but this will do for the time being. Thanks, luisza14 On Wednesday, November 11, 2015 at 2:24:27 PM UTC+11, luisza14 wrote: > > take a look https://www.djangopackages.com/search/?q=dashboard > > 2015-11-10 20:47

Re: MySQLdb rpm for CENTOS 5

2007-07-10 Thread Dennis Allison
Download the the source from sourceforge, untar it, and then install it using python setup.py. Be sure you use the python you use for django. On Tue, 10 Jul 2007, Sells, Fred wrote: > > I'm trying to port my django demo to Apache/mod_python on a CENTOS 5 linux > 32bit machine. > > I'm g

Re: new django site: PotterPredictions.com

2007-07-11 Thread Dennis Allison
http://www.potterpredictions.com returns "Site not configured' whereas http://potterpredictions.com takes you to content. On Wed, 11 Jul 2007, Kai Kuehne wrote: > > Hi James, > > On 7/11/07, James Tauber <[EMAIL PROTECTED]> wrote: > > > > Django users might be interested in my lastest

Re: Can Django call cscript.exe to run vbscripts

2007-07-20 Thread Dennis Allison
actually, look at module subprocess rather than os as the subprocess module contains the current best practice solution. (Check the Python 3000 docs to see what will be going away and avoid using them. :-) ) BUT, the vbscript GUI will not be available throught the web, at least not easily.

Re: Retrieval of Date and data in select text field

2020-10-08 Thread Allison Tretina
Can you show us your template, displaying your tags, and your views? On Thu, Oct 8, 2020 at 12:37 PM Eugene TUYIZERE wrote: > No one to assist please? > > Sent from my iPhone > > On 7 Oct 2020, at 19:02, Eugene TUYIZERE wrote: > > I always struggle to retrieve from database to html text field o

Re: Where can I work as a freelancer (Django dev)

2021-06-01 Thread Allison Tretina
I found someone who needed a project and asked them if they’d write me a recommendation on completion. Then, I’ve charged a bit for the second project. I’ve had to go to clients. Small businesses. They’ve never come to me, at least not yet. I served the website on my Raspberry Pi and charged for ho

Re: Problem with user.username

2020-04-23 Thread Allison Tretina
Open the python shell in your terminal. $ python3 manage.py shell Import the modules to access your admin values. >>> from django.contrib.auth import get_user_model Get the username first. >>> list(get_user_model().objects.fileter(is_superuser=True).values_list('username', flat=True)) ['someus

Re: Problem with user.username

2020-04-23 Thread Allison Tretina
I have two typos on line 6 and 9. My bad. >>> list(get_user_model().*objects.filter*(is_superuser=True).values_list('username', flat=True)) >>> list(get_user_model().*objects.filter*(is_superuser=True).values_list('password', flat=True)) On Thu, Apr 23,