Compare commits
12 Commits
22c1cca4ea
...
ef858dbb8d
Author | SHA1 | Date |
---|---|---|
NandaScott | ef858dbb8d | |
NandaScott | dda04ac0fa | |
Nanda Scott | bb126f92cd | |
Nanda Scott | 6d7a0016ad | |
Pedro Lamkowski | 36f40268d2 | |
Nanda Scott | 3cc35bf526 | |
NandaScott | 465a23a673 | |
Nanda Scott | cc0c976583 | |
NandaScott | e61753037b | |
NandaScott | ac6167a4ce | |
Nanda Scott | db147f81a2 | |
Nanda Scott | b46bc772db |
|
@ -6,10 +6,10 @@ name: Upload Python Package
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -24,8 +24,8 @@ jobs:
|
||||||
pip install setuptools wheel twine
|
pip install setuptools wheel twine
|
||||||
- name: Build and publish
|
- name: Build and publish
|
||||||
env:
|
env:
|
||||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
TWINE_USERNAME: __token__
|
||||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
python setup.py sdist bdist_wheel
|
python setup.py sdist bdist_wheel
|
||||||
twine upload dist/*
|
twine upload dist/*
|
||||||
|
|
|
@ -7,7 +7,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
|
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
# **class** `scrython.catalog.AbilityWords()`
|
||||||
|
|
||||||
|
These docs will likely not be as detailed as the official Scryfall Documentation, and you should reference that for more information.
|
||||||
|
|
||||||
|
>In the event that a key isn't found or has been changed, you can access the full JSON output with the `scryfallJson` variable (`AbilityWords().scryfallJson`).
|
||||||
|
|
||||||
|
## Args
|
||||||
|
|
||||||
|
|arg|type|description|
|
||||||
|
|:---:|:---:|:---:|
|
||||||
|
|
||||||
|
## Returns
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Raises
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
```python
|
||||||
|
>>> catalog = scrython.catalog.KeywordAbilities()
|
||||||
|
>>> catalog.data()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Methods
|
||||||
|
|
||||||
|
---
|
||||||
|
### `data()`
|
||||||
|
|
||||||
|
```
|
||||||
|
A list of all types returned by the endpoint
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
list
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `object()`
|
||||||
|
|
||||||
|
```
|
||||||
|
Returns the type of object it is
|
||||||
|
(card, error, etc)
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `total_values()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The number of items in `data()`
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
integer
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `uri()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The API URI for the endpoint you've called.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
|
@ -0,0 +1,66 @@
|
||||||
|
# **class** `scrython.catalog.KeywordAbilities()`
|
||||||
|
|
||||||
|
These docs will likely not be as detailed as the official Scryfall Documentation, and you should reference that for more information.
|
||||||
|
|
||||||
|
>In the event that a key isn't found or has been changed, you can access the full JSON output with the `scryfallJson` variable (`KeywordAbilities().scryfallJson`).
|
||||||
|
|
||||||
|
## Args
|
||||||
|
|
||||||
|
|arg|type|description|
|
||||||
|
|:---:|:---:|:---:|
|
||||||
|
|
||||||
|
## Returns
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Raises
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
```python
|
||||||
|
>>> catalog = scrython.catalog.KeywordAbilities()
|
||||||
|
>>> catalog.data()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Methods
|
||||||
|
|
||||||
|
---
|
||||||
|
### `data()`
|
||||||
|
|
||||||
|
```
|
||||||
|
A list of all types returned by the endpoint
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
list
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `object()`
|
||||||
|
|
||||||
|
```
|
||||||
|
Returns the type of object it is
|
||||||
|
(card, error, etc)
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `total_values()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The number of items in `data()`
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
integer
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `uri()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The API URI for the endpoint you've called.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
|
@ -0,0 +1,66 @@
|
||||||
|
# **class** `scrython.catalog.KeywordActions()`
|
||||||
|
|
||||||
|
These docs will likely not be as detailed as the official Scryfall Documentation, and you should reference that for more information.
|
||||||
|
|
||||||
|
>In the event that a key isn't found or has been changed, you can access the full JSON output with the `scryfallJson` variable (`KeywordActions().scryfallJson`).
|
||||||
|
|
||||||
|
## Args
|
||||||
|
|
||||||
|
|arg|type|description|
|
||||||
|
|:---:|:---:|:---:|
|
||||||
|
|
||||||
|
## Returns
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Raises
|
||||||
|
N/A
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
```python
|
||||||
|
>>> catalog = scrython.catalog.KeywordActions()
|
||||||
|
>>> catalog.data()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Methods
|
||||||
|
|
||||||
|
---
|
||||||
|
### `data()`
|
||||||
|
|
||||||
|
```
|
||||||
|
A list of all types returned by the endpoint
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
list
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `object()`
|
||||||
|
|
||||||
|
```
|
||||||
|
Returns the type of object it is
|
||||||
|
(card, error, etc)
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `total_values()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The number of items in `data()`
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
integer
|
||||||
|
|
||||||
|
```
|
||||||
|
---
|
||||||
|
### `uri()`
|
||||||
|
|
||||||
|
```
|
||||||
|
The API URI for the endpoint you've called.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
string
|
||||||
|
|
||||||
|
```
|
|
@ -33,6 +33,10 @@ from scrython.catalog import Toughnesses
|
||||||
from scrython.catalog import Watermarks
|
from scrython.catalog import Watermarks
|
||||||
from scrython.catalog import WordBank
|
from scrython.catalog import WordBank
|
||||||
from scrython.catalog import ArtistNames
|
from scrython.catalog import ArtistNames
|
||||||
|
from scrython.catalog import KeywordAbilities
|
||||||
|
from scrython.catalog import KeywordActions
|
||||||
|
from scrython.catalog import AbilityWords
|
||||||
|
|
||||||
|
|
||||||
#Import symbology
|
#Import symbology
|
||||||
from scrython.symbology import ParseMana
|
from scrython.symbology import ParseMana
|
||||||
|
@ -77,4 +81,7 @@ __all__ = [
|
||||||
'Symbology',
|
'Symbology',
|
||||||
'BulkData',
|
'BulkData',
|
||||||
'ScryfallError',
|
'ScryfallError',
|
||||||
|
'KeywordAbilities',
|
||||||
|
'KeywordActions',
|
||||||
|
'AbilityWords'
|
||||||
]
|
]
|
||||||
|
|
|
@ -11,6 +11,9 @@ from .toughnesses import Toughnesses
|
||||||
from .watermarks import Watermarks
|
from .watermarks import Watermarks
|
||||||
from .word_bank import WordBank
|
from .word_bank import WordBank
|
||||||
from .artist_names import ArtistNames
|
from .artist_names import ArtistNames
|
||||||
|
from .keyword_abilities import KeywordAbilities
|
||||||
|
from .keyword_actions import KeywordActions
|
||||||
|
from .ability_words import AbilityWords
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'ArtifactTypes',
|
'ArtifactTypes',
|
||||||
|
@ -25,5 +28,8 @@ __all__ = [
|
||||||
'Toughnesses',
|
'Toughnesses',
|
||||||
'Watermarks',
|
'Watermarks',
|
||||||
'WordBank',
|
'WordBank',
|
||||||
'ArtistNames'
|
'ArtistNames',
|
||||||
|
'KeywordAbilities',
|
||||||
|
'KeywordActions',
|
||||||
|
'AbilityWords'
|
||||||
]
|
]
|
|
@ -0,0 +1,26 @@
|
||||||
|
from .catalogs_object import CatalogsObject
|
||||||
|
|
||||||
|
|
||||||
|
class AbilityWords(CatalogsObject):
|
||||||
|
"""
|
||||||
|
catalogs/ability-words
|
||||||
|
|
||||||
|
Catalog object for all known ability words
|
||||||
|
|
||||||
|
Args:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
>>> catalog = scrython.catalog.KeywordAbilities()
|
||||||
|
>>> catalog.data()
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self._url = 'catalog/ability-words?'
|
||||||
|
super(AbilityWords, self).__init__(self._url)
|
|
@ -0,0 +1,26 @@
|
||||||
|
from .catalogs_object import CatalogsObject
|
||||||
|
|
||||||
|
|
||||||
|
class KeywordAbilities(CatalogsObject):
|
||||||
|
"""
|
||||||
|
catalog/keyword-abilities
|
||||||
|
|
||||||
|
Catalog object for all known keyword abilities
|
||||||
|
|
||||||
|
Args:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
>>> catalog = scrython.catalog.KeywordAbilities()
|
||||||
|
>>> catalog.data()
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self._url = 'catalog/keyword-abilities?'
|
||||||
|
super(KeywordAbilities, self).__init__(self._url)
|
|
@ -0,0 +1,26 @@
|
||||||
|
from .catalogs_object import CatalogsObject
|
||||||
|
|
||||||
|
|
||||||
|
class KeywordActions(CatalogsObject):
|
||||||
|
"""
|
||||||
|
catalog/keyword-actions
|
||||||
|
|
||||||
|
Catalog object for all known keyword actions
|
||||||
|
|
||||||
|
Args:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
N/A
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
>>> catalog = scrython.catalog.KeywordActions()
|
||||||
|
>>> catalog.data()
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self._url = 'catalog/keyword-actions?'
|
||||||
|
super(KeywordActions, self).__init__(self._url)
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup
|
||||||
setup(
|
setup(
|
||||||
name='scrython',
|
name='scrython',
|
||||||
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology', 'scrython.bulk_data'],
|
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology', 'scrython.bulk_data'],
|
||||||
version='1.9.0',
|
version='1.11.0',
|
||||||
description='A wrapper for using the Scryfall API.',
|
description='A wrapper for using the Scryfall API.',
|
||||||
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
|
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
|
||||||
url='https://github.com/NandaScott/Scrython',
|
url='https://github.com/NandaScott/Scrython',
|
||||||
|
|
Loading…
Reference in New Issue