utils for Flask Web & Crawler
philosophy: DRY don't repeat yourself
install
pip3 install icecola
flask_utils
- ModelViewSet: quickly build CRUD for REST api, like django_restframework
views.py
from flask_utils.restframework import ModelViewSet
from jasmine_app.models.user import User
from jasmine_app.models.video import Video
class UserView(ModelViewSet):
model_class = User
class Video(ModelViewSet):
model_class = Video
urls.py
from jasmine_app.api.views import UserView, Video
from flask_utils.views import register_api
from . import api
register_api(api, Video, "video_api", "/video/")
register_api(api, UserView, "user_api", "/user/")
crawler utils
add cache implement for crawler
def test_mongo_cache(mongo_cache):
key1 = "key"
value1 = "value"
mongo_cache[key1] = value1
assert mongo_cache[key1] == value1
assert len(mongo_cache) == 1
assert set(mongo_cache.keys()) == {key1}
assert set(mongo_cache.values()) == {value1}
mongo_cache.destroy()
assert len(mongo_cache) == 0
Release files for icecola 0.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| icecola-0.5.tar.gz | 6.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| icecola-0.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.3 kB
Release files / icecola-0.5.tar.gz
| Download URL | icecola-0.5.tar.gz |
|---|---|
| Size | 6.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6a0e9f9b1c25052fb4efc92c12959cb9ff83e7f05d5c21114876a24c2fc641da
|
|
BLAKE2b-256 checksum How to use checksums |
0a5c968d9830690dac2968d9654f9d518f1709c1b79b60a9eaf2d26784fe4a72
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
|
Release files / icecola-0.5-py3-none-any.whl
| Download URL | icecola-0.5-py3-none-any.whl |
|---|---|
| Size | 9.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5336ba43fea34889b467c440d940f80c3f117387262e5878a3c1f9ad0c0bb944
|
|
BLAKE2b-256 checksum How to use checksums |
3762d8e4bdcab1487a4323297d3b240e6dcf3c5a9ec365c8c1317712469f9c18
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
|