Skip to content

Commit

Permalink
Merge pull request #142 from UnitapApp/develop
Browse files Browse the repository at this point in the history
change tmp.py
  • Loading branch information
Mohamad Bastin authored Oct 17, 2023
2 parents 004dd35 + c712f47 commit 508fb46
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@ def split_list(input_list, chunk_size):
addresses_chunks = split_list(addresses, 100)
chances_chunks = split_list(chances, 100)

# Output
# print(data_dict)
print(addresses_chunks)
print(chances_chunks)

for i in addresses_chunks:
print("[" + ",".join(i) + "]")
print("*****")

for i in chances_chunks:
print("[" + ",".join(map(str, i)) + "]")
print("*****")
# print(LineaRaffleEntries.objects.all().count())
print(len(data_dict))

Expand Down

0 comments on commit 508fb46

Please sign in to comment.