mirror of
https://github.com/fuckpiracyshield/variations.git
synced 2026-01-24 01:00:40 +01:00
11 lines
222 B
Python
11 lines
222 B
Python
|
|
from .base import Base
|
||
|
|
|
||
|
|
class IPAddress(Base):
|
||
|
|
|
||
|
|
TABLE_ID = "tblJKiHOUidKr5kC8"
|
||
|
|
|
||
|
|
def get_records(self):
|
||
|
|
response = self.request.get_total(self.TABLE_ID, None, ['IP Address'])
|
||
|
|
|
||
|
|
return response.json()
|