diff --git a/scrython/bulk_data/__init__.py b/scrython/bulk_data/__init__.py index db113a9..35102b9 100644 --- a/scrython/bulk_data/__init__.py +++ b/scrython/bulk_data/__init__.py @@ -1 +1,3 @@ -from .bulk_data import BulkData \ No newline at end of file +from .bulk_data import BulkData + +__all__ = ['BulkData'] \ No newline at end of file diff --git a/scrython/cards/__init__.py b/scrython/cards/__init__.py index 8842cd6..1c748cb 100644 --- a/scrython/cards/__init__.py +++ b/scrython/cards/__init__.py @@ -7,3 +7,15 @@ from .named import Named from .randomcard import Random from .search import Search from .arena_id import ArenaId + +__all__ = [ + 'Autocomplete', + 'Collector', + 'Id', + 'Mtgo', + 'Multiverse', + 'Named', + 'Random', + 'Search', + 'ArenaId' +] \ No newline at end of file diff --git a/scrython/cards/collector.py b/scrython/cards/collector.py index c4a99e1..bd0b8cd 100644 --- a/scrython/cards/collector.py +++ b/scrython/cards/collector.py @@ -19,7 +19,7 @@ class Collector(CardsObject): Exception: If the object returned is an error. Examples: - >>> card = scrython.cards.Collector(code='exo', collector_number='96') + >>> card = scrython.cards.Collector(code="exo", collector_number="96") >>> card.id() """ def __init__(self, **kwargs): diff --git a/scrython/catalog/__init__.py b/scrython/catalog/__init__.py index 24923dc..0bf18af 100644 --- a/scrython/catalog/__init__.py +++ b/scrython/catalog/__init__.py @@ -11,3 +11,19 @@ from .toughnesses import Toughnesses from .watermarks import Watermarks from .word_bank import WordBank from .artist_names import ArtistNames + +__all__ = [ + 'ArtifactTypes', + 'CardNames', + 'CreatureTypes', + 'EnchantmentTypes', + 'LandTypes', + 'Loyalties', + 'PlaneswalkerTypes', + 'Powers', + 'SpellTypes', + 'Toughnesses', + 'Watermarks', + 'WordBank', + 'ArtistNames' +] \ No newline at end of file diff --git a/scrython/rulings/__init__.py b/scrython/rulings/__init__.py index 1b2750e..0d11107 100644 --- a/scrython/rulings/__init__.py +++ b/scrython/rulings/__init__.py @@ -2,3 +2,10 @@ from .mtgo import Mtgo from .multiverse_id import Multiverse from .scryfall_id import Id from .set_code import Code + +__all__ = [ + 'Mtgo', + 'Multiverse', + 'Id', + 'Code' +] \ No newline at end of file diff --git a/scrython/rulings/arena.py b/scrython/rulings/arena.py index e9f0448..f7153f3 100644 --- a/scrython/rulings/arena.py +++ b/scrython/rulings/arena.py @@ -23,7 +23,7 @@ class Arena(RulingsObject): N/A Examples: - >>> rule = scrython.rulings.Arena(id='66975') + >>> rule = scrython.rulings.Arena(id="66975") >>> rule.data_length() """ def __init__(self, **kwargs): diff --git a/scrython/rulings/mtgo.py b/scrython/rulings/mtgo.py index 2a1b47e..b9f11b6 100644 --- a/scrython/rulings/mtgo.py +++ b/scrython/rulings/mtgo.py @@ -23,7 +23,7 @@ class Mtgo(RulingsObject): N/A Examples: - >>> rule = scrython.rulings.Mtgo(id='9611') + >>> rule = scrython.rulings.Mtgo(id="9611") >>> rule.data_length() """ def __init__(self, **kwargs): diff --git a/scrython/rulings/multiverse_id.py b/scrython/rulings/multiverse_id.py index e2c1e92..ef5b96e 100644 --- a/scrython/rulings/multiverse_id.py +++ b/scrython/rulings/multiverse_id.py @@ -23,7 +23,7 @@ class Multiverse(RulingsObject): N/A Examples: - >>> rule = scrython.rulings.Id(id='4301') + >>> rule = scrython.rulings.Id(id="4301") >>> rule.data_length() """ def __init__(self, **kwargs): diff --git a/scrython/rulings/scryfall_id.py b/scrython/rulings/scryfall_id.py index 1ee74ef..f910c40 100644 --- a/scrython/rulings/scryfall_id.py +++ b/scrython/rulings/scryfall_id.py @@ -23,7 +23,7 @@ class Id(RulingsObject): N/A Examples: - >>> rule = scrython.rulings.Id(id='5976c352-ac49-4e0d-a4c0-ec9b6b78db9c') + >>> rule = scrython.rulings.Id(id="5976c352-ac49-4e0d-a4c0-ec9b6b78db9c") >>> rule.data_length() """ def __init__(self, **kwargs): diff --git a/scrython/rulings/set_code.py b/scrython/rulings/set_code.py index ee168ed..ec3befc 100644 --- a/scrython/rulings/set_code.py +++ b/scrython/rulings/set_code.py @@ -24,7 +24,7 @@ class Code(RulingsObject): N/A Examples: - >>> rule = scrython.rulings.Code(code='ddg', collector_number='42') + >>> rule = scrython.rulings.Code(code="ddg", collector_number="42") >>> rule.data_length() """ def __init__(self, code, collector_number): diff --git a/scrython/sets/__init__.py b/scrython/sets/__init__.py index 345de22..e471829 100644 --- a/scrython/sets/__init__.py +++ b/scrython/sets/__init__.py @@ -1,2 +1,4 @@ from .code import Code from .sets import Sets + +__all__ = [ 'Code', 'Sets' ] \ No newline at end of file diff --git a/scrython/sets/code.py b/scrython/sets/code.py index 0e2f854..e7f7947 100644 --- a/scrython/sets/code.py +++ b/scrython/sets/code.py @@ -22,7 +22,7 @@ class Code(FoundationObject): N/A Examples: - >>> set = scrython.sets.Code(code='por') + >>> set = scrython.sets.Code(code="por") >>> set.name() """ def __init__(self, code): diff --git a/scrython/sets/sets.py b/scrython/sets/sets.py index 5e26412..586839b 100644 --- a/scrython/sets/sets.py +++ b/scrython/sets/sets.py @@ -21,7 +21,7 @@ class Sets(FoundationObject): Examples: >>> set = scrython.sets.Sets() - >>> set.data(3, 'name') + >>> set.data(3, "name") """ def __init__(self): self._url = 'sets?' diff --git a/scrython/symbology/__init__.py b/scrython/symbology/__init__.py index 7c40d61..862848d 100644 --- a/scrython/symbology/__init__.py +++ b/scrython/symbology/__init__.py @@ -1,2 +1,4 @@ from .parse_mana import ParseMana from .symbology import Symbology + +__all__ = [ 'ParseMana', 'Symbology' ] \ No newline at end of file