https://github.com/mkbeh/cryptolab
In developing...
https://github.com/mkbeh/cryptolab
Last synced: over 1 year ago
JSON representation
In developing...
- Host: GitHub
- URL: https://github.com/mkbeh/cryptolab
- Owner: mkbeh
- License: mit
- Created: 2018-08-14T16:09:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:22:14.000Z (over 3 years ago)
- Last Synced: 2025-01-29T19:48:50.503Z (over 1 year ago)
- Language: Python
- Size: 1.68 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CRyptoLab
In developing...
#### Kivy
```angular2html
Change code block in file kivy.loader.py:318 from:
fd = urllib_request.urlopen(filename)
to:
req = urllib_request.Request(filename, headers={'User-Agent': 'Mozilla/5.0'})
fd = urllib_request.urlopen(req)
Because async getting images from internet not working without headers in urllib_request.
```