├── .gitignore ├── LICENSE ├── README.md ├── get_profile_dataset.py ├── get_transaction_info.py ├── networking ├── __init__.py └── client.py ├── profiles ├── __init__.py └── profile_dataset_builder.py ├── requirements.txt └── transactions ├── __init__.py └── transactions.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/README.md -------------------------------------------------------------------------------- /get_profile_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/get_profile_dataset.py -------------------------------------------------------------------------------- /get_transaction_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/get_transaction_info.py -------------------------------------------------------------------------------- /networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networking/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/networking/client.py -------------------------------------------------------------------------------- /profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/profile_dataset_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/profiles/profile_dataset_builder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cloudscraper>=1.2.58 2 | requests>=2.25.1 -------------------------------------------------------------------------------- /transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transactions/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nichomacheus/bitclout/HEAD/transactions/transactions.py --------------------------------------------------------------------------------