小编Mav*_*ick的帖子

在Java中阻止库

在java中是否有用于词干化的库!?

java api stemming

10
推荐指数
1
解决办法
1万
查看次数

如何使用 Faust Python 包将 kafka 主题与 Web 端点连接?

我有一个简单的应用程序,有两个功能,一个用于收听主题,另一个用于 Web 端点。我想创建服务器端事件流 (SSE),即文本/事件流,以便在客户端我可以使用 EventSource 收听它。

我现在有以下代码,其中每个函数都在执行其特定的工作:

import faust

from faust.web import Response

app = faust.App("app1", broker="kafka://localhost:29092", value_serializer="raw")
test_topic = app.topic("test")


@app.agent(test_topic)
async def test_topic_agent(stream):
    async for value in stream:
        print(f"test_topic_agent RECEIVED -- {value!r}")
        yield value


@app.page("/")
async def index(self, request):
    return self.text("yey")
Run Code Online (Sandbox Code Playgroud)

现在,我想要在索引中,像这样的代码,但使用 faust:

import asyncio
from aiohttp import web
from aiohttp.web import Response
from aiohttp_sse import sse_response
from datetime import datetime


async def hello(request):
    loop = request.app.loop
    async with sse_response(request) as resp:
        while True:
            data = 'Server Time …
Run Code Online (Sandbox Code Playgroud)

python python-3.x apache-kafka aiohttp faust

10
推荐指数
1
解决办法
2093
查看次数

如何在酶中调用多个setProps?

我有以下测试:

import React from 'react';
import { configure, shallow } from 'enzyme'
import Adapter from 'enzyme-adapter-react-16';

configure({ adapter: new Adapter() });

import ListAdapter from './ListAdapter'
import TweetCard from './TweetCard'


describe('<ListAdapter />', () => {
    let wrapper, props

    beforeEach(() => {
        props = {
            data: [{
                user: { profile_image_url: 'someimage.png', name: 'Some name' },
                created_at: 'Sat Feb 02 19:06:09 +0000 2019',
                text: 'Hello word'
            }],
        };
        wrapper = shallow(<ListAdapter  {...props} />);

    })

    it('renders without crashing', () => {
        expect(wrapper).toBeDefined();
    });

    it('renders …
Run Code Online (Sandbox Code Playgroud)

reactjs jestjs enzyme react-props

9
推荐指数
1
解决办法
343
查看次数

使用java从字符串中删除html标记

我正在编写一个程序来读取和分离垃圾邮件和电子邮件.现在我正在使用bufferedreader类java来阅读它.我可以删除任何不需要的字符,如'('或'.'等,使用replaceAll()方法.我也想删除html标签,包括&.如何实现这个!?

谢谢

编辑:感谢您的回复,但我已经有了一个正则表达式,如何结合我的需求并加入一个.继续我正在使用的正则表达式.

lines.replaceAll("[^a-zA-Z]", " ")
Run Code Online (Sandbox Code Playgroud)

注意:我从txt文件中获取行.还有其他任何建议吗?!

html java string

8
推荐指数
2
解决办法
5万
查看次数

django国家货币代码

django_countries用来显示国家列表.现在,我有一个要求,我需要根据国家显示货币.挪威 - 挪威克朗,欧洲和非洲(除英国外) - 欧元,英国 - 英镑,美国和亚洲 - 美元.

这可以通过django_countries项目实现吗?或者我可以使用python或django中的其他软件包吗?

任何其他解决方案也受到欢迎.

---------------------------更新-------------主要重点在于获得很多解决方案: Norway - NOK, Europe & Afrika (besides UK) - EUR, UK - GBP, AMERICAS & ASIA - USDs.

---------------------------- SOLUTION --------------------- -----------

我的解决方案很简单,当我意识到我无法获得任何ISO格式或包来获得我想要的东西时,我想编写自己的脚本.它只是一个基于条件的逻辑:

from incf.countryutils import transformations
def getCurrencyCode(self, countryCode):
        continent = transformations.cca_to_ctn(countryCode)
        # print continent
        if str(countryCode) == 'NO':
            return 'NOK'

        if str(countryCode) == 'GB':
            return 'GBP'

        if (continent == 'Europe') or (continent == 'Africa'):
            return 'EUR'

        return 'USD'
Run Code Online (Sandbox Code Playgroud)

不知道这是否有效,想听听一些建议.

感谢大家!

python django python-2.7 django-1.5 django-countries

8
推荐指数
1
解决办法
4523
查看次数

如何使用jquery获取父元素的文本?

我有一个包含删除超链接的div,点击它,我想要div标签的文本.怎么可能在jquery?!

<div>sometext<a href="#">delete</a></div>
Run Code Online (Sandbox Code Playgroud)

我想得到div标签'sometext'的文本,如果可能的话,也是div的id.有任何想法吗?!

ajax jquery text parent

7
推荐指数
1
解决办法
2万
查看次数

从另一个应用加载自定义标记过滤器

我真的很困惑,我怎么能从另一个应用程序加载自定义标签过滤器.我有类似这样的问题从另一个应用程序加载自定义模板标签? 并且,我以同样的方式这样做,但它仍然没有加载,我收到此错误:

TemplateSyntaxError at /
'fillme_tag' is not a valid tag library: Template library fillme_tag not found, tried django.templatetags.fillme_tag,django.contrib.staticfiles.templatetags.fillme_tag,fillme.templatetags.fillme_tag
Run Code Online (Sandbox Code Playgroud)

我也在应用程序设置安装了应用程序.我尝试使用以下提到的各种方式加载它:{%load fillme_tag%} {%load fillme.fillme_tag%} #filleme是appname.

结构如下:

my_project:
    app1:
        templates:
            index.html (this is where i want to load custom tag)
        views.py
        __init__.py
    fillme:
        templatetags:
            __init__.py
            fillme_tag.py (the tag lib)
        __init__.py
Run Code Online (Sandbox Code Playgroud)

----- fillme_tag.py的内容----

from django import template

register = template.Library()

@register.filter(name='demotag')
def demotag(value):
    return value
Run Code Online (Sandbox Code Playgroud)

django django-templates django-filter django-1.5

7
推荐指数
1
解决办法
3228
查看次数

How to switch cameras in PWA app built with reactjs?

I have a code which records or uploads the videos. The app is built using create-react-app and is a PWA. I have used facingMode constraint but it still doesnt switch cameras on mobile phone (Samung fold 2) even in motorola phone it doesnt have the same affect. Here is the code:

import React, { useState, useEffect, useRef } from 'react';
import ReactDOM from 'react-dom';
import axios from 'axios';

import config from '../../config';


const MediaRecorderCapture = props => {
  const [mediaRecorder, …
Run Code Online (Sandbox Code Playgroud)

html5-video samsung-mobile reactjs web-mediarecorder progressive-web-apps

7
推荐指数
1
解决办法
231
查看次数

在django中将自定义html添加到choicefield标签

我现在正在努力满足要求,我想在选择字段标签上添加一个图像,我真的不知道如何做到这一点.我正在使用django表单向导来呈现表单.这是显示我想要实现的目标的图像: 在此输入图像描述

这就是我现在所拥有的(使内置单选按钮,我知道它可以通过css实现): 在此输入图像描述

这是forms.py:

from django import forms
from django.utils.translation import gettext as _


CHOICES=[('0','Pay by card'), ('1','Invoice')]




class PaymentForm(forms.Form):
    title = 'payment'
    payment_method = forms.ChoiceField(label = _("Payment Options"), choices=CHOICES, widget=forms.RadioSelect(), required = True)
Run Code Online (Sandbox Code Playgroud)

我使用向导形式渲染:

 {{ wizard.form.payment_method.label_tag }}
                                {{ wizard.form.payment_method|safe }}
                                {{ wizard.form.payment.errors}}
Run Code Online (Sandbox Code Playgroud)

除了自定义小部件之外,任何人都对此有任何建议吗?

django django-forms django-formwizard django-1.5

6
推荐指数
1
解决办法
3320
查看次数

Django存储亚马逊S3给出了400个不良请求异常

这是我第一次将AWS S3用于媒体存储.该应用程序托管在Heroku中,对于静态文件它不是一个问题所以我不想更改静态文件,但希望应用程序用户上传我希望存储在S3中的文件和图像.到目前为止我已经花了2-3天没有找到合适的解决方案,因为我没有正当理由得到400例.这是我提到的文档:http: //tech.marksblogg.com/file-uploads-amazon-s3-django.html 所以,我的设置现在:

DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'

AWS_S3_ACCESS_KEY_ID='dummyid'
AWS_S3_SECRET_ACCESS_KEY='dummykey'
AWS_STORAGE_BUCKET_NAME='dummyname'
AWS_QUERYSTRING_AUTH = False
AWS_HEADERS = {'Cache-Control': 'max-age=86400', }
MEDIAFILES_LOCATION = 'media'
MEDIA_URL = 'http://%s.s3.amazonaws.com/media/' % AWS_STORAGE_BUCKET_NAME
Run Code Online (Sandbox Code Playgroud)

我的模特:

class DummyDocuments(models.Model): document = models.FileField(upload_to='documents')

我的表格:

class DummyUploadForm(forms.Form): documents = forms.FileField(widget=forms.ClearableFileInput(attrs={'multiple': True}))

以下是我使用它的视图:

def upload(request):
    if request.method == 'POST':
        form = DummyUploadForm(request.POST, request.FILES)
        if form.is_valid():
            files = request.FILES.getlist('documents')
            for file in files:
                instance = DummyDocuments(document=file)
                instance.save()
            return redirect('activation_upload')
    else:
        form = DummyUploadForm()

    documents = DummyDocuments.objects.all()

    return render(request, 'activation/dummyupload.html', {'form': form, 'documents': …
Run Code Online (Sandbox Code Playgroud)

django amazon-s3 boto python-2.7 django-1.8

6
推荐指数
1
解决办法
1108
查看次数