Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #64602

Re: awesome slugify and unicode

From Mark Lawrence <breamoreboy@yahoo.co.uk>
Subject Re: awesome slugify and unicode
Date 2014-01-23 13:18 +0000
References <mailman.5850.1390418639.18130.python-list@python.org> <59461353-d450-471f-ae28-84f686543a57@googlegroups.com> <mailman.5878.1390468510.18130.python-list@python.org> <1e0aeb33-23b6-4af1-8447-38dc4473d09f@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.5886.1390483089.18130.python-list@python.org> (permalink)

Show all headers | View raw


On 23/01/2014 10:41, wxjmfauth@gmail.com wrote:
> Le jeudi 23 janvier 2014 10:14:48 UTC+1, Mark Lawrence a écrit :
>> On 23/01/2014 07:18, wxjmfauth@gmail.com wrote:
>>
>>> Le mercredi 22 janvier 2014 20:23:55 UTC+1, Mark Lawrence a écrit :
>>
>>>> I thought this blog might interest some of you
>>
>>>>
>>
>>>> http://pydanny.com/awesome-slugify-human-readable-url-slugs-from-any-string.html
>>
>>>>
>>
>>>> My fellow Pythonistas, ask not what our language can do for you, ask
>>
>>>>
>>
>>>> what you can do for our language.
>>
>>>>
>>
>>>
>>
>>> This is not "unicode", only string manipulations.
>>
>>> The same work could be done with, let say, cp1252.
>>
>>> The difference lies in the repertoires of characters
>>
>>> to be handled.
>>
>>>
>>
>>> A better way is to work with normalization() and/or
>>
>>> with methods like .translate() with dedicated
>>
>>> tables; the hard task being the creation of these tables.
>>
>>>
>>
>>> Shortly, very naive.
>>
>>>
>>
>>> jmf
>>
>>>
>>
>>
>>
>> You'll have to excuse my ignorance of this stuff.  How do I express the
>>
>> following in cp1252?
>>
>>
>>
>> def test_musical_notes():
>>
>>       txt = "Is ♬ ♫ ♪ ♩ a melody or just noise?"
>>
>>       assert slugify(txt) == "Is-a-melody-or-just-noise"
>>
>>       assert slugify_unicode(txt) == "Is-a-melody-or-just-noise"
>>
>>
>>
>> --
>>
>> My fellow Pythonistas, ask not what our language can do for you, ask
>>
>> what you can do for our language.
>>
>>
>
> I wrote: The same work could be done with, let say, cp1252.
> Understand: The same work (string manipulation) ...
> Would something like this not be more informative?
>
>>>> "Is ♬ ♫ ♪ ♩ a melody or just noise?".encode('ascii', 'replace').decode('ascii')
> 'Is ? ? ? ? a melody or just noise?'
>>>>
>>>>
>
> cp1252 analogy.
>
>>>> 'abc€€€'.encode('cp1252').decode('ascii', 'replace').encode('ascii', 'replace').decode('ascii')
> 'abc???'
>>>>
>
> Again, not a "unicode" question, more "how to handle strings in a judicious way?"
>
> jmf
>

Now I'm really confused.  I thought that the musical notes I've shown 
above are represented as unicode characters.  So I'd like to see how you 
jmf would represent them in cp1252.  Instead you give me an example 
showing a simple string manipulation which simply strips the characters 
that I want to see, then an even simpler example, clearly not what I've 
asked for.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

awesome slugify and unicode Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-01-22 19:23 +0000
  Re: awesome slugify and unicode wxjmfauth@gmail.com - 2014-01-22 23:18 -0800
    Re: awesome slugify and unicode Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-01-23 09:14 +0000
      Re: awesome slugify and unicode wxjmfauth@gmail.com - 2014-01-23 02:41 -0800
        Re: awesome slugify and unicode Chris Angelico <rosuav@gmail.com> - 2014-01-23 21:49 +1100
        Re: awesome slugify and unicode Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-01-23 13:18 +0000

csiph-web