15 lines
237 B
Python
15 lines
237 B
Python
from fet2020api import fet2020postapi
|
|
import pysolr
|
|
import python-environ
|
|
|
|
solr=pysolr.Solr('http://localhost:8980/solr/gettingstarted', always_commit=True)
|
|
|
|
|
|
# reindex posts from alpha
|
|
|
|
TARGET= "https://alpha.2020.fet.at"
|
|
|
|
|
|
|
|
solr.add()
|