mirror of
https://github.com/fuckpiracyshield/variations.git
synced 2026-01-23 16:50:40 +01:00
10 lines
222 B
Python
10 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()
|