swapi-python
swapi-python copied to clipboard
The Python helper library for swapi.co
Bumps [ujson](https://github.com/ultrajson/ultrajson) from 1.33 to 5.4.0. Release notes Sourced from ujson's releases. 5.4.0 Added Add support for arbitrary size integers (#548) @JustAnotherArchivist Fixed CVE-2022-31116: Replace wchar_t string decoding implementation with...
The base API URL ending in .co was deprecated. The new url ends in .dev. This PR updates that in settings.py
Bumps [pygments](https://github.com/pygments/pygments) from 2.0.1 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...
I have created this pull request because the pull request #10, created by @bibajz. This PR has not been active since since August of last year but all the credit...
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 3.11 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...
Bumps [jinja2](https://github.com/pallets/jinja) from 2.7.3 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...
Library was not functioning with `swapi.settings.BASE_URL` set to `swapi.co/api`. This PR - replaces all mentions of `swapi.co` with `swapi.dev` - unpins the version requirements for installation - bumps the version...
Unfortulately swapi.co is not maintained anymore, and the service is currently down. This is an branch of SWAPI that will be supported going forward.
Faction resource is being added to swapi, this helper library needs to support it.
from django.shortcuts import render # Create your views here. def index(request): import swapi films = swapi.get_all("films") context = { 'list': films } return render( request, 'index.html', context) Internal Server Error:...