Удаление HTML-кода в тексте и перевод его на другой язык в Python - PullRequest
0 голосов
/ 30 мая 2019

Я настроил функцию в моих Django представлениях, которая запрашивает данные у API и сохраняет их в моей базе данных, но у меня проблема с форматом данных.

Цель довольно проста: удалить весь код html и перевести данные описания перед сохранением в моей базе данных.

Вот пример текущего формата описания:

<ul>\n  <li>\n  <p>Based on the legendary Roald Dahl’s classic children’s book of the same name, “Matilda! The Musical” is all about little Matilda Wormwood, an extremely smart and bright girl whose genius is unfortunately, unrecognized by her dull parents.</p></li>\n  <li>\n  <p>Meet other characters you will love to hate such as the wicked Mrs. Trunchbull, her evil headmistress and meet Miss Honey, the only one who understands love Matilda with her sharp mind and vivid imagination</p></li>\n  <li>\n  <p>\"Once in a blue moon, a show comes out blazing and restores your faith in Broadway. 'Matilda The Musical' is that show\" <strong>-Elisabeth Vincentelli, NEW YORK POST</strong></p></li>\n  <li>\n  <p>Winner of <strong>5 Tony Awards</strong> and <strong>7 Olivier Awards</strong></p></li>\n</ul>\n<p><strong>FAQ's</strong></p>\n<p>1) <strong>Is there a possibility that I will get partial view seating with my Matilda tickets?</strong></p>\n<p>No, you will only receive full view seats. Although, there are a few seats in the Balcony section that have a thin structural pipe within eyesight. This, however, will not hamper your view or affect your show experience.</p>\n<p>2) <strong>Is there a dress code for Matilda The Musical?</strong></p>\n<p>Smart casual is recommended for Matilda The Musical. Keep in mind the theater is air conditioned throughout the year and can get a bit chilly. </p>\n<p>3) <strong>Is there a minimum age requirement to watch Matilda The Musical?</strong></p>\n<p>All guests require a ticket, regardless of age (for which there is no minimum requirement). We recommend children be at least 6 years of age to attend a performance of Matilda.</p>\n<p>4) <strong>Is the ticket price for children different than adults?</strong></p>\n<p>No, children will have to purchase a full priced ticket.</p>\n<p>5) <strong>Does the Shubert Theater have wheelchair accessible seating?</strong></p>\n<p>Wheelchair accessible seating is available at the Shubert Theater; however, seats are subject to availability. </p>\n<p>6) <strong>What is Matilda The Musical's duration and will there be an intermission?</strong></p>\n<p>The show runs for 2 hours and 30 minutes, with one intermission. </p>\n<p>7) <strong>Can we bring outside food into the Shubert Theater?</strong></p>\n<p>Food and beverages from outside are strictly prohibited.</p>\n<p>8) <strong>Can I can bring a bag, luggage, camera etc.?</strong> </p>\n<p>No large pieces of luggage are allowed inside, but you can check them in at the Secure Baggage Area, located near the entrance. Handbags, cameras, and other small accessories are allowed inside. If carrying a camera, be sure to keep it in your bag at all times. Photography is strictly prohibited inside the theater. </p>\n<p>9) <strong>When should I arrive at the theater?</strong></p>\n<p>We recommend reaching the theater 30 minutes before curtain time. Performances begin promptly at the time stated on your ticket and the theater reserves the right to deny entry if you are late. </p>\n<p>10) <strong>Will my Matilda The Musical seats be together?</strong></p>\n<p>Yes, we always make sure your reservation seats are together. Keep in mind, many theaters use an odd and even-numbered sequence for seating. </p>

И ожидаемый результат должен выглядеть следующим образом (убрав все <p><h><ul><li><strong>, чтобы получить его как необработанный текст и перевести его на французский):

Basé sur le légendaire livre pour enfants du légendaire Roald Dahl, «Matilda! «La comédie musicale» parle de la petite Matilda Wormwood, une fille extrêmement intelligente et brillante dont le génie n’est malheureusement pas reconnu par ses parents ternes. Chérie, la seule personne qui comprend l'amour de Matilda avec son esprit vif et son imagination débordante. "Une fois dans une lune bleue, un spectacle s'enflamme et rétablit votre confiance en Broadway." , NEW YORK POST \ n Gagnant de 5 Tony Awards et de 7 Olivier Awards \ n \ nFaq \ n1) Puis-je avoir une vue partielle avec mes billets Matilda? \ NNon, vous ne recevrez que des places avec vue complète. Bien que quelques sièges dans la section Balcon aient un mince tuyau structurel à portée de vue. Ceci, cependant, ne gênera pas votre vue et n'affectera pas votre expérience de spectacle. \ N2) Existe-t-il un code vestimentaire pour Matilda The Musical? \ NLe chic décontracté est recommandé pour Matilda The Musical. Gardez à l'esprit que le théâtre est climatisé toute l'année et peut être un peu froid. \ n3) Existe-t-il un âge minimum pour regarder Matilda The Musical? \ nTous les clients ont besoin d'un billet, quel que soit leur âge (pour lequel il n'y a pas d'exigence minimale). Nous recommandons aux enfants d’avoir au moins 6 ans pour assister à une représentation de Matilda. \ N4) Le prix du billet pour les enfants est-il différent de celui des adultes? \ NNon, les enfants devront acheter un billet au tarif complet. \ N> 5) Le théâtre Shubert a des sièges accessibles aux fauteuils roulants? \ n Des sièges accessibles en fauteuil roulant sont disponibles au théâtre Shubert; Cependant, les places sont soumises à disponibilité. \ n6) Quelle est la durée de Matilda The Musical et il y aura un entracte? \ nLe spectacle dure 2 heures et 30 minutes, avec un entracte. \ n7) Pouvons-nous apporter de la nourriture de l'extérieur dans le théâtre Shubert? \ nLa nourriture et les boissons de l'extérieur sont strictement interdites. \ n8) Puis-je apporter un sac, un bagage, un appareil photo, etc.?

Это моя защита из моих просмотров Джанго:

def api_data(request):
    if request.GET.get('mybtn'):
        resp_1 = requests.get(
            "https://www.headout.com/api/public/v1/product/listing/list-by/city?language=en&cityCode=PARIS&limit=5000&currencyCode=CAD",
            headers={
                "Headout-Auth": HEADOUT_TEST_API_KEY
            })
        resp_1_data = resp_1.json()
        base_url_2 = "https://www.test-headout.com/api/public/v1/product/get/"

        for item in resp_1_data['items']:
            # concat ID to the URL string
            url = '{}{}'.format(base_url_2, item['id'])

            # make the HTTP request
            resp_2 = requests.get(
                url,
                headers={
                    "Headout-Auth": HEADOUT_TEST_API_KEY
                })
            resp_2_data = resp_2.json()

            Product.objects.get_or_create(
                title=item['name'],
                destination=item['city']['name'],
                description=resp_2_data['contentListHtml'][0]['html'], # this is what needs to be formated
                link=item['canonicalUrl'],
                image=item['image']['url']
            )

    return render(request, "form.html")

И мои модели Django:

class Product(models.Model):
    destination = models.CharField(max_length=255, default='')
    title = models.CharField(max_length=255, default='')
    slug = models.SlugField(null=True, blank=True, unique=True, max_length=255, default='')
    description = models.TextField(max_length=2000, default='')
    link = models.TextField(max_length=500, default='')

    ptags = TaggableManager()

    image = models.ImageField(max_length=500, default='images/zero-image-found.png')
    timestamp = models.DateTimeField(auto_now=True)

    def get_absolute_url(self):
        return reverse('experience',
                       kwargs={'slug': self.slug})

    def save(self, *args, **kwargs):
        if not self.id:
            self.slug = slugify(self.title)
        super(Product, self).save(*args, **kwargs)

    def __str__(self):
        return self.destination

Как мне этого добиться? Для этого есть какие-нибудь модули Python?

...