Merge branch 'master' into neo

This commit is contained in:
alphatownsman 2022-07-29 21:27:20 -04:00 committed by GitHub
commit 53f53ec6fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

18
README.md Normal file
View file

@ -0,0 +1,18 @@
# Boofilsic
An application allows you to mark any books, movies and more things you love.
Depends on Mastodon.
## Contribution
The project is based on Django. If you are familiar with this technique and willing to read through the terrible code😝, your contribution would be the most welcome!
Currently looking for someone to help with:
- Writing instrucations on how to deploy this
- Explaining the structure of code
- Refactoring (this is something big)
This project is still in its early stage, so you are not encouraged to deploy it on your own. If you do want to give it a try, please check the [fork of *alphatownsman*](https://github.com/alphatownsman/boofilsic), which is more friendly.
## Sponsor
If you like this project, please consider sponsoring us on [Patreon](https://patreon.com/tertius).

View file

@ -5,10 +5,17 @@ import logging
import re
import dateparser
import datetime
import time
import filetype
import dns.resolver
import urllib.parse
from lxml import html
from threading import Thread
from boofilsic.settings import LUMINATI_USERNAME, LUMINATI_PASSWORD, DEBUG, IMDB_API_KEY, SCRAPERAPI_KEY
from boofilsic.settings import SPOTIFY_CREDENTIAL
from django.utils import timezone
from django.utils.translation import ugettext_lazy as _
from django.core.exceptions import ObjectDoesNotExist, ValidationError
from django.core.files.uploadedfile import SimpleUploadedFile
from common.models import SourceSiteEnum
from django.conf import settings