fontawesome-python
fontawesome-python copied to clipboard
Easily include Font Awesome icons in your python scripts
Results
2
fontawesome-python issues
Sort by
recently updated
recently updated
newest added
#8 When the generate.py file is run, it gives this error: > TypeError: load() missing 1 required positional argument: 'Loader' I passed a `FullLoader` loader to this parameter. Before: `...
generate.py requires the following changes: (see relevant pyymal [issue](https://github.com/yaml/pyyaml/issues/576)) Importing: ` from yaml import CLoader as Loader ` Execution: ` icons_dict = yaml.load(requests.get(uri).text, Loader=Loader) ` This does not fix the...