1955 colt python 3d models

5862 3d models found related to 1955 colt python.
Plug Cover / Prong Saver
Plug Cover / Prong Saver
thingiverse

This object was designed using Python, FreeCAD, and CadQuery, so the code and additional documentation are available on this GitHub repository: https://github.com/swolebro/caddyshack. Here's a direct link to the code that created these files...

Prop-Maker Keyblade
Prop-Maker Keyblade
cults3d

Bring it to life by 3D printing the parts and programming the Feather M4 Express and NeoPixel LEDs with Circuit Python. ... Watch this project in action on YouTube: https://www.youtube.com/watch?v=Ae5X_SgtCOQ Get started with the learn guide at...

PyPortal Case
PyPortal Case
cults3d

Get started by 3D printing a case for the Adafruit PyPortal, then use Circuit Python to program hardware and create an interactive touch screen display. The enclosure features snap fit covers that secure all components in place. Use machine screws...

Infinity Cube
Infinity Cube
cults3d

The code for this project is written in Circuit Python and uses the ItsyBitsy nRF52840. There are lots of options for customization, so you can change colors and speed. ... ItsyBitsy nRF52840 https://www.adafruit.com/product/4481 Mini Skinny NeoPixel...

3D Camera Stand for Raspberry pi
3D Camera Stand for Raspberry pi
thingiverse

I use Python to remotely control my servos, although I'm still learning the ropes. The camera mount comes in two types: one for solid servo connections that require servo screws, and another for use with simple padded double-sided sticky tape. I've...

PyPortal Case
PyPortal Case
thingiverse

Learn circuit python and program hardware with a touch screen display! The enclosure features snap fit covers and a bracket that securely holds all the components in place. Mount the PCBs to the 3D printed case using machine screws for added...

HAL 9000 / Raspberry pi Giant Case
HAL 9000 / Raspberry pi Giant Case
cults3d

Depending on demand, I may produce assets (stickers, python code). For the moment, the led is blinking according to CPU activity. I intend in a near future to add voice functionality, either by TTS, either by pre-recorded wav files. ... Don't hesitate...

Dog silhouette STL
Dog silhouette STL
thingiverse

Alternatively, scripting languages like Python with libraries such as PyAutoGUI and pyautogui can also automate this process. However, knowledge of programming is necessary for using these tools effectively. Keep in mind that the converted STL file...

Quefrency Middle Layer (65%)
Quefrency Middle Layer (65%)
thingiverse

Quefrency-Case is built on top of the powerful Python programming language, making it highly flexible and adaptable to various use cases. The tool's intuitive interface enables users to create complex keyboard layouts with precision and speed,...

Minimalist Maze Box
Minimalist Maze Box
thingiverse

The files include a Python-based ASCII maze generator. However, it's worth noting that most randomly generated mazes can be easily solved by simply turning the lid to the left and right while pulling it. I achieved better results with manually...

Raspberry Pi Zero case with camera and wall mount (parametric)
Raspberry Pi Zero case with camera and wall mount (parametric)
thingiverse

I used Motion Project (https://github.com/Motion-Project/motion/) for the security camera, then wrote a simple Python script to connect to my phone via Bluetooth and tell if I am present or not, then send the latest picture by email. You can follow...

Nucleo ST-Link Case and Connectors
Nucleo ST-Link Case and Connectors
thingiverse

The source code can be found in the hardware folder, which utilizes Solid Python as seen in swdconnector.py. Adding custom connectors is relatively straightforward. To assemble this case, four M3x16mm screws and hex nuts are needed to secure it...

Onera HOR20 Airfoil Micro Drone Propeller (28.25g thrust @ 3V)
Onera HOR20 Airfoil Micro Drone Propeller (28.25g thrust @ 3V)
thingiverse

... the propeller, you should grab a [8520 coreless motor](http://amzn.to/2qPUhi4). Use the SLDPRT extension files, just in case you wish to make your own changes to the drone propeller. P.S. Airfoil plotted using the matplotlib library in python.

Bastion Inspired Robotic Arm
Bastion Inspired Robotic Arm
thingiverse

For communication, I am using Python scripts that I wrote myself. ...I can share them someday after cleaning up my code ;-) I designed the arm to work with these funny compound planetary gears: https://www.thingiverse.com/thing:2054378 So thank you,...

Lithophane / 3d model of Sun
Lithophane / 3d model of Sun
thingiverse

... and follow the usage instructions. Special thanks go out to Uwe Zimmermann for creating the Python script that made this project possible. ...If you would like to support me, please use this link: https://goo.gl/nk68bJ when purchasing filament.

Lithophane / 3d model of Venus
Lithophane / 3d model of Venus
thingiverse

... repository and follow the usage instructions. Thanks to Uwe Zimmermann for creating the Python script used in this project. If you want to support me, use this link https://goo.gl/nk68bJ when purchasing filament. ...This is an affiliate link.

Lithophane / 3d model of Mercury
Lithophane / 3d model of Mercury
thingiverse

... to clone the git repository and follow the Usage instructions. Many thanks to Uwe Zimmermann at https://www.thingiverse.com/uwezi/about for the python script. ... If you want to support me, use this link at goo.gl/nk68bJ when purchasing filament.

Lithophane / 3d model of Mars
Lithophane / 3d model of Mars
thingiverse

... To change these settings, clone the GitHub repository and follow the usage instructions. Thanks to Uwe Zimmermann for creating the Python script! If you want to support me, use this link when purchasing filament. ...It's an affiliate link!

Lithophane / 3d model of Earth
Lithophane / 3d model of Earth
thingiverse

... If you want to change any of these settings, clone the git repository and follow the usage instructions. Many thanks to Uwe Zimmermann for the python script. ...If you want to support me, use this link when purchasing filament - an affiliate link.

Hyperboloid of One Sheet
Hyperboloid of One Sheet
thingiverse

... sqrt(1+v^2)*sin(u), v], (u,0,2*pi), (v,-3,3), aspect_ratio=1). Since Sage is Python-based, I verify line breaks. ...Note that the surface is defined parametrically and plotted using the parametric_plot3d() method.

Hyperbolic Paraboloid
Hyperbolic Paraboloid
thingiverse

... Then, export STL again to form the STL thing file here. The Sage code to generate the figure is as follows: x, y = var('x,y'); plot3d(x^2-y^2, (x,-1.2,1.2), (y,-1.2,1.2), aspect_ratio=1); Since Sage is Python-based, be sure to check line breaks.

Dini Surface
Dini Surface
thingiverse

... the Sage code to generate the figure: x=var('x'); f(x)=cos(x)+ln(tan(x/2)); u,v=var('u,v'); parametric_plot3d([cos(u)*sin(v),sin(u)*sin(v),f(v)+0.1*u],(u,pi/2,6*pi),(v,0.2,2),aspect_ratio=1). Since Sage is Python-based, be sure to check line breaks.

Trefoil Knot
Trefoil Knot
thingiverse

... The Sage code used to generate the figure is as follows: t = var('t'); parametric_plot3d([sin(t)+2*sin(2*t), cos(t)-2*cos(2*t), -1*sin(3*t)],(t,0,2*pi), thickness=50, aspect_ratio=1) Since Sage is Python-based, it's essential to check line breaks.

Compound Planetary Gear
Compound Planetary Gear
thingiverse

... tested with a drill and has printed successfully. Additionally, a python function is included in the github files to conduct an exhaustive search for gear ratios and identify sun and planet teeth configurations that meet specific criteria.

Umbilic Torus
Umbilic Torus
thingiverse

Here is the Sage code to generate this figure: u, v = var('u, v') parametric_plot3d([sin(u)*(7+cos(u/3-2*v)+2*cos(u/3+v)), sin(u/3-2*v)+2*sin(u/3+v), cos(u)*(7+cos(u/3-2*v)+2*cos(u/3+v))], (u,-pi,pi), (v,-pi,pi), aspect_ratio=1) Since Sage is...

Lithophane / 3d model of Uranus
Lithophane / 3d model of Uranus
thingiverse

... the git repository and follow the Usage instructions. Many thanks to [Uwe Zimmermann](https://www.thingiverse.com/uwezi/about) for the Python script. ... To support me, use this link when purchasing filament: https://goo.gl/nk68bJ *Affiliate Link

2032 Battery Project(Speeder-Bike)
2032 Battery Project(Speeder-Bike)
thingiverse

Once you have a solid plan in place, begin building your tech solution using coding languages like Python, Java, or C++. Collaborate with team members to ensure seamless integration and efficient problem-solving. As you work on your project, keep...

Onera HOR12 Airfoil Micro Drone Propeller (31.69g thrust @ 3V)
Onera HOR12 Airfoil Micro Drone Propeller (31.69g thrust @ 3V)
thingiverse

... To operate the propeller, you will need to obtain a **8520 coreless motor**. You can utilize the SLDPRT files if you wish to make your own modifications to the propeller. **Warning:** The airfoil was plotted using the matplotlib library in python.

Lithophane / 3d model of Saturn
Lithophane / 3d model of Saturn
thingiverse

... and follow the usage instructions. Many thanks go out to Uwe Zimmermann for creating the Python script used in this project. ... If you would like to support me, use the affiliate link provided when purchasing filament at https://goo.gl/nk68bJ.

Macro Pad with Screen
Macro Pad with Screen
thingiverse

I also wrote a small python script to detect what window is active to change the screen, but the arduino has trouble doing all of that. You can build this device for under $25. ...The piece is split in two for ease of printing, and while I have no...