Ok, VESTA is quite to easy download and install, and you don't actually have to build the crystal from scratch, since it imports a slightly edited CIF file with the structure from the database (attached CIF file).
Now, if you export this as a "P1" file from VESTA, you can very easily use the data to construct a NanoLanguage BulkConfiguration in Python. The output is
vector_a = [4.417, 0.0, 0.0]*Angstrom
vector_b = [-2.2085, 3.82523, 0.0]*Angstrom
vector_c = [0.0, 0.0, 29.84]*Angstrom
lattice = UnitCell(vector_a, vector_b, vector_c)
elements = [Bismuth,]*6+[Tellurium,]*9
fractional_coordinates = [
[0.000000000, 0.000000000, 0.187999994], # Bi1
[0.666666687, 0.333333343, 0.521333337], # Bi1
[0.333333343, 0.666666687, 0.854666650], # Bi1
[0.000000000, 0.000000000, 0.597999990], # Bi2
[0.666666687, 0.333333343, 0.931333303], # Bi2
[0.333333343, 0.666666687, 0.264666677], # Bi2
[0.000000000, 0.000000000, 0.388999999], # Te1
[0.666666687, 0.333333343, 0.722333312], # Te1
[0.333333343, 0.666666687, 0.055666685], # Te1
[0.000000000, 0.000000000, 0.800000012], # Te2
[0.666666687, 0.333333343, 0.133333325], # Te2
[0.333333343, 0.666666687, 0.466666698], # Te2
[0.000000000, 0.000000000, 0.000000000], # Te3
[0.666666687, 0.333333343, 0.333333343], # Te3
[0.333333343, 0.666666687, 0.666666687]] # Te3
# Set up configuration
bulk_configuration = BulkConfiguration(
bravais_lattice=lattice,
elements=elements,
fractional_coordinates=fractional_coordinates
)
Have fun!
NOTE: This is the hexagonal supercell.